addonsmanager.php 4.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?php
  2. /*
  3. *
  4. * OGP - Open Game Panel
  5. * Copyright (C) 2008 - 2018 The OGP Development Team
  6. *
  7. * http://www.opengamepanel.org/
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * as published by the Free Software Foundation; either version 2
  12. * of the License, or any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  22. *
  23. */
  24. define('OGP_LANG_install_plugin', "نصب افزونه");
  25. define('OGP_LANG_install_mappack', "نصب Map");
  26. define('OGP_LANG_install_config', "نصب Config");
  27. define('OGP_LANG_game_name', "نام بازی");
  28. define('OGP_LANG_directory', "مسیر نصب");
  29. define('OGP_LANG_remote_server', "سرور Remote");
  30. define('OGP_LANG_select_addon', "Select Addon");
  31. define('OGP_LANG_install', "Install");
  32. define('OGP_LANG_failed_to_start_file_download', "دانلود فایل با مشکل مواجه شد.");
  33. define('OGP_LANG_no_games_servers_available', "هیچ GameServerـی در حساب کاربری شما وجود ندارد.");
  34. define('OGP_LANG_addon_installed_successfully', "افزونه با موفقیت نصب شد");
  35. define('OGP_LANG_path', "مسیر");
  36. define('OGP_LANG_wait_while_decompressing', "Wait while the file %s is decompressed.");
  37. define('OGP_LANG_addon_name', "نام افزونه");
  38. define('OGP_LANG_url', "آدرس");
  39. define('OGP_LANG_select_game_type', "نوع بازی را انتخاب کنید");
  40. define('OGP_LANG_plugin', "پلاگین");
  41. define('OGP_LANG_mappack', "پکیج Map");
  42. define('OGP_LANG_config', "کانفیگ");
  43. define('OGP_LANG_type', "نوع افزونه");
  44. define('OGP_LANG_game', "بازی");
  45. define('OGP_LANG_show_all_addons', "نمایش تمام افزونه ها");
  46. define('OGP_LANG_show_addons_for_selected_type', "نمایش افزونه های مربوط به نوع انتخاب شده");
  47. define('OGP_LANG_show_addons_for_selected_game', "نمایش افزونه های بازی انتخاب شده");
  48. define('OGP_LANG_linux_games', "بازی های Linux:");
  49. define('OGP_LANG_windows_games', "بازی های Windows:");
  50. define('OGP_LANG_create_addon', "ساختن افزونه");
  51. define('OGP_LANG_addons_db', "Addons Database");
  52. define('OGP_LANG_addon_has_been_created', "افزونه %s ساخته شد.");
  53. define('OGP_LANG_remove_addon', "پاک کردن افزونه");
  54. define('OGP_LANG_fill_the_url_address_to_a_compressed_file', "Please, fill an URL address for a compressed file.");
  55. define('OGP_LANG_fill_the_addon_name', "لطفا برای پک افزونه، یک نام انتخاب کنید.");
  56. define('OGP_LANG_select_an_addon_type', "لطفا نوع افزونه خود را انتخاب کنید.");
  57. define('OGP_LANG_select_a_game_type', "لطفا نوع بازی را انتخاب کنید.");
  58. define('OGP_LANG_edit_addon', "ویرایش افزونه");
  59. define('OGP_LANG_post-script', "Post-install script(bash)");
  60. define('OGP_LANG_replacements', "Replacements:");
  61. define('OGP_LANG_addon_name_info', "Enter a name for this addon, this is the name that the user sees.");
  62. define('OGP_LANG_url_info', "Enter a web address that contains a file to download, if compressed in zip or tar.gz will be unpacked in the root directory of the server or on the path given below.");
  63. define('OGP_LANG_path_info', "The path must be relative to the server folder and contain no slashes at the beginning or end, eg: cstrike/cfg. If left blank will use the server root path.");
  64. define('OGP_LANG_post-script_info', "Enter Bash language code, this will be executed as a script, you can use text replacements to customize the installation, they will be replaced by data from the server on which you install the addon. The script will start from the root folder of the server or the specified path.");
  65. define('OGP_LANG_show_to_group', "Show to group");
  66. define('OGP_LANG_all_groups', "All groups");
  67. define('OGP_LANG_show_addons_for_selected_group', "Show addons for selected group");
  68. define('OGP_LANG_group', "Group");
  69. ?>