Aaron Pham
2024-02-10 db5e701810f17aef70a2bea078de27f0e4386c06
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
import { Translation } from "./definition"
 
export default {
  propertyDefaults: {
    title: "غير معنون",
    description: "لم يتم تقديم أي وصف",
  },
  components: {
    callout: {
      note: "ملاحظة",
      abstract: "ملخص",
      info: "معلومات",
      todo: "للقيام",
      tip: "نصيحة",
      success: "نجاح",
      question: "سؤال",
      warning: "تحذير",
      failure: "فشل",
      danger: "خطر",
      bug: "خلل",
      example: "مثال",
      quote: "اقتباس",
    },
    backlinks: {
      title: "وصلات العودة",
      noBacklinksFound: "لا يوجد وصلات عودة",
    },
    themeToggle: {
      lightMode: "الوضع النهاري",
      darkMode: "الوضع الليلي",
    },
    explorer: {
      title: "المستعرض",
    },
    footer: {
      createdWith: "أُنشئ باستخدام",
    },
    graph: {
      title: "التمثيل التفاعلي",
    },
    recentNotes: {
      title: "آخر الملاحظات",
      seeRemainingMore: ({ remaining }) => `تصفح ${remaining} أكثر →`,
    },
    transcludes: {
      transcludeOf: ({ targetSlug }) => `مقتبس من ${targetSlug}`,
      linkToOriginal: "وصلة للملاحظة الرئيسة",
    },
    search: {
      title: "بحث",
      searchBarPlaceholder: "ابحث عن شيء ما",
    },
    tableOfContents: {
      title: "فهرس المحتويات",
    },
  },
  pages: {
    rss: {
      recentNotes: "آخر الملاحظات",
      lastFewNotes: ({ count }) => `آخر ${count} ملاحظة`,
    },
    error: {
      title: "غير موجود",
      notFound: "إما أن هذه الصفحة خاصة أو غير موجودة.",
    },
    folderContent: {
      folder: "مجلد",
      itemsUnderFolder: ({ count }) =>
        count === 1 ? "يوجد عنصر واحد فقط تحت هذا المجلد" : `يوجد ${count} عناصر تحت هذا المجلد.`,
    },
    tagContent: {
      tag: "الوسم",
      tagIndex: "مؤشر الوسم",
      itemsUnderTag: ({ count }) =>
        count === 1 ? "يوجد عنصر واحد فقط تحت هذا الوسم" : `يوجد ${count} عناصر تحت هذا الوسم.`,
      showingFirst: ({ count }) => `إظهار أول ${count} أوسمة.`,
      totalTags: ({ count }) => `يوجد ${count} أوسمة.`,
    },
  },
} as const satisfies Translation