56 lines
3.1 KiB
PHP
56 lines
3.1 KiB
PHP
<?php
|
|
/*
|
|
*
|
|
* OGP - Open Game Panel
|
|
* Copyright (C) 2008 - 2018 The OGP Development Team
|
|
*
|
|
* http://www.opengamepanel.org/
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*
|
|
*/
|
|
|
|
define('OGP_LANG_module_id', "Modul ID");
|
|
define('OGP_LANG_module_name', "Modul name");
|
|
define('OGP_LANG_module_folder', "Modul Ordner");
|
|
define('OGP_LANG_module_version', "Modul version");
|
|
define('OGP_LANG_db_version', "DB Version");
|
|
define('OGP_LANG_modules_available_for_install', "Folgende Module stehen zur Installation bereit");
|
|
define('OGP_LANG_install', "Installieren");
|
|
define('OGP_LANG_uninstall', "Deinstallieren");
|
|
define('OGP_LANG_modules', "Module");
|
|
define('OGP_LANG_update_modules', "Module Aktualisieren");
|
|
define('OGP_LANG_no_installed_modules', "Keine installierten Module gefunden.");
|
|
define('OGP_LANG_not_complete', "Die Installations- / Deinstallationsfunktion ist nicht vollständig und funktioniert möglicherweise nicht ordnungsgemäß. WARNUNG: Datenverlust kann in der OGP Datenbank auftreten!");
|
|
define('OGP_LANG_core_mods_installed', "Installierte Kernmodule:");
|
|
define('OGP_LANG_custom_mods_installed', "Installierte benutzerdefinierte Module:");
|
|
define('OGP_LANG_installing_module', "Installiere Modul '%s'");
|
|
define('OGP_LANG_successfully_installed_module', "Modul %s erfolgreich installiert.");
|
|
define('OGP_LANG_failed_to_install_module', "Fehler beim Installieren des Moduls %s.");
|
|
define('OGP_LANG_adding_module', "Hinzufügen des Moduls '%s'.");
|
|
define('OGP_LANG_module_already_installed', "Das Modul '%s' ist bereits installiert.");
|
|
define('OGP_LANG_uninstalling_module', "Deinstallieren des Moduls '%s'");
|
|
define('OGP_LANG_successfully_uninstalled_module', "Das Modul %s wurde erfolgreich deinstalliert.");
|
|
define('OGP_LANG_failed_to_uninstall_module', "Das Modul %s konnte nicht deinstalliert werden.");
|
|
define('OGP_LANG_module_file_missing', "das Verzeichnis fehlt die module.php Datei.");
|
|
define('OGP_LANG_module_file_missing_info', "fehlt die benötigten Informationen.");
|
|
define('OGP_LANG_query_failed', "Abfrage konnte nicht ausgeführt werden");
|
|
define('OGP_LANG_query_failed_2', "zu Datenbank.");
|
|
define('OGP_LANG_failed_del_db', "Fehler beim Löschen des Moduls aus der Datenbank.");
|
|
define('OGP_LANG_updated_module', "Aktualisiertes Modul: '%s'.");
|
|
define('OGP_LANG_updating_modules', "Module aktualisieren");
|
|
define('OGP_LANG_updating_finished', "Aktualisierung abgeschlossen");
|
|
define('OGP_LANG_prereqs_missing', "Vorraussetzungen für %s müssen auf dem Server installiert sein, bevor %s installiert werden kann.");
|
|
?>
|