util.php 5.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?php
  2. /*
  3. *
  4. * OGP - Open Game Panel
  5. * Copyright (C) 2008 - 2017 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('module_name', "Dienstprogramme");
  25. define('ping', "Ping");
  26. define('traceroute', "Traceroute");
  27. define('network_tools', "Netzwerk-Tools");
  28. define('sourcemod_admins', "Sourcemod Admins ");
  29. define('steam_converter', "SteamID Konverter");
  30. define('your_ip', "Ihre IP-Adresse:");
  31. define('loading_agents', "Lade online Agenten...");
  32. define('loading_failed', "Laden der Agenten fehlgeschlagen.");
  33. define('agents_offline', "Alle Agenten sind offline.");
  34. define('no_commands', "Es tut uns leid, Ihr Benutzerkonto hat keine Befehle verfügbar.");
  35. define('remote_target', "Ziel IP Adresse:");
  36. define('command', "Befehl:");
  37. define('select_agent', "Agent auswählen:");
  38. define('chdir_failed', "Error: chdir() returned false.");
  39. define('agent_invalid', "Invalid Agent specified.");
  40. define('networktools_agent_offline', "Unable to execute your command on the selected Agent, because it is offline.");
  41. define('target_empty', "No remote target given.");
  42. define('command_empty', "Kein Befehl ausgewählt.");
  43. define('command_unavilable', "The selected command is unavailable on the selected agent.");
  44. define('target_invalid', "Ungültiger IP/Hostname eingegeben.");
  45. define('exec_failed', "Zeitüberschreitung beim Warten auf eine Antwort.");
  46. define('command_no_access', "Du hast keinen Zugriff auf diesen Befehl. Dieser Vorfall wird protokolliert.");
  47. define('command_hacking_attempt', "Blacklisted characters entered. This incident will be logged.");
  48. define('command_bad_characters', "Attempted to execute a command with malicious characters. Input received: %s %s");
  49. define('command_no_permissions', "Attempted to execute a command with insufficient permissions. Input received: %s %s");
  50. define('command_executed', "Der folgende Befehl wurde erfolgreich gesendet: %s %s");
  51. define('no_servers', "You have no servers assigned to your account.");
  52. define('select_server', "Server auswählen:");
  53. define('select_server_option', "Auswählen...");
  54. define('steamid', "Steam ID:");
  55. define('immunity', "Immunität:");
  56. define('sourcemod_perms', "Sourcemod Rechte:");
  57. define('sourcemod_perm_root', "Sourcemod Root Flag");
  58. define('sourcemod_perm_custom', "Sourcemod Benutzerdefinierte Flags
  59. ");
  60. define('sourcemod_flag_a', "Reservierter Slot Zugriffe.");
  61. define('sourcemod_flag_b', "Generic admin; required for admins.");
  62. define('sourcemod_flag_c', "Kick andere Spieler.");
  63. define('sourcemod_flag_d', "Bann andere Spieler.");
  64. define('sourcemod_flag_e', "Remove bans.");
  65. define('sourcemod_flag_f', "Slay/harm other players.");
  66. define('sourcemod_flag_g', "Change the map or major gameplay features.");
  67. define('sourcemod_flag_h', "Change most CVARs.");
  68. define('sourcemod_flag_i', "Execute config files.");
  69. define('sourcemod_flag_j', "Special chat privileges.");
  70. define('sourcemod_flag_k', "Start or create votes.");
  71. define('sourcemod_flag_l', "Set a password on the server.");
  72. define('sourcemod_flag_m', "Use RCON commands.");
  73. define('sourcemod_flag_n', "Change sv_cheats or use cheating commands.");
  74. define('sourcemod_flag_o', "Custom Group 1.");
  75. define('sourcemod_flag_p', "Custom Group 2.");
  76. define('sourcemod_flag_q', "Custom Group 3.");
  77. define('sourcemod_flag_r', "Custom Group 4.");
  78. define('sourcemod_flag_s', "Custom Group 5.");
  79. define('sourcemod_flag_t', "Custom Group 6.");
  80. define('rcon_reload_admins_failed', "Failed to reload the admin cache via RCON; is it online?");
  81. define('reload_admins_failed', "Failed to reload the admin cache; \"sm_reloadadmins\" is an unknown command.");
  82. define('reload_admins_success', "Successfully added %s to admins_simple.ini and reloaded the admin cache.");
  83. define('add_success_no_rcon', "Successfully added %s to your admins_simple.ini file, but unable to reload the admin cache.");
  84. define('writefile_error', "There was an unknown error writing to: %s");
  85. define('remotefile_nonexistent', "Unable to add a new admin. Admin file: %s doesn\'t exist on this server.");
  86. define('empty_flag_list', "You didn\'t select any admin flags.");
  87. define('invalid_steam_format', "The SteamID you entered doesn\'t match the required pattern.");
  88. define('selected_server_offline', "Unable to add an admin, the agent controlling the selected server is offline.");
  89. define('malformed_form', "You submitted a form with malformed hidden elements - unable to add an admin.");
  90. define('empty_form_data', "Please fill out all elements of the form.");
  91. define('server_not_selected', "You haven\'t selected a server.");
  92. define('invalid_steamid', "You have entered an invalid Steam ID.");
  93. define('invalid_immunity', "You entered an invalid immunity value.");
  94. define('submit', "Senden");
  95. define('post_failed', "The POST action failed. Unable to retrieve a response.");
  96. ?>