GitHub

Original file line numberDiff line numberDiff line change

@@ -29,6 +29,7 @@ function getEmojiFlag(locale: string): string {

2929

ko: 'kr', // Korean -> South Korea

3030

ky: 'kg', // Kyrgyz -> Kyrgyzstan

3131

lb: 'lu', // Luxembourgish -> Luxembourg

32+

lo: 'la', // Lao -> Laos

3233

ms: 'my', // Malay -> Malaysia

3334

nb: 'no', // Norwegian Bokmål -> Norway

3435

sl: 'si', // Slovenian -> Slovenia

Original file line numberDiff line numberDiff line change

@@ -30,6 +30,7 @@ export { default as km } from './km'

3030

export { default as ko } from './ko'

3131

export { default as ky } from './ky'

3232

export { default as lb } from './lb'

33+

export { default as lo } from './lo'

3334

export { default as lt } from './lt'

3435

export { default as mn } from './mn'

3536

export { default as ms } from './ms'

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,131 @@

1+

import type { Messages } from '../types'

2+

import { defineLocale } from '../composables/defineLocale'

3+
4+

export default defineLocale<Messages>({

5+

name: 'ລາວ',

6+

code: 'lo',

7+

messages: {

8+

alert: {

9+

close: 'ປິດ'

10+

},

11+

authForm: {

12+

hidePassword: 'ເຊື່ອງລະຫັດຜ່ານ',

13+

showPassword: 'ສະແດງລະຫັດຜ່ານ',

14+

submit: 'ດຳເນີນການຕໍ່'

15+

},

16+

banner: {

17+

close: 'ປິດ'

18+

},

19+

calendar: {

20+

nextMonth: 'ເດືອນໜ້າ',

21+

nextYear: 'ປີໜ້າ',

22+

prevMonth: 'ເດືອນກ່ອນ',

23+

prevYear: 'ປີກ່ອນ'

24+

},

25+

carousel: {

26+

dots: 'ເລືອກສະໄລ້ທີ່ຈະສະແດງ',

27+

goto: 'ໄປທີ່ສະໄລ້ {slide}',

28+

next: 'ຕໍ່ໄປ',

29+

prev: 'ກ່ອນໜ້າ'

30+

},

31+

chatPrompt: {

32+

placeholder: 'ພິມຂໍ້ຄວາມຂອງທ່ານທີ່ນີ້...'

33+

},

34+

chatPromptSubmit: {

35+

label: 'ສົ່ງຄຳສັ່ງ'

36+

},

37+

colorMode: {

38+

dark: 'ມືດ',

39+

light: 'ແຈ້ງ',

40+

switchToDark: 'ປ່ຽນເປັນໂຫມດມືດ',

41+

switchToLight: 'ປ່ຽນເປັນໂຫມດແຈ້ງ',

42+

system: 'ລະບົບ'

43+

},

44+

commandPalette: {

45+

back: 'ກັບຄືນ',

46+

close: 'ປິດ',

47+

noData: 'ບໍ່ມີຂໍ້ມູນ',

48+

noMatch: 'ບໍ່ພົບຂໍ້ມູນທີ່ກົງກັນ',

49+

placeholder: 'ພິມຄຳສັ່ງ ຫຼື ຄົ້ນຫາ...'

50+

},

51+

contentSearch: {

52+

links: 'ລິ້ງ',

53+

theme: 'ທີມ'

54+

},

55+

contentSearchButton: {

56+

label: 'ຄົ້ນຫາ...'

57+

},

58+

contentToc: {

59+

title: 'ໃນໜ້ານີ້'

60+

},

61+

dashboardSearch: {

62+

theme: 'ທີມ'

63+

},

64+

dashboardSearchButton: {

65+

label: 'ຄົ້ນຫາ...'

66+

},

67+

dashboardSidebarCollapse: {

68+

collapse: 'ຫຍໍ້ແຖບດ້ານຂ້າງ',

69+

expand: 'ຂະຫຍາຍແຖບດ້ານຂ້າງ'

70+

},

71+

dashboardSidebarToggle: {

72+

close: 'ປິດແຖບດ້ານຂ້າງ',

73+

open: 'ເປີດແຖບດ້ານຂ້າງ'

74+

},

75+

error: {

76+

clear: 'ກັບໄປໜ້າຫຼັກ'

77+

},

78+

fileUpload: {

79+

removeFile: 'ລົບ {filename}'

80+

},

81+

header: {

82+

close: 'ປິດເມນູ',

83+

open: 'ເປີດເມນູ'

84+

},

85+

inputMenu: {

86+

create: 'ສ້າງ "{label}"',

87+

noData: 'ບໍ່ມີຂໍ້ມູນ',

88+

noMatch: 'ບໍ່ພົບຂໍ້ມູນທີ່ກົງກັນ'

89+

},

90+

inputNumber: {

91+

decrement: 'ຫຼຸດລົງ',

92+

increment: 'ເພີ່ມຂຶ້ນ'

93+

},

94+

modal: {

95+

close: 'ປິດ'

96+

},

97+

pricingTable: {

98+

caption: 'ປຽບທຽບແພັກເກັດລາຄາ'

99+

},

100+

prose: {

101+

codeCollapse: {

102+

closeText: 'ຫຍໍ້',

103+

name: 'ໂຄ້ດ',

104+

openText: 'ຂະຫຍາຍ'

105+

},

106+

collapsible: {

107+

closeText: 'ເຊື່ອງ',

108+

name: 'ຄຸນສົມບັດ',

109+

openText: 'ສະແດງ'

110+

},

111+

pre: {

112+

copy: 'ຄັດລອກໂຄ້ດ'

113+

}

114+

},

115+

selectMenu: {

116+

create: 'ສ້າງ "{label}"',

117+

noData: 'ບໍ່ມີຂໍ້ມູນ',

118+

noMatch: 'ບໍ່ພົບຂໍ້ມູນທີ່ກົງກັນ',

119+

search: 'ຄົ້ນຫາ...'

120+

},

121+

slideover: {

122+

close: 'ປິດ'

123+

},

124+

table: {

125+

noData: 'ບໍ່ມີຂໍ້ມູນ'

126+

},

127+

toast: {

128+

close: 'ປິດ'

129+

}

130+

}

131+

})

Read the original on github.com ↗