| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- /*
- *
- * OGP - Open Game Panel
- * Copyright (C) 2008 - 2016 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('module_id', "Moduł ID");
- define('module_name', "Nazwa modułu");
- define('module_folder', "Moduł Folder");
- define('module_version', "Wersja modułu");
- define('db_version', "DB Version");
- define('modules_available_for_install', "Dostępne są następujące moduły do instalacji");
- define('install', "Instalacja");
- define('uninstall', "Uninstall");
- define('modules', "Moduły");
- define('update_modules', "Update Modules");
- define('no_installed_modules', "Nie znaleziono zainstalowanych modułów.");
- define('not_complete', "The install/uninstall feature is not complete and might not work properly. WARNING: Data loss may occur in the OGP database!");
- define('core_mods_installed', "Installed Core Modules:");
- define('custom_mods_installed', "Installed Custom Modules:");
- define('installing_module', "Installing module '%s'");
- define('successfully_installed_module', "Został zainstalowany moduł %s.");
- define('failed_to_install_module', "Nie można zainstalować moduł %s.");
- define('adding_module', "Adding module called '%s'.");
- define('module_already_installed', "Module called '%s' is already installed.");
- define('uninstalling_module', "Uninstalling module '%s'");
- define('successfully_uninstalled_module', "Moduł został odinstalowany %s.");
- define('failed_to_uninstall_module', "Nie udało się odinstalować moduł %s.");
- define('module_file_missing', "directory is missing the module.php file.");
- define('module_file_missing_info', "is missing the required information.");
- define('query_failed', "Failed to execute query");
- define('query_failed_2', "to database.");
- define('failed_del_db', "Failed to delete module from database.");
- define('updated_module', "Updated module: '%s'.");
- define('updating_modules', "Updating Modules");
- define('updating_finished', "Updating Finished");
- ?>
|