a0d6daa3b4
* feat(i18n): add Arabic translation * chore: format
66 lines
2.0 KiB
TypeScript
66 lines
2.0 KiB
TypeScript
import { Translation } from "./definition"
|
|
|
|
export default {
|
|
propertyDefaults: {
|
|
title: "غير معنون",
|
|
description: "لم يتم تقديم أي وصف",
|
|
},
|
|
components: {
|
|
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
|