mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-08 17:38:49 +00:00
added AR translations to the Friendica addons
Thanks to the work of طاهر, Farida Khalaf, محمد أحمد, abidin toumi, Abdullah Alsabi, ButterflyOfFire and ominds the translation of Friendica into Arabic has crossed the magic 50% progress mark, so we now include their work into the addons repository.
This commit is contained in:
parent
943187d02f
commit
86de95f77b
122 changed files with 4752 additions and 0 deletions
76
buffer/lang/ar/messages.po
Normal file
76
buffer/lang/ar/messages.po
Normal file
|
@ -0,0 +1,76 @@
|
|||
# ADDON buffer
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica buffer addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Farida Khalaf <faridakhalaf@hotmail.com>, 2021
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-07-25 13:17+0000\n"
|
||||
"PO-Revision-Date: 2021-02-20 00:31+0000\n"
|
||||
"Last-Translator: Farida Khalaf <faridakhalaf@hotmail.com>\n"
|
||||
"Language-Team: Arabic (http://www.transifex.com/Friendica/friendica/language/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#: buffer.php:39
|
||||
msgid "Permission denied."
|
||||
msgstr "الطلب مرفوض."
|
||||
|
||||
#: buffer.php:68 buffer.php:216
|
||||
msgid "Save Settings"
|
||||
msgstr "Save Settings"
|
||||
|
||||
#: buffer.php:70
|
||||
msgid "Client ID"
|
||||
msgstr "بطاقة العميل"
|
||||
|
||||
#: buffer.php:71
|
||||
msgid "Client Secret"
|
||||
msgstr "أسرار العميل"
|
||||
|
||||
#: buffer.php:87
|
||||
msgid "Error when registering buffer connection:"
|
||||
msgstr "خطأ عند تسجيل اتصال المخزن المؤقت:"
|
||||
|
||||
#: buffer.php:107
|
||||
msgid "You are now authenticated to buffer. "
|
||||
msgstr "لقد تمت تصديقك الآن للتخزين المؤقت."
|
||||
|
||||
#: buffer.php:108
|
||||
msgid "return to the connector page"
|
||||
msgstr "الرجوع إلى صفحة الموصل"
|
||||
|
||||
#: buffer.php:126
|
||||
msgid "Post to Buffer"
|
||||
msgstr "أضف إلى المخزن المؤقت"
|
||||
|
||||
#: buffer.php:155 buffer.php:159
|
||||
msgid "Buffer Export"
|
||||
msgstr "تصدير المخزن المؤقت"
|
||||
|
||||
#: buffer.php:170
|
||||
msgid "Authenticate your Buffer connection"
|
||||
msgstr "تصديق اتصال مخزنك المؤقت "
|
||||
|
||||
#: buffer.php:174
|
||||
msgid "Enable Buffer Post Addon"
|
||||
msgstr "تفعيل ملحق الإضافة للمخزن المؤقت "
|
||||
|
||||
#: buffer.php:179
|
||||
msgid "Post to Buffer by default"
|
||||
msgstr "إضافة إلي المخزن المؤقت بشكل افتراضي"
|
||||
|
||||
#: buffer.php:184
|
||||
msgid "Check to delete this preset"
|
||||
msgstr "تحقق لحذف هذا الإعداد المسبق"
|
||||
|
||||
#: buffer.php:196
|
||||
msgid "Posts are going to all accounts that are enabled by default:"
|
||||
msgstr " جميع المشاركات ستنتقل إلى الحسابات التي تم تمكينها افتراضيًا:"
|
21
buffer/lang/ar/strings.php
Normal file
21
buffer/lang/ar/strings.php
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_ar")) {
|
||||
function string_plural_select_ar($n){
|
||||
$n = intval($n);
|
||||
if ($n==0) { return 0; } else if ($n==1) { return 1; } else if ($n==2) { return 2; } else if ($n%100>=3 && $n%100<=10) { return 3; } else if ($n%100>=11 && $n%100<=99) { return 4; } else { return 5; }
|
||||
}}
|
||||
$a->strings['Permission denied.'] = 'الطلب مرفوض.';
|
||||
$a->strings['Save Settings'] = 'Save Settings';
|
||||
$a->strings['Client ID'] = 'بطاقة العميل';
|
||||
$a->strings['Client Secret'] = 'أسرار العميل';
|
||||
$a->strings['Error when registering buffer connection:'] = 'خطأ عند تسجيل اتصال المخزن المؤقت:';
|
||||
$a->strings['You are now authenticated to buffer. '] = 'لقد تمت تصديقك الآن للتخزين المؤقت.';
|
||||
$a->strings['return to the connector page'] = 'الرجوع إلى صفحة الموصل';
|
||||
$a->strings['Post to Buffer'] = 'أضف إلى المخزن المؤقت';
|
||||
$a->strings['Buffer Export'] = 'تصدير المخزن المؤقت';
|
||||
$a->strings['Authenticate your Buffer connection'] = 'تصديق اتصال مخزنك المؤقت ';
|
||||
$a->strings['Enable Buffer Post Addon'] = 'تفعيل ملحق الإضافة للمخزن المؤقت ';
|
||||
$a->strings['Post to Buffer by default'] = 'إضافة إلي المخزن المؤقت بشكل افتراضي';
|
||||
$a->strings['Check to delete this preset'] = 'تحقق لحذف هذا الإعداد المسبق';
|
||||
$a->strings['Posts are going to all accounts that are enabled by default:'] = ' جميع المشاركات ستنتقل إلى الحسابات التي تم تمكينها افتراضيًا:';
|
Loading…
Add table
Add a link
Reference in a new issue