-
-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ feat(i18n): add Arabic language to i18n
- Loading branch information
Showing
1 changed file
with
83 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
language_name = "العربية" # Shown in language picker for multi-language sites. | ||
date_locale = "ar_SA" # The locale code for time and date formatting. | ||
full_stop = "." # Used at the end of a sentence. | ||
|
||
# Menu items. | ||
# Should match the names in config.extra.menu and config.extra.footer_menu. | ||
blog = "تدويناتي" | ||
archive = "الأرشيف" | ||
tags = "الوسوم" | ||
projects = "مشاريعي" | ||
about = "عن المدونة" | ||
contact = "إتصل بي" | ||
privacy = "الخصوصية" | ||
site_statistics = "إحصائيات المدونة" | ||
sitemap = "خريطة المدونة" | ||
|
||
# Search. | ||
search = "بحث" | ||
search_icon_title = "انقر هنا او اضغط $SHORTCUT لفتح البحث" # $SHORTCUT will be replaced with the actual keyboard shortcut. | ||
clear_search = "مسح البحث" | ||
result = "النتيجة" # "1 result" | ||
results = "النتائج" # "3 results" (also used for 0 results). | ||
|
||
# Navigation. | ||
read_more = "إقرأ المزيد" | ||
post = "منشور" | ||
posts = "منشورات" # Plural of "post". | ||
prev = "السابق" # As in "Previous" page. | ||
next = "التالي" # As in "Next" page. | ||
of = "من" # E.g. Page 1 "of" 3 | ||
all_posts = "جميع المنشورات" | ||
all_tags = "جميع الوسوم" | ||
language_selection = "تحديد اللغة" | ||
toggle_mode = "تبديل الاوضاع $MODE" # $MODE will be replaced by a value (or both) below. | ||
dark = "داكن" | ||
light = "فاتح" | ||
reset_mode = "إعادة تعيين الوضع" | ||
|
||
# Quick navigation buttons. | ||
toggle_toc = "اظهار / اخفاء جدول المحتويات" | ||
go_to_top = "الانتقال إلى أعلى الصفحة" | ||
go_to_comments = "الانتقال إلى التعليقات" | ||
|
||
# Post metadata. | ||
draft = "مسودة" | ||
min_read = "دقيقة متوقعة للقراءة" | ||
words = "كلمة" | ||
last_updated_on = "آخر تحديث في" | ||
see_changes = "الإطلاع على التغييرات" | ||
|
||
# Post body. | ||
table_of_contents = "جدول المحتويات" | ||
load_comments = "اظهار التعليقات" | ||
|
||
# Copy code block button. | ||
copied = "تم النسخ!" | ||
copy_code_to_clipboard = "نسخ الشِفرة إلى الحافظة" | ||
|
||
# Footer: Powered by Zola and tabi. | ||
powered_by = "مشغل بواسطة" | ||
and = "و" | ||
site_source = "شِفرة الموقع" | ||
|
||
# 404 error. | ||
# https://welpo.github.io/tabi/404.html | ||
page_missing = "الصفحة غير موجودة" | ||
translation_missing = "او لم يتم ترجمتها إلى اللغة التي تطلبها" | ||
check_url = "تحقق من ان الرابط صحيح او" | ||
go_home = "انتقل الى الصفحة الرئيسية" | ||
|
||
# For multilingual quote shortcode. | ||
# https://welpo.github.io/tabi/blog/shortcodes/#multilingual-quotes | ||
show_original_quote = "إظهار الإقتباس الاصلي" | ||
show_translation = "اظهار الترجمة" | ||
open_quotation_mark = '"' | ||
close_quotation_mark = '"' | ||
|
||
# Translations for stylised Atom feed. | ||
# https://welpo.github.io/tabi/atom.xml | ||
# Must contain "About Feeds"; it will become a link. | ||
about_feeds = "هذا هو موجز الويب، المعروف أيضًا باسم موجز Atom. اشترك عن طريق نسخ عنوان URL من شريط العناوين إلى قارئ الأخبار الخاص بك. قم بزيارة موجز About لمعرفة المزيد والبدء. انه مجانا." | ||
visit_the_site = "زيارة الموقع" | ||
recent_posts = "المنشورات الأخيرة" |