mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-20 06:51:46 +01:00
feat(i18n): add Turkish locale (#2716)
This commit is contained in:
@@ -11,3 +11,4 @@ export { default as ru } from './ru'
|
||||
export { default as zh_hans } from './zh_hans'
|
||||
export { default as zh_hant } from './zh_hant'
|
||||
export { default as ko } from './ko'
|
||||
export { default as tr } from './tr'
|
||||
|
||||
47
src/runtime/locale/tr.ts
Normal file
47
src/runtime/locale/tr.ts
Normal file
@@ -0,0 +1,47 @@
|
||||
import { defineLocale } from '../composables/defineLocale'
|
||||
|
||||
export default defineLocale({
|
||||
name: 'Türkçe',
|
||||
code: 'tr',
|
||||
messages: {
|
||||
inputMenu: {
|
||||
noMatch: 'Eşleşen veri yok',
|
||||
noData: 'Veri yok',
|
||||
create: '"{label}" oluştur'
|
||||
},
|
||||
inputNumber: {
|
||||
increment: 'Arttır',
|
||||
decrement: 'Azalt'
|
||||
},
|
||||
commandPalette: {
|
||||
noMatch: 'Eşleşen veri yok',
|
||||
noData: 'Veri yok',
|
||||
close: 'Kapat'
|
||||
},
|
||||
selectMenu: {
|
||||
noMatch: 'Eşleşen veri yok',
|
||||
noData: 'Veri yok',
|
||||
create: '"{label}" oluştur'
|
||||
},
|
||||
toast: {
|
||||
close: 'Kapat'
|
||||
},
|
||||
carousel: {
|
||||
prev: 'Önceki',
|
||||
next: 'Sonraki',
|
||||
goto: '{slide}. slayda git'
|
||||
},
|
||||
modal: {
|
||||
close: 'Kapat'
|
||||
},
|
||||
slideover: {
|
||||
close: 'Kapat'
|
||||
},
|
||||
alert: {
|
||||
close: 'Kapat'
|
||||
},
|
||||
table: {
|
||||
noData: 'Veri yok'
|
||||
}
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user