| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?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 Navn");
- define('OGP_LANG_module_folder', "Modul Mappe");
- define('OGP_LANG_module_version', "Modul Version");
- define('OGP_LANG_db_version', "DB Version");
- define('OGP_LANG_modules_available_for_install', "Følgende moduler er tilgengængelig til installation");
- define('OGP_LANG_install', "Installere");
- define('OGP_LANG_uninstall', "Uninstall");
- define('OGP_LANG_modules', "Moduler");
- define('OGP_LANG_update_modules', "Opdatere Moduler");
- define('OGP_LANG_no_installed_modules', "Ingen installeret moduler fundet.");
- define('OGP_LANG_not_complete', "Slet/Installere funktion er ikke komplet, og vil nok ikke fungere korrekt. Advarsels: Data fra ogp database vil nok blive mistet!");
- define('OGP_LANG_core_mods_installed', "Installeret Core Moduler:");
- define('OGP_LANG_custom_mods_installed', "Installeret brugerdefineret Moduler:");
- define('OGP_LANG_installing_module', "Installere modul '%s'");
- define('OGP_LANG_successfully_installed_module', "Modulet blev installeret succesfuldt %s.");
- define('OGP_LANG_failed_to_install_module', "Fejlet i at installere modul %s.");
- define('OGP_LANG_adding_module', "Tilføjet modul kaldes '%s'.");
- define('OGP_LANG_module_already_installed', "Modul kaldet '%s' er allerede installeret.");
- define('OGP_LANG_uninstalling_module', "Afinstallering modul '%s'");
- define('OGP_LANG_successfully_uninstalled_module', "Succesfuldt afinstallering af modul %s.");
- define('OGP_LANG_failed_to_uninstall_module', "Fejlet I at afinstallere modul %s.");
- define('OGP_LANG_module_file_missing', "mappen mangler module.php filen.");
- define('OGP_LANG_module_file_missing_info', "mangler de nødvendige informationer.");
- define('OGP_LANG_query_failed', "Fejlet I at udøre query");
- define('OGP_LANG_query_failed_2', "til database.");
- define('OGP_LANG_failed_del_db', "Fejlet I at slette modulet fra database.");
- define('OGP_LANG_updated_module', "Opdatere modul: '%s'.");
- define('OGP_LANG_updating_modules', "Opdatere moduler");
- define('OGP_LANG_updating_finished', "Opdatering Færdig");
- define('OGP_LANG_prereqs_missing', "Forudsætningerne for %s skal installeres på serveren før %s kan installeres.");
- ?>
|