Files
ui/src/runtime/locale/tr.ts
2024-11-21 17:27:41 +01:00

48 lines
897 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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'
}
}
})