GitHub

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

1+

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

2+

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

3+4+

export default defineLocale<Messages>({

5+

name: 'Euskera',

6+

code: 'eu',

7+

messages: {

8+

alert: {

9+

close: 'Itxi'

10+

},

11+

authForm: {

12+

hidePassword: 'Pasahitza ezkutatu',

13+

showPassword: 'Pasahitza erakutsi',

14+

submit: 'Jarraitu'

15+

},

16+

banner: {

17+

close: 'Itxi'

18+

},

19+

calendar: {

20+

nextMonth: 'Hurrengo hilabetea',

21+

nextYear: 'Hurrengo urtea',

22+

prevMonth: 'Aurretiko hilabetea',

23+

prevYear: 'Aurretiko urtea'

24+

},

25+

carousel: {

26+

dots: 'Erakutsi beharreko diapositiba aukeratu',

27+

goto: 'Joan diapositibara {slide}',

28+

next: 'Hurrengoa',

29+

prev: 'Aurretikoa'

30+

},

31+

chatPrompt: {

32+

placeholder: 'Idatzi zure mezua hemen...'

33+

},

34+

chatPromptSubmit: {

35+

label: 'Bidali'

36+

},

37+

colorMode: {

38+

dark: 'Iluna',

39+

light: 'Argia',

40+

switchToDark: 'Aldatu ilunera',

41+

switchToLight: 'Aldatu argira',

42+

system: 'Sistema'

43+

},

44+

commandPalette: {

45+

back: 'Atzera',

46+

close: 'Itxi',

47+

noData: 'Daturik gabe',

48+

noMatch: 'Ez da datu bat ere aurkitu',

49+

placeholder: 'Idatzi komando bat edo bilatu...'

50+

},

51+

contentSearch: {

52+

links: 'Estekak',

53+

theme: 'Gaia'

54+

},

55+

contentSearchButton: {

56+

label: 'Bilatu…'

57+

},

58+

contentToc: {

59+

title: 'Orri honetan'

60+

},

61+

dashboardSearch: {

62+

theme: 'Gaia'

63+

},

64+

dashboardSearchButton: {

65+

label: 'Bilatu…'

66+

},

67+

dashboardSidebarCollapse: {

68+

collapse: 'Alboko barra itxi',

69+

expand: 'Alboko barra zabaldu'

70+

},

71+

dashboardSidebarToggle: {

72+

close: 'Alboko barra itxi',

73+

open: 'Alboko barra zabaldu'

74+

},

75+

error: {

76+

clear: 'Hasierara itzuli'

77+

},

78+

fileUpload: {

79+

removeFile: 'Ezabatu {filename}'

80+

},

81+

header: {

82+

close: 'Menua itxi',

83+

open: 'Menua zabaldu'

84+

},

85+

inputMenu: {

86+

create: 'Sortu {label}',

87+

noData: 'Daturik gabe',

88+

noMatch: 'Ez da datu bat ere aurkitu'

89+

},

90+

inputNumber: {

91+

decrement: 'Murriztu',

92+

increment: 'Handitu'

93+

},

94+

modal: {

95+

close: 'Itxi'

96+

},

97+

pricingTable: {

98+

caption: 'Prezio-plana alderatzea'

99+

},

100+

prose: {

101+

codeCollapse: {

102+

closeText: 'Murriztu',

103+

name: 'kodea',

104+

openText: 'Zabaldu'

105+

},

106+

collapsible: {

107+

closeText: 'Ezkutatu',

108+

name: 'propietateak',

109+

openText: 'Erakutsi'

110+

},

111+

pre: {

112+

copy: 'Kopiatu kodea clipboard-era'

113+

}

114+

},

115+

selectMenu: {

116+

create: 'Sortu {label}',

117+

noData: 'Daturik gabe',

118+

noMatch: 'Ez da datu bat ere aurkitu',

119+

search: 'Bilatu…'

120+

},

121+

slideover: {

122+

close: 'Itxi'

123+

},

124+

table: {

125+

noData: 'Daturik gabe'

126+

},

127+

toast: {

128+

close: 'Itxi'

129+

}

130+

}

131+

})

Read the original on github.com ↗