shoelace/src/translations/tr.ts

40 wiersze
1.1 KiB
TypeScript
Czysty Wina Historia

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

import { registerTranslation } from '../utilities/localize.js';
import type { Translation } from '../utilities/localize.js';
const translation: Translation = {
$code: 'tr',
$name: 'Türkçe',
$dir: 'ltr',
carousel: 'Atlıkarınca',
clearEntry: 'Girişi sil',
close: 'Kapat',
copied: 'Kopyalandı',
copy: 'Kopya',
currentValue: 'Mevcut değer',
error: 'Hata',
goToSlide: (slide, count) => `${count} slayttan ${slide} slayta gidin`,
hidePassword: 'Şifreyi sakla',
loading: 'Yükleme',
nextSlide: 'Sonraki slayt',
numOptionsSelected: num => {
if (num === 0) return 'Hiçbir seçenek seçilmedi';
if (num === 1) return '1 seçenek seçildi';
return `${num} seçenek seçildi`;
},
previousSlide: 'Bir onceki slayt',
progress: 'İlerleme',
remove: 'Kaldır',
resize: 'Yeniden boyutlandır',
scrollToEnd: 'Sona kay',
scrollToStart: 'Başa kay',
selectAColorFromTheScreen: 'Ekrandan bir renk seçin',
showPassword: 'Şifreyi göster',
slideNum: slide => `Slayt ${slide}`,
toggleColorFormat: 'Renk biçimini değiştir'
};
registerTranslation(translation);
export default translation;