mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
feat(locale): add Romanian language (#3587)
This commit is contained in:
@@ -24,6 +24,7 @@ export { default as nl } from './nl'
|
|||||||
export { default as pl } from './pl'
|
export { default as pl } from './pl'
|
||||||
export { default as pt } from './pt'
|
export { default as pt } from './pt'
|
||||||
export { default as pt_br } from './pt_br'
|
export { default as pt_br } from './pt_br'
|
||||||
|
export { default as ro } from './ro'
|
||||||
export { default as ru } from './ru'
|
export { default as ru } from './ru'
|
||||||
export { default as sk } from './sk'
|
export { default as sk } from './sk'
|
||||||
export { default as sv } from './sv'
|
export { default as sv } from './sv'
|
||||||
|
|||||||
56
src/runtime/locale/ro.ts
Normal file
56
src/runtime/locale/ro.ts
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
import type { Messages } from '../types'
|
||||||
|
import { defineLocale } from '../composables/defineLocale'
|
||||||
|
|
||||||
|
export default defineLocale<Messages>({
|
||||||
|
name: 'Română',
|
||||||
|
code: 'ro',
|
||||||
|
messages: {
|
||||||
|
inputMenu: {
|
||||||
|
noMatch: 'Nu există date corespunzătoare',
|
||||||
|
noData: 'Nu există date',
|
||||||
|
create: 'Creează "{label}"'
|
||||||
|
},
|
||||||
|
calendar: {
|
||||||
|
prevYear: 'Anul precedent',
|
||||||
|
nextYear: 'Anul următor',
|
||||||
|
prevMonth: 'Luna precedentă',
|
||||||
|
nextMonth: 'Luna următoare'
|
||||||
|
},
|
||||||
|
inputNumber: {
|
||||||
|
increment: 'Crește',
|
||||||
|
decrement: 'Scade'
|
||||||
|
},
|
||||||
|
commandPalette: {
|
||||||
|
placeholder: 'Tastează o comandă sau caută...',
|
||||||
|
noMatch: 'Nu există date corespunzătoare',
|
||||||
|
noData: 'Nu există date',
|
||||||
|
close: 'Închide'
|
||||||
|
},
|
||||||
|
selectMenu: {
|
||||||
|
noMatch: 'Nu există date corespunzătoare',
|
||||||
|
noData: 'Nu există date',
|
||||||
|
create: 'Creează "{label}"',
|
||||||
|
search: 'Caută...'
|
||||||
|
},
|
||||||
|
toast: {
|
||||||
|
close: 'Închide'
|
||||||
|
},
|
||||||
|
carousel: {
|
||||||
|
prev: 'Anterior',
|
||||||
|
next: 'Următor',
|
||||||
|
goto: 'Mergi la diapozitivul {slide}'
|
||||||
|
},
|
||||||
|
modal: {
|
||||||
|
close: 'Închide'
|
||||||
|
},
|
||||||
|
slideover: {
|
||||||
|
close: 'Închide'
|
||||||
|
},
|
||||||
|
alert: {
|
||||||
|
close: 'Închide'
|
||||||
|
},
|
||||||
|
table: {
|
||||||
|
noData: 'Nu există date'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
Reference in New Issue
Block a user