|
| 1 | +import { Translation } from "./definition" |
| 2 | + |
| 3 | +export default { |
| 4 | + propertyDefaults: { |
| 5 | + title: "بدون عنوان", |
| 6 | + description: "توضیح خاصی اضافه نشده است", |
| 7 | + }, |
| 8 | + components: { |
| 9 | + callout: { |
| 10 | + note: "یادداشت", |
| 11 | + abstract: "چکیده", |
| 12 | + info: "اطلاعات", |
| 13 | + todo: "اقدام", |
| 14 | + tip: "نکته", |
| 15 | + success: "تیک", |
| 16 | + question: "سؤال", |
| 17 | + warning: "هشدار", |
| 18 | + failure: "شکست", |
| 19 | + danger: "خطر", |
| 20 | + bug: "باگ", |
| 21 | + example: "مثال", |
| 22 | + quote: "نقل قول", |
| 23 | + }, |
| 24 | + backlinks: { |
| 25 | + title: "بکلینکها", |
| 26 | + noBacklinksFound: "بدون بکلینک", |
| 27 | + }, |
| 28 | + themeToggle: { |
| 29 | + lightMode: "حالت روشن", |
| 30 | + darkMode: "حالت تاریک", |
| 31 | + }, |
| 32 | + explorer: { |
| 33 | + title: "مطالب", |
| 34 | + }, |
| 35 | + footer: { |
| 36 | + createdWith: "ساخته شده با", |
| 37 | + }, |
| 38 | + graph: { |
| 39 | + title: "نمای گراف", |
| 40 | + }, |
| 41 | + recentNotes: { |
| 42 | + title: "یادداشتهای اخیر", |
| 43 | + seeRemainingMore: ({ remaining }) => `${remaining} یادداشت دیگر →`, |
| 44 | + }, |
| 45 | + transcludes: { |
| 46 | + transcludeOf: ({ targetSlug }) => `از ${targetSlug}`, |
| 47 | + linkToOriginal: "پیوند به اصلی", |
| 48 | + }, |
| 49 | + search: { |
| 50 | + title: "جستجو", |
| 51 | + searchBarPlaceholder: "مطلبی را جستجو کنید", |
| 52 | + }, |
| 53 | + tableOfContents: { |
| 54 | + title: "فهرست", |
| 55 | + }, |
| 56 | + contentMeta: { |
| 57 | + readingTime: ({ minutes }) => `زمان تقریبی مطالعه: ${minutes} دقیقه`, |
| 58 | + }, |
| 59 | + }, |
| 60 | + pages: { |
| 61 | + rss: { |
| 62 | + recentNotes: "یادداشتهای اخیر", |
| 63 | + lastFewNotes: ({ count }) => `${count} یادداشت اخیر`, |
| 64 | + }, |
| 65 | + error: { |
| 66 | + title: "یافت نشد", |
| 67 | + notFound: "این صفحه یا خصوصی است یا وجود ندارد", |
| 68 | + home: "بازگشت به صفحه اصلی", |
| 69 | + }, |
| 70 | + folderContent: { |
| 71 | + folder: "پوشه", |
| 72 | + itemsUnderFolder: ({ count }) => |
| 73 | + count === 1 ? ".یک مطلب در این پوشه است" : `${count} مطلب در این پوشه است.`, |
| 74 | + }, |
| 75 | + tagContent: { |
| 76 | + tag: "برچسب", |
| 77 | + tagIndex: "فهرست برچسبها", |
| 78 | + itemsUnderTag: ({ count }) => |
| 79 | + count === 1 ? "یک مطلب با این برچسب" : `${count} مطلب با این برچسب.`, |
| 80 | + showingFirst: ({ count }) => `در حال نمایش ${count} برچسب.`, |
| 81 | + totalTags: ({ count }) => `${count} برچسب یافت شد.`, |
| 82 | + }, |
| 83 | + }, |
| 84 | +} as const satisfies Translation |
0 commit comments