From 6785ec9109e0f19f0b241e8f61e8a3ec44cf5a9d Mon Sep 17 00:00:00 2001 From: HumHub Translations Date: Tue, 18 Jun 2024 16:01:40 +0000 Subject: [PATCH] Enh: Updated Translations (translate.humhub.org) --- messages/ar/activities.php | 9 ++--- messages/ar/base.php | 23 ++++++----- messages/ar/controllers_PollController.php | 14 +++---- messages/ar/events.php | 19 +++++---- messages/ar/models_Poll.php | 17 ++++---- messages/ar/views_activities_PollAnswered.php | 23 ++--------- messages/ar/views_activities_PollCreated.php | 2 +- .../ar/views_notifications_PollCreated.php | 2 +- messages/ar/widgets_PollFormWidget.php | 2 +- messages/ar/widgets_views_entry.php | 39 ++++++------------- messages/ar/widgets_views_pollForm.php | 16 ++++---- messages/ar/widgets_views_stream.php | 33 ++++------------ messages/ru/base.php | 23 ++++++----- 13 files changed, 83 insertions(+), 139 deletions(-) diff --git a/messages/ar/activities.php b/messages/ar/activities.php index 43fa54c..ed7f7d2 100644 --- a/messages/ar/activities.php +++ b/messages/ar/activities.php @@ -1,6 +1,5 @@ '', - 'Whenever someone participates in a poll.' => '', -]; +return array ( + 'Polls' => 'الاستطلاعات', + 'Whenever someone participates in a poll.' => 'عندما يشارك شخص ما في استطلاع رأي.', +); diff --git a/messages/ar/base.php b/messages/ar/base.php index d28cdd7..8ff56e2 100644 --- a/messages/ar/base.php +++ b/messages/ar/base.php @@ -1,13 +1,12 @@ 'إلغاء', - 'Save' => 'حفظ', - 'Allows the user to create polls' => '', - 'Allows to start polls.' => '', - 'Answers' => '', - 'At least one answer is required' => '', - 'Create poll' => '', - 'Polls' => '', - '{n,plural,=1{# {htmlTagBegin}vote{htmlTagEnd}}other{# {htmlTagBegin}votes{htmlTagEnd}}}' => '', -]; +return array ( + 'Allows the user to create polls' => 'السماح للمستخدم بإنشاء استطلاعات الرأي', + 'Allows to start polls.' => 'السماح ببدء الاستطلاعات.', + 'Answers' => 'الإجابات', + 'At least one answer is required' => 'مطلوب إجابة واحدة على الأقل', + 'Cancel' => 'إلغاء', + 'Create poll' => 'إنشاء استطلاع', + 'Polls' => 'الاستطلاعات', + 'Save' => 'حفظ', + '{n,plural,=1{# {htmlTagBegin}vote{htmlTagEnd}}other{# {htmlTagBegin}votes{htmlTagEnd}}}' => '{n,plural,=1{# {htmlTagBegin}صوت{htmlTagEnd}}other{# {htmlTagBegin}أصوات{htmlTagEnd}}}', +); diff --git a/messages/ar/controllers_PollController.php b/messages/ar/controllers_PollController.php index d79a4df..68dd79f 100644 --- a/messages/ar/controllers_PollController.php +++ b/messages/ar/controllers_PollController.php @@ -1,10 +1,10 @@ 'ممنوع المرور!', - 'Anonymous poll!' => '', - 'Could not load poll!' => '', - 'Invalid answer!' => '', - 'Users voted for: {answer}' => '', - 'Voting for multiple answers is disabled!' => '', - 'You have insufficient permissions to perform that operation!' => '', + 'Access denied!' => 'تم منع الوصول!', + 'Anonymous poll!' => 'استطلاع كمجهول!', + 'Could not load poll!' => 'فشل تحميل الاستطلاع!', + 'Invalid answer!' => 'إجابة غير صالحة!', + 'Users voted for: {answer}' => 'صوّت المستخدمون لـ: {answer}', + 'Voting for multiple answers is disabled!' => 'تم تعطيل التصويت لإجابات متعددة!', + 'You have insufficient permissions to perform that operation!' => 'ليس لديك الأذونات الكافية لتنفيذ هذه العملية!', ); diff --git a/messages/ar/events.php b/messages/ar/events.php index 4a4739d..9b04c61 100644 --- a/messages/ar/events.php +++ b/messages/ar/events.php @@ -1,11 +1,10 @@ '', - 'Club A Steakhouse' => '', - 'Location of the next meeting' => '', - 'Pisillo Italian Panini' => '', - 'Right now, we are in the planning stages for our next meetup and we would like to know from you, where you would like to go?' => '', - 'To Daniel' => '', - 'Why don\'t we go to Bemelmans Bar?' => '', -]; +return array ( + 'Again? ;Weary;' => 'مرة أخرى؟ ؛المرهق؛', + 'Club A Steakhouse' => 'نادي ستيك هاوس', + 'Location of the next meeting' => 'مكان اللقاء القادم', + 'Pisillo Italian Panini' => 'بانيني إيطالي صغير', + 'Right now, we are in the planning stages for our next meetup and we would like to know from you, where you would like to go?' => 'نحن الآن في مراحل التخطيط للقائنا القادم ونود أن نعرف منك، إلى أين تريد أن تذهب؟', + 'To Daniel' => 'إلى دانيال', + 'Why don\'t we go to Bemelmans Bar?' => 'لماذا لا نذهب إلى Bemelmans?', +); diff --git a/messages/ar/models_Poll.php b/messages/ar/models_Poll.php index c74c6ad..3f297f9 100644 --- a/messages/ar/models_Poll.php +++ b/messages/ar/models_Poll.php @@ -1,10 +1,9 @@ 'توضيج', - 'Answers' => '', - 'Multiple answers per user' => '', - 'Please specify at least {min} answers!' => '', - 'Poll' => '', - 'Question' => '', -]; +return array ( + 'Answers' => 'الإجابات', + 'Description' => 'الوصف', + 'Multiple answers per user' => 'إجابات متعددة لكل مستخدم', + 'Please specify at least {min} answers!' => 'يرجى تحديد {min} من الإجابات على الأقل!', + 'Poll' => 'استطلاع', + 'Question' => 'سؤال', +); diff --git a/messages/ar/views_activities_PollAnswered.php b/messages/ar/views_activities_PollAnswered.php index 4e0281a..6da830e 100644 --- a/messages/ar/views_activities_PollAnswered.php +++ b/messages/ar/views_activities_PollAnswered.php @@ -1,21 +1,4 @@ '', -]; +return array ( + '{userName} answered the {question}.' => 'أجاب {userName} على {question}.', +); diff --git a/messages/ar/views_activities_PollCreated.php b/messages/ar/views_activities_PollCreated.php index a538f01..cd80f7a 100644 --- a/messages/ar/views_activities_PollCreated.php +++ b/messages/ar/views_activities_PollCreated.php @@ -1,4 +1,4 @@ '', + '{userName} created a new {question}.' => 'قام {userName} بإنشاء {question}جديد.', ); diff --git a/messages/ar/views_notifications_PollCreated.php b/messages/ar/views_notifications_PollCreated.php index 58fa8cb..fe23d28 100644 --- a/messages/ar/views_notifications_PollCreated.php +++ b/messages/ar/views_notifications_PollCreated.php @@ -1,4 +1,4 @@ '', + '{userName} created a new poll and assigned you.' => 'أنشأ {userName} استطلاعًا جديدًا وقام بتعيينه لك.', ); diff --git a/messages/ar/widgets_PollFormWidget.php b/messages/ar/widgets_PollFormWidget.php index 2363b26..0a5a1ee 100644 --- a/messages/ar/widgets_PollFormWidget.php +++ b/messages/ar/widgets_PollFormWidget.php @@ -1,4 +1,4 @@ '', + 'Ask' => 'اسأل', ); diff --git a/messages/ar/widgets_views_entry.php b/messages/ar/widgets_views_entry.php index d749138..64c30bd 100644 --- a/messages/ar/widgets_views_entry.php +++ b/messages/ar/widgets_views_entry.php @@ -1,29 +1,12 @@ Note: The result is hidden until the poll is closed by a moderator.' => '', - 'Anonymous' => '', - 'Closed' => '', - 'Complete Poll' => '', - 'Reopen Poll' => '', - 'Reset my vote' => '', - 'Vote' => '', - 'and {count} more vote for this.' => '', - 'votes' => '', -]; +return array ( + 'Note: The result is hidden until the poll is closed by a moderator.' => 'ملاحظة: يتم إخفاء النتيجة حتى يتم إغلاق الاستطلاع بواسطة المشرف.', + 'Anonymous' => 'مجهول', + 'Closed' => 'مغلق', + 'Complete Poll' => 'إكمال الاستطلاع', + 'Reopen Poll' => 'إعادة فتح الاستطلاع', + 'Reset my vote' => 'إعادة تعيين تصويتي', + 'Vote' => 'التصويت', + 'and {count} more vote for this.' => 'و{count} المزيد من الأصوات لهذا.', + 'votes' => 'أصوات', +); diff --git a/messages/ar/widgets_views_pollForm.php b/messages/ar/widgets_views_pollForm.php index 7288b65..91d387d 100644 --- a/messages/ar/widgets_views_pollForm.php +++ b/messages/ar/widgets_views_pollForm.php @@ -1,11 +1,11 @@ '', - 'Anonymous Votes?' => '', - 'Description' => 'توضيج', - 'Display answers in random order?' => '', - 'Edit answer (empty answers will be removed)...' => '', - 'Edit your poll question...' => '', - 'Hide results until poll is closed?' => '', - 'Question' => '', + 'Add answer...' => 'إضافة إجابة', + 'Anonymous Votes?' => 'أصوات مجهولة؟', + 'Description' => 'الوصف', + 'Display answers in random order?' => 'عرض الإجابات بترتيب عشوائي؟', + 'Edit answer (empty answers will be removed)...' => 'تحرير الإجابة (الإجابة الفارغة سيتم حذفها)...', + 'Edit your poll question...' => 'تحرير سؤال استطلاعك', + 'Hide results until poll is closed?' => 'إخفاء النتائج حتى يغلق التصويت؟', + 'Question' => 'السؤال', ); diff --git a/messages/ar/widgets_views_stream.php b/messages/ar/widgets_views_stream.php index db5213f..b3c4d62 100644 --- a/messages/ar/widgets_views_stream.php +++ b/messages/ar/widgets_views_stream.php @@ -1,26 +1,9 @@ There are no polls yet!' => '', - 'There are no polls yet!
Be the first and create one...' => '', - 'Asked by me' => '', - 'No answered yet' => '', - 'Only private polls' => '', - 'Only public polls' => '', -]; +return array ( + 'There are no polls yet!' => 'لا توجد استطلاعات رأي حتى الآن!', + 'There are no polls yet!
Be the first and create one...' => 'لا توجد استطلاعات رأي حتى الآن!
كن الأول وأنشئ واحداً...', + 'Asked by me' => 'طرح من قبلي', + 'No answered yet' => 'لم تتم الإجابة بعد', + 'Only private polls' => 'استطلاعات الرأي الخاصة فقط', + 'Only public polls' => 'استطلاعات الرأي العامة فقط', +); diff --git a/messages/ru/base.php b/messages/ru/base.php index 50ed0a4..0e6569a 100644 --- a/messages/ru/base.php +++ b/messages/ru/base.php @@ -1,13 +1,12 @@ 'Разрешить создавать опросы', - 'Answers' => 'Ответы', - 'At least one answer is required' => 'Требуется хотя бы один ответ', - 'Cancel' => 'Отменить', - 'Polls' => 'Опросы', - 'Save' => 'Сохранить', - 'Allows the user to create polls' => '', - 'Create poll' => '', - '{n,plural,=1{# {htmlTagBegin}vote{htmlTagEnd}}other{# {htmlTagBegin}votes{htmlTagEnd}}}' => '', -]; +return array ( + 'Allows the user to create polls' => 'Позволяет пользователю создавать опросы', + 'Allows to start polls.' => 'Разрешить создавать опросы', + 'Answers' => 'Ответы', + 'At least one answer is required' => 'Требуется хотя бы один ответ', + 'Cancel' => 'Отменить', + 'Create poll' => 'Создать опрос', + 'Polls' => 'Опросы', + 'Save' => 'Сохранить', + '{n,plural,=1{# {htmlTagBegin}vote{htmlTagEnd}}other{# {htmlTagBegin}votes{htmlTagEnd}}}' => '', +);