]> git.mxchange.org Git - friendica-addons.git/blob - dwpost/lang/ar/strings.php
Merge pull request #1198 from nupplaphil/feat/httpclient_restructuring
[friendica-addons.git] / dwpost / lang / ar / strings.php
1 <?php
2
3 if(! function_exists("string_plural_select_ar")) {
4 function string_plural_select_ar($n){
5         $n = intval($n);
6         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; }
7 }}
8 $a->strings['Post to Dreamwidth'] = 'انشر على دريمويدز';
9 $a->strings['Dreamwidth Export'] = ' تصدير دريمويدز';
10 $a->strings['Enable dreamwidth Post Addon'] = ' تمكين دريمويدز من نشر ملحق';
11 $a->strings['dreamwidth username'] = ' اسم مستخدم دريمويدز';
12 $a->strings['dreamwidth password'] = 'كلمة مرور دريمويدز';
13 $a->strings['Post to dreamwidth by default'] = ' نشر على دريمويدز بشكل افتراضي';
14 $a->strings['Save Settings'] = 'حفظ الإعدادات';