Dieser Commit ist enthalten in:
Commit
c58cf4da6d
128 geänderte Dateien mit 14769 neuen und 0 gelöschten Zeilen
57
language/lang_list.php
Normale Datei
57
language/lang_list.php
Normale Datei
|
|
@ -0,0 +1,57 @@
|
|||
<?php
|
||||
// *****************************************************************************
|
||||
// This file holds all available languages
|
||||
// *****************************************************************************
|
||||
// Do not change anything here :-)
|
||||
// *****************************************************************************
|
||||
|
||||
// Array initialization
|
||||
$lang=Array();
|
||||
|
||||
// *****************************************************************************
|
||||
// Add language to array. Must match directory name of the language.
|
||||
$lang['languages']=Array("de","en","es","fr","it");
|
||||
|
||||
// *****************************************************************************
|
||||
// Language name in its own language.
|
||||
$lang['en']='English';
|
||||
$lang['de']='Deutsch';
|
||||
$lang['es']='Español';
|
||||
$lang['fr']='Français';
|
||||
$lang['it']='Italiano';
|
||||
|
||||
// *****************************************************************************
|
||||
// Add the installation entries here, and you're done with this file. :-)
|
||||
|
||||
$lang['tools1']['de']='MySQLDumper deinstallieren';
|
||||
$lang['tools2']['de']='Vorhandene Konfigurationssicherung importieren';
|
||||
$lang['tools3']['de']='Konfigurationssicherung hochladen und importieren';
|
||||
$lang['tools4']['de']='Konfigurationssicherung runterladen';
|
||||
|
||||
$lang['tools1']['en']='Uninstall MySQLDumper';
|
||||
$lang['tools2']['en']='Import existing configuration backup';
|
||||
$lang['tools3']['en']='Upload configuration backup and import';
|
||||
$lang['tools4']['en']='Download Configuration Backup';
|
||||
|
||||
$lang['tools1']['es']='Desinstalar MySQLDumper';
|
||||
$lang['tools2']['es']='Importar configuración existente';
|
||||
$lang['tools3']['es']='Subir copia de la configuración e importar';
|
||||
$lang['tools4']['es']='Crear y descargar una copia de la configuración';
|
||||
|
||||
$lang['tools1']['fr']='MySQLDumper deinstallieren';
|
||||
$lang['tools2']['fr']='Une garantie de configuration existante importer';
|
||||
$lang['tools3']['fr']='Protection et importation de configuration de téléchargement';
|
||||
$lang['tools4']['fr']='Protection De Configuration De Téléchargement';
|
||||
|
||||
$lang['tools1']['it']='MySQLDumper deinstallieren';
|
||||
$lang['tools2']['it']='Sostegno attuale di configurazione dell\'importazione';
|
||||
$lang['tools3']['it']='Sostegno ed importazione di configurazione di upload';
|
||||
$lang['tools4']['it']='Sostegno Di Configurazione Di Trasferimento dal sistema centrale verso i satelliti';
|
||||
|
||||
// *****************************************************************************
|
||||
// Language defaults to english.
|
||||
|
||||
if (!isset($lang[$config['language']])) $config["language"]="en";
|
||||
include_once("language/".$config["language"]."/lang.php");
|
||||
|
||||
?>
|
||||
Laden …
Tabelle hinzufügen
Einen Link hinzufügen
In neuem Issue referenzieren