1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
| import { Translation } from "./definition"
|
| export default {
| propertyDefaults: {
| title: "İsimsiz",
| description: "Herhangi bir açıklama eklenmedi",
| },
| components: {
| callout: {
| note: "Not",
| abstract: "Özet",
| info: "Bilgi",
| todo: "Yapılacaklar",
| tip: "İpucu",
| success: "Başarılı",
| question: "Soru",
| warning: "Uyarı",
| failure: "Başarısız",
| danger: "Tehlike",
| bug: "Hata",
| example: "Örnek",
| quote: "Alıntı",
| },
| backlinks: {
| title: "Backlinkler",
| noBacklinksFound: "Backlink bulunamadı",
| },
| themeToggle: {
| lightMode: "Açık mod",
| darkMode: "Koyu mod",
| },
| readerMode: {
| title: "Okuma modu",
| },
| explorer: {
| title: "Gezgin",
| },
| footer: {
| createdWith: "Şununla oluşturuldu",
| },
| graph: {
| title: "Grafik Görünümü",
| },
| recentNotes: {
| title: "Son Notlar",
| seeRemainingMore: ({ remaining }) => `${remaining} tane daha gör →`,
| },
| transcludes: {
| transcludeOf: ({ targetSlug }) => `${targetSlug} sayfasından alıntı`,
| linkToOriginal: "Orijinal bağlantı",
| },
| search: {
| title: "Arama",
| searchBarPlaceholder: "Bir şey arayın",
| },
| tableOfContents: {
| title: "İçindekiler",
| },
| contentMeta: {
| readingTime: ({ minutes }) => `${minutes} dakika okuma süresi`,
| },
| },
| pages: {
| rss: {
| recentNotes: "Son notlar",
| lastFewNotes: ({ count }) => `Son ${count} not`,
| },
| error: {
| title: "Bulunamadı",
| notFound: "Bu sayfa ya özel ya da mevcut değil.",
| home: "Anasayfaya geri dön",
| },
| folderContent: {
| folder: "Klasör",
| itemsUnderFolder: ({ count }) =>
| count === 1 ? "Bu klasör altında 1 öğe." : `Bu klasör altındaki ${count} öğe.`,
| },
| tagContent: {
| tag: "Etiket",
| tagIndex: "Etiket Sırası",
| itemsUnderTag: ({ count }) =>
| count === 1 ? "Bu etikete sahip 1 öğe." : `Bu etiket altındaki ${count} öğe.`,
| showingFirst: ({ count }) => `İlk ${count} etiket gösteriliyor.`,
| totalTags: ({ count }) => `Toplam ${count} adet etiket bulundu.`,
| },
| },
| } as const satisfies Translation
|
|