Browse Source

Add additional languages

FusionPBX 2 years ago
parent
commit
6eb1897522
1 changed files with 5 additions and 4 deletions
  1. 5 4
      core/default_settings/app_menu.php

+ 5 - 4
core/default_settings/app_menu.php

@@ -3,14 +3,14 @@
 	$y=0;
 	$apps[$x]['menu'][$y]['title']['en-us'] = "Default Settings";
 	$apps[$x]['menu'][$y]['title']['en-gb'] = "Default Settings";
-	$apps[$x]['menu'][$y]['title']['ar-eg'] = "";
+	$apps[$x]['menu'][$y]['title']['ar-eg'] = "Default Settings";
 	$apps[$x]['menu'][$y]['title']['de-at'] = "Standardeinstellungen";
 	$apps[$x]['menu'][$y]['title']['de-de'] = "Standardeinstellungen";
 	$apps[$x]['menu'][$y]['title']['es-cl'] = "Conf. Predeterminada";
-	$apps[$x]['menu'][$y]['title']['es-mx'] = "";
-	$apps[$x]['menu'][$y]['title']['fr-ca'] = "";
+	$apps[$x]['menu'][$y]['title']['es-mx'] = "Ajustes predeterminados";
+	$apps[$x]['menu'][$y]['title']['fr-ca'] = "Paramètres par défaut";
 	$apps[$x]['menu'][$y]['title']['fr-fr'] = "Confs par Défaut";
-	$apps[$x]['menu'][$y]['title']['he-il'] = "";
+	$apps[$x]['menu'][$y]['title']['he-il'] = "הגדרות Default Settings";
 	$apps[$x]['menu'][$y]['title']['it-it'] = "Parametri di Default";
 	$apps[$x]['menu'][$y]['title']['nl-nl'] = "Standaard instellingen";
 	$apps[$x]['menu'][$y]['title']['pl-pl'] = "Ustawienia domyślne";
@@ -25,5 +25,6 @@
 	$apps[$x]['menu'][$y]['category'] = "internal";
 	$apps[$x]['menu'][$y]['path'] = "/core/default_settings/default_settings.php";
 	$apps[$x]['menu'][$y]['groups'][] = "superadmin";
+	$y++;
 
 ?>