mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
feat(locale): add Polish language (#2678)
This commit is contained in:
@@ -5,6 +5,7 @@ export { default as en } from './en'
|
||||
export { default as es } from './es'
|
||||
export { default as fr } from './fr'
|
||||
export { default as it } from './it'
|
||||
export { default as pl } from './pl'
|
||||
export { default as ru } from './ru'
|
||||
export { default as zh_hans } from './zh_hans'
|
||||
export { default as zh_hant } from './zh_hant'
|
||||
|
||||
47
src/runtime/locale/pl.ts
Normal file
47
src/runtime/locale/pl.ts
Normal file
@@ -0,0 +1,47 @@
|
||||
import { defineLocale } from '../composables/defineLocale'
|
||||
|
||||
export default defineLocale({
|
||||
name: 'Polski',
|
||||
code: 'pl',
|
||||
messages: {
|
||||
inputMenu: {
|
||||
noMatch: 'Brak pasujących danych',
|
||||
noData: 'Brak danych',
|
||||
create: 'Utwórz "{label}"'
|
||||
},
|
||||
inputNumber: {
|
||||
increment: 'Zwiększ',
|
||||
decrement: 'Zmniejsz'
|
||||
},
|
||||
commandPalette: {
|
||||
noMatch: 'Brak pasujących danych',
|
||||
noData: 'Brak danych',
|
||||
close: 'Zamknij'
|
||||
},
|
||||
selectMenu: {
|
||||
noMatch: 'Brak pasujących danych',
|
||||
noData: 'Brak danych',
|
||||
create: 'Utwórz "{label}"'
|
||||
},
|
||||
toast: {
|
||||
close: 'Zamknij'
|
||||
},
|
||||
carousel: {
|
||||
prev: 'Poprzedni',
|
||||
next: 'Następny',
|
||||
goto: 'Idź do {slide}'
|
||||
},
|
||||
modal: {
|
||||
close: 'Zamknij'
|
||||
},
|
||||
slideover: {
|
||||
close: 'Zamknij'
|
||||
},
|
||||
alert: {
|
||||
close: 'Zamknij'
|
||||
},
|
||||
table: {
|
||||
noData: 'Brak danych'
|
||||
}
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user