-
-
Notifications
You must be signed in to change notification settings - Fork 10.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
i18n: add missing Arabic translation file #21651
base: main
Are you sure you want to change the base?
Changes from 2 commits
0a09fe7
66ac0e8
6ab86c6
b9e9d3e
aa7eaf3
aaab951
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||
---|---|---|---|---|---|---|---|---|
@@ -1,6 +1,5 @@ | ||||||||
{ | ||||||||
"{{amount}} characters left": "{{amount}} حرف متبقي", | ||||||||
"{{amount}} comments": "{{amount}} تعليقات", | ||||||||
"{{amount}} characters left": "الحروف المتبقية: {{amount}}", | ||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix JSON structure: Missing opening curly brace. The file is missing the opening curly brace Add the opening curly brace: +{
"{{amount}} characters left": "الحروف المتبقية: {{amount}}", 📝 Committable suggestion
Suggested change
🧰 Tools🪛 Biome (1.9.4)[error] 1-1: End of file expected Use an array for a sequence of values: (parse) [error] 1-2: End of file expected Use an array for a sequence of values: (parse) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good catch, @coderabbitai! The opening and closing braces are important in all json files that contain translation strings, in ghost/i18n/locales There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @cathysarisky Thank you for confirming! I'll remember this requirement for future reviews. 🐰 thoughtfully takes notes ✏️ Learnings added
|
||||||||
"{{amount}} comments": "{{amount}} تعليق/ات", | ||||||||
"{{amount}} days ago": "منذ {{amount}} أيام", | ||||||||
"{{amount}} hrs ago": "منذ {{amount}} ساعات", | ||||||||
"{{amount}} mins ago": "منذ {{amount}} دقيقة", | ||||||||
|
@@ -15,20 +14,23 @@ | |||||||
"Add reply": "إضافة رد", | ||||||||
"Already a member?": "هل أنت عضو بالفعل؟", | ||||||||
"Anonymous": "مجهول", | ||||||||
"Become a member of {{publication}} to start commenting.": "اصبح عضوًا في {{publication}} لبدء التعليق.", | ||||||||
"Become a paid member of {{publication}} to start commenting.": "اصبح عضوًا مدفوعًا في {{publication}} لبدء التعليق.", | ||||||||
"Are you sure?": "هل أنت متأكد؟", | ||||||||
"Become a member of {{publication}} to start commenting.": "يجب أن تصبح عضوًا في {{publication}} لتستطيع التعليق.", | ||||||||
"Become a paid member of {{publication}} to start commenting.": "يجب أن تكون عضويتك مدفوعة في {{publication}} لكي تستطيع التعليق.", | ||||||||
"Cancel": "إلغاء", | ||||||||
"Comment": "تعليق", | ||||||||
"Complete your profile": "أكمل ملفك الشخصي", | ||||||||
"Delete": "حذف", | ||||||||
"Deleted member": "عضو محذوف", | ||||||||
"Discussion": "نقاش", | ||||||||
"Deleted": "محذوف", | ||||||||
"Deleted member": "الأعضاء المحذوفين", | ||||||||
"Deleting": "يتم الحذف", | ||||||||
"Discussion": "النقاش", | ||||||||
"Edit": "تعديل", | ||||||||
"Edit this comment": "تعديل هذا التعليق", | ||||||||
"edited": "تم التعديل", | ||||||||
"Enter your name": "أدخل اسمك", | ||||||||
"Expertise": "مجال التخصص", | ||||||||
"Founder @ Acme Inc": "مؤسس @ شركة أكمي", | ||||||||
"Founder @ Acme Inc": "مؤسس لدى شركة أكمي", | ||||||||
"Full-time parent": "والد بدوام كامل", | ||||||||
"Head of Marketing at Acme, Inc": "رئيس التسويق في شركة أكمي", | ||||||||
"Hide": "إخفاء", | ||||||||
|
@@ -46,7 +48,12 @@ | |||||||
"One month ago": "منذ شهر واحد", | ||||||||
"One week ago": "منذ أسبوع واحد", | ||||||||
"One year ago": "منذ سنة واحدة", | ||||||||
"replied to comment": "", | ||||||||
"replied to comment": "رد على التعليق", | ||||||||
"Hidden for members": "مخفي للأعضاء", | ||||||||
"Load more ({{amount}})": "تحميل المزيد ({{amount}})", | ||||||||
"Once deleted, this comment can’t be recovered.": "بمجرد الحذف، لا يمكن استرجاع هذا التعليق.", | ||||||||
"removed": "تم الحذف", | ||||||||
"Replied to": "رد على", | ||||||||
"Reply": "رد", | ||||||||
"Reply to": "", | ||||||||
"Reply to comment": "رد على هذا التعليق", | ||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You have lost the { and } around this file. These are required for the i18next to understand your work. Please correct.