| 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', "מזהה מודול");
- 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', "נכשל בביצוע שאילתה");
- 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 יכול להיות מותקן.");
- ?>
|