56 lines
4.5 KiB
PHP
56 lines
4.5 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', "Αναγνωριστικό Λειτουργικής Μονάδας");
|
||
define('OGP_LANG_module_name', "Όνομα Λειτουργικής Μονάδας");
|
||
define('OGP_LANG_module_folder', "Φάκελος Λειτουργικής Μονάδας");
|
||
define('OGP_LANG_module_version', "Έκδοση Λειτουργικής Μονάδας");
|
||
define('OGP_LANG_db_version', "Έκδοση Βάσης Δεδομένων");
|
||
define('OGP_LANG_modules_available_for_install', "Προσαρμοσμένες λειτουργικές μονάδες για εγκατάσταση:");
|
||
define('OGP_LANG_install', "Εγκαταστήστε");
|
||
define('OGP_LANG_uninstall', "Απεγκαταστήστε");
|
||
define('OGP_LANG_modules', "Λειτουργικές Μονάδες");
|
||
define('OGP_LANG_update_modules', "Ενημερώστε Λειτουργικές Μονάδες");
|
||
define('OGP_LANG_no_installed_modules', "Δεν βρέθηκαν εγκατεστημένες λειτουργικές μονάδες.");
|
||
define('OGP_LANG_not_complete', "Η δυνατότητα εγκατάσταση / απεγκατάσταση δεν έχει ολοκληρωθεί και ενδέχεται να μην λειτουργήσει σωστά. ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Ενδέχεται να παρουσιαστεί απώλεια δεδομένων στη βάση δεδομένων OGP!");
|
||
define('OGP_LANG_core_mods_installed', "Εγκατεστημένες Κεντρικές Λειτουργικές Μονάδες:");
|
||
define('OGP_LANG_custom_mods_installed', "Εγκατεστημένες Προσαρμοσμένες Λειτουργικές Μονάδες:");
|
||
define('OGP_LANG_installing_module', "Εγκατάσταση λειτουργικής μονάδας '%s'.");
|
||
define('OGP_LANG_successfully_installed_module', "Επιτυχής εγκατάσταση λειτουργικής μονάδας %s.");
|
||
define('OGP_LANG_failed_to_install_module', "Αποτυχία εγκατάστασης λειτουργικής μονάδας %s.");
|
||
define('OGP_LANG_adding_module', "Πρόσθεση λειτουργικής μονάδας με όνομα '%s'.");
|
||
define('OGP_LANG_module_already_installed', "Η λειτουργική μονάδα με όνομα '%s' είναι ήδη εγκατεστημένη.");
|
||
define('OGP_LANG_uninstalling_module', "Απεγκατάσταση λειτουργικής μονάδας '%s'.");
|
||
define('OGP_LANG_successfully_uninstalled_module', "Επιτυχής απεγκατάσταση λειτουργικής μονάδας %s.");
|
||
define('OGP_LANG_failed_to_uninstall_module', "Αποτυχία απεγκατάστασης λειτουργικής μονάδας %s.");
|
||
define('OGP_LANG_module_file_missing', "το αρχείο module.php λείπει από τον κατάλογο");
|
||
define('OGP_LANG_module_file_missing_info', "λείπουν οι απαιτούμενες πληροφορίες.");
|
||
define('OGP_LANG_query_failed', "Αποτυχία εκτέλεσης query.");
|
||
define('OGP_LANG_query_failed_2', "σε βάση δεδομένων.");
|
||
define('OGP_LANG_failed_del_db', "Αποτυχία διαγραφής λειτουργικής μονάδας από βάση δεδομένων.");
|
||
define('OGP_LANG_updated_module', "Ενημερωμένη λειτουργική μονάδα: '%s'.");
|
||
define('OGP_LANG_updating_modules', "Ενημέρωση Λειτουργικών Μονάδων");
|
||
define('OGP_LANG_updating_finished', "Η Ενημέρωση Ολοκληρώθηκε");
|
||
define('OGP_LANG_prereqs_missing', "Προϋποθέσεις του %s πρέπει να εγκατασταθούν στον διακομιστή πριν %s να μπορέσει να εγκατασταθεί.");
|
||
?>
|