diff options
Diffstat (limited to 'phpBB/language/lang_arabic/lang_main.php')
-rw-r--r-- | phpBB/language/lang_arabic/lang_main.php | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/phpBB/language/lang_arabic/lang_main.php b/phpBB/language/lang_arabic/lang_main.php index f21438a141..20ae80bea7 100644 --- a/phpBB/language/lang_arabic/lang_main.php +++ b/phpBB/language/lang_arabic/lang_main.php @@ -21,13 +21,22 @@ //
// Translation by waheed
+// The format of this file is:
+//
+// ---> $lang['message'] = "text";
+//
+// You should also try to set a locale and a character
+// encoding (plus direction). The encoding and direction
+// will be sent to the template. The locale may or may
+// not work, it's dependent on OS support and the syntax
+// varies ... give it your best guess!
//
//setlocale(LC_ALL, "ar");
$lang['ENCODING'] = "windows-1256";
-$lang['DIRECTION'] = "RTL";
-$lang['LEFT'] = "LEFT";
-$lang['RIGHT'] = "RIGHT";
+$lang['DIRECTION'] = "rtl";
+$lang['LEFT'] = "left";
+$lang['RIGHT'] = "right";
$lang['DATE_FORMAT'] = "d M Y"; // This should be changed to the default date format for your language, php date() format
//
@@ -285,6 +294,7 @@ $lang['Start_watching_topic'] = "تابع ردود على هذا الموضوع"; $lang['No_longer_watching'] = "لقد توقفت عن متابعة هذا الموضوع";
$lang['You_are_watching'] = "انت الآن تتابع هذا الموضوع";
+$lang['Total_votes'] = "مجموع التصويتات";
//
// Posting/Replying (Not private messaging!)
|