Merge pull request #115 from GameServerPanel/copilot/fix-html-entities-remove-unused-themes
This commit is contained in:
commit
199b398543
796 changed files with 38947 additions and 43914 deletions
2
home.php
2
home.php
|
|
@ -215,7 +215,7 @@ function ogpHome()
|
|||
"'><span data-icon_path='$icon_path'>$game_name</span></a>\n<ul id='submenu_1' >\n";
|
||||
foreach ((array)$server_homes as $server_home)
|
||||
{
|
||||
$button_name = htmlentities($server_home['home_name']);
|
||||
$button_name = htmlentities($server_home['home_name'] ?? '', ENT_QUOTES, 'UTF-8');
|
||||
if( ! preg_match("/none/i", (string)$server_home['mod_name']) )
|
||||
$button_name .= " - ".$server_home['mod_name'];
|
||||
$game_homes_list .= "<li><a title='".$server_home['ip'].':'.$server_home['port'].
|
||||
|
|
|
|||
|
|
@ -127,7 +127,7 @@ class FormTable {
|
|||
print_failure(get_lang_f('invalid_setting_type',$type));
|
||||
}
|
||||
|
||||
if ( defined("OGP_LANG_".$name."_info") )
|
||||
if ( defined("LANG_".$name."_info") )
|
||||
{
|
||||
echo "</td><td><div class='image-tip' id='".$this->i."' ><img src='images/icon_help_small.gif' ><span class='tip' id='".$this->i."' >".str_replace("'",'"',get_lang($name."_info"))."</span></div></td></tr>";
|
||||
$this->i++;
|
||||
|
|
@ -143,7 +143,7 @@ class FormTable {
|
|||
echo "<tr><td align='right' $td_extra><label for='".$name."'>".get_lang($name).":</label></td>";
|
||||
echo "<td align='left'>".$data."</td>\n";
|
||||
|
||||
if ( defined("OGP_LANG_".$name."_info") )
|
||||
if ( defined("LANG_".$name."_info") )
|
||||
{
|
||||
echo "<td><div class='image-tip' id='".$this->i."' ><img src='images/icon_help_small.gif' ><span class='tip' id='".$this->i."' >".str_replace("'",'"',get_lang($name."_info"))."</span></div></td>\n</tr>\n";
|
||||
$this->i++;
|
||||
|
|
|
|||
|
|
@ -243,7 +243,7 @@ function create_home_selector($module, $subpage, $server_homes) {
|
|||
$selected = 'selected="selected"';
|
||||
else
|
||||
$selected = '';
|
||||
echo "<option value='". $server_home['home_id'] . "' $selected >" . htmlentities($server_home['home_name']) . "</option>\n";
|
||||
echo "<option value='". $server_home['home_id'] . "' $selected >" . htmlentities($server_home['home_name'] ?? '', ENT_QUOTES, 'UTF-8') . "</option>\n";
|
||||
}
|
||||
echo "</select>\n";
|
||||
echo "</form>";
|
||||
|
|
@ -299,7 +299,7 @@ function create_home_selector_address($module, $subpage, $server_homes, $extra_i
|
|||
echo "<option value='". $server_home['home_id'] .
|
||||
"-" . $server_home['mod_id'] . "-" . $server_home['ip'] .
|
||||
"-" . $server_home['port'] . "' $selected >" .
|
||||
htmlentities($server_home['home_name']) . " - " . $display_ip .
|
||||
htmlentities($server_home['home_name'] ?? '', ENT_QUOTES, 'UTF-8') . " - " . $display_ip .
|
||||
":" . $server_home['port'] . "</option>\n";
|
||||
}
|
||||
echo "</select>\n";
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@
|
|||
*/
|
||||
|
||||
// Globals
|
||||
$OGPLangPre = "OGP_LANG_";
|
||||
$OGPLangPre = "LANG_";
|
||||
|
||||
// Ignore any request with unwanted values at 'm' or 'p'
|
||||
if( isset($_REQUEST['m']) and !preg_match("/^([a-z]|[0-9]|_|-)+$/i", $_REQUEST['m']) )
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ if (!defined('GSP_XMLRPC_READY')) {
|
|||
if (!headers_sent()) {
|
||||
header('Content-Type: text/plain; charset=UTF-8', true, 500);
|
||||
}
|
||||
echo nl2br(htmlentities($message));
|
||||
echo nl2br(htmlentities($message ?? '', ENT_QUOTES, 'UTF-8'));
|
||||
}
|
||||
exit(1);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -22,122 +22,122 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_lang_charset', "UTF-8");
|
||||
define('OGP_LANG_already_logged_in_redirecting_to_dashboard', "تم تسجيل الدخول بالفعل ، إعادة توجيه إلى لوحة التحكم.");
|
||||
define('OGP_LANG_logging_in', "تسجيل الدخول");
|
||||
define('OGP_LANG_redirecting_in', "توجيه الى");
|
||||
define('OGP_LANG_refresh_page', "تحديث الصفحة");
|
||||
define('OGP_LANG_no_rights', "لاتملك صلاحيات الدخول لهذة الصفحة.");
|
||||
define('OGP_LANG_welcome', "مرحبا");
|
||||
define('OGP_LANG_logout', "تسجيل الخروج");
|
||||
define('OGP_LANG_logout_message', "تم تسجيل الخروج.");
|
||||
define('OGP_LANG_support', "الدعم");
|
||||
define('OGP_LANG_password', "كلمة المرور");
|
||||
define('OGP_LANG_login', "إسم المستخدم");
|
||||
define('OGP_LANG_login_button', "تسجيل الدخول");
|
||||
define('OGP_LANG_solve_captcha', "تحقق البشري");
|
||||
define('OGP_LANG_lost_passwd', "نسيت كلمة المرور؟");
|
||||
define('OGP_LANG_no_db_connection', "لا يمكن الاتصال بقاعدة البيانات.");
|
||||
define('OGP_LANG_bad_login', "خطأ في اسم المستخدم أو كلمة مرور.");
|
||||
define('OGP_LANG_not_logged_in', "انك لم تقم بتسجيل الدخول حاليا.");
|
||||
define('OGP_LANG_remove_install', "من فضلك امسح ملف install.php لأسباب تتعلق بالحماية.");
|
||||
define('OGP_LANG_agent_offline', "العميل اللذى يتحكم فى هذا السيرفر مغلق.");
|
||||
define('OGP_LANG_logged_in', "لقد سجلت دخولك كـ ");
|
||||
define('OGP_LANG_delete', "حذف");
|
||||
define('OGP_LANG_edit', "تعديل");
|
||||
define('OGP_LANG_actions', "Actions");
|
||||
define('OGP_LANG_invalid_subpage', "صفحة فرعية غير صالحة.");
|
||||
define('OGP_LANG_invalid_home_id', "الأيدي اللذي تم ادخاله غير صالح.");
|
||||
define('OGP_LANG_note', "ملاحظة");
|
||||
define('OGP_LANG_hint', "ملاحظة");
|
||||
define('OGP_LANG_yes', "نعم");
|
||||
define('OGP_LANG_no', "لا");
|
||||
define('OGP_LANG_on', "تشغيل");
|
||||
define('OGP_LANG_off', "إغلاق");
|
||||
define('OGP_LANG_db_error_invalid_host', "تم إدخال مضيف قاعدة بيانات غير صالح.");
|
||||
define('OGP_LANG_db_error_invalid_user_and_pass', "اسم مستخدم قاعدة البيانات غير صالح و / أو كلمة المرور غير صالحة.");
|
||||
define('OGP_LANG_db_error_invalid_database', "قاعدة بيانات غير صالحة.");
|
||||
define('OGP_LANG_db_unknown_error', "خطأ قاعدة البيانات غير معروف : %s");
|
||||
define('OGP_LANG_db_error_module_missing', "موديول قاعدة بيانات PHP المطلوب مفقود.");
|
||||
define('OGP_LANG_db_error_invalid_db_type', "نوع قاعدة بيانات غير صالح في ملف الإعدادت.");
|
||||
define('OGP_LANG_invalid_login_information', "تم إدخال معلومات تسجيل الدخول غير صالحة.");
|
||||
define('OGP_LANG_failed_to_read_config', "فشلت قراءة ملف الإعدادات.");
|
||||
define('OGP_LANG_account_expired', "انتهت صلاحية حسابك.");
|
||||
define('OGP_LANG_contact_admin_to_enable_account', "اتصل بالأدمن لإعادة تمكين حسابك.");
|
||||
define('OGP_LANG_maintenance_mode_on', "وضع الصيانة قيد التشغيل");
|
||||
define('OGP_LANG_logging_out_10', "تسجيل الخروج في 10 ثوانى");
|
||||
define('OGP_LANG_invalid_redirect', "إعادة توجيه");
|
||||
define('OGP_LANG_login_title', "تسجيل الدخول للوحة التحكم");
|
||||
define('OGP_LANG_module_not_installed', "الموديول لم يتم تثبيته.");
|
||||
define('OGP_LANG_no_access_to_home', "ليس لديك حق الوصول إلى هذا المكان.");
|
||||
define('OGP_LANG_not_available', "غير موجود");
|
||||
define('OGP_LANG_offline', "أوفلاين");
|
||||
define('OGP_LANG_online', "أونلاين");
|
||||
define('OGP_LANG_invalid_url', "عنوان غير صالح");
|
||||
define('OGP_LANG_xml_file_not_valid', "ملف الXML '%s' تعذر التحقق من صحة المخطط '%s'");
|
||||
define('OGP_LANG_unable_to_load_xml', "تعذر تحميل ملف XML '%s'. إذن المشكلة؟");
|
||||
define('OGP_LANG_gamemanager', "مدير اللعبة");
|
||||
define('OGP_LANG_game_monitor', "مراقب اللعبة");
|
||||
define('OGP_LANG_dashboard', "لوحة التحكم");
|
||||
define('OGP_LANG_user_addons', "الإضافات");
|
||||
define('OGP_LANG_ftp', "الأف تي بي");
|
||||
define('OGP_LANG_shop', "متجر");
|
||||
define('OGP_LANG_shop_guest', "المتجر");
|
||||
define('OGP_LANG_TS3Admin', "أدمن TS3");
|
||||
define('OGP_LANG_administration', "الادارة");
|
||||
define('OGP_LANG_config_games', "إعدادات لعبة/مود");
|
||||
define('OGP_LANG_modulemanager', "الموديولات");
|
||||
define('OGP_LANG_server', "السيرفرات");
|
||||
define('OGP_LANG_settings', "إعدادات اللوحة");
|
||||
define('OGP_LANG_themes', "إعدادات المظهر");
|
||||
define('OGP_LANG_user_admin', "المستخدمين");
|
||||
define('OGP_LANG_sub_users', "المستخدمين الفرعيين");
|
||||
define('OGP_LANG_show_groups', "المجموعات");
|
||||
define('OGP_LANG_user_games', "سيرفرات الألعاب");
|
||||
define('OGP_LANG_addons_manager', "مدير الإضافات");
|
||||
define('OGP_LANG_ftp_admin', "مستخدمى FTP");
|
||||
define('OGP_LANG_orders', "الطلبات");
|
||||
define('OGP_LANG_services', "الخدمات");
|
||||
define('OGP_LANG_shop_settings', "إعدادات المتجر");
|
||||
define('OGP_LANG_update', "تحديث اللوحة");
|
||||
define('OGP_LANG_extras', "إضافات");
|
||||
define('OGP_LANG_show', "أظهر");
|
||||
define('OGP_LANG_show_all', "أظهر كل السيرفرات");
|
||||
define('OGP_LANG_cur_theme', "%s قالب");
|
||||
define('OGP_LANG_copyright', "حقوق الملكية");
|
||||
define('OGP_LANG_all_rights_reserved', "كل الحقوق محفوظة");
|
||||
define('OGP_LANG_version', "نسخة");
|
||||
define('OGP_LANG_show_version', "أظهر النسخة");
|
||||
define('OGP_LANG_queries_executed', "الاستعلامات التي تم تنفيذها");
|
||||
define('OGP_LANG_lang', "لغة");
|
||||
define('OGP_LANG_get_size', "عرض الحجم");
|
||||
define('OGP_LANG_total_size', "الحجم الإجمالي");
|
||||
define('OGP_LANG_lgsl', "LGSL");
|
||||
define('OGP_LANG_lgsl_admin', "أدمن LGSL");
|
||||
define('OGP_LANG_rcon', "RCON");
|
||||
define('OGP_LANG_watch_logger', "مشاهدة المسجل");
|
||||
define('OGP_LANG_litefm_settings', "إعدادات LiteFM");
|
||||
define('OGP_LANG_assign_expiration_date', "تعيين تاريخ انتهاء الصلاحية");
|
||||
define('OGP_LANG_assign_expiration_date_info', "بمجرد انتهاء صلاحية السيرفر سيتم ازالة التعيين ولكن لم يتم حذف السيرفر.");
|
||||
define('OGP_LANG_server_expiration_date', "تاريخ انتاء صلاحية السيرفر");
|
||||
define('OGP_LANG_server_expiration_date_info', "بمجرد انتهاء صلاحيته ، سيتم حذف السيرفر ( قاعدة البيانات والملفات).");
|
||||
define('OGP_LANG_set_expiration_date', "ضع تاريخ الإنتهاء");
|
||||
define('OGP_LANG_admin_dsi', "إعدادات DSi");
|
||||
define('OGP_LANG_user_dsi', "DSi");
|
||||
define('OGP_LANG_list_dsi', "قائمة DSi");
|
||||
define('OGP_LANG_no_remote_servers', "لا توجد خوادم بعيدة معروفة! إضافة خادم لاستخدام هذه الوظيفة.");
|
||||
define('OGP_LANG_no_results_found', "لم يتم العثور على نتائج بحث ل%s");
|
||||
define('OGP_LANG_tickets', "تذاكر الدعم");
|
||||
define('OGP_LANG_news', "الأخبار");
|
||||
define('OGP_LANG_admin_news', "مدير الأخبار");
|
||||
define('OGP_LANG_util', "خدمات");
|
||||
define('OGP_LANG_fast_download', "التحميل السريع");
|
||||
define('OGP_LANG_fd_user', "التحميل السريع");
|
||||
define('OGP_LANG_cron', "مدير الكرون");
|
||||
define('OGP_LANG_user_cron', "الكرون");
|
||||
define('OGP_LANG_faq', "التعليمات.");
|
||||
define('OGP_LANG_mysql_admin', "مدير قاعدة البيانات");
|
||||
define('OGP_LANG_copied', "نسخ!");
|
||||
define('OGP_LANG_ticket_settings', "إعدادات التذاكر");
|
||||
define('OGP_LANG_form', "تسجيل");
|
||||
define('LANG_lang_charset', "UTF-8");
|
||||
define('LANG_already_logged_in_redirecting_to_dashboard', "تم تسجيل الدخول بالفعل ، إعادة توجيه إلى لوحة التحكم.");
|
||||
define('LANG_logging_in', "تسجيل الدخول");
|
||||
define('LANG_redirecting_in', "توجيه الى");
|
||||
define('LANG_refresh_page', "تحديث الصفحة");
|
||||
define('LANG_no_rights', "لاتملك صلاحيات الدخول لهذة الصفحة.");
|
||||
define('LANG_welcome', "مرحبا");
|
||||
define('LANG_logout', "تسجيل الخروج");
|
||||
define('LANG_logout_message', "تم تسجيل الخروج.");
|
||||
define('LANG_support', "الدعم");
|
||||
define('LANG_password', "كلمة المرور");
|
||||
define('LANG_login', "إسم المستخدم");
|
||||
define('LANG_login_button', "تسجيل الدخول");
|
||||
define('LANG_solve_captcha', "تحقق البشري");
|
||||
define('LANG_lost_passwd', "نسيت كلمة المرور؟");
|
||||
define('LANG_no_db_connection', "لا يمكن الاتصال بقاعدة البيانات.");
|
||||
define('LANG_bad_login', "خطأ في اسم المستخدم أو كلمة مرور.");
|
||||
define('LANG_not_logged_in', "انك لم تقم بتسجيل الدخول حاليا.");
|
||||
define('LANG_remove_install', "من فضلك امسح ملف install.php لأسباب تتعلق بالحماية.");
|
||||
define('LANG_agent_offline', "العميل اللذى يتحكم فى هذا السيرفر مغلق.");
|
||||
define('LANG_logged_in', "لقد سجلت دخولك كـ ");
|
||||
define('LANG_delete', "حذف");
|
||||
define('LANG_edit', "تعديل");
|
||||
define('LANG_actions', "Actions");
|
||||
define('LANG_invalid_subpage', "صفحة فرعية غير صالحة.");
|
||||
define('LANG_invalid_home_id', "الأيدي اللذي تم ادخاله غير صالح.");
|
||||
define('LANG_note', "ملاحظة");
|
||||
define('LANG_hint', "ملاحظة");
|
||||
define('LANG_yes', "نعم");
|
||||
define('LANG_no', "لا");
|
||||
define('LANG_on', "تشغيل");
|
||||
define('LANG_off', "إغلاق");
|
||||
define('LANG_db_error_invalid_host', "تم إدخال مضيف قاعدة بيانات غير صالح.");
|
||||
define('LANG_db_error_invalid_user_and_pass', "اسم مستخدم قاعدة البيانات غير صالح و / أو كلمة المرور غير صالحة.");
|
||||
define('LANG_db_error_invalid_database', "قاعدة بيانات غير صالحة.");
|
||||
define('LANG_db_unknown_error', "خطأ قاعدة البيانات غير معروف : %s");
|
||||
define('LANG_db_error_module_missing', "موديول قاعدة بيانات PHP المطلوب مفقود.");
|
||||
define('LANG_db_error_invalid_db_type', "نوع قاعدة بيانات غير صالح في ملف الإعدادت.");
|
||||
define('LANG_invalid_login_information', "تم إدخال معلومات تسجيل الدخول غير صالحة.");
|
||||
define('LANG_failed_to_read_config', "فشلت قراءة ملف الإعدادات.");
|
||||
define('LANG_account_expired', "انتهت صلاحية حسابك.");
|
||||
define('LANG_contact_admin_to_enable_account', "اتصل بالأدمن لإعادة تمكين حسابك.");
|
||||
define('LANG_maintenance_mode_on', "وضع الصيانة قيد التشغيل");
|
||||
define('LANG_logging_out_10', "تسجيل الخروج في 10 ثوانى");
|
||||
define('LANG_invalid_redirect', "إعادة توجيه");
|
||||
define('LANG_login_title', "تسجيل الدخول للوحة التحكم");
|
||||
define('LANG_module_not_installed', "الموديول لم يتم تثبيته.");
|
||||
define('LANG_no_access_to_home', "ليس لديك حق الوصول إلى هذا المكان.");
|
||||
define('LANG_not_available', "غير موجود");
|
||||
define('LANG_offline', "أوفلاين");
|
||||
define('LANG_online', "أونلاين");
|
||||
define('LANG_invalid_url', "عنوان غير صالح");
|
||||
define('LANG_xml_file_not_valid', "ملف الXML '%s' تعذر التحقق من صحة المخطط '%s'");
|
||||
define('LANG_unable_to_load_xml', "تعذر تحميل ملف XML '%s'. إذن المشكلة؟");
|
||||
define('LANG_gamemanager', "مدير اللعبة");
|
||||
define('LANG_game_monitor', "مراقب اللعبة");
|
||||
define('LANG_dashboard', "لوحة التحكم");
|
||||
define('LANG_user_addons', "الإضافات");
|
||||
define('LANG_ftp', "الأف تي بي");
|
||||
define('LANG_shop', "متجر");
|
||||
define('LANG_shop_guest', "المتجر");
|
||||
define('LANG_TS3Admin', "أدمن TS3");
|
||||
define('LANG_administration', "الادارة");
|
||||
define('LANG_config_games', "إعدادات لعبة/مود");
|
||||
define('LANG_modulemanager', "الموديولات");
|
||||
define('LANG_server', "السيرفرات");
|
||||
define('LANG_settings', "إعدادات اللوحة");
|
||||
define('LANG_themes', "إعدادات المظهر");
|
||||
define('LANG_user_admin', "المستخدمين");
|
||||
define('LANG_sub_users', "المستخدمين الفرعيين");
|
||||
define('LANG_show_groups', "المجموعات");
|
||||
define('LANG_user_games', "سيرفرات الألعاب");
|
||||
define('LANG_addons_manager', "مدير الإضافات");
|
||||
define('LANG_ftp_admin', "مستخدمى FTP");
|
||||
define('LANG_orders', "الطلبات");
|
||||
define('LANG_services', "الخدمات");
|
||||
define('LANG_shop_settings', "إعدادات المتجر");
|
||||
define('LANG_update', "تحديث اللوحة");
|
||||
define('LANG_extras', "إضافات");
|
||||
define('LANG_show', "أظهر");
|
||||
define('LANG_show_all', "أظهر كل السيرفرات");
|
||||
define('LANG_cur_theme', "%s قالب");
|
||||
define('LANG_copyright', "حقوق الملكية");
|
||||
define('LANG_all_rights_reserved', "كل الحقوق محفوظة");
|
||||
define('LANG_version', "نسخة");
|
||||
define('LANG_show_version', "أظهر النسخة");
|
||||
define('LANG_queries_executed', "الاستعلامات التي تم تنفيذها");
|
||||
define('LANG_lang', "لغة");
|
||||
define('LANG_get_size', "عرض الحجم");
|
||||
define('LANG_total_size', "الحجم الإجمالي");
|
||||
define('LANG_lgsl', "LGSL");
|
||||
define('LANG_lgsl_admin', "أدمن LGSL");
|
||||
define('LANG_rcon', "RCON");
|
||||
define('LANG_watch_logger', "مشاهدة المسجل");
|
||||
define('LANG_litefm_settings', "إعدادات LiteFM");
|
||||
define('LANG_assign_expiration_date', "تعيين تاريخ انتهاء الصلاحية");
|
||||
define('LANG_assign_expiration_date_info', "بمجرد انتهاء صلاحية السيرفر سيتم ازالة التعيين ولكن لم يتم حذف السيرفر.");
|
||||
define('LANG_server_expiration_date', "تاريخ انتاء صلاحية السيرفر");
|
||||
define('LANG_server_expiration_date_info', "بمجرد انتهاء صلاحيته ، سيتم حذف السيرفر ( قاعدة البيانات والملفات).");
|
||||
define('LANG_set_expiration_date', "ضع تاريخ الإنتهاء");
|
||||
define('LANG_admin_dsi', "إعدادات DSi");
|
||||
define('LANG_user_dsi', "DSi");
|
||||
define('LANG_list_dsi', "قائمة DSi");
|
||||
define('LANG_no_remote_servers', "لا توجد خوادم بعيدة معروفة! إضافة خادم لاستخدام هذه الوظيفة.");
|
||||
define('LANG_no_results_found', "لم يتم العثور على نتائج بحث ل%s");
|
||||
define('LANG_tickets', "تذاكر الدعم");
|
||||
define('LANG_news', "الأخبار");
|
||||
define('LANG_admin_news', "مدير الأخبار");
|
||||
define('LANG_util', "خدمات");
|
||||
define('LANG_fast_download', "التحميل السريع");
|
||||
define('LANG_fd_user', "التحميل السريع");
|
||||
define('LANG_cron', "مدير الكرون");
|
||||
define('LANG_user_cron', "الكرون");
|
||||
define('LANG_faq', "التعليمات.");
|
||||
define('LANG_mysql_admin', "مدير قاعدة البيانات");
|
||||
define('LANG_copied', "نسخ!");
|
||||
define('LANG_ticket_settings', "إعدادات التذاكر");
|
||||
define('LANG_form', "تسجيل");
|
||||
?>
|
||||
|
|
@ -22,48 +22,48 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_install_lang', "اختر لغتك المفضلة");
|
||||
define('OGP_LANG_install_welcome', "مرحبًا بك في برنامج Open Game Panel Installer");
|
||||
define('OGP_LANG_file_permission_check', "التحقق من صلاحيات الملفات المطلوبة");
|
||||
define('OGP_LANG_OK', "حسناً");
|
||||
define('OGP_LANG_write_permission_required', "صلاحية الكتابة مطلوبة");
|
||||
define('OGP_LANG_execute_permission_required', "صلاحية التنفيذ مطلوبة");
|
||||
define('OGP_LANG_create_an_empty_file', "أنشأ ملف فارغ");
|
||||
define('OGP_LANG_found', "وجد");
|
||||
define('OGP_LANG_not_found', "غير معثور عليه");
|
||||
define('OGP_LANG_pear_xxtea_info', "Pear Crypt_XXTEA مطلوبة لاستخدام أوبن قيم بانل. في معظم توزيعات لينكس يمكن تثبيت هذه الوحدة مع أمر Pear التالي 'pear install Crypt_XXTEA-beta'.");
|
||||
define('OGP_LANG_refresh', "تحديث");
|
||||
define('OGP_LANG_checking_required_modules', "فحص الوحدات المطلوبة");
|
||||
define('OGP_LANG_checking_optional_modules', "فحص الوحدات الاختيارية");
|
||||
define('OGP_LANG_database_type', "نوع قاعدة البيانات");
|
||||
define('OGP_LANG_database_settings', "إعدادات الوصول إلى قاعدة البيانات");
|
||||
define('OGP_LANG_database_hostname', "اسم مضيف قاعدة البيانات");
|
||||
define('OGP_LANG_database_username', "إسم مستخدم قاعدة البيانات");
|
||||
define('OGP_LANG_database_password', "كلمة مرور قاعدة البيانات");
|
||||
define('OGP_LANG_database_name', "اسم قاعدة البيانات");
|
||||
define('OGP_LANG_database_prefix', "بادئة قاعدة البيانات");
|
||||
define('OGP_LANG_next', "التالى");
|
||||
define('OGP_LANG_encryption_key', "مفتاح التشفير (Agent)");
|
||||
define('OGP_LANG_agent_port', "بورت (Agent)");
|
||||
define('OGP_LANG_unable_to_write_config', "تعذر الكتابة إلى ملف التهيئة. يرجى إعادة التحقق من إذن الكتابة.");
|
||||
define('OGP_LANG_admin_login_details', "تفاصيل تسجيل دخول الأدمن");
|
||||
define('OGP_LANG_config_written', "تم إنشاء ملفات الأعدادات بنجاح.");
|
||||
define('OGP_LANG_database_created', "تم إنشاء جداول قاعدة البيانات بنجاح.");
|
||||
define('OGP_LANG_admin_login_details_info', "الان ، قم بإنشاء حساب الأدمن للوحة التحكم");
|
||||
define('OGP_LANG_username', "إسم المستخدم");
|
||||
define('OGP_LANG_repeat_password', "أعد كتابة كلمة السر");
|
||||
define('OGP_LANG_email', "عنوان البريد الإلكتروني");
|
||||
define('OGP_LANG_back', "تراجع");
|
||||
define('OGP_LANG_database_setup_failure', "تعذر إنشاء قاعدة البيانات ، من فضلك تأكد من إعدادت قاعدة البيانات.");
|
||||
define('OGP_LANG_php_version_check', "التحقق من إصدار PHP");
|
||||
define('OGP_LANG_invalid_username', "لقد أدخلت اسم مستخدم غير صالح.");
|
||||
define('OGP_LANG_password_too_short', "كلمة المرور قصيرة جدا ، يجب ألا يقل عدد الأحرف عن '%d' حروف.");
|
||||
define('OGP_LANG_password_contains_invalid_characters', "تحتوي كلمة المرور على أحرف غير صالحة.");
|
||||
define('OGP_LANG_invalid_email_address', "لقد أدخلت عنوان بريد إلكتروني غير صالح.");
|
||||
define('OGP_LANG_setup_complete', "اكتمل التثبيت بنجاح. لوحة التحكم OGP جاهزة الآن للاستخدام.");
|
||||
define('OGP_LANG_remove_install_and_secure_config', "يجب حذف install.php من الخادم الخاص بك و عمل شمود لمجلد includes/config.inc.php وذالك بالعودة إلى 644 لأغراض أمنية.");
|
||||
define('OGP_LANG_go_to_panel', "انقر هنا للدخول إلى لوحة OGP الخاصة بك.");
|
||||
define('OGP_LANG_unable_to_resolve', "إذا لم تتمكن من حل هذه المشكلة، يرجى زيارة موقع OGP");
|
||||
define('OGP_LANG_slogan', "المصدر المفتوح واحد!");
|
||||
define('OGP_LANG_default_welcome_title_message', "مرحبا! <b style='font-size:12px; font-weight:normal;'>يمكنك تغير هذا العنوان من '<a href='?m=settings&p=themes'>إعدادات المظهر</a>' تحت '<a href='?m=administration&p=main'>الإدارة</a>' tab.</b>");
|
||||
define('LANG_install_lang', "اختر لغتك المفضلة");
|
||||
define('LANG_install_welcome', "مرحبًا بك في برنامج Open Game Panel Installer");
|
||||
define('LANG_file_permission_check', "التحقق من صلاحيات الملفات المطلوبة");
|
||||
define('LANG_OK', "حسناً");
|
||||
define('LANG_write_permission_required', "صلاحية الكتابة مطلوبة");
|
||||
define('LANG_execute_permission_required', "صلاحية التنفيذ مطلوبة");
|
||||
define('LANG_create_an_empty_file', "أنشأ ملف فارغ");
|
||||
define('LANG_found', "وجد");
|
||||
define('LANG_not_found', "غير معثور عليه");
|
||||
define('LANG_pear_xxtea_info', "Pear Crypt_XXTEA مطلوبة لاستخدام أوبن قيم بانل. في معظم توزيعات لينكس يمكن تثبيت هذه الوحدة مع أمر Pear التالي 'pear install Crypt_XXTEA-beta'.");
|
||||
define('LANG_refresh', "تحديث");
|
||||
define('LANG_checking_required_modules', "فحص الوحدات المطلوبة");
|
||||
define('LANG_checking_optional_modules', "فحص الوحدات الاختيارية");
|
||||
define('LANG_database_type', "نوع قاعدة البيانات");
|
||||
define('LANG_database_settings', "إعدادات الوصول إلى قاعدة البيانات");
|
||||
define('LANG_database_hostname', "اسم مضيف قاعدة البيانات");
|
||||
define('LANG_database_username', "إسم مستخدم قاعدة البيانات");
|
||||
define('LANG_database_password', "كلمة مرور قاعدة البيانات");
|
||||
define('LANG_database_name', "اسم قاعدة البيانات");
|
||||
define('LANG_database_prefix', "بادئة قاعدة البيانات");
|
||||
define('LANG_next', "التالى");
|
||||
define('LANG_encryption_key', "مفتاح التشفير (Agent)");
|
||||
define('LANG_agent_port', "بورت (Agent)");
|
||||
define('LANG_unable_to_write_config', "تعذر الكتابة إلى ملف التهيئة. يرجى إعادة التحقق من إذن الكتابة.");
|
||||
define('LANG_admin_login_details', "تفاصيل تسجيل دخول الأدمن");
|
||||
define('LANG_config_written', "تم إنشاء ملفات الأعدادات بنجاح.");
|
||||
define('LANG_database_created', "تم إنشاء جداول قاعدة البيانات بنجاح.");
|
||||
define('LANG_admin_login_details_info', "الان ، قم بإنشاء حساب الأدمن للوحة التحكم");
|
||||
define('LANG_username', "إسم المستخدم");
|
||||
define('LANG_repeat_password', "أعد كتابة كلمة السر");
|
||||
define('LANG_email', "عنوان البريد الإلكتروني");
|
||||
define('LANG_back', "تراجع");
|
||||
define('LANG_database_setup_failure', "تعذر إنشاء قاعدة البيانات ، من فضلك تأكد من إعدادت قاعدة البيانات.");
|
||||
define('LANG_php_version_check', "التحقق من إصدار PHP");
|
||||
define('LANG_invalid_username', "لقد أدخلت اسم مستخدم غير صالح.");
|
||||
define('LANG_password_too_short', "كلمة المرور قصيرة جدا ، يجب ألا يقل عدد الأحرف عن '%d' حروف.");
|
||||
define('LANG_password_contains_invalid_characters', "تحتوي كلمة المرور على أحرف غير صالحة.");
|
||||
define('LANG_invalid_email_address', "لقد أدخلت عنوان بريد إلكتروني غير صالح.");
|
||||
define('LANG_setup_complete', "اكتمل التثبيت بنجاح. لوحة التحكم OGP جاهزة الآن للاستخدام.");
|
||||
define('LANG_remove_install_and_secure_config', "يجب حذف install.php من الخادم الخاص بك و عمل شمود لمجلد includes/config.inc.php وذالك بالعودة إلى 644 لأغراض أمنية.");
|
||||
define('LANG_go_to_panel', "انقر هنا للدخول إلى لوحة OGP الخاصة بك.");
|
||||
define('LANG_unable_to_resolve', "إذا لم تتمكن من حل هذه المشكلة، يرجى زيارة موقع OGP");
|
||||
define('LANG_slogan', "المصدر المفتوح واحد!");
|
||||
define('LANG_default_welcome_title_message', "مرحبا! <b style='font-size:12px; font-weight:normal;'>يمكنك تغير هذا العنوان من '<a href='?m=settings&p=themes'>إعدادات المظهر</a>' تحت '<a href='?m=administration&p=main'>الإدارة</a>' tab.</b>");
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -22,154 +22,154 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_error', "خطأ");
|
||||
define('OGP_LANG_title', "واجهة ويب TeamSpeak 3");
|
||||
define('OGP_LANG_update_available', "<h3>تنبيه: يتوفر إصدار جديد (v%1) متاح تحت <a href=\"%2\" target=\"_blank\">%2</a>.</h3>");
|
||||
define('OGP_LANG_head_logout', "تسجيل الخروج");
|
||||
define('OGP_LANG_head_vserver_switch', "تغيير vServer");
|
||||
define('OGP_LANG_head_vserver_overview', "vServer نظرة عامة");
|
||||
define('OGP_LANG_head_vserver_token', "إدارة الرموز");
|
||||
define('OGP_LANG_head_vserver_liveview', "المعاينة الحية");
|
||||
define('OGP_LANG_e_fill_out', "من فضلك إملأ كل الخانات المطلوبة.");
|
||||
define('OGP_LANG_e_upload_failed', "الرفع غير ناجح.");
|
||||
define('OGP_LANG_e_server_responded', "استجابة السيرفر:");
|
||||
define('OGP_LANG_e_conn_serverquery', "تعذر إنشاء صلاحيات ServerQuery.");
|
||||
define('OGP_LANG_e_conn_vserver', "لا يمكن اختيار الخادم الإفتراضي.");
|
||||
define('OGP_LANG_e_session_timedout', "انتهت صلاحية الجلسة.");
|
||||
define('OGP_LANG_js_error', "خطأ");
|
||||
define('OGP_LANG_js_ajax_error', "خطأ AJAX قد حدث: %1.");
|
||||
define('OGP_LANG_js_confirm_server_stop', "هل تريد بالفعل إيقاف السيرفر #%1؟");
|
||||
define('OGP_LANG_js_confirm_server_delete', "هل تريد حقاً حذف الخادم #%1؟");
|
||||
define('OGP_LANG_js_notice_server_deleted', "تم حذف الخادم %1 بنجاح.\nستتم إعادة تحميل صفحة النظرة العامة الآن.");
|
||||
define('OGP_LANG_js_prompt_banduration', "المدة بالساعات (0= غير محدود):");
|
||||
define('OGP_LANG_js_prompt_banreason', "السبب (اختياري):");
|
||||
define('OGP_LANG_js_prompt_msg_to', "رسالة نصية إلى %1 #%2:");
|
||||
define('OGP_LANG_js_prompt_poke_to', "رسالة نكز إلى المستخدم #%1:");
|
||||
define('OGP_LANG_js_prompt_new_propvalue', "قيمة جديدة لـ '%1': ");
|
||||
define('OGP_LANG_n_server_responded', "السيرفر استجاب:");
|
||||
define('OGP_LANG_login_serverquery', "تسجيل دخول ServerQuery");
|
||||
define('OGP_LANG_login_name', "إسم المستخدم");
|
||||
define('OGP_LANG_login_password', "كلمة المرور");
|
||||
define('OGP_LANG_login_submit', "تسجيل الدخول");
|
||||
define('OGP_LANG_vsselect_headline', "اختيار vServer");
|
||||
define('OGP_LANG_vsselect_id', "ID #");
|
||||
define('OGP_LANG_vsselect_name', "إسم");
|
||||
define('OGP_LANG_vsselect_ip', "IP");
|
||||
define('OGP_LANG_vsselect_port', "Port");
|
||||
define('OGP_LANG_vsselect_state', "الحالة");
|
||||
define('OGP_LANG_vsselect_clients', "عملاء");
|
||||
define('OGP_LANG_vsselect_uptime', "مدة التشغيل");
|
||||
define('OGP_LANG_vsselect_choose', "اختر");
|
||||
define('OGP_LANG_vsselect_start', "إبدأ");
|
||||
define('OGP_LANG_vsselect_stop', "توقف");
|
||||
define('OGP_LANG_vsselect_delete', "حذف");
|
||||
define('OGP_LANG_vsselect_new_headline', "إنشاء سيرفر افتراضي جديد");
|
||||
define('OGP_LANG_vsselect_new_servername', "إسم السيرفر");
|
||||
define('OGP_LANG_vsselect_new_slots', "عدد المستخدمين");
|
||||
define('OGP_LANG_vsselect_new_create', "انشاء");
|
||||
define('OGP_LANG_vsselect_new_added_ok', "تم إنشاء السيرفر <span class=\"online\">%1</span> بنجاح.");
|
||||
define('OGP_LANG_vsselect_new_added_generated', "الرمز الذي تم إنشاؤه هو:");
|
||||
define('OGP_LANG_vsoverview_virtualserver', "خادم إفتراضي");
|
||||
define('OGP_LANG_vsoverview_information_head', "معلومات");
|
||||
define('OGP_LANG_vsoverview_connection_head', "اتصال");
|
||||
define('OGP_LANG_vsoverview_info_general_head', "الإعدادت العامة");
|
||||
define('OGP_LANG_vsoverview_info_servername', "إسم السيرفر");
|
||||
define('OGP_LANG_vsoverview_info_host', "المضيف");
|
||||
define('OGP_LANG_vsoverview_info_state', "الحالة");
|
||||
define('OGP_LANG_vsoverview_info_state_port', "Port");
|
||||
define('OGP_LANG_vsoverview_info_uptime', "مدة التشغيل");
|
||||
define('OGP_LANG_vsoverview_info_welcomemsg', "رسالة<br />الترحيب");
|
||||
define('OGP_LANG_vsoverview_info_hostmsg', "رسالة المضيف");
|
||||
define('OGP_LANG_vsoverview_info_hostmsg_mode_output', "الناتج");
|
||||
define('OGP_LANG_vsoverview_info_hostmsg_mode_0', "لاشيء");
|
||||
define('OGP_LANG_vsoverview_info_hostmsg_mode_1', "في سجل المحادثات");
|
||||
define('OGP_LANG_vsoverview_info_hostmsg_mode_2', "نافذة");
|
||||
define('OGP_LANG_vsoverview_info_hostmsg_mode_3', "نافذة + قطع الإتصال");
|
||||
define('OGP_LANG_vsoverview_info_req_security', "مستوى الأمان");
|
||||
define('OGP_LANG_vsoverview_info_req_securitylvl', "مطلوب");
|
||||
define('OGP_LANG_vsoverview_info_hostbanner_head', "شعار المضيف");
|
||||
define('OGP_LANG_vsoverview_info_hostbanner_url', "الرابط");
|
||||
define('OGP_LANG_vsoverview_info_hostbanner_imgurl', "عنوان الصورة");
|
||||
define('OGP_LANG_vsoverview_info_hostbanner_buttonurl', "عنوان URL لزر المضيف");
|
||||
define('OGP_LANG_vsoverview_info_antiflood_head', "مكافحة الفيضانات");
|
||||
define('OGP_LANG_vsoverview_info_antiflood_warning', "تحذير عند");
|
||||
define('OGP_LANG_vsoverview_info_antiflood_kick', "طرد عند");
|
||||
define('OGP_LANG_vsoverview_info_antiflood_ban', "حظر عند");
|
||||
define('OGP_LANG_vsoverview_info_antiflood_banduration', "مدة الحظر");
|
||||
define('OGP_LANG_vsoverview_info_antiflood_decrease', "إنقاص");
|
||||
define('OGP_LANG_vsoverview_info_antiflood_points', "نقاط");
|
||||
define('OGP_LANG_vsoverview_info_antiflood_in_seconds', "ثواني");
|
||||
define('OGP_LANG_vsoverview_info_antiflood_points_per_tick', "نقاط لكل جزء من الثانية");
|
||||
define('OGP_LANG_vsoverview_conn_total_head', "المجموع");
|
||||
define('OGP_LANG_vsoverview_conn_total_packets', "حِزَمْ");
|
||||
define('OGP_LANG_vsoverview_conn_total_bytes', "بايت");
|
||||
define('OGP_LANG_vsoverview_conn_total_send', "تم الإرسال");
|
||||
define('OGP_LANG_vsoverview_conn_total_received', "تم الإستلام");
|
||||
define('OGP_LANG_vsoverview_conn_bandwidth_head', "النطاق");
|
||||
define('OGP_LANG_vsoverview_conn_bandwidth_last', "الأخير");
|
||||
define('OGP_LANG_vsoverview_conn_bandwidth_second', "ثانية");
|
||||
define('OGP_LANG_vsoverview_conn_bandwidth_minute', "دقيقة");
|
||||
define('OGP_LANG_vsoverview_conn_bandwidth_send', "تم الإرسال");
|
||||
define('OGP_LANG_vsoverview_conn_bandwidth_received', "تم الإستلام");
|
||||
define('OGP_LANG_vstoken_token_virtualserver', "السيرفر الإفتراضي");
|
||||
define('OGP_LANG_vstoken_token_head', "الرمز");
|
||||
define('OGP_LANG_vstoken_token_type', "نوع المجموعة");
|
||||
define('OGP_LANG_vstoken_token_id1', "مجموعة السيرفر\<br />مجموعة القناة");
|
||||
define('OGP_LANG_vstoken_token_id2', "(قناة)");
|
||||
define('OGP_LANG_vstoken_token_tokencode', "رمز الشفرة");
|
||||
define('OGP_LANG_vstoken_token_delete', "حذف");
|
||||
define('OGP_LANG_vstoken_new_head', "إنشاء رمز جديد");
|
||||
define('OGP_LANG_vstoken_new_create', "توليد");
|
||||
define('OGP_LANG_vstoken_new_tokentype', "نوع الرمز:");
|
||||
define('OGP_LANG_vstoken_new_servergroup', "مجموعة السيرفر");
|
||||
define('OGP_LANG_vstoken_new_channelgroup', "مجموعة القناة");
|
||||
define('OGP_LANG_vstoken_new_select_group', "مجموعة السيرفر");
|
||||
define('OGP_LANG_vstoken_new_select_channelgroup', "مجموعة القناة ");
|
||||
define('OGP_LANG_vstoken_new_select_channel', "القناة");
|
||||
define('OGP_LANG_vstoken_new_tokentype_0', "السيرفر");
|
||||
define('OGP_LANG_vstoken_new_tokentype_1', "القناة");
|
||||
define('OGP_LANG_vstoken_new_added_ok', "تم إنشاء الرمز بنجاح.");
|
||||
define('OGP_LANG_vsliveview_server_virtualserver', "السيرفر الإفتراضي");
|
||||
define('OGP_LANG_vsliveview_server_head', "مشاهدة حية");
|
||||
define('OGP_LANG_vsliveview_liveview_enable_autorefresh', "تحديث تلقائي");
|
||||
define('OGP_LANG_vsliveview_liveview_tooltip_to_channel', "إلى القناة #");
|
||||
define('OGP_LANG_vsliveview_liveview_tooltip_switch', "تبديل");
|
||||
define('OGP_LANG_vsliveview_liveview_tooltip_send_msg', "إرسال رسالة");
|
||||
define('OGP_LANG_vsliveview_liveview_tooltip_poke', "نكز");
|
||||
define('OGP_LANG_vsliveview_liveview_tooltip_kick', "طرد");
|
||||
define('OGP_LANG_vsliveview_liveview_tooltip_ban', "حظر");
|
||||
define('OGP_LANG_vsoverview_banlist_head', "قائمة الحظر");
|
||||
define('OGP_LANG_vsoverview_banlist_id', "الأيدي #");
|
||||
define('OGP_LANG_vsoverview_banlist_ip', "IP");
|
||||
define('OGP_LANG_vsoverview_banlist_name', "الإسم");
|
||||
define('OGP_LANG_vsoverview_banlist_uid', "أيدي فريد");
|
||||
define('OGP_LANG_vsoverview_banlist_reason', "السبب");
|
||||
define('OGP_LANG_vsoverview_banlist_created', "تم الإنشاء");
|
||||
define('OGP_LANG_vsoverview_banlist_duration', "المدة");
|
||||
define('OGP_LANG_vsoverview_banlist_end', "تنتهي");
|
||||
define('OGP_LANG_vsoverview_banlist_unlimited', "غير محدود");
|
||||
define('OGP_LANG_vsoverview_banlist_never', "أبداً");
|
||||
define('OGP_LANG_vsoverview_banlist_new_head', "إنشاء حظر جديد");
|
||||
define('OGP_LANG_vsoverview_banlist_new_create', "إنشاء");
|
||||
define('OGP_LANG_vsliveview_channelbackup_head', "قناة النسخ الإحتياطي");
|
||||
define('OGP_LANG_vsliveview_channelbackup_get', "إنشاء و تحميل");
|
||||
define('OGP_LANG_vsliveview_channelbackup_load', "رفع قناة النسخ الاحتياطي");
|
||||
define('OGP_LANG_vsliveview_channelbackup_load_submit', "إعادة إنشاء");
|
||||
define('OGP_LANG_vsliveview_channelbackup_new_added_ok', "النسخة إحطياطية للقناتة بنجاح.");
|
||||
define('OGP_LANG_time_day', "يوم");
|
||||
define('OGP_LANG_time_days', "أيام");
|
||||
define('OGP_LANG_time_hour', "ساعة");
|
||||
define('OGP_LANG_time_hours', "ساعات");
|
||||
define('OGP_LANG_time_minute', "دقيقة");
|
||||
define('OGP_LANG_time_minutes', "دقائق");
|
||||
define('OGP_LANG_time_second', "ثانية");
|
||||
define('OGP_LANG_time_seconds', "ثواني");
|
||||
define('OGP_LANG_e_2568', "ليس لديك الصلاحيات اللازمة.");
|
||||
define('OGP_LANG_temp_folder_not_writable', "مجلد القوالب (%s) غير قابلة للكتابة.");
|
||||
define('OGP_LANG_unassign_from_subuser', "إلغاء تعيين من المستخدم الفرعي.");
|
||||
define('OGP_LANG_assign_to_subuser', "تعين إلى المستخدم الفرعي.");
|
||||
define('OGP_LANG_select_subuser', "تعين المستخدم الفرعي.");
|
||||
define('OGP_LANG_no_ts3_servers_assigned_to_account', "لا يوجد لديك خوادم تم تعيينها لحسابك.");
|
||||
define('OGP_LANG_change_virtual_server', "تغيير الخادم الافتراضي");
|
||||
define('OGP_LANG_change_remote_server', "تغيير الخادم عن بعد");
|
||||
define('LANG_error', "خطأ");
|
||||
define('LANG_title', "واجهة ويب TeamSpeak 3");
|
||||
define('LANG_update_available', "<h3>تنبيه: يتوفر إصدار جديد (v%1) متاح تحت <a href=\"%2\" target=\"_blank\">%2</a>.</h3>");
|
||||
define('LANG_head_logout', "تسجيل الخروج");
|
||||
define('LANG_head_vserver_switch', "تغيير vServer");
|
||||
define('LANG_head_vserver_overview', "vServer نظرة عامة");
|
||||
define('LANG_head_vserver_token', "إدارة الرموز");
|
||||
define('LANG_head_vserver_liveview', "المعاينة الحية");
|
||||
define('LANG_e_fill_out', "من فضلك إملأ كل الخانات المطلوبة.");
|
||||
define('LANG_e_upload_failed', "الرفع غير ناجح.");
|
||||
define('LANG_e_server_responded', "استجابة السيرفر:");
|
||||
define('LANG_e_conn_serverquery', "تعذر إنشاء صلاحيات ServerQuery.");
|
||||
define('LANG_e_conn_vserver', "لا يمكن اختيار الخادم الإفتراضي.");
|
||||
define('LANG_e_session_timedout', "انتهت صلاحية الجلسة.");
|
||||
define('LANG_js_error', "خطأ");
|
||||
define('LANG_js_ajax_error', "خطأ AJAX قد حدث: %1.");
|
||||
define('LANG_js_confirm_server_stop', "هل تريد بالفعل إيقاف السيرفر #%1؟");
|
||||
define('LANG_js_confirm_server_delete', "هل تريد حقاً حذف الخادم #%1؟");
|
||||
define('LANG_js_notice_server_deleted', "تم حذف الخادم %1 بنجاح.\nستتم إعادة تحميل صفحة النظرة العامة الآن.");
|
||||
define('LANG_js_prompt_banduration', "المدة بالساعات (0= غير محدود):");
|
||||
define('LANG_js_prompt_banreason', "السبب (اختياري):");
|
||||
define('LANG_js_prompt_msg_to', "رسالة نصية إلى %1 #%2:");
|
||||
define('LANG_js_prompt_poke_to', "رسالة نكز إلى المستخدم #%1:");
|
||||
define('LANG_js_prompt_new_propvalue', "قيمة جديدة لـ '%1': ");
|
||||
define('LANG_n_server_responded', "السيرفر استجاب:");
|
||||
define('LANG_login_serverquery', "تسجيل دخول ServerQuery");
|
||||
define('LANG_login_name', "إسم المستخدم");
|
||||
define('LANG_login_password', "كلمة المرور");
|
||||
define('LANG_login_submit', "تسجيل الدخول");
|
||||
define('LANG_vsselect_headline', "اختيار vServer");
|
||||
define('LANG_vsselect_id', "ID #");
|
||||
define('LANG_vsselect_name', "إسم");
|
||||
define('LANG_vsselect_ip', "IP");
|
||||
define('LANG_vsselect_port', "Port");
|
||||
define('LANG_vsselect_state', "الحالة");
|
||||
define('LANG_vsselect_clients', "عملاء");
|
||||
define('LANG_vsselect_uptime', "مدة التشغيل");
|
||||
define('LANG_vsselect_choose', "اختر");
|
||||
define('LANG_vsselect_start', "إبدأ");
|
||||
define('LANG_vsselect_stop', "توقف");
|
||||
define('LANG_vsselect_delete', "حذف");
|
||||
define('LANG_vsselect_new_headline', "إنشاء سيرفر افتراضي جديد");
|
||||
define('LANG_vsselect_new_servername', "إسم السيرفر");
|
||||
define('LANG_vsselect_new_slots', "عدد المستخدمين");
|
||||
define('LANG_vsselect_new_create', "انشاء");
|
||||
define('LANG_vsselect_new_added_ok', "تم إنشاء السيرفر <span class=\"online\">%1</span> بنجاح.");
|
||||
define('LANG_vsselect_new_added_generated', "الرمز الذي تم إنشاؤه هو:");
|
||||
define('LANG_vsoverview_virtualserver', "خادم إفتراضي");
|
||||
define('LANG_vsoverview_information_head', "معلومات");
|
||||
define('LANG_vsoverview_connection_head', "اتصال");
|
||||
define('LANG_vsoverview_info_general_head', "الإعدادت العامة");
|
||||
define('LANG_vsoverview_info_servername', "إسم السيرفر");
|
||||
define('LANG_vsoverview_info_host', "المضيف");
|
||||
define('LANG_vsoverview_info_state', "الحالة");
|
||||
define('LANG_vsoverview_info_state_port', "Port");
|
||||
define('LANG_vsoverview_info_uptime', "مدة التشغيل");
|
||||
define('LANG_vsoverview_info_welcomemsg', "رسالة<br />الترحيب");
|
||||
define('LANG_vsoverview_info_hostmsg', "رسالة المضيف");
|
||||
define('LANG_vsoverview_info_hostmsg_mode_output', "الناتج");
|
||||
define('LANG_vsoverview_info_hostmsg_mode_0', "لاشيء");
|
||||
define('LANG_vsoverview_info_hostmsg_mode_1', "في سجل المحادثات");
|
||||
define('LANG_vsoverview_info_hostmsg_mode_2', "نافذة");
|
||||
define('LANG_vsoverview_info_hostmsg_mode_3', "نافذة + قطع الإتصال");
|
||||
define('LANG_vsoverview_info_req_security', "مستوى الأمان");
|
||||
define('LANG_vsoverview_info_req_securitylvl', "مطلوب");
|
||||
define('LANG_vsoverview_info_hostbanner_head', "شعار المضيف");
|
||||
define('LANG_vsoverview_info_hostbanner_url', "الرابط");
|
||||
define('LANG_vsoverview_info_hostbanner_imgurl', "عنوان الصورة");
|
||||
define('LANG_vsoverview_info_hostbanner_buttonurl', "عنوان URL لزر المضيف");
|
||||
define('LANG_vsoverview_info_antiflood_head', "مكافحة الفيضانات");
|
||||
define('LANG_vsoverview_info_antiflood_warning', "تحذير عند");
|
||||
define('LANG_vsoverview_info_antiflood_kick', "طرد عند");
|
||||
define('LANG_vsoverview_info_antiflood_ban', "حظر عند");
|
||||
define('LANG_vsoverview_info_antiflood_banduration', "مدة الحظر");
|
||||
define('LANG_vsoverview_info_antiflood_decrease', "إنقاص");
|
||||
define('LANG_vsoverview_info_antiflood_points', "نقاط");
|
||||
define('LANG_vsoverview_info_antiflood_in_seconds', "ثواني");
|
||||
define('LANG_vsoverview_info_antiflood_points_per_tick', "نقاط لكل جزء من الثانية");
|
||||
define('LANG_vsoverview_conn_total_head', "المجموع");
|
||||
define('LANG_vsoverview_conn_total_packets', "حِزَمْ");
|
||||
define('LANG_vsoverview_conn_total_bytes', "بايت");
|
||||
define('LANG_vsoverview_conn_total_send', "تم الإرسال");
|
||||
define('LANG_vsoverview_conn_total_received', "تم الإستلام");
|
||||
define('LANG_vsoverview_conn_bandwidth_head', "النطاق");
|
||||
define('LANG_vsoverview_conn_bandwidth_last', "الأخير");
|
||||
define('LANG_vsoverview_conn_bandwidth_second', "ثانية");
|
||||
define('LANG_vsoverview_conn_bandwidth_minute', "دقيقة");
|
||||
define('LANG_vsoverview_conn_bandwidth_send', "تم الإرسال");
|
||||
define('LANG_vsoverview_conn_bandwidth_received', "تم الإستلام");
|
||||
define('LANG_vstoken_token_virtualserver', "السيرفر الإفتراضي");
|
||||
define('LANG_vstoken_token_head', "الرمز");
|
||||
define('LANG_vstoken_token_type', "نوع المجموعة");
|
||||
define('LANG_vstoken_token_id1', "مجموعة السيرفر\<br />مجموعة القناة");
|
||||
define('LANG_vstoken_token_id2', "(قناة)");
|
||||
define('LANG_vstoken_token_tokencode', "رمز الشفرة");
|
||||
define('LANG_vstoken_token_delete', "حذف");
|
||||
define('LANG_vstoken_new_head', "إنشاء رمز جديد");
|
||||
define('LANG_vstoken_new_create', "توليد");
|
||||
define('LANG_vstoken_new_tokentype', "نوع الرمز:");
|
||||
define('LANG_vstoken_new_servergroup', "مجموعة السيرفر");
|
||||
define('LANG_vstoken_new_channelgroup', "مجموعة القناة");
|
||||
define('LANG_vstoken_new_select_group', "مجموعة السيرفر");
|
||||
define('LANG_vstoken_new_select_channelgroup', "مجموعة القناة ");
|
||||
define('LANG_vstoken_new_select_channel', "القناة");
|
||||
define('LANG_vstoken_new_tokentype_0', "السيرفر");
|
||||
define('LANG_vstoken_new_tokentype_1', "القناة");
|
||||
define('LANG_vstoken_new_added_ok', "تم إنشاء الرمز بنجاح.");
|
||||
define('LANG_vsliveview_server_virtualserver', "السيرفر الإفتراضي");
|
||||
define('LANG_vsliveview_server_head', "مشاهدة حية");
|
||||
define('LANG_vsliveview_liveview_enable_autorefresh', "تحديث تلقائي");
|
||||
define('LANG_vsliveview_liveview_tooltip_to_channel', "إلى القناة #");
|
||||
define('LANG_vsliveview_liveview_tooltip_switch', "تبديل");
|
||||
define('LANG_vsliveview_liveview_tooltip_send_msg', "إرسال رسالة");
|
||||
define('LANG_vsliveview_liveview_tooltip_poke', "نكز");
|
||||
define('LANG_vsliveview_liveview_tooltip_kick', "طرد");
|
||||
define('LANG_vsliveview_liveview_tooltip_ban', "حظر");
|
||||
define('LANG_vsoverview_banlist_head', "قائمة الحظر");
|
||||
define('LANG_vsoverview_banlist_id', "الأيدي #");
|
||||
define('LANG_vsoverview_banlist_ip', "IP");
|
||||
define('LANG_vsoverview_banlist_name', "الإسم");
|
||||
define('LANG_vsoverview_banlist_uid', "أيدي فريد");
|
||||
define('LANG_vsoverview_banlist_reason', "السبب");
|
||||
define('LANG_vsoverview_banlist_created', "تم الإنشاء");
|
||||
define('LANG_vsoverview_banlist_duration', "المدة");
|
||||
define('LANG_vsoverview_banlist_end', "تنتهي");
|
||||
define('LANG_vsoverview_banlist_unlimited', "غير محدود");
|
||||
define('LANG_vsoverview_banlist_never', "أبداً");
|
||||
define('LANG_vsoverview_banlist_new_head', "إنشاء حظر جديد");
|
||||
define('LANG_vsoverview_banlist_new_create', "إنشاء");
|
||||
define('LANG_vsliveview_channelbackup_head', "قناة النسخ الإحتياطي");
|
||||
define('LANG_vsliveview_channelbackup_get', "إنشاء و تحميل");
|
||||
define('LANG_vsliveview_channelbackup_load', "رفع قناة النسخ الاحتياطي");
|
||||
define('LANG_vsliveview_channelbackup_load_submit', "إعادة إنشاء");
|
||||
define('LANG_vsliveview_channelbackup_new_added_ok', "النسخة إحطياطية للقناتة بنجاح.");
|
||||
define('LANG_time_day', "يوم");
|
||||
define('LANG_time_days', "أيام");
|
||||
define('LANG_time_hour', "ساعة");
|
||||
define('LANG_time_hours', "ساعات");
|
||||
define('LANG_time_minute', "دقيقة");
|
||||
define('LANG_time_minutes', "دقائق");
|
||||
define('LANG_time_second', "ثانية");
|
||||
define('LANG_time_seconds', "ثواني");
|
||||
define('LANG_e_2568', "ليس لديك الصلاحيات اللازمة.");
|
||||
define('LANG_temp_folder_not_writable', "مجلد القوالب (%s) غير قابلة للكتابة.");
|
||||
define('LANG_unassign_from_subuser', "إلغاء تعيين من المستخدم الفرعي.");
|
||||
define('LANG_assign_to_subuser', "تعين إلى المستخدم الفرعي.");
|
||||
define('LANG_select_subuser', "تعين المستخدم الفرعي.");
|
||||
define('LANG_no_ts3_servers_assigned_to_account', "لا يوجد لديك خوادم تم تعيينها لحسابك.");
|
||||
define('LANG_change_virtual_server', "تغيير الخادم الافتراضي");
|
||||
define('LANG_change_remote_server', "تغيير الخادم عن بعد");
|
||||
?>
|
||||
|
|
@ -22,49 +22,49 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_install_plugin', "تثبيت الإضافات");
|
||||
define('OGP_LANG_install_mappack', "تثبيت الخرائط");
|
||||
define('OGP_LANG_install_config', "تثبيت الإعدادات");
|
||||
define('OGP_LANG_game_name', "إسم اللعبة");
|
||||
define('OGP_LANG_directory', "المسار");
|
||||
define('OGP_LANG_remote_server', "سيرفر التحكم");
|
||||
define('OGP_LANG_select_addon', "إختر إضافة");
|
||||
define('OGP_LANG_install', "تثبيت");
|
||||
define('OGP_LANG_failed_to_start_file_download', "فشل بدأ تحميل الملف.");
|
||||
define('OGP_LANG_no_games_servers_available', "لا يتوفر أى سيرفرات ألعاب فى حسابك");
|
||||
define('OGP_LANG_addon_installed_successfully', "تم تثبيت الإضافة بنجاح");
|
||||
define('OGP_LANG_path', "المسار");
|
||||
define('OGP_LANG_wait_while_decompressing', "انتظر حتى يتم فك الملف %s .");
|
||||
define('OGP_LANG_addon_name', "إسم الإضافة");
|
||||
define('OGP_LANG_url', "الرابط");
|
||||
define('OGP_LANG_select_game_type', "إختر نوع اللعبة");
|
||||
define('OGP_LANG_plugin', "إضافة");
|
||||
define('OGP_LANG_mappack', "حزمة الخريطة");
|
||||
define('OGP_LANG_config', "إعداد");
|
||||
define('OGP_LANG_type', "نوع الإضافة");
|
||||
define('OGP_LANG_game', "لعبة");
|
||||
define('OGP_LANG_show_all_addons', "أظهر كل الإضافات");
|
||||
define('OGP_LANG_show_addons_for_selected_type', "أظهر الإضافات للنوع المحدد");
|
||||
define('OGP_LANG_show_addons_for_selected_game', "أظهر الإضافات للعبة المحددة");
|
||||
define('OGP_LANG_linux_games', "ألعاب حسب نظام لينكس:");
|
||||
define('OGP_LANG_windows_games', "ألعاب حسب نظام ويندوز");
|
||||
define('OGP_LANG_create_addon', "أنشأ إضافة");
|
||||
define('OGP_LANG_addons_db', "قاعدة بيانات الإضافات");
|
||||
define('OGP_LANG_addon_has_been_created', "تم إنشاء الإضافة %s .");
|
||||
define('OGP_LANG_remove_addon', "إمسح الاضافة");
|
||||
define('OGP_LANG_fill_the_url_address_to_a_compressed_file', "من فضلك ، أضف عنوان URL للملف المضغوط");
|
||||
define('OGP_LANG_fill_the_addon_name', "من فضلك ، أضف إسم حزمة الاضافة.");
|
||||
define('OGP_LANG_select_an_addon_type', "من فضلك ، اختر نوع الإضافة");
|
||||
define('OGP_LANG_select_a_game_type', "من فضلك ، إختر نوع اللعبة");
|
||||
define('OGP_LANG_edit_addon', "تعديل الإضافة");
|
||||
define('OGP_LANG_post-script', "النص البرمجي بعد التثبيت (باش)");
|
||||
define('OGP_LANG_replacements', "الاستبدالات:");
|
||||
define('OGP_LANG_addon_name_info', "أدخل اسم لهذه الإضافة ، هذا الإسم هو مايراه المستخدم");
|
||||
define('OGP_LANG_url_info', "أدخل عنوان الويب الذي يحتوى على ملف ليتم تحميله ، إذا كان مضغوطا بامتداد zip أو tar.gz سيتم فك الضغط فى المسار الأساسى للسيرفر أو فى المسار الذى بالأسفل.");
|
||||
define('OGP_LANG_path_info', "المسار يجب أن يكون قريبا لمجلد السيرفر ولا يحتى على شرطات مائلة فى البداية أو النهاية ، مثال : cstrike/cfg . اذا ترك فارغاً سيتم استخدام المسار الأساسى للسيرفر.");
|
||||
define('OGP_LANG_post-script_info', "أدخل كود الباش ، ستم تنفيذه كسكريبت ، يمكنك استخدام استبدال النص لتخصيص التثبيت ، سيتم استبدالها بالبيانات من السيرفر الذي تقوم بتثبيت الإضافة به. السكريبت سيبدأ من المجلد الأساسى للسيرفر أو المسار المحدد .");
|
||||
define('OGP_LANG_show_to_group', "عرض للمجموعة");
|
||||
define('OGP_LANG_all_groups', "جميع المجموعات");
|
||||
define('OGP_LANG_show_addons_for_selected_group', "عرض الإضافات للمجموعات المحددة");
|
||||
define('OGP_LANG_group', "مجموعة");
|
||||
define('LANG_install_plugin', "تثبيت الإضافات");
|
||||
define('LANG_install_mappack', "تثبيت الخرائط");
|
||||
define('LANG_install_config', "تثبيت الإعدادات");
|
||||
define('LANG_game_name', "إسم اللعبة");
|
||||
define('LANG_directory', "المسار");
|
||||
define('LANG_remote_server', "سيرفر التحكم");
|
||||
define('LANG_select_addon', "إختر إضافة");
|
||||
define('LANG_install', "تثبيت");
|
||||
define('LANG_failed_to_start_file_download', "فشل بدأ تحميل الملف.");
|
||||
define('LANG_no_games_servers_available', "لا يتوفر أى سيرفرات ألعاب فى حسابك");
|
||||
define('LANG_addon_installed_successfully', "تم تثبيت الإضافة بنجاح");
|
||||
define('LANG_path', "المسار");
|
||||
define('LANG_wait_while_decompressing', "انتظر حتى يتم فك الملف %s .");
|
||||
define('LANG_addon_name', "إسم الإضافة");
|
||||
define('LANG_url', "الرابط");
|
||||
define('LANG_select_game_type', "إختر نوع اللعبة");
|
||||
define('LANG_plugin', "إضافة");
|
||||
define('LANG_mappack', "حزمة الخريطة");
|
||||
define('LANG_config', "إعداد");
|
||||
define('LANG_type', "نوع الإضافة");
|
||||
define('LANG_game', "لعبة");
|
||||
define('LANG_show_all_addons', "أظهر كل الإضافات");
|
||||
define('LANG_show_addons_for_selected_type', "أظهر الإضافات للنوع المحدد");
|
||||
define('LANG_show_addons_for_selected_game', "أظهر الإضافات للعبة المحددة");
|
||||
define('LANG_linux_games', "ألعاب حسب نظام لينكس:");
|
||||
define('LANG_windows_games', "ألعاب حسب نظام ويندوز");
|
||||
define('LANG_create_addon', "أنشأ إضافة");
|
||||
define('LANG_addons_db', "قاعدة بيانات الإضافات");
|
||||
define('LANG_addon_has_been_created', "تم إنشاء الإضافة %s .");
|
||||
define('LANG_remove_addon', "إمسح الاضافة");
|
||||
define('LANG_fill_the_url_address_to_a_compressed_file', "من فضلك ، أضف عنوان URL للملف المضغوط");
|
||||
define('LANG_fill_the_addon_name', "من فضلك ، أضف إسم حزمة الاضافة.");
|
||||
define('LANG_select_an_addon_type', "من فضلك ، اختر نوع الإضافة");
|
||||
define('LANG_select_a_game_type', "من فضلك ، إختر نوع اللعبة");
|
||||
define('LANG_edit_addon', "تعديل الإضافة");
|
||||
define('LANG_post-script', "النص البرمجي بعد التثبيت (باش)");
|
||||
define('LANG_replacements', "الاستبدالات:");
|
||||
define('LANG_addon_name_info', "أدخل اسم لهذه الإضافة ، هذا الإسم هو مايراه المستخدم");
|
||||
define('LANG_url_info', "أدخل عنوان الويب الذي يحتوى على ملف ليتم تحميله ، إذا كان مضغوطا بامتداد zip أو tar.gz سيتم فك الضغط فى المسار الأساسى للسيرفر أو فى المسار الذى بالأسفل.");
|
||||
define('LANG_path_info', "المسار يجب أن يكون قريبا لمجلد السيرفر ولا يحتى على شرطات مائلة فى البداية أو النهاية ، مثال : cstrike/cfg . اذا ترك فارغاً سيتم استخدام المسار الأساسى للسيرفر.");
|
||||
define('LANG_post-script_info', "أدخل كود الباش ، ستم تنفيذه كسكريبت ، يمكنك استخدام استبدال النص لتخصيص التثبيت ، سيتم استبدالها بالبيانات من السيرفر الذي تقوم بتثبيت الإضافة به. السكريبت سيبدأ من المجلد الأساسى للسيرفر أو المسار المحدد .");
|
||||
define('LANG_show_to_group', "عرض للمجموعة");
|
||||
define('LANG_all_groups', "جميع المجموعات");
|
||||
define('LANG_show_addons_for_selected_group', "عرض الإضافات للمجموعات المحددة");
|
||||
define('LANG_group', "مجموعة");
|
||||
?>
|
||||
|
|
@ -22,28 +22,28 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_external_links', "روابط خارجية");
|
||||
define('OGP_LANG_url', "رابط URL");
|
||||
define('OGP_LANG_name', "إسم");
|
||||
define('OGP_LANG_add_it', "أضف");
|
||||
define('OGP_LANG_link_has_been_removed', "تمت إزالة الرابط %s.");
|
||||
define('OGP_LANG_db_backup', "نسخة احتياطية لقاعدة البيانات");
|
||||
define('OGP_LANG_download_db_backup', "تحميل نسخة احتياطية لقاعدة البيانات ");
|
||||
define('OGP_LANG_restore_db_backup', "إستعادة نسخة احتياطية لقاعدة البيانات");
|
||||
define('OGP_LANG_sql_file', "ملف(.sql)");
|
||||
define('OGP_LANG_change_buttons_order', "تغير ترتيب الأزرار");
|
||||
define('OGP_LANG_when', "تاريخ/وقت");
|
||||
define('OGP_LANG_who', "إسم مستخدم");
|
||||
define('OGP_LANG_where', "عنوان ip");
|
||||
define('OGP_LANG_what', "عمل");
|
||||
define('OGP_LANG_search', "بحث");
|
||||
define('OGP_LANG_empty_logger', "سجل فارغ");
|
||||
define('OGP_LANG_ban_list', "قائمة الحظر");
|
||||
define('OGP_LANG_no_banned_ips', "لايوجد IP محظور");
|
||||
define('OGP_LANG_unban', "إلغاء حظر IP");
|
||||
define('OGP_LANG_client_ip', "عميل IP");
|
||||
define('OGP_LANG_banned_until', "حظر حتى");
|
||||
define('OGP_LANG_unban_selected_ips', "إلغاء حظر ال IPs المختارة");
|
||||
define('OGP_LANG_view', "معاينة");
|
||||
define('OGP_LANG_per_page', "عدد السجلات لكل صفحة");
|
||||
define('LANG_external_links', "روابط خارجية");
|
||||
define('LANG_url', "رابط URL");
|
||||
define('LANG_name', "إسم");
|
||||
define('LANG_add_it', "أضف");
|
||||
define('LANG_link_has_been_removed', "تمت إزالة الرابط %s.");
|
||||
define('LANG_db_backup', "نسخة احتياطية لقاعدة البيانات");
|
||||
define('LANG_download_db_backup', "تحميل نسخة احتياطية لقاعدة البيانات ");
|
||||
define('LANG_restore_db_backup', "إستعادة نسخة احتياطية لقاعدة البيانات");
|
||||
define('LANG_sql_file', "ملف(.sql)");
|
||||
define('LANG_change_buttons_order', "تغير ترتيب الأزرار");
|
||||
define('LANG_when', "تاريخ/وقت");
|
||||
define('LANG_who', "إسم مستخدم");
|
||||
define('LANG_where', "عنوان ip");
|
||||
define('LANG_what', "عمل");
|
||||
define('LANG_search', "بحث");
|
||||
define('LANG_empty_logger', "سجل فارغ");
|
||||
define('LANG_ban_list', "قائمة الحظر");
|
||||
define('LANG_no_banned_ips', "لايوجد IP محظور");
|
||||
define('LANG_unban', "إلغاء حظر IP");
|
||||
define('LANG_client_ip', "عميل IP");
|
||||
define('LANG_banned_until', "حظر حتى");
|
||||
define('LANG_unban_selected_ips', "إلغاء حظر ال IPs المختارة");
|
||||
define('LANG_view', "معاينة");
|
||||
define('LANG_per_page', "عدد السجلات لكل صفحة");
|
||||
?>
|
||||
|
|
@ -22,22 +22,22 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_resetting_configs', "إعادة تعيين جميع الإعدادات.");
|
||||
define('OGP_LANG_updating_configs', "تحديث الإعدادات القديمة.");
|
||||
define('OGP_LANG_configs_updated_ok', "تم إعادة تهيئة الإعدادات بنجاح.");
|
||||
define('OGP_LANG_reset_old_configs', "إعادة تعيين الإعدادات القديمة");
|
||||
define('OGP_LANG_update_configs', "تحديث الإعدادات.");
|
||||
define('OGP_LANG_game_config_setup', "تثبيت إعدادات اللعبة");
|
||||
define('OGP_LANG_config_reset_warning', "عند مسح الإعدادات القديمة قد تكون هناك مشاكل مع سيرفرات اللعبة، لأن أرقام التعريف قد لا تتطابق مع الإعدادات الجديدة.");
|
||||
define('OGP_LANG_modify_configs_info', "إذا كنت ترغب في تعديل إعدادات اللعبة، يمكنك تعديل الملفات الموجودة في %s .");
|
||||
define('OGP_LANG_updating_config_from_file', "تحديث الاعدادات من %s ملف .");
|
||||
define('OGP_LANG_error_when_handling_file', "حدث خطأ عند معالجة الملف %s .");
|
||||
define('OGP_LANG_error_while_adding_cfg_to_db', "حدث خطأ عند إضافة البيانات من %s لقاعدة البيانات.");
|
||||
define('OGP_LANG_no_configs_found', "لا إعدادات وجدت فى الملف %s .");
|
||||
define('OGP_LANG_select_game', "اختر اللعبة");
|
||||
define('OGP_LANG_create_xml_configs', "إنشاء اعدادات XML ");
|
||||
define('OGP_LANG_failed_to_delete_config_from_db', "فشل حذف الإعداد %s من قاعدة البيانات");
|
||||
define('OGP_LANG_failed_removing_file', "فشل حذف الملف %s");
|
||||
define('OGP_LANG_removed_game_cfg_from_disk_and_datbase', "تمت إزالة التهيئة ل%sمن وحدة التخزين وقاعدة البيانات. ");
|
||||
define('OGP_LANG_delete_game_config_for', "حذف إعدادات اللعبة ل%s من القرص الصلب وقاعدة البيانات.");
|
||||
define('LANG_resetting_configs', "إعادة تعيين جميع الإعدادات.");
|
||||
define('LANG_updating_configs', "تحديث الإعدادات القديمة.");
|
||||
define('LANG_configs_updated_ok', "تم إعادة تهيئة الإعدادات بنجاح.");
|
||||
define('LANG_reset_old_configs', "إعادة تعيين الإعدادات القديمة");
|
||||
define('LANG_update_configs', "تحديث الإعدادات.");
|
||||
define('LANG_game_config_setup', "تثبيت إعدادات اللعبة");
|
||||
define('LANG_config_reset_warning', "عند مسح الإعدادات القديمة قد تكون هناك مشاكل مع سيرفرات اللعبة، لأن أرقام التعريف قد لا تتطابق مع الإعدادات الجديدة.");
|
||||
define('LANG_modify_configs_info', "إذا كنت ترغب في تعديل إعدادات اللعبة، يمكنك تعديل الملفات الموجودة في %s .");
|
||||
define('LANG_updating_config_from_file', "تحديث الاعدادات من %s ملف .");
|
||||
define('LANG_error_when_handling_file', "حدث خطأ عند معالجة الملف %s .");
|
||||
define('LANG_error_while_adding_cfg_to_db', "حدث خطأ عند إضافة البيانات من %s لقاعدة البيانات.");
|
||||
define('LANG_no_configs_found', "لا إعدادات وجدت فى الملف %s .");
|
||||
define('LANG_select_game', "اختر اللعبة");
|
||||
define('LANG_create_xml_configs', "إنشاء اعدادات XML ");
|
||||
define('LANG_failed_to_delete_config_from_db', "فشل حذف الإعداد %s من قاعدة البيانات");
|
||||
define('LANG_failed_removing_file', "فشل حذف الملف %s");
|
||||
define('LANG_removed_game_cfg_from_disk_and_datbase', "تمت إزالة التهيئة ل%sمن وحدة التخزين وقاعدة البيانات. ");
|
||||
define('LANG_delete_game_config_for', "حذف إعدادات اللعبة ل%s من القرص الصلب وقاعدة البيانات.");
|
||||
?>
|
||||
|
|
@ -22,23 +22,23 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_dashboard_ftp_text', "يمكن لعميل ال FTP ضغط الملفات وإرسالها عبر البريد الإلكتروني ، يمكنه فك الضغط أيضا ، وتعديل الملفات النصية والمزيد");
|
||||
define('OGP_LANG_dashboard_addons_manager_text', "إدارة جميع أنواع مختلفة من الخدمات مع أوبن قيم بانل. الاختيار من بين أكثر من 115 خوادم، التي زودت مباشرة من أوبن قيم بانل.");
|
||||
define('OGP_LANG_dashboard_game_monitor_text', "مشاهدة ورصد الترافيك والسجلات الخاصة بك بسرعة. يمكنك رؤية أى السيرفرات يعمل وأيها مغلق.");
|
||||
define('OGP_LANG_dashboard_support_text', "إحصل على الدعم من فريق OGP فى المنتديات . رد سريع واهتمام عظيم.");
|
||||
define('OGP_LANG_welcome_text', "مرحبا بك إلى لوحة تحكم (OGP).
|
||||
define('LANG_dashboard_ftp_text', "يمكن لعميل ال FTP ضغط الملفات وإرسالها عبر البريد الإلكتروني ، يمكنه فك الضغط أيضا ، وتعديل الملفات النصية والمزيد");
|
||||
define('LANG_dashboard_addons_manager_text', "إدارة جميع أنواع مختلفة من الخدمات مع أوبن قيم بانل. الاختيار من بين أكثر من 115 خوادم، التي زودت مباشرة من أوبن قيم بانل.");
|
||||
define('LANG_dashboard_game_monitor_text', "مشاهدة ورصد الترافيك والسجلات الخاصة بك بسرعة. يمكنك رؤية أى السيرفرات يعمل وأيها مغلق.");
|
||||
define('LANG_dashboard_support_text', "إحصل على الدعم من فريق OGP فى المنتديات . رد سريع واهتمام عظيم.");
|
||||
define('LANG_welcome_text', "مرحبا بك إلى لوحة تحكم (OGP).
|
||||
OGP هو مشروع مفتوح المصدر ـ والذى يتيح لك تثبيت وبدأ ومراقبة مختلف سيرفرات الألعاب.");
|
||||
define('OGP_LANG_any_server_is_online', "أى سيرفر أونلاين");
|
||||
define('OGP_LANG_current_map', "الخريطة الحالية");
|
||||
define('OGP_LANG_server_ip_port', "الأيبي:بورت");
|
||||
define('OGP_LANG_statistics', "الإحصائيات");
|
||||
define('OGP_LANG_servers', "السيرفرات");
|
||||
define('OGP_LANG_players', "اللاعبين");
|
||||
define('OGP_LANG_server_status', "حالة السيرفر");
|
||||
define('OGP_LANG_no_games_to_monitor', "لا يوجد حاليا أونلاين/أوفلاين سيرفرات ألعاب");
|
||||
define('OGP_LANG_online_servers', "السيرفرات الأونلاين");
|
||||
define('OGP_LANG_add_games_in', "إذا كنت ترغب في إضافة ألعاب يمكنك أن تفعل ذلك في %s");
|
||||
define('OGP_LANG_currently_online', "متاح حاليا");
|
||||
define('OGP_LANG_game_servers', "سيرفرات الألعاب");
|
||||
define('OGP_LANG_select_remote_server', "حدد سيرفر التحكم");
|
||||
define('LANG_any_server_is_online', "أى سيرفر أونلاين");
|
||||
define('LANG_current_map', "الخريطة الحالية");
|
||||
define('LANG_server_ip_port', "الأيبي:بورت");
|
||||
define('LANG_statistics', "الإحصائيات");
|
||||
define('LANG_servers', "السيرفرات");
|
||||
define('LANG_players', "اللاعبين");
|
||||
define('LANG_server_status', "حالة السيرفر");
|
||||
define('LANG_no_games_to_monitor', "لا يوجد حاليا أونلاين/أوفلاين سيرفرات ألعاب");
|
||||
define('LANG_online_servers', "السيرفرات الأونلاين");
|
||||
define('LANG_add_games_in', "إذا كنت ترغب في إضافة ألعاب يمكنك أن تفعل ذلك في %s");
|
||||
define('LANG_currently_online', "متاح حاليا");
|
||||
define('LANG_game_servers', "سيرفرات الألعاب");
|
||||
define('LANG_select_remote_server', "حدد سيرفر التحكم");
|
||||
?>
|
||||
|
|
@ -22,9 +22,9 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_dsi_long', "صورة سيرفر ديناميكية");
|
||||
define('OGP_LANG_dsi_select_server', "الرجاء اختيار سيرفر من القائمة المنسدلة");
|
||||
define('OGP_LANG_dsi_admin_long', "إعدادات صورة السيرفر الديناميكية");
|
||||
define('OGP_LANG_dsi_list', "قائمة صور السيرفر الديناميكية");
|
||||
define('OGP_LANG_no_game_homes_assigned', "ليس لديك أي خوادم تم تعيينها لحسابك.");
|
||||
define('LANG_dsi_long', "صورة سيرفر ديناميكية");
|
||||
define('LANG_dsi_select_server', "الرجاء اختيار سيرفر من القائمة المنسدلة");
|
||||
define('LANG_dsi_admin_long', "إعدادات صورة السيرفر الديناميكية");
|
||||
define('LANG_dsi_list', "قائمة صور السيرفر الديناميكية");
|
||||
define('LANG_no_game_homes_assigned', "ليس لديك أي خوادم تم تعيينها لحسابك.");
|
||||
?>
|
||||
|
|
@ -1,17 +1,17 @@
|
|||
<?php
|
||||
|
||||
define('OGP_LANG_configuration_files', "ملفات التكوين");
|
||||
define('OGP_LANG_editing_file', "تعديل الملف");
|
||||
define('OGP_LANG_no_server_specfied', "لا يوجد اي دي خادم محدد - لا يمكن سرد أية ملفات تكوين.");
|
||||
define('OGP_LANG_no_home', "ليس لديك حق الوصول إلى معرف الخادم المعين.");
|
||||
define('OGP_LANG_no_configs_for_game', "لم يتم تحديد ملفات التكوين هذه.");
|
||||
define('OGP_LANG_name', "الاسم");
|
||||
define('OGP_LANG_no_description', "بدون وصف");
|
||||
define('OGP_LANG_description', "الوصف");
|
||||
define('OGP_LANG_invalid_file', "قد لا يتم تحرير الملف المحدد.");
|
||||
define('OGP_LANG_wrote_changes', "تم حفظ الملف بنجاح.");
|
||||
define('OGP_LANG_failed_write', "أخفق حفظ الملف.");
|
||||
define('OGP_LANG_failed_read', "أخفق قراءة الملف.");
|
||||
define('OGP_LANG_save', "حفظ");
|
||||
define('OGP_LANG_go_back', "رجوع");
|
||||
define('OGP_LANG_new_file', "ملف جديد");
|
||||
define('LANG_configuration_files', "ملفات التكوين");
|
||||
define('LANG_editing_file', "تعديل الملف");
|
||||
define('LANG_no_server_specfied', "لا يوجد اي دي خادم محدد - لا يمكن سرد أية ملفات تكوين.");
|
||||
define('LANG_no_home', "ليس لديك حق الوصول إلى معرف الخادم المعين.");
|
||||
define('LANG_no_configs_for_game', "لم يتم تحديد ملفات التكوين هذه.");
|
||||
define('LANG_name', "الاسم");
|
||||
define('LANG_no_description', "بدون وصف");
|
||||
define('LANG_description', "الوصف");
|
||||
define('LANG_invalid_file', "قد لا يتم تحرير الملف المحدد.");
|
||||
define('LANG_wrote_changes', "تم حفظ الملف بنجاح.");
|
||||
define('LANG_failed_write', "أخفق حفظ الملف.");
|
||||
define('LANG_failed_read', "أخفق قراءة الملف.");
|
||||
define('LANG_save', "حفظ");
|
||||
define('LANG_go_back', "رجوع");
|
||||
define('LANG_new_file', "ملف جديد");
|
||||
|
|
@ -23,21 +23,21 @@
|
|||
*/
|
||||
|
||||
include 'update.php';
|
||||
define('OGP_LANG_unable_download', "غير قادر على تحميل %s.");
|
||||
define('OGP_LANG_md5_failed', "اختبار MD5 فشل في %s ، جرب مرة أخرى");
|
||||
define('OGP_LANG_uninstall', "إزالة تثبيت");
|
||||
define('OGP_LANG_install', "تثبيت");
|
||||
define('OGP_LANG_uptodate', "محدث لأخر نسخة");
|
||||
define('OGP_LANG_update_available', "التحديث متوفر");
|
||||
define('OGP_LANG_not_installed', "غير مثبت");
|
||||
define('OGP_LANG_installed', "مثبت");
|
||||
define('OGP_LANG_download_update', "تحميل/تحديث");
|
||||
define('OGP_LANG_are_you_sure', "هل أنت متأكد");
|
||||
define('OGP_LANG_uninstalling_module_dataloss', "بإزالة هذا الموديول سوف تخسر كل الداتا المتعلقة به.");
|
||||
define('OGP_LANG_remove_files_for', "هل ترغب بحذف كل الملفات لـ ");
|
||||
define('OGP_LANG_confirm', "تأكيد");
|
||||
define('OGP_LANG_cancel', "إلغاء");
|
||||
define('OGP_LANG_extra_themes', "مظاهر إضافية");
|
||||
define('OGP_LANG_extra_modules', "موديولات إضافية");
|
||||
define('OGP_LANG_search_for_updates', "تحقق من التحديثات");
|
||||
define('LANG_unable_download', "غير قادر على تحميل %s.");
|
||||
define('LANG_md5_failed', "اختبار MD5 فشل في %s ، جرب مرة أخرى");
|
||||
define('LANG_uninstall', "إزالة تثبيت");
|
||||
define('LANG_install', "تثبيت");
|
||||
define('LANG_uptodate', "محدث لأخر نسخة");
|
||||
define('LANG_update_available', "التحديث متوفر");
|
||||
define('LANG_not_installed', "غير مثبت");
|
||||
define('LANG_installed', "مثبت");
|
||||
define('LANG_download_update', "تحميل/تحديث");
|
||||
define('LANG_are_you_sure', "هل أنت متأكد");
|
||||
define('LANG_uninstalling_module_dataloss', "بإزالة هذا الموديول سوف تخسر كل الداتا المتعلقة به.");
|
||||
define('LANG_remove_files_for', "هل ترغب بحذف كل الملفات لـ ");
|
||||
define('LANG_confirm', "تأكيد");
|
||||
define('LANG_cancel', "إلغاء");
|
||||
define('LANG_extra_themes', "مظاهر إضافية");
|
||||
define('LANG_extra_modules', "موديولات إضافية");
|
||||
define('LANG_search_for_updates', "تحقق من التحديثات");
|
||||
?>
|
||||
|
|
@ -22,53 +22,53 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_create_alias', "إنشاء الإسم المستعار والمجلد");
|
||||
define('OGP_LANG_save_as', "الحفظ في");
|
||||
define('OGP_LANG_failure', "حدث خطأ، فشلت في إنشاء ملف الاسم المستعار");
|
||||
define('OGP_LANG_success', "نجح");
|
||||
define('OGP_LANG_fast_download_service_for', "خدمة إعادة توجيه التحميلات ل %s");
|
||||
define('OGP_LANG_to_the_path', "إلى مسار");
|
||||
define('OGP_LANG_at_url', "في رابط");
|
||||
define('OGP_LANG_create_alias_for', "إنشاء اسم مستعار ل");
|
||||
define('OGP_LANG_fast_dl', "إعادة توجيه التحميلات (تحميل سريع)");
|
||||
define('OGP_LANG_current_aliases_at_remote_server', "الأسماء المستعارة الحالية في سيرفر التحكم");
|
||||
define('OGP_LANG_delete_selected_aliases', "حذف الأسماء المستعارة المحددة");
|
||||
define('OGP_LANG_no_aliases_defined', "لا توجد أسماء مستعارة على شبكة الإنترنت تحددها OGP لسيرفر التحكم.");
|
||||
define('OGP_LANG_fastdl_port', "بورت");
|
||||
define('OGP_LANG_fastdl_port_info', "البورت الذي سيعمل عليه خادم Fast Download");
|
||||
define('OGP_LANG_fastdl_ip', "عنوان");
|
||||
define('OGP_LANG_fastdl_ip_info', "عنوان الأي بي أو المجال الذي سيبدأ فيه خادم التحميل السريع، يجب أن يكون المجال مدرجا في / /etc/hosts.");
|
||||
define('OGP_LANG_listing', "قائمة");
|
||||
define('OGP_LANG_listing_info', "إذا كان \" قيد التشغيل\"، فإن السيرفر سيعرض قائمة بمحتويات المجلد.");
|
||||
define('OGP_LANG_fast_dl_advanced', "إعدادات متقدمة");
|
||||
define('OGP_LANG_apply_settings_and_restart_fastdl', "حفظ التكوين الخفي وإعادة تشغيله");
|
||||
define('OGP_LANG_stop_fastdl', "توقيف التحميل السريع الخفي");
|
||||
define('OGP_LANG_fast_download_daemon_running', "التحميل السريع الخفي قيد التشغيل.");
|
||||
define('OGP_LANG_fast_download_daemon_not_running', "التحميل السريع الخفي ليس قيد التشغيل.");
|
||||
define('OGP_LANG_fastdl_could_not_be_restarted', "تعذر إعادة تشغيل خدمة التحميل السريع.");
|
||||
define('OGP_LANG_configuration_file_could_not_be_written', "لم يتم حفظ ملف الإعدادات.");
|
||||
define('OGP_LANG_remove_folders', "إزالة المجلد للأسماء المستعارة المحددة.");
|
||||
define('OGP_LANG_remove_folder', "إزالة المجلد");
|
||||
define('OGP_LANG_delete_alias', "حذف الاسم المستعار");
|
||||
define('OGP_LANG_no_game_homes_assigned', "ليس لديك أي خوادم تم تعيينه لحسابك.");
|
||||
define('OGP_LANG_select_remote_server', "حدد سيرفر التحكم");
|
||||
define('OGP_LANG_access_rules', "شروط الوصول.");
|
||||
define('OGP_LANG_create_aliases', "إنشاء الأسماء المستعارة");
|
||||
define('OGP_LANG_select_game', "حدد اللعبة");
|
||||
define('OGP_LANG_games_without_specified_rules', "ألعاب بدون قواعد محددة");
|
||||
define('OGP_LANG_match_file_extension', "مطابقة امتداد الملف.");
|
||||
define('OGP_LANG_match_file_extension_info', "حدد الإضافات مفصولة بفاصلة, <br> وستكون الملفات المطابقة قابلة للوصول إليها. <br> <b> فراغ للوصول الغير مشروط </b>.");
|
||||
define('OGP_LANG_match_client_ip', "مطابقة عنوان IP الخاص بالعميل.");
|
||||
define('OGP_LANG_match_client_ip_info', "سيتم منح الاتصالات مع IP مطابقة ،<br>فارغة للوصول غير المقيد. يمكنك استخدام<br>عناوين IP أو نطاقات متعددة مفصولة بفاصلة:<br>/xx subnets<br>مثال: 10.0.0.0/16<br>/xxx.xxx.xxx.xxx subnets<br>مثال: 10.0.0.0/255.0.0.0<br>النطاقات الواصلة<br>مثال: 10.0.0.5-230<br>مطابقة النجمة<br>مثال: 10.0.*.*");
|
||||
define('OGP_LANG_save_access_rules', "حفظ قواعد الوصول");
|
||||
define('OGP_LANG_create_access_rules', "إنشاء قواعد الوصول");
|
||||
define('OGP_LANG_invalid_entries_found', "تم العثور على إدخالات غير صالحة");
|
||||
define('OGP_LANG_game_name', "إسم اللعبة");
|
||||
define('OGP_LANG_alias_already_exists', "الاسم المستعار %s موجود من قبل.");
|
||||
define('OGP_LANG_warning_access_rules_applied_once_alias_created', "تحذير: شروط الوصول سيتم تطبيقها عند انشاء الإسم المستعار. لا تعديلات سيتم تطبيقها على الأسماء المستعارة الحالية.");
|
||||
define('OGP_LANG_autostart_on_agent_startup', "بدء التشغيل التلقائي على بدء تشغيل الوكيل");
|
||||
define('OGP_LANG_autostart_on_agent_startup_info', "تشغيل خادم Fast Download تلقائياً عند بدء خادم لوحة التحكم.");
|
||||
define('OGP_LANG_port_forwarded_to_80', "تم توجيه المنفذ من 80");
|
||||
define('OGP_LANG_port_forwarded_to_80_info', "قم بتفعيل هذا الخيار اذا كان البورت المعد لخادم الــ Fast Download هذا قد تم تحويله من البورت 80، ولذلك سيتم اخفاء البورت من رابط عنوان الموقع.");
|
||||
define('OGP_LANG_current_access_rules', "قواعد الوصول الحالية");
|
||||
define('LANG_create_alias', "إنشاء الإسم المستعار والمجلد");
|
||||
define('LANG_save_as', "الحفظ في");
|
||||
define('LANG_failure', "حدث خطأ، فشلت في إنشاء ملف الاسم المستعار");
|
||||
define('LANG_success', "نجح");
|
||||
define('LANG_fast_download_service_for', "خدمة إعادة توجيه التحميلات ل %s");
|
||||
define('LANG_to_the_path', "إلى مسار");
|
||||
define('LANG_at_url', "في رابط");
|
||||
define('LANG_create_alias_for', "إنشاء اسم مستعار ل");
|
||||
define('LANG_fast_dl', "إعادة توجيه التحميلات (تحميل سريع)");
|
||||
define('LANG_current_aliases_at_remote_server', "الأسماء المستعارة الحالية في سيرفر التحكم");
|
||||
define('LANG_delete_selected_aliases', "حذف الأسماء المستعارة المحددة");
|
||||
define('LANG_no_aliases_defined', "لا توجد أسماء مستعارة على شبكة الإنترنت تحددها OGP لسيرفر التحكم.");
|
||||
define('LANG_fastdl_port', "بورت");
|
||||
define('LANG_fastdl_port_info', "البورت الذي سيعمل عليه خادم Fast Download");
|
||||
define('LANG_fastdl_ip', "عنوان");
|
||||
define('LANG_fastdl_ip_info', "عنوان الأي بي أو المجال الذي سيبدأ فيه خادم التحميل السريع، يجب أن يكون المجال مدرجا في / /etc/hosts.");
|
||||
define('LANG_listing', "قائمة");
|
||||
define('LANG_listing_info', "إذا كان \" قيد التشغيل\"، فإن السيرفر سيعرض قائمة بمحتويات المجلد.");
|
||||
define('LANG_fast_dl_advanced', "إعدادات متقدمة");
|
||||
define('LANG_apply_settings_and_restart_fastdl', "حفظ التكوين الخفي وإعادة تشغيله");
|
||||
define('LANG_stop_fastdl', "توقيف التحميل السريع الخفي");
|
||||
define('LANG_fast_download_daemon_running', "التحميل السريع الخفي قيد التشغيل.");
|
||||
define('LANG_fast_download_daemon_not_running', "التحميل السريع الخفي ليس قيد التشغيل.");
|
||||
define('LANG_fastdl_could_not_be_restarted', "تعذر إعادة تشغيل خدمة التحميل السريع.");
|
||||
define('LANG_configuration_file_could_not_be_written', "لم يتم حفظ ملف الإعدادات.");
|
||||
define('LANG_remove_folders', "إزالة المجلد للأسماء المستعارة المحددة.");
|
||||
define('LANG_remove_folder', "إزالة المجلد");
|
||||
define('LANG_delete_alias', "حذف الاسم المستعار");
|
||||
define('LANG_no_game_homes_assigned', "ليس لديك أي خوادم تم تعيينه لحسابك.");
|
||||
define('LANG_select_remote_server', "حدد سيرفر التحكم");
|
||||
define('LANG_access_rules', "شروط الوصول.");
|
||||
define('LANG_create_aliases', "إنشاء الأسماء المستعارة");
|
||||
define('LANG_select_game', "حدد اللعبة");
|
||||
define('LANG_games_without_specified_rules', "ألعاب بدون قواعد محددة");
|
||||
define('LANG_match_file_extension', "مطابقة امتداد الملف.");
|
||||
define('LANG_match_file_extension_info', "حدد الإضافات مفصولة بفاصلة, <br> وستكون الملفات المطابقة قابلة للوصول إليها. <br> <b> فراغ للوصول الغير مشروط </b>.");
|
||||
define('LANG_match_client_ip', "مطابقة عنوان IP الخاص بالعميل.");
|
||||
define('LANG_match_client_ip_info', "سيتم منح الاتصالات مع IP مطابقة ،<br>فارغة للوصول غير المقيد. يمكنك استخدام<br>عناوين IP أو نطاقات متعددة مفصولة بفاصلة:<br>/xx subnets<br>مثال: 10.0.0.0/16<br>/xxx.xxx.xxx.xxx subnets<br>مثال: 10.0.0.0/255.0.0.0<br>النطاقات الواصلة<br>مثال: 10.0.0.5-230<br>مطابقة النجمة<br>مثال: 10.0.*.*");
|
||||
define('LANG_save_access_rules', "حفظ قواعد الوصول");
|
||||
define('LANG_create_access_rules', "إنشاء قواعد الوصول");
|
||||
define('LANG_invalid_entries_found', "تم العثور على إدخالات غير صالحة");
|
||||
define('LANG_game_name', "إسم اللعبة");
|
||||
define('LANG_alias_already_exists', "الاسم المستعار %s موجود من قبل.");
|
||||
define('LANG_warning_access_rules_applied_once_alias_created', "تحذير: شروط الوصول سيتم تطبيقها عند انشاء الإسم المستعار. لا تعديلات سيتم تطبيقها على الأسماء المستعارة الحالية.");
|
||||
define('LANG_autostart_on_agent_startup', "بدء التشغيل التلقائي على بدء تشغيل الوكيل");
|
||||
define('LANG_autostart_on_agent_startup_info', "تشغيل خادم Fast Download تلقائياً عند بدء خادم لوحة التحكم.");
|
||||
define('LANG_port_forwarded_to_80', "تم توجيه المنفذ من 80");
|
||||
define('LANG_port_forwarded_to_80_info', "قم بتفعيل هذا الخيار اذا كان البورت المعد لخادم الــ Fast Download هذا قد تم تحويله من البورت 80، ولذلك سيتم اخفاء البورت من رابط عنوان الموقع.");
|
||||
define('LANG_current_access_rules', "قواعد الوصول الحالية");
|
||||
?>
|
||||
|
|
@ -22,14 +22,14 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_ftp_address', "عنوان الأف تي بي: %s:%s");
|
||||
define('OGP_LANG_change_account_details', "تغيير تفاصيل الحساب");
|
||||
define('OGP_LANG_remove_account', "حذف الحساب");
|
||||
define('OGP_LANG_ftp_account_already_exists', "حساب الأف تي بي هذا موجود بالفعل.");
|
||||
define('OGP_LANG_full_path', "الدليل الرئيسي");
|
||||
define('OGP_LANG_add_ftp_account', "إضافة حساب أف تي بي");
|
||||
define('OGP_LANG_remote_server', " سيرفر التحكم");
|
||||
define('OGP_LANG_server_name', "إسم السيرفر");
|
||||
define('OGP_LANG_ftp_account_username_too_long', "اسم مستخدم الأف تي بي طويل جدا. جرب اسم مستخدم أقصر لا يزيد عن 20 حرفا.");
|
||||
define('OGP_LANG_ftp_account_password_too_long', "كلمة مرور الأف تي بي طويلة جدا. جرب كلمة مرور أقصر لا تزيد عن 20 حرفا.");
|
||||
define('LANG_ftp_address', "عنوان الأف تي بي: %s:%s");
|
||||
define('LANG_change_account_details', "تغيير تفاصيل الحساب");
|
||||
define('LANG_remove_account', "حذف الحساب");
|
||||
define('LANG_ftp_account_already_exists', "حساب الأف تي بي هذا موجود بالفعل.");
|
||||
define('LANG_full_path', "الدليل الرئيسي");
|
||||
define('LANG_add_ftp_account', "إضافة حساب أف تي بي");
|
||||
define('LANG_remote_server', " سيرفر التحكم");
|
||||
define('LANG_server_name', "إسم السيرفر");
|
||||
define('LANG_ftp_account_username_too_long', "اسم مستخدم الأف تي بي طويل جدا. جرب اسم مستخدم أقصر لا يزيد عن 20 حرفا.");
|
||||
define('LANG_ftp_account_password_too_long', "كلمة مرور الأف تي بي طويلة جدا. جرب كلمة مرور أقصر لا تزيد عن 20 حرفا.");
|
||||
?>
|
||||
|
|
@ -22,189 +22,189 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_no_games_to_monitor', "ليس لديك أي ألعاب مخصصة لك يمكنك مراقبتها.");
|
||||
define('OGP_LANG_status', "الحالة");
|
||||
define('OGP_LANG_fail_no_mods', "لا يوجد مودات مفعلة لهذه اللعبة! يجب أن تطلب من المشرف أو مدير لوحة التحكم إضافة مودات للعبة المخصصة لك.");
|
||||
define('OGP_LANG_no_game_homes_assigned', "لا يوجد أي خوادم تم تعيينها لحسابك.");
|
||||
define('OGP_LANG_select_game_home_to_configure', "حدد خادم اللعبة الذي تريد تكوينه");
|
||||
define('OGP_LANG_file_manager', "مدير الملفات");
|
||||
define('OGP_LANG_configure_mods', "تهيئة الـمودات");
|
||||
define('OGP_LANG_install_update_steam', "تثبيت / تحديث عن طريق Steam");
|
||||
define('OGP_LANG_install_update_manual', "تثبيت / تحديث يدويا");
|
||||
define('OGP_LANG_assign_game_homes', "تعيين خوادم اللعبة");
|
||||
define('OGP_LANG_user', "المستخدم");
|
||||
define('OGP_LANG_group', "مجموعة");
|
||||
define('OGP_LANG_start', "تشغيل");
|
||||
define('OGP_LANG_ogp_agent_ip', "اي بي خادم OGP");
|
||||
define('OGP_LANG_max_players', "الحد الأقصى للاعبين");
|
||||
define('OGP_LANG_max', "الحد الأقصى");
|
||||
define('OGP_LANG_ip_and_port', "ايبي و البورت");
|
||||
define('OGP_LANG_available_maps', "الخرائط المتاحة");
|
||||
define('OGP_LANG_map_path', "مسار الخريطة");
|
||||
define('OGP_LANG_available_parameters', "المعلمات المتاحة");
|
||||
define('OGP_LANG_start_server', "تشغيل السيرفر");
|
||||
define('OGP_LANG_start_wait_note', "عملية تشغيل السيرفر قد تأخذ وقتاً أطول من المعتاد، الرجاء الإبقاء على المتصفح مفتوحاً.");
|
||||
define('OGP_LANG_game_type', "نوع اللعبة");
|
||||
define('OGP_LANG_map', "خريطة");
|
||||
define('OGP_LANG_starting_server', "جار تشغيل السيرفر، الرجاء الانتظار ...");
|
||||
define('OGP_LANG_starting_server_settings', "تشغيل السيرفر مع الإعدادات التالية");
|
||||
define('OGP_LANG_startup_params', "معلمات البدء");
|
||||
define('OGP_LANG_startup_cpu', "المعالج الذي سيعمل عليه السيرفر");
|
||||
define('OGP_LANG_startup_nice', "قيمة nice للخادم");
|
||||
define('OGP_LANG_game_home', "المسار الأساسي");
|
||||
define('OGP_LANG_server_started', "تم تشغيل السيرفر بنجاح.");
|
||||
define('OGP_LANG_no_parameter_access', "ليس لديك إمكانية الوصول إلى المعلمات.");
|
||||
define('OGP_LANG_extra_parameters', "معلمات اضافية");
|
||||
define('OGP_LANG_no_extra_param_access', "ليس لديك إمكانية الوصول إلى المعلمات الإضافية.");
|
||||
define('OGP_LANG_extra_parameters_info', "يتم وضع هذه المعلمات في نهاية سطر الأوامر عند بدء السيرفر.");
|
||||
define('OGP_LANG_game_exec_not_found', "الملف التنفيذي للعبة %s لم يتم العثور عليه في السيرفر.");
|
||||
define('OGP_LANG_select_params_and_start', "اختر معاملات بدء التشغيل الخاصة بالسيرفر ثم اضغط '%s'.");
|
||||
define('OGP_LANG_no_ip_port_pairs_assigned', "لم يتم تعيين عنوان IP أو بورت لهذا المسار. إذا كنت لا تستطيع الوصول إلى خيارات تعديل المسار الأساسي عليك بالإتصال بمدير لوحة التحكم.");
|
||||
define('OGP_LANG_unable_to_get_log', "غير قادر على الحصول على السجل ، retval %s.");
|
||||
define('OGP_LANG_server_binary_not_executable', "ملف تشغيل السيرفر لا يمكن تنفيذه. عليك بالتحقق من أنه لديك الصلاحيات اللازمة الخاصة بالمجلد الرئيسي للسيرفر.");
|
||||
define('OGP_LANG_server_not_running_log_found', "السيرفر ليس قيد التشغيل، ولكن السجل موجود. ملاحظة: هذا السجل يمكن أن لا يكون مرتبطاً بآخر عملية تشغيل للسيرفر.");
|
||||
define('OGP_LANG_ip_port_pair_not_owned', "IP:PORT زوج غير مملوك.");
|
||||
define('OGP_LANG_unsuitable_maxplayers_value_maximum_reachable_number_of_slots_has_been_set', "قيمة maxplayers غير مناسبة، لقد قمت بتعيين أقصى قيمة لعدد اللاعبين.");
|
||||
define('OGP_LANG_server_running_not_responding', "السيرفر قيد التشغيل، ولكنه لا يستجيب. <br>يمكن أن يكون بسبب مشكلة ما وانت تريد أن");
|
||||
define('OGP_LANG_update_started', "بدأ التحديث، يرجى الانتظار ...");
|
||||
define('OGP_LANG_failed_to_start_steam_update', "فشل بدء تحديث Steam. انظر سجل الوكيل.");
|
||||
define('OGP_LANG_failed_to_start_rsync_update', "فشل بدء تحديث Rsync. انظر سجل الوكيل.");
|
||||
define('OGP_LANG_update_completed', "اكتمل التحديث بنجاح.");
|
||||
define('OGP_LANG_update_in_progress', "جار التحديث، يرجى الانتظار ...");
|
||||
define('OGP_LANG_refresh_steam_status', "تحديث حالة Steam");
|
||||
define('OGP_LANG_refresh_rsync_status', "تحديث حالة Rsync");
|
||||
define('OGP_LANG_server_running_cant_update', "الخادم شغال إذا التحديث ليس معقول. أوقف الخادم قبل التحديث.");
|
||||
define('OGP_LANG_xml_steam_error', "نوع الخادم المحدد لا يدعم التثبيت / التحديث Steam.");
|
||||
define('OGP_LANG_mod_key_not_found_from_xml', "مفتاح التعديل '%s' لم يتم العثور عليه من ملف XML.");
|
||||
define('OGP_LANG_stop_update', "إيقاف التحديث");
|
||||
define('OGP_LANG_statistics', "الإحصاءات");
|
||||
define('OGP_LANG_servers', "سيرفرات");
|
||||
define('OGP_LANG_players', "لاعبين");
|
||||
define('OGP_LANG_current_map', "الخريطة الحالية");
|
||||
define('OGP_LANG_stop_server', "إيقاف السيرفر");
|
||||
define('OGP_LANG_server_ip_port', "سيرفر ايبي:بورت");
|
||||
define('OGP_LANG_server_name', "إسم السيرفر");
|
||||
define('OGP_LANG_server_id', "معرف السيرفر");
|
||||
define('OGP_LANG_player_name', "إسم اللاعب");
|
||||
define('OGP_LANG_score', "النقاط");
|
||||
define('OGP_LANG_time', "الوقت");
|
||||
define('OGP_LANG_no_rights_to_stop_server', "ليس لديك حقوق لإيقاف هذا السيرفر.");
|
||||
define('OGP_LANG_no_ogp_lgsl_support', "هذا السيرفر (يعمل: %s) لا يملك دعم LGSL في OGP وبالتالي لا يمكن عرض إحصائياته او بياناته.");
|
||||
define('OGP_LANG_server_status', "الخادم على %s هو %s.");
|
||||
define('OGP_LANG_server_stopped', "تم إيقاف السيرفر '%s' .");
|
||||
define('OGP_LANG_if_want_to_start_homes', "إذا كنت ترغب في بدء تشغيل سيرفرات الألعاب اذهب إلى %s.");
|
||||
define('OGP_LANG_view_log', "سجل المشاهد");
|
||||
define('OGP_LANG_if_want_manage', "إذا كنت ترغب في إدارة الألعاب الخاصة بك يمكنك القيام بذلك في");
|
||||
define('OGP_LANG_columns', "أعمدة");
|
||||
define('OGP_LANG_group_users', "مستخدمو المجموعة:");
|
||||
define('OGP_LANG_assigned_to', "مخصص ل:");
|
||||
define('OGP_LANG_restart_server', "إعادة تشغيل السيرفر");
|
||||
define('OGP_LANG_restarting_server', "جار إعادة تشغيل السيرفر، يرجى الانتظار ...");
|
||||
define('OGP_LANG_server_restarted', "تمت إعادة تشغيل الخادم '%s'.");
|
||||
define('OGP_LANG_server_not_running', "الخادم ليس قيد التشغيل.");
|
||||
define('OGP_LANG_address', "العنوان");
|
||||
define('OGP_LANG_owner', "الصاحب");
|
||||
define('OGP_LANG_operations', "عمليات");
|
||||
define('OGP_LANG_search', "بحث");
|
||||
define('OGP_LANG_maps_read_from', "قراءة الخرائط من");
|
||||
define('OGP_LANG_file', "ملف");
|
||||
define('OGP_LANG_folder', "مجلد");
|
||||
define('OGP_LANG_unable_retrieve_mod_info', "لا يمكن استجلاب معلومات التعديل mod من قاعدة البيانات.");
|
||||
define('OGP_LANG_unexpected_result_libremote', "نتيجة غير متوقعة من libremote، الرجاء إعلام المطورين.");
|
||||
define('OGP_LANG_unable_get_info', "لا يمكن الحصول على معلومات بدء التشغيل. سيتم الإيقاف.");
|
||||
define('OGP_LANG_server_already_running', "السيرفر يعمل بالفعل. إذا كنت لا ترى السيرفر في نافذة مراقبة اللعبة، يمكن أن يكون هناك خطأ ما، وقد تريد أن");
|
||||
define('OGP_LANG_already_running_stop_server', "إيقاف السيرفر.");
|
||||
define('OGP_LANG_error_server_already_running', "خطأ: الخادم يعمل بالفعل على port");
|
||||
define('OGP_LANG_failed_start_server_code', "فشل بدء تشغيل السيرفر المتحكم. رمز الخطأ: %s");
|
||||
define('OGP_LANG_disabled', "معطل");
|
||||
define('OGP_LANG_not_found_server', "لا يمكن العثور على السيرفر بالهوية");
|
||||
define('OGP_LANG_rcon_command_title', "أمر RCON");
|
||||
define('OGP_LANG_has_sent_to', "تم إرسالها إلى");
|
||||
define('OGP_LANG_need_set_remote_pass', "عليك بتعيين كلمة المرور الخاصة بالتحكم عن بعد");
|
||||
define('OGP_LANG_before_sending_rcon_com', "قبل إرسال أمر rcon");
|
||||
define('OGP_LANG_retry', "إعادة المحاولة");
|
||||
define('OGP_LANG_page', "صفحة");
|
||||
define('OGP_LANG_server_cant_start', "لا يمكن تشغيل السيرفر");
|
||||
define('OGP_LANG_server_cant_stop', "لا يمكن إيقاف السيرفر");
|
||||
define('OGP_LANG_error_occured_remote_host', "خطأ في المستضيف");
|
||||
define('OGP_LANG_follow_server_status', "يمكنك متابعة حالة السيرفر من");
|
||||
define('OGP_LANG_addons', "إضافات");
|
||||
define('OGP_LANG_hostname', "اسم المضيف");
|
||||
define('OGP_LANG_rsync_install', "[Rsync Install]");
|
||||
define('OGP_LANG_ping', "بينغ");
|
||||
define('OGP_LANG_team', "فريق");
|
||||
define('OGP_LANG_deaths', "Deaths");
|
||||
define('OGP_LANG_pid', "PID");
|
||||
define('OGP_LANG_skill', "الخبرة");
|
||||
define('OGP_LANG_AIBot', "AIBot");
|
||||
define('OGP_LANG_steamid', "Steam ID");
|
||||
define('OGP_LANG_player', "لاعب");
|
||||
define('OGP_LANG_port', "بورت");
|
||||
define('OGP_LANG_rcon_presets', "إعدادات RCON المسبقة");
|
||||
define('OGP_LANG_update_from_local_master_server', "التحديث من السيرفر المحلي الرئيسي");
|
||||
define('OGP_LANG_update_from_selected_rsync_server', "التحديث من سيرفر Rsync المحدد");
|
||||
define('OGP_LANG_execute_selected_server_operations', "تنفيذ عمليات السيرفر المحددة");
|
||||
define('OGP_LANG_execute_operations', "تنفيذ العمليات");
|
||||
define('OGP_LANG_account_expiration', "انتهاء صلاحية الحساب");
|
||||
define('OGP_LANG_mysql_databases', "قواعد بيانات MySQL");
|
||||
define('OGP_LANG_failed_querying_server', "* فشل الاستعلام عن السيرفر.");
|
||||
define('OGP_LANG_query_protocol_not_supported', "* لا يوجد بروتوكول استعلام في OGP يمكنه دعم هذا السيرفر.");
|
||||
define('OGP_LANG_queries_disabled_by_setting_disable_queries_after', "تم تعطيل الاستعلامات من خلال الإعداد: تعطيل طلبات البحث بعد: %s, بما لديك %s خادم.<br>");
|
||||
define('OGP_LANG_presets_for_game_and_mod', "RCON presets for %s and mod %s");
|
||||
define('OGP_LANG_name', "الاسم");
|
||||
define('OGP_LANG_command', "RCON Command");
|
||||
define('OGP_LANG_add_preset', "أضف مسبقا");
|
||||
define('OGP_LANG_edit_presets', "تحرير الإعدادات المسبقة");
|
||||
define('OGP_LANG_del_preset', "حذف");
|
||||
define('OGP_LANG_change_preset', "تغيير");
|
||||
define('OGP_LANG_send_command', "إرسال الأمر");
|
||||
define('OGP_LANG_starting_copy_with_master_server_named', "Starting copy with master server named '%s'...");
|
||||
define('OGP_LANG_starting_sync_with', "Starting sync with %s...");
|
||||
define('OGP_LANG_refresh_interval', "فترة تحديث السجل");
|
||||
define('OGP_LANG_finished_manual_update', "انتهى التحديث اليدوي.");
|
||||
define('OGP_LANG_failed_to_start_file_download', "فشل بدء تحميل الملف");
|
||||
define('OGP_LANG_game_name', "إسم اللعبة");
|
||||
define('OGP_LANG_dest_dir', "دليل الوجهة");
|
||||
define('OGP_LANG_remote_server', "السيرفر المتحكم");
|
||||
define('OGP_LANG_file_url', "رابط الملف");
|
||||
define('OGP_LANG_file_url_info', "The URL of the file that is uploaded and uncompressed to the directory.");
|
||||
define('OGP_LANG_dest_filename', "وجهة اسم الملف");
|
||||
define('OGP_LANG_dest_filename_info', "اسم الملف للملف الوجهة.");
|
||||
define('OGP_LANG_update_server', "تحديث السيرفر");
|
||||
define('OGP_LANG_unavailable', "غير متوفره");
|
||||
define('OGP_LANG_upload_map_image', "رفع صورة الخريطة");
|
||||
define('OGP_LANG_upload_image', "رفع صورة");
|
||||
define('OGP_LANG_jpg_gif_png_less_than_1mb', "يجب أن تكون الصورة بتنسيق jpg أو gif أو png وأقل من 1 ميغابايت.");
|
||||
define('OGP_LANG_check_dev_console', "خطأ أثناء رفع الملف ، يرجى التحقق من وحدة تحكم مطور المتصفح.");
|
||||
define('OGP_LANG_uploaded_successfully', "تم الرفع بنجاح.");
|
||||
define('OGP_LANG_cant_create_folder', "لا يمكن إنشاء مجلد:<br> <b>%s</b>");
|
||||
define('OGP_LANG_cant_write_file', "لا يمكن كتابة الملف:<br> <b>%s</b>");
|
||||
define('OGP_LANG_exceeded_php_directive', "تم تجاوز أمر PHP .<br> <b>%s</b>.");
|
||||
define('OGP_LANG_unknown_errors', "أخطاء غير معروفة.");
|
||||
define('OGP_LANG_directory', "الدليل");
|
||||
define('OGP_LANG_view_player_commands', "عرض أوامر لاعب");
|
||||
define('OGP_LANG_hide_player_commands', "إخفاء أوامر اللاعب");
|
||||
define('OGP_LANG_no_online_players', "لا يوجد لاعبين متواجدين.");
|
||||
define('OGP_LANG_invalid_game_mod_id', "Invalid Game/Mod ID specified.");
|
||||
define('OGP_LANG_auto_update_title_popup', "رابط تحديث تلقائي لSteam");
|
||||
define('OGP_LANG_auto_update_popup_html', "<p>استخدم الرابط أدناه للتحقق من خادم اللعبة وتحديثه تلقائيًا عبر Steam إذا لزم الأمر. يمكنك الاستعلام عنها باستخدام cronjob أو بدء العملية يدويًا.</p>");
|
||||
define('OGP_LANG_api_links_popup_html', "<p>Select an action you would like to perform using the OGP API for this game server. Then, use the link below to perform your desired action. You can run your desired action using a cronjob or by making a direct request to it.</p>");
|
||||
define('OGP_LANG_auto_update_copy_me', "نسخ");
|
||||
define('OGP_LANG_auto_update_copy_me_success', "تم النسخ!");
|
||||
define('OGP_LANG_auto_update_copy_me_fail', "فشل النسخ. يرجى نسخ الرابط يدويًا.");
|
||||
define('OGP_LANG_get_steam_autoupdate_api_link', "رابط التحديث التلقائي");
|
||||
define('OGP_LANG_show_api_actions', "Show API Actions");
|
||||
define('OGP_LANG_api_links', "روابط واجهة برمجة التطبيقات");
|
||||
define('OGP_LANG_update_attempt_from_nonmaster_server', "User %s attempted to update home_id %d from a non-master server. (Home ID: %d)");
|
||||
define('OGP_LANG_attempting_nonmaster_update', "You are attempting to update this server from a non-master server.");
|
||||
define('OGP_LANG_cannot_update_from_own_self', "قد لا يعمل تحديث الخادم المحلي على الخادم رئيسي.");
|
||||
define('OGP_LANG_show_server_id', "إظهار معرفات الخادم");
|
||||
define('OGP_LANG_hide_server_id', "إخفاء معرفات الخادم");
|
||||
define('OGP_LANG_edit_configuration_files', "تعديل ملفات التكوين");
|
||||
define('OGP_LANG_admin', "مشرف");
|
||||
define('OGP_LANG_cid', "CID");
|
||||
define('OGP_LANG_phan', "وهمي");
|
||||
define('OGP_LANG_sec', "ثواني");
|
||||
define('OGP_LANG_unknown_rsync_mirror', "لقد حاولت بدء تحديث من مرآة غير موجودة.");
|
||||
define('OGP_LANG_custom_fields', "الحقول المخصصة");
|
||||
define('LANG_no_games_to_monitor', "ليس لديك أي ألعاب مخصصة لك يمكنك مراقبتها.");
|
||||
define('LANG_status', "الحالة");
|
||||
define('LANG_fail_no_mods', "لا يوجد مودات مفعلة لهذه اللعبة! يجب أن تطلب من المشرف أو مدير لوحة التحكم إضافة مودات للعبة المخصصة لك.");
|
||||
define('LANG_no_game_homes_assigned', "لا يوجد أي خوادم تم تعيينها لحسابك.");
|
||||
define('LANG_select_game_home_to_configure', "حدد خادم اللعبة الذي تريد تكوينه");
|
||||
define('LANG_file_manager', "مدير الملفات");
|
||||
define('LANG_configure_mods', "تهيئة الـمودات");
|
||||
define('LANG_install_update_steam', "تثبيت / تحديث عن طريق Steam");
|
||||
define('LANG_install_update_manual', "تثبيت / تحديث يدويا");
|
||||
define('LANG_assign_game_homes', "تعيين خوادم اللعبة");
|
||||
define('LANG_user', "المستخدم");
|
||||
define('LANG_group', "مجموعة");
|
||||
define('LANG_start', "تشغيل");
|
||||
define('LANG_ogp_agent_ip', "اي بي خادم OGP");
|
||||
define('LANG_max_players', "الحد الأقصى للاعبين");
|
||||
define('LANG_max', "الحد الأقصى");
|
||||
define('LANG_ip_and_port', "ايبي و البورت");
|
||||
define('LANG_available_maps', "الخرائط المتاحة");
|
||||
define('LANG_map_path', "مسار الخريطة");
|
||||
define('LANG_available_parameters', "المعلمات المتاحة");
|
||||
define('LANG_start_server', "تشغيل السيرفر");
|
||||
define('LANG_start_wait_note', "عملية تشغيل السيرفر قد تأخذ وقتاً أطول من المعتاد، الرجاء الإبقاء على المتصفح مفتوحاً.");
|
||||
define('LANG_game_type', "نوع اللعبة");
|
||||
define('LANG_map', "خريطة");
|
||||
define('LANG_starting_server', "جار تشغيل السيرفر، الرجاء الانتظار ...");
|
||||
define('LANG_starting_server_settings', "تشغيل السيرفر مع الإعدادات التالية");
|
||||
define('LANG_startup_params', "معلمات البدء");
|
||||
define('LANG_startup_cpu', "المعالج الذي سيعمل عليه السيرفر");
|
||||
define('LANG_startup_nice', "قيمة nice للخادم");
|
||||
define('LANG_game_home', "المسار الأساسي");
|
||||
define('LANG_server_started', "تم تشغيل السيرفر بنجاح.");
|
||||
define('LANG_no_parameter_access', "ليس لديك إمكانية الوصول إلى المعلمات.");
|
||||
define('LANG_extra_parameters', "معلمات اضافية");
|
||||
define('LANG_no_extra_param_access', "ليس لديك إمكانية الوصول إلى المعلمات الإضافية.");
|
||||
define('LANG_extra_parameters_info', "يتم وضع هذه المعلمات في نهاية سطر الأوامر عند بدء السيرفر.");
|
||||
define('LANG_game_exec_not_found', "الملف التنفيذي للعبة %s لم يتم العثور عليه في السيرفر.");
|
||||
define('LANG_select_params_and_start', "اختر معاملات بدء التشغيل الخاصة بالسيرفر ثم اضغط '%s'.");
|
||||
define('LANG_no_ip_port_pairs_assigned', "لم يتم تعيين عنوان IP أو بورت لهذا المسار. إذا كنت لا تستطيع الوصول إلى خيارات تعديل المسار الأساسي عليك بالإتصال بمدير لوحة التحكم.");
|
||||
define('LANG_unable_to_get_log', "غير قادر على الحصول على السجل ، retval %s.");
|
||||
define('LANG_server_binary_not_executable', "ملف تشغيل السيرفر لا يمكن تنفيذه. عليك بالتحقق من أنه لديك الصلاحيات اللازمة الخاصة بالمجلد الرئيسي للسيرفر.");
|
||||
define('LANG_server_not_running_log_found', "السيرفر ليس قيد التشغيل، ولكن السجل موجود. ملاحظة: هذا السجل يمكن أن لا يكون مرتبطاً بآخر عملية تشغيل للسيرفر.");
|
||||
define('LANG_ip_port_pair_not_owned', "IP:PORT زوج غير مملوك.");
|
||||
define('LANG_unsuitable_maxplayers_value_maximum_reachable_number_of_slots_has_been_set', "قيمة maxplayers غير مناسبة، لقد قمت بتعيين أقصى قيمة لعدد اللاعبين.");
|
||||
define('LANG_server_running_not_responding', "السيرفر قيد التشغيل، ولكنه لا يستجيب. <br>يمكن أن يكون بسبب مشكلة ما وانت تريد أن");
|
||||
define('LANG_update_started', "بدأ التحديث، يرجى الانتظار ...");
|
||||
define('LANG_failed_to_start_steam_update', "فشل بدء تحديث Steam. انظر سجل الوكيل.");
|
||||
define('LANG_failed_to_start_rsync_update', "فشل بدء تحديث Rsync. انظر سجل الوكيل.");
|
||||
define('LANG_update_completed', "اكتمل التحديث بنجاح.");
|
||||
define('LANG_update_in_progress', "جار التحديث، يرجى الانتظار ...");
|
||||
define('LANG_refresh_steam_status', "تحديث حالة Steam");
|
||||
define('LANG_refresh_rsync_status', "تحديث حالة Rsync");
|
||||
define('LANG_server_running_cant_update', "الخادم شغال إذا التحديث ليس معقول. أوقف الخادم قبل التحديث.");
|
||||
define('LANG_xml_steam_error', "نوع الخادم المحدد لا يدعم التثبيت / التحديث Steam.");
|
||||
define('LANG_mod_key_not_found_from_xml', "مفتاح التعديل '%s' لم يتم العثور عليه من ملف XML.");
|
||||
define('LANG_stop_update', "إيقاف التحديث");
|
||||
define('LANG_statistics', "الإحصاءات");
|
||||
define('LANG_servers', "سيرفرات");
|
||||
define('LANG_players', "لاعبين");
|
||||
define('LANG_current_map', "الخريطة الحالية");
|
||||
define('LANG_stop_server', "إيقاف السيرفر");
|
||||
define('LANG_server_ip_port', "سيرفر ايبي:بورت");
|
||||
define('LANG_server_name', "إسم السيرفر");
|
||||
define('LANG_server_id', "معرف السيرفر");
|
||||
define('LANG_player_name', "إسم اللاعب");
|
||||
define('LANG_score', "النقاط");
|
||||
define('LANG_time', "الوقت");
|
||||
define('LANG_no_rights_to_stop_server', "ليس لديك حقوق لإيقاف هذا السيرفر.");
|
||||
define('LANG_no_ogp_lgsl_support', "هذا السيرفر (يعمل: %s) لا يملك دعم LGSL في OGP وبالتالي لا يمكن عرض إحصائياته او بياناته.");
|
||||
define('LANG_server_status', "الخادم على %s هو %s.");
|
||||
define('LANG_server_stopped', "تم إيقاف السيرفر '%s' .");
|
||||
define('LANG_if_want_to_start_homes', "إذا كنت ترغب في بدء تشغيل سيرفرات الألعاب اذهب إلى %s.");
|
||||
define('LANG_view_log', "سجل المشاهد");
|
||||
define('LANG_if_want_manage', "إذا كنت ترغب في إدارة الألعاب الخاصة بك يمكنك القيام بذلك في");
|
||||
define('LANG_columns', "أعمدة");
|
||||
define('LANG_group_users', "مستخدمو المجموعة:");
|
||||
define('LANG_assigned_to', "مخصص ل:");
|
||||
define('LANG_restart_server', "إعادة تشغيل السيرفر");
|
||||
define('LANG_restarting_server', "جار إعادة تشغيل السيرفر، يرجى الانتظار ...");
|
||||
define('LANG_server_restarted', "تمت إعادة تشغيل الخادم '%s'.");
|
||||
define('LANG_server_not_running', "الخادم ليس قيد التشغيل.");
|
||||
define('LANG_address', "العنوان");
|
||||
define('LANG_owner', "الصاحب");
|
||||
define('LANG_operations', "عمليات");
|
||||
define('LANG_search', "بحث");
|
||||
define('LANG_maps_read_from', "قراءة الخرائط من");
|
||||
define('LANG_file', "ملف");
|
||||
define('LANG_folder', "مجلد");
|
||||
define('LANG_unable_retrieve_mod_info', "لا يمكن استجلاب معلومات التعديل mod من قاعدة البيانات.");
|
||||
define('LANG_unexpected_result_libremote', "نتيجة غير متوقعة من libremote، الرجاء إعلام المطورين.");
|
||||
define('LANG_unable_get_info', "لا يمكن الحصول على معلومات بدء التشغيل. سيتم الإيقاف.");
|
||||
define('LANG_server_already_running', "السيرفر يعمل بالفعل. إذا كنت لا ترى السيرفر في نافذة مراقبة اللعبة، يمكن أن يكون هناك خطأ ما، وقد تريد أن");
|
||||
define('LANG_already_running_stop_server', "إيقاف السيرفر.");
|
||||
define('LANG_error_server_already_running', "خطأ: الخادم يعمل بالفعل على port");
|
||||
define('LANG_failed_start_server_code', "فشل بدء تشغيل السيرفر المتحكم. رمز الخطأ: %s");
|
||||
define('LANG_disabled', "معطل");
|
||||
define('LANG_not_found_server', "لا يمكن العثور على السيرفر بالهوية");
|
||||
define('LANG_rcon_command_title', "أمر RCON");
|
||||
define('LANG_has_sent_to', "تم إرسالها إلى");
|
||||
define('LANG_need_set_remote_pass', "عليك بتعيين كلمة المرور الخاصة بالتحكم عن بعد");
|
||||
define('LANG_before_sending_rcon_com', "قبل إرسال أمر rcon");
|
||||
define('LANG_retry', "إعادة المحاولة");
|
||||
define('LANG_page', "صفحة");
|
||||
define('LANG_server_cant_start', "لا يمكن تشغيل السيرفر");
|
||||
define('LANG_server_cant_stop', "لا يمكن إيقاف السيرفر");
|
||||
define('LANG_error_occured_remote_host', "خطأ في المستضيف");
|
||||
define('LANG_follow_server_status', "يمكنك متابعة حالة السيرفر من");
|
||||
define('LANG_addons', "إضافات");
|
||||
define('LANG_hostname', "اسم المضيف");
|
||||
define('LANG_rsync_install', "[Rsync Install]");
|
||||
define('LANG_ping', "بينغ");
|
||||
define('LANG_team', "فريق");
|
||||
define('LANG_deaths', "Deaths");
|
||||
define('LANG_pid', "PID");
|
||||
define('LANG_skill', "الخبرة");
|
||||
define('LANG_AIBot', "AIBot");
|
||||
define('LANG_steamid', "Steam ID");
|
||||
define('LANG_player', "لاعب");
|
||||
define('LANG_port', "بورت");
|
||||
define('LANG_rcon_presets', "إعدادات RCON المسبقة");
|
||||
define('LANG_update_from_local_master_server', "التحديث من السيرفر المحلي الرئيسي");
|
||||
define('LANG_update_from_selected_rsync_server', "التحديث من سيرفر Rsync المحدد");
|
||||
define('LANG_execute_selected_server_operations', "تنفيذ عمليات السيرفر المحددة");
|
||||
define('LANG_execute_operations', "تنفيذ العمليات");
|
||||
define('LANG_account_expiration', "انتهاء صلاحية الحساب");
|
||||
define('LANG_mysql_databases', "قواعد بيانات MySQL");
|
||||
define('LANG_failed_querying_server', "* فشل الاستعلام عن السيرفر.");
|
||||
define('LANG_query_protocol_not_supported', "* لا يوجد بروتوكول استعلام في OGP يمكنه دعم هذا السيرفر.");
|
||||
define('LANG_queries_disabled_by_setting_disable_queries_after', "تم تعطيل الاستعلامات من خلال الإعداد: تعطيل طلبات البحث بعد: %s, بما لديك %s خادم.<br>");
|
||||
define('LANG_presets_for_game_and_mod', "RCON presets for %s and mod %s");
|
||||
define('LANG_name', "الاسم");
|
||||
define('LANG_command', "RCON Command");
|
||||
define('LANG_add_preset', "أضف مسبقا");
|
||||
define('LANG_edit_presets', "تحرير الإعدادات المسبقة");
|
||||
define('LANG_del_preset', "حذف");
|
||||
define('LANG_change_preset', "تغيير");
|
||||
define('LANG_send_command', "إرسال الأمر");
|
||||
define('LANG_starting_copy_with_master_server_named', "Starting copy with master server named '%s'...");
|
||||
define('LANG_starting_sync_with', "Starting sync with %s...");
|
||||
define('LANG_refresh_interval', "فترة تحديث السجل");
|
||||
define('LANG_finished_manual_update', "انتهى التحديث اليدوي.");
|
||||
define('LANG_failed_to_start_file_download', "فشل بدء تحميل الملف");
|
||||
define('LANG_game_name', "إسم اللعبة");
|
||||
define('LANG_dest_dir', "دليل الوجهة");
|
||||
define('LANG_remote_server', "السيرفر المتحكم");
|
||||
define('LANG_file_url', "رابط الملف");
|
||||
define('LANG_file_url_info', "The URL of the file that is uploaded and uncompressed to the directory.");
|
||||
define('LANG_dest_filename', "وجهة اسم الملف");
|
||||
define('LANG_dest_filename_info', "اسم الملف للملف الوجهة.");
|
||||
define('LANG_update_server', "تحديث السيرفر");
|
||||
define('LANG_unavailable', "غير متوفره");
|
||||
define('LANG_upload_map_image', "رفع صورة الخريطة");
|
||||
define('LANG_upload_image', "رفع صورة");
|
||||
define('LANG_jpg_gif_png_less_than_1mb', "يجب أن تكون الصورة بتنسيق jpg أو gif أو png وأقل من 1 ميغابايت.");
|
||||
define('LANG_check_dev_console', "خطأ أثناء رفع الملف ، يرجى التحقق من وحدة تحكم مطور المتصفح.");
|
||||
define('LANG_uploaded_successfully', "تم الرفع بنجاح.");
|
||||
define('LANG_cant_create_folder', "لا يمكن إنشاء مجلد:<br> <b>%s</b>");
|
||||
define('LANG_cant_write_file', "لا يمكن كتابة الملف:<br> <b>%s</b>");
|
||||
define('LANG_exceeded_php_directive', "تم تجاوز أمر PHP .<br> <b>%s</b>.");
|
||||
define('LANG_unknown_errors', "أخطاء غير معروفة.");
|
||||
define('LANG_directory', "الدليل");
|
||||
define('LANG_view_player_commands', "عرض أوامر لاعب");
|
||||
define('LANG_hide_player_commands', "إخفاء أوامر اللاعب");
|
||||
define('LANG_no_online_players', "لا يوجد لاعبين متواجدين.");
|
||||
define('LANG_invalid_game_mod_id', "Invalid Game/Mod ID specified.");
|
||||
define('LANG_auto_update_title_popup', "رابط تحديث تلقائي لSteam");
|
||||
define('LANG_auto_update_popup_html', "<p>استخدم الرابط أدناه للتحقق من خادم اللعبة وتحديثه تلقائيًا عبر Steam إذا لزم الأمر. يمكنك الاستعلام عنها باستخدام cronjob أو بدء العملية يدويًا.</p>");
|
||||
define('LANG_api_links_popup_html', "<p>Select an action you would like to perform using the OGP API for this game server. Then, use the link below to perform your desired action. You can run your desired action using a cronjob or by making a direct request to it.</p>");
|
||||
define('LANG_auto_update_copy_me', "نسخ");
|
||||
define('LANG_auto_update_copy_me_success', "تم النسخ!");
|
||||
define('LANG_auto_update_copy_me_fail', "فشل النسخ. يرجى نسخ الرابط يدويًا.");
|
||||
define('LANG_get_steam_autoupdate_api_link', "رابط التحديث التلقائي");
|
||||
define('LANG_show_api_actions', "Show API Actions");
|
||||
define('LANG_api_links', "روابط واجهة برمجة التطبيقات");
|
||||
define('LANG_update_attempt_from_nonmaster_server', "User %s attempted to update home_id %d from a non-master server. (Home ID: %d)");
|
||||
define('LANG_attempting_nonmaster_update', "You are attempting to update this server from a non-master server.");
|
||||
define('LANG_cannot_update_from_own_self', "قد لا يعمل تحديث الخادم المحلي على الخادم رئيسي.");
|
||||
define('LANG_show_server_id', "إظهار معرفات الخادم");
|
||||
define('LANG_hide_server_id', "إخفاء معرفات الخادم");
|
||||
define('LANG_edit_configuration_files', "تعديل ملفات التكوين");
|
||||
define('LANG_admin', "مشرف");
|
||||
define('LANG_cid', "CID");
|
||||
define('LANG_phan', "وهمي");
|
||||
define('LANG_sec', "ثواني");
|
||||
define('LANG_unknown_rsync_mirror', "لقد حاولت بدء تحديث من مرآة غير موجودة.");
|
||||
define('LANG_custom_fields', "الحقول المخصصة");
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -22,67 +22,67 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_dir_not_found', "لم يتم العثور على الدليل '%s' من الخادم.");
|
||||
define('OGP_LANG_filename', "اسم الملف");
|
||||
define('OGP_LANG_filesize', "حجم الملف");
|
||||
define('OGP_LANG_bytes', "بايت");
|
||||
define('OGP_LANG_owner', "الصاحب");
|
||||
define('OGP_LANG_group', "مجموعة");
|
||||
define('OGP_LANG_empty_directory', "الدليل فارغ.");
|
||||
define('OGP_LANG_currently_viewing', "يعرض حاليا الدليل '%s'");
|
||||
define('OGP_LANG_wrote_changes', "التغييرات تم حفظها بنجاح.");
|
||||
define('OGP_LANG_failed_write', "أخفق كتابة الملف إلى الخادم البعيد.");
|
||||
define('OGP_LANG_failed_read', "أخفق قراءة الملف من الخادم البعيد.");
|
||||
define('OGP_LANG_failed_list', "أخفق استرداد قائمة الدليل.");
|
||||
define('OGP_LANG_level_up', "^الرجوع للخلف^");
|
||||
define('OGP_LANG_unallowed_char', "تم العثور على أحرف غير مسموح بها من المسار.");
|
||||
define('OGP_LANG_button_edit', "[تعديل]");
|
||||
define('OGP_LANG_save', "حفظ");
|
||||
define('OGP_LANG_home_id_missing', "أي دي الصفحة مفقود.");
|
||||
define('OGP_LANG_upload', "رفع");
|
||||
define('OGP_LANG_upload_failed', "أخفق التحميل، الخطأ هو:%s.");
|
||||
define('OGP_LANG_can_not_create_upload_folder_path', "لا يمكن إنشاء مجلد رفع مسار %s");
|
||||
define('OGP_LANG_url_is_not_accesible_from_agent', " رابط %s لا يمكن الوصول إليه من الوكيل");
|
||||
define('OGP_LANG_upload_file', "رفع ملف");
|
||||
define('OGP_LANG_uncompress', "فك الضغط");
|
||||
define('OGP_LANG_create_folder', "أنشئ مجلد");
|
||||
define('OGP_LANG_create', "أنشئ");
|
||||
define('OGP_LANG_delete_item', "هل تريد حذف %s؟");
|
||||
define('OGP_LANG_upload_in_progress', "جار الرفع ...");
|
||||
define('OGP_LANG_upload_complete', "اكتمل الرفع.");
|
||||
define('OGP_LANG_chattr_yes', "قفل الملف");
|
||||
define('OGP_LANG_chattr_no', "فتح الملف");
|
||||
define('OGP_LANG_secure_item', "آمن / غير آمن %s؟");
|
||||
define('OGP_LANG_filesecure', "أمن الملفات");
|
||||
define('OGP_LANG_chattr_locked', "ملف مقفل");
|
||||
define('OGP_LANG_chattr_unlocked', "تم إلغاء قفل الملف");
|
||||
define('OGP_LANG_rename', "إعادة التسمية");
|
||||
define('OGP_LANG_move', "نقل");
|
||||
define('OGP_LANG_copy', "نسخ");
|
||||
define('OGP_LANG_compress', "ضغط");
|
||||
define('OGP_LANG_create_file', "إنشاء ملف");
|
||||
define('OGP_LANG_select_at_least_one_item', "حدد عنصرا واحدا على الأقل");
|
||||
define('OGP_LANG_rename_item', "إعادة تسمية العنصر (العناصر)");
|
||||
define('OGP_LANG_move_item', "نقل العنصر (العناصر)");
|
||||
define('OGP_LANG_copy_item', "نسخ العنصر (العناصر)");
|
||||
define('OGP_LANG_compress_item', "ضغط العنصر (العناصر)");
|
||||
define('OGP_LANG_uncompress_item', "فك ضغط العنصر (العناصر)");
|
||||
define('OGP_LANG_archive_name', "اسم الأرشيف");
|
||||
define('OGP_LANG_archive_type', "نوع الأرشيف");
|
||||
define('OGP_LANG_file_name', "اسم الملف");
|
||||
define('OGP_LANG_folder_name', "اسم المجلد");
|
||||
define('OGP_LANG_compresses_files_separately', "يضغط الملفات بشكل منفصل");
|
||||
define('OGP_LANG_to', "إلى");
|
||||
define('OGP_LANG_upload_to_web', "الرفع إلى الويب");
|
||||
define('OGP_LANG_transfer_to_server', "النقل إلى الخادم");
|
||||
define('OGP_LANG_mail_sent_successfully', "تم إرسال البريد الإلكتروني بنجاح");
|
||||
define('OGP_LANG_send_item_by_email', "إرسال العنصر (العناصر) عن طريق البريد الإلكتروني");
|
||||
define('OGP_LANG_subject', "الموضوع");
|
||||
define('OGP_LANG_message', "الرسالة");
|
||||
define('OGP_LANG_dest_email', "البريد الإلكتروني المقصود");
|
||||
define('OGP_LANG_remove', "حذف");
|
||||
define('OGP_LANG_send_by_email', "الارسل بالبريد الإلكترونى");
|
||||
define('OGP_LANG_send_by_email_info', "لإرسال الملفات يجب تثبيت الحزمة 'mutt' على جميع الوكيلات المتوفرة.");
|
||||
define('OGP_LANG_settings_updated', "تم تحديث الإعدادات");
|
||||
define('OGP_LANG_update_settings', "تحديث الإعدادات");
|
||||
define('LANG_dir_not_found', "لم يتم العثور على الدليل '%s' من الخادم.");
|
||||
define('LANG_filename', "اسم الملف");
|
||||
define('LANG_filesize', "حجم الملف");
|
||||
define('LANG_bytes', "بايت");
|
||||
define('LANG_owner', "الصاحب");
|
||||
define('LANG_group', "مجموعة");
|
||||
define('LANG_empty_directory', "الدليل فارغ.");
|
||||
define('LANG_currently_viewing', "يعرض حاليا الدليل '%s'");
|
||||
define('LANG_wrote_changes', "التغييرات تم حفظها بنجاح.");
|
||||
define('LANG_failed_write', "أخفق كتابة الملف إلى الخادم البعيد.");
|
||||
define('LANG_failed_read', "أخفق قراءة الملف من الخادم البعيد.");
|
||||
define('LANG_failed_list', "أخفق استرداد قائمة الدليل.");
|
||||
define('LANG_level_up', "^الرجوع للخلف^");
|
||||
define('LANG_unallowed_char', "تم العثور على أحرف غير مسموح بها من المسار.");
|
||||
define('LANG_button_edit', "[تعديل]");
|
||||
define('LANG_save', "حفظ");
|
||||
define('LANG_home_id_missing', "أي دي الصفحة مفقود.");
|
||||
define('LANG_upload', "رفع");
|
||||
define('LANG_upload_failed', "أخفق التحميل، الخطأ هو:%s.");
|
||||
define('LANG_can_not_create_upload_folder_path', "لا يمكن إنشاء مجلد رفع مسار %s");
|
||||
define('LANG_url_is_not_accesible_from_agent', " رابط %s لا يمكن الوصول إليه من الوكيل");
|
||||
define('LANG_upload_file', "رفع ملف");
|
||||
define('LANG_uncompress', "فك الضغط");
|
||||
define('LANG_create_folder', "أنشئ مجلد");
|
||||
define('LANG_create', "أنشئ");
|
||||
define('LANG_delete_item', "هل تريد حذف %s؟");
|
||||
define('LANG_upload_in_progress', "جار الرفع ...");
|
||||
define('LANG_upload_complete', "اكتمل الرفع.");
|
||||
define('LANG_chattr_yes', "قفل الملف");
|
||||
define('LANG_chattr_no', "فتح الملف");
|
||||
define('LANG_secure_item', "آمن / غير آمن %s؟");
|
||||
define('LANG_filesecure', "أمن الملفات");
|
||||
define('LANG_chattr_locked', "ملف مقفل");
|
||||
define('LANG_chattr_unlocked', "تم إلغاء قفل الملف");
|
||||
define('LANG_rename', "إعادة التسمية");
|
||||
define('LANG_move', "نقل");
|
||||
define('LANG_copy', "نسخ");
|
||||
define('LANG_compress', "ضغط");
|
||||
define('LANG_create_file', "إنشاء ملف");
|
||||
define('LANG_select_at_least_one_item', "حدد عنصرا واحدا على الأقل");
|
||||
define('LANG_rename_item', "إعادة تسمية العنصر (العناصر)");
|
||||
define('LANG_move_item', "نقل العنصر (العناصر)");
|
||||
define('LANG_copy_item', "نسخ العنصر (العناصر)");
|
||||
define('LANG_compress_item', "ضغط العنصر (العناصر)");
|
||||
define('LANG_uncompress_item', "فك ضغط العنصر (العناصر)");
|
||||
define('LANG_archive_name', "اسم الأرشيف");
|
||||
define('LANG_archive_type', "نوع الأرشيف");
|
||||
define('LANG_file_name', "اسم الملف");
|
||||
define('LANG_folder_name', "اسم المجلد");
|
||||
define('LANG_compresses_files_separately', "يضغط الملفات بشكل منفصل");
|
||||
define('LANG_to', "إلى");
|
||||
define('LANG_upload_to_web', "الرفع إلى الويب");
|
||||
define('LANG_transfer_to_server', "النقل إلى الخادم");
|
||||
define('LANG_mail_sent_successfully', "تم إرسال البريد الإلكتروني بنجاح");
|
||||
define('LANG_send_item_by_email', "إرسال العنصر (العناصر) عن طريق البريد الإلكتروني");
|
||||
define('LANG_subject', "الموضوع");
|
||||
define('LANG_message', "الرسالة");
|
||||
define('LANG_dest_email', "البريد الإلكتروني المقصود");
|
||||
define('LANG_remove', "حذف");
|
||||
define('LANG_send_by_email', "الارسل بالبريد الإلكترونى");
|
||||
define('LANG_send_by_email_info', "لإرسال الملفات يجب تثبيت الحزمة 'mutt' على جميع الوكيلات المتوفرة.");
|
||||
define('LANG_settings_updated', "تم تحديث الإعدادات");
|
||||
define('LANG_update_settings', "تحديث الإعدادات");
|
||||
?>
|
||||
|
|
@ -22,23 +22,23 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_recover', "استرداد كلمة مرور منسية");
|
||||
define('OGP_LANG_back', "رجوع");
|
||||
define('OGP_LANG_incomplete', "يرجى العودة وإكمال كافة الحقول في النموذج.");
|
||||
define('OGP_LANG_subject', "طلب كلمة مرور");
|
||||
define('OGP_LANG_password_message', "مرحبا <br> <br> تمت إعادة تعيين كلمة المرور بنجاح.<br> <br>كلمة السر الجديدة: %s <br> <br> تذكر تغيير كلمة المرور الخاصة بك في كثير من الأحيان.<br> <br>رجاءا لا ترد على هذا الأيميل!<br> <br>______________________________<br> Black Market Servers");
|
||||
define('OGP_LANG_send', "تم إرسال كلمة المرور الخاصة بك! الرجاء التحقق من البريد الإلكتروني الخاص بك!");
|
||||
define('OGP_LANG_here', "هنا");
|
||||
define('OGP_LANG_to_login', "لتسجيل الدخول");
|
||||
define('OGP_LANG_errormail', "عنوان البريد الإلكتروني الخاص بك غير صحيح.");
|
||||
define('OGP_LANG_submit', "إرسال");
|
||||
define('OGP_LANG_click', "انقر");
|
||||
define('OGP_LANG_mail_settings_missing', "إعدادات البريد الخاصة باللوحة غير كاملة بحيث لا يمكن إرسال كلمة المرور. اتصل بمشرف OGP.");
|
||||
define('OGP_LANG_mail_failed', "أخفق إرسال البريد الإلكتروني.");
|
||||
define('OGP_LANG_email', "البريد الإلكتروني");
|
||||
define('OGP_LANG_enter_email', "الرجاء إدخال عنوان البريد الإلكتروني الخاص بك");
|
||||
define('OGP_LANG_webmaster', "المسؤول عن الموقع");
|
||||
define('OGP_LANG_confirm_send', "لأسباب أمنية، أرسلنا لك رابط تأكيد قبل إعادة تشغيل كلمة المرور.<br><b style='color:red;'>يرجى التحقق من البريد الوارد الخاص بك.</b>");
|
||||
define('OGP_LANG_confirm_change_subject', "إعادة تعيين كلمة المرور، تأكيد البريد الإلكتروني");
|
||||
define('OGP_LANG_confirm_change_password_message', "مرحبا،<br><br>يرجى النقر على الرابط أدناه لإعادة تعيين كلمة المرور:<br><br>%s<br><br>ملاحظة: إذا لم تكن قد طلبت إعادة تعيين كلمة المرور، فيمكنك تجاهل هذه الرسالة الإلكترونية.<br><br>رجاءا لا ترد على هذا الأيميل!<br><br>______________________________<br>Black Market Servers");
|
||||
define('LANG_recover', "استرداد كلمة مرور منسية");
|
||||
define('LANG_back', "رجوع");
|
||||
define('LANG_incomplete', "يرجى العودة وإكمال كافة الحقول في النموذج.");
|
||||
define('LANG_subject', "طلب كلمة مرور");
|
||||
define('LANG_password_message', "مرحبا <br> <br> تمت إعادة تعيين كلمة المرور بنجاح.<br> <br>كلمة السر الجديدة: %s <br> <br> تذكر تغيير كلمة المرور الخاصة بك في كثير من الأحيان.<br> <br>رجاءا لا ترد على هذا الأيميل!<br> <br>______________________________<br> Black Market Servers");
|
||||
define('LANG_send', "تم إرسال كلمة المرور الخاصة بك! الرجاء التحقق من البريد الإلكتروني الخاص بك!");
|
||||
define('LANG_here', "هنا");
|
||||
define('LANG_to_login', "لتسجيل الدخول");
|
||||
define('LANG_errormail', "عنوان البريد الإلكتروني الخاص بك غير صحيح.");
|
||||
define('LANG_submit', "إرسال");
|
||||
define('LANG_click', "انقر");
|
||||
define('LANG_mail_settings_missing', "إعدادات البريد الخاصة باللوحة غير كاملة بحيث لا يمكن إرسال كلمة المرور. اتصل بمشرف OGP.");
|
||||
define('LANG_mail_failed', "أخفق إرسال البريد الإلكتروني.");
|
||||
define('LANG_email', "البريد الإلكتروني");
|
||||
define('LANG_enter_email', "الرجاء إدخال عنوان البريد الإلكتروني الخاص بك");
|
||||
define('LANG_webmaster', "المسؤول عن الموقع");
|
||||
define('LANG_confirm_send', "لأسباب أمنية، أرسلنا لك رابط تأكيد قبل إعادة تشغيل كلمة المرور.<br><b style='color:red;'>يرجى التحقق من البريد الوارد الخاص بك.</b>");
|
||||
define('LANG_confirm_change_subject', "إعادة تعيين كلمة المرور، تأكيد البريد الإلكتروني");
|
||||
define('LANG_confirm_change_password_message', "مرحبا،<br><br>يرجى النقر على الرابط أدناه لإعادة تعيين كلمة المرور:<br><br>%s<br><br>ملاحظة: إذا لم تكن قد طلبت إعادة تعيين كلمة المرور، فيمكنك تجاهل هذه الرسالة الإلكترونية.<br><br>رجاءا لا ترد على هذا الأيميل!<br><br>______________________________<br>Black Market Servers");
|
||||
?>
|
||||
|
|
@ -22,35 +22,35 @@
|
|||
*
|
||||
*/
|
||||
|
||||
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', "ميزة التثبيت / إلغاء التثبيت ليست كاملة وقد لا تعمل بشكل صحيح. تحذير: قد يحدث فقدان البيانات في قاعدة بيانات أوغب!");
|
||||
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 أن يتم تثبيتها.");
|
||||
define('LANG_module_id', "أي دي الوحدة");
|
||||
define('LANG_module_name', "إسم الوحدة");
|
||||
define('LANG_module_folder', "ملف الوحدة");
|
||||
define('LANG_module_version', "إصدار الوحدة");
|
||||
define('LANG_db_version', "إصدار قاعدة البيانات");
|
||||
define('LANG_modules_available_for_install', "الوحدات المخصصة المتاحة للتثبيت:");
|
||||
define('LANG_install', "التثبت");
|
||||
define('LANG_uninstall', "الغاء التثبيت");
|
||||
define('LANG_modules', "الوحدات");
|
||||
define('LANG_update_modules', "تحديث الوحدات");
|
||||
define('LANG_no_installed_modules', "لم يتم العثور على وحدات مثبتة.");
|
||||
define('LANG_not_complete', "ميزة التثبيت / إلغاء التثبيت ليست كاملة وقد لا تعمل بشكل صحيح. تحذير: قد يحدث فقدان البيانات في قاعدة بيانات أوغب!");
|
||||
define('LANG_core_mods_installed', "الوحدات الأساسية المثبتة:");
|
||||
define('LANG_custom_mods_installed', "الوحدات المخصصة المثبتة:");
|
||||
define('LANG_installing_module', "تثبيت وحدة '%s'");
|
||||
define('LANG_successfully_installed_module', "تم تثبيت الوحدة %s بنجاح.");
|
||||
define('LANG_failed_to_install_module', "أخفق تثبيت الوحدة %s.");
|
||||
define('LANG_adding_module', "إضافة وحدة تسمى'%s'.");
|
||||
define('LANG_module_already_installed', "الوحدة التي تسمى '%s' مثبتة بالفعل.");
|
||||
define('LANG_uninstalling_module', "إلغاء تثبيت الوحدة '%s'");
|
||||
define('LANG_successfully_uninstalled_module', "تم إلغاء تثبيت الوحدة %s بنجاح.");
|
||||
define('LANG_failed_to_uninstall_module', "أخفقت إزالة الوحدة %s.");
|
||||
define('LANG_module_file_missing', "الدليل مفقود في ملف module.php.");
|
||||
define('LANG_module_file_missing_info', "يفتقد المعلومات المطلوبة.");
|
||||
define('LANG_query_failed', "أخفق تنفيذ طلب الquery");
|
||||
define('LANG_query_failed_2', "إلى قاعدة البيانات.");
|
||||
define('LANG_failed_del_db', "أخفق حذف الوحدة من قاعدة البيانات.");
|
||||
define('LANG_updated_module', "الوحدة المحدثة: '%s'.");
|
||||
define('LANG_updating_modules', "تحديث الوحدات");
|
||||
define('LANG_updating_finished', "تم الانتهاء من التحديث");
|
||||
define('LANG_prereqs_missing', "المتطلبات الأساسية ل%s يجب أن يتم تثبيتها على الخادم قبل %s أن يتم تثبيتها.");
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -22,94 +22,94 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_configured_mysql_hosts', "Configured MySQL Hosts");
|
||||
define('OGP_LANG_add_new_mysql_host', "إضافة مضيف ميسكل");
|
||||
define('OGP_LANG_enter_mysql_ip', "تفعيل ايبي ميسكل.");
|
||||
define('OGP_LANG_enter_valid_port', "أدخل بورت صالح.");
|
||||
define('OGP_LANG_enter_mysql_root_password', "أدخل كلمة مرور روت الميسكل.");
|
||||
define('OGP_LANG_enter_mysql_name', "أدخل إسم الميسكل.");
|
||||
define('OGP_LANG_could_not_add_mysql_server', "تعذر إضافة خادم ميسكل.");
|
||||
define('OGP_LANG_game_server_name_info', "Server name helps users to identify their servers.");
|
||||
define('OGP_LANG_note_mysql_host', "Note: Using a 'Direct connection' the server must accept external connections so the servers can connect remotely, whereas connecting through a remote server it will be used just as a local connection.");
|
||||
define('OGP_LANG_direct_connection', "اتصال مباشر");
|
||||
define('OGP_LANG_connection_through_remote_server_named', "Connection through remote server named %s");
|
||||
define('OGP_LANG_add_mysql_server', "إضافة سيرفر ميسكل");
|
||||
define('OGP_LANG_mysql_online', "ميسكل متصل");
|
||||
define('OGP_LANG_mysql_offline', "ميسكل غير-متصل");
|
||||
define('OGP_LANG_encryption_key_mismatch', "عدم تطابق مفتاح التشفير");
|
||||
define('OGP_LANG_unknown_error', "خطأ غير معروف");
|
||||
define('OGP_LANG_remove', "حذف");
|
||||
define('OGP_LANG_assign_db', "تعيين قاعدة البيانات");
|
||||
define('OGP_LANG_mysql_server_name', "اسم سيرفر ميسكل");
|
||||
define('OGP_LANG_server_status', "حالة السيرفر");
|
||||
define('OGP_LANG_mysql_ip_port', "ميسكل أيبي:بورت");
|
||||
define('OGP_LANG_mysql_root_passwd', "كلمة مرور روت الميسكل");
|
||||
define('OGP_LANG_connection_method', "Connection method");
|
||||
define('OGP_LANG_user_privilegies', "User privileges");
|
||||
define('OGP_LANG_current_dbs', "Current databases");
|
||||
define('OGP_LANG_mysql_name', "MySQL server name");
|
||||
define('OGP_LANG_mysql_ip', "MySQL IP");
|
||||
define('OGP_LANG_mysql_port', "MySQL port");
|
||||
define('OGP_LANG_privilegies', "privileges");
|
||||
define('OGP_LANG_all', "All");
|
||||
define('OGP_LANG_custom', "Custom");
|
||||
define('OGP_LANG_server_added', "Server added.");
|
||||
define('OGP_LANG_sql_alter', "ALTER");
|
||||
define('OGP_LANG_sql_create', "CREATE");
|
||||
define('OGP_LANG_sql_create_temporary_tables', "CREATE TEMPORARY TABLES");
|
||||
define('OGP_LANG_sql_drop', "DROP");
|
||||
define('OGP_LANG_sql_index', "INDEX");
|
||||
define('OGP_LANG_sql_insert', "INSERT");
|
||||
define('OGP_LANG_sql_lock_tables', "LOCK TABLES");
|
||||
define('OGP_LANG_sql_select', "SELECT");
|
||||
define('OGP_LANG_sql_grant_option', "GRANT OPTION");
|
||||
define('OGP_LANG_sql_update', "UPDATE");
|
||||
define('OGP_LANG_sql_delete', "DELETE");
|
||||
define('OGP_LANG_sql_alter_info', "<b>Enables use of ALTER TABLE.</b>");
|
||||
define('OGP_LANG_sql_create_info', "<b>Enables use of CREATE TABLE.</b>");
|
||||
define('OGP_LANG_sql_create_temporary_tables_info', "<b>Enables use of CREATE TEMPORARY TABLE.</b>");
|
||||
define('OGP_LANG_sql_delete_info', "<b>Enables use of DELETE.</b>");
|
||||
define('OGP_LANG_sql_drop_info', "<b>Enables use of DROP TABLE.</b>");
|
||||
define('OGP_LANG_sql_index_info', "<b>Enables use of CREATE INDEX and DROP INDEX.</b>");
|
||||
define('OGP_LANG_sql_insert_info', "<b>Enables use of INSERT.</b>");
|
||||
define('OGP_LANG_sql_lock_tables_info', "<b>Enables use of LOCK TABLES on tables for which you have the SELECT privilege.</b>");
|
||||
define('OGP_LANG_sql_select_info', "<b>Enables use of SELECT.</b>");
|
||||
define('OGP_LANG_sql_update_info', "<b>Enables use of UPDATE.</b>");
|
||||
define('OGP_LANG_sql_grant_option_info', "<b>Enables privileges to be granted.</b>");
|
||||
define('OGP_LANG_select_game_server', "Select game server");
|
||||
define('OGP_LANG_invalid_mysql_server_id', "Invalid MySQL server ID.");
|
||||
define('OGP_LANG_there_is_another_db_named_or_user_named', "There is another database named <b>%s</b> or another user named <b>%s</b>.");
|
||||
define('OGP_LANG_db_added_for_home_id', "Added database for home ID <b>%s</b>.");
|
||||
define('OGP_LANG_could_not_remove_db', "The selected database could not be removed.");
|
||||
define('OGP_LANG_db_removed_successfully_from_mysql_server_named', "The database was removed from server %s.");
|
||||
define('OGP_LANG_areyousure_remove_mysql_server', "Are you sure that you want remove MySQL server named <b>%s</b>?");
|
||||
define('OGP_LANG_db_changed_successfully', "The database named %s was changed successfully.");
|
||||
define('OGP_LANG_error_while_remove', "Error while remove.");
|
||||
define('OGP_LANG_mysql_server_removed', "MySQL server named <b>%s</b> has been removed successfully.");
|
||||
define('OGP_LANG_unable_to_set_changes_to', "Unable to set changes to MySQL server named <b>%s</b>.");
|
||||
define('OGP_LANG_mysql_server_settings_changed', "MySQL server named <b>%s</b> has been changed successfully.");
|
||||
define('OGP_LANG_editing_mysql_server', "Editing MySQL server named <b>%s</b>.");
|
||||
define('OGP_LANG_save_settings', "Save settings");
|
||||
define('OGP_LANG_mysql_dbs_for', "Databases for server %s");
|
||||
define('OGP_LANG_edit_dbs', "Edit databases");
|
||||
define('OGP_LANG_edit_db_settings', "Edit database settings");
|
||||
define('OGP_LANG_remove_db', "Remove database");
|
||||
define('OGP_LANG_save_db_changes', "Save database changes.");
|
||||
define('OGP_LANG_add_db', "Add database");
|
||||
define('OGP_LANG_select_db', "Select database");
|
||||
define('OGP_LANG_db_user', "DB User");
|
||||
define('OGP_LANG_db_passwd', "DB Password");
|
||||
define('OGP_LANG_db_name', "DB name");
|
||||
define('OGP_LANG_enabled', "Enabled");
|
||||
define('OGP_LANG_game_server', "Game server");
|
||||
define('OGP_LANG_there_are_no_databases_assigned_for', "There are no databases assigned for <b>%s</b>.");
|
||||
define('OGP_LANG_unable_to_connect_to_mysql_server_as', "Unable to connect to MySQL server as %s.");
|
||||
define('OGP_LANG_unable_to_create_db', "Unable to create database.");
|
||||
define('OGP_LANG_unable_to_select_db', "Unable to select database %s.");
|
||||
define('OGP_LANG_db_info', "Database Information");
|
||||
define('OGP_LANG_db_tables', "Database tables");
|
||||
define('OGP_LANG_db_backup', "DB Backup");
|
||||
define('OGP_LANG_download_db_backup', "Download DB Backup");
|
||||
define('OGP_LANG_restore_db_backup', "Restore DB Backup");
|
||||
define('OGP_LANG_sql_file', "file(.sql)");
|
||||
define('LANG_configured_mysql_hosts', "Configured MySQL Hosts");
|
||||
define('LANG_add_new_mysql_host', "إضافة مضيف ميسكل");
|
||||
define('LANG_enter_mysql_ip', "تفعيل ايبي ميسكل.");
|
||||
define('LANG_enter_valid_port', "أدخل بورت صالح.");
|
||||
define('LANG_enter_mysql_root_password', "أدخل كلمة مرور روت الميسكل.");
|
||||
define('LANG_enter_mysql_name', "أدخل إسم الميسكل.");
|
||||
define('LANG_could_not_add_mysql_server', "تعذر إضافة خادم ميسكل.");
|
||||
define('LANG_game_server_name_info', "Server name helps users to identify their servers.");
|
||||
define('LANG_note_mysql_host', "Note: Using a 'Direct connection' the server must accept external connections so the servers can connect remotely, whereas connecting through a remote server it will be used just as a local connection.");
|
||||
define('LANG_direct_connection', "اتصال مباشر");
|
||||
define('LANG_connection_through_remote_server_named', "Connection through remote server named %s");
|
||||
define('LANG_add_mysql_server', "إضافة سيرفر ميسكل");
|
||||
define('LANG_mysql_online', "ميسكل متصل");
|
||||
define('LANG_mysql_offline', "ميسكل غير-متصل");
|
||||
define('LANG_encryption_key_mismatch', "عدم تطابق مفتاح التشفير");
|
||||
define('LANG_unknown_error', "خطأ غير معروف");
|
||||
define('LANG_remove', "حذف");
|
||||
define('LANG_assign_db', "تعيين قاعدة البيانات");
|
||||
define('LANG_mysql_server_name', "اسم سيرفر ميسكل");
|
||||
define('LANG_server_status', "حالة السيرفر");
|
||||
define('LANG_mysql_ip_port', "ميسكل أيبي:بورت");
|
||||
define('LANG_mysql_root_passwd', "كلمة مرور روت الميسكل");
|
||||
define('LANG_connection_method', "Connection method");
|
||||
define('LANG_user_privilegies', "User privileges");
|
||||
define('LANG_current_dbs', "Current databases");
|
||||
define('LANG_mysql_name', "MySQL server name");
|
||||
define('LANG_mysql_ip', "MySQL IP");
|
||||
define('LANG_mysql_port', "MySQL port");
|
||||
define('LANG_privilegies', "privileges");
|
||||
define('LANG_all', "All");
|
||||
define('LANG_custom', "Custom");
|
||||
define('LANG_server_added', "Server added.");
|
||||
define('LANG_sql_alter', "ALTER");
|
||||
define('LANG_sql_create', "CREATE");
|
||||
define('LANG_sql_create_temporary_tables', "CREATE TEMPORARY TABLES");
|
||||
define('LANG_sql_drop', "DROP");
|
||||
define('LANG_sql_index', "INDEX");
|
||||
define('LANG_sql_insert', "INSERT");
|
||||
define('LANG_sql_lock_tables', "LOCK TABLES");
|
||||
define('LANG_sql_select', "SELECT");
|
||||
define('LANG_sql_grant_option', "GRANT OPTION");
|
||||
define('LANG_sql_update', "UPDATE");
|
||||
define('LANG_sql_delete', "DELETE");
|
||||
define('LANG_sql_alter_info', "<b>Enables use of ALTER TABLE.</b>");
|
||||
define('LANG_sql_create_info', "<b>Enables use of CREATE TABLE.</b>");
|
||||
define('LANG_sql_create_temporary_tables_info', "<b>Enables use of CREATE TEMPORARY TABLE.</b>");
|
||||
define('LANG_sql_delete_info', "<b>Enables use of DELETE.</b>");
|
||||
define('LANG_sql_drop_info', "<b>Enables use of DROP TABLE.</b>");
|
||||
define('LANG_sql_index_info', "<b>Enables use of CREATE INDEX and DROP INDEX.</b>");
|
||||
define('LANG_sql_insert_info', "<b>Enables use of INSERT.</b>");
|
||||
define('LANG_sql_lock_tables_info', "<b>Enables use of LOCK TABLES on tables for which you have the SELECT privilege.</b>");
|
||||
define('LANG_sql_select_info', "<b>Enables use of SELECT.</b>");
|
||||
define('LANG_sql_update_info', "<b>Enables use of UPDATE.</b>");
|
||||
define('LANG_sql_grant_option_info', "<b>Enables privileges to be granted.</b>");
|
||||
define('LANG_select_game_server', "Select game server");
|
||||
define('LANG_invalid_mysql_server_id', "Invalid MySQL server ID.");
|
||||
define('LANG_there_is_another_db_named_or_user_named', "There is another database named <b>%s</b> or another user named <b>%s</b>.");
|
||||
define('LANG_db_added_for_home_id', "Added database for home ID <b>%s</b>.");
|
||||
define('LANG_could_not_remove_db', "The selected database could not be removed.");
|
||||
define('LANG_db_removed_successfully_from_mysql_server_named', "The database was removed from server %s.");
|
||||
define('LANG_areyousure_remove_mysql_server', "Are you sure that you want remove MySQL server named <b>%s</b>?");
|
||||
define('LANG_db_changed_successfully', "The database named %s was changed successfully.");
|
||||
define('LANG_error_while_remove', "Error while remove.");
|
||||
define('LANG_mysql_server_removed', "MySQL server named <b>%s</b> has been removed successfully.");
|
||||
define('LANG_unable_to_set_changes_to', "Unable to set changes to MySQL server named <b>%s</b>.");
|
||||
define('LANG_mysql_server_settings_changed', "MySQL server named <b>%s</b> has been changed successfully.");
|
||||
define('LANG_editing_mysql_server', "Editing MySQL server named <b>%s</b>.");
|
||||
define('LANG_save_settings', "Save settings");
|
||||
define('LANG_mysql_dbs_for', "Databases for server %s");
|
||||
define('LANG_edit_dbs', "Edit databases");
|
||||
define('LANG_edit_db_settings', "Edit database settings");
|
||||
define('LANG_remove_db', "Remove database");
|
||||
define('LANG_save_db_changes', "Save database changes.");
|
||||
define('LANG_add_db', "Add database");
|
||||
define('LANG_select_db', "Select database");
|
||||
define('LANG_db_user', "DB User");
|
||||
define('LANG_db_passwd', "DB Password");
|
||||
define('LANG_db_name', "DB name");
|
||||
define('LANG_enabled', "Enabled");
|
||||
define('LANG_game_server', "Game server");
|
||||
define('LANG_there_are_no_databases_assigned_for', "There are no databases assigned for <b>%s</b>.");
|
||||
define('LANG_unable_to_connect_to_mysql_server_as', "Unable to connect to MySQL server as %s.");
|
||||
define('LANG_unable_to_create_db', "Unable to create database.");
|
||||
define('LANG_unable_to_select_db', "Unable to select database %s.");
|
||||
define('LANG_db_info', "Database Information");
|
||||
define('LANG_db_tables', "Database tables");
|
||||
define('LANG_db_backup', "DB Backup");
|
||||
define('LANG_download_db_backup', "Download DB Backup");
|
||||
define('LANG_restore_db_backup', "Restore DB Backup");
|
||||
define('LANG_sql_file', "file(.sql)");
|
||||
?>
|
||||
|
|
@ -22,77 +22,77 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_manage_listings', "إدارة الأخبار الخاصة بك");
|
||||
define('OGP_LANG_add_new_listing', "آخر الأخبار");
|
||||
define('OGP_LANG_your_current_listings', "الأخبار الحالية");
|
||||
define('OGP_LANG_edit', "تعديل");
|
||||
define('OGP_LANG_date', "تاريخ");
|
||||
define('OGP_LANG_images', "صور");
|
||||
define('OGP_LANG_title', "عنوان");
|
||||
define('OGP_LANG_description', "أخبار المحتوى");
|
||||
define('OGP_LANG_written_by', "كتب بواسطة");
|
||||
define('OGP_LANG_details', "اقرأ المزيد");
|
||||
define('OGP_LANG_modify', "تعديل");
|
||||
define('OGP_LANG_save', "حفظ");
|
||||
define('OGP_LANG_delete', "حذف");
|
||||
define('OGP_LANG_sure_to_delete', "هل تريد بالتأكيد حذف هذه الأخبار؟");
|
||||
define('OGP_LANG_go_back', "إرجع");
|
||||
define('OGP_LANG_new_added_success', "تم نشر الأخبار بنجاح!");
|
||||
define('OGP_LANG_add_another', "إضافة عنصر آخر");
|
||||
define('OGP_LANG_or_message', "أو");
|
||||
define('OGP_LANG_please_select', "الرجاء الاختيار");
|
||||
define('OGP_LANG_submit', "تأكيد");
|
||||
define('OGP_LANG_edit_listing', "تعديل الأخبار");
|
||||
define('OGP_LANG_modifications_saved', "تم حفظ القيم الجديدة بنجاح!");
|
||||
define('OGP_LANG_modify_images', "تعديل صور المقال الجديدة");
|
||||
define('OGP_LANG_upload_more_images', "رفع المزيد من الصور");
|
||||
define('OGP_LANG_latest_news', "اخر الأخبار");
|
||||
define('OGP_LANG_search_results', "بحث");
|
||||
define('OGP_LANG_no_results', "لم يتم العثور على الاخبار");
|
||||
define('OGP_LANG_config_options', "اعدادات جديده");
|
||||
define('OGP_LANG_date_format', "تنسيق التاريخ");
|
||||
define('OGP_LANG_results_per_page', "أخبار لكل صفحة");
|
||||
define('OGP_LANG_enable_search', "تفعيل خاصيه البحث");
|
||||
define('OGP_LANG_image_quality', "جودة الصورة (0-100)");
|
||||
define('OGP_LANG_max_image_width', "الحد الأقصى لعرض الصورة (px)");
|
||||
define('OGP_LANG_gallery_theme', "صورة معرض الجلد");
|
||||
define('OGP_LANG_images_bottom', "موقف معرض الصور");
|
||||
define('OGP_LANG_img_bottom', "تحت المقال");
|
||||
define('OGP_LANG_img_right', "الجانب الأيمن من المقال");
|
||||
define('OGP_LANG_no_word', "لا");
|
||||
define('OGP_LANG_yes_word', "نعم");
|
||||
define('OGP_LANG_no_access', "ليس لديك الحق في الوصول إلى هذه الصفحة. سيتم تسجيل الإجراء الخاص بك لمزيد من التفتيش.");
|
||||
define('OGP_LANG_write_permission_required', "إذن الكتابة مطلوب");
|
||||
define('OGP_LANG_fix_permission', "الرجاء إصلاح الأذونات. لن تعمل الوحدة النمطية كما هو مقصود حتى تقوم بإصلاح كافة الأذونات.");
|
||||
define('OGP_LANG_check_permissions', "التحقق من صلاحيات الملفات");
|
||||
define('OGP_LANG_permission_ok', "جميع الصلاحيات صحيحه!");
|
||||
define('OGP_LANG_empty_title', "يرجى ملء العنوان");
|
||||
define('OGP_LANG_empty_description', "يرجى ملء المحتوى");
|
||||
define('OGP_LANG_empty_author', "يرجى ملء إسم المؤلف");
|
||||
define('OGP_LANG_gd_fail', "لم يتم تحميل ملحق GD على الخادم الخاص بك. تم تعطيل رفع الصور.");
|
||||
define('OGP_LANG_search_news', "البحث عن الاخبار");
|
||||
define('OGP_LANG_help', "مساعده");
|
||||
define('OGP_LANG_help_date', "احصل على مساعدة بخصوص تنسيق مختلف للتاريخ");
|
||||
define('OGP_LANG_id_invalid', "معرف الأخبار غير موجود");
|
||||
define('OGP_LANG_id_not_set', "لم يتم تعيين معرف الأخبار");
|
||||
define('OGP_LANG_unauthorized_access', "وصول غير مصرح به من");
|
||||
define('OGP_LANG_wysiwyg', "محرر WYSIWYG");
|
||||
define('OGP_LANG_tinymce_lang', "لغة Tiny MCE");
|
||||
define('OGP_LANG_da', "الدانماركية");
|
||||
define('OGP_LANG_de', "الماني");
|
||||
define('OGP_LANG_en_GB', "انجليزي");
|
||||
define('OGP_LANG_es', "الأسبانية");
|
||||
define('OGP_LANG_fi', "الفنلندية");
|
||||
define('OGP_LANG_fr_FR', "فرنسي");
|
||||
define('OGP_LANG_it', "ايطالي");
|
||||
define('OGP_LANG_pl', "البولندية");
|
||||
define('OGP_LANG_pt_PT', "البرتغالية");
|
||||
define('OGP_LANG_ru', "روسي");
|
||||
define('OGP_LANG_tinymce_skin', "جلد Tiny MCE");
|
||||
define('OGP_LANG_tinymce_skin_custom', "أنت بالتأكيد بحاجة إلى رفع القالب المخصص بك في <b>http://modules/news/js/tinymce/skins/custom/</b> مجلد لتكون قادرة على استخدام هذا القالب. إذا قمت بتحديده دون القيام بذلك ، فستواجه مشاكل. قم بإنشاء القالب المخصص بك هنا <a href='http://skin.tinymce.com/' target='_blank'>2http://skin.tinymce.com/</a>");
|
||||
define('OGP_LANG_safe_HTML', "مطهر HTML");
|
||||
define('OGP_LANG_safe_HTML_en', "مطهر HTML مفعل");
|
||||
define('OGP_LANG_safe_HTML_dis', "مطهر HTML معطل");
|
||||
define('OGP_LANG_safe_HTML_en_info', "سيتم تنقية محتوى HTML للمقال في العرض التفصيلي. سيؤدي هذا إلى إزالة بعض علامات HTML مثل iframes. قم بتعديل الملف <b>1modules/news/config.php1</b> لتغيير الإعداد 'safe_HTML' من القيمة '1' (شغال) إلى القيمة \"0\" (معطل) لتعطيل هذا السلوك والسماح باستخدام HTML الكامل بدون قيود.");
|
||||
define('OGP_LANG_safe_HTML_dis_info', "لن يتم تنقية محتوى HTML للمقال في العرض التفصيلي. قم بتحرير ملف <b>modules/news/config.php</b> لتغيير الإعداد 'safe_HTML' من القيمة '0' (معطلة) إلى القيمة '1' (فعّالة) لتمكين استخدام علامات HTML الآمنة فقط.");
|
||||
define('LANG_manage_listings', "إدارة الأخبار الخاصة بك");
|
||||
define('LANG_add_new_listing', "آخر الأخبار");
|
||||
define('LANG_your_current_listings', "الأخبار الحالية");
|
||||
define('LANG_edit', "تعديل");
|
||||
define('LANG_date', "تاريخ");
|
||||
define('LANG_images', "صور");
|
||||
define('LANG_title', "عنوان");
|
||||
define('LANG_description', "أخبار المحتوى");
|
||||
define('LANG_written_by', "كتب بواسطة");
|
||||
define('LANG_details', "اقرأ المزيد");
|
||||
define('LANG_modify', "تعديل");
|
||||
define('LANG_save', "حفظ");
|
||||
define('LANG_delete', "حذف");
|
||||
define('LANG_sure_to_delete', "هل تريد بالتأكيد حذف هذه الأخبار؟");
|
||||
define('LANG_go_back', "إرجع");
|
||||
define('LANG_new_added_success', "تم نشر الأخبار بنجاح!");
|
||||
define('LANG_add_another', "إضافة عنصر آخر");
|
||||
define('LANG_or_message', "أو");
|
||||
define('LANG_please_select', "الرجاء الاختيار");
|
||||
define('LANG_submit', "تأكيد");
|
||||
define('LANG_edit_listing', "تعديل الأخبار");
|
||||
define('LANG_modifications_saved', "تم حفظ القيم الجديدة بنجاح!");
|
||||
define('LANG_modify_images', "تعديل صور المقال الجديدة");
|
||||
define('LANG_upload_more_images', "رفع المزيد من الصور");
|
||||
define('LANG_latest_news', "اخر الأخبار");
|
||||
define('LANG_search_results', "بحث");
|
||||
define('LANG_no_results', "لم يتم العثور على الاخبار");
|
||||
define('LANG_config_options', "اعدادات جديده");
|
||||
define('LANG_date_format', "تنسيق التاريخ");
|
||||
define('LANG_results_per_page', "أخبار لكل صفحة");
|
||||
define('LANG_enable_search', "تفعيل خاصيه البحث");
|
||||
define('LANG_image_quality', "جودة الصورة (0-100)");
|
||||
define('LANG_max_image_width', "الحد الأقصى لعرض الصورة (px)");
|
||||
define('LANG_gallery_theme', "صورة معرض الجلد");
|
||||
define('LANG_images_bottom', "موقف معرض الصور");
|
||||
define('LANG_img_bottom', "تحت المقال");
|
||||
define('LANG_img_right', "الجانب الأيمن من المقال");
|
||||
define('LANG_no_word', "لا");
|
||||
define('LANG_yes_word', "نعم");
|
||||
define('LANG_no_access', "ليس لديك الحق في الوصول إلى هذه الصفحة. سيتم تسجيل الإجراء الخاص بك لمزيد من التفتيش.");
|
||||
define('LANG_write_permission_required', "إذن الكتابة مطلوب");
|
||||
define('LANG_fix_permission', "الرجاء إصلاح الأذونات. لن تعمل الوحدة النمطية كما هو مقصود حتى تقوم بإصلاح كافة الأذونات.");
|
||||
define('LANG_check_permissions', "التحقق من صلاحيات الملفات");
|
||||
define('LANG_permission_ok', "جميع الصلاحيات صحيحه!");
|
||||
define('LANG_empty_title', "يرجى ملء العنوان");
|
||||
define('LANG_empty_description', "يرجى ملء المحتوى");
|
||||
define('LANG_empty_author', "يرجى ملء إسم المؤلف");
|
||||
define('LANG_gd_fail', "لم يتم تحميل ملحق GD على الخادم الخاص بك. تم تعطيل رفع الصور.");
|
||||
define('LANG_search_news', "البحث عن الاخبار");
|
||||
define('LANG_help', "مساعده");
|
||||
define('LANG_help_date', "احصل على مساعدة بخصوص تنسيق مختلف للتاريخ");
|
||||
define('LANG_id_invalid', "معرف الأخبار غير موجود");
|
||||
define('LANG_id_not_set', "لم يتم تعيين معرف الأخبار");
|
||||
define('LANG_unauthorized_access', "وصول غير مصرح به من");
|
||||
define('LANG_wysiwyg', "محرر WYSIWYG");
|
||||
define('LANG_tinymce_lang', "لغة Tiny MCE");
|
||||
define('LANG_da', "الدانماركية");
|
||||
define('LANG_de', "الماني");
|
||||
define('LANG_en_GB', "انجليزي");
|
||||
define('LANG_es', "الأسبانية");
|
||||
define('LANG_fi', "الفنلندية");
|
||||
define('LANG_fr_FR', "فرنسي");
|
||||
define('LANG_it', "ايطالي");
|
||||
define('LANG_pl', "البولندية");
|
||||
define('LANG_pt_PT', "البرتغالية");
|
||||
define('LANG_ru', "روسي");
|
||||
define('LANG_tinymce_skin', "جلد Tiny MCE");
|
||||
define('LANG_tinymce_skin_custom', "أنت بالتأكيد بحاجة إلى رفع القالب المخصص بك في <b>http://modules/news/js/tinymce/skins/custom/</b> مجلد لتكون قادرة على استخدام هذا القالب. إذا قمت بتحديده دون القيام بذلك ، فستواجه مشاكل. قم بإنشاء القالب المخصص بك هنا <a href='http://skin.tinymce.com/' target='_blank'>2http://skin.tinymce.com/</a>");
|
||||
define('LANG_safe_HTML', "مطهر HTML");
|
||||
define('LANG_safe_HTML_en', "مطهر HTML مفعل");
|
||||
define('LANG_safe_HTML_dis', "مطهر HTML معطل");
|
||||
define('LANG_safe_HTML_en_info', "سيتم تنقية محتوى HTML للمقال في العرض التفصيلي. سيؤدي هذا إلى إزالة بعض علامات HTML مثل iframes. قم بتعديل الملف <b>1modules/news/config.php1</b> لتغيير الإعداد 'safe_HTML' من القيمة '1' (شغال) إلى القيمة \"0\" (معطل) لتعطيل هذا السلوك والسماح باستخدام HTML الكامل بدون قيود.");
|
||||
define('LANG_safe_HTML_dis_info', "لن يتم تنقية محتوى HTML للمقال في العرض التفصيلي. قم بتحرير ملف <b>modules/news/config.php</b> لتغيير الإعداد 'safe_HTML' من القيمة '0' (معطلة) إلى القيمة '1' (فعّالة) لتمكين استخدام علامات HTML الآمنة فقط.");
|
||||
?>
|
||||
|
|
@ -22,11 +22,11 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_rcon_command_title', "أوامر RCON");
|
||||
define('OGP_LANG_has_sent_to', "تم إرسالها إلى");
|
||||
define('OGP_LANG_need_set_remote_pass', "تحتاج تعيين تمريرة عن بعد");
|
||||
define('OGP_LANG_before_sending_rcon_com', "قبل إرسال rcon com");
|
||||
define('OGP_LANG_send_command', "إرسال الأمر");
|
||||
define('OGP_LANG_check-all', "تحقق من الكل");
|
||||
define('OGP_LANG_uncheck-all', "إلغاء الكل");
|
||||
define('LANG_rcon_command_title', "أوامر RCON");
|
||||
define('LANG_has_sent_to', "تم إرسالها إلى");
|
||||
define('LANG_need_set_remote_pass', "تحتاج تعيين تمريرة عن بعد");
|
||||
define('LANG_before_sending_rcon_com', "قبل إرسال rcon com");
|
||||
define('LANG_send_command', "إرسال الأمر");
|
||||
define('LANG_check-all', "تحقق من الكل");
|
||||
define('LANG_uncheck-all', "إلغاء الكل");
|
||||
?>
|
||||
|
|
@ -22,34 +22,34 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_login_name', "اسم المستخدم");
|
||||
define('OGP_LANG_users_fname', "الاسم الأول");
|
||||
define('OGP_LANG_users_lname', "الاسم الأخير");
|
||||
define('OGP_LANG_users_passwd', "كلمة المرور");
|
||||
define('OGP_LANG_users_cpasswd', "التحقق من كلمة المرور");
|
||||
define('OGP_LANG_passwd_len', "يجب أن تكون كلمة المرور أطول من 6 أحرف");
|
||||
define('OGP_LANG_err_password', "لا يمكن أن تكون كلمة المرور فارغة");
|
||||
define('OGP_LANG_err_confirm_password', "التحقق من أن حقل كلمة المرور لا يمكن أن يكون فارغا");
|
||||
define('OGP_LANG_err_password_mismatch', "كلمات المرور غير متطابقة");
|
||||
define('OGP_LANG_phone_number', "رقم الهاتف");
|
||||
define('OGP_LANG_users_email', "البريد الإلكتروني");
|
||||
define('OGP_LANG_register_a_new_user', "تسجيل مستخدم جديد");
|
||||
define('OGP_LANG_password_mismatch', "عدم تطابق كلمات المرور");
|
||||
define('OGP_LANG_confirm_password', "تأكيد كلمة المرور");
|
||||
define('OGP_LANG_successfull', "نجح");
|
||||
define('OGP_LANG_click_here', "انقر هنا");
|
||||
define('OGP_LANG_to_login', "لتسجيل الدخول.");
|
||||
define('OGP_LANG_registered_on', "مسجل في: %s.");
|
||||
define('OGP_LANG_register_message', "مرحبا،<br><br>تم إنشاء حسابك في Open Game Panel ويمكنك <a href='%s' target='_blank'>تسجيل الدخول الآن</a>.<br><br>اسم المستخدم: %s<br><br>تذكر تغيير كلمة المرور الخاصة بك في كثير من الأحيان وأول مرة تسجيل الدخول.<br><br>رجاءا لا ترد على هذا الأيميل!<br><br>______________________________<br>Black Market Servers");
|
||||
define('OGP_LANG_err_captcha', "لا يتطابق CAPTCHA.");
|
||||
define('OGP_LANG_err_login_name', "اسم المستخدم فارغ أو قيد الاستخدام.");
|
||||
define('OGP_LANG_err_first_name', "أدخل أسمك.");
|
||||
define('OGP_LANG_err_last_name', "لم يتم إدخال الاسم الأخير.");
|
||||
define('OGP_LANG_err_phone_number', "رقم الهاتف فارغ.");
|
||||
define('OGP_LANG_err_email_address', "عنوان بريد إلكتروني فارغ أو غير صحيح.");
|
||||
define('OGP_LANG_err_email_address_already_in_use_by', "عنوان البريد الإلكتروني قيد الاستخدام من قبل <b>%s</b>.");
|
||||
define('OGP_LANG_user_registration', "تسجيل المستخدم");
|
||||
define('OGP_LANG_your_account_details_has_been_sent_by_email_to', "تم إرسال تفاصيل حسابك عبر البريد الإلكتروني إلى <b>%s</b>.");
|
||||
define('OGP_LANG_account_created', "لقد تم إنشاء حسابك.");
|
||||
define('OGP_LANG_subject', "%s :: معلومات الحساب");
|
||||
define('LANG_login_name', "اسم المستخدم");
|
||||
define('LANG_users_fname', "الاسم الأول");
|
||||
define('LANG_users_lname', "الاسم الأخير");
|
||||
define('LANG_users_passwd', "كلمة المرور");
|
||||
define('LANG_users_cpasswd', "التحقق من كلمة المرور");
|
||||
define('LANG_passwd_len', "يجب أن تكون كلمة المرور أطول من 6 أحرف");
|
||||
define('LANG_err_password', "لا يمكن أن تكون كلمة المرور فارغة");
|
||||
define('LANG_err_confirm_password', "التحقق من أن حقل كلمة المرور لا يمكن أن يكون فارغا");
|
||||
define('LANG_err_password_mismatch', "كلمات المرور غير متطابقة");
|
||||
define('LANG_phone_number', "رقم الهاتف");
|
||||
define('LANG_users_email', "البريد الإلكتروني");
|
||||
define('LANG_register_a_new_user', "تسجيل مستخدم جديد");
|
||||
define('LANG_password_mismatch', "عدم تطابق كلمات المرور");
|
||||
define('LANG_confirm_password', "تأكيد كلمة المرور");
|
||||
define('LANG_successfull', "نجح");
|
||||
define('LANG_click_here', "انقر هنا");
|
||||
define('LANG_to_login', "لتسجيل الدخول.");
|
||||
define('LANG_registered_on', "مسجل في: %s.");
|
||||
define('LANG_register_message', "مرحبا،<br><br>تم إنشاء حسابك في Open Game Panel ويمكنك <a href='%s' target='_blank'>تسجيل الدخول الآن</a>.<br><br>اسم المستخدم: %s<br><br>تذكر تغيير كلمة المرور الخاصة بك في كثير من الأحيان وأول مرة تسجيل الدخول.<br><br>رجاءا لا ترد على هذا الأيميل!<br><br>______________________________<br>Black Market Servers");
|
||||
define('LANG_err_captcha', "لا يتطابق CAPTCHA.");
|
||||
define('LANG_err_login_name', "اسم المستخدم فارغ أو قيد الاستخدام.");
|
||||
define('LANG_err_first_name', "أدخل أسمك.");
|
||||
define('LANG_err_last_name', "لم يتم إدخال الاسم الأخير.");
|
||||
define('LANG_err_phone_number', "رقم الهاتف فارغ.");
|
||||
define('LANG_err_email_address', "عنوان بريد إلكتروني فارغ أو غير صحيح.");
|
||||
define('LANG_err_email_address_already_in_use_by', "عنوان البريد الإلكتروني قيد الاستخدام من قبل <b>%s</b>.");
|
||||
define('LANG_user_registration', "تسجيل المستخدم");
|
||||
define('LANG_your_account_details_has_been_sent_by_email_to', "تم إرسال تفاصيل حسابك عبر البريد الإلكتروني إلى <b>%s</b>.");
|
||||
define('LANG_account_created', "لقد تم إنشاء حسابك.");
|
||||
define('LANG_subject', "%s :: معلومات الحساب");
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -22,118 +22,118 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_add_new_remote_host', "إضافة مضيف بعيد جديد");
|
||||
define('OGP_LANG_configured_remote_hosts', "تكوين المضيف البعيد");
|
||||
define('OGP_LANG_remote_host', "المضيف البعيد");
|
||||
define('OGP_LANG_remote_host_info', "يجب أن يكون المضيف البعيد اسم مضيف قابل للتوسيع!");
|
||||
define('OGP_LANG_remote_host_port', "بورت المضيف البعيد");
|
||||
define('OGP_LANG_remote_host_port_info', "The port that is listened by the OGP Agent on remote host. Default: 12679.");
|
||||
define('OGP_LANG_remote_host_name', "إسم المضيف البعيد");
|
||||
define('OGP_LANG_ogp_user', "اسم مستخدم وكيل OGP");
|
||||
define('OGP_LANG_remote_host_name_info', "يستخدم اسم المضيف البعيد لمساعدة المستخدمين على تحديد خوادمهم.");
|
||||
define('OGP_LANG_add_remote_host', "إضافة المضيف البعيد");
|
||||
define('OGP_LANG_remote_encryption_key', "مفتاح التشفير عن بعد");
|
||||
define('OGP_LANG_remote_encryption_key_info', "يستخدم مفتاح التشفير عن بعد لتشفير البيانات بين الفريق والوكيل. يجب أن يكون هذا المفتاح نفسه في كلا الجانبين.");
|
||||
define('OGP_LANG_server_name', "إسم السيرفر");
|
||||
define('OGP_LANG_agent_ip_port', "وكيل أيبي:بورت");
|
||||
define('OGP_LANG_agent_status', "حالة الوكيل");
|
||||
define('OGP_LANG_ips', "الأيبيهات");
|
||||
define('OGP_LANG_add_more_ips', "إذا كنت ترغب في إدخال المزيد من الأيبيهات اضغط على \"تعيين الأيبي\" عندما تكون جميع الحقول ممتلئة وسوف يظهر حقل فارغ.");
|
||||
define('OGP_LANG_encryption_key_mismatch', "لا يتطابق مفتاح التشفير مع الوكيل. يرجى إعادة التحقق من تهيئة الوكيل.");
|
||||
define('OGP_LANG_no_ip_for_remote_host', "You need to add at least one (1) IP address for each remote host.");
|
||||
define('OGP_LANG_note_remote_host', "A remote host is a server where the OGP Agent is running on. Each host can have multiple number of IP addresses on which users can bind servers to.");
|
||||
define('OGP_LANG_ip_administration', "Server & IP Administration :: Open Game Panel");
|
||||
define('OGP_LANG_unknown_error', "خطأ غير معروف - تم إرجاع status_chk");
|
||||
define('OGP_LANG_remote_host_user_name', "UNIX user");
|
||||
define('OGP_LANG_remote_host_user_name_info', "Username where the Agent is running. Example: Jonhy");
|
||||
define('OGP_LANG_remote_host_ftp_ip', "أيبي الأف تي بي");
|
||||
define('OGP_LANG_remote_host_ftp_ip_info', "خادم بروتوكول نقل الملفات <b>IP</b> للوكيل الحالي.");
|
||||
define('OGP_LANG_remote_host_ftp_port', "FTP Port");
|
||||
define('OGP_LANG_remote_host_ftp_port_info', "The FTP server <b>port</b> for the current Agent.");
|
||||
define('OGP_LANG_view_log', "View Log");
|
||||
define('OGP_LANG_status', "الحالة");
|
||||
define('OGP_LANG_stop_firewall', "إيقاف جدار الحماية");
|
||||
define('OGP_LANG_start_firewall', "تشغيل جدار الحماية");
|
||||
define('OGP_LANG_seconds', "ثواني");
|
||||
define('OGP_LANG_reboot', "إعادة تشغيل سيرفر التحكم");
|
||||
define('OGP_LANG_restart', "إعادة تشغبل الوكيل");
|
||||
define('OGP_LANG_confirm_reboot', "Are you sure you want to remotely reboot the entire physical server named '%s'?");
|
||||
define('OGP_LANG_confirm_restart', "Are you sure you want to restart the Agent named '%s'?");
|
||||
define('OGP_LANG_restarting', "Restarting Agent... Please wait.");
|
||||
define('OGP_LANG_restarted', "تم إعادة تشغيل الوكيل بنجاح");
|
||||
define('OGP_LANG_reboot_success', "Server named '%s' was successfully rebooted. You will not be able to access the server until it has successfully booted.");
|
||||
define('OGP_LANG_invalid_remote_host_id', "Invalid remote host id '%s' given.");
|
||||
define('OGP_LANG_remote_host_removed', "Remote host called '%s' removed successfully.");
|
||||
define('OGP_LANG_editing_remote_server', "Editing remote server called '%s'");
|
||||
define('OGP_LANG_remote_server_settings_changed', "Changed settings for remote server '%s' successfully.");
|
||||
define('OGP_LANG_save_settings', "Save Settings");
|
||||
define('OGP_LANG_set_ips', "Set IPs");
|
||||
define('OGP_LANG_remote_ip', "Remote IP");
|
||||
define('OGP_LANG_remote_ips_for', "IPs for Game Servers To Use on Agent Server '%s'");
|
||||
define('OGP_LANG_ips_set_for_server', "IPs set for server called '%s' successfully.");
|
||||
define('OGP_LANG_could_not_remove_ip', "Could not remove old IP's from database.");
|
||||
define('OGP_LANG_could_add_ip', "Could add remote server IP to database.");
|
||||
define('OGP_LANG_areyousure_removeagent', "Are you sure you want to remove the Agent called");
|
||||
define('OGP_LANG_areyousure_removeagent2', "and all the homes related to it from the ogp database?");
|
||||
define('OGP_LANG_error_while_remove', "Error occurred while removing remote server.");
|
||||
define('OGP_LANG_add_ip', "Add IP");
|
||||
define('OGP_LANG_remove_ip', "Remove IP");
|
||||
define('OGP_LANG_edit_ip', "Edit IP");
|
||||
define('OGP_LANG_wrote_changes', "Changes saved successfully.");
|
||||
define('OGP_LANG_there_are_servers_running_on_this_ip', "There are servers running on this IP address.");
|
||||
define('OGP_LANG_enter_ip_host', "You must enter IP for the remote host.");
|
||||
define('OGP_LANG_enter_valid_ip', "You must enter valid port for the remote host. The port value can be between 0 and 65535, however recommendation is between 1024 and 65535.");
|
||||
define('OGP_LANG_could_not_add_server', "Could not add server");
|
||||
define('OGP_LANG_to_db', "to the database.");
|
||||
define('OGP_LANG_added_server', "Added server");
|
||||
define('OGP_LANG_with_port', "with port");
|
||||
define('OGP_LANG_to_db_succesfully', "to the database successfully.");
|
||||
define('OGP_LANG_unable_discover', "Unable to auto discover IPs on");
|
||||
define('OGP_LANG_set_ip_manually', "You'll have to set them manually.");
|
||||
define('OGP_LANG_found_ips', "Found IPs");
|
||||
define('OGP_LANG_for_remote_server', "for the remote server.");
|
||||
define('OGP_LANG_failed_add_ip', "Failed to add IP");
|
||||
define('OGP_LANG_timeout', "Time Out");
|
||||
define('OGP_LANG_timeout_info', "The time limit in seconds to get response from this Agent.");
|
||||
define('OGP_LANG_use_nat', "Use NAT");
|
||||
define('OGP_LANG_use_nat_info', "Enable if your remote server is using NAT rules. Use this setting if your game servers are running on internal private LAN IP addresses so that the panel will use your real remote IP address to query the game servers.");
|
||||
define('OGP_LANG_arrange_ports', "Arrange ports");
|
||||
define('OGP_LANG_assign_new_ports_range_for_ip', "Assign new ports range for IP %s");
|
||||
define('OGP_LANG_assigned_port_ranges_for_ip', "Assigned port ranges for IP %s");
|
||||
define('OGP_LANG_assigned_ports_for_ip', "Assigned ports for IP %s");
|
||||
define('OGP_LANG_unspecified_game_types', "Unspecified game types");
|
||||
define('OGP_LANG_start_port', "Start port:");
|
||||
define('OGP_LANG_end_port', "End port:");
|
||||
define('OGP_LANG_port_increment', "Port increment:");
|
||||
define('OGP_LANG_total_assignable_ports', "Total assignable ports:");
|
||||
define('OGP_LANG_available_range_ports', "Available range ports:");
|
||||
define('OGP_LANG_assign_range', "Assign range");
|
||||
define('OGP_LANG_edit_range', "Edit range");
|
||||
define('OGP_LANG_delete_range', "Delete range");
|
||||
define('OGP_LANG_home_id', "Home ID");
|
||||
define('OGP_LANG_home_path', "Home path");
|
||||
define('OGP_LANG_game_type', "Game type");
|
||||
define('OGP_LANG_port', "Port");
|
||||
define('OGP_LANG_invalid_values', "Invalid values.");
|
||||
define('OGP_LANG_ports_in_range_already_arranged', "Ports in range already arranged.");
|
||||
define('OGP_LANG_ports_range_already_configured_for', "Ports range already configured for %s.");
|
||||
define('OGP_LANG_ports_range_added_successfull_for', "Ports range added successfully for %s.");
|
||||
define('OGP_LANG_ports_range_deleted_successfull', "Ports range deleted successfully.");
|
||||
define('OGP_LANG_ports_range_edited_successfull_for', "Ports range edited successfully for %s.");
|
||||
define('OGP_LANG_editing_firewall_for_remote_server', "Editing Firewall for remote server named '%s'");
|
||||
define('OGP_LANG_default_allowed', "Allowed by default");
|
||||
define('OGP_LANG_allow_port_command', "Allow port command");
|
||||
define('OGP_LANG_deny_port_command', "Deny port command");
|
||||
define('OGP_LANG_allow_ip_port_command', "Allow IP:port command");
|
||||
define('OGP_LANG_deny_ip_port_command', "Deny IP:port command");
|
||||
define('OGP_LANG_enable_firewall_command', "Enable firewall command");
|
||||
define('OGP_LANG_disable_firewall_command', "Disable firewall command");
|
||||
define('OGP_LANG_get_firewall_status_command', "Get firewall status command");
|
||||
define('OGP_LANG_reset_firewall_command', "Reset firewall command");
|
||||
define('OGP_LANG_firewall_status', "Firewall status");
|
||||
define('OGP_LANG_save_firewall_settings', "Save firewall settings");
|
||||
define('OGP_LANG_reset_firewall', "Reset Firewall");
|
||||
define('OGP_LANG_firewall_settings', "Firewall Settings");
|
||||
define('OGP_LANG_display_public_ip', "Display Public IP");
|
||||
define('OGP_LANG_ips_can_be_internal_external', "Enter usable IP addresses. Public IP addresses and internal LAN IP addresses (for NAT setups) can be used.");
|
||||
define('LANG_add_new_remote_host', "إضافة مضيف بعيد جديد");
|
||||
define('LANG_configured_remote_hosts', "تكوين المضيف البعيد");
|
||||
define('LANG_remote_host', "المضيف البعيد");
|
||||
define('LANG_remote_host_info', "يجب أن يكون المضيف البعيد اسم مضيف قابل للتوسيع!");
|
||||
define('LANG_remote_host_port', "بورت المضيف البعيد");
|
||||
define('LANG_remote_host_port_info', "The port that is listened by the OGP Agent on remote host. Default: 12679.");
|
||||
define('LANG_remote_host_name', "إسم المضيف البعيد");
|
||||
define('LANG_ogp_user', "اسم مستخدم وكيل OGP");
|
||||
define('LANG_remote_host_name_info', "يستخدم اسم المضيف البعيد لمساعدة المستخدمين على تحديد خوادمهم.");
|
||||
define('LANG_add_remote_host', "إضافة المضيف البعيد");
|
||||
define('LANG_remote_encryption_key', "مفتاح التشفير عن بعد");
|
||||
define('LANG_remote_encryption_key_info', "يستخدم مفتاح التشفير عن بعد لتشفير البيانات بين الفريق والوكيل. يجب أن يكون هذا المفتاح نفسه في كلا الجانبين.");
|
||||
define('LANG_server_name', "إسم السيرفر");
|
||||
define('LANG_agent_ip_port', "وكيل أيبي:بورت");
|
||||
define('LANG_agent_status', "حالة الوكيل");
|
||||
define('LANG_ips', "الأيبيهات");
|
||||
define('LANG_add_more_ips', "إذا كنت ترغب في إدخال المزيد من الأيبيهات اضغط على \"تعيين الأيبي\" عندما تكون جميع الحقول ممتلئة وسوف يظهر حقل فارغ.");
|
||||
define('LANG_encryption_key_mismatch', "لا يتطابق مفتاح التشفير مع الوكيل. يرجى إعادة التحقق من تهيئة الوكيل.");
|
||||
define('LANG_no_ip_for_remote_host', "You need to add at least one (1) IP address for each remote host.");
|
||||
define('LANG_note_remote_host', "A remote host is a server where the OGP Agent is running on. Each host can have multiple number of IP addresses on which users can bind servers to.");
|
||||
define('LANG_ip_administration', "Server & IP Administration :: Open Game Panel");
|
||||
define('LANG_unknown_error', "خطأ غير معروف - تم إرجاع status_chk");
|
||||
define('LANG_remote_host_user_name', "UNIX user");
|
||||
define('LANG_remote_host_user_name_info', "Username where the Agent is running. Example: Jonhy");
|
||||
define('LANG_remote_host_ftp_ip', "أيبي الأف تي بي");
|
||||
define('LANG_remote_host_ftp_ip_info', "خادم بروتوكول نقل الملفات <b>IP</b> للوكيل الحالي.");
|
||||
define('LANG_remote_host_ftp_port', "FTP Port");
|
||||
define('LANG_remote_host_ftp_port_info', "The FTP server <b>port</b> for the current Agent.");
|
||||
define('LANG_view_log', "View Log");
|
||||
define('LANG_status', "الحالة");
|
||||
define('LANG_stop_firewall', "إيقاف جدار الحماية");
|
||||
define('LANG_start_firewall', "تشغيل جدار الحماية");
|
||||
define('LANG_seconds', "ثواني");
|
||||
define('LANG_reboot', "إعادة تشغيل سيرفر التحكم");
|
||||
define('LANG_restart', "إعادة تشغبل الوكيل");
|
||||
define('LANG_confirm_reboot', "Are you sure you want to remotely reboot the entire physical server named '%s'?");
|
||||
define('LANG_confirm_restart', "Are you sure you want to restart the Agent named '%s'?");
|
||||
define('LANG_restarting', "Restarting Agent... Please wait.");
|
||||
define('LANG_restarted', "تم إعادة تشغيل الوكيل بنجاح");
|
||||
define('LANG_reboot_success', "Server named '%s' was successfully rebooted. You will not be able to access the server until it has successfully booted.");
|
||||
define('LANG_invalid_remote_host_id', "Invalid remote host id '%s' given.");
|
||||
define('LANG_remote_host_removed', "Remote host called '%s' removed successfully.");
|
||||
define('LANG_editing_remote_server', "Editing remote server called '%s'");
|
||||
define('LANG_remote_server_settings_changed', "Changed settings for remote server '%s' successfully.");
|
||||
define('LANG_save_settings', "Save Settings");
|
||||
define('LANG_set_ips', "Set IPs");
|
||||
define('LANG_remote_ip', "Remote IP");
|
||||
define('LANG_remote_ips_for', "IPs for Game Servers To Use on Agent Server '%s'");
|
||||
define('LANG_ips_set_for_server', "IPs set for server called '%s' successfully.");
|
||||
define('LANG_could_not_remove_ip', "Could not remove old IP's from database.");
|
||||
define('LANG_could_add_ip', "Could add remote server IP to database.");
|
||||
define('LANG_areyousure_removeagent', "Are you sure you want to remove the Agent called");
|
||||
define('LANG_areyousure_removeagent2', "and all the homes related to it from the ogp database?");
|
||||
define('LANG_error_while_remove', "Error occurred while removing remote server.");
|
||||
define('LANG_add_ip', "Add IP");
|
||||
define('LANG_remove_ip', "Remove IP");
|
||||
define('LANG_edit_ip', "Edit IP");
|
||||
define('LANG_wrote_changes', "Changes saved successfully.");
|
||||
define('LANG_there_are_servers_running_on_this_ip', "There are servers running on this IP address.");
|
||||
define('LANG_enter_ip_host', "You must enter IP for the remote host.");
|
||||
define('LANG_enter_valid_ip', "You must enter valid port for the remote host. The port value can be between 0 and 65535, however recommendation is between 1024 and 65535.");
|
||||
define('LANG_could_not_add_server', "Could not add server");
|
||||
define('LANG_to_db', "to the database.");
|
||||
define('LANG_added_server', "Added server");
|
||||
define('LANG_with_port', "with port");
|
||||
define('LANG_to_db_succesfully', "to the database successfully.");
|
||||
define('LANG_unable_discover', "Unable to auto discover IPs on");
|
||||
define('LANG_set_ip_manually', "You'll have to set them manually.");
|
||||
define('LANG_found_ips', "Found IPs");
|
||||
define('LANG_for_remote_server', "for the remote server.");
|
||||
define('LANG_failed_add_ip', "Failed to add IP");
|
||||
define('LANG_timeout', "Time Out");
|
||||
define('LANG_timeout_info', "The time limit in seconds to get response from this Agent.");
|
||||
define('LANG_use_nat', "Use NAT");
|
||||
define('LANG_use_nat_info', "Enable if your remote server is using NAT rules. Use this setting if your game servers are running on internal private LAN IP addresses so that the panel will use your real remote IP address to query the game servers.");
|
||||
define('LANG_arrange_ports', "Arrange ports");
|
||||
define('LANG_assign_new_ports_range_for_ip', "Assign new ports range for IP %s");
|
||||
define('LANG_assigned_port_ranges_for_ip', "Assigned port ranges for IP %s");
|
||||
define('LANG_assigned_ports_for_ip', "Assigned ports for IP %s");
|
||||
define('LANG_unspecified_game_types', "Unspecified game types");
|
||||
define('LANG_start_port', "Start port:");
|
||||
define('LANG_end_port', "End port:");
|
||||
define('LANG_port_increment', "Port increment:");
|
||||
define('LANG_total_assignable_ports', "Total assignable ports:");
|
||||
define('LANG_available_range_ports', "Available range ports:");
|
||||
define('LANG_assign_range', "Assign range");
|
||||
define('LANG_edit_range', "Edit range");
|
||||
define('LANG_delete_range', "Delete range");
|
||||
define('LANG_home_id', "Home ID");
|
||||
define('LANG_home_path', "Home path");
|
||||
define('LANG_game_type', "Game type");
|
||||
define('LANG_port', "Port");
|
||||
define('LANG_invalid_values', "Invalid values.");
|
||||
define('LANG_ports_in_range_already_arranged', "Ports in range already arranged.");
|
||||
define('LANG_ports_range_already_configured_for', "Ports range already configured for %s.");
|
||||
define('LANG_ports_range_added_successfull_for', "Ports range added successfully for %s.");
|
||||
define('LANG_ports_range_deleted_successfull', "Ports range deleted successfully.");
|
||||
define('LANG_ports_range_edited_successfull_for', "Ports range edited successfully for %s.");
|
||||
define('LANG_editing_firewall_for_remote_server', "Editing Firewall for remote server named '%s'");
|
||||
define('LANG_default_allowed', "Allowed by default");
|
||||
define('LANG_allow_port_command', "Allow port command");
|
||||
define('LANG_deny_port_command', "Deny port command");
|
||||
define('LANG_allow_ip_port_command', "Allow IP:port command");
|
||||
define('LANG_deny_ip_port_command', "Deny IP:port command");
|
||||
define('LANG_enable_firewall_command', "Enable firewall command");
|
||||
define('LANG_disable_firewall_command', "Disable firewall command");
|
||||
define('LANG_get_firewall_status_command', "Get firewall status command");
|
||||
define('LANG_reset_firewall_command', "Reset firewall command");
|
||||
define('LANG_firewall_status', "Firewall status");
|
||||
define('LANG_save_firewall_settings', "Save firewall settings");
|
||||
define('LANG_reset_firewall', "Reset Firewall");
|
||||
define('LANG_firewall_settings', "Firewall Settings");
|
||||
define('LANG_display_public_ip', "Display Public IP");
|
||||
define('LANG_ips_can_be_internal_external', "Enter usable IP addresses. Public IP addresses and internal LAN IP addresses (for NAT setups) can be used.");
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -22,127 +22,127 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_maintenance_mode', "اعمال صيانة");
|
||||
define('OGP_LANG_maintenance_mode_info', "تعطيل لوحة للمستخدمين العاديين. يمكن للمشرفين فقط الوصول إليه أثناء الصيانة.");
|
||||
define('OGP_LANG_maintenance_title', "عنوان الصيانة");
|
||||
define('OGP_LANG_maintenance_title_info', "العنوان الذي يتم عرضه للمستخدمين العاديين أثناء الصيانة.");
|
||||
define('OGP_LANG_maintenance_message', "رسالة الصيانة");
|
||||
define('OGP_LANG_maintenance_message_info', "الرسالة التي يتم عرضها للمستخدمين العاديين أثناء الصيانة.");
|
||||
define('OGP_LANG_update_settings', "إعدادات التحديث");
|
||||
define('OGP_LANG_settings_updated', "تم تحديث الإعدادات بنجاح.");
|
||||
define('OGP_LANG_panel_language', "لغة اللوحة");
|
||||
define('OGP_LANG_panel_language_info', "هذه اللغة هي اللغة الافتراضية للوحة. يمكن للمستخدمين تغيير لغتهم من صفحة تعديل ملفاتهم الشخصية.");
|
||||
define('OGP_LANG_page_auto_refresh', "تحديث تلقائي للصفحة");
|
||||
define('OGP_LANG_page_auto_refresh_info', "Page Auto Refresh settings is mainly used in panel debugging. In normal usage this should be set to On.");
|
||||
define('OGP_LANG_smtp_server', "Outgoing E-Mail Server");
|
||||
define('OGP_LANG_smtp_server_info', "This is the outgoing mail server (SMTP server) that is used, for example, to sent forgotten passwords to users, localhost by default.");
|
||||
define('OGP_LANG_panel_email_address', "عنوان البريد الإلكتروني الصادر");
|
||||
define('OGP_LANG_panel_email_address_info', "This is the e-mail address that is in from field when passwords are sent to users.");
|
||||
define('OGP_LANG_panel_name', "اسم اللوحة");
|
||||
define('OGP_LANG_panel_name_info', "Name of the Panel that is shown in the page title. This value will overrule all page titles, if it's not empty.");
|
||||
define('OGP_LANG_feed_enable', "تفغيل خلاصة LGSL");
|
||||
define('OGP_LANG_feed_enable_info', "If your webhost has a firewall which is blocking the query port, then you need to open the port manually.");
|
||||
define('OGP_LANG_feed_url', "Feed URL");
|
||||
define('OGP_LANG_feed_url_info', "GrayCube.com is sharing a LGSL feed on the URL:<br><b>http://www.greycube.co.uk/lgsl/feed/lgsl_files/lgsl_feed.php</b>");
|
||||
define('OGP_LANG_charset', "Character Encoding");
|
||||
define('OGP_LANG_charset_info', "UTF8, ISO, ASCII, etc... Overrides the character encoding defined in language files. Leave it blank to use language default.");
|
||||
define('OGP_LANG_steam_user', "إسم مستخدم الSteam");
|
||||
define('OGP_LANG_steam_user_info', "This user is needed to log in to steam for download some new games like CS:GO.");
|
||||
define('OGP_LANG_steam_pass', "كلمة سر الSteam");
|
||||
define('OGP_LANG_steam_pass_info', "Set here the steam account password.");
|
||||
define('OGP_LANG_steam_guard', "Steam Guard");
|
||||
define('OGP_LANG_steam_guard_info', "Some users have steam guard activated to protect their accounts from hackers,<br>this code is sent to the account email when the first steam update is started.");
|
||||
define('OGP_LANG_smtp_port', "SMTP Port");
|
||||
define('OGP_LANG_smtp_port_info', "If SMTP port is not the default port (25) Enter the SMTP port here.");
|
||||
define('OGP_LANG_smtp_login', "SMTP User");
|
||||
define('OGP_LANG_smtp_login_info', "If your SMTP server requires authentication, enter your user name here.");
|
||||
define('OGP_LANG_smtp_passw', "SMTP Password");
|
||||
define('OGP_LANG_smtp_passw_info', "If you do not set a password the SMTP authentication will be disabled.");
|
||||
define('OGP_LANG_smtp_secure', "SMTP Secure");
|
||||
define('OGP_LANG_smtp_secure_info', "Use SSL/TLS to connect to the SMTP server");
|
||||
define('OGP_LANG_time_zone', "الوحدة زمنية");
|
||||
define('OGP_LANG_time_zone_info', "Sets the default timezone used by all date/time functions.");
|
||||
define('OGP_LANG_query_cache_life', "Query cache life");
|
||||
define('OGP_LANG_query_cache_life_info', "Sets the timeout in seconds before the server status is refreshed.");
|
||||
define('OGP_LANG_query_num_servers_stop', "Disable Game Server Queries After");
|
||||
define('OGP_LANG_query_num_servers_stop_info', "Use this setting to disable queries if a user owns more game servers than this amount specified to speed up panel loading.");
|
||||
define('OGP_LANG_editable_email', "Editable E-Mail Address");
|
||||
define('OGP_LANG_editable_email_info', "Select if users can edit their e-mail address or not.");
|
||||
define('OGP_LANG_old_dashboard_behavior', "Old Dashboard behavior");
|
||||
define('OGP_LANG_old_dashboard_behavior_info', "The old Dashboard was running slower, but shows more server informations (e.g. current players and maps).");
|
||||
define('OGP_LANG_rsync_available', "Available Rsync servers");
|
||||
define('OGP_LANG_rsync_available_info', "Select what servers list will be shown in the rsync installation.");
|
||||
define('OGP_LANG_all_available_servers', "All available servers ( rsync_sites.list + rsync_sites_local.list )");
|
||||
define('OGP_LANG_only_remote_servers', "Only remote servers ( rsync_sites.list )");
|
||||
define('OGP_LANG_only_local_servers', "Only local servers ( rsync_sites_local.list )");
|
||||
define('OGP_LANG_header_code', "Header code");
|
||||
define('OGP_LANG_header_code_info', "Here you can write your own header code (like HTML code, Embed Code etc.) without editing the theme layout.");
|
||||
define('OGP_LANG_support_widget_title', "Support widget title");
|
||||
define('OGP_LANG_support_widget_title_info', "A custom title for the support widget in the Dashboard.");
|
||||
define('OGP_LANG_support_widget_content', "Support widget content");
|
||||
define('OGP_LANG_support_widget_content_info', "The content of the support widget (HTML code allowed).");
|
||||
define('OGP_LANG_support_widget_link', "Support widget link");
|
||||
define('OGP_LANG_support_widget_link_info', "The URL of your support site.");
|
||||
define('OGP_LANG_recaptcha_site_key', "Recaptcha Site Key");
|
||||
define('OGP_LANG_recaptcha_site_key_info', "The site key provided to you by Google.");
|
||||
define('OGP_LANG_recaptcha_secret_key', "Recaptcha Secret Key");
|
||||
define('OGP_LANG_recaptcha_secret_key_info', "The secret key provided to you by Google.");
|
||||
define('OGP_LANG_recaptcha_use_login', "Use Recaptcha on Login");
|
||||
define('OGP_LANG_recaptcha_use_login_info', "If enabled, users will have to solve the Not a Robot Recaptcha when attempting to login.");
|
||||
define('OGP_LANG_login_attempts_before_banned', "Number of failed login attempts before user is banned");
|
||||
define('OGP_LANG_login_attempts_before_banned_info', "If a user tries to login with invalid credentials more than this many times, the user will be banned temporarily by the panel.");
|
||||
define('OGP_LANG_custom_github_update_username', "GitHub update username");
|
||||
define('OGP_LANG_custom_github_update_username_info', "Enter your GitHub username ONLY to use your own forked repositories to update OGP. This should only be changed by developers who wish to use their own repos for development rather than checking in possibly buggy code into the main branch.");
|
||||
define('OGP_LANG_remote_query', "Remote query");
|
||||
define('OGP_LANG_remote_query_info', "Use the remote server (agent) to make queries to the game servers (Only GameQ and LGSL).");
|
||||
define('OGP_LANG_check_expiry_by', "Check expiration using");
|
||||
define('OGP_LANG_check_expiry_by_info', "If set to once_logged_in, the user's game server assignments will be automatically deleted if past the expiration date. If set to cron_job, you will need to create a cron task using the cron module to check for the expiration date at a configured interval.");
|
||||
define('OGP_LANG_once_logged_in', "Once Logged In");
|
||||
define('OGP_LANG_cron_job', "Cron Job");
|
||||
define('OGP_LANG_theme_settings', "Theme Settings");
|
||||
define('OGP_LANG_theme', "Theme");
|
||||
define('OGP_LANG_theme_info', "Theme selected here will be the default theme for all users. Users can change their theme from their profile page.");
|
||||
define('OGP_LANG_welcome_title', "Welcome Title");
|
||||
define('OGP_LANG_welcome_title_info', "Enables the title that is displayed at the top of the Dashboard.");
|
||||
define('OGP_LANG_welcome_title_message', "Welcome Title Message");
|
||||
define('OGP_LANG_welcome_title_message_info', "The title message that is displayed at the top of the Dashboard (HTML code allowed).");
|
||||
define('OGP_LANG_logo_link', "Logos Link");
|
||||
define('OGP_LANG_logo_link_info', "The logos hyperlink. <b style='font-size:10px; font-weight:normal;'>(Leaving it blank will link it to the Dashboard)</b>");
|
||||
define('OGP_LANG_custom_tab', "Custom Tab");
|
||||
define('OGP_LANG_custom_tab_info', "Adds a customisable tab at the end of the menu. <b style='font-size:10px; font-weight:normal;'>(Apply and refresh this page to edit tab settings)</b>");
|
||||
define('OGP_LANG_custom_tab_name', "Custom Tab Name");
|
||||
define('OGP_LANG_custom_tab_name_info', "The tabs display name.");
|
||||
define('OGP_LANG_custom_tab_link', "Custom Tab Link");
|
||||
define('OGP_LANG_custom_tab_link_info', "The tabs hyperlink.");
|
||||
define('OGP_LANG_custom_tab_sub', "Custom Sub-Tabs");
|
||||
define('OGP_LANG_custom_tab_sub_info', "Adds customisable sub-tabs when hovering over the 'Custom Tab'.");
|
||||
define('OGP_LANG_custom_tab_sub_name', "Sub-Tab #1 Name");
|
||||
define('OGP_LANG_custom_tab_sub_link', "Sub-Tab #1 Link");
|
||||
define('OGP_LANG_custom_tab_sub_name2', "Sub-Tab #2 Name");
|
||||
define('OGP_LANG_custom_tab_sub_link2', "Sub-Tab #2 Link");
|
||||
define('OGP_LANG_custom_tab_sub_name3', "Sub-Tab #3 Name");
|
||||
define('OGP_LANG_custom_tab_sub_link3', "Sub-Tab #3 Link");
|
||||
define('OGP_LANG_custom_tab_sub_name4', "Sub-Tab #4 Name");
|
||||
define('OGP_LANG_custom_tab_sub_link4', "Sub-Tab #4 Link");
|
||||
define('OGP_LANG_custom_tab_target_blank', "Custom Tabs Target");
|
||||
define('OGP_LANG_custom_tab_target_blank_info', "Sets all the tabs target. <b style='font-size:10px; font-weight:normal;'>(Self_Page = Opens link on same page. New_Page = Opens link on new tab.)</b>");
|
||||
define('OGP_LANG_bg_wrapper', "Wrapper Background");
|
||||
define('OGP_LANG_bg_wrapper_info', "The wrappers background image. <b style='font-size:10px; font-weight:normal;'>(Only available on some themes.)</b>");
|
||||
define('OGP_LANG_show_server_id_game_monitor', "Show Server IDs on Game Monitor page");
|
||||
define('OGP_LANG_show_server_id_game_monitor_info', "Show the game server ID column on the Game Monitor for matching up files created by the Agent to the actual game server.");
|
||||
define('OGP_LANG_default_game_server_home_path_prefix', "Default game server home directory prefix");
|
||||
define('OGP_LANG_default_game_server_home_path_prefix_info', "Enter a path prefix for where you want game server homes to be created by default. You can use \"{USERNAME}\" in the path which will be replaced with the OGP username the game server is being assigned to. You can use \"{GAMEKEY}\" in the path which will be replaced with a friendly lowercase name. You can use \"{SKIPID}\" anywhere in the path to skip appending the home ID to the path. Example: /ogp/games/{USERNAME}/{GAMEKEY}{SKIPID} will become /ogp/games/username/arkse/. Example 2: /ogp/games will become /ogp/games/1 where 1 is the game servers ID.");
|
||||
define('OGP_LANG_use_authorized_hosts', "Limit API to Defined Authorized Hosts");
|
||||
define('OGP_LANG_use_authorized_hosts_info', "Enable this setting to only allow API calls from pre-defined and approved IP addresses. Approved addresses can be set on this page once the setting has been enabled. If this setting is disabled, a user using a valid key will have access to the API from any IP address. Users using a valid key will be able to use the API to manage any game server they have permissions to administrate.");
|
||||
define('OGP_LANG_setup_api_authorized_hosts', "Setup API authorized hosts");
|
||||
define('OGP_LANG_autohorized_hosts', "Authorized hosts");
|
||||
define('OGP_LANG_add', "Add");
|
||||
define('OGP_LANG_remove', "Remove");
|
||||
define('OGP_LANG_default_trusted_hosts', "Default Trusted Hosts");
|
||||
define('OGP_LANG_trusted_host_or_proxy_addresses_or_cidr', "Trusted Hosts or Proxies (IPv4/IPv6 Addresses or CIDR)");
|
||||
define('OGP_LANG_trusted_forwarded_ip_addresses_or_cidr', "Trusted Forwarded IPs (IPv4/IPv6 Addresses or CIDR)");
|
||||
define('OGP_LANG_reset_game_server_order', "إعادة ترتيب سيرفر اللعبة");
|
||||
define('OGP_LANG_reset_game_server_order_info', "إعادة ترتيب سيرفر اللعبة للرجوع إلى الافتراضي باستخدام معرف الخادم");
|
||||
define('LANG_maintenance_mode', "اعمال صيانة");
|
||||
define('LANG_maintenance_mode_info', "تعطيل لوحة للمستخدمين العاديين. يمكن للمشرفين فقط الوصول إليه أثناء الصيانة.");
|
||||
define('LANG_maintenance_title', "عنوان الصيانة");
|
||||
define('LANG_maintenance_title_info', "العنوان الذي يتم عرضه للمستخدمين العاديين أثناء الصيانة.");
|
||||
define('LANG_maintenance_message', "رسالة الصيانة");
|
||||
define('LANG_maintenance_message_info', "الرسالة التي يتم عرضها للمستخدمين العاديين أثناء الصيانة.");
|
||||
define('LANG_update_settings', "إعدادات التحديث");
|
||||
define('LANG_settings_updated', "تم تحديث الإعدادات بنجاح.");
|
||||
define('LANG_panel_language', "لغة اللوحة");
|
||||
define('LANG_panel_language_info', "هذه اللغة هي اللغة الافتراضية للوحة. يمكن للمستخدمين تغيير لغتهم من صفحة تعديل ملفاتهم الشخصية.");
|
||||
define('LANG_page_auto_refresh', "تحديث تلقائي للصفحة");
|
||||
define('LANG_page_auto_refresh_info', "Page Auto Refresh settings is mainly used in panel debugging. In normal usage this should be set to On.");
|
||||
define('LANG_smtp_server', "Outgoing E-Mail Server");
|
||||
define('LANG_smtp_server_info', "This is the outgoing mail server (SMTP server) that is used, for example, to sent forgotten passwords to users, localhost by default.");
|
||||
define('LANG_panel_email_address', "عنوان البريد الإلكتروني الصادر");
|
||||
define('LANG_panel_email_address_info', "This is the e-mail address that is in from field when passwords are sent to users.");
|
||||
define('LANG_panel_name', "اسم اللوحة");
|
||||
define('LANG_panel_name_info', "Name of the Panel that is shown in the page title. This value will overrule all page titles, if it's not empty.");
|
||||
define('LANG_feed_enable', "تفغيل خلاصة LGSL");
|
||||
define('LANG_feed_enable_info', "If your webhost has a firewall which is blocking the query port, then you need to open the port manually.");
|
||||
define('LANG_feed_url', "Feed URL");
|
||||
define('LANG_feed_url_info', "GrayCube.com is sharing a LGSL feed on the URL:<br><b>http://www.greycube.co.uk/lgsl/feed/lgsl_files/lgsl_feed.php</b>");
|
||||
define('LANG_charset', "Character Encoding");
|
||||
define('LANG_charset_info', "UTF8, ISO, ASCII, etc... Overrides the character encoding defined in language files. Leave it blank to use language default.");
|
||||
define('LANG_steam_user', "إسم مستخدم الSteam");
|
||||
define('LANG_steam_user_info', "This user is needed to log in to steam for download some new games like CS:GO.");
|
||||
define('LANG_steam_pass', "كلمة سر الSteam");
|
||||
define('LANG_steam_pass_info', "Set here the steam account password.");
|
||||
define('LANG_steam_guard', "Steam Guard");
|
||||
define('LANG_steam_guard_info', "Some users have steam guard activated to protect their accounts from hackers,<br>this code is sent to the account email when the first steam update is started.");
|
||||
define('LANG_smtp_port', "SMTP Port");
|
||||
define('LANG_smtp_port_info', "If SMTP port is not the default port (25) Enter the SMTP port here.");
|
||||
define('LANG_smtp_login', "SMTP User");
|
||||
define('LANG_smtp_login_info', "If your SMTP server requires authentication, enter your user name here.");
|
||||
define('LANG_smtp_passw', "SMTP Password");
|
||||
define('LANG_smtp_passw_info', "If you do not set a password the SMTP authentication will be disabled.");
|
||||
define('LANG_smtp_secure', "SMTP Secure");
|
||||
define('LANG_smtp_secure_info', "Use SSL/TLS to connect to the SMTP server");
|
||||
define('LANG_time_zone', "الوحدة زمنية");
|
||||
define('LANG_time_zone_info', "Sets the default timezone used by all date/time functions.");
|
||||
define('LANG_query_cache_life', "Query cache life");
|
||||
define('LANG_query_cache_life_info', "Sets the timeout in seconds before the server status is refreshed.");
|
||||
define('LANG_query_num_servers_stop', "Disable Game Server Queries After");
|
||||
define('LANG_query_num_servers_stop_info', "Use this setting to disable queries if a user owns more game servers than this amount specified to speed up panel loading.");
|
||||
define('LANG_editable_email', "Editable E-Mail Address");
|
||||
define('LANG_editable_email_info', "Select if users can edit their e-mail address or not.");
|
||||
define('LANG_old_dashboard_behavior', "Old Dashboard behavior");
|
||||
define('LANG_old_dashboard_behavior_info', "The old Dashboard was running slower, but shows more server informations (e.g. current players and maps).");
|
||||
define('LANG_rsync_available', "Available Rsync servers");
|
||||
define('LANG_rsync_available_info', "Select what servers list will be shown in the rsync installation.");
|
||||
define('LANG_all_available_servers', "All available servers ( rsync_sites.list + rsync_sites_local.list )");
|
||||
define('LANG_only_remote_servers', "Only remote servers ( rsync_sites.list )");
|
||||
define('LANG_only_local_servers', "Only local servers ( rsync_sites_local.list )");
|
||||
define('LANG_header_code', "Header code");
|
||||
define('LANG_header_code_info', "Here you can write your own header code (like HTML code, Embed Code etc.) without editing the theme layout.");
|
||||
define('LANG_support_widget_title', "Support widget title");
|
||||
define('LANG_support_widget_title_info', "A custom title for the support widget in the Dashboard.");
|
||||
define('LANG_support_widget_content', "Support widget content");
|
||||
define('LANG_support_widget_content_info', "The content of the support widget (HTML code allowed).");
|
||||
define('LANG_support_widget_link', "Support widget link");
|
||||
define('LANG_support_widget_link_info', "The URL of your support site.");
|
||||
define('LANG_recaptcha_site_key', "Recaptcha Site Key");
|
||||
define('LANG_recaptcha_site_key_info', "The site key provided to you by Google.");
|
||||
define('LANG_recaptcha_secret_key', "Recaptcha Secret Key");
|
||||
define('LANG_recaptcha_secret_key_info', "The secret key provided to you by Google.");
|
||||
define('LANG_recaptcha_use_login', "Use Recaptcha on Login");
|
||||
define('LANG_recaptcha_use_login_info', "If enabled, users will have to solve the Not a Robot Recaptcha when attempting to login.");
|
||||
define('LANG_login_attempts_before_banned', "Number of failed login attempts before user is banned");
|
||||
define('LANG_login_attempts_before_banned_info', "If a user tries to login with invalid credentials more than this many times, the user will be banned temporarily by the panel.");
|
||||
define('LANG_custom_github_update_username', "GitHub update username");
|
||||
define('LANG_custom_github_update_username_info', "Enter your GitHub username ONLY to use your own forked repositories to update OGP. This should only be changed by developers who wish to use their own repos for development rather than checking in possibly buggy code into the main branch.");
|
||||
define('LANG_remote_query', "Remote query");
|
||||
define('LANG_remote_query_info', "Use the remote server (agent) to make queries to the game servers (Only GameQ and LGSL).");
|
||||
define('LANG_check_expiry_by', "Check expiration using");
|
||||
define('LANG_check_expiry_by_info', "If set to once_logged_in, the user's game server assignments will be automatically deleted if past the expiration date. If set to cron_job, you will need to create a cron task using the cron module to check for the expiration date at a configured interval.");
|
||||
define('LANG_once_logged_in', "Once Logged In");
|
||||
define('LANG_cron_job', "Cron Job");
|
||||
define('LANG_theme_settings', "Theme Settings");
|
||||
define('LANG_theme', "Theme");
|
||||
define('LANG_theme_info', "Theme selected here will be the default theme for all users. Users can change their theme from their profile page.");
|
||||
define('LANG_welcome_title', "Welcome Title");
|
||||
define('LANG_welcome_title_info', "Enables the title that is displayed at the top of the Dashboard.");
|
||||
define('LANG_welcome_title_message', "Welcome Title Message");
|
||||
define('LANG_welcome_title_message_info', "The title message that is displayed at the top of the Dashboard (HTML code allowed).");
|
||||
define('LANG_logo_link', "Logos Link");
|
||||
define('LANG_logo_link_info', "The logos hyperlink. <b style='font-size:10px; font-weight:normal;'>(Leaving it blank will link it to the Dashboard)</b>");
|
||||
define('LANG_custom_tab', "Custom Tab");
|
||||
define('LANG_custom_tab_info', "Adds a customisable tab at the end of the menu. <b style='font-size:10px; font-weight:normal;'>(Apply and refresh this page to edit tab settings)</b>");
|
||||
define('LANG_custom_tab_name', "Custom Tab Name");
|
||||
define('LANG_custom_tab_name_info', "The tabs display name.");
|
||||
define('LANG_custom_tab_link', "Custom Tab Link");
|
||||
define('LANG_custom_tab_link_info', "The tabs hyperlink.");
|
||||
define('LANG_custom_tab_sub', "Custom Sub-Tabs");
|
||||
define('LANG_custom_tab_sub_info', "Adds customisable sub-tabs when hovering over the 'Custom Tab'.");
|
||||
define('LANG_custom_tab_sub_name', "Sub-Tab #1 Name");
|
||||
define('LANG_custom_tab_sub_link', "Sub-Tab #1 Link");
|
||||
define('LANG_custom_tab_sub_name2', "Sub-Tab #2 Name");
|
||||
define('LANG_custom_tab_sub_link2', "Sub-Tab #2 Link");
|
||||
define('LANG_custom_tab_sub_name3', "Sub-Tab #3 Name");
|
||||
define('LANG_custom_tab_sub_link3', "Sub-Tab #3 Link");
|
||||
define('LANG_custom_tab_sub_name4', "Sub-Tab #4 Name");
|
||||
define('LANG_custom_tab_sub_link4', "Sub-Tab #4 Link");
|
||||
define('LANG_custom_tab_target_blank', "Custom Tabs Target");
|
||||
define('LANG_custom_tab_target_blank_info', "Sets all the tabs target. <b style='font-size:10px; font-weight:normal;'>(Self_Page = Opens link on same page. New_Page = Opens link on new tab.)</b>");
|
||||
define('LANG_bg_wrapper', "Wrapper Background");
|
||||
define('LANG_bg_wrapper_info', "The wrappers background image. <b style='font-size:10px; font-weight:normal;'>(Only available on some themes.)</b>");
|
||||
define('LANG_show_server_id_game_monitor', "Show Server IDs on Game Monitor page");
|
||||
define('LANG_show_server_id_game_monitor_info', "Show the game server ID column on the Game Monitor for matching up files created by the Agent to the actual game server.");
|
||||
define('LANG_default_game_server_home_path_prefix', "Default game server home directory prefix");
|
||||
define('LANG_default_game_server_home_path_prefix_info', "Enter a path prefix for where you want game server homes to be created by default. You can use \"{USERNAME}\" in the path which will be replaced with the OGP username the game server is being assigned to. You can use \"{GAMEKEY}\" in the path which will be replaced with a friendly lowercase name. You can use \"{SKIPID}\" anywhere in the path to skip appending the home ID to the path. Example: /ogp/games/{USERNAME}/{GAMEKEY}{SKIPID} will become /ogp/games/username/arkse/. Example 2: /ogp/games will become /ogp/games/1 where 1 is the game servers ID.");
|
||||
define('LANG_use_authorized_hosts', "Limit API to Defined Authorized Hosts");
|
||||
define('LANG_use_authorized_hosts_info', "Enable this setting to only allow API calls from pre-defined and approved IP addresses. Approved addresses can be set on this page once the setting has been enabled. If this setting is disabled, a user using a valid key will have access to the API from any IP address. Users using a valid key will be able to use the API to manage any game server they have permissions to administrate.");
|
||||
define('LANG_setup_api_authorized_hosts', "Setup API authorized hosts");
|
||||
define('LANG_autohorized_hosts', "Authorized hosts");
|
||||
define('LANG_add', "Add");
|
||||
define('LANG_remove', "Remove");
|
||||
define('LANG_default_trusted_hosts', "Default Trusted Hosts");
|
||||
define('LANG_trusted_host_or_proxy_addresses_or_cidr', "Trusted Hosts or Proxies (IPv4/IPv6 Addresses or CIDR)");
|
||||
define('LANG_trusted_forwarded_ip_addresses_or_cidr', "Trusted Forwarded IPs (IPv4/IPv6 Addresses or CIDR)");
|
||||
define('LANG_reset_game_server_order', "إعادة ترتيب سيرفر اللعبة");
|
||||
define('LANG_reset_game_server_order_info', "إعادة ترتيب سيرفر اللعبة للرجوع إلى الافتراضي باستخدام معرف الخادم");
|
||||
|
||||
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -22,27 +22,27 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_system_uptime', "مدة تشغيل النظام");
|
||||
define('OGP_LANG_system_up_time', "مدة التشغيل");
|
||||
define('OGP_LANG_system_up_since', "منذ");
|
||||
define('OGP_LANG_day_word', "يوم");
|
||||
define('OGP_LANG_days_word', "أيام");
|
||||
define('OGP_LANG_hour_word', "ساعة");
|
||||
define('OGP_LANG_hours_word', "ساعات");
|
||||
define('OGP_LANG_minute_word', "دقيقة");
|
||||
define('OGP_LANG_minutes_word', "دقائق");
|
||||
define('OGP_LANG_second_word', "ثانية");
|
||||
define('OGP_LANG_seconds_word', "ثواني");
|
||||
define('OGP_LANG_cpu_usage', "استخدام المعالج");
|
||||
define('OGP_LANG_cpu_load', "حمل");
|
||||
define('OGP_LANG_ram_usage', "استخدام ذاكرة الوصول العشوائي");
|
||||
define('OGP_LANG_ram_used', "الذاكرة المستخدمة");
|
||||
define('OGP_LANG_ram_of', "من");
|
||||
define('OGP_LANG_storage_space', "مساحة التخزين");
|
||||
define('OGP_LANG_storage_total', "مساحة القرص");
|
||||
define('OGP_LANG_storage_used', "مستخدم");
|
||||
define('OGP_LANG_storage_free', "مساحة فارغة");
|
||||
define('OGP_LANG_process_monitor', "مراقبة العمليات");
|
||||
define('OGP_LANG_status_extension_required', "تمديد مطلوب");
|
||||
define('OGP_LANG_gd_info', "تمديدGD<a href=\"http://php.net/manual/en/image.installation.php\"> PHP</a> هو المطلوب لتوليد شريط الصور!");
|
||||
define('LANG_system_uptime', "مدة تشغيل النظام");
|
||||
define('LANG_system_up_time', "مدة التشغيل");
|
||||
define('LANG_system_up_since', "منذ");
|
||||
define('LANG_day_word', "يوم");
|
||||
define('LANG_days_word', "أيام");
|
||||
define('LANG_hour_word', "ساعة");
|
||||
define('LANG_hours_word', "ساعات");
|
||||
define('LANG_minute_word', "دقيقة");
|
||||
define('LANG_minutes_word', "دقائق");
|
||||
define('LANG_second_word', "ثانية");
|
||||
define('LANG_seconds_word', "ثواني");
|
||||
define('LANG_cpu_usage', "استخدام المعالج");
|
||||
define('LANG_cpu_load', "حمل");
|
||||
define('LANG_ram_usage', "استخدام ذاكرة الوصول العشوائي");
|
||||
define('LANG_ram_used', "الذاكرة المستخدمة");
|
||||
define('LANG_ram_of', "من");
|
||||
define('LANG_storage_space', "مساحة التخزين");
|
||||
define('LANG_storage_total', "مساحة القرص");
|
||||
define('LANG_storage_used', "مستخدم");
|
||||
define('LANG_storage_free', "مساحة فارغة");
|
||||
define('LANG_process_monitor', "مراقبة العمليات");
|
||||
define('LANG_status_extension_required', "تمديد مطلوب");
|
||||
define('LANG_gd_info', "تمديدGD<a href=\"http://php.net/manual/en/image.installation.php\"> PHP</a> هو المطلوب لتوليد شريط الصور!");
|
||||
?>
|
||||
|
|
@ -21,54 +21,54 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*
|
||||
*/
|
||||
define('OGP_LANG_game', "لعبة");
|
||||
define('OGP_LANG_select_mod', "تحديد mod");
|
||||
define('OGP_LANG_manual_workshop_mod_id', "Manual Workshop mod ID");
|
||||
define('OGP_LANG_manual_workshop_mod_id_info', "You'll find the mod id at the URL of the mod, for example 1379153273 for ARK: Survival Evolved's Solar Panel. You can install multiple mods separating them by coma.");
|
||||
define('OGP_LANG_update_in_progress', "التحديث قيد التقدم");
|
||||
define('OGP_LANG_refresh_steam_workshop_status', "Refresh Steam Workshop status");
|
||||
define('OGP_LANG_update_completed', "إكتمل التحديث بنجاح");
|
||||
define('OGP_LANG_mod_does_not_belong_to_workshop', "The mod %s does not belong to the Workshop");
|
||||
define('OGP_LANG_mod_installation_started', "Mod installation started");
|
||||
define('OGP_LANG_failed_to_start_steam_workshop', "Failed to start Steam Workshop");
|
||||
define('OGP_LANG_connection_error', "خطأ في الإتصال");
|
||||
define('OGP_LANG_install_mod', "تثبيت الوحدات");
|
||||
define('OGP_LANG_show_mod_info', "Show mods info");
|
||||
define('OGP_LANG_select_game', "حدد اللعبة");
|
||||
define('OGP_LANG_save_config', "حفظ التكوين");
|
||||
define('OGP_LANG_mod_key_not_found_from_xml', "Mod key %s not found from xml.");
|
||||
define('OGP_LANG_workshop_id', "Workshop ID");
|
||||
define('OGP_LANG_workshop_id_info', "You'll find the Workshop ID at the URL of the Workshop, for example 440900 for Conan Exiles");
|
||||
define('OGP_LANG_mods_path', "Mods Path");
|
||||
define('OGP_LANG_mods_path_info', "The relative path for the mods folder.");
|
||||
define('OGP_LANG_regex', "Regex");
|
||||
define('OGP_LANG_regex_info', "A regular expression that matches the mods in the configuration file");
|
||||
define('OGP_LANG_mods_backreference_index', "Mods Backreference Index");
|
||||
define('OGP_LANG_mods_backreference_index_info', "The position of the back reference from the part of the regex that match the mods list, starting by 0.");
|
||||
define('OGP_LANG_variable', "متغير");
|
||||
define('OGP_LANG_variable_info', "The variable that cointains the mods list, if any.");
|
||||
define('OGP_LANG_place_after', "مكان بعد");
|
||||
define('OGP_LANG_place_after_info', "The section of the configuration file where the mods list appears, if any. It will be added to the config file if does not exists yet. If the given variable is not present then it will be placed in the line after this section.");
|
||||
define('OGP_LANG_mod_string', "Mod String");
|
||||
define('OGP_LANG_mod_string_info', "The string that represents the mod in the mod list. Valid replacements: %workshop_mod_id%, %first_file% (first file is the first file found in the mod folder downloaded by SteamCMD)");
|
||||
define('OGP_LANG_string_separator', "فاصل السلسلة");
|
||||
define('OGP_LANG_string_separator_info', "The character that separates the mods in the configuration file, for example new line character (\\n) or coma (,).");
|
||||
define('OGP_LANG_filepath', "مسار الملف");
|
||||
define('OGP_LANG_filepath_info', "The path of the configuration file where the mods must be listed.");
|
||||
define('OGP_LANG_post_install', "Postinstall Script");
|
||||
define('OGP_LANG_post_install_info', "The necessary commands in bash to move the mods to the mods folder. Valid replacements: %mods_full_path% (the full path to the Wokshop mods folder), %workshop_mod_id%, %first_file% (first file is the first file found in the mod folder downloaded by SteamCMD)");
|
||||
define('OGP_LANG_install_mods', "Install Mods");
|
||||
define('OGP_LANG_uninstall_mods', "Uninstall Mods");
|
||||
define('OGP_LANG_failed_uninstalling_mod', "Failed uninstalling mod %s");
|
||||
define('OGP_LANG_uninstall', "إلغاء تثبيت البرنامج النصي");
|
||||
define('OGP_LANG_uninstall_info', "This is the script called when a mod is uninstalled, Valid replacements: %mods_full_path% (the full path to the wokshop mods folder), %mod_string% (mod string is the name listed in the configuration file for this mod).");
|
||||
define('OGP_LANG_remove_mods', "Remove Mods");
|
||||
define('OGP_LANG_do_not_close_this_page_while_mods_are_being_installed', "Do not close this page while mods are being installed.");
|
||||
define('OGP_LANG_no_game_server_selected', "لم يتم تحديد خادم اللعبة");
|
||||
define('OGP_LANG_there_are_no_mods_installed_on_this_game_server', "There are no mods installed on this game server");
|
||||
define('OGP_LANG_workshop_configuration_not_found', "Workshop configuration not found");
|
||||
define('OGP_LANG_download_method', "طريقة التحميل");
|
||||
define('OGP_LANG_anonymous_login', "تسجيل دخول كمجهول");
|
||||
define('OGP_LANG_select_at_least_one_mod_or_enter_mod_id', "Select at least one mod or enter a mod ID.");
|
||||
define('OGP_LANG_no_game_servers_assigned', "ليس لديك أي خوادم مخصصة لحسابك.");
|
||||
define('LANG_game', "لعبة");
|
||||
define('LANG_select_mod', "تحديد mod");
|
||||
define('LANG_manual_workshop_mod_id', "Manual Workshop mod ID");
|
||||
define('LANG_manual_workshop_mod_id_info', "You'll find the mod id at the URL of the mod, for example 1379153273 for ARK: Survival Evolved's Solar Panel. You can install multiple mods separating them by coma.");
|
||||
define('LANG_update_in_progress', "التحديث قيد التقدم");
|
||||
define('LANG_refresh_steam_workshop_status', "Refresh Steam Workshop status");
|
||||
define('LANG_update_completed', "إكتمل التحديث بنجاح");
|
||||
define('LANG_mod_does_not_belong_to_workshop', "The mod %s does not belong to the Workshop");
|
||||
define('LANG_mod_installation_started', "Mod installation started");
|
||||
define('LANG_failed_to_start_steam_workshop', "Failed to start Steam Workshop");
|
||||
define('LANG_connection_error', "خطأ في الإتصال");
|
||||
define('LANG_install_mod', "تثبيت الوحدات");
|
||||
define('LANG_show_mod_info', "Show mods info");
|
||||
define('LANG_select_game', "حدد اللعبة");
|
||||
define('LANG_save_config', "حفظ التكوين");
|
||||
define('LANG_mod_key_not_found_from_xml', "Mod key %s not found from xml.");
|
||||
define('LANG_workshop_id', "Workshop ID");
|
||||
define('LANG_workshop_id_info', "You'll find the Workshop ID at the URL of the Workshop, for example 440900 for Conan Exiles");
|
||||
define('LANG_mods_path', "Mods Path");
|
||||
define('LANG_mods_path_info', "The relative path for the mods folder.");
|
||||
define('LANG_regex', "Regex");
|
||||
define('LANG_regex_info', "A regular expression that matches the mods in the configuration file");
|
||||
define('LANG_mods_backreference_index', "Mods Backreference Index");
|
||||
define('LANG_mods_backreference_index_info', "The position of the back reference from the part of the regex that match the mods list, starting by 0.");
|
||||
define('LANG_variable', "متغير");
|
||||
define('LANG_variable_info', "The variable that cointains the mods list, if any.");
|
||||
define('LANG_place_after', "مكان بعد");
|
||||
define('LANG_place_after_info', "The section of the configuration file where the mods list appears, if any. It will be added to the config file if does not exists yet. If the given variable is not present then it will be placed in the line after this section.");
|
||||
define('LANG_mod_string', "Mod String");
|
||||
define('LANG_mod_string_info', "The string that represents the mod in the mod list. Valid replacements: %workshop_mod_id%, %first_file% (first file is the first file found in the mod folder downloaded by SteamCMD)");
|
||||
define('LANG_string_separator', "فاصل السلسلة");
|
||||
define('LANG_string_separator_info', "The character that separates the mods in the configuration file, for example new line character (\\n) or coma (,).");
|
||||
define('LANG_filepath', "مسار الملف");
|
||||
define('LANG_filepath_info', "The path of the configuration file where the mods must be listed.");
|
||||
define('LANG_post_install', "Postinstall Script");
|
||||
define('LANG_post_install_info', "The necessary commands in bash to move the mods to the mods folder. Valid replacements: %mods_full_path% (the full path to the Wokshop mods folder), %workshop_mod_id%, %first_file% (first file is the first file found in the mod folder downloaded by SteamCMD)");
|
||||
define('LANG_install_mods', "Install Mods");
|
||||
define('LANG_uninstall_mods', "Uninstall Mods");
|
||||
define('LANG_failed_uninstalling_mod', "Failed uninstalling mod %s");
|
||||
define('LANG_uninstall', "إلغاء تثبيت البرنامج النصي");
|
||||
define('LANG_uninstall_info', "This is the script called when a mod is uninstalled, Valid replacements: %mods_full_path% (the full path to the wokshop mods folder), %mod_string% (mod string is the name listed in the configuration file for this mod).");
|
||||
define('LANG_remove_mods', "Remove Mods");
|
||||
define('LANG_do_not_close_this_page_while_mods_are_being_installed', "Do not close this page while mods are being installed.");
|
||||
define('LANG_no_game_server_selected', "لم يتم تحديد خادم اللعبة");
|
||||
define('LANG_there_are_no_mods_installed_on_this_game_server', "There are no mods installed on this game server");
|
||||
define('LANG_workshop_configuration_not_found', "Workshop configuration not found");
|
||||
define('LANG_download_method', "طريقة التحميل");
|
||||
define('LANG_anonymous_login', "تسجيل دخول كمجهول");
|
||||
define('LANG_select_at_least_one_mod_or_enter_mod_id', "Select at least one mod or enter a mod ID.");
|
||||
define('LANG_no_game_servers_assigned', "ليس لديك أي خوادم مخصصة لحسابك.");
|
||||
?>
|
||||
|
|
@ -22,43 +22,43 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_login_name', "إسم المستخدم");
|
||||
define('OGP_LANG_first_name', "الاسم الأول");
|
||||
define('OGP_LANG_last_name', "الاسم الأخير");
|
||||
define('OGP_LANG_phone_number', "رقم الهاتف");
|
||||
define('OGP_LANG_email_address', "البريد الإلكتروني");
|
||||
define('OGP_LANG_register_a_new_user', "تسجيل مستخدم جديد");
|
||||
define('OGP_LANG_password_mismatch', "عدم تطابق كلمات المرور");
|
||||
define('OGP_LANG_confirm_password', "تأكيد كلمة المرور");
|
||||
define('OGP_LANG_subuser_password', "كلمة مرور المستخدم الفرعي");
|
||||
define('OGP_LANG_subuser_man', "إدارة المستخدم الفرعي");
|
||||
define('OGP_LANG_successfull', "نجح");
|
||||
define('OGP_LANG_click_here', "انقر هنا");
|
||||
define('OGP_LANG_to_login', "لتسجيل الدخول.");
|
||||
define('OGP_LANG_registered_on', "مسجل في");
|
||||
define('OGP_LANG_register_message', "مرحبا، <br><br>تم إنشاء حساب Open Game Panel، ويمكنك الآن تسجيل الدخول باستخدام معلومات الحساب التالية:<br><br>اسم المستخدم: %s<br>كلمه السر: %s<br><br>تذكر تغيير كلمة المرور الخاصة بك في كثير من الأحيان، وأول مرة تقوم بتسجيل الدخول.<br><br>رجاءا لا ترد على هذا الأيميل!<br><br>______________________________<br>Black Market Servers");
|
||||
define('OGP_LANG_err_password', "لا يمكن أن تكون كلمة المرور فارغة");
|
||||
define('OGP_LANG_err_confirm_password', "التحقق من أن حقل كلمة المرور لا يمكن أن يكون فارغا");
|
||||
define('OGP_LANG_err_password_mismatch', "كلمات المرور غير متطابقة");
|
||||
define('OGP_LANG_err_captcha', "لا يتطابق CAPTCHA.");
|
||||
define('OGP_LANG_err_login_name', "اسم المستخدم فارغ أو قيد الاستخدام.");
|
||||
define('OGP_LANG_err_first_name', "أدخل أسمك.");
|
||||
define('OGP_LANG_err_last_name', "لم يتم إدخال الاسم الأخير.");
|
||||
define('OGP_LANG_err_phone_number', "رقم الهاتف فارغ.");
|
||||
define('OGP_LANG_err_email_address', "عنوان بريد إلكتروني فارغ أو غير صحيح.");
|
||||
define('OGP_LANG_err_users_parent', "لا يجوز لحسابات المستخدمين الفرعية إنشاء مستخدمين آخرين.");
|
||||
define('OGP_LANG_err_parent_user', "يجب أن يشير معرف مستخدم الأصل إلى مستخدم موجود مسبقا صالح.");
|
||||
define('OGP_LANG_err_email_address_already_in_use_by', "عنوان البريد الإلكتروني قيد الاستخدام من قبل <b>%s</b>.");
|
||||
define('OGP_LANG_user_registration', "تسجيل المستخدم");
|
||||
define('OGP_LANG_your_account_details_has_been_sent_by_email_to', "تم إرسال تفاصيل حسابك عبر البريد الإلكتروني إلى <b>%s</b>.");
|
||||
define('OGP_LANG_subject', "مرحبا %s, مرحبا بك في%s!");
|
||||
define('OGP_LANG_sub_user', "المستخدمين الفرعيين");
|
||||
define('OGP_LANG_create_sub_user', "إضافة مستخدم فرعي");
|
||||
define('OGP_LANG_listdel_sub_user', "قائمة، تعديل معلومات حساب المستخدم الفرعي، أو حذف المستخدم الفرعي");
|
||||
define('OGP_LANG_delete_sub_user', "تحرير / حذف المستخدم الفرعي");
|
||||
define('OGP_LANG_del_subuser_conf', "هل تريد بالتأكيد حذف هذا الحساب:");
|
||||
define('OGP_LANG_no_subusers', "لم يتم إنشاء أي مستخدمين فرعيين ضمن حسابك حتى الآن!");
|
||||
define('OGP_LANG_subuser_deleted', "المستخدم الفرعي %s تم حذفه بنجاح من قاعدة البيانات!");
|
||||
define('OGP_LANG_subuser_added', "المستخدم الفرعي %s تم إنشاء بنجاح وإضافة إلى قاعدة البيانات!");
|
||||
define('OGP_LANG_your_subusers', "حسابات المستخدمين الفرعية المملوكة");
|
||||
define('LANG_login_name', "إسم المستخدم");
|
||||
define('LANG_first_name', "الاسم الأول");
|
||||
define('LANG_last_name', "الاسم الأخير");
|
||||
define('LANG_phone_number', "رقم الهاتف");
|
||||
define('LANG_email_address', "البريد الإلكتروني");
|
||||
define('LANG_register_a_new_user', "تسجيل مستخدم جديد");
|
||||
define('LANG_password_mismatch', "عدم تطابق كلمات المرور");
|
||||
define('LANG_confirm_password', "تأكيد كلمة المرور");
|
||||
define('LANG_subuser_password', "كلمة مرور المستخدم الفرعي");
|
||||
define('LANG_subuser_man', "إدارة المستخدم الفرعي");
|
||||
define('LANG_successfull', "نجح");
|
||||
define('LANG_click_here', "انقر هنا");
|
||||
define('LANG_to_login', "لتسجيل الدخول.");
|
||||
define('LANG_registered_on', "مسجل في");
|
||||
define('LANG_register_message', "مرحبا، <br><br>تم إنشاء حساب Open Game Panel، ويمكنك الآن تسجيل الدخول باستخدام معلومات الحساب التالية:<br><br>اسم المستخدم: %s<br>كلمه السر: %s<br><br>تذكر تغيير كلمة المرور الخاصة بك في كثير من الأحيان، وأول مرة تقوم بتسجيل الدخول.<br><br>رجاءا لا ترد على هذا الأيميل!<br><br>______________________________<br>Black Market Servers");
|
||||
define('LANG_err_password', "لا يمكن أن تكون كلمة المرور فارغة");
|
||||
define('LANG_err_confirm_password', "التحقق من أن حقل كلمة المرور لا يمكن أن يكون فارغا");
|
||||
define('LANG_err_password_mismatch', "كلمات المرور غير متطابقة");
|
||||
define('LANG_err_captcha', "لا يتطابق CAPTCHA.");
|
||||
define('LANG_err_login_name', "اسم المستخدم فارغ أو قيد الاستخدام.");
|
||||
define('LANG_err_first_name', "أدخل أسمك.");
|
||||
define('LANG_err_last_name', "لم يتم إدخال الاسم الأخير.");
|
||||
define('LANG_err_phone_number', "رقم الهاتف فارغ.");
|
||||
define('LANG_err_email_address', "عنوان بريد إلكتروني فارغ أو غير صحيح.");
|
||||
define('LANG_err_users_parent', "لا يجوز لحسابات المستخدمين الفرعية إنشاء مستخدمين آخرين.");
|
||||
define('LANG_err_parent_user', "يجب أن يشير معرف مستخدم الأصل إلى مستخدم موجود مسبقا صالح.");
|
||||
define('LANG_err_email_address_already_in_use_by', "عنوان البريد الإلكتروني قيد الاستخدام من قبل <b>%s</b>.");
|
||||
define('LANG_user_registration', "تسجيل المستخدم");
|
||||
define('LANG_your_account_details_has_been_sent_by_email_to', "تم إرسال تفاصيل حسابك عبر البريد الإلكتروني إلى <b>%s</b>.");
|
||||
define('LANG_subject', "مرحبا %s, مرحبا بك في%s!");
|
||||
define('LANG_sub_user', "المستخدمين الفرعيين");
|
||||
define('LANG_create_sub_user', "إضافة مستخدم فرعي");
|
||||
define('LANG_listdel_sub_user', "قائمة، تعديل معلومات حساب المستخدم الفرعي، أو حذف المستخدم الفرعي");
|
||||
define('LANG_delete_sub_user', "تحرير / حذف المستخدم الفرعي");
|
||||
define('LANG_del_subuser_conf', "هل تريد بالتأكيد حذف هذا الحساب:");
|
||||
define('LANG_no_subusers', "لم يتم إنشاء أي مستخدمين فرعيين ضمن حسابك حتى الآن!");
|
||||
define('LANG_subuser_deleted', "المستخدم الفرعي %s تم حذفه بنجاح من قاعدة البيانات!");
|
||||
define('LANG_subuser_added', "المستخدم الفرعي %s تم إنشاء بنجاح وإضافة إلى قاعدة البيانات!");
|
||||
define('LANG_your_subusers', "حسابات المستخدمين الفرعية المملوكة");
|
||||
?>
|
||||
|
|
@ -22,17 +22,17 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_support_email_content', "لقد تلقيت طلبا للدعم من %s (%s).<br> <br> سيرفر : %s.<br> <br> %s");
|
||||
define('OGP_LANG_message_has_been_sent', "أشكركم على الاتصال بنا! تم استلام رسالتك وسنرد عليها عن طريق البريد الإلكتروني.");
|
||||
define('OGP_LANG_please_describe_your_issue_below', "يرجى استخدام النموذج أدناه لطلب الدعم لخادم اللعبة.<br> سنرد في أقرب وقت ممكن.");
|
||||
define('OGP_LANG_select_server', "اختر سيرفر");
|
||||
define('OGP_LANG_email_address', "عنوان البريد الإلكترونى");
|
||||
define('OGP_LANG_subject', "العنوان");
|
||||
define('OGP_LANG_message', "الرسالة");
|
||||
define('OGP_LANG_email_must_be_filled_out', "يجب ملء عنوان البريد الإلكتروني.");
|
||||
define('OGP_LANG_subject_must_be_filled_out', "يجب ملء العنوان.");
|
||||
define('OGP_LANG_message_must_be_filled_out', "يجب ملء الرسالة.");
|
||||
define('OGP_LANG_send', "إرسال");
|
||||
define('OGP_LANG_error', "خطأ");
|
||||
define('OGP_LANG_info', "معلومات");
|
||||
define('LANG_support_email_content', "لقد تلقيت طلبا للدعم من %s (%s).<br> <br> سيرفر : %s.<br> <br> %s");
|
||||
define('LANG_message_has_been_sent', "أشكركم على الاتصال بنا! تم استلام رسالتك وسنرد عليها عن طريق البريد الإلكتروني.");
|
||||
define('LANG_please_describe_your_issue_below', "يرجى استخدام النموذج أدناه لطلب الدعم لخادم اللعبة.<br> سنرد في أقرب وقت ممكن.");
|
||||
define('LANG_select_server', "اختر سيرفر");
|
||||
define('LANG_email_address', "عنوان البريد الإلكترونى");
|
||||
define('LANG_subject', "العنوان");
|
||||
define('LANG_message', "الرسالة");
|
||||
define('LANG_email_must_be_filled_out', "يجب ملء عنوان البريد الإلكتروني.");
|
||||
define('LANG_subject_must_be_filled_out', "يجب ملء العنوان.");
|
||||
define('LANG_message_must_be_filled_out', "يجب ملء الرسالة.");
|
||||
define('LANG_send', "إرسال");
|
||||
define('LANG_error', "خطأ");
|
||||
define('LANG_info', "معلومات");
|
||||
?>
|
||||
|
|
@ -22,94 +22,94 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_support_tickets', "تذاكر الدعم");
|
||||
define('OGP_LANG_ticket_subject', "الموضوع");
|
||||
define('OGP_LANG_ticket_status', "الحالة");
|
||||
define('OGP_LANG_ticket_updated', "آخر تحديث");
|
||||
define('OGP_LANG_ticket_options', "الخيارات");
|
||||
define('OGP_LANG_viewing_ticket', "عرض تذكرة");
|
||||
define('OGP_LANG_ticket_not_found', "معلمات التذكرة لا تتطابق مع التذكرة الموجودة.");
|
||||
define('OGP_LANG_ticket_cant_read', "عدم كفاية الإذن لعرض التذاكر.");
|
||||
define('OGP_LANG_cant_view_ticket', "غير قادر على استرداد معلومات التذكرة.");
|
||||
define('OGP_LANG_ticket_id', "اي دي التذكرة");
|
||||
define('OGP_LANG_service_id', "اي دي الخدمة");
|
||||
define('OGP_LANG_ticket_submitted', "تم إرسال التذكرة");
|
||||
define('OGP_LANG_submitter_info', "معلومات المرسل");
|
||||
define('OGP_LANG_name', "الاسم");
|
||||
define('OGP_LANG_ip', "الأيبي");
|
||||
define('OGP_LANG_role', "دور المستخدم");
|
||||
define('OGP_LANG_ticket_submit_response', "إرسال الرد");
|
||||
define('OGP_LANG_ticket_close', "أغلق");
|
||||
define('OGP_LANG_no_ticket_replies', "لا توجد أية تعليقات");
|
||||
define('OGP_LANG_no_tickets_submitted', "لم يتم تقديم تذاكر.");
|
||||
define('OGP_LANG_submit_ticket', "قدم التذكرة");
|
||||
define('OGP_LANG_ticket_service', "خدمة");
|
||||
define('OGP_LANG_ticket_message', "رسالة");
|
||||
define('OGP_LANG_ticket_errors_occured', "حدثت الأخطاء التالية عند إرسال التذكرة");
|
||||
define('OGP_LANG_no_ticket_subject', "لا موضوع للتذكرة");
|
||||
define('OGP_LANG_invalid_ticket_subject_length', "طول الموضوع غير صالح (4 إلى 64 حرفا)");
|
||||
define('OGP_LANG_invalid_home_selected', "الصفحة المحددّة غير صالحة");
|
||||
define('OGP_LANG_no_ticket_message', "لا رسالة تذكرة مقدمة");
|
||||
define('OGP_LANG_invalid_ticket_message_length', "طول رسالة التذكرة غير صالح (بحد أدنى 4 أحرف)");
|
||||
define('OGP_LANG_ticket_no_service', "لم يتم تحديد أي خدمة لهذه التذكرة.");
|
||||
define('OGP_LANG_failed_to_open', "أخفق فتح التذكرة.");
|
||||
define('OGP_LANG_failed_to_reply', "أخفقت في إنشاء استجابة للتذكرة.");
|
||||
define('OGP_LANG_no_ticket_reply', "لا رد للتذكرة المقدّمة");
|
||||
define('OGP_LANG_invalid_ticket_reply_length', "طول رد تذكرة غير صالح (بحد أدنى 4 أحرف)");
|
||||
define('OGP_LANG_ticket_closed', "تذكرة مغلقة");
|
||||
define('OGP_LANG_ticket_open', "تذكرة مفتوحة");
|
||||
define('OGP_LANG_ticket_admin_response', "رد المشرف");
|
||||
define('OGP_LANG_ticket_customer_response', "استجابة العملاء");
|
||||
define('OGP_LANG_ticket_invalid_page_num', "لقد حاولت عرض رقم الصفحة بدون تذاكر!");
|
||||
define('OGP_LANG_ticket_is_closed', "تم إغلاق هذه التذكرة. يمكنك الرد على هذه التذكرة لإعادة فتحها.");
|
||||
define('OGP_LANG_reply', "الرد");
|
||||
define('OGP_LANG_invalid_rating', "التقييم المستلم غير صالح.");
|
||||
define('OGP_LANG_successfully_rated_response', "تم تقييم الاستجابة بنجاح.");
|
||||
define('OGP_LANG_failed_rating_response', "أخفق تقييم الاستجابة.");
|
||||
define('OGP_LANG_attachment_not_all_parameters_sent', "لم يتم إرسال جميع المعلمات لتنزيل الملف.");
|
||||
define('OGP_LANG_requested_attachment_missing', "المرفق المطلوب غير موجود.");
|
||||
define('OGP_LANG_requested_attachment_missing_db', "المرفق المطلوب غير موجود في قاعدة البيانات.");
|
||||
define('OGP_LANG_ratings_disabled', "تقييم الردود غير مفعل");
|
||||
define('OGP_LANG_attachments', "مرفقات");
|
||||
define('OGP_LANG_add_file_attachment', "أضف المزيد");
|
||||
define('OGP_LANG_attachment_size_info', "قد يكون كل ملف محدد بحد أقصى من %s");
|
||||
define('OGP_LANG_attachment_file_size_info', "سيتم رفع %s ملف على الأكثر، %sلكل ملف.");
|
||||
define('OGP_LANG_attachment_allowed_extensions_info', "إضافات الملفات المسموح بها: %s");
|
||||
define('OGP_LANG_ticket_fix_before_submitting', "يرجى تصحيح الأخطاء التالية قبل إرسال التذكرة");
|
||||
define('OGP_LANG_ticket_fix_before_replying', "يرجى تصحيح الأخطاء التالية قبل الرد على التذكرة");
|
||||
define('OGP_LANG_ticket_problem_with_attachments', "حدثت مشكلة في الملف (الملفات) المرفقة");
|
||||
define('OGP_LANG_ticket_attachment_invalid_extension', "%1 لا يحتوي على إضافة مسموح بها.");
|
||||
define('OGP_LANG_ticket_attachment_invalid_size', "%1 أكبر من حجم الملف المسموح به. %2 كحد أقصى!");
|
||||
define('OGP_LANG_ticket_max_file_elements', "قد لا توجد سوى %1 من مدخلات الملف كحد أقصى.");
|
||||
define('OGP_LANG_ticket_attachment_multiple_files', "يحتوي ملف واحد أو أكثر من ملفات الإدخال على ملفات متعددة محددة");
|
||||
define('OGP_LANG_attachment_err_ini_size', "%s (%s) يتجاوز إعداد 'upload_max_filesize' setting.");
|
||||
define('OGP_LANG_attachment_err_partial', "%sتم تحميلها جزئيا فقط. ");
|
||||
define('OGP_LANG_attachment_err_no_tmp', "لا يوجد مجلد مؤقت لحفظ %s");
|
||||
define('OGP_LANG_attachment_err_cant_write', "تعذر كتابة %s إلى القرص.");
|
||||
define('OGP_LANG_attachment_err_extension', "إضافة قامت بإيقاف رفع %s. راجع السجلات.");
|
||||
define('OGP_LANG_attachment_too_large', "%s(%s) أكبر من الحجم المسموح به %s!");
|
||||
define('OGP_LANG_attachment_forbidden_type', "نوع الملف %s يمكن ان لا يتم رفعه.");
|
||||
define('OGP_LANG_attachment_directory_not_writable', "لا يمكن حفظ الملفات المرفقة. المسار المحدد للحفظ لا يمكن الكتابة فيه.");
|
||||
define('OGP_LANG_attachment_invalid_file_count', "عدد الملفات المسموح بنقلها إلى الخادم غير صحيح. يمكن رفع عدد %sمن الملفات فقط.");
|
||||
define('OGP_LANG_ratings_enabled', "تصنيفات");
|
||||
define('OGP_LANG_ratings_enabled_info', "حدد إذا كنت تريد السماح بالتصنيفات.");
|
||||
define('OGP_LANG_attachments_enabled', "مرفقات");
|
||||
define('OGP_LANG_attachments_enabled_info', "حدد إذا كنت تريد تفعيل نظام المرفقات.");
|
||||
define('OGP_LANG_attachment_max_size', "الحد الأقصى لحجم الملف");
|
||||
define('OGP_LANG_attachment_max_size_info', "قم بتحديد أقصى حجم للمرفقات.");
|
||||
define('OGP_LANG_attachment_limit', "حد المرفق");
|
||||
define('OGP_LANG_attachment_limit_info', "قم بتحديد عدد الملفات التي يمكن إرفاقها في نفس الوقت. ضع 0 لإلغاء الحد الأعلى للملفات.");
|
||||
define('OGP_LANG_attachment_save_dir', "موقع تحميل المرفقات");
|
||||
define('OGP_LANG_attachment_save_dir_info', "حدد المسار الذي سيتم رفع المرفقات إليه. من الناحية المثالية، خارج مجلد public_html أو حجب الوصول المباشر.");
|
||||
define('OGP_LANG_attachment_extensions', "ملحقات المرفقات");
|
||||
define('OGP_LANG_attachment_extensions_info', "تحدد الإمتدادات المسموح بها. كل إمتداد يجب أن يكون مفصولا بفاصلة (,).");
|
||||
define('OGP_LANG_show_php_ini', "إظهار إعدادات INI المقدَّرة");
|
||||
define('OGP_LANG_settings_errors_occured', "الأخطاء التالية حدثت عند محاولة تحديث الإعدادات. لم يتم تحديث الكل.");
|
||||
define('OGP_LANG_invalid_max_size', "قيمة غير صالحة لإعدادات الحجم الأقصى.");
|
||||
define('OGP_LANG_invalid_unit', "وحدة غير صالحة في ضبط أقصى حجم. نتوقع كيلوبايت KB ، ميجابايت MB ، جيجابايت GB ، تيرابايت TB ، بيتابايت PB.");
|
||||
define('OGP_LANG_invalid_save_dir', "لم يتم العثور على المسار المحدد للحفظ أو لا يمكن إنشاءه.");
|
||||
define('OGP_LANG_invalid_save_dir_not_writable', "المسار المحدد للحفظ موجود، لكن لا يمكن الكتابة فيه.");
|
||||
define('OGP_LANG_invalid_extensions', "لم يتم تحديد أي امتدادات لملفات المرفقات.");
|
||||
define('OGP_LANG_update_settings', "إعدادات التحديث");
|
||||
define('OGP_LANG_notifications_enabled', "إشعارات");
|
||||
define('OGP_LANG_notifications_enabled_info', "اسمح للمستخدم / المسؤول لمعرفة ما إذا كان لديه تذكرة في انتظار الرد.");
|
||||
define('LANG_support_tickets', "تذاكر الدعم");
|
||||
define('LANG_ticket_subject', "الموضوع");
|
||||
define('LANG_ticket_status', "الحالة");
|
||||
define('LANG_ticket_updated', "آخر تحديث");
|
||||
define('LANG_ticket_options', "الخيارات");
|
||||
define('LANG_viewing_ticket', "عرض تذكرة");
|
||||
define('LANG_ticket_not_found', "معلمات التذكرة لا تتطابق مع التذكرة الموجودة.");
|
||||
define('LANG_ticket_cant_read', "عدم كفاية الإذن لعرض التذاكر.");
|
||||
define('LANG_cant_view_ticket', "غير قادر على استرداد معلومات التذكرة.");
|
||||
define('LANG_ticket_id', "اي دي التذكرة");
|
||||
define('LANG_service_id', "اي دي الخدمة");
|
||||
define('LANG_ticket_submitted', "تم إرسال التذكرة");
|
||||
define('LANG_submitter_info', "معلومات المرسل");
|
||||
define('LANG_name', "الاسم");
|
||||
define('LANG_ip', "الأيبي");
|
||||
define('LANG_role', "دور المستخدم");
|
||||
define('LANG_ticket_submit_response', "إرسال الرد");
|
||||
define('LANG_ticket_close', "أغلق");
|
||||
define('LANG_no_ticket_replies', "لا توجد أية تعليقات");
|
||||
define('LANG_no_tickets_submitted', "لم يتم تقديم تذاكر.");
|
||||
define('LANG_submit_ticket', "قدم التذكرة");
|
||||
define('LANG_ticket_service', "خدمة");
|
||||
define('LANG_ticket_message', "رسالة");
|
||||
define('LANG_ticket_errors_occured', "حدثت الأخطاء التالية عند إرسال التذكرة");
|
||||
define('LANG_no_ticket_subject', "لا موضوع للتذكرة");
|
||||
define('LANG_invalid_ticket_subject_length', "طول الموضوع غير صالح (4 إلى 64 حرفا)");
|
||||
define('LANG_invalid_home_selected', "الصفحة المحددّة غير صالحة");
|
||||
define('LANG_no_ticket_message', "لا رسالة تذكرة مقدمة");
|
||||
define('LANG_invalid_ticket_message_length', "طول رسالة التذكرة غير صالح (بحد أدنى 4 أحرف)");
|
||||
define('LANG_ticket_no_service', "لم يتم تحديد أي خدمة لهذه التذكرة.");
|
||||
define('LANG_failed_to_open', "أخفق فتح التذكرة.");
|
||||
define('LANG_failed_to_reply', "أخفقت في إنشاء استجابة للتذكرة.");
|
||||
define('LANG_no_ticket_reply', "لا رد للتذكرة المقدّمة");
|
||||
define('LANG_invalid_ticket_reply_length', "طول رد تذكرة غير صالح (بحد أدنى 4 أحرف)");
|
||||
define('LANG_ticket_closed', "تذكرة مغلقة");
|
||||
define('LANG_ticket_open', "تذكرة مفتوحة");
|
||||
define('LANG_ticket_admin_response', "رد المشرف");
|
||||
define('LANG_ticket_customer_response', "استجابة العملاء");
|
||||
define('LANG_ticket_invalid_page_num', "لقد حاولت عرض رقم الصفحة بدون تذاكر!");
|
||||
define('LANG_ticket_is_closed', "تم إغلاق هذه التذكرة. يمكنك الرد على هذه التذكرة لإعادة فتحها.");
|
||||
define('LANG_reply', "الرد");
|
||||
define('LANG_invalid_rating', "التقييم المستلم غير صالح.");
|
||||
define('LANG_successfully_rated_response', "تم تقييم الاستجابة بنجاح.");
|
||||
define('LANG_failed_rating_response', "أخفق تقييم الاستجابة.");
|
||||
define('LANG_attachment_not_all_parameters_sent', "لم يتم إرسال جميع المعلمات لتنزيل الملف.");
|
||||
define('LANG_requested_attachment_missing', "المرفق المطلوب غير موجود.");
|
||||
define('LANG_requested_attachment_missing_db', "المرفق المطلوب غير موجود في قاعدة البيانات.");
|
||||
define('LANG_ratings_disabled', "تقييم الردود غير مفعل");
|
||||
define('LANG_attachments', "مرفقات");
|
||||
define('LANG_add_file_attachment', "أضف المزيد");
|
||||
define('LANG_attachment_size_info', "قد يكون كل ملف محدد بحد أقصى من %s");
|
||||
define('LANG_attachment_file_size_info', "سيتم رفع %s ملف على الأكثر، %sلكل ملف.");
|
||||
define('LANG_attachment_allowed_extensions_info', "إضافات الملفات المسموح بها: %s");
|
||||
define('LANG_ticket_fix_before_submitting', "يرجى تصحيح الأخطاء التالية قبل إرسال التذكرة");
|
||||
define('LANG_ticket_fix_before_replying', "يرجى تصحيح الأخطاء التالية قبل الرد على التذكرة");
|
||||
define('LANG_ticket_problem_with_attachments', "حدثت مشكلة في الملف (الملفات) المرفقة");
|
||||
define('LANG_ticket_attachment_invalid_extension', "%1 لا يحتوي على إضافة مسموح بها.");
|
||||
define('LANG_ticket_attachment_invalid_size', "%1 أكبر من حجم الملف المسموح به. %2 كحد أقصى!");
|
||||
define('LANG_ticket_max_file_elements', "قد لا توجد سوى %1 من مدخلات الملف كحد أقصى.");
|
||||
define('LANG_ticket_attachment_multiple_files', "يحتوي ملف واحد أو أكثر من ملفات الإدخال على ملفات متعددة محددة");
|
||||
define('LANG_attachment_err_ini_size', "%s (%s) يتجاوز إعداد 'upload_max_filesize' setting.");
|
||||
define('LANG_attachment_err_partial', "%sتم تحميلها جزئيا فقط. ");
|
||||
define('LANG_attachment_err_no_tmp', "لا يوجد مجلد مؤقت لحفظ %s");
|
||||
define('LANG_attachment_err_cant_write', "تعذر كتابة %s إلى القرص.");
|
||||
define('LANG_attachment_err_extension', "إضافة قامت بإيقاف رفع %s. راجع السجلات.");
|
||||
define('LANG_attachment_too_large', "%s(%s) أكبر من الحجم المسموح به %s!");
|
||||
define('LANG_attachment_forbidden_type', "نوع الملف %s يمكن ان لا يتم رفعه.");
|
||||
define('LANG_attachment_directory_not_writable', "لا يمكن حفظ الملفات المرفقة. المسار المحدد للحفظ لا يمكن الكتابة فيه.");
|
||||
define('LANG_attachment_invalid_file_count', "عدد الملفات المسموح بنقلها إلى الخادم غير صحيح. يمكن رفع عدد %sمن الملفات فقط.");
|
||||
define('LANG_ratings_enabled', "تصنيفات");
|
||||
define('LANG_ratings_enabled_info', "حدد إذا كنت تريد السماح بالتصنيفات.");
|
||||
define('LANG_attachments_enabled', "مرفقات");
|
||||
define('LANG_attachments_enabled_info', "حدد إذا كنت تريد تفعيل نظام المرفقات.");
|
||||
define('LANG_attachment_max_size', "الحد الأقصى لحجم الملف");
|
||||
define('LANG_attachment_max_size_info', "قم بتحديد أقصى حجم للمرفقات.");
|
||||
define('LANG_attachment_limit', "حد المرفق");
|
||||
define('LANG_attachment_limit_info', "قم بتحديد عدد الملفات التي يمكن إرفاقها في نفس الوقت. ضع 0 لإلغاء الحد الأعلى للملفات.");
|
||||
define('LANG_attachment_save_dir', "موقع تحميل المرفقات");
|
||||
define('LANG_attachment_save_dir_info', "حدد المسار الذي سيتم رفع المرفقات إليه. من الناحية المثالية، خارج مجلد public_html أو حجب الوصول المباشر.");
|
||||
define('LANG_attachment_extensions', "ملحقات المرفقات");
|
||||
define('LANG_attachment_extensions_info', "تحدد الإمتدادات المسموح بها. كل إمتداد يجب أن يكون مفصولا بفاصلة (,).");
|
||||
define('LANG_show_php_ini', "إظهار إعدادات INI المقدَّرة");
|
||||
define('LANG_settings_errors_occured', "الأخطاء التالية حدثت عند محاولة تحديث الإعدادات. لم يتم تحديث الكل.");
|
||||
define('LANG_invalid_max_size', "قيمة غير صالحة لإعدادات الحجم الأقصى.");
|
||||
define('LANG_invalid_unit', "وحدة غير صالحة في ضبط أقصى حجم. نتوقع كيلوبايت KB ، ميجابايت MB ، جيجابايت GB ، تيرابايت TB ، بيتابايت PB.");
|
||||
define('LANG_invalid_save_dir', "لم يتم العثور على المسار المحدد للحفظ أو لا يمكن إنشاءه.");
|
||||
define('LANG_invalid_save_dir_not_writable', "المسار المحدد للحفظ موجود، لكن لا يمكن الكتابة فيه.");
|
||||
define('LANG_invalid_extensions', "لم يتم تحديد أي امتدادات لملفات المرفقات.");
|
||||
define('LANG_update_settings', "إعدادات التحديث");
|
||||
define('LANG_notifications_enabled', "إشعارات");
|
||||
define('LANG_notifications_enabled_info', "اسمح للمستخدم / المسؤول لمعرفة ما إذا كان لديه تذكرة في انتظار الرد.");
|
||||
|
|
|
|||
|
|
@ -23,37 +23,37 @@
|
|||
*/
|
||||
|
||||
include('litefm.php');
|
||||
define('OGP_LANG_curl_needed', "هذه الصفحة تتطلب PHP curl module .");
|
||||
define('OGP_LANG_no_access', "أنت بحاجة إلى صلاحيات الأدمن للدخول إلى هذه الصفحة.");
|
||||
define('OGP_LANG_dwl_update', "تحميل التحديث...");
|
||||
define('OGP_LANG_dwl_complete', "تم التحميل");
|
||||
define('OGP_LANG_install_update', "تثبيت التحديث...");
|
||||
define('OGP_LANG_update_complete', "تم التحديث");
|
||||
define('OGP_LANG_ignored_files', "%s ملفات تم تجاهلها");
|
||||
define('OGP_LANG_not_updated_files_blacklisted', "لم يتم تحديث / تثبيت الملفات (القائمة السوداء):<br>%s");
|
||||
define('OGP_LANG_latest_version', "احدث اصدار");
|
||||
define('OGP_LANG_panel_version', "نسخة اللوحة");
|
||||
define('OGP_LANG_update_now', "تحديث الان");
|
||||
define('OGP_LANG_the_panel_is_up_to_date', "اللوحة محدثة لاخر إصدار.");
|
||||
define('OGP_LANG_files_overwritten', "%s ملف استبدل");
|
||||
define('OGP_LANG_files_not_overwritten', "%s لا يتم الكتابة فوق الملفات بسبب القائمة السوداء");
|
||||
define('OGP_LANG_can_not_update_non_writable_files', "لايمكن تحديث الملفات/المجلدات التالية لانها غير قابلة لإستبدال");
|
||||
define('OGP_LANG_dwl_failed', "رابط التحميل غير متوفر: \"%s\".<br>جرب مجدداً في وقت لاحق.");
|
||||
define('OGP_LANG_temp_folder_not_writable', "لا يمكن وضع التنزيل، لأن أباتشي ليس لديه إذن كتابة في المجلد المؤقت للنظام (%s).");
|
||||
define('OGP_LANG_base_dir_not_writable', "لا يمكن تحديث اللوحة، لأن أباتشي ليس لديه إذن الكتابة على مجلد \"%s\".");
|
||||
define('OGP_LANG_new_files', "%s ملف جديد");
|
||||
define('OGP_LANG_updated_files', "تحديث الملفات:<br>%s");
|
||||
define('OGP_LANG_select_mirror', "إختر مرآه");
|
||||
define('OGP_LANG_view_changes', "شاهد التغيرات");
|
||||
define('OGP_LANG_updating_modules', "تحديث الموديولات");
|
||||
define('OGP_LANG_updating_finished', "انتهى التحديث");
|
||||
define('OGP_LANG_updated_module', "تحديث الموديول : '%s'.");
|
||||
define('OGP_LANG_blacklist_files', "ملفات القائمة السوداء");
|
||||
define('OGP_LANG_blacklist_files_info', "لن يتم تحديث كافة الملفات المعلمة.");
|
||||
define('OGP_LANG_save_to_blacklist', "حفظ إلى القائمة السوداء");
|
||||
define('OGP_LANG_no_new_updates', "لا توجد تحديثات جديدة");
|
||||
define('OGP_LANG_module_file_missing', "الدليل مفقود في ملف module.php.");
|
||||
define('OGP_LANG_query_failed', "أخفق تنفيذ طلب البحث");
|
||||
define('OGP_LANG_query_failed_2', "إلى قاعدة البيانات.");
|
||||
define('OGP_LANG_missing_zip_extension', "لم يتم تحميل ملحق php-zip. الرجاء تفعيله لتمكينه من استخدام وحدة التحديث.");
|
||||
define('LANG_curl_needed', "هذه الصفحة تتطلب PHP curl module .");
|
||||
define('LANG_no_access', "أنت بحاجة إلى صلاحيات الأدمن للدخول إلى هذه الصفحة.");
|
||||
define('LANG_dwl_update', "تحميل التحديث...");
|
||||
define('LANG_dwl_complete', "تم التحميل");
|
||||
define('LANG_install_update', "تثبيت التحديث...");
|
||||
define('LANG_update_complete', "تم التحديث");
|
||||
define('LANG_ignored_files', "%s ملفات تم تجاهلها");
|
||||
define('LANG_not_updated_files_blacklisted', "لم يتم تحديث / تثبيت الملفات (القائمة السوداء):<br>%s");
|
||||
define('LANG_latest_version', "احدث اصدار");
|
||||
define('LANG_panel_version', "نسخة اللوحة");
|
||||
define('LANG_update_now', "تحديث الان");
|
||||
define('LANG_the_panel_is_up_to_date', "اللوحة محدثة لاخر إصدار.");
|
||||
define('LANG_files_overwritten', "%s ملف استبدل");
|
||||
define('LANG_files_not_overwritten', "%s لا يتم الكتابة فوق الملفات بسبب القائمة السوداء");
|
||||
define('LANG_can_not_update_non_writable_files', "لايمكن تحديث الملفات/المجلدات التالية لانها غير قابلة لإستبدال");
|
||||
define('LANG_dwl_failed', "رابط التحميل غير متوفر: \"%s\".<br>جرب مجدداً في وقت لاحق.");
|
||||
define('LANG_temp_folder_not_writable', "لا يمكن وضع التنزيل، لأن أباتشي ليس لديه إذن كتابة في المجلد المؤقت للنظام (%s).");
|
||||
define('LANG_base_dir_not_writable', "لا يمكن تحديث اللوحة، لأن أباتشي ليس لديه إذن الكتابة على مجلد \"%s\".");
|
||||
define('LANG_new_files', "%s ملف جديد");
|
||||
define('LANG_updated_files', "تحديث الملفات:<br>%s");
|
||||
define('LANG_select_mirror', "إختر مرآه");
|
||||
define('LANG_view_changes', "شاهد التغيرات");
|
||||
define('LANG_updating_modules', "تحديث الموديولات");
|
||||
define('LANG_updating_finished', "انتهى التحديث");
|
||||
define('LANG_updated_module', "تحديث الموديول : '%s'.");
|
||||
define('LANG_blacklist_files', "ملفات القائمة السوداء");
|
||||
define('LANG_blacklist_files_info', "لن يتم تحديث كافة الملفات المعلمة.");
|
||||
define('LANG_save_to_blacklist', "حفظ إلى القائمة السوداء");
|
||||
define('LANG_no_new_updates', "لا توجد تحديثات جديدة");
|
||||
define('LANG_module_file_missing', "الدليل مفقود في ملف module.php.");
|
||||
define('LANG_query_failed', "أخفق تنفيذ طلب البحث");
|
||||
define('LANG_query_failed_2', "إلى قاعدة البيانات.");
|
||||
define('LANG_missing_zip_extension', "لم يتم تحميل ملحق php-zip. الرجاء تفعيله لتمكينه من استخدام وحدة التحديث.");
|
||||
?>
|
||||
|
|
@ -22,92 +22,92 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_your_profile', "ملفك الشخصي");
|
||||
define('OGP_LANG_new_password', "كلمة السر الجديدة");
|
||||
define('OGP_LANG_retype_new_password', "أعد كتابة كلمة السر الجديدة");
|
||||
define('OGP_LANG_login_name', "اسم الدخول");
|
||||
define('OGP_LANG_language', "اللغة");
|
||||
define('OGP_LANG_first_name', "الاسم الاول");
|
||||
define('OGP_LANG_page_limit', "مواد لكل صفحة");
|
||||
define('OGP_LANG_page_limit_info', "عدد العناصر المعروضة في الصفحة. لا يمكن أن يكون عدد العناصر أقل من 10.");
|
||||
define('OGP_LANG_last_name', "الاسم الاخير");
|
||||
define('OGP_LANG_phone_number', "رقم الهاتف");
|
||||
define('OGP_LANG_email_address', "عنوان البريد الإلكتروني");
|
||||
define('OGP_LANG_city', "المدينة");
|
||||
define('OGP_LANG_province', "Province");
|
||||
define('OGP_LANG_country', "البلد");
|
||||
define('OGP_LANG_comment', "التعليقات");
|
||||
define('OGP_LANG_expires', "تنتهي في");
|
||||
define('OGP_LANG_save_profile', "Save profile");
|
||||
define('OGP_LANG_new_password_info', "When password field is empty the password will not be updated.");
|
||||
define('OGP_LANG_theme', "القالب");
|
||||
define('OGP_LANG_theme_info', "If theme is empty the global value is used.");
|
||||
define('OGP_LANG_expires_info', "Date when the user account expires. The account is not deleted, but user can not login anymore.");
|
||||
define('OGP_LANG_password_mismatch', "Passwords did not match.");
|
||||
define('OGP_LANG_current_password', "Current password");
|
||||
define('OGP_LANG_current_password_info', "Your current password.");
|
||||
define('OGP_LANG_current_password_mismatch', "Your current password did not match to the one in database.");
|
||||
define('OGP_LANG_add_new_user', "Add a new user");
|
||||
define('OGP_LANG_edit_user_groups', "Edit User Groups");
|
||||
define('OGP_LANG_users', "Users");
|
||||
define('OGP_LANG_user_role', "دور المستخدم");
|
||||
define('OGP_LANG_full_name', "Full Name");
|
||||
define('OGP_LANG_edit_games', "Edit Games");
|
||||
define('OGP_LANG_edit_profile', "Edit Profile");
|
||||
define('OGP_LANG_confirm_password', "Confirm password");
|
||||
define('OGP_LANG_you_need_to_enter_both_passwords', "You need to enter both passwords.");
|
||||
define('OGP_LANG_passwords_did_not_match', "Passwords did not match.");
|
||||
define('OGP_LANG_could_not_add_user_because_user_already_exists', "Could not add user, because user <em>%s</em> already exists.");
|
||||
define('OGP_LANG_successfully_added_user', "Successfully added user <em>%s</em>.");
|
||||
define('OGP_LANG_add_a_new_user', "Add a new user");
|
||||
define('OGP_LANG_admin', "Admin");
|
||||
define('OGP_LANG_user', "User");
|
||||
define('OGP_LANG_user_with_id_does_not_exist', "User with ID %s does not exist.");
|
||||
define('OGP_LANG_are_you_sure_you_want_to_delete_user', "Are you sure you want to delete user <em>%s</em>?");
|
||||
define('OGP_LANG_unable_to_delete_user', "Unable to delete user %s.");
|
||||
define('OGP_LANG_successfully_deleted_user', "Successfully deleted user <b>%s</b>.");
|
||||
define('OGP_LANG_failed_to_update_user_profile_error', "Failed to update user profile. Error: %s");
|
||||
define('OGP_LANG_profile_of_user_modified_successfully', "Profile of user <b>%s</b> was modified successfully.");
|
||||
define('OGP_LANG_no_subusers', "No subusers are available to be assigned to a group. Please create subuser accounts.");
|
||||
define('OGP_LANG_ownedby', "Parent Owner");
|
||||
define('OGP_LANG_andSubUsers', " And all of his subusers?");
|
||||
define('OGP_LANG_subusers', "Subusers");
|
||||
define('OGP_LANG_show_subusers', "Show Subusers");
|
||||
define('OGP_LANG_hide_subusers', "Hide Subusers");
|
||||
define('OGP_LANG_info_group', "From this page it is possible to determine user groups. You can assign servers to group so that they are availble for all of the group users.");
|
||||
define('OGP_LANG_add_new_group', "Add new group");
|
||||
define('OGP_LANG_group_name', "Group Name");
|
||||
define('OGP_LANG_add_group', "Add Group");
|
||||
define('OGP_LANG_no_groups_available', "No groups available.");
|
||||
define('OGP_LANG_delete_group', "Delete Group");
|
||||
define('OGP_LANG_add_user_to_group', "Add user to group");
|
||||
define('OGP_LANG_add_user', "Add User");
|
||||
define('OGP_LANG_remove_from_group', "Remove from group");
|
||||
define('OGP_LANG_add_server_to_group', "Add server to group");
|
||||
define('OGP_LANG_add_server', "Add Server");
|
||||
define('OGP_LANG_servers_in_group', "Servers in group");
|
||||
define('OGP_LANG_no_servers_in_group', "No servers in group %s.");
|
||||
define('OGP_LANG_available_groups', "Available Groups");
|
||||
define('OGP_LANG_assign_homes', "Assign Homes");
|
||||
define('OGP_LANG_successfully_added_group', "Successfully added group %s.");
|
||||
define('OGP_LANG_group_name_empty', "Group name can not be empty.");
|
||||
define('OGP_LANG_failed_to_add_group', "Failed to add group %s.");
|
||||
define('OGP_LANG_could_not_add_user_to_group', "Could not add user %s to group %s, because already belongs.");
|
||||
define('OGP_LANG_successfully_added_to_group', ">Successfully added %s to group <em>%s</em>.");
|
||||
define('OGP_LANG_could_not_add_server_to_group', "Could not add server to group %s, because already belongs.");
|
||||
define('OGP_LANG_successfully_added_server_to_group', "Successfully added server to group <em>%s</em>.");
|
||||
define('OGP_LANG_successfully_removed_from_group', "Successfully removed %s from group <em>%s</em>.");
|
||||
define('OGP_LANG_could_not_delete_server_from_group', "Could not delete server %s from group <em>%s</em>.");
|
||||
define('OGP_LANG_successfully_removed_server_from_group', "Successfully removed server %s from group <em>%s</em>.");
|
||||
define('OGP_LANG_group_with_id_does_not_exist', "%s group does not exist.");
|
||||
define('OGP_LANG_are_you_sure_you_want_to_delete_group', "Are you sure you want to delete group <em>%s</em>?");
|
||||
define('OGP_LANG_unable_to_delete_group', "Unable to delete %s group.");
|
||||
define('OGP_LANG_successfully_deleted_group', "Successfully deleted group <b>%s</b>.");
|
||||
define('OGP_LANG_editing_profile', "Editing Profile: %s");
|
||||
define('OGP_LANG_valid_user', "Please specify a valid user.");
|
||||
define('OGP_LANG_enter_valid_username', "Please enter a valid username.");
|
||||
define('OGP_LANG_unexpected_role', "Unexpected user role received.");
|
||||
define('OGP_LANG_search', "Search");
|
||||
define('OGP_LANG_api_token', "API token");
|
||||
define('OGP_LANG_user_receives_emails', "Receive emails");
|
||||
define('LANG_your_profile', "ملفك الشخصي");
|
||||
define('LANG_new_password', "كلمة السر الجديدة");
|
||||
define('LANG_retype_new_password', "أعد كتابة كلمة السر الجديدة");
|
||||
define('LANG_login_name', "اسم الدخول");
|
||||
define('LANG_language', "اللغة");
|
||||
define('LANG_first_name', "الاسم الاول");
|
||||
define('LANG_page_limit', "مواد لكل صفحة");
|
||||
define('LANG_page_limit_info', "عدد العناصر المعروضة في الصفحة. لا يمكن أن يكون عدد العناصر أقل من 10.");
|
||||
define('LANG_last_name', "الاسم الاخير");
|
||||
define('LANG_phone_number', "رقم الهاتف");
|
||||
define('LANG_email_address', "عنوان البريد الإلكتروني");
|
||||
define('LANG_city', "المدينة");
|
||||
define('LANG_province', "Province");
|
||||
define('LANG_country', "البلد");
|
||||
define('LANG_comment', "التعليقات");
|
||||
define('LANG_expires', "تنتهي في");
|
||||
define('LANG_save_profile', "Save profile");
|
||||
define('LANG_new_password_info', "When password field is empty the password will not be updated.");
|
||||
define('LANG_theme', "القالب");
|
||||
define('LANG_theme_info', "If theme is empty the global value is used.");
|
||||
define('LANG_expires_info', "Date when the user account expires. The account is not deleted, but user can not login anymore.");
|
||||
define('LANG_password_mismatch', "Passwords did not match.");
|
||||
define('LANG_current_password', "Current password");
|
||||
define('LANG_current_password_info', "Your current password.");
|
||||
define('LANG_current_password_mismatch', "Your current password did not match to the one in database.");
|
||||
define('LANG_add_new_user', "Add a new user");
|
||||
define('LANG_edit_user_groups', "Edit User Groups");
|
||||
define('LANG_users', "Users");
|
||||
define('LANG_user_role', "دور المستخدم");
|
||||
define('LANG_full_name', "Full Name");
|
||||
define('LANG_edit_games', "Edit Games");
|
||||
define('LANG_edit_profile', "Edit Profile");
|
||||
define('LANG_confirm_password', "Confirm password");
|
||||
define('LANG_you_need_to_enter_both_passwords', "You need to enter both passwords.");
|
||||
define('LANG_passwords_did_not_match', "Passwords did not match.");
|
||||
define('LANG_could_not_add_user_because_user_already_exists', "Could not add user, because user <em>%s</em> already exists.");
|
||||
define('LANG_successfully_added_user', "Successfully added user <em>%s</em>.");
|
||||
define('LANG_add_a_new_user', "Add a new user");
|
||||
define('LANG_admin', "Admin");
|
||||
define('LANG_user', "User");
|
||||
define('LANG_user_with_id_does_not_exist', "User with ID %s does not exist.");
|
||||
define('LANG_are_you_sure_you_want_to_delete_user', "Are you sure you want to delete user <em>%s</em>?");
|
||||
define('LANG_unable_to_delete_user', "Unable to delete user %s.");
|
||||
define('LANG_successfully_deleted_user', "Successfully deleted user <b>%s</b>.");
|
||||
define('LANG_failed_to_update_user_profile_error', "Failed to update user profile. Error: %s");
|
||||
define('LANG_profile_of_user_modified_successfully', "Profile of user <b>%s</b> was modified successfully.");
|
||||
define('LANG_no_subusers', "No subusers are available to be assigned to a group. Please create subuser accounts.");
|
||||
define('LANG_ownedby', "Parent Owner");
|
||||
define('LANG_andSubUsers', " And all of his subusers?");
|
||||
define('LANG_subusers', "Subusers");
|
||||
define('LANG_show_subusers', "Show Subusers");
|
||||
define('LANG_hide_subusers', "Hide Subusers");
|
||||
define('LANG_info_group', "From this page it is possible to determine user groups. You can assign servers to group so that they are availble for all of the group users.");
|
||||
define('LANG_add_new_group', "Add new group");
|
||||
define('LANG_group_name', "Group Name");
|
||||
define('LANG_add_group', "Add Group");
|
||||
define('LANG_no_groups_available', "No groups available.");
|
||||
define('LANG_delete_group', "Delete Group");
|
||||
define('LANG_add_user_to_group', "Add user to group");
|
||||
define('LANG_add_user', "Add User");
|
||||
define('LANG_remove_from_group', "Remove from group");
|
||||
define('LANG_add_server_to_group', "Add server to group");
|
||||
define('LANG_add_server', "Add Server");
|
||||
define('LANG_servers_in_group', "Servers in group");
|
||||
define('LANG_no_servers_in_group', "No servers in group %s.");
|
||||
define('LANG_available_groups', "Available Groups");
|
||||
define('LANG_assign_homes', "Assign Homes");
|
||||
define('LANG_successfully_added_group', "Successfully added group %s.");
|
||||
define('LANG_group_name_empty', "Group name can not be empty.");
|
||||
define('LANG_failed_to_add_group', "Failed to add group %s.");
|
||||
define('LANG_could_not_add_user_to_group', "Could not add user %s to group %s, because already belongs.");
|
||||
define('LANG_successfully_added_to_group', ">Successfully added %s to group <em>%s</em>.");
|
||||
define('LANG_could_not_add_server_to_group', "Could not add server to group %s, because already belongs.");
|
||||
define('LANG_successfully_added_server_to_group', "Successfully added server to group <em>%s</em>.");
|
||||
define('LANG_successfully_removed_from_group', "Successfully removed %s from group <em>%s</em>.");
|
||||
define('LANG_could_not_delete_server_from_group', "Could not delete server %s from group <em>%s</em>.");
|
||||
define('LANG_successfully_removed_server_from_group', "Successfully removed server %s from group <em>%s</em>.");
|
||||
define('LANG_group_with_id_does_not_exist', "%s group does not exist.");
|
||||
define('LANG_are_you_sure_you_want_to_delete_group', "Are you sure you want to delete group <em>%s</em>?");
|
||||
define('LANG_unable_to_delete_group', "Unable to delete %s group.");
|
||||
define('LANG_successfully_deleted_group', "Successfully deleted group <b>%s</b>.");
|
||||
define('LANG_editing_profile', "Editing Profile: %s");
|
||||
define('LANG_valid_user', "Please specify a valid user.");
|
||||
define('LANG_enter_valid_username', "Please enter a valid username.");
|
||||
define('LANG_unexpected_role', "Unexpected user role received.");
|
||||
define('LANG_search', "Search");
|
||||
define('LANG_api_token', "API token");
|
||||
define('LANG_user_receives_emails', "Receive emails");
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -22,202 +22,202 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_add_mods_note', "تحتاج إضافة مودز بعد إضافة سيرفر إلى مستخدم . يمكنك عمل ذلك بتعديل السيرفر.");
|
||||
define('OGP_LANG_game_servers', "سيرفرات الألعاب");
|
||||
define('OGP_LANG_game_path', "مسار اللعبة");
|
||||
define('OGP_LANG_game_path_info', "An absolute server path. Example: /home/ogpbot/OGP_User_Files/My_Server");
|
||||
define('OGP_LANG_game_server_name_info', "اسم السيرفر يساعد المستخدمين على معرفة سيرفراتهم");
|
||||
define('OGP_LANG_control_password', "التحكم في كلمة المرور");
|
||||
define('OGP_LANG_control_password_info', "كلمةالمرور هذه تستخدم للتحكم فى السيرفر . مثل كلمة السر RCON . إذا كانت خانة كلمة المرور فارغة هذا يعنى أنها مستخدمة.");
|
||||
define('OGP_LANG_add_game_home', "أضف سيرفر لعبة");
|
||||
define('OGP_LANG_game_path_empty', "مسار اللعبة لايمكن أن يكون فارغا");
|
||||
define('OGP_LANG_game_home_added', "تم إضافة سيرفر اللعبة بنجاح. إعادة توجيه لصفحة الإعدادت.");
|
||||
define('OGP_LANG_failed_to_add_home_to_db', "أخفقت إضافة الصفحة الرئيسية لقاعدة البيانات .خطأ %s.");
|
||||
define('OGP_LANG_caution_agent_offline_can_not_get_os_and_arch_showing_servers_for_all_platforms', "<b>الحذر!</b> وكيل غير متواجد حاليا، لا يمكن الحصول على نوع نظام التشغيل والهندسة المعمارية،<br> عرض الخوادم لجميع الأنظمة الأساسية:");
|
||||
define('OGP_LANG_select_remote_server', "إختر ريموت سيرفر");
|
||||
define('OGP_LANG_no_remote_servers_configured', "لا يوجد ريموت سيرفر مجهز للبانل .<br> تحتاج إلى ريموت سيرفر قبل أن تسطيع إضافة سيرفرات للمستخدمين");
|
||||
define('OGP_LANG_no_game_configurations_found', "لم يتم العثور على تهيئة لعبة. تحتاج إلى إضافة تهيئة اللعبة من");
|
||||
define('OGP_LANG_game_configurations', "> صفحة تهيئة اللعبة");
|
||||
define('OGP_LANG_add_remote_server', "أضف سيرفر.");
|
||||
define('OGP_LANG_wine_games', "ألعاب Wine");
|
||||
define('OGP_LANG_home_path', "مسار ال Home");
|
||||
define('OGP_LANG_change_home_info', "مكان تثبيت سيرفر اللعبة . مثال:/home/ogp/my_server/");
|
||||
define('OGP_LANG_game_server_name', "إسم سيرفر لعبة");
|
||||
define('OGP_LANG_change_name_info', "اسم السيرفر يساعد المستخدمين على معرفة سيرفراتهم");
|
||||
define('OGP_LANG_game_control_password', "كلمة مرور تحكم اللعبة");
|
||||
define('OGP_LANG_change_control_password_info', "مثال لكلمة مرور التحكم . rcon password");
|
||||
define('OGP_LANG_available_mods', "المودات المتاحة");
|
||||
define('OGP_LANG_note_no_mods', "لا يوجد مود متوفر لهذه اللعبة");
|
||||
define('OGP_LANG_change_home', "غير ال Home");
|
||||
define('OGP_LANG_change_control_password', "تغيير كلمة مرور التحكم");
|
||||
define('OGP_LANG_change_name', "تغيير الإسم");
|
||||
define('OGP_LANG_add_mod', "أضف مود");
|
||||
define('OGP_LANG_set_ip', "حدد ip");
|
||||
define('OGP_LANG_ips_and_ports', "IPs و Ports");
|
||||
define('OGP_LANG_mod_name', "إسم المود");
|
||||
define('OGP_LANG_max_players', "الحد الأقصى للاعبين");
|
||||
define('OGP_LANG_extra_cmd_line_args', "Extra Command Line Args");
|
||||
define('OGP_LANG_extra_cmd_line_info', "سطر الأوامر الإضافية يوفر وسيلة لإدخال حجج إضافية إلى سطر الأوامر اللعبة عند بدء تشغيله.");
|
||||
define('OGP_LANG_cpu_affinity', "وحدة المعالجة المركزية متقاربة");
|
||||
define('OGP_LANG_nice_level', "مستوى لطيف");
|
||||
define('OGP_LANG_set_options', "ضف خياراً");
|
||||
define('OGP_LANG_remove_mod', "إمسح المود");
|
||||
define('OGP_LANG_mods', "مودز");
|
||||
define('OGP_LANG_ip', "IP");
|
||||
define('OGP_LANG_port', "Port");
|
||||
define('OGP_LANG_no_ip_ports_assigned', "يجب إضافة زوج من ال IP:Port لل Home");
|
||||
define('OGP_LANG_successfully_assigned_ip_port', "Successfully assigned IP:Port pair to home.");
|
||||
define('OGP_LANG_port_range_error', "Port needs to be between range 0 and 65535.");
|
||||
define('OGP_LANG_failed_to_assing_mod_to_home', "Failed to assing mod with id %d to home.");
|
||||
define('OGP_LANG_successfully_assigned_mod_to_home', "Successfully assigned mod with id %d to home.");
|
||||
define('OGP_LANG_successfully_modified_mod', "Successfully modified mod information.");
|
||||
define('OGP_LANG_back_to_game_monitor', "Back to Game Monitor");
|
||||
define('OGP_LANG_back_to_game_servers', "Back to Game Servers");
|
||||
define('OGP_LANG_user_id_main', "المالك الأساسى");
|
||||
define('OGP_LANG_change_user_id_main', "تغير المالك الأساسى");
|
||||
define('OGP_LANG_change_user_id_main_info', "The main server home owner.");
|
||||
define('OGP_LANG_server_ftp_password', "كلمة مرور FTP");
|
||||
define('OGP_LANG_change_ftp_password', "تغيير كلمة مرور FTP");
|
||||
define('OGP_LANG_change_ftp_password_info', "This is the password to login to FTP server for this home.");
|
||||
define('OGP_LANG_Delete_old_user_assigned_homes', "Unassign home to current users.");
|
||||
define('OGP_LANG_editing_home_called', "Editing home called");
|
||||
define('OGP_LANG_control_password_updated_successfully', "Control password updated successfully.");
|
||||
define('OGP_LANG_control_password_update_failed', "Control password update failed");
|
||||
define('OGP_LANG_successfully_changed_game_server', "Successfully changed game server.");
|
||||
define('OGP_LANG_error_ocurred_on_remote_server', "Error ocurred on remote server,");
|
||||
define('OGP_LANG_ftp_password_can_not_be_changed', "FTP password can not be changed.");
|
||||
define('OGP_LANG_ftp_can_not_be_switched_on', "FTP can not be switched ON.");
|
||||
define('OGP_LANG_ftp_can_not_be_switched_off', "FTP can not be switched OFF.");
|
||||
define('OGP_LANG_invalid_home_id_entered', "تم إدخال أيدي غير صالح.");
|
||||
define('OGP_LANG_ip_port_already_in_use', "The %s:%s is already in use. Choose another one.");
|
||||
define('OGP_LANG_successfully_assigned_ip_port_to_server_id', "Successfully assigned %s:%s to home with ID %s.");
|
||||
define('OGP_LANG_no_ip_addresses_configured', "Your game server does not have any IP-addresses configured to it. You can configure them from ");
|
||||
define('OGP_LANG_server_page', "صفحة السيرفر");
|
||||
define('OGP_LANG_successfully_removed_mod', "تم حذف مود اللعبة بنجاح.");
|
||||
define('OGP_LANG_warning_agent_offline_defaulting_CPU_count_to_1', "Warning - Agent offline, defaulting CPU count to 1.");
|
||||
define('OGP_LANG_mod_install_cmds', "Mod Install CMDs");
|
||||
define('OGP_LANG_cmds_for', "أوامر ل");
|
||||
define('OGP_LANG_preinstall_cmds', "Preinstall Commands");
|
||||
define('OGP_LANG_postinstall_cmds', "Postinstall Commands");
|
||||
define('OGP_LANG_edit_preinstall_cmds', "Edit Preinstall Commands");
|
||||
define('OGP_LANG_edit_postinstall_cmds', "Edit Postinstall Commands");
|
||||
define('OGP_LANG_save_as_default_for_this_mod', "Save as default for this mod");
|
||||
define('OGP_LANG_empty', "فارغ");
|
||||
define('OGP_LANG_master_server_for_clon_update', "Master server for local update");
|
||||
define('OGP_LANG_set_as_master_server', "Set as master server");
|
||||
define('OGP_LANG_set_as_master_server_for_local_clon_update', "Set as master server for local update.");
|
||||
define('OGP_LANG_only_available_for', "Only available for '%s' hosted on the remote server named '%s'.");
|
||||
define('OGP_LANG_ftp_on', "Enable FTP");
|
||||
define('OGP_LANG_ftp_off', "Disable FTP");
|
||||
define('OGP_LANG_change_ftp_account_status', "Change FTP account status");
|
||||
define('OGP_LANG_change_ftp_account_status_info', "Once a FTP account is enabled or disabled, it is added or removed from the FTP's database.");
|
||||
define('OGP_LANG_server_ftp_login', "Server FTP Login");
|
||||
define('OGP_LANG_change_ftp_login_info', "Change the FTP Login with a customized one.");
|
||||
define('OGP_LANG_change_ftp_login', "Change FTP Login");
|
||||
define('OGP_LANG_ftp_login_can_not_be_changed', "Can not change FTP Login.");
|
||||
define('OGP_LANG_server_is_running_change_addresses_not_available', "The server is actually running, the IP cannot be changed.");
|
||||
define('OGP_LANG_change_game_type', "Change Game Type");
|
||||
define('OGP_LANG_change_game_type_info', "By changing the game type the current the mods configuration will be deleted.");
|
||||
define('OGP_LANG_force_mod_on_this_address', "Force mod on this address");
|
||||
define('OGP_LANG_successfully_assigned_mod_to_address', "Successfully assigned mod to address");
|
||||
define('OGP_LANG_switch_mods', "Switch mods");
|
||||
define('OGP_LANG_switch_mod_for_address', "Switch mod for address %s");
|
||||
define('OGP_LANG_invalid_path', "Invalid Path");
|
||||
define('OGP_LANG_add_new_game_home', "Add new game server");
|
||||
define('OGP_LANG_no_game_homes_found', "No game servers found");
|
||||
define('OGP_LANG_available_game_homes', "Available game servers");
|
||||
define('OGP_LANG_home_id', "Home ID");
|
||||
define('OGP_LANG_game_server', "Game Server");
|
||||
define('OGP_LANG_game_type', "Game Type");
|
||||
define('OGP_LANG_game_home', "Home Path");
|
||||
define('OGP_LANG_game_home_name', "Game Server Name");
|
||||
define('OGP_LANG_clone', "Clone");
|
||||
define('OGP_LANG_unassign', "Unassign");
|
||||
define('OGP_LANG_access_rights', "Access Rights");
|
||||
define('OGP_LANG_assigned_homes', "Currently Assigned Homes");
|
||||
define('OGP_LANG_assign', "Assign");
|
||||
define('OGP_LANG_allow_updates', "Allow Game Updates");
|
||||
define('OGP_LANG_allow_updates_info', "Allows user to update the game installation if that is possible.");
|
||||
define('OGP_LANG_allow_file_management', "Allow File Management");
|
||||
define('OGP_LANG_allow_file_management_info', "Allows user to access the game server with file management modules.");
|
||||
define('OGP_LANG_allow_parameter_usage', "Allow Parameter Usage");
|
||||
define('OGP_LANG_allow_parameter_usage_info', "Allows user to change available command line parameters.");
|
||||
define('OGP_LANG_allow_extra_params', "Allow Extra parametrs");
|
||||
define('OGP_LANG_allow_extra_params_info', "Allows user to modify extra command line parameters.");
|
||||
define('OGP_LANG_allow_ftp', "Allow FTP");
|
||||
define('OGP_LANG_allow_ftp_info', "Show the FTP access information to the user.");
|
||||
define('OGP_LANG_allow_custom_fields', "Allow Custom Fields");
|
||||
define('OGP_LANG_allow_custom_fields_info', "Allows user to access custom fields of the game server if any.");
|
||||
define('OGP_LANG_select_home', "Select Home to Assign");
|
||||
define('OGP_LANG_assign_new_home_to_user', "Assign New Home to user %s");
|
||||
define('OGP_LANG_assign_new_home_to_group', "Assign New Home to group %s");
|
||||
define('OGP_LANG_assigned_home_to_user', "Successfully assigned home (ID: %d) to user %s.");
|
||||
define('OGP_LANG_failed_to_assign_home_to_user', "Failed to assign home (ID: %d) to user %s.");
|
||||
define('OGP_LANG_assigned_home_to_group', "Successfully assigned home (ID: %d) to group %s.");
|
||||
define('OGP_LANG_unassigned_home_from_user', "Successfully unassigned home (ID: %d) from user %s.");
|
||||
define('OGP_LANG_unassigned_home_from_group', "Successfully unassigned home (ID: %d) from group %s.");
|
||||
define('OGP_LANG_no_homes_assigned_to_user', "No homes assigned for user %s.");
|
||||
define('OGP_LANG_no_homes_assigned_to_group', "No homes assigned for group %s.");
|
||||
define('OGP_LANG_no_more_homes_available_that_can_be_assigned_for_this_user', "No more homes available that can be assigned for this user");
|
||||
define('OGP_LANG_no_more_homes_available_that_can_be_assigned_for_this_group', "No more homes available that can be assigned for this group");
|
||||
define('OGP_LANG_you_can_add_a_new_game_server_from', "You can add a new game server from %s.");
|
||||
define('OGP_LANG_no_remote_servers_available_please_add_at_least_one', "There are no remote servers available, please add at least one!");
|
||||
define('OGP_LANG_cloning_of_home_failed', "Cloning of home with id '%s' failed.");
|
||||
define('OGP_LANG_no_mods_to_clone', "No enabled mod(s) for this game yet. None will be cloned.");
|
||||
define('OGP_LANG_failed_to_add_mod', "Failed to add mod with id '%s' to home with id '%s'.");
|
||||
define('OGP_LANG_failed_to_update_mod_settings', "Failed to update mod settings for home with id '%s'.");
|
||||
define('OGP_LANG_successfully_cloned_mods', "Successfully cloned mods for home with id '%s'.");
|
||||
define('OGP_LANG_successfully_copied_home_database', "Successfully copied home database.");
|
||||
define('OGP_LANG_copying_home_remotely', "Copying the home on remote server from '%s' to '%s'.");
|
||||
define('OGP_LANG_cloning_home', "Cloning home called '%s'");
|
||||
define('OGP_LANG_current_home_path', "Current home path");
|
||||
define('OGP_LANG_current_home_path_info', "The current location of the copied home on remote server.");
|
||||
define('OGP_LANG_clone_home', "Clone Home");
|
||||
define('OGP_LANG_new_home_name', "New Home Name");
|
||||
define('OGP_LANG_new_home_path', "New Home Path");
|
||||
define('OGP_LANG_agent_ip', "Agent IP");
|
||||
define('OGP_LANG_game_server_copy_is_running', "Game server copy is running...");
|
||||
define('OGP_LANG_game_server_copy_was_successful', "Game server copy was successful");
|
||||
define('OGP_LANG_game_server_copy_failed_with_return_code', "Game server copy failed with return code %s");
|
||||
define('OGP_LANG_clone_mods', "Clone Mods");
|
||||
define('OGP_LANG_game_server_owner', "Game server owner");
|
||||
define('OGP_LANG_the_name_of_the_server_to_help_users_to_identify_it', "The name of the server to help users to identify it.");
|
||||
define('OGP_LANG_ips_and_ports_used_in_this_home', "IPs and Ports used in this home");
|
||||
define('OGP_LANG_note_ips_and_ports_are_not_cloned', "Note - IPs and Ports are not cloned");
|
||||
define('OGP_LANG_mods_and_settings_for_this_game_server', "Mods and settings for this game server");
|
||||
define('OGP_LANG_sure_to_delete_serverid_from_remoteip_and_directory', "Are you sure you want to delete game server (ID: %s) from server %s and is in directory %s");
|
||||
define('OGP_LANG_yes_and_delete_the_files', "Yes and Delete the files");
|
||||
define('OGP_LANG_failed_to_remove_gamehome_from_database', "Failed to remove gamehome from database.");
|
||||
define('OGP_LANG_successfully_deleted_game_server_with_id', "Successfully deleted game server with ID %s.");
|
||||
define('OGP_LANG_failed_to_remove_ftp_account_from_remote_server', "Failed to remove FTP account from remote server.");
|
||||
define('OGP_LANG_remove_it_anyway', "Would you like to remove it anyway?");
|
||||
define('OGP_LANG_sucessfully_deleted', "Sucessfully deleted %s");
|
||||
define('OGP_LANG_the_agent_had_a_problem_deleting', "The Agent had a problem while deleting %s. Please, check the Agent's log.");
|
||||
define('OGP_LANG_connection_timeout_or_problems_reaching_the_agent', "Connection timeout or problems with reaching the Agent");
|
||||
define('OGP_LANG_does_not_exist_yet', "Does not exist yet.");
|
||||
define('OGP_LANG_update_settings', "Update settings");
|
||||
define('OGP_LANG_settings_updated', "Settings updated.");
|
||||
define('OGP_LANG_selected_path_already_in_use', "The selected path is already in use.");
|
||||
define('OGP_LANG_browse', "Browse");
|
||||
define('OGP_LANG_cancel', "Cancel");
|
||||
define('OGP_LANG_set_this_path', "Set this path");
|
||||
define('OGP_LANG_select_home_path', "Select home path");
|
||||
define('OGP_LANG_folder', "Folder");
|
||||
define('OGP_LANG_owner', "Owner");
|
||||
define('OGP_LANG_group', "مجموعة");
|
||||
define('OGP_LANG_level_up', "Level up");
|
||||
define('OGP_LANG_level_up_info', "Back to the previous folder.");
|
||||
define('OGP_LANG_add_folder', "أضف مجلد");
|
||||
define('OGP_LANG_add_folder_info', "Write the name for the new folder, then click on the icon.");
|
||||
define('OGP_LANG_valid_user', "من فضلك حدد مستخدم صالح");
|
||||
define('OGP_LANG_valid_group', "من فضلك حدد مجموعة صالحة");
|
||||
define('OGP_LANG_set_affinity', "Set Server Affinity");
|
||||
define('OGP_LANG_cpu_affinity_info', "Select the CPU core(s) you want to assign to the game server.");
|
||||
define('OGP_LANG_expiration_date_changed', "Expiration date for selected home has been changed.");
|
||||
define('OGP_LANG_expiration_date_could_not_be_changed', "Expiration date for selected home could not be changed.");
|
||||
define('OGP_LANG_search', "Search");
|
||||
define('OGP_LANG_ftp_account_username_too_long', "FTP username is too long. Try a shorter username no longer than 20 characters.");
|
||||
define('OGP_LANG_ftp_account_password_too_long', "FTP password is too long. Try a shorter password no longer than 20 characters.");
|
||||
define('OGP_LANG_other_servers_exist_with_path_please_change', "Other homes exist with the same path. It is recommended (but not required) that you change this path to something unique. You may have problems if you do NOT.");
|
||||
define('OGP_LANG_change_access_rights_for_selected_servers', "Change access rights for selected servers");
|
||||
define('LANG_add_mods_note', "تحتاج إضافة مودز بعد إضافة سيرفر إلى مستخدم . يمكنك عمل ذلك بتعديل السيرفر.");
|
||||
define('LANG_game_servers', "سيرفرات الألعاب");
|
||||
define('LANG_game_path', "مسار اللعبة");
|
||||
define('LANG_game_path_info', "An absolute server path. Example: /home/ogpbot/OGP_User_Files/My_Server");
|
||||
define('LANG_game_server_name_info', "اسم السيرفر يساعد المستخدمين على معرفة سيرفراتهم");
|
||||
define('LANG_control_password', "التحكم في كلمة المرور");
|
||||
define('LANG_control_password_info', "كلمةالمرور هذه تستخدم للتحكم فى السيرفر . مثل كلمة السر RCON . إذا كانت خانة كلمة المرور فارغة هذا يعنى أنها مستخدمة.");
|
||||
define('LANG_add_game_home', "أضف سيرفر لعبة");
|
||||
define('LANG_game_path_empty', "مسار اللعبة لايمكن أن يكون فارغا");
|
||||
define('LANG_game_home_added', "تم إضافة سيرفر اللعبة بنجاح. إعادة توجيه لصفحة الإعدادت.");
|
||||
define('LANG_failed_to_add_home_to_db', "أخفقت إضافة الصفحة الرئيسية لقاعدة البيانات .خطأ %s.");
|
||||
define('LANG_caution_agent_offline_can_not_get_os_and_arch_showing_servers_for_all_platforms', "<b>الحذر!</b> وكيل غير متواجد حاليا، لا يمكن الحصول على نوع نظام التشغيل والهندسة المعمارية،<br> عرض الخوادم لجميع الأنظمة الأساسية:");
|
||||
define('LANG_select_remote_server', "إختر ريموت سيرفر");
|
||||
define('LANG_no_remote_servers_configured', "لا يوجد ريموت سيرفر مجهز للبانل .<br> تحتاج إلى ريموت سيرفر قبل أن تسطيع إضافة سيرفرات للمستخدمين");
|
||||
define('LANG_no_game_configurations_found', "لم يتم العثور على تهيئة لعبة. تحتاج إلى إضافة تهيئة اللعبة من");
|
||||
define('LANG_game_configurations', "> صفحة تهيئة اللعبة");
|
||||
define('LANG_add_remote_server', "أضف سيرفر.");
|
||||
define('LANG_wine_games', "ألعاب Wine");
|
||||
define('LANG_home_path', "مسار ال Home");
|
||||
define('LANG_change_home_info', "مكان تثبيت سيرفر اللعبة . مثال:/home/ogp/my_server/");
|
||||
define('LANG_game_server_name', "إسم سيرفر لعبة");
|
||||
define('LANG_change_name_info', "اسم السيرفر يساعد المستخدمين على معرفة سيرفراتهم");
|
||||
define('LANG_game_control_password', "كلمة مرور تحكم اللعبة");
|
||||
define('LANG_change_control_password_info', "مثال لكلمة مرور التحكم . rcon password");
|
||||
define('LANG_available_mods', "المودات المتاحة");
|
||||
define('LANG_note_no_mods', "لا يوجد مود متوفر لهذه اللعبة");
|
||||
define('LANG_change_home', "غير ال Home");
|
||||
define('LANG_change_control_password', "تغيير كلمة مرور التحكم");
|
||||
define('LANG_change_name', "تغيير الإسم");
|
||||
define('LANG_add_mod', "أضف مود");
|
||||
define('LANG_set_ip', "حدد ip");
|
||||
define('LANG_ips_and_ports', "IPs و Ports");
|
||||
define('LANG_mod_name', "إسم المود");
|
||||
define('LANG_max_players', "الحد الأقصى للاعبين");
|
||||
define('LANG_extra_cmd_line_args', "Extra Command Line Args");
|
||||
define('LANG_extra_cmd_line_info', "سطر الأوامر الإضافية يوفر وسيلة لإدخال حجج إضافية إلى سطر الأوامر اللعبة عند بدء تشغيله.");
|
||||
define('LANG_cpu_affinity', "وحدة المعالجة المركزية متقاربة");
|
||||
define('LANG_nice_level', "مستوى لطيف");
|
||||
define('LANG_set_options', "ضف خياراً");
|
||||
define('LANG_remove_mod', "إمسح المود");
|
||||
define('LANG_mods', "مودز");
|
||||
define('LANG_ip', "IP");
|
||||
define('LANG_port', "Port");
|
||||
define('LANG_no_ip_ports_assigned', "يجب إضافة زوج من ال IP:Port لل Home");
|
||||
define('LANG_successfully_assigned_ip_port', "Successfully assigned IP:Port pair to home.");
|
||||
define('LANG_port_range_error', "Port needs to be between range 0 and 65535.");
|
||||
define('LANG_failed_to_assing_mod_to_home', "Failed to assing mod with id %d to home.");
|
||||
define('LANG_successfully_assigned_mod_to_home', "Successfully assigned mod with id %d to home.");
|
||||
define('LANG_successfully_modified_mod', "Successfully modified mod information.");
|
||||
define('LANG_back_to_game_monitor', "Back to Game Monitor");
|
||||
define('LANG_back_to_game_servers', "Back to Game Servers");
|
||||
define('LANG_user_id_main', "المالك الأساسى");
|
||||
define('LANG_change_user_id_main', "تغير المالك الأساسى");
|
||||
define('LANG_change_user_id_main_info', "The main server home owner.");
|
||||
define('LANG_server_ftp_password', "كلمة مرور FTP");
|
||||
define('LANG_change_ftp_password', "تغيير كلمة مرور FTP");
|
||||
define('LANG_change_ftp_password_info', "This is the password to login to FTP server for this home.");
|
||||
define('LANG_Delete_old_user_assigned_homes', "Unassign home to current users.");
|
||||
define('LANG_editing_home_called', "Editing home called");
|
||||
define('LANG_control_password_updated_successfully', "Control password updated successfully.");
|
||||
define('LANG_control_password_update_failed', "Control password update failed");
|
||||
define('LANG_successfully_changed_game_server', "Successfully changed game server.");
|
||||
define('LANG_error_ocurred_on_remote_server', "Error ocurred on remote server,");
|
||||
define('LANG_ftp_password_can_not_be_changed', "FTP password can not be changed.");
|
||||
define('LANG_ftp_can_not_be_switched_on', "FTP can not be switched ON.");
|
||||
define('LANG_ftp_can_not_be_switched_off', "FTP can not be switched OFF.");
|
||||
define('LANG_invalid_home_id_entered', "تم إدخال أيدي غير صالح.");
|
||||
define('LANG_ip_port_already_in_use', "The %s:%s is already in use. Choose another one.");
|
||||
define('LANG_successfully_assigned_ip_port_to_server_id', "Successfully assigned %s:%s to home with ID %s.");
|
||||
define('LANG_no_ip_addresses_configured', "Your game server does not have any IP-addresses configured to it. You can configure them from ");
|
||||
define('LANG_server_page', "صفحة السيرفر");
|
||||
define('LANG_successfully_removed_mod', "تم حذف مود اللعبة بنجاح.");
|
||||
define('LANG_warning_agent_offline_defaulting_CPU_count_to_1', "Warning - Agent offline, defaulting CPU count to 1.");
|
||||
define('LANG_mod_install_cmds', "Mod Install CMDs");
|
||||
define('LANG_cmds_for', "أوامر ل");
|
||||
define('LANG_preinstall_cmds', "Preinstall Commands");
|
||||
define('LANG_postinstall_cmds', "Postinstall Commands");
|
||||
define('LANG_edit_preinstall_cmds', "Edit Preinstall Commands");
|
||||
define('LANG_edit_postinstall_cmds', "Edit Postinstall Commands");
|
||||
define('LANG_save_as_default_for_this_mod', "Save as default for this mod");
|
||||
define('LANG_empty', "فارغ");
|
||||
define('LANG_master_server_for_clon_update', "Master server for local update");
|
||||
define('LANG_set_as_master_server', "Set as master server");
|
||||
define('LANG_set_as_master_server_for_local_clon_update', "Set as master server for local update.");
|
||||
define('LANG_only_available_for', "Only available for '%s' hosted on the remote server named '%s'.");
|
||||
define('LANG_ftp_on', "Enable FTP");
|
||||
define('LANG_ftp_off', "Disable FTP");
|
||||
define('LANG_change_ftp_account_status', "Change FTP account status");
|
||||
define('LANG_change_ftp_account_status_info', "Once a FTP account is enabled or disabled, it is added or removed from the FTP's database.");
|
||||
define('LANG_server_ftp_login', "Server FTP Login");
|
||||
define('LANG_change_ftp_login_info', "Change the FTP Login with a customized one.");
|
||||
define('LANG_change_ftp_login', "Change FTP Login");
|
||||
define('LANG_ftp_login_can_not_be_changed', "Can not change FTP Login.");
|
||||
define('LANG_server_is_running_change_addresses_not_available', "The server is actually running, the IP cannot be changed.");
|
||||
define('LANG_change_game_type', "Change Game Type");
|
||||
define('LANG_change_game_type_info', "By changing the game type the current the mods configuration will be deleted.");
|
||||
define('LANG_force_mod_on_this_address', "Force mod on this address");
|
||||
define('LANG_successfully_assigned_mod_to_address', "Successfully assigned mod to address");
|
||||
define('LANG_switch_mods', "Switch mods");
|
||||
define('LANG_switch_mod_for_address', "Switch mod for address %s");
|
||||
define('LANG_invalid_path', "Invalid Path");
|
||||
define('LANG_add_new_game_home', "Add new game server");
|
||||
define('LANG_no_game_homes_found', "No game servers found");
|
||||
define('LANG_available_game_homes', "Available game servers");
|
||||
define('LANG_home_id', "Home ID");
|
||||
define('LANG_game_server', "Game Server");
|
||||
define('LANG_game_type', "Game Type");
|
||||
define('LANG_game_home', "Home Path");
|
||||
define('LANG_game_home_name', "Game Server Name");
|
||||
define('LANG_clone', "Clone");
|
||||
define('LANG_unassign', "Unassign");
|
||||
define('LANG_access_rights', "Access Rights");
|
||||
define('LANG_assigned_homes', "Currently Assigned Homes");
|
||||
define('LANG_assign', "Assign");
|
||||
define('LANG_allow_updates', "Allow Game Updates");
|
||||
define('LANG_allow_updates_info', "Allows user to update the game installation if that is possible.");
|
||||
define('LANG_allow_file_management', "Allow File Management");
|
||||
define('LANG_allow_file_management_info', "Allows user to access the game server with file management modules.");
|
||||
define('LANG_allow_parameter_usage', "Allow Parameter Usage");
|
||||
define('LANG_allow_parameter_usage_info', "Allows user to change available command line parameters.");
|
||||
define('LANG_allow_extra_params', "Allow Extra parametrs");
|
||||
define('LANG_allow_extra_params_info', "Allows user to modify extra command line parameters.");
|
||||
define('LANG_allow_ftp', "Allow FTP");
|
||||
define('LANG_allow_ftp_info', "Show the FTP access information to the user.");
|
||||
define('LANG_allow_custom_fields', "Allow Custom Fields");
|
||||
define('LANG_allow_custom_fields_info', "Allows user to access custom fields of the game server if any.");
|
||||
define('LANG_select_home', "Select Home to Assign");
|
||||
define('LANG_assign_new_home_to_user', "Assign New Home to user %s");
|
||||
define('LANG_assign_new_home_to_group', "Assign New Home to group %s");
|
||||
define('LANG_assigned_home_to_user', "Successfully assigned home (ID: %d) to user %s.");
|
||||
define('LANG_failed_to_assign_home_to_user', "Failed to assign home (ID: %d) to user %s.");
|
||||
define('LANG_assigned_home_to_group', "Successfully assigned home (ID: %d) to group %s.");
|
||||
define('LANG_unassigned_home_from_user', "Successfully unassigned home (ID: %d) from user %s.");
|
||||
define('LANG_unassigned_home_from_group', "Successfully unassigned home (ID: %d) from group %s.");
|
||||
define('LANG_no_homes_assigned_to_user', "No homes assigned for user %s.");
|
||||
define('LANG_no_homes_assigned_to_group', "No homes assigned for group %s.");
|
||||
define('LANG_no_more_homes_available_that_can_be_assigned_for_this_user', "No more homes available that can be assigned for this user");
|
||||
define('LANG_no_more_homes_available_that_can_be_assigned_for_this_group', "No more homes available that can be assigned for this group");
|
||||
define('LANG_you_can_add_a_new_game_server_from', "You can add a new game server from %s.");
|
||||
define('LANG_no_remote_servers_available_please_add_at_least_one', "There are no remote servers available, please add at least one!");
|
||||
define('LANG_cloning_of_home_failed', "Cloning of home with id '%s' failed.");
|
||||
define('LANG_no_mods_to_clone', "No enabled mod(s) for this game yet. None will be cloned.");
|
||||
define('LANG_failed_to_add_mod', "Failed to add mod with id '%s' to home with id '%s'.");
|
||||
define('LANG_failed_to_update_mod_settings', "Failed to update mod settings for home with id '%s'.");
|
||||
define('LANG_successfully_cloned_mods', "Successfully cloned mods for home with id '%s'.");
|
||||
define('LANG_successfully_copied_home_database', "Successfully copied home database.");
|
||||
define('LANG_copying_home_remotely', "Copying the home on remote server from '%s' to '%s'.");
|
||||
define('LANG_cloning_home', "Cloning home called '%s'");
|
||||
define('LANG_current_home_path', "Current home path");
|
||||
define('LANG_current_home_path_info', "The current location of the copied home on remote server.");
|
||||
define('LANG_clone_home', "Clone Home");
|
||||
define('LANG_new_home_name', "New Home Name");
|
||||
define('LANG_new_home_path', "New Home Path");
|
||||
define('LANG_agent_ip', "Agent IP");
|
||||
define('LANG_game_server_copy_is_running', "Game server copy is running...");
|
||||
define('LANG_game_server_copy_was_successful', "Game server copy was successful");
|
||||
define('LANG_game_server_copy_failed_with_return_code', "Game server copy failed with return code %s");
|
||||
define('LANG_clone_mods', "Clone Mods");
|
||||
define('LANG_game_server_owner', "Game server owner");
|
||||
define('LANG_the_name_of_the_server_to_help_users_to_identify_it', "The name of the server to help users to identify it.");
|
||||
define('LANG_ips_and_ports_used_in_this_home', "IPs and Ports used in this home");
|
||||
define('LANG_note_ips_and_ports_are_not_cloned', "Note - IPs and Ports are not cloned");
|
||||
define('LANG_mods_and_settings_for_this_game_server', "Mods and settings for this game server");
|
||||
define('LANG_sure_to_delete_serverid_from_remoteip_and_directory', "Are you sure you want to delete game server (ID: %s) from server %s and is in directory %s");
|
||||
define('LANG_yes_and_delete_the_files', "Yes and Delete the files");
|
||||
define('LANG_failed_to_remove_gamehome_from_database', "Failed to remove gamehome from database.");
|
||||
define('LANG_successfully_deleted_game_server_with_id', "Successfully deleted game server with ID %s.");
|
||||
define('LANG_failed_to_remove_ftp_account_from_remote_server', "Failed to remove FTP account from remote server.");
|
||||
define('LANG_remove_it_anyway', "Would you like to remove it anyway?");
|
||||
define('LANG_sucessfully_deleted', "Sucessfully deleted %s");
|
||||
define('LANG_the_agent_had_a_problem_deleting', "The Agent had a problem while deleting %s. Please, check the Agent's log.");
|
||||
define('LANG_connection_timeout_or_problems_reaching_the_agent', "Connection timeout or problems with reaching the Agent");
|
||||
define('LANG_does_not_exist_yet', "Does not exist yet.");
|
||||
define('LANG_update_settings', "Update settings");
|
||||
define('LANG_settings_updated', "Settings updated.");
|
||||
define('LANG_selected_path_already_in_use', "The selected path is already in use.");
|
||||
define('LANG_browse', "Browse");
|
||||
define('LANG_cancel', "Cancel");
|
||||
define('LANG_set_this_path', "Set this path");
|
||||
define('LANG_select_home_path', "Select home path");
|
||||
define('LANG_folder', "Folder");
|
||||
define('LANG_owner', "Owner");
|
||||
define('LANG_group', "مجموعة");
|
||||
define('LANG_level_up', "Level up");
|
||||
define('LANG_level_up_info', "Back to the previous folder.");
|
||||
define('LANG_add_folder', "أضف مجلد");
|
||||
define('LANG_add_folder_info', "Write the name for the new folder, then click on the icon.");
|
||||
define('LANG_valid_user', "من فضلك حدد مستخدم صالح");
|
||||
define('LANG_valid_group', "من فضلك حدد مجموعة صالحة");
|
||||
define('LANG_set_affinity', "Set Server Affinity");
|
||||
define('LANG_cpu_affinity_info', "Select the CPU core(s) you want to assign to the game server.");
|
||||
define('LANG_expiration_date_changed', "Expiration date for selected home has been changed.");
|
||||
define('LANG_expiration_date_could_not_be_changed', "Expiration date for selected home could not be changed.");
|
||||
define('LANG_search', "Search");
|
||||
define('LANG_ftp_account_username_too_long', "FTP username is too long. Try a shorter username no longer than 20 characters.");
|
||||
define('LANG_ftp_account_password_too_long', "FTP password is too long. Try a shorter password no longer than 20 characters.");
|
||||
define('LANG_other_servers_exist_with_path_please_change', "Other homes exist with the same path. It is recommended (but not required) that you change this path to something unique. You may have problems if you do NOT.");
|
||||
define('LANG_change_access_rights_for_selected_servers', "Change access rights for selected servers");
|
||||
?>
|
||||
|
|
@ -22,104 +22,104 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_module_name', "خدمات");
|
||||
define('OGP_LANG_ping', "بينغ");
|
||||
define('OGP_LANG_traceroute', "متتبع");
|
||||
define('OGP_LANG_network_tools', "أدوات الشبكة");
|
||||
define('OGP_LANG_sourcemod_admins', "إدارة Sourcemod");
|
||||
define('OGP_LANG_steam_converter', "محول SteamID");
|
||||
define('OGP_LANG_your_ip', "عنوان IP الخاص بك:");
|
||||
define('OGP_LANG_loading_agents', "جارٍ تحميل الوكلاء المتصلين...");
|
||||
define('OGP_LANG_loading_failed', "فشل تحميل الوكلاء.");
|
||||
define('OGP_LANG_agents_offline', "جميع الوكلاء غير متصلين.");
|
||||
define('OGP_LANG_no_commands', "عذرا ، حساب المستخدم الخاص بك ليس لديه أوامر متاحة.");
|
||||
define('OGP_LANG_remote_target', "عنوان IP المستهدف:");
|
||||
define('OGP_LANG_command', "أمر:");
|
||||
define('OGP_LANG_select_agent', "اختر الوكيل:");
|
||||
define('OGP_LANG_chdir_failed', "مشكل: أرجع ()chdir خطأ.");
|
||||
define('OGP_LANG_agent_invalid', "تم تحديد وكيل غير صالح.");
|
||||
define('OGP_LANG_networktools_agent_offline', "غير قادر على تنفيذ الأمر الخاص بك على الوكيل المحدد ، لأنه غير متصل.");
|
||||
define('OGP_LANG_target_empty', "لم يتم تحديد هدف بعيد.");
|
||||
define('OGP_LANG_command_empty', "لم يتم تحديد أمر.");
|
||||
define('OGP_LANG_command_unavilable', "الأمر المحدد غير متوفر على الوكيل المحدد.");
|
||||
define('OGP_LANG_target_invalid', "تم إدخال عنوان IP/اسم مضيف غير صالح.");
|
||||
define('OGP_LANG_exec_failed', "انتهت المهلة أثناء انتظار الرد.");
|
||||
define('OGP_LANG_command_no_access', "You do not have access to this command. This incident will be logged.");
|
||||
define('OGP_LANG_command_hacking_attempt', "Blacklisted characters entered. This incident will be logged.");
|
||||
define('OGP_LANG_command_bad_characters', "Attempted to execute a command with malicious characters. Input received: %s %s");
|
||||
define('OGP_LANG_command_no_permissions', "Attempted to execute a command with insufficient permissions. Input received: %s %s");
|
||||
define('OGP_LANG_command_executed', "Successfully sent the following command: %s %s");
|
||||
define('OGP_LANG_no_servers', "You have no servers assigned to your account.");
|
||||
define('OGP_LANG_select_server', "حدد الخادم:");
|
||||
define('OGP_LANG_select_server_option', "تحديد...");
|
||||
define('OGP_LANG_steamid', "Steam ID:");
|
||||
define('OGP_LANG_immunity', "حصانة:");
|
||||
define('OGP_LANG_sourcemod_perms', "Sourcemod Permissions:");
|
||||
define('OGP_LANG_sourcemod_perm_root', "Sourcemod Root Flag");
|
||||
define('OGP_LANG_sourcemod_perm_custom', "Sourcemod Custom Flags");
|
||||
define('OGP_LANG_sourcemod_flag_a', "Reserved slot access.");
|
||||
define('OGP_LANG_sourcemod_flag_b', "Generic admin; required for admins.");
|
||||
define('OGP_LANG_sourcemod_flag_c', "إقصاء اللاعبين الآخرين.");
|
||||
define('OGP_LANG_sourcemod_flag_d', "حظر اللاعبين الآخرين.");
|
||||
define('OGP_LANG_sourcemod_flag_e', "إزالة الحظر.");
|
||||
define('OGP_LANG_sourcemod_flag_f', "Slay/harm other players.");
|
||||
define('OGP_LANG_sourcemod_flag_g', "Change the map or major gameplay features.");
|
||||
define('OGP_LANG_sourcemod_flag_h', "Change most CVARs.");
|
||||
define('OGP_LANG_sourcemod_flag_i', "Execute config files.");
|
||||
define('OGP_LANG_sourcemod_flag_j', "امتيازات الدردشة الخاصة.");
|
||||
define('OGP_LANG_sourcemod_flag_k', "بدء أو إنشاء تصوبت.");
|
||||
define('OGP_LANG_sourcemod_flag_l', "قم بتعيين كلمة مرور على الخادم.");
|
||||
define('OGP_LANG_sourcemod_flag_m', "Use RCON commands.");
|
||||
define('OGP_LANG_sourcemod_flag_n', "قم بتغيير sv_cheats أو استخدم أوامر الغش.");
|
||||
define('OGP_LANG_sourcemod_flag_o', "Custom Group 1.");
|
||||
define('OGP_LANG_sourcemod_flag_p', "Custom Group 2.");
|
||||
define('OGP_LANG_sourcemod_flag_q', "Custom Group 3.");
|
||||
define('OGP_LANG_sourcemod_flag_r', "Custom Group 4.");
|
||||
define('OGP_LANG_sourcemod_flag_s', "Custom Group 5.");
|
||||
define('OGP_LANG_sourcemod_flag_t', "Custom Group 6.");
|
||||
define('OGP_LANG_rcon_reload_admins_failed', "Failed to reload the admin cache via RCON; is it online?");
|
||||
define('OGP_LANG_reload_admins_failed', "Failed to reload the admin cache; \"sm_reloadadmins\" is an unknown command.");
|
||||
define('OGP_LANG_reload_admins_success', "Successfully added %s to admins_simple.ini and reloaded the admin cache.");
|
||||
define('OGP_LANG_add_success_no_rcon', "Successfully added %s to your admins_simple.ini file, but unable to reload the admin cache.");
|
||||
define('OGP_LANG_writefile_error', "There was an unknown error writing to: %s");
|
||||
define('OGP_LANG_remotefile_nonexistent', "Unable to add a new admin. Admin file: %s doesn\'t exist on this server.");
|
||||
define('OGP_LANG_empty_flag_list', "لم تحدد أي علامات المشرف.");
|
||||
define('OGP_LANG_invalid_steam_format', "The SteamID you entered doesn\'t match the required pattern.");
|
||||
define('OGP_LANG_selected_server_offline', "Unable to add an admin, the agent controlling the selected server is offline.");
|
||||
define('OGP_LANG_malformed_form', "You submitted a form with malformed hidden elements - unable to add an admin.");
|
||||
define('OGP_LANG_empty_form_data', "يرجى ملء جميع عناصر النموذج.");
|
||||
define('OGP_LANG_server_not_selected', "لم تقم بتحديد خادم.");
|
||||
define('OGP_LANG_invalid_steamid', "You have entered an invalid Steam ID.");
|
||||
define('OGP_LANG_invalid_immunity', "You entered an invalid immunity value.");
|
||||
define('OGP_LANG_submit', "إرسال");
|
||||
define('OGP_LANG_post_failed', "The POST action failed. Unable to retrieve a response.");
|
||||
define('OGP_LANG_amx_mod_admins', "AMX mod X Admins");
|
||||
define('OGP_LANG_amx_login_type', "نوع تسجيل الدخول");
|
||||
define('OGP_LANG_amx_login_steamid', "Steam ID");
|
||||
define('OGP_LANG_amx_login_nick_pass', "الكنية + كلمة المرور");
|
||||
define('OGP_LANG_nickname', "الكنية");
|
||||
define('OGP_LANG_amx_mod_perms', "AMX mod X Permissions:");
|
||||
define('OGP_LANG_amx_mod_perm_root', "AMX mod X All Flags.");
|
||||
define('OGP_LANG_amx_mod_perm_custom', "AMX mod X Custom Flags.");
|
||||
define('OGP_LANG_amx_mod_flag_a', "immunity (can't be kicked/baned/slayed/slaped and affected by other commmands)");
|
||||
define('OGP_LANG_amx_mod_flag_b', "reservation (can join on reserved slots)");
|
||||
define('OGP_LANG_amx_mod_flag_c', "amx_kick command");
|
||||
define('OGP_LANG_amx_mod_flag_d', "amx_ban and amx_unban commands");
|
||||
define('OGP_LANG_amx_mod_flag_e', "amx_slay and amx_slap commands");
|
||||
define('OGP_LANG_amx_mod_flag_f', "amx_map command");
|
||||
define('OGP_LANG_amx_mod_flag_g', "amx_cvar command (not all cvars will be available)");
|
||||
define('OGP_LANG_amx_mod_flag_h', "amx_cfg command");
|
||||
define('OGP_LANG_amx_mod_flag_i', "amx_chat and other chat commands");
|
||||
define('OGP_LANG_amx_mod_flag_j', "amx_vote and other vote commands");
|
||||
define('OGP_LANG_amx_mod_flag_k', "access to sv_password cvar (by amx_cvar command)");
|
||||
define('OGP_LANG_amx_mod_flag_l', "access to amx_rcon command and rcon_password cvar (by amx_cvar command)");
|
||||
define('OGP_LANG_amx_mod_flag_m', "custom level A (for additional plugins)");
|
||||
define('OGP_LANG_amx_mod_flag_n', "custom level B");
|
||||
define('OGP_LANG_amx_mod_flag_o', "custom level C");
|
||||
define('OGP_LANG_amx_mod_flag_p', "custom level D");
|
||||
define('OGP_LANG_amx_mod_flag_q', "custom level E");
|
||||
define('OGP_LANG_amx_mod_flag_r', "custom level F");
|
||||
define('OGP_LANG_amx_mod_flag_s', "custom level G");
|
||||
define('OGP_LANG_amx_mod_flag_t', "custom level H");
|
||||
define('OGP_LANG_amx_mod_flag_u', "الوصول إلى القائمة");
|
||||
define('LANG_module_name', "خدمات");
|
||||
define('LANG_ping', "بينغ");
|
||||
define('LANG_traceroute', "متتبع");
|
||||
define('LANG_network_tools', "أدوات الشبكة");
|
||||
define('LANG_sourcemod_admins', "إدارة Sourcemod");
|
||||
define('LANG_steam_converter', "محول SteamID");
|
||||
define('LANG_your_ip', "عنوان IP الخاص بك:");
|
||||
define('LANG_loading_agents', "جارٍ تحميل الوكلاء المتصلين...");
|
||||
define('LANG_loading_failed', "فشل تحميل الوكلاء.");
|
||||
define('LANG_agents_offline', "جميع الوكلاء غير متصلين.");
|
||||
define('LANG_no_commands', "عذرا ، حساب المستخدم الخاص بك ليس لديه أوامر متاحة.");
|
||||
define('LANG_remote_target', "عنوان IP المستهدف:");
|
||||
define('LANG_command', "أمر:");
|
||||
define('LANG_select_agent', "اختر الوكيل:");
|
||||
define('LANG_chdir_failed', "مشكل: أرجع ()chdir خطأ.");
|
||||
define('LANG_agent_invalid', "تم تحديد وكيل غير صالح.");
|
||||
define('LANG_networktools_agent_offline', "غير قادر على تنفيذ الأمر الخاص بك على الوكيل المحدد ، لأنه غير متصل.");
|
||||
define('LANG_target_empty', "لم يتم تحديد هدف بعيد.");
|
||||
define('LANG_command_empty', "لم يتم تحديد أمر.");
|
||||
define('LANG_command_unavilable', "الأمر المحدد غير متوفر على الوكيل المحدد.");
|
||||
define('LANG_target_invalid', "تم إدخال عنوان IP/اسم مضيف غير صالح.");
|
||||
define('LANG_exec_failed', "انتهت المهلة أثناء انتظار الرد.");
|
||||
define('LANG_command_no_access', "You do not have access to this command. This incident will be logged.");
|
||||
define('LANG_command_hacking_attempt', "Blacklisted characters entered. This incident will be logged.");
|
||||
define('LANG_command_bad_characters', "Attempted to execute a command with malicious characters. Input received: %s %s");
|
||||
define('LANG_command_no_permissions', "Attempted to execute a command with insufficient permissions. Input received: %s %s");
|
||||
define('LANG_command_executed', "Successfully sent the following command: %s %s");
|
||||
define('LANG_no_servers', "You have no servers assigned to your account.");
|
||||
define('LANG_select_server', "حدد الخادم:");
|
||||
define('LANG_select_server_option', "تحديد...");
|
||||
define('LANG_steamid', "Steam ID:");
|
||||
define('LANG_immunity', "حصانة:");
|
||||
define('LANG_sourcemod_perms', "Sourcemod Permissions:");
|
||||
define('LANG_sourcemod_perm_root', "Sourcemod Root Flag");
|
||||
define('LANG_sourcemod_perm_custom', "Sourcemod Custom Flags");
|
||||
define('LANG_sourcemod_flag_a', "Reserved slot access.");
|
||||
define('LANG_sourcemod_flag_b', "Generic admin; required for admins.");
|
||||
define('LANG_sourcemod_flag_c', "إقصاء اللاعبين الآخرين.");
|
||||
define('LANG_sourcemod_flag_d', "حظر اللاعبين الآخرين.");
|
||||
define('LANG_sourcemod_flag_e', "إزالة الحظر.");
|
||||
define('LANG_sourcemod_flag_f', "Slay/harm other players.");
|
||||
define('LANG_sourcemod_flag_g', "Change the map or major gameplay features.");
|
||||
define('LANG_sourcemod_flag_h', "Change most CVARs.");
|
||||
define('LANG_sourcemod_flag_i', "Execute config files.");
|
||||
define('LANG_sourcemod_flag_j', "امتيازات الدردشة الخاصة.");
|
||||
define('LANG_sourcemod_flag_k', "بدء أو إنشاء تصوبت.");
|
||||
define('LANG_sourcemod_flag_l', "قم بتعيين كلمة مرور على الخادم.");
|
||||
define('LANG_sourcemod_flag_m', "Use RCON commands.");
|
||||
define('LANG_sourcemod_flag_n', "قم بتغيير sv_cheats أو استخدم أوامر الغش.");
|
||||
define('LANG_sourcemod_flag_o', "Custom Group 1.");
|
||||
define('LANG_sourcemod_flag_p', "Custom Group 2.");
|
||||
define('LANG_sourcemod_flag_q', "Custom Group 3.");
|
||||
define('LANG_sourcemod_flag_r', "Custom Group 4.");
|
||||
define('LANG_sourcemod_flag_s', "Custom Group 5.");
|
||||
define('LANG_sourcemod_flag_t', "Custom Group 6.");
|
||||
define('LANG_rcon_reload_admins_failed', "Failed to reload the admin cache via RCON; is it online?");
|
||||
define('LANG_reload_admins_failed', "Failed to reload the admin cache; \"sm_reloadadmins\" is an unknown command.");
|
||||
define('LANG_reload_admins_success', "Successfully added %s to admins_simple.ini and reloaded the admin cache.");
|
||||
define('LANG_add_success_no_rcon', "Successfully added %s to your admins_simple.ini file, but unable to reload the admin cache.");
|
||||
define('LANG_writefile_error', "There was an unknown error writing to: %s");
|
||||
define('LANG_remotefile_nonexistent', "Unable to add a new admin. Admin file: %s doesn\'t exist on this server.");
|
||||
define('LANG_empty_flag_list', "لم تحدد أي علامات المشرف.");
|
||||
define('LANG_invalid_steam_format', "The SteamID you entered doesn\'t match the required pattern.");
|
||||
define('LANG_selected_server_offline', "Unable to add an admin, the agent controlling the selected server is offline.");
|
||||
define('LANG_malformed_form', "You submitted a form with malformed hidden elements - unable to add an admin.");
|
||||
define('LANG_empty_form_data', "يرجى ملء جميع عناصر النموذج.");
|
||||
define('LANG_server_not_selected', "لم تقم بتحديد خادم.");
|
||||
define('LANG_invalid_steamid', "You have entered an invalid Steam ID.");
|
||||
define('LANG_invalid_immunity', "You entered an invalid immunity value.");
|
||||
define('LANG_submit', "إرسال");
|
||||
define('LANG_post_failed', "The POST action failed. Unable to retrieve a response.");
|
||||
define('LANG_amx_mod_admins', "AMX mod X Admins");
|
||||
define('LANG_amx_login_type', "نوع تسجيل الدخول");
|
||||
define('LANG_amx_login_steamid', "Steam ID");
|
||||
define('LANG_amx_login_nick_pass', "الكنية + كلمة المرور");
|
||||
define('LANG_nickname', "الكنية");
|
||||
define('LANG_amx_mod_perms', "AMX mod X Permissions:");
|
||||
define('LANG_amx_mod_perm_root', "AMX mod X All Flags.");
|
||||
define('LANG_amx_mod_perm_custom', "AMX mod X Custom Flags.");
|
||||
define('LANG_amx_mod_flag_a', "immunity (can't be kicked/baned/slayed/slaped and affected by other commmands)");
|
||||
define('LANG_amx_mod_flag_b', "reservation (can join on reserved slots)");
|
||||
define('LANG_amx_mod_flag_c', "amx_kick command");
|
||||
define('LANG_amx_mod_flag_d', "amx_ban and amx_unban commands");
|
||||
define('LANG_amx_mod_flag_e', "amx_slay and amx_slap commands");
|
||||
define('LANG_amx_mod_flag_f', "amx_map command");
|
||||
define('LANG_amx_mod_flag_g', "amx_cvar command (not all cvars will be available)");
|
||||
define('LANG_amx_mod_flag_h', "amx_cfg command");
|
||||
define('LANG_amx_mod_flag_i', "amx_chat and other chat commands");
|
||||
define('LANG_amx_mod_flag_j', "amx_vote and other vote commands");
|
||||
define('LANG_amx_mod_flag_k', "access to sv_password cvar (by amx_cvar command)");
|
||||
define('LANG_amx_mod_flag_l', "access to amx_rcon command and rcon_password cvar (by amx_cvar command)");
|
||||
define('LANG_amx_mod_flag_m', "custom level A (for additional plugins)");
|
||||
define('LANG_amx_mod_flag_n', "custom level B");
|
||||
define('LANG_amx_mod_flag_o', "custom level C");
|
||||
define('LANG_amx_mod_flag_p', "custom level D");
|
||||
define('LANG_amx_mod_flag_q', "custom level E");
|
||||
define('LANG_amx_mod_flag_r', "custom level F");
|
||||
define('LANG_amx_mod_flag_s', "custom level G");
|
||||
define('LANG_amx_mod_flag_t', "custom level H");
|
||||
define('LANG_amx_mod_flag_u', "الوصول إلى القائمة");
|
||||
?>
|
||||
|
|
@ -22,122 +22,122 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_lang_charset', "UTF-8");
|
||||
define('OGP_LANG_already_logged_in_redirecting_to_dashboard', "Več ste prijavljeni, preusmjeravamo do Nadzorne Ploče.");
|
||||
define('OGP_LANG_logging_in', "Prijavljivanje");
|
||||
define('OGP_LANG_redirecting_in', "Preusmjeravanje");
|
||||
define('OGP_LANG_refresh_page', "Osvježiti Stranicu");
|
||||
define('OGP_LANG_no_rights', "Nemate pristup ovoj stranici.");
|
||||
define('OGP_LANG_welcome', "Dobrodošli");
|
||||
define('OGP_LANG_logout', "Odjava");
|
||||
define('OGP_LANG_logout_message', "Odjavljeni ste.");
|
||||
define('OGP_LANG_support', "Podrška");
|
||||
define('OGP_LANG_password', "Lozinka");
|
||||
define('OGP_LANG_login', "Korisničko Ime");
|
||||
define('OGP_LANG_login_button', "Prijava");
|
||||
define('OGP_LANG_solve_captcha', "Jeste možda robot");
|
||||
define('OGP_LANG_lost_passwd', "Zaboravljena lozinka?");
|
||||
define('OGP_LANG_no_db_connection', "Povezivanje s bazom podataka nije uspjelo.");
|
||||
define('OGP_LANG_bad_login', "Krivo korisničko ime ili lozinka.");
|
||||
define('OGP_LANG_not_logged_in', "Trenutno niste prijavljeni.");
|
||||
define('OGP_LANG_remove_install', "Molimo izbrišite install.php datoteku iz sigurnosnih razloga.");
|
||||
define('OGP_LANG_agent_offline', "Agent koji kontrolira ovaj Server nije dostupan.");
|
||||
define('OGP_LANG_logged_in', "Prijavljeni ste kao");
|
||||
define('OGP_LANG_delete', "Obrisati");
|
||||
define('OGP_LANG_edit', "Urediti");
|
||||
define('OGP_LANG_actions', "Radnje");
|
||||
define('OGP_LANG_invalid_subpage', "Nevažeća podstranica.");
|
||||
define('OGP_LANG_invalid_home_id', "Krivi Home ID ukucan.");
|
||||
define('OGP_LANG_note', "NAPOMENA");
|
||||
define('OGP_LANG_hint', "SAVJET");
|
||||
define('OGP_LANG_yes', "Da");
|
||||
define('OGP_LANG_no', "Ne");
|
||||
define('OGP_LANG_on', "Uključeno");
|
||||
define('OGP_LANG_off', "Isključeno");
|
||||
define('OGP_LANG_db_error_invalid_host', "Nevažeći host baze podataka.");
|
||||
define('OGP_LANG_db_error_invalid_user_and_pass', "Nevažeće korisničko ime i/ili zaporka baze podataka.");
|
||||
define('OGP_LANG_db_error_invalid_database', "Nevažeća baza podataka.");
|
||||
define('OGP_LANG_db_unknown_error', "Nepoznata pogreška baze podataka: %s");
|
||||
define('OGP_LANG_db_error_module_missing', "Nedostaje potreban modul PHP baze podataka.");
|
||||
define('OGP_LANG_db_error_invalid_db_type', "Nevažeća vrsta baze podataka u konfiguracijskoj datoteci.");
|
||||
define('OGP_LANG_invalid_login_information', "Uneseni su nevažeći podaci za prijavu.");
|
||||
define('OGP_LANG_failed_to_read_config', "Čitanje konfiguracijske datoteke nije uspjelo.");
|
||||
define('OGP_LANG_account_expired', "Vaš je račun istekao.");
|
||||
define('OGP_LANG_contact_admin_to_enable_account', "Kontaktirajte svog administratora kako biste ponovno omogućili svoj račun.");
|
||||
define('OGP_LANG_maintenance_mode_on', "Način održavanja je uključen");
|
||||
define('OGP_LANG_logging_out_10', "Odjava za 10 sekundi");
|
||||
define('OGP_LANG_invalid_redirect', "Preusmjeravanje");
|
||||
define('OGP_LANG_login_title', "Prijava na Panel");
|
||||
define('OGP_LANG_module_not_installed', "Modul nije instaliran.");
|
||||
define('OGP_LANG_no_access_to_home', "Nemate pristup ovom Home-u.");
|
||||
define('OGP_LANG_not_available', "N/A");
|
||||
define('OGP_LANG_offline', "Izvan mreže");
|
||||
define('OGP_LANG_online', "Na mreži");
|
||||
define('OGP_LANG_invalid_url', "Neispravni URL");
|
||||
define('OGP_LANG_xml_file_not_valid', "XML datoteku '%s' nije bilo moguće provjeriti pomoću sheme '%s'.");
|
||||
define('OGP_LANG_unable_to_load_xml', "Nije moguće učitati XML datoteku '%s'. Problemi s dopuštenjem?");
|
||||
define('OGP_LANG_gamemanager', "Upravitelj Igara");
|
||||
define('OGP_LANG_game_monitor', "Monitor Igara");
|
||||
define('OGP_LANG_dashboard', "Nadzorna Ploča");
|
||||
define('OGP_LANG_user_addons', "Dodaci");
|
||||
define('OGP_LANG_ftp', "FTP");
|
||||
define('OGP_LANG_shop', "Kupovina");
|
||||
define('OGP_LANG_shop_guest', "Kupovina");
|
||||
define('OGP_LANG_TS3Admin', "TS3 Admin");
|
||||
define('OGP_LANG_administration', "Administracija");
|
||||
define('OGP_LANG_config_games', "Konfiguracija Igre/Modovi");
|
||||
define('OGP_LANG_modulemanager', "Moduli");
|
||||
define('OGP_LANG_server', "Poslužitelji");
|
||||
define('OGP_LANG_settings', "Postavke Panela");
|
||||
define('OGP_LANG_themes', "Postavke Teme");
|
||||
define('OGP_LANG_user_admin', "Korisnici");
|
||||
define('OGP_LANG_sub_users', "Pod Korisnici");
|
||||
define('OGP_LANG_show_groups', "Grupe");
|
||||
define('OGP_LANG_user_games', "Igrice");
|
||||
define('OGP_LANG_addons_manager', "Upravitelj Dodataka");
|
||||
define('OGP_LANG_ftp_admin', "FTP Korisnici");
|
||||
define('OGP_LANG_orders', "Narudžbe");
|
||||
define('OGP_LANG_services', "Postavke Prodaje");
|
||||
define('OGP_LANG_shop_settings', "Postavke Trgovine");
|
||||
define('OGP_LANG_update', "Ažurirati Panel");
|
||||
define('OGP_LANG_extras', "Dodaci za Panel");
|
||||
define('OGP_LANG_show', "Pokazati");
|
||||
define('OGP_LANG_show_all', "Pokazati sve Servere");
|
||||
define('OGP_LANG_cur_theme', "%s Tema");
|
||||
define('OGP_LANG_copyright', "Autorska Prava");
|
||||
define('OGP_LANG_all_rights_reserved', "Sva prava pridržana");
|
||||
define('OGP_LANG_version', "Verzija");
|
||||
define('OGP_LANG_show_version', "Pokazati Verziju");
|
||||
define('OGP_LANG_queries_executed', "upita izvršena");
|
||||
define('OGP_LANG_lang', "Jezik");
|
||||
define('OGP_LANG_get_size', "Prikaži veličinu");
|
||||
define('OGP_LANG_total_size', "Ukupna veličina");
|
||||
define('OGP_LANG_lgsl', "LGSL");
|
||||
define('OGP_LANG_lgsl_admin', "Postavke LGSL-a");
|
||||
define('OGP_LANG_rcon', "RCON");
|
||||
define('OGP_LANG_watch_logger', "Glavni Zapisnik");
|
||||
define('OGP_LANG_litefm_settings', "Postavke LiteFM-a");
|
||||
define('OGP_LANG_assign_expiration_date', "Dodijeli datum isteka");
|
||||
define('OGP_LANG_assign_expiration_date_info', "Kada istekne, server više nije dodijeljen, ali nije uklonjen.");
|
||||
define('OGP_LANG_server_expiration_date', "Datum isteka servera");
|
||||
define('OGP_LANG_server_expiration_date_info', "Kada istekne, server se uklanja (baza podataka i datoteke).");
|
||||
define('OGP_LANG_set_expiration_date', "Postavite datum isteka");
|
||||
define('OGP_LANG_admin_dsi', "Postavke DSi-a");
|
||||
define('OGP_LANG_user_dsi', "DSi");
|
||||
define('OGP_LANG_list_dsi', "DSi Popis");
|
||||
define('OGP_LANG_no_remote_servers', "Nema poznatih udaljenih servera! Dodajte server da biste koristili ovu funkciju.");
|
||||
define('OGP_LANG_no_results_found', "Nije pronađen nijedan rezultat pretraživanja %s");
|
||||
define('OGP_LANG_tickets', "Korisnička Podrška");
|
||||
define('OGP_LANG_news', "Novosti");
|
||||
define('OGP_LANG_admin_news', "Postavke Novosti ");
|
||||
define('OGP_LANG_util', "Brze Usluge za Igrice");
|
||||
define('OGP_LANG_fast_download', "Postavke Brzog Skidanja");
|
||||
define('OGP_LANG_fd_user', "Brzo Skidanje");
|
||||
define('OGP_LANG_cron', "Postavke Cron-a");
|
||||
define('OGP_LANG_user_cron', "Cron");
|
||||
define('OGP_LANG_faq', "F.A.Q.");
|
||||
define('OGP_LANG_mysql_admin', "Postavke MySQL-a");
|
||||
define('OGP_LANG_copied', "Kopirano!");
|
||||
define('OGP_LANG_ticket_settings', "Postavke Korisničke Podrške");
|
||||
define('OGP_LANG_form', "Registracija");
|
||||
define('LANG_lang_charset', "UTF-8");
|
||||
define('LANG_already_logged_in_redirecting_to_dashboard', "Več ste prijavljeni, preusmjeravamo do Nadzorne Ploče.");
|
||||
define('LANG_logging_in', "Prijavljivanje");
|
||||
define('LANG_redirecting_in', "Preusmjeravanje");
|
||||
define('LANG_refresh_page', "Osvježiti Stranicu");
|
||||
define('LANG_no_rights', "Nemate pristup ovoj stranici.");
|
||||
define('LANG_welcome', "Dobrodošli");
|
||||
define('LANG_logout', "Odjava");
|
||||
define('LANG_logout_message', "Odjavljeni ste.");
|
||||
define('LANG_support', "Podrška");
|
||||
define('LANG_password', "Lozinka");
|
||||
define('LANG_login', "Korisničko Ime");
|
||||
define('LANG_login_button', "Prijava");
|
||||
define('LANG_solve_captcha', "Jeste možda robot");
|
||||
define('LANG_lost_passwd', "Zaboravljena lozinka?");
|
||||
define('LANG_no_db_connection', "Povezivanje s bazom podataka nije uspjelo.");
|
||||
define('LANG_bad_login', "Krivo korisničko ime ili lozinka.");
|
||||
define('LANG_not_logged_in', "Trenutno niste prijavljeni.");
|
||||
define('LANG_remove_install', "Molimo izbrišite install.php datoteku iz sigurnosnih razloga.");
|
||||
define('LANG_agent_offline', "Agent koji kontrolira ovaj Server nije dostupan.");
|
||||
define('LANG_logged_in', "Prijavljeni ste kao");
|
||||
define('LANG_delete', "Obrisati");
|
||||
define('LANG_edit', "Urediti");
|
||||
define('LANG_actions', "Radnje");
|
||||
define('LANG_invalid_subpage', "Nevažeća podstranica.");
|
||||
define('LANG_invalid_home_id', "Krivi Home ID ukucan.");
|
||||
define('LANG_note', "NAPOMENA");
|
||||
define('LANG_hint', "SAVJET");
|
||||
define('LANG_yes', "Da");
|
||||
define('LANG_no', "Ne");
|
||||
define('LANG_on', "Uključeno");
|
||||
define('LANG_off', "Isključeno");
|
||||
define('LANG_db_error_invalid_host', "Nevažeći host baze podataka.");
|
||||
define('LANG_db_error_invalid_user_and_pass', "Nevažeće korisničko ime i/ili zaporka baze podataka.");
|
||||
define('LANG_db_error_invalid_database', "Nevažeća baza podataka.");
|
||||
define('LANG_db_unknown_error', "Nepoznata pogreška baze podataka: %s");
|
||||
define('LANG_db_error_module_missing', "Nedostaje potreban modul PHP baze podataka.");
|
||||
define('LANG_db_error_invalid_db_type', "Nevažeća vrsta baze podataka u konfiguracijskoj datoteci.");
|
||||
define('LANG_invalid_login_information', "Uneseni su nevažeći podaci za prijavu.");
|
||||
define('LANG_failed_to_read_config', "Čitanje konfiguracijske datoteke nije uspjelo.");
|
||||
define('LANG_account_expired', "Vaš je račun istekao.");
|
||||
define('LANG_contact_admin_to_enable_account', "Kontaktirajte svog administratora kako biste ponovno omogućili svoj račun.");
|
||||
define('LANG_maintenance_mode_on', "Način održavanja je uključen");
|
||||
define('LANG_logging_out_10', "Odjava za 10 sekundi");
|
||||
define('LANG_invalid_redirect', "Preusmjeravanje");
|
||||
define('LANG_login_title', "Prijava na Panel");
|
||||
define('LANG_module_not_installed', "Modul nije instaliran.");
|
||||
define('LANG_no_access_to_home', "Nemate pristup ovom Home-u.");
|
||||
define('LANG_not_available', "N/A");
|
||||
define('LANG_offline', "Izvan mreže");
|
||||
define('LANG_online', "Na mreži");
|
||||
define('LANG_invalid_url', "Neispravni URL");
|
||||
define('LANG_xml_file_not_valid', "XML datoteku '%s' nije bilo moguće provjeriti pomoću sheme '%s'.");
|
||||
define('LANG_unable_to_load_xml', "Nije moguće učitati XML datoteku '%s'. Problemi s dopuštenjem?");
|
||||
define('LANG_gamemanager', "Upravitelj Igara");
|
||||
define('LANG_game_monitor', "Monitor Igara");
|
||||
define('LANG_dashboard', "Nadzorna Ploča");
|
||||
define('LANG_user_addons', "Dodaci");
|
||||
define('LANG_ftp', "FTP");
|
||||
define('LANG_shop', "Kupovina");
|
||||
define('LANG_shop_guest', "Kupovina");
|
||||
define('LANG_TS3Admin', "TS3 Admin");
|
||||
define('LANG_administration', "Administracija");
|
||||
define('LANG_config_games', "Konfiguracija Igre/Modovi");
|
||||
define('LANG_modulemanager', "Moduli");
|
||||
define('LANG_server', "Poslužitelji");
|
||||
define('LANG_settings', "Postavke Panela");
|
||||
define('LANG_themes', "Postavke Teme");
|
||||
define('LANG_user_admin', "Korisnici");
|
||||
define('LANG_sub_users', "Pod Korisnici");
|
||||
define('LANG_show_groups', "Grupe");
|
||||
define('LANG_user_games', "Igrice");
|
||||
define('LANG_addons_manager', "Upravitelj Dodataka");
|
||||
define('LANG_ftp_admin', "FTP Korisnici");
|
||||
define('LANG_orders', "Narudžbe");
|
||||
define('LANG_services', "Postavke Prodaje");
|
||||
define('LANG_shop_settings', "Postavke Trgovine");
|
||||
define('LANG_update', "Ažurirati Panel");
|
||||
define('LANG_extras', "Dodaci za Panel");
|
||||
define('LANG_show', "Pokazati");
|
||||
define('LANG_show_all', "Pokazati sve Servere");
|
||||
define('LANG_cur_theme', "%s Tema");
|
||||
define('LANG_copyright', "Autorska Prava");
|
||||
define('LANG_all_rights_reserved', "Sva prava pridržana");
|
||||
define('LANG_version', "Verzija");
|
||||
define('LANG_show_version', "Pokazati Verziju");
|
||||
define('LANG_queries_executed', "upita izvršena");
|
||||
define('LANG_lang', "Jezik");
|
||||
define('LANG_get_size', "Prikaži veličinu");
|
||||
define('LANG_total_size', "Ukupna veličina");
|
||||
define('LANG_lgsl', "LGSL");
|
||||
define('LANG_lgsl_admin', "Postavke LGSL-a");
|
||||
define('LANG_rcon', "RCON");
|
||||
define('LANG_watch_logger', "Glavni Zapisnik");
|
||||
define('LANG_litefm_settings', "Postavke LiteFM-a");
|
||||
define('LANG_assign_expiration_date', "Dodijeli datum isteka");
|
||||
define('LANG_assign_expiration_date_info', "Kada istekne, server više nije dodijeljen, ali nije uklonjen.");
|
||||
define('LANG_server_expiration_date', "Datum isteka servera");
|
||||
define('LANG_server_expiration_date_info', "Kada istekne, server se uklanja (baza podataka i datoteke).");
|
||||
define('LANG_set_expiration_date', "Postavite datum isteka");
|
||||
define('LANG_admin_dsi', "Postavke DSi-a");
|
||||
define('LANG_user_dsi', "DSi");
|
||||
define('LANG_list_dsi', "DSi Popis");
|
||||
define('LANG_no_remote_servers', "Nema poznatih udaljenih servera! Dodajte server da biste koristili ovu funkciju.");
|
||||
define('LANG_no_results_found', "Nije pronađen nijedan rezultat pretraživanja %s");
|
||||
define('LANG_tickets', "Korisnička Podrška");
|
||||
define('LANG_news', "Novosti");
|
||||
define('LANG_admin_news', "Postavke Novosti ");
|
||||
define('LANG_util', "Brze Usluge za Igrice");
|
||||
define('LANG_fast_download', "Postavke Brzog Skidanja");
|
||||
define('LANG_fd_user', "Brzo Skidanje");
|
||||
define('LANG_cron', "Postavke Cron-a");
|
||||
define('LANG_user_cron', "Cron");
|
||||
define('LANG_faq', "F.A.Q.");
|
||||
define('LANG_mysql_admin', "Postavke MySQL-a");
|
||||
define('LANG_copied', "Kopirano!");
|
||||
define('LANG_ticket_settings', "Postavke Korisničke Podrške");
|
||||
define('LANG_form', "Registracija");
|
||||
?>
|
||||
|
|
@ -22,48 +22,48 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_install_lang', "Odaberite vaš željeni jezik");
|
||||
define('OGP_LANG_install_welcome', "Dobrodošli u Open Game Panel Instalaciju");
|
||||
define('OGP_LANG_file_permission_check', "Provjera potrebnih dozvola datoteka");
|
||||
define('OGP_LANG_OK', "OK");
|
||||
define('OGP_LANG_write_permission_required', "Potrebna je pisana dozvola");
|
||||
define('OGP_LANG_execute_permission_required', "Potrebna je dozvola za izvršavanje");
|
||||
define('OGP_LANG_create_an_empty_file', "Izradite praznu datoteku.");
|
||||
define('OGP_LANG_found', "Pronađeno");
|
||||
define('OGP_LANG_not_found', "Nije pronađeno");
|
||||
define('OGP_LANG_pear_xxtea_info', "Pear Crypt_XXTEA je potreban za korištenje OGP-a. U većini Linux distribucija ovaj modul se može instalirati pomoću sljedeće Pear naredbe 'pear install Crypt_XXTEA-beta'.");
|
||||
define('OGP_LANG_refresh', "Osvježiti");
|
||||
define('OGP_LANG_checking_required_modules', "Provjera potrebnih modula");
|
||||
define('OGP_LANG_checking_optional_modules', "Provjera dodatnih modula");
|
||||
define('OGP_LANG_database_type', "Vrsta Baze Podataka");
|
||||
define('OGP_LANG_database_settings', "Postavke pristupa bazi podataka");
|
||||
define('OGP_LANG_database_hostname', "Hostname za bazu podataka");
|
||||
define('OGP_LANG_database_username', "Korisičko ime za bazu podataka");
|
||||
define('OGP_LANG_database_password', "Lozinka za bazu podataka");
|
||||
define('OGP_LANG_database_name', "Ime za bazu podataka");
|
||||
define('OGP_LANG_database_prefix', "Prefix za bazu podataka");
|
||||
define('OGP_LANG_next', "Sljedeće");
|
||||
define('OGP_LANG_encryption_key', "Encyption ključ (Agent)");
|
||||
define('OGP_LANG_agent_port', "Port (Agent)");
|
||||
define('OGP_LANG_unable_to_write_config', "Nije moguće pisati u konfiguracijsku datoteku. Ponovno provjerite dopuštenje za pisanje.");
|
||||
define('OGP_LANG_admin_login_details', "Pojedinosti prijave administratora");
|
||||
define('OGP_LANG_config_written', "Konfigurirane datoteke uspješno su stvorene.");
|
||||
define('OGP_LANG_database_created', "Uspješno su stvorene tablice baza podataka.");
|
||||
define('OGP_LANG_admin_login_details_info', "Sad stvaramo admin korisnika za vaš Open Game Panel.");
|
||||
define('OGP_LANG_username', "Korisničko Ime");
|
||||
define('OGP_LANG_repeat_password', "Potvrdi Lozinku");
|
||||
define('OGP_LANG_email', "Adresa E-pošte");
|
||||
define('OGP_LANG_back', "Natrag");
|
||||
define('OGP_LANG_database_setup_failure', "Postavljanje nije uspjelo izraditi bazu podataka. Ponovno provjerite konfiguracije baze podataka.");
|
||||
define('OGP_LANG_php_version_check', "Provjera PHP verzije");
|
||||
define('OGP_LANG_invalid_username', "Unijeli ste nevaljano korisničko ime.");
|
||||
define('OGP_LANG_password_too_short', "Vaša zaporka je prekratka. Mora biti barem '%d' znakova dugo.");
|
||||
define('OGP_LANG_password_contains_invalid_characters', "Vaša zaporka sadrži nevažeće znakove.");
|
||||
define('OGP_LANG_invalid_email_address', "Unijeli ste nevažeću adresu e-pošte.");
|
||||
define('OGP_LANG_setup_complete', "Uspostava je uspješno završena. Open Game Panel sad je spreman za upotrebu.");
|
||||
define('OGP_LANG_remove_install_and_secure_config', "Trebali biste izbrisati install.php s vašeg poslužitelja i include/config.inc.php vratiti natrag na 644 zbog sigurnosnih razloga.");
|
||||
define('OGP_LANG_go_to_panel', "Kliknite ovdje za prijavu na OGP.");
|
||||
define('OGP_LANG_unable_to_resolve', "Ako ne možete riješiti ovaj problem, posjetite web stranicu OGP-a");
|
||||
define('OGP_LANG_slogan', "The Open-Source one!");
|
||||
define('OGP_LANG_default_welcome_title_message', "Dobrodošli! <b style='font-size:12px; font-weight:normal;'>Možete promjeniti ovaj tekst na '<a href='?m=settings&p=themes'>Postavke teme</a>' ispod '<a href='?m=administration&p=main'>Administracija</a>'</b>");
|
||||
define('LANG_install_lang', "Odaberite vaš željeni jezik");
|
||||
define('LANG_install_welcome', "Dobrodošli u Open Game Panel Instalaciju");
|
||||
define('LANG_file_permission_check', "Provjera potrebnih dozvola datoteka");
|
||||
define('LANG_OK', "OK");
|
||||
define('LANG_write_permission_required', "Potrebna je pisana dozvola");
|
||||
define('LANG_execute_permission_required', "Potrebna je dozvola za izvršavanje");
|
||||
define('LANG_create_an_empty_file', "Izradite praznu datoteku.");
|
||||
define('LANG_found', "Pronađeno");
|
||||
define('LANG_not_found', "Nije pronađeno");
|
||||
define('LANG_pear_xxtea_info', "Pear Crypt_XXTEA je potreban za korištenje OGP-a. U većini Linux distribucija ovaj modul se može instalirati pomoću sljedeće Pear naredbe 'pear install Crypt_XXTEA-beta'.");
|
||||
define('LANG_refresh', "Osvježiti");
|
||||
define('LANG_checking_required_modules', "Provjera potrebnih modula");
|
||||
define('LANG_checking_optional_modules', "Provjera dodatnih modula");
|
||||
define('LANG_database_type', "Vrsta Baze Podataka");
|
||||
define('LANG_database_settings', "Postavke pristupa bazi podataka");
|
||||
define('LANG_database_hostname', "Hostname za bazu podataka");
|
||||
define('LANG_database_username', "Korisičko ime za bazu podataka");
|
||||
define('LANG_database_password', "Lozinka za bazu podataka");
|
||||
define('LANG_database_name', "Ime za bazu podataka");
|
||||
define('LANG_database_prefix', "Prefix za bazu podataka");
|
||||
define('LANG_next', "Sljedeće");
|
||||
define('LANG_encryption_key', "Encyption ključ (Agent)");
|
||||
define('LANG_agent_port', "Port (Agent)");
|
||||
define('LANG_unable_to_write_config', "Nije moguće pisati u konfiguracijsku datoteku. Ponovno provjerite dopuštenje za pisanje.");
|
||||
define('LANG_admin_login_details', "Pojedinosti prijave administratora");
|
||||
define('LANG_config_written', "Konfigurirane datoteke uspješno su stvorene.");
|
||||
define('LANG_database_created', "Uspješno su stvorene tablice baza podataka.");
|
||||
define('LANG_admin_login_details_info', "Sad stvaramo admin korisnika za vaš Open Game Panel.");
|
||||
define('LANG_username', "Korisničko Ime");
|
||||
define('LANG_repeat_password', "Potvrdi Lozinku");
|
||||
define('LANG_email', "Adresa E-pošte");
|
||||
define('LANG_back', "Natrag");
|
||||
define('LANG_database_setup_failure', "Postavljanje nije uspjelo izraditi bazu podataka. Ponovno provjerite konfiguracije baze podataka.");
|
||||
define('LANG_php_version_check', "Provjera PHP verzije");
|
||||
define('LANG_invalid_username', "Unijeli ste nevaljano korisničko ime.");
|
||||
define('LANG_password_too_short', "Vaša zaporka je prekratka. Mora biti barem '%d' znakova dugo.");
|
||||
define('LANG_password_contains_invalid_characters', "Vaša zaporka sadrži nevažeće znakove.");
|
||||
define('LANG_invalid_email_address', "Unijeli ste nevažeću adresu e-pošte.");
|
||||
define('LANG_setup_complete', "Uspostava je uspješno završena. Open Game Panel sad je spreman za upotrebu.");
|
||||
define('LANG_remove_install_and_secure_config', "Trebali biste izbrisati install.php s vašeg poslužitelja i include/config.inc.php vratiti natrag na 644 zbog sigurnosnih razloga.");
|
||||
define('LANG_go_to_panel', "Kliknite ovdje za prijavu na OGP.");
|
||||
define('LANG_unable_to_resolve', "Ako ne možete riješiti ovaj problem, posjetite web stranicu OGP-a");
|
||||
define('LANG_slogan', "The Open-Source one!");
|
||||
define('LANG_default_welcome_title_message', "Dobrodošli! <b style='font-size:12px; font-weight:normal;'>Možete promjeniti ovaj tekst na '<a href='?m=settings&p=themes'>Postavke teme</a>' ispod '<a href='?m=administration&p=main'>Administracija</a>'</b>");
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -22,154 +22,154 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_error', "Pogreška");
|
||||
define('OGP_LANG_title', "Web sučelje TeamSpeak 3");
|
||||
define('OGP_LANG_update_available', "<h3>Pozor: nova verzija (v%1) ovog softvera je dostupan pod <a href=\"%2\" target=\"_blank\">%2</a>.</h3>");
|
||||
define('OGP_LANG_head_logout', "Odjaviti se");
|
||||
define('OGP_LANG_head_vserver_switch', "Promijeniti vServer");
|
||||
define('OGP_LANG_head_vserver_overview', "vServer Pregled");
|
||||
define('OGP_LANG_head_vserver_token', "Token Upravljanje");
|
||||
define('OGP_LANG_head_vserver_liveview', "Pogled Uživo");
|
||||
define('OGP_LANG_e_fill_out', "Molimo da spunite sva potrebna polja.");
|
||||
define('OGP_LANG_e_upload_failed', "Učitavanje nije uspjelo.");
|
||||
define('OGP_LANG_e_server_responded', "Server je odgovorio:");
|
||||
define('OGP_LANG_e_conn_serverquery', "Nije moguće stvoriti ServerQuery pristup.");
|
||||
define('OGP_LANG_e_conn_vserver', "Ne može se odabrati virtualni server.");
|
||||
define('OGP_LANG_e_session_timedout', "Vrijeme isteklo.");
|
||||
define('OGP_LANG_js_error', "Pogreška");
|
||||
define('OGP_LANG_js_ajax_error', "Došlo je do AJAX pogreške: %1.");
|
||||
define('OGP_LANG_js_confirm_server_stop', "Želite li stvarno zaustaviti server #%1?");
|
||||
define('OGP_LANG_js_confirm_server_delete', "Želite li stvarno IZBRISATI server #%1?");
|
||||
define('OGP_LANG_js_notice_server_deleted', "Server %1 je uspješno izbrisan. Prikazna stranica sada će biti ponovno učitana.");
|
||||
define('OGP_LANG_js_prompt_banduration', "Trajanje u satima (0=neograničeno):");
|
||||
define('OGP_LANG_js_prompt_banreason', "Razlog (neobavezan):");
|
||||
define('OGP_LANG_js_prompt_msg_to', "Tekstualna poruka na %1 #%2:");
|
||||
define('OGP_LANG_js_prompt_poke_to', "Poke Poruka Klijentu #%1:");
|
||||
define('OGP_LANG_js_prompt_new_propvalue', "Nova vrijednost za '%1':");
|
||||
define('OGP_LANG_n_server_responded', "Server je odgovorio:");
|
||||
define('OGP_LANG_login_serverquery', "ServerQuery Prijava");
|
||||
define('OGP_LANG_login_name', "Korisničko Ime");
|
||||
define('OGP_LANG_login_password', "Lozinka");
|
||||
define('OGP_LANG_login_submit', "Prijava");
|
||||
define('OGP_LANG_vsselect_headline', "vServer izbor");
|
||||
define('OGP_LANG_vsselect_id', "ID #");
|
||||
define('OGP_LANG_vsselect_name', "Ime");
|
||||
define('OGP_LANG_vsselect_ip', "IP");
|
||||
define('OGP_LANG_vsselect_port', "Port");
|
||||
define('OGP_LANG_vsselect_state', "Status");
|
||||
define('OGP_LANG_vsselect_clients', "Klijenti");
|
||||
define('OGP_LANG_vsselect_uptime', "Vrijeme Rada");
|
||||
define('OGP_LANG_vsselect_choose', "Odabrati");
|
||||
define('OGP_LANG_vsselect_start', "Pokrenuti");
|
||||
define('OGP_LANG_vsselect_stop', "Zaustaviti");
|
||||
define('OGP_LANG_vsselect_delete', "IZBRISATI");
|
||||
define('OGP_LANG_vsselect_new_headline', "Kreirati novi virtualni server");
|
||||
define('OGP_LANG_vsselect_new_servername', "Naziv Servera");
|
||||
define('OGP_LANG_vsselect_new_slots', "Mjesta za klijente");
|
||||
define('OGP_LANG_vsselect_new_create', "Kreirati");
|
||||
define('OGP_LANG_vsselect_new_added_ok', "vServer <span class=\"online\">%1</span> uspješno kreiran.");
|
||||
define('OGP_LANG_vsselect_new_added_generated', "Generirani token je:");
|
||||
define('OGP_LANG_vsoverview_virtualserver', "Virtualni Server");
|
||||
define('OGP_LANG_vsoverview_information_head', "Informacije");
|
||||
define('OGP_LANG_vsoverview_connection_head', "Veza");
|
||||
define('OGP_LANG_vsoverview_info_general_head', "Opće postavke");
|
||||
define('OGP_LANG_vsoverview_info_servername', "Naziv Servera");
|
||||
define('OGP_LANG_vsoverview_info_host', "Verzija OS-a");
|
||||
define('OGP_LANG_vsoverview_info_state', "Status");
|
||||
define('OGP_LANG_vsoverview_info_state_port', "Port");
|
||||
define('OGP_LANG_vsoverview_info_uptime', "Vrijeme Rada");
|
||||
define('OGP_LANG_vsoverview_info_welcomemsg', "Poruka dobodošlice<br />");
|
||||
define('OGP_LANG_vsoverview_info_hostmsg', "Poruka Servera");
|
||||
define('OGP_LANG_vsoverview_info_hostmsg_mode_output', "pokazivanje");
|
||||
define('OGP_LANG_vsoverview_info_hostmsg_mode_0', "ništa");
|
||||
define('OGP_LANG_vsoverview_info_hostmsg_mode_1', "na čavrljanju");
|
||||
define('OGP_LANG_vsoverview_info_hostmsg_mode_2', "prozor");
|
||||
define('OGP_LANG_vsoverview_info_hostmsg_mode_3', "Prozor + Odjava");
|
||||
define('OGP_LANG_vsoverview_info_req_security', "Sigurnosna Razina");
|
||||
define('OGP_LANG_vsoverview_info_req_securitylvl', "potrebno");
|
||||
define('OGP_LANG_vsoverview_info_hostbanner_head', "Banner Servera");
|
||||
define('OGP_LANG_vsoverview_info_hostbanner_url', "Poveznica");
|
||||
define('OGP_LANG_vsoverview_info_hostbanner_imgurl', "Adresa slike");
|
||||
define('OGP_LANG_vsoverview_info_hostbanner_buttonurl', "Poveznica gumba za server");
|
||||
define('OGP_LANG_vsoverview_info_antiflood_head', "Uznemiravanje");
|
||||
define('OGP_LANG_vsoverview_info_antiflood_warning', "Upozorenje nakon");
|
||||
define('OGP_LANG_vsoverview_info_antiflood_kick', "Izbaciti nakon");
|
||||
define('OGP_LANG_vsoverview_info_antiflood_ban', "Zabraniti nakon");
|
||||
define('OGP_LANG_vsoverview_info_antiflood_banduration', "Trajanje zabrane");
|
||||
define('OGP_LANG_vsoverview_info_antiflood_decrease', "Smanjenje");
|
||||
define('OGP_LANG_vsoverview_info_antiflood_points', "bodova");
|
||||
define('OGP_LANG_vsoverview_info_antiflood_in_seconds', "sekunde");
|
||||
define('OGP_LANG_vsoverview_info_antiflood_points_per_tick', "Bodova po tiku");
|
||||
define('OGP_LANG_vsoverview_conn_total_head', "Totalno");
|
||||
define('OGP_LANG_vsoverview_conn_total_packets', "paketi");
|
||||
define('OGP_LANG_vsoverview_conn_total_bytes', "bajtova");
|
||||
define('OGP_LANG_vsoverview_conn_total_send', "poslano");
|
||||
define('OGP_LANG_vsoverview_conn_total_received', "primljeno");
|
||||
define('OGP_LANG_vsoverview_conn_bandwidth_head', "Internet Promet");
|
||||
define('OGP_LANG_vsoverview_conn_bandwidth_last', "zadnje");
|
||||
define('OGP_LANG_vsoverview_conn_bandwidth_second', "po sekundi");
|
||||
define('OGP_LANG_vsoverview_conn_bandwidth_minute', "po minuti");
|
||||
define('OGP_LANG_vsoverview_conn_bandwidth_send', "poslano");
|
||||
define('OGP_LANG_vsoverview_conn_bandwidth_received', "primljeno");
|
||||
define('OGP_LANG_vstoken_token_virtualserver', "Virtualni Server");
|
||||
define('OGP_LANG_vstoken_token_head', "Token");
|
||||
define('OGP_LANG_vstoken_token_type', "Vrsta Grupe");
|
||||
define('OGP_LANG_vstoken_token_id1', "Grupa Servera/<br />Grupa Kanala");
|
||||
define('OGP_LANG_vstoken_token_id2', "(Kanal)");
|
||||
define('OGP_LANG_vstoken_token_tokencode', "Kod Tokena");
|
||||
define('OGP_LANG_vstoken_token_delete', "Izbrisati");
|
||||
define('OGP_LANG_vstoken_new_head', "Kreirati novi token");
|
||||
define('OGP_LANG_vstoken_new_create', "Proizvesti");
|
||||
define('OGP_LANG_vstoken_new_tokentype', "Vrsta tokena:");
|
||||
define('OGP_LANG_vstoken_new_servergroup', "Grupa Servera");
|
||||
define('OGP_LANG_vstoken_new_channelgroup', "Grupa Kanala");
|
||||
define('OGP_LANG_vstoken_new_select_group', "Server Grupa");
|
||||
define('OGP_LANG_vstoken_new_select_channelgroup', "Kanal Grupa");
|
||||
define('OGP_LANG_vstoken_new_select_channel', "Kanal");
|
||||
define('OGP_LANG_vstoken_new_tokentype_0', "Server");
|
||||
define('OGP_LANG_vstoken_new_tokentype_1', "Kanal");
|
||||
define('OGP_LANG_vstoken_new_added_ok', "Token je uspješno generiran");
|
||||
define('OGP_LANG_vsliveview_server_virtualserver', "Virtualni Server");
|
||||
define('OGP_LANG_vsliveview_server_head', "Pogled Uživo");
|
||||
define('OGP_LANG_vsliveview_liveview_enable_autorefresh', "Automatsko osvježavanje");
|
||||
define('OGP_LANG_vsliveview_liveview_tooltip_to_channel', "na kanal #");
|
||||
define('OGP_LANG_vsliveview_liveview_tooltip_switch', "Prebaciti");
|
||||
define('OGP_LANG_vsliveview_liveview_tooltip_send_msg', "Poslati Poruku");
|
||||
define('OGP_LANG_vsliveview_liveview_tooltip_poke', "Poke");
|
||||
define('OGP_LANG_vsliveview_liveview_tooltip_kick', "Izbaciti");
|
||||
define('OGP_LANG_vsliveview_liveview_tooltip_ban', "Zabraniti");
|
||||
define('OGP_LANG_vsoverview_banlist_head', "Popis zabrane");
|
||||
define('OGP_LANG_vsoverview_banlist_id', "ID #");
|
||||
define('OGP_LANG_vsoverview_banlist_ip', "IP");
|
||||
define('OGP_LANG_vsoverview_banlist_name', "Ime");
|
||||
define('OGP_LANG_vsoverview_banlist_uid', "Jedinstveni ID");
|
||||
define('OGP_LANG_vsoverview_banlist_reason', "Razlog");
|
||||
define('OGP_LANG_vsoverview_banlist_created', "Stvoren");
|
||||
define('OGP_LANG_vsoverview_banlist_duration', "Trajanje");
|
||||
define('OGP_LANG_vsoverview_banlist_end', "Završava");
|
||||
define('OGP_LANG_vsoverview_banlist_unlimited', "neograničeno");
|
||||
define('OGP_LANG_vsoverview_banlist_never', "nikada");
|
||||
define('OGP_LANG_vsoverview_banlist_new_head', "Stvoriti novu zabranu");
|
||||
define('OGP_LANG_vsoverview_banlist_new_create', "Stvoriti");
|
||||
define('OGP_LANG_vsliveview_channelbackup_head', "Sigurnosno kopiranje kanala");
|
||||
define('OGP_LANG_vsliveview_channelbackup_get', "Stvaranje i preuzimanje");
|
||||
define('OGP_LANG_vsliveview_channelbackup_load', "Učitati sigurnosnu kopiju kanala");
|
||||
define('OGP_LANG_vsliveview_channelbackup_load_submit', "Ponovo stvoriti");
|
||||
define('OGP_LANG_vsliveview_channelbackup_new_added_ok', "Sigurnosno Kopiranje Kanala uspješno.");
|
||||
define('OGP_LANG_time_day', "dan");
|
||||
define('OGP_LANG_time_days', "dana");
|
||||
define('OGP_LANG_time_hour', "sat");
|
||||
define('OGP_LANG_time_hours', "sati");
|
||||
define('OGP_LANG_time_minute', "minutu");
|
||||
define('OGP_LANG_time_minutes', "minute");
|
||||
define('OGP_LANG_time_second', "sekunda");
|
||||
define('OGP_LANG_time_seconds', "sekunde");
|
||||
define('OGP_LANG_e_2568', "Nemate dovoljno prava.");
|
||||
define('OGP_LANG_temp_folder_not_writable', "Mapa predložaka (%s) nije pristupno pisana.");
|
||||
define('OGP_LANG_unassign_from_subuser', "Ukloniti od podkorisnika");
|
||||
define('OGP_LANG_assign_to_subuser', "Dodijeliti podkorisniku.");
|
||||
define('OGP_LANG_select_subuser', "Odaberite podkorisnika.");
|
||||
define('OGP_LANG_no_ts3_servers_assigned_to_account', "Na vašem računu nije dodjeljen nijedan server.");
|
||||
define('OGP_LANG_change_virtual_server', "Promijeniti virtualni server");
|
||||
define('OGP_LANG_change_remote_server', "Promijeniti Udaljeni Server");
|
||||
define('LANG_error', "Pogreška");
|
||||
define('LANG_title', "Web sučelje TeamSpeak 3");
|
||||
define('LANG_update_available', "<h3>Pozor: nova verzija (v%1) ovog softvera je dostupan pod <a href=\"%2\" target=\"_blank\">%2</a>.</h3>");
|
||||
define('LANG_head_logout', "Odjaviti se");
|
||||
define('LANG_head_vserver_switch', "Promijeniti vServer");
|
||||
define('LANG_head_vserver_overview', "vServer Pregled");
|
||||
define('LANG_head_vserver_token', "Token Upravljanje");
|
||||
define('LANG_head_vserver_liveview', "Pogled Uživo");
|
||||
define('LANG_e_fill_out', "Molimo da spunite sva potrebna polja.");
|
||||
define('LANG_e_upload_failed', "Učitavanje nije uspjelo.");
|
||||
define('LANG_e_server_responded', "Server je odgovorio:");
|
||||
define('LANG_e_conn_serverquery', "Nije moguće stvoriti ServerQuery pristup.");
|
||||
define('LANG_e_conn_vserver', "Ne može se odabrati virtualni server.");
|
||||
define('LANG_e_session_timedout', "Vrijeme isteklo.");
|
||||
define('LANG_js_error', "Pogreška");
|
||||
define('LANG_js_ajax_error', "Došlo je do AJAX pogreške: %1.");
|
||||
define('LANG_js_confirm_server_stop', "Želite li stvarno zaustaviti server #%1?");
|
||||
define('LANG_js_confirm_server_delete', "Želite li stvarno IZBRISATI server #%1?");
|
||||
define('LANG_js_notice_server_deleted', "Server %1 je uspješno izbrisan. Prikazna stranica sada će biti ponovno učitana.");
|
||||
define('LANG_js_prompt_banduration', "Trajanje u satima (0=neograničeno):");
|
||||
define('LANG_js_prompt_banreason', "Razlog (neobavezan):");
|
||||
define('LANG_js_prompt_msg_to', "Tekstualna poruka na %1 #%2:");
|
||||
define('LANG_js_prompt_poke_to', "Poke Poruka Klijentu #%1:");
|
||||
define('LANG_js_prompt_new_propvalue', "Nova vrijednost za '%1':");
|
||||
define('LANG_n_server_responded', "Server je odgovorio:");
|
||||
define('LANG_login_serverquery', "ServerQuery Prijava");
|
||||
define('LANG_login_name', "Korisničko Ime");
|
||||
define('LANG_login_password', "Lozinka");
|
||||
define('LANG_login_submit', "Prijava");
|
||||
define('LANG_vsselect_headline', "vServer izbor");
|
||||
define('LANG_vsselect_id', "ID #");
|
||||
define('LANG_vsselect_name', "Ime");
|
||||
define('LANG_vsselect_ip', "IP");
|
||||
define('LANG_vsselect_port', "Port");
|
||||
define('LANG_vsselect_state', "Status");
|
||||
define('LANG_vsselect_clients', "Klijenti");
|
||||
define('LANG_vsselect_uptime', "Vrijeme Rada");
|
||||
define('LANG_vsselect_choose', "Odabrati");
|
||||
define('LANG_vsselect_start', "Pokrenuti");
|
||||
define('LANG_vsselect_stop', "Zaustaviti");
|
||||
define('LANG_vsselect_delete', "IZBRISATI");
|
||||
define('LANG_vsselect_new_headline', "Kreirati novi virtualni server");
|
||||
define('LANG_vsselect_new_servername', "Naziv Servera");
|
||||
define('LANG_vsselect_new_slots', "Mjesta za klijente");
|
||||
define('LANG_vsselect_new_create', "Kreirati");
|
||||
define('LANG_vsselect_new_added_ok', "vServer <span class=\"online\">%1</span> uspješno kreiran.");
|
||||
define('LANG_vsselect_new_added_generated', "Generirani token je:");
|
||||
define('LANG_vsoverview_virtualserver', "Virtualni Server");
|
||||
define('LANG_vsoverview_information_head', "Informacije");
|
||||
define('LANG_vsoverview_connection_head', "Veza");
|
||||
define('LANG_vsoverview_info_general_head', "Opće postavke");
|
||||
define('LANG_vsoverview_info_servername', "Naziv Servera");
|
||||
define('LANG_vsoverview_info_host', "Verzija OS-a");
|
||||
define('LANG_vsoverview_info_state', "Status");
|
||||
define('LANG_vsoverview_info_state_port', "Port");
|
||||
define('LANG_vsoverview_info_uptime', "Vrijeme Rada");
|
||||
define('LANG_vsoverview_info_welcomemsg', "Poruka dobodošlice<br />");
|
||||
define('LANG_vsoverview_info_hostmsg', "Poruka Servera");
|
||||
define('LANG_vsoverview_info_hostmsg_mode_output', "pokazivanje");
|
||||
define('LANG_vsoverview_info_hostmsg_mode_0', "ništa");
|
||||
define('LANG_vsoverview_info_hostmsg_mode_1', "na čavrljanju");
|
||||
define('LANG_vsoverview_info_hostmsg_mode_2', "prozor");
|
||||
define('LANG_vsoverview_info_hostmsg_mode_3', "Prozor + Odjava");
|
||||
define('LANG_vsoverview_info_req_security', "Sigurnosna Razina");
|
||||
define('LANG_vsoverview_info_req_securitylvl', "potrebno");
|
||||
define('LANG_vsoverview_info_hostbanner_head', "Banner Servera");
|
||||
define('LANG_vsoverview_info_hostbanner_url', "Poveznica");
|
||||
define('LANG_vsoverview_info_hostbanner_imgurl', "Adresa slike");
|
||||
define('LANG_vsoverview_info_hostbanner_buttonurl', "Poveznica gumba za server");
|
||||
define('LANG_vsoverview_info_antiflood_head', "Uznemiravanje");
|
||||
define('LANG_vsoverview_info_antiflood_warning', "Upozorenje nakon");
|
||||
define('LANG_vsoverview_info_antiflood_kick', "Izbaciti nakon");
|
||||
define('LANG_vsoverview_info_antiflood_ban', "Zabraniti nakon");
|
||||
define('LANG_vsoverview_info_antiflood_banduration', "Trajanje zabrane");
|
||||
define('LANG_vsoverview_info_antiflood_decrease', "Smanjenje");
|
||||
define('LANG_vsoverview_info_antiflood_points', "bodova");
|
||||
define('LANG_vsoverview_info_antiflood_in_seconds', "sekunde");
|
||||
define('LANG_vsoverview_info_antiflood_points_per_tick', "Bodova po tiku");
|
||||
define('LANG_vsoverview_conn_total_head', "Totalno");
|
||||
define('LANG_vsoverview_conn_total_packets', "paketi");
|
||||
define('LANG_vsoverview_conn_total_bytes', "bajtova");
|
||||
define('LANG_vsoverview_conn_total_send', "poslano");
|
||||
define('LANG_vsoverview_conn_total_received', "primljeno");
|
||||
define('LANG_vsoverview_conn_bandwidth_head', "Internet Promet");
|
||||
define('LANG_vsoverview_conn_bandwidth_last', "zadnje");
|
||||
define('LANG_vsoverview_conn_bandwidth_second', "po sekundi");
|
||||
define('LANG_vsoverview_conn_bandwidth_minute', "po minuti");
|
||||
define('LANG_vsoverview_conn_bandwidth_send', "poslano");
|
||||
define('LANG_vsoverview_conn_bandwidth_received', "primljeno");
|
||||
define('LANG_vstoken_token_virtualserver', "Virtualni Server");
|
||||
define('LANG_vstoken_token_head', "Token");
|
||||
define('LANG_vstoken_token_type', "Vrsta Grupe");
|
||||
define('LANG_vstoken_token_id1', "Grupa Servera/<br />Grupa Kanala");
|
||||
define('LANG_vstoken_token_id2', "(Kanal)");
|
||||
define('LANG_vstoken_token_tokencode', "Kod Tokena");
|
||||
define('LANG_vstoken_token_delete', "Izbrisati");
|
||||
define('LANG_vstoken_new_head', "Kreirati novi token");
|
||||
define('LANG_vstoken_new_create', "Proizvesti");
|
||||
define('LANG_vstoken_new_tokentype', "Vrsta tokena:");
|
||||
define('LANG_vstoken_new_servergroup', "Grupa Servera");
|
||||
define('LANG_vstoken_new_channelgroup', "Grupa Kanala");
|
||||
define('LANG_vstoken_new_select_group', "Server Grupa");
|
||||
define('LANG_vstoken_new_select_channelgroup', "Kanal Grupa");
|
||||
define('LANG_vstoken_new_select_channel', "Kanal");
|
||||
define('LANG_vstoken_new_tokentype_0', "Server");
|
||||
define('LANG_vstoken_new_tokentype_1', "Kanal");
|
||||
define('LANG_vstoken_new_added_ok', "Token je uspješno generiran");
|
||||
define('LANG_vsliveview_server_virtualserver', "Virtualni Server");
|
||||
define('LANG_vsliveview_server_head', "Pogled Uživo");
|
||||
define('LANG_vsliveview_liveview_enable_autorefresh', "Automatsko osvježavanje");
|
||||
define('LANG_vsliveview_liveview_tooltip_to_channel', "na kanal #");
|
||||
define('LANG_vsliveview_liveview_tooltip_switch', "Prebaciti");
|
||||
define('LANG_vsliveview_liveview_tooltip_send_msg', "Poslati Poruku");
|
||||
define('LANG_vsliveview_liveview_tooltip_poke', "Poke");
|
||||
define('LANG_vsliveview_liveview_tooltip_kick', "Izbaciti");
|
||||
define('LANG_vsliveview_liveview_tooltip_ban', "Zabraniti");
|
||||
define('LANG_vsoverview_banlist_head', "Popis zabrane");
|
||||
define('LANG_vsoverview_banlist_id', "ID #");
|
||||
define('LANG_vsoverview_banlist_ip', "IP");
|
||||
define('LANG_vsoverview_banlist_name', "Ime");
|
||||
define('LANG_vsoverview_banlist_uid', "Jedinstveni ID");
|
||||
define('LANG_vsoverview_banlist_reason', "Razlog");
|
||||
define('LANG_vsoverview_banlist_created', "Stvoren");
|
||||
define('LANG_vsoverview_banlist_duration', "Trajanje");
|
||||
define('LANG_vsoverview_banlist_end', "Završava");
|
||||
define('LANG_vsoverview_banlist_unlimited', "neograničeno");
|
||||
define('LANG_vsoverview_banlist_never', "nikada");
|
||||
define('LANG_vsoverview_banlist_new_head', "Stvoriti novu zabranu");
|
||||
define('LANG_vsoverview_banlist_new_create', "Stvoriti");
|
||||
define('LANG_vsliveview_channelbackup_head', "Sigurnosno kopiranje kanala");
|
||||
define('LANG_vsliveview_channelbackup_get', "Stvaranje i preuzimanje");
|
||||
define('LANG_vsliveview_channelbackup_load', "Učitati sigurnosnu kopiju kanala");
|
||||
define('LANG_vsliveview_channelbackup_load_submit', "Ponovo stvoriti");
|
||||
define('LANG_vsliveview_channelbackup_new_added_ok', "Sigurnosno Kopiranje Kanala uspješno.");
|
||||
define('LANG_time_day', "dan");
|
||||
define('LANG_time_days', "dana");
|
||||
define('LANG_time_hour', "sat");
|
||||
define('LANG_time_hours', "sati");
|
||||
define('LANG_time_minute', "minutu");
|
||||
define('LANG_time_minutes', "minute");
|
||||
define('LANG_time_second', "sekunda");
|
||||
define('LANG_time_seconds', "sekunde");
|
||||
define('LANG_e_2568', "Nemate dovoljno prava.");
|
||||
define('LANG_temp_folder_not_writable', "Mapa predložaka (%s) nije pristupno pisana.");
|
||||
define('LANG_unassign_from_subuser', "Ukloniti od podkorisnika");
|
||||
define('LANG_assign_to_subuser', "Dodijeliti podkorisniku.");
|
||||
define('LANG_select_subuser', "Odaberite podkorisnika.");
|
||||
define('LANG_no_ts3_servers_assigned_to_account', "Na vašem računu nije dodjeljen nijedan server.");
|
||||
define('LANG_change_virtual_server', "Promijeniti virtualni server");
|
||||
define('LANG_change_remote_server', "Promijeniti Udaljeni Server");
|
||||
?>
|
||||
|
|
@ -22,49 +22,49 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_install_plugin', "Instalirati Plugin");
|
||||
define('OGP_LANG_install_mappack', "Instalirati Mape");
|
||||
define('OGP_LANG_install_config', "Instalirati Konfiguracije");
|
||||
define('OGP_LANG_game_name', "Ime Igre");
|
||||
define('OGP_LANG_directory', "Putanje Direktorija");
|
||||
define('OGP_LANG_remote_server', "Udaljeni Server");
|
||||
define('OGP_LANG_select_addon', "Odaberite Dodatak");
|
||||
define('OGP_LANG_install', "Instalirati");
|
||||
define('OGP_LANG_failed_to_start_file_download', "Preuzimanje datoteke nije uspjelo.");
|
||||
define('OGP_LANG_no_games_servers_available', "Na vašem računu nema dostupnih servera.");
|
||||
define('OGP_LANG_addon_installed_successfully', "Dodatak je uspješno instaliran");
|
||||
define('OGP_LANG_path', "Putanje");
|
||||
define('OGP_LANG_wait_while_decompressing', "Pričekajte dok se datoteka %s ne dekomprimira.");
|
||||
define('OGP_LANG_addon_name', "Ime Dodatka");
|
||||
define('OGP_LANG_url', "URL");
|
||||
define('OGP_LANG_select_game_type', "Odaberite Vrstu Igre");
|
||||
define('OGP_LANG_plugin', "Plugin");
|
||||
define('OGP_LANG_mappack', "Paket sa Mapama");
|
||||
define('OGP_LANG_config', "Konfiguracije");
|
||||
define('OGP_LANG_type', "Vrsta Dodatka");
|
||||
define('OGP_LANG_game', "Igra");
|
||||
define('OGP_LANG_show_all_addons', "Pokazati Sve Dodatke");
|
||||
define('OGP_LANG_show_addons_for_selected_type', "Pokazati Dodatke Za Odabranu Vrstu");
|
||||
define('OGP_LANG_show_addons_for_selected_game', "Pokazati Dodatke Za Odabranu Igru");
|
||||
define('OGP_LANG_linux_games', "Linuks Igre");
|
||||
define('OGP_LANG_windows_games', "Windows Igre");
|
||||
define('OGP_LANG_create_addon', "Kreirati Dodatak");
|
||||
define('OGP_LANG_addons_db', "Baza Podataka Za Dodatke");
|
||||
define('OGP_LANG_addon_has_been_created', "Dodatak %s Uspješno Kreiran.");
|
||||
define('OGP_LANG_remove_addon', "Ukloniti Dodatak");
|
||||
define('OGP_LANG_fill_the_url_address_to_a_compressed_file', "Molimo ispunite URL adresu za komprimiranu datoteku.");
|
||||
define('OGP_LANG_fill_the_addon_name', "Molimo ispunite naziv paketa za Dodatke.");
|
||||
define('OGP_LANG_select_an_addon_type', "Molimo, odaberite vrstu Dodatka");
|
||||
define('OGP_LANG_select_a_game_type', "Molimo, odaberite vrstu Igre");
|
||||
define('OGP_LANG_edit_addon', "Urediti Dodatak");
|
||||
define('OGP_LANG_post-script', "Post-instalacija skripte (bash)");
|
||||
define('OGP_LANG_replacements', "Zamjene:");
|
||||
define('OGP_LANG_addon_name_info', "Unesite naziv za ovaj Dodatak, to je naziv koji korisnik vidi.");
|
||||
define('OGP_LANG_url_info', "Unesite web adresu koja sadrži datoteku za preuzimanje, ako je komprimirana u zipu ili tar.gz će se raspakirati u root direktoriju servera ili na putanju navedeno u nastavku.");
|
||||
define('OGP_LANG_path_info', "Putanje mora biti u odnosu na mapu servera i ne smije sadržavati krajeve na početku ili kraju, npr. cstrike / cfg. Ako ostavite prazno upotrijebit če se root putanje.");
|
||||
define('OGP_LANG_post-script_info', "Unesite kod jezika za Bash, to će biti izvršeno kao skripta, možete upotrijebiti zamjenske tekstove da biste prilagodili instalaciju, zamijenit će ih podaci sa servera na kojem instalirate addon. Skripta će započeti iz root mape servera ili određenog putanja.");
|
||||
define('OGP_LANG_show_to_group', "Pokaži u grupi");
|
||||
define('OGP_LANG_all_groups', "Sve grupe");
|
||||
define('OGP_LANG_show_addons_for_selected_group', "Pokazati Dodatke za odabranu grupu");
|
||||
define('OGP_LANG_group', "Grupa");
|
||||
define('LANG_install_plugin', "Instalirati Plugin");
|
||||
define('LANG_install_mappack', "Instalirati Mape");
|
||||
define('LANG_install_config', "Instalirati Konfiguracije");
|
||||
define('LANG_game_name', "Ime Igre");
|
||||
define('LANG_directory', "Putanje Direktorija");
|
||||
define('LANG_remote_server', "Udaljeni Server");
|
||||
define('LANG_select_addon', "Odaberite Dodatak");
|
||||
define('LANG_install', "Instalirati");
|
||||
define('LANG_failed_to_start_file_download', "Preuzimanje datoteke nije uspjelo.");
|
||||
define('LANG_no_games_servers_available', "Na vašem računu nema dostupnih servera.");
|
||||
define('LANG_addon_installed_successfully', "Dodatak je uspješno instaliran");
|
||||
define('LANG_path', "Putanje");
|
||||
define('LANG_wait_while_decompressing', "Pričekajte dok se datoteka %s ne dekomprimira.");
|
||||
define('LANG_addon_name', "Ime Dodatka");
|
||||
define('LANG_url', "URL");
|
||||
define('LANG_select_game_type', "Odaberite Vrstu Igre");
|
||||
define('LANG_plugin', "Plugin");
|
||||
define('LANG_mappack', "Paket sa Mapama");
|
||||
define('LANG_config', "Konfiguracije");
|
||||
define('LANG_type', "Vrsta Dodatka");
|
||||
define('LANG_game', "Igra");
|
||||
define('LANG_show_all_addons', "Pokazati Sve Dodatke");
|
||||
define('LANG_show_addons_for_selected_type', "Pokazati Dodatke Za Odabranu Vrstu");
|
||||
define('LANG_show_addons_for_selected_game', "Pokazati Dodatke Za Odabranu Igru");
|
||||
define('LANG_linux_games', "Linuks Igre");
|
||||
define('LANG_windows_games', "Windows Igre");
|
||||
define('LANG_create_addon', "Kreirati Dodatak");
|
||||
define('LANG_addons_db', "Baza Podataka Za Dodatke");
|
||||
define('LANG_addon_has_been_created', "Dodatak %s Uspješno Kreiran.");
|
||||
define('LANG_remove_addon', "Ukloniti Dodatak");
|
||||
define('LANG_fill_the_url_address_to_a_compressed_file', "Molimo ispunite URL adresu za komprimiranu datoteku.");
|
||||
define('LANG_fill_the_addon_name', "Molimo ispunite naziv paketa za Dodatke.");
|
||||
define('LANG_select_an_addon_type', "Molimo, odaberite vrstu Dodatka");
|
||||
define('LANG_select_a_game_type', "Molimo, odaberite vrstu Igre");
|
||||
define('LANG_edit_addon', "Urediti Dodatak");
|
||||
define('LANG_post-script', "Post-instalacija skripte (bash)");
|
||||
define('LANG_replacements', "Zamjene:");
|
||||
define('LANG_addon_name_info', "Unesite naziv za ovaj Dodatak, to je naziv koji korisnik vidi.");
|
||||
define('LANG_url_info', "Unesite web adresu koja sadrži datoteku za preuzimanje, ako je komprimirana u zipu ili tar.gz će se raspakirati u root direktoriju servera ili na putanju navedeno u nastavku.");
|
||||
define('LANG_path_info', "Putanje mora biti u odnosu na mapu servera i ne smije sadržavati krajeve na početku ili kraju, npr. cstrike / cfg. Ako ostavite prazno upotrijebit če se root putanje.");
|
||||
define('LANG_post-script_info', "Unesite kod jezika za Bash, to će biti izvršeno kao skripta, možete upotrijebiti zamjenske tekstove da biste prilagodili instalaciju, zamijenit će ih podaci sa servera na kojem instalirate addon. Skripta će započeti iz root mape servera ili određenog putanja.");
|
||||
define('LANG_show_to_group', "Pokaži u grupi");
|
||||
define('LANG_all_groups', "Sve grupe");
|
||||
define('LANG_show_addons_for_selected_group', "Pokazati Dodatke za odabranu grupu");
|
||||
define('LANG_group', "Grupa");
|
||||
?>
|
||||
|
|
@ -22,28 +22,28 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_external_links', "Vanjske Poveznice");
|
||||
define('OGP_LANG_url', "URL");
|
||||
define('OGP_LANG_name', "Naziv");
|
||||
define('OGP_LANG_add_it', "Dodati");
|
||||
define('OGP_LANG_link_has_been_removed', " %s veza je uklonjena.");
|
||||
define('OGP_LANG_db_backup', "Sigurnosna kopija Baze Podataka");
|
||||
define('OGP_LANG_download_db_backup', "Skidati sigurnosnu kopiju Baze Podataka");
|
||||
define('OGP_LANG_restore_db_backup', "Vratiti sigurnosnu kopiju Baze Podataka");
|
||||
define('OGP_LANG_sql_file', "datoteka(.sql)");
|
||||
define('OGP_LANG_change_buttons_order', "Promijeniti redoslijed gumba");
|
||||
define('OGP_LANG_when', "Datum/Vrijeme");
|
||||
define('OGP_LANG_who', "Korisničko ime");
|
||||
define('OGP_LANG_where', "IP adresa");
|
||||
define('OGP_LANG_what', "Radnja");
|
||||
define('OGP_LANG_search', "Tražiti");
|
||||
define('OGP_LANG_empty_logger', "Isprazniti zapis");
|
||||
define('OGP_LANG_ban_list', "Popis zabrane");
|
||||
define('OGP_LANG_no_banned_ips', "Nema zabranjenih IP adrese");
|
||||
define('OGP_LANG_unban', "Ukloniti zabranu");
|
||||
define('OGP_LANG_client_ip', "Korisnički IP");
|
||||
define('OGP_LANG_banned_until', "Zabranjen do");
|
||||
define('OGP_LANG_unban_selected_ips', "Ukloniti zabranu izabranih IP adresa");
|
||||
define('OGP_LANG_view', "Pogledati");
|
||||
define('OGP_LANG_per_page', "Unose zapisa po stranici");
|
||||
define('LANG_external_links', "Vanjske Poveznice");
|
||||
define('LANG_url', "URL");
|
||||
define('LANG_name', "Naziv");
|
||||
define('LANG_add_it', "Dodati");
|
||||
define('LANG_link_has_been_removed', " %s veza je uklonjena.");
|
||||
define('LANG_db_backup', "Sigurnosna kopija Baze Podataka");
|
||||
define('LANG_download_db_backup', "Skidati sigurnosnu kopiju Baze Podataka");
|
||||
define('LANG_restore_db_backup', "Vratiti sigurnosnu kopiju Baze Podataka");
|
||||
define('LANG_sql_file', "datoteka(.sql)");
|
||||
define('LANG_change_buttons_order', "Promijeniti redoslijed gumba");
|
||||
define('LANG_when', "Datum/Vrijeme");
|
||||
define('LANG_who', "Korisničko ime");
|
||||
define('LANG_where', "IP adresa");
|
||||
define('LANG_what', "Radnja");
|
||||
define('LANG_search', "Tražiti");
|
||||
define('LANG_empty_logger', "Isprazniti zapis");
|
||||
define('LANG_ban_list', "Popis zabrane");
|
||||
define('LANG_no_banned_ips', "Nema zabranjenih IP adrese");
|
||||
define('LANG_unban', "Ukloniti zabranu");
|
||||
define('LANG_client_ip', "Korisnički IP");
|
||||
define('LANG_banned_until', "Zabranjen do");
|
||||
define('LANG_unban_selected_ips', "Ukloniti zabranu izabranih IP adresa");
|
||||
define('LANG_view', "Pogledati");
|
||||
define('LANG_per_page', "Unose zapisa po stranici");
|
||||
?>
|
||||
|
|
@ -22,22 +22,22 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_resetting_configs', "Vraćanje svih konfiguracija");
|
||||
define('OGP_LANG_updating_configs', "Ažuriranje starih konfiguracija");
|
||||
define('OGP_LANG_configs_updated_ok', "Konfiguracije su uspješno ažurirane.");
|
||||
define('OGP_LANG_reset_old_configs', "Vraćanje starih konfiguracija");
|
||||
define('OGP_LANG_update_configs', "Ažurirati konfiguracije");
|
||||
define('OGP_LANG_game_config_setup', "Postaviti konfiguracije igara");
|
||||
define('OGP_LANG_config_reset_warning', "Kada izbrišete stare konfiguracije, mogu se pojaviti problemi s dodijeljenim serverima, jer se identifikacijski brojevi možda ne podudaraju s novim konfiguracijama.");
|
||||
define('OGP_LANG_modify_configs_info', "Ako želite promijeniti konfiguraciju igre, možete izmijeniti datoteke na kojima se nalazi %s");
|
||||
define('OGP_LANG_updating_config_from_file', "Ažuriranje konfiguracije iz %s datoteke");
|
||||
define('OGP_LANG_error_when_handling_file', "Došlo je do pogreške prilikom preuzimanje datoteke %s.");
|
||||
define('OGP_LANG_error_while_adding_cfg_to_db', "Došlo je do pogreške prilikom dodavanja podataka iz %s u bazu podataka.");
|
||||
define('OGP_LANG_no_configs_found', "Nije pronađena konfiguracija iz %s datoteke.");
|
||||
define('OGP_LANG_select_game', "Odaberite Igru");
|
||||
define('OGP_LANG_create_xml_configs', "Stvoriti XML konfiguracije");
|
||||
define('OGP_LANG_failed_to_delete_config_from_db', "Nije uspjelo brisanje konfiguracije %s s baze podataka");
|
||||
define('OGP_LANG_failed_removing_file', "Uklanjanje datoteke nije uspjelo %s.");
|
||||
define('OGP_LANG_removed_game_cfg_from_disk_and_datbase', "Uklonjena je konfiguracija za %s iz pohrane i baze podataka.");
|
||||
define('OGP_LANG_delete_game_config_for', "Izbrisati konfiguraciju igre za %s s diska i baze podataka.");
|
||||
define('LANG_resetting_configs', "Vraćanje svih konfiguracija");
|
||||
define('LANG_updating_configs', "Ažuriranje starih konfiguracija");
|
||||
define('LANG_configs_updated_ok', "Konfiguracije su uspješno ažurirane.");
|
||||
define('LANG_reset_old_configs', "Vraćanje starih konfiguracija");
|
||||
define('LANG_update_configs', "Ažurirati konfiguracije");
|
||||
define('LANG_game_config_setup', "Postaviti konfiguracije igara");
|
||||
define('LANG_config_reset_warning', "Kada izbrišete stare konfiguracije, mogu se pojaviti problemi s dodijeljenim serverima, jer se identifikacijski brojevi možda ne podudaraju s novim konfiguracijama.");
|
||||
define('LANG_modify_configs_info', "Ako želite promijeniti konfiguraciju igre, možete izmijeniti datoteke na kojima se nalazi %s");
|
||||
define('LANG_updating_config_from_file', "Ažuriranje konfiguracije iz %s datoteke");
|
||||
define('LANG_error_when_handling_file', "Došlo je do pogreške prilikom preuzimanje datoteke %s.");
|
||||
define('LANG_error_while_adding_cfg_to_db', "Došlo je do pogreške prilikom dodavanja podataka iz %s u bazu podataka.");
|
||||
define('LANG_no_configs_found', "Nije pronađena konfiguracija iz %s datoteke.");
|
||||
define('LANG_select_game', "Odaberite Igru");
|
||||
define('LANG_create_xml_configs', "Stvoriti XML konfiguracije");
|
||||
define('LANG_failed_to_delete_config_from_db', "Nije uspjelo brisanje konfiguracije %s s baze podataka");
|
||||
define('LANG_failed_removing_file', "Uklanjanje datoteke nije uspjelo %s.");
|
||||
define('LANG_removed_game_cfg_from_disk_and_datbase', "Uklonjena je konfiguracija za %s iz pohrane i baze podataka.");
|
||||
define('LANG_delete_game_config_for', "Izbrisati konfiguraciju igre za %s s diska i baze podataka.");
|
||||
?>
|
||||
|
|
@ -22,22 +22,22 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_dashboard_ftp_text', "FTP klijent može komprimirati datoteke i poslati ih putem e-pošte, može dekomprimirati , uređivati tekstne datoteke i još mnogo toga.");
|
||||
define('OGP_LANG_dashboard_addons_manager_text', "Upravljajte svim različitim vrstama usluga s OGP-om. Odaberite između više od 115 servera, koje izravno dobavlja OGP.");
|
||||
define('OGP_LANG_dashboard_game_monitor_text', "Brzo pratite i pratite promet i zapisnike. Možete vidjeti koji su serveri gore i dolje.");
|
||||
define('OGP_LANG_dashboard_support_text', "Potražite podršku OGP Profesionalnog tima na forumu. Brzi odgovor i velika pažnja.");
|
||||
define('OGP_LANG_welcome_text', "Dobrodošli na Open Game Panel (OGP). OGP je softver otvorenog koda, koji vam omogućuje instalaciju, pokretanje i praćenje različitih servera.");
|
||||
define('OGP_LANG_any_server_is_online', "Serveri na mreži");
|
||||
define('OGP_LANG_current_map', "Trenutna Mapa");
|
||||
define('OGP_LANG_server_ip_port', "IP:Port");
|
||||
define('OGP_LANG_statistics', "Statistika");
|
||||
define('OGP_LANG_servers', "Serveri");
|
||||
define('OGP_LANG_players', "Igrači");
|
||||
define('OGP_LANG_server_status', "Stanje Servera");
|
||||
define('OGP_LANG_no_games_to_monitor', "Trenutno nema servera koji su na mreži / van mreže");
|
||||
define('OGP_LANG_online_servers', "Serveri na mreži");
|
||||
define('OGP_LANG_add_games_in', "Ako želite dodati igrice, to možete učiniti u %s");
|
||||
define('OGP_LANG_currently_online', "Trenutno Na Mreži");
|
||||
define('OGP_LANG_game_servers', "Serveri");
|
||||
define('OGP_LANG_select_remote_server', "Odaberite Udaljeni poslužitelj");
|
||||
define('LANG_dashboard_ftp_text', "FTP klijent može komprimirati datoteke i poslati ih putem e-pošte, može dekomprimirati , uređivati tekstne datoteke i još mnogo toga.");
|
||||
define('LANG_dashboard_addons_manager_text', "Upravljajte svim različitim vrstama usluga s OGP-om. Odaberite između više od 115 servera, koje izravno dobavlja OGP.");
|
||||
define('LANG_dashboard_game_monitor_text', "Brzo pratite i pratite promet i zapisnike. Možete vidjeti koji su serveri gore i dolje.");
|
||||
define('LANG_dashboard_support_text', "Potražite podršku OGP Profesionalnog tima na forumu. Brzi odgovor i velika pažnja.");
|
||||
define('LANG_welcome_text', "Dobrodošli na Open Game Panel (OGP). OGP je softver otvorenog koda, koji vam omogućuje instalaciju, pokretanje i praćenje različitih servera.");
|
||||
define('LANG_any_server_is_online', "Serveri na mreži");
|
||||
define('LANG_current_map', "Trenutna Mapa");
|
||||
define('LANG_server_ip_port', "IP:Port");
|
||||
define('LANG_statistics', "Statistika");
|
||||
define('LANG_servers', "Serveri");
|
||||
define('LANG_players', "Igrači");
|
||||
define('LANG_server_status', "Stanje Servera");
|
||||
define('LANG_no_games_to_monitor', "Trenutno nema servera koji su na mreži / van mreže");
|
||||
define('LANG_online_servers', "Serveri na mreži");
|
||||
define('LANG_add_games_in', "Ako želite dodati igrice, to možete učiniti u %s");
|
||||
define('LANG_currently_online', "Trenutno Na Mreži");
|
||||
define('LANG_game_servers', "Serveri");
|
||||
define('LANG_select_remote_server', "Odaberite Udaljeni poslužitelj");
|
||||
?>
|
||||
|
|
@ -22,9 +22,9 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_dsi_long', "Dinamička Slika Servera");
|
||||
define('OGP_LANG_dsi_select_server', "Molimo odaberite server sa liste");
|
||||
define('OGP_LANG_dsi_admin_long', "Postavke Dinamičke Slike Servera");
|
||||
define('OGP_LANG_dsi_list', "Lista Dinamičke Slike Servera");
|
||||
define('OGP_LANG_no_game_homes_assigned', "Nemate nijedan server dodijeljen vašem računu.");
|
||||
define('LANG_dsi_long', "Dinamička Slika Servera");
|
||||
define('LANG_dsi_select_server', "Molimo odaberite server sa liste");
|
||||
define('LANG_dsi_admin_long', "Postavke Dinamičke Slike Servera");
|
||||
define('LANG_dsi_list', "Lista Dinamičke Slike Servera");
|
||||
define('LANG_no_game_homes_assigned', "Nemate nijedan server dodijeljen vašem računu.");
|
||||
?>
|
||||
|
|
@ -1,17 +1,17 @@
|
|||
<?php
|
||||
|
||||
define('OGP_LANG_configuration_files', "Konfiguracijske datoteke");
|
||||
define('OGP_LANG_editing_file', "Uređivanje datoteke");
|
||||
define('OGP_LANG_no_server_specfied', "Nije naveden nijedan ID servera - ne može popisati nikakve konfiguracijske datoteke.");
|
||||
define('OGP_LANG_no_home', "Nemate pristup odredenom ID Serveru");
|
||||
define('OGP_LANG_no_configs_for_game', "Ovdje nema konfiguracije definiranih datoteka .");
|
||||
define('OGP_LANG_name', "Ime");
|
||||
define('OGP_LANG_no_description', "Bez opisa");
|
||||
define('OGP_LANG_description', "Opis");
|
||||
define('OGP_LANG_invalid_file', "Navedena datoteka možda neće biti uređena.");
|
||||
define('OGP_LANG_wrote_changes', "Datoteka je uspješno spremljena.");
|
||||
define('OGP_LANG_failed_write', "Spremanje datoteke nije uspjelo.");
|
||||
define('OGP_LANG_failed_read', "Čitanje datoteke nije uspjelo.");
|
||||
define('OGP_LANG_save', "Spremiti");
|
||||
define('OGP_LANG_go_back', "Natrag");
|
||||
define('OGP_LANG_new_file', "Nova Datoteka");
|
||||
define('LANG_configuration_files', "Konfiguracijske datoteke");
|
||||
define('LANG_editing_file', "Uređivanje datoteke");
|
||||
define('LANG_no_server_specfied', "Nije naveden nijedan ID servera - ne može popisati nikakve konfiguracijske datoteke.");
|
||||
define('LANG_no_home', "Nemate pristup odredenom ID Serveru");
|
||||
define('LANG_no_configs_for_game', "Ovdje nema konfiguracije definiranih datoteka .");
|
||||
define('LANG_name', "Ime");
|
||||
define('LANG_no_description', "Bez opisa");
|
||||
define('LANG_description', "Opis");
|
||||
define('LANG_invalid_file', "Navedena datoteka možda neće biti uređena.");
|
||||
define('LANG_wrote_changes', "Datoteka je uspješno spremljena.");
|
||||
define('LANG_failed_write', "Spremanje datoteke nije uspjelo.");
|
||||
define('LANG_failed_read', "Čitanje datoteke nije uspjelo.");
|
||||
define('LANG_save', "Spremiti");
|
||||
define('LANG_go_back', "Natrag");
|
||||
define('LANG_new_file', "Nova Datoteka");
|
||||
|
|
@ -23,21 +23,21 @@
|
|||
*/
|
||||
|
||||
include 'update.php';
|
||||
define('OGP_LANG_unable_download', "Nije moguće preuzeti %s");
|
||||
define('OGP_LANG_md5_failed', "Test MD5 nije uspio %s, pokušajte ponovo.");
|
||||
define('OGP_LANG_uninstall', "Ukloniti");
|
||||
define('OGP_LANG_install', "Instalirati");
|
||||
define('OGP_LANG_uptodate', "Ažurirano");
|
||||
define('OGP_LANG_update_available', "Dostupno ažuriranje");
|
||||
define('OGP_LANG_not_installed', "Nije instalirano");
|
||||
define('OGP_LANG_installed', "Instalirano");
|
||||
define('OGP_LANG_download_update', "Preuzimanje/Ažuriranje");
|
||||
define('OGP_LANG_are_you_sure', "Jeste li sigurni");
|
||||
define('OGP_LANG_uninstalling_module_dataloss', "Deinstaliranjem modula izgubit ćete sve podatke koji se odnose na njega.");
|
||||
define('OGP_LANG_remove_files_for', "Želite li ukloniti sve datoteke za");
|
||||
define('OGP_LANG_confirm', "Potvrditi");
|
||||
define('OGP_LANG_cancel', "Otkazati");
|
||||
define('OGP_LANG_extra_themes', "Dodatne teme");
|
||||
define('OGP_LANG_extra_modules', "Dodatni moduli");
|
||||
define('OGP_LANG_search_for_updates', "Provjerite ažuriranja");
|
||||
define('LANG_unable_download', "Nije moguće preuzeti %s");
|
||||
define('LANG_md5_failed', "Test MD5 nije uspio %s, pokušajte ponovo.");
|
||||
define('LANG_uninstall', "Ukloniti");
|
||||
define('LANG_install', "Instalirati");
|
||||
define('LANG_uptodate', "Ažurirano");
|
||||
define('LANG_update_available', "Dostupno ažuriranje");
|
||||
define('LANG_not_installed', "Nije instalirano");
|
||||
define('LANG_installed', "Instalirano");
|
||||
define('LANG_download_update', "Preuzimanje/Ažuriranje");
|
||||
define('LANG_are_you_sure', "Jeste li sigurni");
|
||||
define('LANG_uninstalling_module_dataloss', "Deinstaliranjem modula izgubit ćete sve podatke koji se odnose na njega.");
|
||||
define('LANG_remove_files_for', "Želite li ukloniti sve datoteke za");
|
||||
define('LANG_confirm', "Potvrditi");
|
||||
define('LANG_cancel', "Otkazati");
|
||||
define('LANG_extra_themes', "Dodatne teme");
|
||||
define('LANG_extra_modules', "Dodatni moduli");
|
||||
define('LANG_search_for_updates', "Provjerite ažuriranja");
|
||||
?>
|
||||
|
|
@ -22,53 +22,53 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_create_alias', "Stvoriti Brzo Skidanje sa mapom");
|
||||
define('OGP_LANG_save_as', "Spremiti kao");
|
||||
define('OGP_LANG_failure', "Pogreška, nije uspjelo generirati datoteku za Brzo Skidanje");
|
||||
define('OGP_LANG_success', "Uspješno");
|
||||
define('OGP_LANG_fast_download_service_for', "Usluga Brzo Skidanje za %s");
|
||||
define('OGP_LANG_to_the_path', "Na putanju");
|
||||
define('OGP_LANG_at_url', "Na URL");
|
||||
define('OGP_LANG_create_alias_for', "Stvoriti Brzo Skidanje za");
|
||||
define('OGP_LANG_fast_dl', "Upravljajte Brzim Skidanjem (FastDL)");
|
||||
define('OGP_LANG_current_aliases_at_remote_server', "Trenutni Serveri na kojima se koristi Brzo Skidanje");
|
||||
define('OGP_LANG_delete_selected_aliases', "Izbrisati odabrane usluge");
|
||||
define('OGP_LANG_no_aliases_defined', "Još ne postoje web usluge Brzo Skidanje koji definira OGP za ovaj udaljeni server.");
|
||||
define('OGP_LANG_fastdl_port', "Port");
|
||||
define('OGP_LANG_fastdl_port_info', "Port na kojem če vaš Daemon za Brzo Skidanje početi");
|
||||
define('OGP_LANG_fastdl_ip', "Adresa");
|
||||
define('OGP_LANG_fastdl_ip_info', "IP Adresa ili Domena u kojem če vaše Brzo Skidanje početi, Domena mora biti navedena u /etc/hosts.");
|
||||
define('OGP_LANG_listing', "Spisak");
|
||||
define('OGP_LANG_listing_info', "Ako je 'uključeno', server če pročitati sadržaj mape.");
|
||||
define('OGP_LANG_fast_dl_advanced', "Napredne postavke");
|
||||
define('OGP_LANG_apply_settings_and_restart_fastdl', "Spremiti Daemon konfiguraciju i ponovo pokrenuti");
|
||||
define('OGP_LANG_stop_fastdl', "Zaustaviti Daemon za Brzo Skidanje");
|
||||
define('OGP_LANG_fast_download_daemon_running', "Daemon za Brzo Skidanje je pokrenut");
|
||||
define('OGP_LANG_fast_download_daemon_not_running', "Daemon za Brzo Skidanje nije pokrenut.");
|
||||
define('OGP_LANG_fastdl_could_not_be_restarted', "Usluga Brzo Skidanje nemože biti ponovno pokrenuta.");
|
||||
define('OGP_LANG_configuration_file_could_not_be_written', "Konfiguracijska datoteka nije mogla biti napisana.");
|
||||
define('OGP_LANG_remove_folders', "Ukloniti mapu za odabrane usluge.");
|
||||
define('OGP_LANG_remove_folder', "Ukloniti mapu");
|
||||
define('OGP_LANG_delete_alias', "Izbrisati uslugu");
|
||||
define('OGP_LANG_no_game_homes_assigned', "Nemate nijedan server podjeljen vašem računu.");
|
||||
define('OGP_LANG_select_remote_server', "Odaberite udaljeni server");
|
||||
define('OGP_LANG_access_rules', "Pravila pristupa");
|
||||
define('OGP_LANG_create_aliases', "Stvoriti Brzo Skidanje");
|
||||
define('OGP_LANG_select_game', "Odaberite Igru");
|
||||
define('OGP_LANG_games_without_specified_rules', "Igra bez posebnih pravila");
|
||||
define('OGP_LANG_match_file_extension', "Proširenje datoteke");
|
||||
define('OGP_LANG_match_file_extension_info', "Navedite proširenja od strane coma,<br> odgovarajuće datoteke bit će dostupne.<br> <b> Ostavite prazno za neograničen pristup </b>.");
|
||||
define('OGP_LANG_match_client_ip', "Podudaranje IP klijenta");
|
||||
define('OGP_LANG_match_client_ip_info', "Veze s odgovarajućim IP-om bit će odobrene,<br>ostavite prazno za neograničen pristup. Možete koristiti<br>više IP adresa ili raspona od strane coma:<br>/xx subnets<br>Primjer: 10.0.0.0/16<br>/xxx.xxx.xxx.xxx subnets<br>Primjer: 10.0.0.0/255.0.0.0<br>Hyphen rasponi<br>Primjer: 10.0.0.5-230<br>Asterisk podudaranje<br>Primjer: 10.0.*.*");
|
||||
define('OGP_LANG_save_access_rules', "Spremiti pravila pristupa");
|
||||
define('OGP_LANG_create_access_rules', "Stvoriti pravila pristupa");
|
||||
define('OGP_LANG_invalid_entries_found', "Pronađeni su nevažeći unosi");
|
||||
define('OGP_LANG_game_name', "Ime Igre");
|
||||
define('OGP_LANG_alias_already_exists', "Ova usluga %s već postoji.");
|
||||
define('OGP_LANG_warning_access_rules_applied_once_alias_created', "UPOZORENJE: Pristupna pravila primjenjuju se kada se stvori usluga Brzo Skidanje. Na trenutne usluge Brzo Skidanje neće se primjenjivati promjene.");
|
||||
define('OGP_LANG_autostart_on_agent_startup', "Automatsko pokretanje Agenta na Uključivanju");
|
||||
define('OGP_LANG_autostart_on_agent_startup_info', "Pokrenuti Daemon za Brzo Skidanje automatski kada se Agent pokrene.");
|
||||
define('OGP_LANG_port_forwarded_to_80', "Port prosljeđen na 80");
|
||||
define('OGP_LANG_port_forwarded_to_80_info', "Omogućite ovu opciju ako je port konfiguriran za ovaj Daemon za Brzo Skidanje proslijeđen od porta 80 pa će port biti skriven na URL-ovima.");
|
||||
define('OGP_LANG_current_access_rules', "Trenutna pravila pristupa");
|
||||
define('LANG_create_alias', "Stvoriti Brzo Skidanje sa mapom");
|
||||
define('LANG_save_as', "Spremiti kao");
|
||||
define('LANG_failure', "Pogreška, nije uspjelo generirati datoteku za Brzo Skidanje");
|
||||
define('LANG_success', "Uspješno");
|
||||
define('LANG_fast_download_service_for', "Usluga Brzo Skidanje za %s");
|
||||
define('LANG_to_the_path', "Na putanju");
|
||||
define('LANG_at_url', "Na URL");
|
||||
define('LANG_create_alias_for', "Stvoriti Brzo Skidanje za");
|
||||
define('LANG_fast_dl', "Upravljajte Brzim Skidanjem (FastDL)");
|
||||
define('LANG_current_aliases_at_remote_server', "Trenutni Serveri na kojima se koristi Brzo Skidanje");
|
||||
define('LANG_delete_selected_aliases', "Izbrisati odabrane usluge");
|
||||
define('LANG_no_aliases_defined', "Još ne postoje web usluge Brzo Skidanje koji definira OGP za ovaj udaljeni server.");
|
||||
define('LANG_fastdl_port', "Port");
|
||||
define('LANG_fastdl_port_info', "Port na kojem če vaš Daemon za Brzo Skidanje početi");
|
||||
define('LANG_fastdl_ip', "Adresa");
|
||||
define('LANG_fastdl_ip_info', "IP Adresa ili Domena u kojem če vaše Brzo Skidanje početi, Domena mora biti navedena u /etc/hosts.");
|
||||
define('LANG_listing', "Spisak");
|
||||
define('LANG_listing_info', "Ako je 'uključeno', server če pročitati sadržaj mape.");
|
||||
define('LANG_fast_dl_advanced', "Napredne postavke");
|
||||
define('LANG_apply_settings_and_restart_fastdl', "Spremiti Daemon konfiguraciju i ponovo pokrenuti");
|
||||
define('LANG_stop_fastdl', "Zaustaviti Daemon za Brzo Skidanje");
|
||||
define('LANG_fast_download_daemon_running', "Daemon za Brzo Skidanje je pokrenut");
|
||||
define('LANG_fast_download_daemon_not_running', "Daemon za Brzo Skidanje nije pokrenut.");
|
||||
define('LANG_fastdl_could_not_be_restarted', "Usluga Brzo Skidanje nemože biti ponovno pokrenuta.");
|
||||
define('LANG_configuration_file_could_not_be_written', "Konfiguracijska datoteka nije mogla biti napisana.");
|
||||
define('LANG_remove_folders', "Ukloniti mapu za odabrane usluge.");
|
||||
define('LANG_remove_folder', "Ukloniti mapu");
|
||||
define('LANG_delete_alias', "Izbrisati uslugu");
|
||||
define('LANG_no_game_homes_assigned', "Nemate nijedan server podjeljen vašem računu.");
|
||||
define('LANG_select_remote_server', "Odaberite udaljeni server");
|
||||
define('LANG_access_rules', "Pravila pristupa");
|
||||
define('LANG_create_aliases', "Stvoriti Brzo Skidanje");
|
||||
define('LANG_select_game', "Odaberite Igru");
|
||||
define('LANG_games_without_specified_rules', "Igra bez posebnih pravila");
|
||||
define('LANG_match_file_extension', "Proširenje datoteke");
|
||||
define('LANG_match_file_extension_info', "Navedite proširenja od strane coma,<br> odgovarajuće datoteke bit će dostupne.<br> <b> Ostavite prazno za neograničen pristup </b>.");
|
||||
define('LANG_match_client_ip', "Podudaranje IP klijenta");
|
||||
define('LANG_match_client_ip_info', "Veze s odgovarajućim IP-om bit će odobrene,<br>ostavite prazno za neograničen pristup. Možete koristiti<br>više IP adresa ili raspona od strane coma:<br>/xx subnets<br>Primjer: 10.0.0.0/16<br>/xxx.xxx.xxx.xxx subnets<br>Primjer: 10.0.0.0/255.0.0.0<br>Hyphen rasponi<br>Primjer: 10.0.0.5-230<br>Asterisk podudaranje<br>Primjer: 10.0.*.*");
|
||||
define('LANG_save_access_rules', "Spremiti pravila pristupa");
|
||||
define('LANG_create_access_rules', "Stvoriti pravila pristupa");
|
||||
define('LANG_invalid_entries_found', "Pronađeni su nevažeći unosi");
|
||||
define('LANG_game_name', "Ime Igre");
|
||||
define('LANG_alias_already_exists', "Ova usluga %s već postoji.");
|
||||
define('LANG_warning_access_rules_applied_once_alias_created', "UPOZORENJE: Pristupna pravila primjenjuju se kada se stvori usluga Brzo Skidanje. Na trenutne usluge Brzo Skidanje neće se primjenjivati promjene.");
|
||||
define('LANG_autostart_on_agent_startup', "Automatsko pokretanje Agenta na Uključivanju");
|
||||
define('LANG_autostart_on_agent_startup_info', "Pokrenuti Daemon za Brzo Skidanje automatski kada se Agent pokrene.");
|
||||
define('LANG_port_forwarded_to_80', "Port prosljeđen na 80");
|
||||
define('LANG_port_forwarded_to_80_info', "Omogućite ovu opciju ako je port konfiguriran za ovaj Daemon za Brzo Skidanje proslijeđen od porta 80 pa će port biti skriven na URL-ovima.");
|
||||
define('LANG_current_access_rules', "Trenutna pravila pristupa");
|
||||
?>
|
||||
|
|
@ -22,14 +22,14 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_ftp_address', "FTP adresa %s:%s");
|
||||
define('OGP_LANG_change_account_details', "Promjena detalji računa");
|
||||
define('OGP_LANG_remove_account', "Izbriši račun");
|
||||
define('OGP_LANG_ftp_account_already_exists', "Ovaj FTP račun već postoji.");
|
||||
define('OGP_LANG_full_path', "Glavni Direktorij");
|
||||
define('OGP_LANG_add_ftp_account', "Dodati FTP račun");
|
||||
define('OGP_LANG_remote_server', "Udaljeni Poslužitelj");
|
||||
define('OGP_LANG_server_name', "Naziv Servera");
|
||||
define('OGP_LANG_ftp_account_username_too_long', "FTP korisničko ime je predugo. Isprobajte kraće korisničko ime najviše 20 znakova.");
|
||||
define('OGP_LANG_ftp_account_password_too_long', "FTP lozinka je predugačka. Isprobajte kraću lozinku najviše 20 znakova.");
|
||||
define('LANG_ftp_address', "FTP adresa %s:%s");
|
||||
define('LANG_change_account_details', "Promjena detalji računa");
|
||||
define('LANG_remove_account', "Izbriši račun");
|
||||
define('LANG_ftp_account_already_exists', "Ovaj FTP račun već postoji.");
|
||||
define('LANG_full_path', "Glavni Direktorij");
|
||||
define('LANG_add_ftp_account', "Dodati FTP račun");
|
||||
define('LANG_remote_server', "Udaljeni Poslužitelj");
|
||||
define('LANG_server_name', "Naziv Servera");
|
||||
define('LANG_ftp_account_username_too_long', "FTP korisničko ime je predugo. Isprobajte kraće korisničko ime najviše 20 znakova.");
|
||||
define('LANG_ftp_account_password_too_long', "FTP lozinka je predugačka. Isprobajte kraću lozinku najviše 20 znakova.");
|
||||
?>
|
||||
|
|
@ -22,189 +22,189 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_no_games_to_monitor', "Nemate nijednu konfiguriranu igricu koju možete nadzirati.");
|
||||
define('OGP_LANG_status', "Status");
|
||||
define('OGP_LANG_fail_no_mods', "Nijedan Mod nije omogućen za ovu igru! Morate zatražiti od administratora OGP-a da dodate Mod(ove) za igru koja vam je dodjeljena.");
|
||||
define('OGP_LANG_no_game_homes_assigned', "Nemate nijedan server dodijeljen vašem računu.");
|
||||
define('OGP_LANG_select_game_home_to_configure', "Odaberite server koji želite konfigurirati");
|
||||
define('OGP_LANG_file_manager', "Upravitelj datoteka");
|
||||
define('OGP_LANG_configure_mods', "Konfigurirajte modove");
|
||||
define('OGP_LANG_install_update_steam', "Instalirati/Ažurirati preko Steam-a");
|
||||
define('OGP_LANG_install_update_manual', "Instalirati/Ručno ažurirati");
|
||||
define('OGP_LANG_assign_game_homes', "Dodijeli server");
|
||||
define('OGP_LANG_user', "Korisnik");
|
||||
define('OGP_LANG_group', "Grupa");
|
||||
define('OGP_LANG_start', "Početak");
|
||||
define('OGP_LANG_ogp_agent_ip', "OGP IP adresa Agenta");
|
||||
define('OGP_LANG_max_players', "Maksimalno Igrača");
|
||||
define('OGP_LANG_max', "Maksimalno");
|
||||
define('OGP_LANG_ip_and_port', "IP i Port");
|
||||
define('OGP_LANG_available_maps', "Dostupne Mape");
|
||||
define('OGP_LANG_map_path', "Putanje do Mape");
|
||||
define('OGP_LANG_available_parameters', "Dostupni parametri");
|
||||
define('OGP_LANG_start_server', "Pokrenuti Server");
|
||||
define('OGP_LANG_start_wait_note', "Pokretanje servera može potrajati neko vrijeme. Pričekajte bez zatvaranja preglednika.");
|
||||
define('OGP_LANG_game_type', "Vrsta Igre");
|
||||
define('OGP_LANG_map', "Mapa");
|
||||
define('OGP_LANG_starting_server', "Pokretanje Servera, molimo pričekajte...");
|
||||
define('OGP_LANG_starting_server_settings', "Pokretanje Servera sa sljedećim postavkama");
|
||||
define('OGP_LANG_startup_params', "Pokretanje parametri");
|
||||
define('OGP_LANG_startup_cpu', "CPU na kojem je server pokrenut");
|
||||
define('OGP_LANG_startup_nice', "Vrijednost servera");
|
||||
define('OGP_LANG_game_home', "Home Putanje");
|
||||
define('OGP_LANG_server_started', "Server je uspješno pokrenut");
|
||||
define('OGP_LANG_no_parameter_access', "Nemate pristup parametrima.");
|
||||
define('OGP_LANG_extra_parameters', "Dodatni Parametri");
|
||||
define('OGP_LANG_no_extra_param_access', "Nemate pristup dodatnim parametrima.");
|
||||
define('OGP_LANG_extra_parameters_info', "Ovi parametri se stavljaju na kraj naredbenog retka kada se igra započne.");
|
||||
define('OGP_LANG_game_exec_not_found', "izvršna datoteka igre %s nije pronađena s udaljenog servera.");
|
||||
define('OGP_LANG_select_params_and_start', "Odaberite parametre za pokretanje servera i pritisnite tipku '%s'.");
|
||||
define('OGP_LANG_no_ip_port_pairs_assigned', "Nema IP Portova dodijeljenih za ovu Home maou. Ako nemate pristup uređivanju Home mape, obratite se administratoru.");
|
||||
define('OGP_LANG_unable_to_get_log', "Unable to get log, retval %s.");
|
||||
define('OGP_LANG_server_binary_not_executable', "Binarni poslužitelj nije izvršiv. Provjerite imate li odgovarajuća dopuštenja u Home direktoriju poslužitelja.");
|
||||
define('OGP_LANG_server_not_running_log_found', "Poslužitelj se ne izvodi, ali se pronalazi zapisnik. NAPOMENA: Ovaj zapisnik možda nije povezan s posljednjim pokretanjem poslužitelja.");
|
||||
define('OGP_LANG_ip_port_pair_not_owned', "IP: PORT par nije u vlasništvu.");
|
||||
define('OGP_LANG_unsuitable_maxplayers_value_maximum_reachable_number_of_slots_has_been_set', "Neodgovarajuća maksimalna vrijednost igrača, postavljen je maksimalni broj dostupnih mjesta.");
|
||||
define('OGP_LANG_server_running_not_responding', "Serverje pokrenut, ali ne reagira,<br>možda postoji nekakav problem i možda želite");
|
||||
define('OGP_LANG_update_started', "Ažuriranje je počelo, molimo pričekajte...");
|
||||
define('OGP_LANG_failed_to_start_steam_update', "Neuspješno pokretanje Steam ažuriranje. Pogledajte zapisnik agenta.");
|
||||
define('OGP_LANG_failed_to_start_rsync_update', "Neuspješno pokretanje Rsync ažuriranje. Pogledajte zapisnik agenta.");
|
||||
define('OGP_LANG_update_completed', "Ažuriranje je uspješno dovršeno.");
|
||||
define('OGP_LANG_update_in_progress', "Ažuriranje u tijeku, molimo pričekajte...");
|
||||
define('OGP_LANG_refresh_steam_status', "Osvježiti Steam status");
|
||||
define('OGP_LANG_refresh_rsync_status', "Osvježiti Rsync status");
|
||||
define('OGP_LANG_server_running_cant_update', "Server je pokrenut tako da ažuriranje nije moguće. Zaustavite Server prije ažuriranja.");
|
||||
define('OGP_LANG_xml_steam_error', "Odabrana vrsta Servera ne podržava Steam Instaliracija/Ažuriranje");
|
||||
define('OGP_LANG_mod_key_not_found_from_xml', "Mod ključ '%s' nije pronađen iz XML datoteke.");
|
||||
define('OGP_LANG_stop_update', "Zaustaviti ažuriranje");
|
||||
define('OGP_LANG_statistics', "Statistika");
|
||||
define('OGP_LANG_servers', "Serveri");
|
||||
define('OGP_LANG_players', "Igrači");
|
||||
define('OGP_LANG_current_map', "Trenutna Mapa");
|
||||
define('OGP_LANG_stop_server', "Zaustaviti Server");
|
||||
define('OGP_LANG_server_ip_port', "IP:Port Servera");
|
||||
define('OGP_LANG_server_name', "Ime Servera");
|
||||
define('OGP_LANG_server_id', "ID Servera");
|
||||
define('OGP_LANG_player_name', "Ime Igrača");
|
||||
define('OGP_LANG_score', "Rezultat");
|
||||
define('OGP_LANG_time', "Vrijeme");
|
||||
define('OGP_LANG_no_rights_to_stop_server', "Nemate prava za zaustavljanje ovog servera.");
|
||||
define('OGP_LANG_no_ogp_lgsl_support', "Ovaj server (pokrenut: %s) nema LGSL podršku u OGP-u i njegova se statistika ne može prikazati.");
|
||||
define('OGP_LANG_server_status', "Server na %s je %s.");
|
||||
define('OGP_LANG_server_stopped', "Server '%s' je zaustavljen.");
|
||||
define('OGP_LANG_if_want_to_start_homes', "Ako želite pokrenuti Igrice idite na %s.");
|
||||
define('OGP_LANG_view_log', "Pogledati Zapisnik");
|
||||
define('OGP_LANG_if_want_manage', "Ako želite upravljati svojim igrama, to možete učiniti u");
|
||||
define('OGP_LANG_columns', "stupcima");
|
||||
define('OGP_LANG_group_users', "Korisnici grupe:");
|
||||
define('OGP_LANG_assigned_to', "Dodijeljen:");
|
||||
define('OGP_LANG_restart_server', "Ponovno pokrenuti");
|
||||
define('OGP_LANG_restarting_server', "Pokretanje Servera, molimo pričekajte...");
|
||||
define('OGP_LANG_server_restarted', "Server '%s' je ponovno pokrenut.");
|
||||
define('OGP_LANG_server_not_running', "Server nije pokrenut.");
|
||||
define('OGP_LANG_address', "Adresa");
|
||||
define('OGP_LANG_owner', "Vlasnik");
|
||||
define('OGP_LANG_operations', "Radnje");
|
||||
define('OGP_LANG_search', "Tražiti");
|
||||
define('OGP_LANG_maps_read_from', "Mapa učitana od");
|
||||
define('OGP_LANG_file', "datoteka");
|
||||
define('OGP_LANG_folder', "mapa");
|
||||
define('OGP_LANG_unable_retrieve_mod_info', "Nije moguće dohvatiti mod podatke iz baze podataka.");
|
||||
define('OGP_LANG_unexpected_result_libremote', "Neočekivani rezultat iz libremotea, molimo obavijestite programere.");
|
||||
define('OGP_LANG_unable_get_info', "Nije moguće dobiti potrebne informacije za pokretanje, pokretanje blokirano.");
|
||||
define('OGP_LANG_server_already_running', "Server je već pokrenut. Ako server ne vidite u Monitor Igara, vjerojatno postoji nekakav problem i možda biste htjeli");
|
||||
define('OGP_LANG_already_running_stop_server', "Zaustaviti Server");
|
||||
define('OGP_LANG_error_server_already_running', "POGREŠKA: Server već radi na port");
|
||||
define('OGP_LANG_failed_start_server_code', "Pokretanje udaljenog servera nije uspjelo. Kod pogreške: %s");
|
||||
define('OGP_LANG_disabled', "onemogućeno");
|
||||
define('OGP_LANG_not_found_server', "Nije moguće pronaći udaljeni Server sa ID");
|
||||
define('OGP_LANG_rcon_command_title', "RCON Naredba");
|
||||
define('OGP_LANG_has_sent_to', "poslano za");
|
||||
define('OGP_LANG_need_set_remote_pass', "Morate postaviti RCON lozinku na");
|
||||
define('OGP_LANG_before_sending_rcon_com', "prije slanja RCON naredbi ");
|
||||
define('OGP_LANG_retry', "Ponovi");
|
||||
define('OGP_LANG_page', "stranica");
|
||||
define('OGP_LANG_server_cant_start', "server se ne može pokrenuti");
|
||||
define('OGP_LANG_server_cant_stop', "server se ne može zaustaviti");
|
||||
define('OGP_LANG_error_occured_remote_host', "Došlo je do pogreške na udaljenom poslužitelju");
|
||||
define('OGP_LANG_follow_server_status', "Možete pratiti status servera iz");
|
||||
define('OGP_LANG_addons', "Dodaci");
|
||||
define('OGP_LANG_hostname', "Naziv Hosta");
|
||||
define('OGP_LANG_rsync_install', "[Rsync Instalacija]");
|
||||
define('OGP_LANG_ping', "Ping");
|
||||
define('OGP_LANG_team', "Tim");
|
||||
define('OGP_LANG_deaths', "Smrti");
|
||||
define('OGP_LANG_pid', "PID");
|
||||
define('OGP_LANG_skill', "Skill");
|
||||
define('OGP_LANG_AIBot', "AIBot");
|
||||
define('OGP_LANG_steamid', "Steam ID");
|
||||
define('OGP_LANG_player', "Igrač");
|
||||
define('OGP_LANG_port', "Port");
|
||||
define('OGP_LANG_rcon_presets', "RCON predpodešavanje");
|
||||
define('OGP_LANG_update_from_local_master_server', "Ažurirati s lokalnog Master Servera");
|
||||
define('OGP_LANG_update_from_selected_rsync_server', "Ažurirati s odabranog Rsync servera");
|
||||
define('OGP_LANG_execute_selected_server_operations', "Izvršavanje odabranih operacija servera");
|
||||
define('OGP_LANG_execute_operations', "Izvršiti operacije");
|
||||
define('OGP_LANG_account_expiration', "Račun ističe");
|
||||
define('OGP_LANG_mysql_databases', "MySQL Baza Podataka");
|
||||
define('OGP_LANG_failed_querying_server', "* Server nije uspješno pokrenut.");
|
||||
define('OGP_LANG_query_protocol_not_supported', "Ne postoji upitni protokol u OGP-u koji može podržati ovaj server.");
|
||||
define('OGP_LANG_queries_disabled_by_setting_disable_queries_after', "Upiti su onemogućeni postavljanjem: Onemogući upite nakon: %s, jer imate %s servera.<br>");
|
||||
define('OGP_LANG_presets_for_game_and_mod', "RCON predpodešavanje za %s i mod %s");
|
||||
define('OGP_LANG_name', "Ime");
|
||||
define('OGP_LANG_command', "RCON Naredba");
|
||||
define('OGP_LANG_add_preset', "Dodati predpodešavanje");
|
||||
define('OGP_LANG_edit_presets', "Uređivanje postavki");
|
||||
define('OGP_LANG_del_preset', "Izbrisati");
|
||||
define('OGP_LANG_change_preset', "Promijeniti");
|
||||
define('OGP_LANG_send_command', "Poslati naredbu");
|
||||
define('OGP_LANG_starting_copy_with_master_server_named', "Pokretanje kopiranje sa Master Server pod nazivom '%s'...");
|
||||
define('OGP_LANG_starting_sync_with', "Pokretanje sinkronizacije sa %s...");
|
||||
define('OGP_LANG_refresh_interval', "Zapisnik intervala");
|
||||
define('OGP_LANG_finished_manual_update', "Završeno ručno ažuriranje");
|
||||
define('OGP_LANG_failed_to_start_file_download', "Preuzimanje datoteke nije uspjelo");
|
||||
define('OGP_LANG_game_name', "Ime Igre");
|
||||
define('OGP_LANG_dest_dir', "Odredišni direktorij");
|
||||
define('OGP_LANG_remote_server', "Udaljeni Server");
|
||||
define('OGP_LANG_file_url', "URL Datoteka");
|
||||
define('OGP_LANG_file_url_info', "URL datoteke koja je prenošena i nekomprimirana u direktorij.");
|
||||
define('OGP_LANG_dest_filename', "Odredišni naziv datoteke");
|
||||
define('OGP_LANG_dest_filename_info', "Naziv datoteke za odredišnu datoteku.");
|
||||
define('OGP_LANG_update_server', "Ažuriraj Server");
|
||||
define('OGP_LANG_unavailable', "Nedostupan");
|
||||
define('OGP_LANG_upload_map_image', "Učitaj sliku karte");
|
||||
define('OGP_LANG_upload_image', "Učitaj sliku");
|
||||
define('OGP_LANG_jpg_gif_png_less_than_1mb', "Slika mora biti jpg, gir ili png i manje od 1 MB.");
|
||||
define('OGP_LANG_check_dev_console', "Pogreška prilikom prijenosa datoteke, provjerite konzolu razvojnih programera preglednika.");
|
||||
define('OGP_LANG_uploaded_successfully', "Učitano je uspješno.");
|
||||
define('OGP_LANG_cant_create_folder', "Nije moguće izraditi mapu:<br><b>%s</b>");
|
||||
define('OGP_LANG_cant_write_file', "Nije moguće pisati datoteku:<br><b>%s</b>");
|
||||
define('OGP_LANG_exceeded_php_directive', "Premašila je PHP direktivu.<br><b>%s</b>");
|
||||
define('OGP_LANG_unknown_errors', "Nepoznate pogreške.");
|
||||
define('OGP_LANG_directory', "Direktorij");
|
||||
define('OGP_LANG_view_player_commands', "Pogledati naredbe igrača");
|
||||
define('OGP_LANG_hide_player_commands', "Sakriti naredbe igrača");
|
||||
define('OGP_LANG_no_online_players', "Nema igrača na mreži.");
|
||||
define('OGP_LANG_invalid_game_mod_id', "Navedeno je nevažeći ID Igre/Moda.");
|
||||
define('OGP_LANG_auto_update_title_popup', "Link za Steam Automatsko Ažuriranje");
|
||||
define('OGP_LANG_auto_update_popup_html', "<p>Koristite vezu u nastavku da biste provjerili i automatski ažurirali svoj server putem Steam-a ako je potrebno. & Nbsp; Možete upotrijebiti korištenjem cronjob-a ili ručno pokrenuti postupak.");
|
||||
define('OGP_LANG_api_links_popup_html', "<p>Odaberite radnju koju želite izvršiti pomoću OGP API-ja za ovaj poslužitelj igre. Zatim pomoću donje veze izvedite željenu radnju. Željenu radnju možete pokrenuti pomoću cronjoba ili izravnim zahtjevom.</p>");
|
||||
define('OGP_LANG_auto_update_copy_me', "Kopiraj");
|
||||
define('OGP_LANG_auto_update_copy_me_success', "Kopirano!");
|
||||
define('OGP_LANG_auto_update_copy_me_fail', "Kopiranje nije uspjelo. Molimo ručno kopirajte vezu.");
|
||||
define('OGP_LANG_get_steam_autoupdate_api_link', "Link za Automatsko Ažuriranje");
|
||||
define('OGP_LANG_show_api_actions', "Prikaži akcije API-ja");
|
||||
define('OGP_LANG_api_links', "API Linkovi");
|
||||
define('OGP_LANG_update_attempt_from_nonmaster_server', "Korisnik %s pokušao je ažurirati home_id %dpreko non-master servera. (Home ID: %d)");
|
||||
define('OGP_LANG_attempting_nonmaster_update', "Pokušavate ažuritati ovaj server preko non-master servera.");
|
||||
define('OGP_LANG_cannot_update_from_own_self', "Lokalno ažuriranje servera možda neće raditi na glavnom Master Serveru.");
|
||||
define('OGP_LANG_show_server_id', "Pokaži ID-ove Servera");
|
||||
define('OGP_LANG_hide_server_id', "Sakrij ID-ove Servera");
|
||||
define('OGP_LANG_edit_configuration_files', "Uredi konfiguracijske datoteke");
|
||||
define('OGP_LANG_admin', "Admin");
|
||||
define('OGP_LANG_cid', "CID");
|
||||
define('OGP_LANG_phan', "Fantom");
|
||||
define('OGP_LANG_sec', "Sekunde");
|
||||
define('OGP_LANG_unknown_rsync_mirror', "Pokušali ste pokrenuti ažuriranje iz nečega koje ne postoji.");
|
||||
define('OGP_LANG_custom_fields', "Prilagodljiva Polja");
|
||||
define('LANG_no_games_to_monitor', "Nemate nijednu konfiguriranu igricu koju možete nadzirati.");
|
||||
define('LANG_status', "Status");
|
||||
define('LANG_fail_no_mods', "Nijedan Mod nije omogućen za ovu igru! Morate zatražiti od administratora OGP-a da dodate Mod(ove) za igru koja vam je dodjeljena.");
|
||||
define('LANG_no_game_homes_assigned', "Nemate nijedan server dodijeljen vašem računu.");
|
||||
define('LANG_select_game_home_to_configure', "Odaberite server koji želite konfigurirati");
|
||||
define('LANG_file_manager', "Upravitelj datoteka");
|
||||
define('LANG_configure_mods', "Konfigurirajte modove");
|
||||
define('LANG_install_update_steam', "Instalirati/Ažurirati preko Steam-a");
|
||||
define('LANG_install_update_manual', "Instalirati/Ručno ažurirati");
|
||||
define('LANG_assign_game_homes', "Dodijeli server");
|
||||
define('LANG_user', "Korisnik");
|
||||
define('LANG_group', "Grupa");
|
||||
define('LANG_start', "Početak");
|
||||
define('LANG_ogp_agent_ip', "OGP IP adresa Agenta");
|
||||
define('LANG_max_players', "Maksimalno Igrača");
|
||||
define('LANG_max', "Maksimalno");
|
||||
define('LANG_ip_and_port', "IP i Port");
|
||||
define('LANG_available_maps', "Dostupne Mape");
|
||||
define('LANG_map_path', "Putanje do Mape");
|
||||
define('LANG_available_parameters', "Dostupni parametri");
|
||||
define('LANG_start_server', "Pokrenuti Server");
|
||||
define('LANG_start_wait_note', "Pokretanje servera može potrajati neko vrijeme. Pričekajte bez zatvaranja preglednika.");
|
||||
define('LANG_game_type', "Vrsta Igre");
|
||||
define('LANG_map', "Mapa");
|
||||
define('LANG_starting_server', "Pokretanje Servera, molimo pričekajte...");
|
||||
define('LANG_starting_server_settings', "Pokretanje Servera sa sljedećim postavkama");
|
||||
define('LANG_startup_params', "Pokretanje parametri");
|
||||
define('LANG_startup_cpu', "CPU na kojem je server pokrenut");
|
||||
define('LANG_startup_nice', "Vrijednost servera");
|
||||
define('LANG_game_home', "Home Putanje");
|
||||
define('LANG_server_started', "Server je uspješno pokrenut");
|
||||
define('LANG_no_parameter_access', "Nemate pristup parametrima.");
|
||||
define('LANG_extra_parameters', "Dodatni Parametri");
|
||||
define('LANG_no_extra_param_access', "Nemate pristup dodatnim parametrima.");
|
||||
define('LANG_extra_parameters_info', "Ovi parametri se stavljaju na kraj naredbenog retka kada se igra započne.");
|
||||
define('LANG_game_exec_not_found', "izvršna datoteka igre %s nije pronađena s udaljenog servera.");
|
||||
define('LANG_select_params_and_start', "Odaberite parametre za pokretanje servera i pritisnite tipku '%s'.");
|
||||
define('LANG_no_ip_port_pairs_assigned', "Nema IP Portova dodijeljenih za ovu Home maou. Ako nemate pristup uređivanju Home mape, obratite se administratoru.");
|
||||
define('LANG_unable_to_get_log', "Unable to get log, retval %s.");
|
||||
define('LANG_server_binary_not_executable', "Binarni poslužitelj nije izvršiv. Provjerite imate li odgovarajuća dopuštenja u Home direktoriju poslužitelja.");
|
||||
define('LANG_server_not_running_log_found', "Poslužitelj se ne izvodi, ali se pronalazi zapisnik. NAPOMENA: Ovaj zapisnik možda nije povezan s posljednjim pokretanjem poslužitelja.");
|
||||
define('LANG_ip_port_pair_not_owned', "IP: PORT par nije u vlasništvu.");
|
||||
define('LANG_unsuitable_maxplayers_value_maximum_reachable_number_of_slots_has_been_set', "Neodgovarajuća maksimalna vrijednost igrača, postavljen je maksimalni broj dostupnih mjesta.");
|
||||
define('LANG_server_running_not_responding', "Serverje pokrenut, ali ne reagira,<br>možda postoji nekakav problem i možda želite");
|
||||
define('LANG_update_started', "Ažuriranje je počelo, molimo pričekajte...");
|
||||
define('LANG_failed_to_start_steam_update', "Neuspješno pokretanje Steam ažuriranje. Pogledajte zapisnik agenta.");
|
||||
define('LANG_failed_to_start_rsync_update', "Neuspješno pokretanje Rsync ažuriranje. Pogledajte zapisnik agenta.");
|
||||
define('LANG_update_completed', "Ažuriranje je uspješno dovršeno.");
|
||||
define('LANG_update_in_progress', "Ažuriranje u tijeku, molimo pričekajte...");
|
||||
define('LANG_refresh_steam_status', "Osvježiti Steam status");
|
||||
define('LANG_refresh_rsync_status', "Osvježiti Rsync status");
|
||||
define('LANG_server_running_cant_update', "Server je pokrenut tako da ažuriranje nije moguće. Zaustavite Server prije ažuriranja.");
|
||||
define('LANG_xml_steam_error', "Odabrana vrsta Servera ne podržava Steam Instaliracija/Ažuriranje");
|
||||
define('LANG_mod_key_not_found_from_xml', "Mod ključ '%s' nije pronađen iz XML datoteke.");
|
||||
define('LANG_stop_update', "Zaustaviti ažuriranje");
|
||||
define('LANG_statistics', "Statistika");
|
||||
define('LANG_servers', "Serveri");
|
||||
define('LANG_players', "Igrači");
|
||||
define('LANG_current_map', "Trenutna Mapa");
|
||||
define('LANG_stop_server', "Zaustaviti Server");
|
||||
define('LANG_server_ip_port', "IP:Port Servera");
|
||||
define('LANG_server_name', "Ime Servera");
|
||||
define('LANG_server_id', "ID Servera");
|
||||
define('LANG_player_name', "Ime Igrača");
|
||||
define('LANG_score', "Rezultat");
|
||||
define('LANG_time', "Vrijeme");
|
||||
define('LANG_no_rights_to_stop_server', "Nemate prava za zaustavljanje ovog servera.");
|
||||
define('LANG_no_ogp_lgsl_support', "Ovaj server (pokrenut: %s) nema LGSL podršku u OGP-u i njegova se statistika ne može prikazati.");
|
||||
define('LANG_server_status', "Server na %s je %s.");
|
||||
define('LANG_server_stopped', "Server '%s' je zaustavljen.");
|
||||
define('LANG_if_want_to_start_homes', "Ako želite pokrenuti Igrice idite na %s.");
|
||||
define('LANG_view_log', "Pogledati Zapisnik");
|
||||
define('LANG_if_want_manage', "Ako želite upravljati svojim igrama, to možete učiniti u");
|
||||
define('LANG_columns', "stupcima");
|
||||
define('LANG_group_users', "Korisnici grupe:");
|
||||
define('LANG_assigned_to', "Dodijeljen:");
|
||||
define('LANG_restart_server', "Ponovno pokrenuti");
|
||||
define('LANG_restarting_server', "Pokretanje Servera, molimo pričekajte...");
|
||||
define('LANG_server_restarted', "Server '%s' je ponovno pokrenut.");
|
||||
define('LANG_server_not_running', "Server nije pokrenut.");
|
||||
define('LANG_address', "Adresa");
|
||||
define('LANG_owner', "Vlasnik");
|
||||
define('LANG_operations', "Radnje");
|
||||
define('LANG_search', "Tražiti");
|
||||
define('LANG_maps_read_from', "Mapa učitana od");
|
||||
define('LANG_file', "datoteka");
|
||||
define('LANG_folder', "mapa");
|
||||
define('LANG_unable_retrieve_mod_info', "Nije moguće dohvatiti mod podatke iz baze podataka.");
|
||||
define('LANG_unexpected_result_libremote', "Neočekivani rezultat iz libremotea, molimo obavijestite programere.");
|
||||
define('LANG_unable_get_info', "Nije moguće dobiti potrebne informacije za pokretanje, pokretanje blokirano.");
|
||||
define('LANG_server_already_running', "Server je već pokrenut. Ako server ne vidite u Monitor Igara, vjerojatno postoji nekakav problem i možda biste htjeli");
|
||||
define('LANG_already_running_stop_server', "Zaustaviti Server");
|
||||
define('LANG_error_server_already_running', "POGREŠKA: Server već radi na port");
|
||||
define('LANG_failed_start_server_code', "Pokretanje udaljenog servera nije uspjelo. Kod pogreške: %s");
|
||||
define('LANG_disabled', "onemogućeno");
|
||||
define('LANG_not_found_server', "Nije moguće pronaći udaljeni Server sa ID");
|
||||
define('LANG_rcon_command_title', "RCON Naredba");
|
||||
define('LANG_has_sent_to', "poslano za");
|
||||
define('LANG_need_set_remote_pass', "Morate postaviti RCON lozinku na");
|
||||
define('LANG_before_sending_rcon_com', "prije slanja RCON naredbi ");
|
||||
define('LANG_retry', "Ponovi");
|
||||
define('LANG_page', "stranica");
|
||||
define('LANG_server_cant_start', "server se ne može pokrenuti");
|
||||
define('LANG_server_cant_stop', "server se ne može zaustaviti");
|
||||
define('LANG_error_occured_remote_host', "Došlo je do pogreške na udaljenom poslužitelju");
|
||||
define('LANG_follow_server_status', "Možete pratiti status servera iz");
|
||||
define('LANG_addons', "Dodaci");
|
||||
define('LANG_hostname', "Naziv Hosta");
|
||||
define('LANG_rsync_install', "[Rsync Instalacija]");
|
||||
define('LANG_ping', "Ping");
|
||||
define('LANG_team', "Tim");
|
||||
define('LANG_deaths', "Smrti");
|
||||
define('LANG_pid', "PID");
|
||||
define('LANG_skill', "Skill");
|
||||
define('LANG_AIBot', "AIBot");
|
||||
define('LANG_steamid', "Steam ID");
|
||||
define('LANG_player', "Igrač");
|
||||
define('LANG_port', "Port");
|
||||
define('LANG_rcon_presets', "RCON predpodešavanje");
|
||||
define('LANG_update_from_local_master_server', "Ažurirati s lokalnog Master Servera");
|
||||
define('LANG_update_from_selected_rsync_server', "Ažurirati s odabranog Rsync servera");
|
||||
define('LANG_execute_selected_server_operations', "Izvršavanje odabranih operacija servera");
|
||||
define('LANG_execute_operations', "Izvršiti operacije");
|
||||
define('LANG_account_expiration', "Račun ističe");
|
||||
define('LANG_mysql_databases', "MySQL Baza Podataka");
|
||||
define('LANG_failed_querying_server', "* Server nije uspješno pokrenut.");
|
||||
define('LANG_query_protocol_not_supported', "Ne postoji upitni protokol u OGP-u koji može podržati ovaj server.");
|
||||
define('LANG_queries_disabled_by_setting_disable_queries_after', "Upiti su onemogućeni postavljanjem: Onemogući upite nakon: %s, jer imate %s servera.<br>");
|
||||
define('LANG_presets_for_game_and_mod', "RCON predpodešavanje za %s i mod %s");
|
||||
define('LANG_name', "Ime");
|
||||
define('LANG_command', "RCON Naredba");
|
||||
define('LANG_add_preset', "Dodati predpodešavanje");
|
||||
define('LANG_edit_presets', "Uređivanje postavki");
|
||||
define('LANG_del_preset', "Izbrisati");
|
||||
define('LANG_change_preset', "Promijeniti");
|
||||
define('LANG_send_command', "Poslati naredbu");
|
||||
define('LANG_starting_copy_with_master_server_named', "Pokretanje kopiranje sa Master Server pod nazivom '%s'...");
|
||||
define('LANG_starting_sync_with', "Pokretanje sinkronizacije sa %s...");
|
||||
define('LANG_refresh_interval', "Zapisnik intervala");
|
||||
define('LANG_finished_manual_update', "Završeno ručno ažuriranje");
|
||||
define('LANG_failed_to_start_file_download', "Preuzimanje datoteke nije uspjelo");
|
||||
define('LANG_game_name', "Ime Igre");
|
||||
define('LANG_dest_dir', "Odredišni direktorij");
|
||||
define('LANG_remote_server', "Udaljeni Server");
|
||||
define('LANG_file_url', "URL Datoteka");
|
||||
define('LANG_file_url_info', "URL datoteke koja je prenošena i nekomprimirana u direktorij.");
|
||||
define('LANG_dest_filename', "Odredišni naziv datoteke");
|
||||
define('LANG_dest_filename_info', "Naziv datoteke za odredišnu datoteku.");
|
||||
define('LANG_update_server', "Ažuriraj Server");
|
||||
define('LANG_unavailable', "Nedostupan");
|
||||
define('LANG_upload_map_image', "Učitaj sliku karte");
|
||||
define('LANG_upload_image', "Učitaj sliku");
|
||||
define('LANG_jpg_gif_png_less_than_1mb', "Slika mora biti jpg, gir ili png i manje od 1 MB.");
|
||||
define('LANG_check_dev_console', "Pogreška prilikom prijenosa datoteke, provjerite konzolu razvojnih programera preglednika.");
|
||||
define('LANG_uploaded_successfully', "Učitano je uspješno.");
|
||||
define('LANG_cant_create_folder', "Nije moguće izraditi mapu:<br><b>%s</b>");
|
||||
define('LANG_cant_write_file', "Nije moguće pisati datoteku:<br><b>%s</b>");
|
||||
define('LANG_exceeded_php_directive', "Premašila je PHP direktivu.<br><b>%s</b>");
|
||||
define('LANG_unknown_errors', "Nepoznate pogreške.");
|
||||
define('LANG_directory', "Direktorij");
|
||||
define('LANG_view_player_commands', "Pogledati naredbe igrača");
|
||||
define('LANG_hide_player_commands', "Sakriti naredbe igrača");
|
||||
define('LANG_no_online_players', "Nema igrača na mreži.");
|
||||
define('LANG_invalid_game_mod_id', "Navedeno je nevažeći ID Igre/Moda.");
|
||||
define('LANG_auto_update_title_popup', "Link za Steam Automatsko Ažuriranje");
|
||||
define('LANG_auto_update_popup_html', "<p>Koristite vezu u nastavku da biste provjerili i automatski ažurirali svoj server putem Steam-a ako je potrebno. & Nbsp; Možete upotrijebiti korištenjem cronjob-a ili ručno pokrenuti postupak.");
|
||||
define('LANG_api_links_popup_html', "<p>Odaberite radnju koju želite izvršiti pomoću OGP API-ja za ovaj poslužitelj igre. Zatim pomoću donje veze izvedite željenu radnju. Željenu radnju možete pokrenuti pomoću cronjoba ili izravnim zahtjevom.</p>");
|
||||
define('LANG_auto_update_copy_me', "Kopiraj");
|
||||
define('LANG_auto_update_copy_me_success', "Kopirano!");
|
||||
define('LANG_auto_update_copy_me_fail', "Kopiranje nije uspjelo. Molimo ručno kopirajte vezu.");
|
||||
define('LANG_get_steam_autoupdate_api_link', "Link za Automatsko Ažuriranje");
|
||||
define('LANG_show_api_actions', "Prikaži akcije API-ja");
|
||||
define('LANG_api_links', "API Linkovi");
|
||||
define('LANG_update_attempt_from_nonmaster_server', "Korisnik %s pokušao je ažurirati home_id %dpreko non-master servera. (Home ID: %d)");
|
||||
define('LANG_attempting_nonmaster_update', "Pokušavate ažuritati ovaj server preko non-master servera.");
|
||||
define('LANG_cannot_update_from_own_self', "Lokalno ažuriranje servera možda neće raditi na glavnom Master Serveru.");
|
||||
define('LANG_show_server_id', "Pokaži ID-ove Servera");
|
||||
define('LANG_hide_server_id', "Sakrij ID-ove Servera");
|
||||
define('LANG_edit_configuration_files', "Uredi konfiguracijske datoteke");
|
||||
define('LANG_admin', "Admin");
|
||||
define('LANG_cid', "CID");
|
||||
define('LANG_phan', "Fantom");
|
||||
define('LANG_sec', "Sekunde");
|
||||
define('LANG_unknown_rsync_mirror', "Pokušali ste pokrenuti ažuriranje iz nečega koje ne postoji.");
|
||||
define('LANG_custom_fields', "Prilagodljiva Polja");
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -22,67 +22,67 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_dir_not_found', "Direktorij '%s' nije pronađen na serveru.");
|
||||
define('OGP_LANG_filename', "Naziv datoteke");
|
||||
define('OGP_LANG_filesize', "Veličina datoteke");
|
||||
define('OGP_LANG_bytes', "Bajtova");
|
||||
define('OGP_LANG_owner', "Vlasnik");
|
||||
define('OGP_LANG_group', "Grupa");
|
||||
define('OGP_LANG_empty_directory', "Direktorij je prazan");
|
||||
define('OGP_LANG_currently_viewing', "Trenutno gledanje direktorija '%s'");
|
||||
define('OGP_LANG_wrote_changes', "Promjene uspješno sačuvane.");
|
||||
define('OGP_LANG_failed_write', "Nije uspjelo upisati datoteku na Udaljeni Server");
|
||||
define('OGP_LANG_failed_read', "Nije uspjelo pročitati datoteku na Udaljeni Server");
|
||||
define('OGP_LANG_failed_list', "Dohvaćanje popisa dorektorija nije uspjelo.");
|
||||
define('OGP_LANG_level_up', "^Jedna razina gore^");
|
||||
define('OGP_LANG_unallowed_char', "Neodobreni znakovi pronađeni s putanja.");
|
||||
define('OGP_LANG_button_edit', "[Uredi]");
|
||||
define('OGP_LANG_save', "Spremiti");
|
||||
define('OGP_LANG_home_id_missing', "Home ID nije pronađen.");
|
||||
define('OGP_LANG_upload', "Učitati");
|
||||
define('OGP_LANG_upload_failed', "Prijenos nije uspio, pogreška je bila: %s.");
|
||||
define('OGP_LANG_can_not_create_upload_folder_path', "Nije moguće stvoriti putanje do mape za prijenos %s");
|
||||
define('OGP_LANG_url_is_not_accesible_from_agent', "URL %s nije dostupan od strane Agenta");
|
||||
define('OGP_LANG_upload_file', "Učitati datoteku");
|
||||
define('OGP_LANG_uncompress', "Dekomprimirati");
|
||||
define('OGP_LANG_create_folder', "Stvoriti mapu");
|
||||
define('OGP_LANG_create', "Stvoriti");
|
||||
define('OGP_LANG_delete_item', "Izbrisati %s?");
|
||||
define('OGP_LANG_upload_in_progress', "Prijenos u tijeku...");
|
||||
define('OGP_LANG_upload_complete', "Uspješni prijenos.");
|
||||
define('OGP_LANG_chattr_yes', "Zaključati Datoteku");
|
||||
define('OGP_LANG_chattr_no', "Otključati Datoteku");
|
||||
define('OGP_LANG_secure_item', "Sigurno/Nesigurno %s?");
|
||||
define('OGP_LANG_filesecure', "Sigurna Datoteka");
|
||||
define('OGP_LANG_chattr_locked', "Datoteka Zaključana");
|
||||
define('OGP_LANG_chattr_unlocked', "Datoteka Otključana");
|
||||
define('OGP_LANG_rename', "Preimenovati");
|
||||
define('OGP_LANG_move', "Pomicati");
|
||||
define('OGP_LANG_copy', "Kopirati");
|
||||
define('OGP_LANG_compress', "Komprimirati");
|
||||
define('OGP_LANG_create_file', "Stvoriti Datoteku");
|
||||
define('OGP_LANG_select_at_least_one_item', "Odaberite barem jednu stavku");
|
||||
define('OGP_LANG_rename_item', "Preimenovati stavku(e)");
|
||||
define('OGP_LANG_move_item', "Pomicati stavku(e)");
|
||||
define('OGP_LANG_copy_item', "Kopirati stavku(e)");
|
||||
define('OGP_LANG_compress_item', "Arhivirati stavku(e)");
|
||||
define('OGP_LANG_uncompress_item', "Dekomprimirati stavku(e)");
|
||||
define('OGP_LANG_archive_name', "Naziv arhive");
|
||||
define('OGP_LANG_archive_type', "Vrsta arhive");
|
||||
define('OGP_LANG_file_name', "Naziv datoteke");
|
||||
define('OGP_LANG_folder_name', "Naziv mape");
|
||||
define('OGP_LANG_compresses_files_separately', "raspakira datoteke odvojeno");
|
||||
define('OGP_LANG_to', "u");
|
||||
define('OGP_LANG_upload_to_web', "Učitati na Web");
|
||||
define('OGP_LANG_transfer_to_server', "Prenositi na Server");
|
||||
define('OGP_LANG_mail_sent_successfully', "E-pošta uspješno poslana");
|
||||
define('OGP_LANG_send_item_by_email', "Poslati stavku(e) preko e-pošte");
|
||||
define('OGP_LANG_subject', "Predmet poruke");
|
||||
define('OGP_LANG_message', "Poruka");
|
||||
define('OGP_LANG_dest_email', "Destinacija e-pošte");
|
||||
define('OGP_LANG_remove', "Ukloniti");
|
||||
define('OGP_LANG_send_by_email', "Poslati preko e-pošte");
|
||||
define('OGP_LANG_send_by_email_info', "Za slanje datoteka paket \"mutt\" mora biti instaliran na svim dostupnim Agentima.");
|
||||
define('OGP_LANG_settings_updated', "Postavke su ažurirane");
|
||||
define('OGP_LANG_update_settings', "Ažurirati postavke");
|
||||
define('LANG_dir_not_found', "Direktorij '%s' nije pronađen na serveru.");
|
||||
define('LANG_filename', "Naziv datoteke");
|
||||
define('LANG_filesize', "Veličina datoteke");
|
||||
define('LANG_bytes', "Bajtova");
|
||||
define('LANG_owner', "Vlasnik");
|
||||
define('LANG_group', "Grupa");
|
||||
define('LANG_empty_directory', "Direktorij je prazan");
|
||||
define('LANG_currently_viewing', "Trenutno gledanje direktorija '%s'");
|
||||
define('LANG_wrote_changes', "Promjene uspješno sačuvane.");
|
||||
define('LANG_failed_write', "Nije uspjelo upisati datoteku na Udaljeni Server");
|
||||
define('LANG_failed_read', "Nije uspjelo pročitati datoteku na Udaljeni Server");
|
||||
define('LANG_failed_list', "Dohvaćanje popisa dorektorija nije uspjelo.");
|
||||
define('LANG_level_up', "^Jedna razina gore^");
|
||||
define('LANG_unallowed_char', "Neodobreni znakovi pronađeni s putanja.");
|
||||
define('LANG_button_edit', "[Uredi]");
|
||||
define('LANG_save', "Spremiti");
|
||||
define('LANG_home_id_missing', "Home ID nije pronađen.");
|
||||
define('LANG_upload', "Učitati");
|
||||
define('LANG_upload_failed', "Prijenos nije uspio, pogreška je bila: %s.");
|
||||
define('LANG_can_not_create_upload_folder_path', "Nije moguće stvoriti putanje do mape za prijenos %s");
|
||||
define('LANG_url_is_not_accesible_from_agent', "URL %s nije dostupan od strane Agenta");
|
||||
define('LANG_upload_file', "Učitati datoteku");
|
||||
define('LANG_uncompress', "Dekomprimirati");
|
||||
define('LANG_create_folder', "Stvoriti mapu");
|
||||
define('LANG_create', "Stvoriti");
|
||||
define('LANG_delete_item', "Izbrisati %s?");
|
||||
define('LANG_upload_in_progress', "Prijenos u tijeku...");
|
||||
define('LANG_upload_complete', "Uspješni prijenos.");
|
||||
define('LANG_chattr_yes', "Zaključati Datoteku");
|
||||
define('LANG_chattr_no', "Otključati Datoteku");
|
||||
define('LANG_secure_item', "Sigurno/Nesigurno %s?");
|
||||
define('LANG_filesecure', "Sigurna Datoteka");
|
||||
define('LANG_chattr_locked', "Datoteka Zaključana");
|
||||
define('LANG_chattr_unlocked', "Datoteka Otključana");
|
||||
define('LANG_rename', "Preimenovati");
|
||||
define('LANG_move', "Pomicati");
|
||||
define('LANG_copy', "Kopirati");
|
||||
define('LANG_compress', "Komprimirati");
|
||||
define('LANG_create_file', "Stvoriti Datoteku");
|
||||
define('LANG_select_at_least_one_item', "Odaberite barem jednu stavku");
|
||||
define('LANG_rename_item', "Preimenovati stavku(e)");
|
||||
define('LANG_move_item', "Pomicati stavku(e)");
|
||||
define('LANG_copy_item', "Kopirati stavku(e)");
|
||||
define('LANG_compress_item', "Arhivirati stavku(e)");
|
||||
define('LANG_uncompress_item', "Dekomprimirati stavku(e)");
|
||||
define('LANG_archive_name', "Naziv arhive");
|
||||
define('LANG_archive_type', "Vrsta arhive");
|
||||
define('LANG_file_name', "Naziv datoteke");
|
||||
define('LANG_folder_name', "Naziv mape");
|
||||
define('LANG_compresses_files_separately', "raspakira datoteke odvojeno");
|
||||
define('LANG_to', "u");
|
||||
define('LANG_upload_to_web', "Učitati na Web");
|
||||
define('LANG_transfer_to_server', "Prenositi na Server");
|
||||
define('LANG_mail_sent_successfully', "E-pošta uspješno poslana");
|
||||
define('LANG_send_item_by_email', "Poslati stavku(e) preko e-pošte");
|
||||
define('LANG_subject', "Predmet poruke");
|
||||
define('LANG_message', "Poruka");
|
||||
define('LANG_dest_email', "Destinacija e-pošte");
|
||||
define('LANG_remove', "Ukloniti");
|
||||
define('LANG_send_by_email', "Poslati preko e-pošte");
|
||||
define('LANG_send_by_email_info', "Za slanje datoteka paket \"mutt\" mora biti instaliran na svim dostupnim Agentima.");
|
||||
define('LANG_settings_updated', "Postavke su ažurirane");
|
||||
define('LANG_update_settings', "Ažurirati postavke");
|
||||
?>
|
||||
|
|
@ -22,23 +22,23 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_recover', "Obnova zaboravljene lozinke");
|
||||
define('OGP_LANG_back', "Natrag");
|
||||
define('OGP_LANG_incomplete', "Vratite se i ispunite sva polja u obrascu.");
|
||||
define('OGP_LANG_subject', "Zahtjev za zaporku");
|
||||
define('OGP_LANG_password_message', "Bok, <br><br>Vaša je lozinka uspješno resetirana.<br><br>Nova Lozinka: %s<br><br>Ne zaboravite često promijeniti zaporku.<br><br>Molimo ne odgovarajte na ovaj email!<br><br>______________________________<br>Black Market Servers");
|
||||
define('OGP_LANG_send', "Zaporka je poslana! Provjerite e-poštu!");
|
||||
define('OGP_LANG_here', "Ovdje");
|
||||
define('OGP_LANG_to_login', "za prijavu");
|
||||
define('OGP_LANG_errormail', "Vaša adresa e-pošte nije točna.");
|
||||
define('OGP_LANG_submit', "Potvrditi");
|
||||
define('OGP_LANG_click', "Stisni");
|
||||
define('OGP_LANG_mail_settings_missing', "Postavke Panel pošte nisu potpune pa ne može poslati vašu zaporku. Kontaktirajte svog administratora OGP-a.");
|
||||
define('OGP_LANG_mail_failed', "Slanje e-pošte nije uspjelo.");
|
||||
define('OGP_LANG_email', "E-pošta");
|
||||
define('OGP_LANG_enter_email', "Molim upišite svoju adresu e-pošte");
|
||||
define('OGP_LANG_webmaster', "Webmaster");
|
||||
define('OGP_LANG_confirm_send', "Iz sigurnosnih razloga poslali smo vam vezu za potvrdu prije ponovno postavljanje zaporke.<br><b style='color:red;'>Provjerite svoju pristiglu poštu.</b>");
|
||||
define('OGP_LANG_confirm_change_subject', "Ponovno postavljanje zaporke, e-pošta potvrde");
|
||||
define('OGP_LANG_confirm_change_password_message', "Bok,<br><br>Molimo kliknite vezu u nastavku da biste poništili zaporku:<br><br>%s<br><br>Oprez: Ako niste zatražili ponovno postavljanje lozike, možete ignorirati ovu e-poštu.<br><br>Molimo ne odgovarajte na ovaj email!<br><br>______________________________<br>Black Market Servers");
|
||||
define('LANG_recover', "Obnova zaboravljene lozinke");
|
||||
define('LANG_back', "Natrag");
|
||||
define('LANG_incomplete', "Vratite se i ispunite sva polja u obrascu.");
|
||||
define('LANG_subject', "Zahtjev za zaporku");
|
||||
define('LANG_password_message', "Bok, <br><br>Vaša je lozinka uspješno resetirana.<br><br>Nova Lozinka: %s<br><br>Ne zaboravite često promijeniti zaporku.<br><br>Molimo ne odgovarajte na ovaj email!<br><br>______________________________<br>Black Market Servers");
|
||||
define('LANG_send', "Zaporka je poslana! Provjerite e-poštu!");
|
||||
define('LANG_here', "Ovdje");
|
||||
define('LANG_to_login', "za prijavu");
|
||||
define('LANG_errormail', "Vaša adresa e-pošte nije točna.");
|
||||
define('LANG_submit', "Potvrditi");
|
||||
define('LANG_click', "Stisni");
|
||||
define('LANG_mail_settings_missing', "Postavke Panel pošte nisu potpune pa ne može poslati vašu zaporku. Kontaktirajte svog administratora OGP-a.");
|
||||
define('LANG_mail_failed', "Slanje e-pošte nije uspjelo.");
|
||||
define('LANG_email', "E-pošta");
|
||||
define('LANG_enter_email', "Molim upišite svoju adresu e-pošte");
|
||||
define('LANG_webmaster', "Webmaster");
|
||||
define('LANG_confirm_send', "Iz sigurnosnih razloga poslali smo vam vezu za potvrdu prije ponovno postavljanje zaporke.<br><b style='color:red;'>Provjerite svoju pristiglu poštu.</b>");
|
||||
define('LANG_confirm_change_subject', "Ponovno postavljanje zaporke, e-pošta potvrde");
|
||||
define('LANG_confirm_change_password_message', "Bok,<br><br>Molimo kliknite vezu u nastavku da biste poništili zaporku:<br><br>%s<br><br>Oprez: Ako niste zatražili ponovno postavljanje lozike, možete ignorirati ovu e-poštu.<br><br>Molimo ne odgovarajte na ovaj email!<br><br>______________________________<br>Black Market Servers");
|
||||
?>
|
||||
|
|
@ -22,35 +22,35 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_module_id', "ID Modula");
|
||||
define('OGP_LANG_module_name', "Naziv Modula");
|
||||
define('OGP_LANG_module_folder', "Mapa Modula");
|
||||
define('OGP_LANG_module_version', "Verzija Modula");
|
||||
define('OGP_LANG_db_version', "Verzija Baze Podataka");
|
||||
define('OGP_LANG_modules_available_for_install', "Dodatnih moduli dostupni za instalaciju:");
|
||||
define('OGP_LANG_install', "Instalirati");
|
||||
define('OGP_LANG_uninstall', "Deinstalirati");
|
||||
define('OGP_LANG_modules', "Moduli");
|
||||
define('OGP_LANG_update_modules', "Ažuriraj Module");
|
||||
define('OGP_LANG_no_installed_modules', "Nije pronađen nijedan instalirani Modul.");
|
||||
define('OGP_LANG_not_complete', "Značajka Instalirati/Deinstalirari nije potpuna i možda neće ispravno raditi. UPOZORENJE: Gubitak podataka može se pojaviti u OGP bazi podataka!");
|
||||
define('OGP_LANG_core_mods_installed', "Instalirani Jezgrenih Moduli:");
|
||||
define('OGP_LANG_custom_mods_installed', "Instalirani Dodatnih Moduli:");
|
||||
define('OGP_LANG_installing_module', "Instaliranje modula '%s'");
|
||||
define('OGP_LANG_successfully_installed_module', "Modul je uspješno instaliran %s.");
|
||||
define('OGP_LANG_failed_to_install_module', "Neuspješno instaliranje modula %s.");
|
||||
define('OGP_LANG_adding_module', "Dodavanje modula pod nazivom '%s'.");
|
||||
define('OGP_LANG_module_already_installed', "Modul pod nazivom '%s' je več instaliran.");
|
||||
define('OGP_LANG_uninstalling_module', "Deinstalacija modula '%s'");
|
||||
define('OGP_LANG_successfully_uninstalled_module', "Uspješno deinstaliranje modula %s.");
|
||||
define('OGP_LANG_failed_to_uninstall_module', "Neuspješna deinstalacija modula %s.");
|
||||
define('OGP_LANG_module_file_missing', "u direktoriju fali module.php datoteka.");
|
||||
define('OGP_LANG_module_file_missing_info', "fale potrebne informacije.");
|
||||
define('OGP_LANG_query_failed', "Nije uspjelo izvršavanje upita");
|
||||
define('OGP_LANG_query_failed_2', "do baze podataka.");
|
||||
define('OGP_LANG_failed_del_db', "Neuspješno brisanje modula s baze podataka");
|
||||
define('OGP_LANG_updated_module', "Ažurirani modul: '%s'.");
|
||||
define('OGP_LANG_updating_modules', "Ažuriranje Modula");
|
||||
define('OGP_LANG_updating_finished', "Ažuriranje Završeno");
|
||||
define('OGP_LANG_prereqs_missing', "Preduvjeti %s moraju biti instalirani na serveru prije nego što se %s može instalirati.");
|
||||
define('LANG_module_id', "ID Modula");
|
||||
define('LANG_module_name', "Naziv Modula");
|
||||
define('LANG_module_folder', "Mapa Modula");
|
||||
define('LANG_module_version', "Verzija Modula");
|
||||
define('LANG_db_version', "Verzija Baze Podataka");
|
||||
define('LANG_modules_available_for_install', "Dodatnih moduli dostupni za instalaciju:");
|
||||
define('LANG_install', "Instalirati");
|
||||
define('LANG_uninstall', "Deinstalirati");
|
||||
define('LANG_modules', "Moduli");
|
||||
define('LANG_update_modules', "Ažuriraj Module");
|
||||
define('LANG_no_installed_modules', "Nije pronađen nijedan instalirani Modul.");
|
||||
define('LANG_not_complete', "Značajka Instalirati/Deinstalirari nije potpuna i možda neće ispravno raditi. UPOZORENJE: Gubitak podataka može se pojaviti u OGP bazi podataka!");
|
||||
define('LANG_core_mods_installed', "Instalirani Jezgrenih Moduli:");
|
||||
define('LANG_custom_mods_installed', "Instalirani Dodatnih Moduli:");
|
||||
define('LANG_installing_module', "Instaliranje modula '%s'");
|
||||
define('LANG_successfully_installed_module', "Modul je uspješno instaliran %s.");
|
||||
define('LANG_failed_to_install_module', "Neuspješno instaliranje modula %s.");
|
||||
define('LANG_adding_module', "Dodavanje modula pod nazivom '%s'.");
|
||||
define('LANG_module_already_installed', "Modul pod nazivom '%s' je več instaliran.");
|
||||
define('LANG_uninstalling_module', "Deinstalacija modula '%s'");
|
||||
define('LANG_successfully_uninstalled_module', "Uspješno deinstaliranje modula %s.");
|
||||
define('LANG_failed_to_uninstall_module', "Neuspješna deinstalacija modula %s.");
|
||||
define('LANG_module_file_missing', "u direktoriju fali module.php datoteka.");
|
||||
define('LANG_module_file_missing_info', "fale potrebne informacije.");
|
||||
define('LANG_query_failed', "Nije uspjelo izvršavanje upita");
|
||||
define('LANG_query_failed_2', "do baze podataka.");
|
||||
define('LANG_failed_del_db', "Neuspješno brisanje modula s baze podataka");
|
||||
define('LANG_updated_module', "Ažurirani modul: '%s'.");
|
||||
define('LANG_updating_modules', "Ažuriranje Modula");
|
||||
define('LANG_updating_finished', "Ažuriranje Završeno");
|
||||
define('LANG_prereqs_missing', "Preduvjeti %s moraju biti instalirani na serveru prije nego što se %s može instalirati.");
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -22,94 +22,94 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_configured_mysql_hosts', "Konfigurirani MySQL hostovi");
|
||||
define('OGP_LANG_add_new_mysql_host', "Dodati MySQL host");
|
||||
define('OGP_LANG_enter_mysql_ip', "Upisati MySQL IP");
|
||||
define('OGP_LANG_enter_valid_port', "Unesite valjani port.");
|
||||
define('OGP_LANG_enter_mysql_root_password', "Unesite root lozinku za MySQL");
|
||||
define('OGP_LANG_enter_mysql_name', "Unesite korisničko ime za MySQL");
|
||||
define('OGP_LANG_could_not_add_mysql_server', "Nije moguće dodati MySQL poslužitelj.");
|
||||
define('OGP_LANG_game_server_name_info', "Ime poslužitelja pomaže korisnicima da identificiraju svoje poslužitelje.");
|
||||
define('OGP_LANG_note_mysql_host', "Napomena: Korištenjem \"Izravne veze\" poslužitelj mora prihvatiti vanjske veze tako da se poslužitelji mogu povezati na daljinu, dok će se povezivanje putem udaljenog poslužitelja koristiti kao lokalna veza.");
|
||||
define('OGP_LANG_direct_connection', "Izravna veza");
|
||||
define('OGP_LANG_connection_through_remote_server_named', "Povezivanje putem udaljenog poslužitelja nazvanog %s");
|
||||
define('OGP_LANG_add_mysql_server', "Dodati MySQL poslužitelj");
|
||||
define('OGP_LANG_mysql_online', "MySQL na mreži");
|
||||
define('OGP_LANG_mysql_offline', "MySQL nije na mreži");
|
||||
define('OGP_LANG_encryption_key_mismatch', "Nepodudaranje ključa za šifriranje");
|
||||
define('OGP_LANG_unknown_error', "Nepoznata pogreška");
|
||||
define('OGP_LANG_remove', "Izbrisati");
|
||||
define('OGP_LANG_assign_db', "Dodijeli bazu podataka");
|
||||
define('OGP_LANG_mysql_server_name', "Naziv MySQL poslužitelja");
|
||||
define('OGP_LANG_server_status', "Status poslužitelja");
|
||||
define('OGP_LANG_mysql_ip_port', "MySQL IP:port");
|
||||
define('OGP_LANG_mysql_root_passwd', "MySQL root lozinka");
|
||||
define('OGP_LANG_connection_method', "Način povezivanja");
|
||||
define('OGP_LANG_user_privilegies', "Korisničke privilegije");
|
||||
define('OGP_LANG_current_dbs', "Trenutne baze podataka");
|
||||
define('OGP_LANG_mysql_name', "Naziv MySQL poslužitelja");
|
||||
define('OGP_LANG_mysql_ip', "MySQL IP");
|
||||
define('OGP_LANG_mysql_port', "MySQL port");
|
||||
define('OGP_LANG_privilegies', "privilegije");
|
||||
define('OGP_LANG_all', "Sve");
|
||||
define('OGP_LANG_custom', "Prilagođeno");
|
||||
define('OGP_LANG_server_added', "Poslužitelj uspješno dodan.");
|
||||
define('OGP_LANG_sql_alter', "ALTER");
|
||||
define('OGP_LANG_sql_create', "KREIRATI");
|
||||
define('OGP_LANG_sql_create_temporary_tables', "IZRADE TEMPORARNE TABLICE");
|
||||
define('OGP_LANG_sql_drop', "OTPUSTITI");
|
||||
define('OGP_LANG_sql_index', "INDEKS");
|
||||
define('OGP_LANG_sql_insert', "UBACIVATI");
|
||||
define('OGP_LANG_sql_lock_tables', "ZAKLJUČATI TABLICE");
|
||||
define('OGP_LANG_sql_select', "ODABRATI");
|
||||
define('OGP_LANG_sql_grant_option', "POTVRDA OPCIJA");
|
||||
define('OGP_LANG_sql_update', "AŽURIRATI");
|
||||
define('OGP_LANG_sql_delete', "IZBRISATI");
|
||||
define('OGP_LANG_sql_alter_info', "<b>Omogućuje upotrebu ALTER TABLICE.</b>");
|
||||
define('OGP_LANG_sql_create_info', "<b>Omogućuje upotrebu KREIRAJ TABLICE.</b>");
|
||||
define('OGP_LANG_sql_create_temporary_tables_info', "<b>Omogućuje upotrebu IZRADE TEMPORARNE TABLICE.</b>");
|
||||
define('OGP_LANG_sql_delete_info', "<b>Omogućuje upotrebu IZBRISATI.</b>");
|
||||
define('OGP_LANG_sql_drop_info', "<b>Omogućuje upotrebu OTPUSTITI TABLICE.</b>");
|
||||
define('OGP_LANG_sql_index_info', "<b>Omogućuje upotrebu KREIRAJ INDEKS i OTPUSTITI INDEKS.</b>");
|
||||
define('OGP_LANG_sql_insert_info', "<b>Omogućuje upotrebu UBACIVATI.</b>");
|
||||
define('OGP_LANG_sql_lock_tables_info', "<b>Omogućuje upotrebu ZAKLJUČATI TABLICE na tablicama na koje imate ODABRATI privilegije.</b>");
|
||||
define('OGP_LANG_sql_select_info', "<b>Omogućuje upotrebu ODABRATI.</b>");
|
||||
define('OGP_LANG_sql_update_info', "<b>Omogućuje upotrebu AŽURIRATI.</b>");
|
||||
define('OGP_LANG_sql_grant_option_info', "<b>Omogućuje privilegije za potvrdu.</b>");
|
||||
define('OGP_LANG_select_game_server', "Odaberite igre");
|
||||
define('OGP_LANG_invalid_mysql_server_id', "Nevažeći ID MySQL poslužitelja.");
|
||||
define('OGP_LANG_there_is_another_db_named_or_user_named', "Postoji još jedna baza podataka pod nazivom <b>%s</b> ili drugog imenovanog korisnika<b>%s</b>.");
|
||||
define('OGP_LANG_db_added_for_home_id', "Dodana baza podataka za Home ID <b>%s</b>.");
|
||||
define('OGP_LANG_could_not_remove_db', "Odabrana baza podataka nije mogla biti uklonjena.");
|
||||
define('OGP_LANG_db_removed_successfully_from_mysql_server_named', "Baza podataka je uklonjena s poslužitelja %s.");
|
||||
define('OGP_LANG_areyousure_remove_mysql_server', "Jeste li sigurni da želite ukloniti MySQL poslužitelj nazvan <b>%s</b>?");
|
||||
define('OGP_LANG_db_changed_successfully', "Baza podataka pod nazivom %s je uspješno promijenjena.");
|
||||
define('OGP_LANG_error_while_remove', "Pogreška prilikom uklanjanja.");
|
||||
define('OGP_LANG_mysql_server_removed', "MySQL poslužitelj nazvan <b>%s</b> je uspješno uklonjen.");
|
||||
define('OGP_LANG_unable_to_set_changes_to', "Nije moguće postaviti promjene na MySQL poslužitelj nazvan <b>%s</b>.");
|
||||
define('OGP_LANG_mysql_server_settings_changed', "MySQL poslužitelj nazvan <b>%s</b> je uspješno promijenjen.");
|
||||
define('OGP_LANG_editing_mysql_server', "Uređivanje MySQL poslužitelja nazvanog <b>%s</b>.");
|
||||
define('OGP_LANG_save_settings', "Spremi postavke");
|
||||
define('OGP_LANG_mysql_dbs_for', "Baze podataka za poslužitelj %s");
|
||||
define('OGP_LANG_edit_dbs', "Uredite baze podataka");
|
||||
define('OGP_LANG_edit_db_settings', "Uredite postavke baze podataka");
|
||||
define('OGP_LANG_remove_db', "Ukloniti bazu podataka");
|
||||
define('OGP_LANG_save_db_changes', "Spremi promjene baze podataka.");
|
||||
define('OGP_LANG_add_db', "Dodaj bazu podataka");
|
||||
define('OGP_LANG_select_db', "Odaberite bazu podataka");
|
||||
define('OGP_LANG_db_user', "BP Korisnik");
|
||||
define('OGP_LANG_db_passwd', "BP Lozinka");
|
||||
define('OGP_LANG_db_name', "BP Naziv");
|
||||
define('OGP_LANG_enabled', "Omogućeno");
|
||||
define('OGP_LANG_game_server', "Igrice");
|
||||
define('OGP_LANG_there_are_no_databases_assigned_for', "Nema dodijeljenih baza podataka za <b>%s</b>.");
|
||||
define('OGP_LANG_unable_to_connect_to_mysql_server_as', "Nije moguće povezati se na MySQL poslužitelj kao %s.");
|
||||
define('OGP_LANG_unable_to_create_db', "Nije moguće stvoriti bazu podataka.");
|
||||
define('OGP_LANG_unable_to_select_db', "Nije moguće odabrati %s bazu podataka.");
|
||||
define('OGP_LANG_db_info', "Informacije o bazama podataka");
|
||||
define('OGP_LANG_db_tables', "Tablice baza podataka");
|
||||
define('OGP_LANG_db_backup', "BP Backup");
|
||||
define('OGP_LANG_download_db_backup', "Skini BP Backup");
|
||||
define('OGP_LANG_restore_db_backup', "Vratite DB Backup");
|
||||
define('OGP_LANG_sql_file', "datoteka(.sql)");
|
||||
define('LANG_configured_mysql_hosts', "Konfigurirani MySQL hostovi");
|
||||
define('LANG_add_new_mysql_host', "Dodati MySQL host");
|
||||
define('LANG_enter_mysql_ip', "Upisati MySQL IP");
|
||||
define('LANG_enter_valid_port', "Unesite valjani port.");
|
||||
define('LANG_enter_mysql_root_password', "Unesite root lozinku za MySQL");
|
||||
define('LANG_enter_mysql_name', "Unesite korisničko ime za MySQL");
|
||||
define('LANG_could_not_add_mysql_server', "Nije moguće dodati MySQL poslužitelj.");
|
||||
define('LANG_game_server_name_info', "Ime poslužitelja pomaže korisnicima da identificiraju svoje poslužitelje.");
|
||||
define('LANG_note_mysql_host', "Napomena: Korištenjem \"Izravne veze\" poslužitelj mora prihvatiti vanjske veze tako da se poslužitelji mogu povezati na daljinu, dok će se povezivanje putem udaljenog poslužitelja koristiti kao lokalna veza.");
|
||||
define('LANG_direct_connection', "Izravna veza");
|
||||
define('LANG_connection_through_remote_server_named', "Povezivanje putem udaljenog poslužitelja nazvanog %s");
|
||||
define('LANG_add_mysql_server', "Dodati MySQL poslužitelj");
|
||||
define('LANG_mysql_online', "MySQL na mreži");
|
||||
define('LANG_mysql_offline', "MySQL nije na mreži");
|
||||
define('LANG_encryption_key_mismatch', "Nepodudaranje ključa za šifriranje");
|
||||
define('LANG_unknown_error', "Nepoznata pogreška");
|
||||
define('LANG_remove', "Izbrisati");
|
||||
define('LANG_assign_db', "Dodijeli bazu podataka");
|
||||
define('LANG_mysql_server_name', "Naziv MySQL poslužitelja");
|
||||
define('LANG_server_status', "Status poslužitelja");
|
||||
define('LANG_mysql_ip_port', "MySQL IP:port");
|
||||
define('LANG_mysql_root_passwd', "MySQL root lozinka");
|
||||
define('LANG_connection_method', "Način povezivanja");
|
||||
define('LANG_user_privilegies', "Korisničke privilegije");
|
||||
define('LANG_current_dbs', "Trenutne baze podataka");
|
||||
define('LANG_mysql_name', "Naziv MySQL poslužitelja");
|
||||
define('LANG_mysql_ip', "MySQL IP");
|
||||
define('LANG_mysql_port', "MySQL port");
|
||||
define('LANG_privilegies', "privilegije");
|
||||
define('LANG_all', "Sve");
|
||||
define('LANG_custom', "Prilagođeno");
|
||||
define('LANG_server_added', "Poslužitelj uspješno dodan.");
|
||||
define('LANG_sql_alter', "ALTER");
|
||||
define('LANG_sql_create', "KREIRATI");
|
||||
define('LANG_sql_create_temporary_tables', "IZRADE TEMPORARNE TABLICE");
|
||||
define('LANG_sql_drop', "OTPUSTITI");
|
||||
define('LANG_sql_index', "INDEKS");
|
||||
define('LANG_sql_insert', "UBACIVATI");
|
||||
define('LANG_sql_lock_tables', "ZAKLJUČATI TABLICE");
|
||||
define('LANG_sql_select', "ODABRATI");
|
||||
define('LANG_sql_grant_option', "POTVRDA OPCIJA");
|
||||
define('LANG_sql_update', "AŽURIRATI");
|
||||
define('LANG_sql_delete', "IZBRISATI");
|
||||
define('LANG_sql_alter_info', "<b>Omogućuje upotrebu ALTER TABLICE.</b>");
|
||||
define('LANG_sql_create_info', "<b>Omogućuje upotrebu KREIRAJ TABLICE.</b>");
|
||||
define('LANG_sql_create_temporary_tables_info', "<b>Omogućuje upotrebu IZRADE TEMPORARNE TABLICE.</b>");
|
||||
define('LANG_sql_delete_info', "<b>Omogućuje upotrebu IZBRISATI.</b>");
|
||||
define('LANG_sql_drop_info', "<b>Omogućuje upotrebu OTPUSTITI TABLICE.</b>");
|
||||
define('LANG_sql_index_info', "<b>Omogućuje upotrebu KREIRAJ INDEKS i OTPUSTITI INDEKS.</b>");
|
||||
define('LANG_sql_insert_info', "<b>Omogućuje upotrebu UBACIVATI.</b>");
|
||||
define('LANG_sql_lock_tables_info', "<b>Omogućuje upotrebu ZAKLJUČATI TABLICE na tablicama na koje imate ODABRATI privilegije.</b>");
|
||||
define('LANG_sql_select_info', "<b>Omogućuje upotrebu ODABRATI.</b>");
|
||||
define('LANG_sql_update_info', "<b>Omogućuje upotrebu AŽURIRATI.</b>");
|
||||
define('LANG_sql_grant_option_info', "<b>Omogućuje privilegije za potvrdu.</b>");
|
||||
define('LANG_select_game_server', "Odaberite igre");
|
||||
define('LANG_invalid_mysql_server_id', "Nevažeći ID MySQL poslužitelja.");
|
||||
define('LANG_there_is_another_db_named_or_user_named', "Postoji još jedna baza podataka pod nazivom <b>%s</b> ili drugog imenovanog korisnika<b>%s</b>.");
|
||||
define('LANG_db_added_for_home_id', "Dodana baza podataka za Home ID <b>%s</b>.");
|
||||
define('LANG_could_not_remove_db', "Odabrana baza podataka nije mogla biti uklonjena.");
|
||||
define('LANG_db_removed_successfully_from_mysql_server_named', "Baza podataka je uklonjena s poslužitelja %s.");
|
||||
define('LANG_areyousure_remove_mysql_server', "Jeste li sigurni da želite ukloniti MySQL poslužitelj nazvan <b>%s</b>?");
|
||||
define('LANG_db_changed_successfully', "Baza podataka pod nazivom %s je uspješno promijenjena.");
|
||||
define('LANG_error_while_remove', "Pogreška prilikom uklanjanja.");
|
||||
define('LANG_mysql_server_removed', "MySQL poslužitelj nazvan <b>%s</b> je uspješno uklonjen.");
|
||||
define('LANG_unable_to_set_changes_to', "Nije moguće postaviti promjene na MySQL poslužitelj nazvan <b>%s</b>.");
|
||||
define('LANG_mysql_server_settings_changed', "MySQL poslužitelj nazvan <b>%s</b> je uspješno promijenjen.");
|
||||
define('LANG_editing_mysql_server', "Uređivanje MySQL poslužitelja nazvanog <b>%s</b>.");
|
||||
define('LANG_save_settings', "Spremi postavke");
|
||||
define('LANG_mysql_dbs_for', "Baze podataka za poslužitelj %s");
|
||||
define('LANG_edit_dbs', "Uredite baze podataka");
|
||||
define('LANG_edit_db_settings', "Uredite postavke baze podataka");
|
||||
define('LANG_remove_db', "Ukloniti bazu podataka");
|
||||
define('LANG_save_db_changes', "Spremi promjene baze podataka.");
|
||||
define('LANG_add_db', "Dodaj bazu podataka");
|
||||
define('LANG_select_db', "Odaberite bazu podataka");
|
||||
define('LANG_db_user', "BP Korisnik");
|
||||
define('LANG_db_passwd', "BP Lozinka");
|
||||
define('LANG_db_name', "BP Naziv");
|
||||
define('LANG_enabled', "Omogućeno");
|
||||
define('LANG_game_server', "Igrice");
|
||||
define('LANG_there_are_no_databases_assigned_for', "Nema dodijeljenih baza podataka za <b>%s</b>.");
|
||||
define('LANG_unable_to_connect_to_mysql_server_as', "Nije moguće povezati se na MySQL poslužitelj kao %s.");
|
||||
define('LANG_unable_to_create_db', "Nije moguće stvoriti bazu podataka.");
|
||||
define('LANG_unable_to_select_db', "Nije moguće odabrati %s bazu podataka.");
|
||||
define('LANG_db_info', "Informacije o bazama podataka");
|
||||
define('LANG_db_tables', "Tablice baza podataka");
|
||||
define('LANG_db_backup', "BP Backup");
|
||||
define('LANG_download_db_backup', "Skini BP Backup");
|
||||
define('LANG_restore_db_backup', "Vratite DB Backup");
|
||||
define('LANG_sql_file', "datoteka(.sql)");
|
||||
?>
|
||||
|
|
@ -22,77 +22,77 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_manage_listings', "Upravljajte svojim novostima");
|
||||
define('OGP_LANG_add_new_listing', "Objavi Novost");
|
||||
define('OGP_LANG_your_current_listings', "Vaše trenutne novosti");
|
||||
define('OGP_LANG_edit', "Urediti");
|
||||
define('OGP_LANG_date', "Datum");
|
||||
define('OGP_LANG_images', "Slike");
|
||||
define('OGP_LANG_title', "Naslov");
|
||||
define('OGP_LANG_description', "Sadržaj Novosti");
|
||||
define('OGP_LANG_written_by', "Napisao");
|
||||
define('OGP_LANG_details', "Čitaj još");
|
||||
define('OGP_LANG_modify', "Izmijeniti");
|
||||
define('OGP_LANG_save', "Spremiti");
|
||||
define('OGP_LANG_delete', "Izbrisati");
|
||||
define('OGP_LANG_sure_to_delete', "Jeste li sigurni da želite izbrisati ove novosti?");
|
||||
define('OGP_LANG_go_back', "Natrag");
|
||||
define('OGP_LANG_new_added_success', "Novosti su uspješno objavljeni!");
|
||||
define('OGP_LANG_add_another', "Dodati još novosti");
|
||||
define('OGP_LANG_or_message', "ili");
|
||||
define('OGP_LANG_please_select', "Molimo izaberite");
|
||||
define('OGP_LANG_submit', "Potvrditi");
|
||||
define('OGP_LANG_edit_listing', "Urediti novosti");
|
||||
define('OGP_LANG_modifications_saved', "Novosti su uspješno spremljeni!");
|
||||
define('OGP_LANG_modify_images', "Uređivanje slike");
|
||||
define('OGP_LANG_upload_more_images', "Prenesite više slika");
|
||||
define('OGP_LANG_latest_news', "Zadnje Novosti");
|
||||
define('OGP_LANG_search_results', "Rezultati pretraživanja");
|
||||
define('OGP_LANG_no_results', "Novosti nisu pronađeni");
|
||||
define('OGP_LANG_config_options', "Postavke Novosti");
|
||||
define('OGP_LANG_date_format', "Format Datuma");
|
||||
define('OGP_LANG_results_per_page', "Novosti po stranici");
|
||||
define('OGP_LANG_enable_search', "Omogućiti tražilicu");
|
||||
define('OGP_LANG_image_quality', "Kvaliteta slike (0-100)");
|
||||
define('OGP_LANG_max_image_width', "Maksimalna širina slike (px)");
|
||||
define('OGP_LANG_gallery_theme', "Skin za galeriju");
|
||||
define('OGP_LANG_images_bottom', "Položaj galerije slika");
|
||||
define('OGP_LANG_img_bottom', "Ispod članka");
|
||||
define('OGP_LANG_img_right', "Desna strana članka");
|
||||
define('OGP_LANG_no_word', "Ne");
|
||||
define('OGP_LANG_yes_word', "Da");
|
||||
define('OGP_LANG_no_access', "Nemate pravo na pristup ovoj stranici. Vaša će se akcija zapisati za daljnju provjeru.");
|
||||
define('OGP_LANG_write_permission_required', "Potrebna je pisana dozvola");
|
||||
define('OGP_LANG_fix_permission', "Popravite dozvole. Modul neće raditi kako je namijenjeno dok ne popravite sve dopuštenja.");
|
||||
define('OGP_LANG_check_permissions', "Provjerite dozvole");
|
||||
define('OGP_LANG_permission_ok', "Potrebne dozvole su sve u redu!");
|
||||
define('OGP_LANG_empty_title', "Ispunite naslov");
|
||||
define('OGP_LANG_empty_description', "Ispunite sadržaj");
|
||||
define('OGP_LANG_empty_author', "Molimo ispunite naziv autora");
|
||||
define('OGP_LANG_gd_fail', "GD ekstenzija NIJE učitano na vašem poslužitelju. Slanje slika je onemogućeno.");
|
||||
define('OGP_LANG_search_news', "Pretraži Novosti");
|
||||
define('OGP_LANG_help', "pomoć");
|
||||
define('OGP_LANG_help_date', "Potražite pomoć u vezi s različitim formatima datuma");
|
||||
define('OGP_LANG_id_invalid', "ID Novosti ne postoji");
|
||||
define('OGP_LANG_id_not_set', "ID Novosti nije postavljen");
|
||||
define('OGP_LANG_unauthorized_access', "Neovlašteni pristup od");
|
||||
define('OGP_LANG_wysiwyg', "WYSIWYG urednik");
|
||||
define('OGP_LANG_tinymce_lang', "Tiny MCE jezik");
|
||||
define('OGP_LANG_da', "Danski");
|
||||
define('OGP_LANG_de', "Njemački");
|
||||
define('OGP_LANG_en_GB', "Engleski");
|
||||
define('OGP_LANG_es', "Španjolski");
|
||||
define('OGP_LANG_fi', "Finski");
|
||||
define('OGP_LANG_fr_FR', "Francuski");
|
||||
define('OGP_LANG_it', "Talijanski");
|
||||
define('OGP_LANG_pl', "Poljski");
|
||||
define('OGP_LANG_pt_PT', "Portugalski");
|
||||
define('OGP_LANG_ru', "Ruski");
|
||||
define('OGP_LANG_tinymce_skin', "Tiny MCE skin");
|
||||
define('OGP_LANG_tinymce_skin_custom', "Apsolutno morate prenijeti vlastiti prilagođeni skin u <b> modules/news/js/tinymce/skins/custom/</b> mapu kako bi mogli koristiti ovaj skin. Ako ga odaberete bez toga, naići ćete na probleme. Izradite vlastiti prilagođeni skin ovdje <a href='http://skin.tinymce.com/' target='_blank'>http://skin.tinymce.com/</a>.");
|
||||
define('OGP_LANG_safe_HTML', "HTML pročišćivač");
|
||||
define('OGP_LANG_safe_HTML_en', "Aktiviran je HTML čistač");
|
||||
define('OGP_LANG_safe_HTML_dis', "HTML čistač je onemogućen");
|
||||
define('OGP_LANG_safe_HTML_en_info', "HTML sadržaj članka u detaljnom prikazu bit će pročišćen. To će dovesti do uklanjanja nekih HTML oznaka kao što su iframeovi. Uredite datoteku <b>modules/news/config.php</b>da biste promijenili postavku \"safe_HTML\" iz vrijednosti \"1\" (omogućeno) na vrijednost \"0\" (onemogućeno) da biste onemogućili ovo ponašanje i omogućili korištenje potpunog HTML-a bez ograničenja. ");
|
||||
define('OGP_LANG_safe_HTML_dis_info', "HTML sadržaj članka u detaljnom prikazu neće biti pročišćen. Uredite datoteku <b>modules/news/config.php</b> da biste promijenili postavku \"safe_HTML\" od vrijednosti \"0\" (onemogućeno) na vrijednost \"1\" (omogućeno) da biste omogućili samo upotrebu sigurnih HTML oznaka.");
|
||||
define('LANG_manage_listings', "Upravljajte svojim novostima");
|
||||
define('LANG_add_new_listing', "Objavi Novost");
|
||||
define('LANG_your_current_listings', "Vaše trenutne novosti");
|
||||
define('LANG_edit', "Urediti");
|
||||
define('LANG_date', "Datum");
|
||||
define('LANG_images', "Slike");
|
||||
define('LANG_title', "Naslov");
|
||||
define('LANG_description', "Sadržaj Novosti");
|
||||
define('LANG_written_by', "Napisao");
|
||||
define('LANG_details', "Čitaj još");
|
||||
define('LANG_modify', "Izmijeniti");
|
||||
define('LANG_save', "Spremiti");
|
||||
define('LANG_delete', "Izbrisati");
|
||||
define('LANG_sure_to_delete', "Jeste li sigurni da želite izbrisati ove novosti?");
|
||||
define('LANG_go_back', "Natrag");
|
||||
define('LANG_new_added_success', "Novosti su uspješno objavljeni!");
|
||||
define('LANG_add_another', "Dodati još novosti");
|
||||
define('LANG_or_message', "ili");
|
||||
define('LANG_please_select', "Molimo izaberite");
|
||||
define('LANG_submit', "Potvrditi");
|
||||
define('LANG_edit_listing', "Urediti novosti");
|
||||
define('LANG_modifications_saved', "Novosti su uspješno spremljeni!");
|
||||
define('LANG_modify_images', "Uređivanje slike");
|
||||
define('LANG_upload_more_images', "Prenesite više slika");
|
||||
define('LANG_latest_news', "Zadnje Novosti");
|
||||
define('LANG_search_results', "Rezultati pretraživanja");
|
||||
define('LANG_no_results', "Novosti nisu pronađeni");
|
||||
define('LANG_config_options', "Postavke Novosti");
|
||||
define('LANG_date_format', "Format Datuma");
|
||||
define('LANG_results_per_page', "Novosti po stranici");
|
||||
define('LANG_enable_search', "Omogućiti tražilicu");
|
||||
define('LANG_image_quality', "Kvaliteta slike (0-100)");
|
||||
define('LANG_max_image_width', "Maksimalna širina slike (px)");
|
||||
define('LANG_gallery_theme', "Skin za galeriju");
|
||||
define('LANG_images_bottom', "Položaj galerije slika");
|
||||
define('LANG_img_bottom', "Ispod članka");
|
||||
define('LANG_img_right', "Desna strana članka");
|
||||
define('LANG_no_word', "Ne");
|
||||
define('LANG_yes_word', "Da");
|
||||
define('LANG_no_access', "Nemate pravo na pristup ovoj stranici. Vaša će se akcija zapisati za daljnju provjeru.");
|
||||
define('LANG_write_permission_required', "Potrebna je pisana dozvola");
|
||||
define('LANG_fix_permission', "Popravite dozvole. Modul neće raditi kako je namijenjeno dok ne popravite sve dopuštenja.");
|
||||
define('LANG_check_permissions', "Provjerite dozvole");
|
||||
define('LANG_permission_ok', "Potrebne dozvole su sve u redu!");
|
||||
define('LANG_empty_title', "Ispunite naslov");
|
||||
define('LANG_empty_description', "Ispunite sadržaj");
|
||||
define('LANG_empty_author', "Molimo ispunite naziv autora");
|
||||
define('LANG_gd_fail', "GD ekstenzija NIJE učitano na vašem poslužitelju. Slanje slika je onemogućeno.");
|
||||
define('LANG_search_news', "Pretraži Novosti");
|
||||
define('LANG_help', "pomoć");
|
||||
define('LANG_help_date', "Potražite pomoć u vezi s različitim formatima datuma");
|
||||
define('LANG_id_invalid', "ID Novosti ne postoji");
|
||||
define('LANG_id_not_set', "ID Novosti nije postavljen");
|
||||
define('LANG_unauthorized_access', "Neovlašteni pristup od");
|
||||
define('LANG_wysiwyg', "WYSIWYG urednik");
|
||||
define('LANG_tinymce_lang', "Tiny MCE jezik");
|
||||
define('LANG_da', "Danski");
|
||||
define('LANG_de', "Njemački");
|
||||
define('LANG_en_GB', "Engleski");
|
||||
define('LANG_es', "Španjolski");
|
||||
define('LANG_fi', "Finski");
|
||||
define('LANG_fr_FR', "Francuski");
|
||||
define('LANG_it', "Talijanski");
|
||||
define('LANG_pl', "Poljski");
|
||||
define('LANG_pt_PT', "Portugalski");
|
||||
define('LANG_ru', "Ruski");
|
||||
define('LANG_tinymce_skin', "Tiny MCE skin");
|
||||
define('LANG_tinymce_skin_custom', "Apsolutno morate prenijeti vlastiti prilagođeni skin u <b> modules/news/js/tinymce/skins/custom/</b> mapu kako bi mogli koristiti ovaj skin. Ako ga odaberete bez toga, naići ćete na probleme. Izradite vlastiti prilagođeni skin ovdje <a href='http://skin.tinymce.com/' target='_blank'>http://skin.tinymce.com/</a>.");
|
||||
define('LANG_safe_HTML', "HTML pročišćivač");
|
||||
define('LANG_safe_HTML_en', "Aktiviran je HTML čistač");
|
||||
define('LANG_safe_HTML_dis', "HTML čistač je onemogućen");
|
||||
define('LANG_safe_HTML_en_info', "HTML sadržaj članka u detaljnom prikazu bit će pročišćen. To će dovesti do uklanjanja nekih HTML oznaka kao što su iframeovi. Uredite datoteku <b>modules/news/config.php</b>da biste promijenili postavku \"safe_HTML\" iz vrijednosti \"1\" (omogućeno) na vrijednost \"0\" (onemogućeno) da biste onemogućili ovo ponašanje i omogućili korištenje potpunog HTML-a bez ograničenja. ");
|
||||
define('LANG_safe_HTML_dis_info', "HTML sadržaj članka u detaljnom prikazu neće biti pročišćen. Uredite datoteku <b>modules/news/config.php</b> da biste promijenili postavku \"safe_HTML\" od vrijednosti \"0\" (onemogućeno) na vrijednost \"1\" (omogućeno) da biste omogućili samo upotrebu sigurnih HTML oznaka.");
|
||||
?>
|
||||
|
|
@ -22,11 +22,11 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_rcon_command_title', "RCON Naredbe");
|
||||
define('OGP_LANG_has_sent_to', "poslano za");
|
||||
define('OGP_LANG_need_set_remote_pass', "potrebno je postaviti udaljeni pristup");
|
||||
define('OGP_LANG_before_sending_rcon_com', "prije slanja rcon naredbe");
|
||||
define('OGP_LANG_send_command', "Pošalji naredbu");
|
||||
define('OGP_LANG_check-all', "Provjeri sve");
|
||||
define('OGP_LANG_uncheck-all', "Odznači sve");
|
||||
define('LANG_rcon_command_title', "RCON Naredbe");
|
||||
define('LANG_has_sent_to', "poslano za");
|
||||
define('LANG_need_set_remote_pass', "potrebno je postaviti udaljeni pristup");
|
||||
define('LANG_before_sending_rcon_com', "prije slanja rcon naredbe");
|
||||
define('LANG_send_command', "Pošalji naredbu");
|
||||
define('LANG_check-all', "Provjeri sve");
|
||||
define('LANG_uncheck-all', "Odznači sve");
|
||||
?>
|
||||
|
|
@ -22,34 +22,34 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_login_name', "Korisničko Ime");
|
||||
define('OGP_LANG_users_fname', "Vaše Ime");
|
||||
define('OGP_LANG_users_lname', "Prezime");
|
||||
define('OGP_LANG_users_passwd', "Lozinka");
|
||||
define('OGP_LANG_users_cpasswd', "Potvrditi lozinku");
|
||||
define('OGP_LANG_passwd_len', "Lozinka mora sadržati više od 6 znakova");
|
||||
define('OGP_LANG_err_password', "Lozinka ne smije biti prazna");
|
||||
define('OGP_LANG_err_confirm_password', "Polje za potvrdu lozinke ne smije biti prazna");
|
||||
define('OGP_LANG_err_password_mismatch', "Lozinke se ne podudaraju");
|
||||
define('OGP_LANG_phone_number', "Broj telefona");
|
||||
define('OGP_LANG_users_email', "E-pošta");
|
||||
define('OGP_LANG_register_a_new_user', "Registrirati novog korisnika");
|
||||
define('OGP_LANG_password_mismatch', "Neodgovarajuće lozinke");
|
||||
define('OGP_LANG_confirm_password', "Potvrditi lozinku");
|
||||
define('OGP_LANG_successfull', "Uspješno");
|
||||
define('OGP_LANG_click_here', "Kliknite ovdje");
|
||||
define('OGP_LANG_to_login', "za prijavu.");
|
||||
define('OGP_LANG_registered_on', "Registriran na %s.");
|
||||
define('OGP_LANG_register_message', "Poštovani,<br><br>Vaš Open Game Panel račun je uspješno kreiran i vi se sada <a href='%s' target='_blank'>možete prijaviti</a>.<br><br>Korisničko ime: %s<br><br>Ne zaboravite često mijenjati zaporku i prvi put kada se prijavite.<br><br>Molimo ne odgovarajte na ovaj email!<br><br>______________________________<br>OGP Pošta");
|
||||
define('OGP_LANG_err_captcha', "Captcha se ne podudara.");
|
||||
define('OGP_LANG_err_login_name', "Korisničko Ime je prazno ili zauzeto.");
|
||||
define('OGP_LANG_err_first_name', "Unesite vaše Ime");
|
||||
define('OGP_LANG_err_last_name', "Prezime nije unešeno");
|
||||
define('OGP_LANG_err_phone_number', "Broj telefona nije unešen.");
|
||||
define('OGP_LANG_err_email_address', "Prazna ili nepostojeća adresa e-pošte.");
|
||||
define('OGP_LANG_err_email_address_already_in_use_by', "E-pošta je več zauzeta od <b>%s</b>.");
|
||||
define('OGP_LANG_user_registration', "Registracija Korisnika");
|
||||
define('OGP_LANG_your_account_details_has_been_sent_by_email_to', "Podaci vašeg računa poslani su preko e-pošte na <b>%s</b>.");
|
||||
define('OGP_LANG_account_created', "Vaš račun je uspješno kreiran.");
|
||||
define('OGP_LANG_subject', "%s :: Detalji Računa");
|
||||
define('LANG_login_name', "Korisničko Ime");
|
||||
define('LANG_users_fname', "Vaše Ime");
|
||||
define('LANG_users_lname', "Prezime");
|
||||
define('LANG_users_passwd', "Lozinka");
|
||||
define('LANG_users_cpasswd', "Potvrditi lozinku");
|
||||
define('LANG_passwd_len', "Lozinka mora sadržati više od 6 znakova");
|
||||
define('LANG_err_password', "Lozinka ne smije biti prazna");
|
||||
define('LANG_err_confirm_password', "Polje za potvrdu lozinke ne smije biti prazna");
|
||||
define('LANG_err_password_mismatch', "Lozinke se ne podudaraju");
|
||||
define('LANG_phone_number', "Broj telefona");
|
||||
define('LANG_users_email', "E-pošta");
|
||||
define('LANG_register_a_new_user', "Registrirati novog korisnika");
|
||||
define('LANG_password_mismatch', "Neodgovarajuće lozinke");
|
||||
define('LANG_confirm_password', "Potvrditi lozinku");
|
||||
define('LANG_successfull', "Uspješno");
|
||||
define('LANG_click_here', "Kliknite ovdje");
|
||||
define('LANG_to_login', "za prijavu.");
|
||||
define('LANG_registered_on', "Registriran na %s.");
|
||||
define('LANG_register_message', "Poštovani,<br><br>Vaš Open Game Panel račun je uspješno kreiran i vi se sada <a href='%s' target='_blank'>možete prijaviti</a>.<br><br>Korisničko ime: %s<br><br>Ne zaboravite često mijenjati zaporku i prvi put kada se prijavite.<br><br>Molimo ne odgovarajte na ovaj email!<br><br>______________________________<br>OGP Pošta");
|
||||
define('LANG_err_captcha', "Captcha se ne podudara.");
|
||||
define('LANG_err_login_name', "Korisničko Ime je prazno ili zauzeto.");
|
||||
define('LANG_err_first_name', "Unesite vaše Ime");
|
||||
define('LANG_err_last_name', "Prezime nije unešeno");
|
||||
define('LANG_err_phone_number', "Broj telefona nije unešen.");
|
||||
define('LANG_err_email_address', "Prazna ili nepostojeća adresa e-pošte.");
|
||||
define('LANG_err_email_address_already_in_use_by', "E-pošta je več zauzeta od <b>%s</b>.");
|
||||
define('LANG_user_registration', "Registracija Korisnika");
|
||||
define('LANG_your_account_details_has_been_sent_by_email_to', "Podaci vašeg računa poslani su preko e-pošte na <b>%s</b>.");
|
||||
define('LANG_account_created', "Vaš račun je uspješno kreiran.");
|
||||
define('LANG_subject', "%s :: Detalji Računa");
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -22,118 +22,118 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_add_new_remote_host', "Dodajte Novi Udaljeni Poslužitelj");
|
||||
define('OGP_LANG_configured_remote_hosts', "Konfigurirani Udaljeni Poslužitelj");
|
||||
define('OGP_LANG_remote_host', "Udaljeni Poslužitelj");
|
||||
define('OGP_LANG_remote_host_info', "Udaljeni poslužitelj mora imati odgovarajući naziv poslužitelja!");
|
||||
define('OGP_LANG_remote_host_port', "Port Udaljenog Poslužitelja");
|
||||
define('OGP_LANG_remote_host_port_info', "Port od strane OGP Agenta na udaljenom poslužitelju. Zadano:12679");
|
||||
define('OGP_LANG_remote_host_name', "Naziv Udaljenog Poslužitelja");
|
||||
define('OGP_LANG_ogp_user', "Korisničko Ime OGP Agenta");
|
||||
define('OGP_LANG_remote_host_name_info', "Naziv udaljenog poslužitelja koristi se za pomoć korisnicima da identificiraju svoje poslužitelje.");
|
||||
define('OGP_LANG_add_remote_host', "Dodajte Udaljeni Poslužitelj");
|
||||
define('OGP_LANG_remote_encryption_key', "Udaljeni Ključ za Enkripciju");
|
||||
define('OGP_LANG_remote_encryption_key_info', "Udaljeni ključ za enkripciju koristi se za enkripciju podataka između Panela i Agenta. Taj ključ mora biti isti na obje strane.");
|
||||
define('OGP_LANG_server_name', "Naziv Poslužitelja");
|
||||
define('OGP_LANG_agent_ip_port', "IP:Port Agenta");
|
||||
define('OGP_LANG_agent_status', "Status Agenta");
|
||||
define('OGP_LANG_ips', "IP adrese");
|
||||
define('OGP_LANG_add_more_ips', "Ako želite unijeti više IP adresa, pritisnite 'Postaviti IPe' kada su sva polja puna i pojavit će se prazno polje.");
|
||||
define('OGP_LANG_encryption_key_mismatch', "Ključ za enkripciju ne podudara se sa Agentom. Molimo provjerite konfiguracije Agenta");
|
||||
define('OGP_LANG_no_ip_for_remote_host', "Morate dodati barem jednu (1) IP adresu za svaki udaljeni poslužitelj.");
|
||||
define('OGP_LANG_note_remote_host', "Udaljenj poslužitelj je server na kojem se pokreće Agent OGPa. Svaki poslužitelj može imati više IP adresa na kojima korisnici mogu vezati servere.");
|
||||
define('OGP_LANG_ip_administration', "Server & IP Administracija :: Open Game Panel");
|
||||
define('OGP_LANG_unknown_error', "Nepoznata pogreška - status_chk odbijeno");
|
||||
define('OGP_LANG_remote_host_user_name', "UNIX korisnik");
|
||||
define('OGP_LANG_remote_host_user_name_info', "Korisničko Ime odakle je Agent pokrenut. Primjer: Ivan");
|
||||
define('OGP_LANG_remote_host_ftp_ip', "FTP IP");
|
||||
define('OGP_LANG_remote_host_ftp_ip_info', "FTP <b>IP</b> poslužitelja za trenutni Agent.");
|
||||
define('OGP_LANG_remote_host_ftp_port', "FTP Port");
|
||||
define('OGP_LANG_remote_host_ftp_port_info', "FTP <b>port</b> poslužitelja za trenutni Agent.");
|
||||
define('OGP_LANG_view_log', "Vidjeti Zapisnik");
|
||||
define('OGP_LANG_status', "Status");
|
||||
define('OGP_LANG_stop_firewall', "Zaustaviti Vatrozid");
|
||||
define('OGP_LANG_start_firewall', "Pokrenuti Vatrozid");
|
||||
define('OGP_LANG_seconds', "Sekunde");
|
||||
define('OGP_LANG_reboot', "Ponovno pokretanje Poslužitelja");
|
||||
define('OGP_LANG_restart', "Ponovno pokretanje Agenta");
|
||||
define('OGP_LANG_confirm_reboot', "Jeste li sigurni da želite ponovno pokrenuti fizički kompletni poslužitelj pod nazivom '%s'?");
|
||||
define('OGP_LANG_confirm_restart', "Jeste li sigurno da želite ponovno pokrenuti Agent pod nazivom '%s'?");
|
||||
define('OGP_LANG_restarting', "Ponovno pokretanje Agenta...Molimo pričekajte");
|
||||
define('OGP_LANG_restarted', "Agent je uspješno ponovno pokrenut.");
|
||||
define('OGP_LANG_reboot_success', "Poslužitelj s nazivom '%s' uspješno je ponovno pokrenut. Nećete moći pristupiti poslužitelju dok se kompletno ne pokrene.");
|
||||
define('OGP_LANG_invalid_remote_host_id', "Nevažeći ID udaljenog posužitelja '%s'.");
|
||||
define('OGP_LANG_remote_host_removed', "Udaljeni poslužitelj pod nazivom '%s' uspješno uklonjen.");
|
||||
define('OGP_LANG_editing_remote_server', "Uređivanje udaljenog poslužitelja pod nazivom '%s'.");
|
||||
define('OGP_LANG_remote_server_settings_changed', "Uspješno su promjenjene postavke udaljenog servera '%s'.");
|
||||
define('OGP_LANG_save_settings', "Spremiti Postavke");
|
||||
define('OGP_LANG_set_ips', "Postaviti IP adrese");
|
||||
define('OGP_LANG_remote_ip', "IP Poslužitelja");
|
||||
define('OGP_LANG_remote_ips_for', "IP-ovi za servere koje ćete koristiti na poslužitelju agenta '%s'");
|
||||
define('OGP_LANG_ips_set_for_server', "Uspješno su postavljeni IP adrese za poslužitelja pod nazivom '%s'.");
|
||||
define('OGP_LANG_could_not_remove_ip', "Nije moguće ukloniti stare IP adrese od baze podataka.");
|
||||
define('OGP_LANG_could_add_ip', "Mogli bi dodati IP poslužitelja u bazu podataka.");
|
||||
define('OGP_LANG_areyousure_removeagent', "Jeste li sigurni da želite ukloniti Agent pod nazivom");
|
||||
define('OGP_LANG_areyousure_removeagent2', "i sve mape povezane s njim iz OGP baze podataka?");
|
||||
define('OGP_LANG_error_while_remove', "Došlo je do pogreške prilikom uklanjanja udaljenog poslužitelja.");
|
||||
define('OGP_LANG_add_ip', "Dodati IP");
|
||||
define('OGP_LANG_remove_ip', "Ukloniti IP");
|
||||
define('OGP_LANG_edit_ip', "Urediti IP");
|
||||
define('OGP_LANG_wrote_changes', "Promjene uspješno sačuvane.");
|
||||
define('OGP_LANG_there_are_servers_running_on_this_ip', "Na toj IP adresi postoje poslužitelji koji su več pokrenuti.");
|
||||
define('OGP_LANG_enter_ip_host', "Morate upisati IP za udaljeni poslužitelj.");
|
||||
define('OGP_LANG_enter_valid_ip', "Morate unijeti valjani port za udaljeni poslužitelj. Vrijednost porta može biti između 0 i 65535, no preporuka je između 1024 i 65535.");
|
||||
define('OGP_LANG_could_not_add_server', "Nije moguće dodati poslužitelj");
|
||||
define('OGP_LANG_to_db', "u bazi podataka.");
|
||||
define('OGP_LANG_added_server', "Dodani poslužitelj");
|
||||
define('OGP_LANG_with_port', "sa portom");
|
||||
define('OGP_LANG_to_db_succesfully', "u bazi podataka uspješno.");
|
||||
define('OGP_LANG_unable_discover', "Nije moguće automatski otkriti IP adrese");
|
||||
define('OGP_LANG_set_ip_manually', "Morat ćete ih postaviti ručno.");
|
||||
define('OGP_LANG_found_ips', "Pronađene IP adrese");
|
||||
define('OGP_LANG_for_remote_server', "za udaljeni poslužitelj.");
|
||||
define('OGP_LANG_failed_add_ip', "Dodavanje IP adrese nije uspjelo");
|
||||
define('OGP_LANG_timeout', "Isteklo Vrijeme");
|
||||
define('OGP_LANG_timeout_info', "Vremensko ograničenje u sekundama za dobivanje odgovora od ovog Agenta.");
|
||||
define('OGP_LANG_use_nat', "Koristi NAT");
|
||||
define('OGP_LANG_use_nat_info', "Omogućite ako vaš udaljeni poslužitelj koristi NAT pravila. Koristite ovu postavku ako se vaši serveri izvode na internim IP adresama privatnog LAN-a, tako da će panel koristiti vašu stvarnu udaljenu IP adresu za upite servera.");
|
||||
define('OGP_LANG_arrange_ports', "Rasporediti portove");
|
||||
define('OGP_LANG_assign_new_ports_range_for_ip', "Dodijelite novih raspon portova za IP %s");
|
||||
define('OGP_LANG_assigned_port_ranges_for_ip', "Dodijeljeni raspon portovi za IP %s");
|
||||
define('OGP_LANG_assigned_ports_for_ip', "Dodjeljeni portovi za IP %s");
|
||||
define('OGP_LANG_unspecified_game_types', "Neodređene vrste igara");
|
||||
define('OGP_LANG_start_port', "Početni port:");
|
||||
define('OGP_LANG_end_port', "Završni port:");
|
||||
define('OGP_LANG_port_increment', "Port povečanje:");
|
||||
define('OGP_LANG_total_assignable_ports', "Ukupni broj priključnih portova");
|
||||
define('OGP_LANG_available_range_ports', "Dostupni raspon portovi:");
|
||||
define('OGP_LANG_assign_range', "Dodijeliti raspon");
|
||||
define('OGP_LANG_edit_range', "Urediti raspon");
|
||||
define('OGP_LANG_delete_range', "Izbrisati raspon");
|
||||
define('OGP_LANG_home_id', "Home ID");
|
||||
define('OGP_LANG_home_path', "Putanje direktorija");
|
||||
define('OGP_LANG_game_type', "Vrsta igre");
|
||||
define('OGP_LANG_port', "Port");
|
||||
define('OGP_LANG_invalid_values', "Nevažeće vrijednosti");
|
||||
define('OGP_LANG_ports_in_range_already_arranged', "Raspon portova već raspoređen.");
|
||||
define('OGP_LANG_ports_range_already_configured_for', "Raspon portova već konfiguriran za %s.");
|
||||
define('OGP_LANG_ports_range_added_successfull_for', "Uspješno dodan raspon portova za %s.");
|
||||
define('OGP_LANG_ports_range_deleted_successfull', "Raspon portova uspješno je izbrisan.");
|
||||
define('OGP_LANG_ports_range_edited_successfull_for', "Raspon portova je uspješno uređen za %s.");
|
||||
define('OGP_LANG_editing_firewall_for_remote_server', "Uređivanje vatrozida za udaljenog poslužitelja pod nazivom '%s'");
|
||||
define('OGP_LANG_default_allowed', "Dopušteno je po zadanom");
|
||||
define('OGP_LANG_allow_port_command', "Dopusti naredbu porta");
|
||||
define('OGP_LANG_deny_port_command', "Odbij naredbu porta");
|
||||
define('OGP_LANG_allow_ip_port_command', "Dopusti IP:port naredbu");
|
||||
define('OGP_LANG_deny_ip_port_command', "Odbij IP:port naredbu");
|
||||
define('OGP_LANG_enable_firewall_command', "Omogući naredbu za vatrozid");
|
||||
define('OGP_LANG_disable_firewall_command', "Onemogući naredbu za vatrozid");
|
||||
define('OGP_LANG_get_firewall_status_command', "Nabavite status naredbe vatrozida");
|
||||
define('OGP_LANG_reset_firewall_command', "Ponovo postavite naredbu vatrozida");
|
||||
define('OGP_LANG_firewall_status', "Status vatrozida");
|
||||
define('OGP_LANG_save_firewall_settings', "Spremiti postavke za vatrozid");
|
||||
define('OGP_LANG_reset_firewall', "Ponovo postavite vatrozid");
|
||||
define('OGP_LANG_firewall_settings', "Vatrozid Postavke");
|
||||
define('OGP_LANG_display_public_ip', "Prikazati Javnu IP Adresu");
|
||||
define('OGP_LANG_ips_can_be_internal_external', "Unesite upotrebljive IP adrese. Mogu se koristiti javne IP adrese i unutarnje LAN IP adrese (za NAT postavke).");
|
||||
define('LANG_add_new_remote_host', "Dodajte Novi Udaljeni Poslužitelj");
|
||||
define('LANG_configured_remote_hosts', "Konfigurirani Udaljeni Poslužitelj");
|
||||
define('LANG_remote_host', "Udaljeni Poslužitelj");
|
||||
define('LANG_remote_host_info', "Udaljeni poslužitelj mora imati odgovarajući naziv poslužitelja!");
|
||||
define('LANG_remote_host_port', "Port Udaljenog Poslužitelja");
|
||||
define('LANG_remote_host_port_info', "Port od strane OGP Agenta na udaljenom poslužitelju. Zadano:12679");
|
||||
define('LANG_remote_host_name', "Naziv Udaljenog Poslužitelja");
|
||||
define('LANG_ogp_user', "Korisničko Ime OGP Agenta");
|
||||
define('LANG_remote_host_name_info', "Naziv udaljenog poslužitelja koristi se za pomoć korisnicima da identificiraju svoje poslužitelje.");
|
||||
define('LANG_add_remote_host', "Dodajte Udaljeni Poslužitelj");
|
||||
define('LANG_remote_encryption_key', "Udaljeni Ključ za Enkripciju");
|
||||
define('LANG_remote_encryption_key_info', "Udaljeni ključ za enkripciju koristi se za enkripciju podataka između Panela i Agenta. Taj ključ mora biti isti na obje strane.");
|
||||
define('LANG_server_name', "Naziv Poslužitelja");
|
||||
define('LANG_agent_ip_port', "IP:Port Agenta");
|
||||
define('LANG_agent_status', "Status Agenta");
|
||||
define('LANG_ips', "IP adrese");
|
||||
define('LANG_add_more_ips', "Ako želite unijeti više IP adresa, pritisnite 'Postaviti IPe' kada su sva polja puna i pojavit će se prazno polje.");
|
||||
define('LANG_encryption_key_mismatch', "Ključ za enkripciju ne podudara se sa Agentom. Molimo provjerite konfiguracije Agenta");
|
||||
define('LANG_no_ip_for_remote_host', "Morate dodati barem jednu (1) IP adresu za svaki udaljeni poslužitelj.");
|
||||
define('LANG_note_remote_host', "Udaljenj poslužitelj je server na kojem se pokreće Agent OGPa. Svaki poslužitelj može imati više IP adresa na kojima korisnici mogu vezati servere.");
|
||||
define('LANG_ip_administration', "Server & IP Administracija :: Open Game Panel");
|
||||
define('LANG_unknown_error', "Nepoznata pogreška - status_chk odbijeno");
|
||||
define('LANG_remote_host_user_name', "UNIX korisnik");
|
||||
define('LANG_remote_host_user_name_info', "Korisničko Ime odakle je Agent pokrenut. Primjer: Ivan");
|
||||
define('LANG_remote_host_ftp_ip', "FTP IP");
|
||||
define('LANG_remote_host_ftp_ip_info', "FTP <b>IP</b> poslužitelja za trenutni Agent.");
|
||||
define('LANG_remote_host_ftp_port', "FTP Port");
|
||||
define('LANG_remote_host_ftp_port_info', "FTP <b>port</b> poslužitelja za trenutni Agent.");
|
||||
define('LANG_view_log', "Vidjeti Zapisnik");
|
||||
define('LANG_status', "Status");
|
||||
define('LANG_stop_firewall', "Zaustaviti Vatrozid");
|
||||
define('LANG_start_firewall', "Pokrenuti Vatrozid");
|
||||
define('LANG_seconds', "Sekunde");
|
||||
define('LANG_reboot', "Ponovno pokretanje Poslužitelja");
|
||||
define('LANG_restart', "Ponovno pokretanje Agenta");
|
||||
define('LANG_confirm_reboot', "Jeste li sigurni da želite ponovno pokrenuti fizički kompletni poslužitelj pod nazivom '%s'?");
|
||||
define('LANG_confirm_restart', "Jeste li sigurno da želite ponovno pokrenuti Agent pod nazivom '%s'?");
|
||||
define('LANG_restarting', "Ponovno pokretanje Agenta...Molimo pričekajte");
|
||||
define('LANG_restarted', "Agent je uspješno ponovno pokrenut.");
|
||||
define('LANG_reboot_success', "Poslužitelj s nazivom '%s' uspješno je ponovno pokrenut. Nećete moći pristupiti poslužitelju dok se kompletno ne pokrene.");
|
||||
define('LANG_invalid_remote_host_id', "Nevažeći ID udaljenog posužitelja '%s'.");
|
||||
define('LANG_remote_host_removed', "Udaljeni poslužitelj pod nazivom '%s' uspješno uklonjen.");
|
||||
define('LANG_editing_remote_server', "Uređivanje udaljenog poslužitelja pod nazivom '%s'.");
|
||||
define('LANG_remote_server_settings_changed', "Uspješno su promjenjene postavke udaljenog servera '%s'.");
|
||||
define('LANG_save_settings', "Spremiti Postavke");
|
||||
define('LANG_set_ips', "Postaviti IP adrese");
|
||||
define('LANG_remote_ip', "IP Poslužitelja");
|
||||
define('LANG_remote_ips_for', "IP-ovi za servere koje ćete koristiti na poslužitelju agenta '%s'");
|
||||
define('LANG_ips_set_for_server', "Uspješno su postavljeni IP adrese za poslužitelja pod nazivom '%s'.");
|
||||
define('LANG_could_not_remove_ip', "Nije moguće ukloniti stare IP adrese od baze podataka.");
|
||||
define('LANG_could_add_ip', "Mogli bi dodati IP poslužitelja u bazu podataka.");
|
||||
define('LANG_areyousure_removeagent', "Jeste li sigurni da želite ukloniti Agent pod nazivom");
|
||||
define('LANG_areyousure_removeagent2', "i sve mape povezane s njim iz OGP baze podataka?");
|
||||
define('LANG_error_while_remove', "Došlo je do pogreške prilikom uklanjanja udaljenog poslužitelja.");
|
||||
define('LANG_add_ip', "Dodati IP");
|
||||
define('LANG_remove_ip', "Ukloniti IP");
|
||||
define('LANG_edit_ip', "Urediti IP");
|
||||
define('LANG_wrote_changes', "Promjene uspješno sačuvane.");
|
||||
define('LANG_there_are_servers_running_on_this_ip', "Na toj IP adresi postoje poslužitelji koji su več pokrenuti.");
|
||||
define('LANG_enter_ip_host', "Morate upisati IP za udaljeni poslužitelj.");
|
||||
define('LANG_enter_valid_ip', "Morate unijeti valjani port za udaljeni poslužitelj. Vrijednost porta može biti između 0 i 65535, no preporuka je između 1024 i 65535.");
|
||||
define('LANG_could_not_add_server', "Nije moguće dodati poslužitelj");
|
||||
define('LANG_to_db', "u bazi podataka.");
|
||||
define('LANG_added_server', "Dodani poslužitelj");
|
||||
define('LANG_with_port', "sa portom");
|
||||
define('LANG_to_db_succesfully', "u bazi podataka uspješno.");
|
||||
define('LANG_unable_discover', "Nije moguće automatski otkriti IP adrese");
|
||||
define('LANG_set_ip_manually', "Morat ćete ih postaviti ručno.");
|
||||
define('LANG_found_ips', "Pronađene IP adrese");
|
||||
define('LANG_for_remote_server', "za udaljeni poslužitelj.");
|
||||
define('LANG_failed_add_ip', "Dodavanje IP adrese nije uspjelo");
|
||||
define('LANG_timeout', "Isteklo Vrijeme");
|
||||
define('LANG_timeout_info', "Vremensko ograničenje u sekundama za dobivanje odgovora od ovog Agenta.");
|
||||
define('LANG_use_nat', "Koristi NAT");
|
||||
define('LANG_use_nat_info', "Omogućite ako vaš udaljeni poslužitelj koristi NAT pravila. Koristite ovu postavku ako se vaši serveri izvode na internim IP adresama privatnog LAN-a, tako da će panel koristiti vašu stvarnu udaljenu IP adresu za upite servera.");
|
||||
define('LANG_arrange_ports', "Rasporediti portove");
|
||||
define('LANG_assign_new_ports_range_for_ip', "Dodijelite novih raspon portova za IP %s");
|
||||
define('LANG_assigned_port_ranges_for_ip', "Dodijeljeni raspon portovi za IP %s");
|
||||
define('LANG_assigned_ports_for_ip', "Dodjeljeni portovi za IP %s");
|
||||
define('LANG_unspecified_game_types', "Neodređene vrste igara");
|
||||
define('LANG_start_port', "Početni port:");
|
||||
define('LANG_end_port', "Završni port:");
|
||||
define('LANG_port_increment', "Port povečanje:");
|
||||
define('LANG_total_assignable_ports', "Ukupni broj priključnih portova");
|
||||
define('LANG_available_range_ports', "Dostupni raspon portovi:");
|
||||
define('LANG_assign_range', "Dodijeliti raspon");
|
||||
define('LANG_edit_range', "Urediti raspon");
|
||||
define('LANG_delete_range', "Izbrisati raspon");
|
||||
define('LANG_home_id', "Home ID");
|
||||
define('LANG_home_path', "Putanje direktorija");
|
||||
define('LANG_game_type', "Vrsta igre");
|
||||
define('LANG_port', "Port");
|
||||
define('LANG_invalid_values', "Nevažeće vrijednosti");
|
||||
define('LANG_ports_in_range_already_arranged', "Raspon portova već raspoređen.");
|
||||
define('LANG_ports_range_already_configured_for', "Raspon portova već konfiguriran za %s.");
|
||||
define('LANG_ports_range_added_successfull_for', "Uspješno dodan raspon portova za %s.");
|
||||
define('LANG_ports_range_deleted_successfull', "Raspon portova uspješno je izbrisan.");
|
||||
define('LANG_ports_range_edited_successfull_for', "Raspon portova je uspješno uređen za %s.");
|
||||
define('LANG_editing_firewall_for_remote_server', "Uređivanje vatrozida za udaljenog poslužitelja pod nazivom '%s'");
|
||||
define('LANG_default_allowed', "Dopušteno je po zadanom");
|
||||
define('LANG_allow_port_command', "Dopusti naredbu porta");
|
||||
define('LANG_deny_port_command', "Odbij naredbu porta");
|
||||
define('LANG_allow_ip_port_command', "Dopusti IP:port naredbu");
|
||||
define('LANG_deny_ip_port_command', "Odbij IP:port naredbu");
|
||||
define('LANG_enable_firewall_command', "Omogući naredbu za vatrozid");
|
||||
define('LANG_disable_firewall_command', "Onemogući naredbu za vatrozid");
|
||||
define('LANG_get_firewall_status_command', "Nabavite status naredbe vatrozida");
|
||||
define('LANG_reset_firewall_command', "Ponovo postavite naredbu vatrozida");
|
||||
define('LANG_firewall_status', "Status vatrozida");
|
||||
define('LANG_save_firewall_settings', "Spremiti postavke za vatrozid");
|
||||
define('LANG_reset_firewall', "Ponovo postavite vatrozid");
|
||||
define('LANG_firewall_settings', "Vatrozid Postavke");
|
||||
define('LANG_display_public_ip', "Prikazati Javnu IP Adresu");
|
||||
define('LANG_ips_can_be_internal_external', "Unesite upotrebljive IP adrese. Mogu se koristiti javne IP adrese i unutarnje LAN IP adrese (za NAT postavke).");
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -22,127 +22,127 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_maintenance_mode', "Održavanje");
|
||||
define('OGP_LANG_maintenance_mode_info', "Onemogućite Panel za obične korisnike. Samo administratori mogu pristupiti tijekom održavanja.");
|
||||
define('OGP_LANG_maintenance_title', "Naslov održavanja");
|
||||
define('OGP_LANG_maintenance_title_info', "Naslov koji se običnim korisnicima prikazuje tijekom održavanja.");
|
||||
define('OGP_LANG_maintenance_message', "Poruka o održavanju");
|
||||
define('OGP_LANG_maintenance_message_info', "Poruka koja se prikazuje običnim korisnicima tijekom održavanja.");
|
||||
define('OGP_LANG_update_settings', "Ažurirati postavke");
|
||||
define('OGP_LANG_settings_updated', "Postavke su uspješno ažurirane.");
|
||||
define('OGP_LANG_panel_language', "Jezik Panela");
|
||||
define('OGP_LANG_panel_language_info', "Ovaj jezik je zadani jezik Panela. Korisnici mogu promijeniti svoj jezik na stranici za uređivanje profila.");
|
||||
define('OGP_LANG_page_auto_refresh', "Automatsko Osvježavanje Stranice");
|
||||
define('OGP_LANG_page_auto_refresh_info', "Postavke automatskog osvježavanja stranice uglavnom se upotrebljavaju u debugu ploče. U normalnoj upotrebi to bi trebalo biti postavljeno na Uključeno.");
|
||||
define('OGP_LANG_smtp_server', "Poslužitelj za odlazne e-pošte");
|
||||
define('OGP_LANG_smtp_server_info', "Ovo je poslužitelj odlazne pošte (SMTP poslužitelj) koji se koristi, na primjer, za slanje zaboravljenih zaporki korisnicima, lokalni host prema zadanim postavkama.");
|
||||
define('OGP_LANG_panel_email_address', "Odlazna e-pošta");
|
||||
define('OGP_LANG_panel_email_address_info', "Ovo je adresa e-pošte koja je u polju kada se lozinke šalju korisnicima.");
|
||||
define('OGP_LANG_panel_name', "Naziv Panela");
|
||||
define('OGP_LANG_panel_name_info', "Naziv Panela prikazanog u naslovu stranice. Ova će vrijednost odbiti sve naslove stranica, ako nije prazna.");
|
||||
define('OGP_LANG_feed_enable', "Omogući LGSL feed");
|
||||
define('OGP_LANG_feed_enable_info', "Ako vaš webhost ima vatrozid koji blokira port upita, onda ručno ga morate otvoriti port.");
|
||||
define('OGP_LANG_feed_url', "URL feeda");
|
||||
define('OGP_LANG_feed_url_info', "GrayCube.com dijeli LGSL feed na URL:<br><b>http://www.greycube.co.uk/lgsl/feed/lgsl_files/lgsl_feed.php</b>");
|
||||
define('OGP_LANG_charset', "Kodiranje znakova");
|
||||
define('OGP_LANG_charset_info', "UTF8, ISO, ASCII, itd...Prebacuje kodiranje znakova definiranog jezičnim datotekama. Ostavite ga prazno da biste koristili zadanu postavku jezika.");
|
||||
define('OGP_LANG_steam_user', "Steam Korisnik");
|
||||
define('OGP_LANG_steam_user_info', "Ovaj korisnik je potreban za prijavu u Steam-u za preuzimanje nekih novih igara poput CS: GO.");
|
||||
define('OGP_LANG_steam_pass', "Steam Lozinka");
|
||||
define('OGP_LANG_steam_pass_info', "Ovdje napišite lozinku za Steam račun.");
|
||||
define('OGP_LANG_steam_guard', "Steam Guard");
|
||||
define('OGP_LANG_steam_guard_info', "Neki korisnici imaju aktivirano Steam Guard kako bi zaštitili svoje račune od hakera,<br>ovaj kôd šalje se e-pošti računa kada započne prvo ažuriranje Steam-a.");
|
||||
define('OGP_LANG_smtp_port', "SMTP Port");
|
||||
define('OGP_LANG_smtp_port_info', "Ako SMTP port nije zadani port (25) Ovdje unesite SMTP port.");
|
||||
define('OGP_LANG_smtp_login', "SMTP Korisnik");
|
||||
define('OGP_LANG_smtp_login_info', "Ako vaš SMTP poslužitelj zahtijeva provjeru autentičnosti, ovdje unesite korisničko ime.");
|
||||
define('OGP_LANG_smtp_passw', "SMTP Lozinka");
|
||||
define('OGP_LANG_smtp_passw_info', "Ako ne postavite lozinku, SMTP autentikacija će biti onemogućena.");
|
||||
define('OGP_LANG_smtp_secure', "SMTP Sigurnost");
|
||||
define('OGP_LANG_smtp_secure_info', "Koristite SSL/TLS za povezivanje sa SMTP poslužiteljem");
|
||||
define('OGP_LANG_time_zone', "Vremenska Zona");
|
||||
define('OGP_LANG_time_zone_info', "Postavlja zadanu vremensku zonu koju upotrebljavaju sve funkcije datuma vremena.");
|
||||
define('OGP_LANG_query_cache_life', "Život predmemorije");
|
||||
define('OGP_LANG_query_cache_life_info', "Postavlja vremensko ograničenje u sekundama prije osvježavanja statusa poslužitelja.");
|
||||
define('OGP_LANG_query_num_servers_stop', "Onemogući upite igara nakon");
|
||||
define('OGP_LANG_query_num_servers_stop_info', "Pomoću ove postavke onemogućite upite ako korisnik posjeduje više igrica od navedenog iznosa kako bi se ubrzao učitavanje panela.");
|
||||
define('OGP_LANG_editable_email', "E-pošta za uređivanje");
|
||||
define('OGP_LANG_editable_email_info', "Odaberite ako korisnici mogu urediti svoju adresu e-pošte ili ne.");
|
||||
define('OGP_LANG_old_dashboard_behavior', "Prikaz stare verzije Nadzorne Ploče");
|
||||
define('OGP_LANG_old_dashboard_behavior_info', "Stara nadzorna ploča je dosta sporija, ali prikazuje više informacija o serveru (npr. Trenutni igrači i karte).");
|
||||
define('OGP_LANG_rsync_available', "Dostupni Rsync poslužitelji");
|
||||
define('OGP_LANG_rsync_available_info', "Odaberite koji će poslužitelj biti prikazan u rsync instalaciji.");
|
||||
define('OGP_LANG_all_available_servers', "Svi dostupni poslužitelji ( rsync_sites.list + rsync_sites_local.list )");
|
||||
define('OGP_LANG_only_remote_servers', "Samo udaljeni poslužitelji ( rsync_sites.list )");
|
||||
define('OGP_LANG_only_local_servers', "Samo lokalni poslužitelji (rsync_sites_local.list )");
|
||||
define('OGP_LANG_header_code', "Šifra zaglavlja");
|
||||
define('OGP_LANG_header_code_info', "Ovdje možete napisati vlastiti kôd zaglavlja (poput HTML koda, Embed Code itd.) Bez uređivanja izgleda tema.");
|
||||
define('OGP_LANG_support_widget_title', "Naslov widgeta korisničke podrške");
|
||||
define('OGP_LANG_support_widget_title_info', "Prilagođeni naslov widgeta za podršku na nadzornoj ploči.");
|
||||
define('OGP_LANG_support_widget_content', "Sadržaj widgeta za Podršku");
|
||||
define('OGP_LANG_support_widget_content_info', "Sadržaj widgeta za podršku (dopušten HTML kôd).");
|
||||
define('OGP_LANG_support_widget_link', "Poveznica widgeta za Podršku");
|
||||
define('OGP_LANG_support_widget_link_info', "URL vaše stranice za podršku.");
|
||||
define('OGP_LANG_recaptcha_site_key', "Ključ Recaptcha Stranice");
|
||||
define('OGP_LANG_recaptcha_site_key_info', "Ključ stranice koji vam je Google pružio.");
|
||||
define('OGP_LANG_recaptcha_secret_key', "Recaptcha Tajni Ključ");
|
||||
define('OGP_LANG_recaptcha_secret_key_info', "Tajni ključ koji vam Google pruža.");
|
||||
define('OGP_LANG_recaptcha_use_login', "Upotrijebiti Recaptcha kada se korisnici prijave");
|
||||
define('OGP_LANG_recaptcha_use_login_info', "Ako je omogućeno, korisnici će morati riješiti Nisam Robot Recaptcha prilikom pokušaja prijave.");
|
||||
define('OGP_LANG_login_attempts_before_banned', "Broj neuspjelih pokušaja prijave prije nego što korisnik dobije zabranu");
|
||||
define('OGP_LANG_login_attempts_before_banned_info', "Ako se korisnik više puta pokuša prijaviti s nevažećim detaljima za prijavu, Panel će privremeno zabraniti korisnika.");
|
||||
define('OGP_LANG_custom_github_update_username', "Korisničko Ime za GitHub ažuriranje");
|
||||
define('OGP_LANG_custom_github_update_username_info', "Unesite GitHub korisničko ime SAMO za korištenje vlastitih repozitoriji za ažuriranje OGP-a. To bi trebalo mijenjati samo razvojni programeri koji žele koristiti vlastiti repozitorij za razvoj, umjesto da provjere eventualno pogrešan kod u glavnu granu.");
|
||||
define('OGP_LANG_remote_query', "Udaljeni upit");
|
||||
define('OGP_LANG_remote_query_info', "Upotrijebite udaljeni poslužitelj (agent) za upite na igre (samo GameQ i LGSL).");
|
||||
define('OGP_LANG_check_expiry_by', "Provjerite istek");
|
||||
define('OGP_LANG_check_expiry_by_info', "Ako je postavljeno na once_logged_in, igre koje su dodjeljenje korisnicma automatski će se izbrisati nakon isteka datuma. Ako je postavljeno na cron_job, trebat ćete napraviti cron zadatak pomoću cron modula kako biste provjerili datum isteka u konfiguriranom intervalu.");
|
||||
define('OGP_LANG_once_logged_in', "Kada se prijavi");
|
||||
define('OGP_LANG_cron_job', "Cron Zadatak");
|
||||
define('OGP_LANG_theme_settings', "Postavke teme");
|
||||
define('OGP_LANG_theme', "Tema");
|
||||
define('OGP_LANG_theme_info', "Tema odabrana ovdje bit će zadana tema za sve korisnike. Korisnici mogu promijeniti temu s njihove stranice profila.");
|
||||
define('OGP_LANG_welcome_title', "Naslov Dobrodošlice");
|
||||
define('OGP_LANG_welcome_title_info', "Omogućuje naslov koji se prikazuje na vrhu Nadzorne ploče.");
|
||||
define('OGP_LANG_welcome_title_message', "Poruka za Naslov Dobrodošlice");
|
||||
define('OGP_LANG_welcome_title_message_info', "Naslovna poruka koja se prikazuje na vrhu Nadzorne ploče (dopušteni HTML kôd).");
|
||||
define('OGP_LANG_logo_link', "Link za Logotip");
|
||||
define('OGP_LANG_logo_link_info', "Hyperlink logotipa. <b style='font-size:10px; font-weight:normal;'>(Ostavljajući ga prazno povezat će ga s nadzornom pločom)</b>");
|
||||
define('OGP_LANG_custom_tab', "Prilagođena kartica");
|
||||
define('OGP_LANG_custom_tab_info', "Na kraju izbornika dodaje se prilagodljiva kartica. <b style='font-size:10px; font-weight:normal;'>(Primijeni i osvježite ovu stranicu da biste uredili postavke kartica)</b>");
|
||||
define('OGP_LANG_custom_tab_name', "Naziv Prilagođene Kartice");
|
||||
define('OGP_LANG_custom_tab_name_info', "Naziv koji če se prikazati za priagođene kartice.");
|
||||
define('OGP_LANG_custom_tab_link', "Poveznica Prilagođene Kartice");
|
||||
define('OGP_LANG_custom_tab_link_info', "Hiperlinkovi kartica.");
|
||||
define('OGP_LANG_custom_tab_sub', "Prilagođene podkartice");
|
||||
define('OGP_LANG_custom_tab_sub_info', "Dodavanje prilagodljivih podkartica ispod \"Prilagođene kartice\".");
|
||||
define('OGP_LANG_custom_tab_sub_name', "Podkartica #1 Naziv");
|
||||
define('OGP_LANG_custom_tab_sub_link', "Podkartica #1 Poveznica");
|
||||
define('OGP_LANG_custom_tab_sub_name2', "Podkartica #2 Naziv");
|
||||
define('OGP_LANG_custom_tab_sub_link2', "Podkartica #2 Poveznica");
|
||||
define('OGP_LANG_custom_tab_sub_name3', "Podkartica #3 Naziv");
|
||||
define('OGP_LANG_custom_tab_sub_link3', "Podkartica #3 Poveznica");
|
||||
define('OGP_LANG_custom_tab_sub_name4', "Podkartica #4 Naziv");
|
||||
define('OGP_LANG_custom_tab_sub_link4', "Podkartica #4 Poveznica");
|
||||
define('OGP_LANG_custom_tab_target_blank', "Opcija Otvaranja Prilagođene Kartice");
|
||||
define('OGP_LANG_custom_tab_target_blank_info', "Opcija otvaranja prilagođene stranice. <b style='font-size:10px; font-weight:normal;'>(Ista_Stranica = otvara vezu na istoj stranici. Nova_Stranica = otvara vezu na novoj kartici.)</b>");
|
||||
define('OGP_LANG_bg_wrapper', "Pozadinska slika Wrappera");
|
||||
define('OGP_LANG_bg_wrapper_info', "Pozadinska slika wrappera. <b style='font-size:10px; font-weight:normal;'>(Dostupno samo za neke teme.)</b>");
|
||||
define('OGP_LANG_show_server_id_game_monitor', "Prikaži ID servera na stranici Monitor igara");
|
||||
define('OGP_LANG_show_server_id_game_monitor_info', "Pokažite stupac ID servera na Monitor Igara za podudaranje datoteka stvorenih od strane Agenta na aktualnom serveru.");
|
||||
define('OGP_LANG_default_game_server_home_path_prefix', "Zadani prefiks Home direktorija za server");
|
||||
define('OGP_LANG_default_game_server_home_path_prefix_info', "Unesite prefiks putanja za mjesto na kojem želite da Home direktoriji servera budu izrađeni prema zadanim postavkama. Možete upotrebljavati \"{USERNAME}\" na putu koji će biti zamijenjen korisničkim imenom OGP-a kojem se dodjeljuje server. Možete koristiti \"{GAMEKEY}\" na putu koji će biti zamijenjen imenom sa malim slovima. Možete upotrebljavati \"{SKIPID}\" bilo gdje na putu da preskočite dodavanje Home ID-a na putnju. Primjer: /ogp/games/{USERNAME}/{GAMEKEY}{SKIPID} će postati /ogp/games/username/arkse/. Primjer 2: /ogp/games će postati /ogp/games/1 gdje je 1 ID servera.");
|
||||
define('OGP_LANG_use_authorized_hosts', "Ograničite API na Definirane ovlaštene hostove");
|
||||
define('OGP_LANG_use_authorized_hosts_info', "Omogućite ovu postavku da biste dozvolili samo API pozive s unaprijed definiranih i odobrenih IP adresa. Odobrene adrese možete postaviti na ovoj stranici nakon što je postavka omogućena. Ako je ova postavka onemogućena, korisnik koji koristi važeći ključ imat će pristup API-ju s bilo koje IP adrese. Korisnici koji koriste valjani ključ moći će koristiti API za upravljanje bilo kojim poslužiteljem za igre koje imaju dozvole za administriranje.");
|
||||
define('OGP_LANG_setup_api_authorized_hosts', "Postavke API za autorizaciju poslužitelja");
|
||||
define('OGP_LANG_autohorized_hosts', "Ovlašteni poslužitelji");
|
||||
define('OGP_LANG_add', "Dodati");
|
||||
define('OGP_LANG_remove', "Ukloniti");
|
||||
define('OGP_LANG_default_trusted_hosts', "Zadani Pouzdani Poslužitelji");
|
||||
define('OGP_LANG_trusted_host_or_proxy_addresses_or_cidr', "Pouzdani Poslužitelji ili Proxy (IPv4/IPv6 Adrese ili CIDR)");
|
||||
define('OGP_LANG_trusted_forwarded_ip_addresses_or_cidr', "Pouzdani prosljeđeni IP-ovi (IPv4/IPv6 Addresses or CIDR)");
|
||||
define('OGP_LANG_reset_game_server_order', "Resetiranje redoslijeda poslužitelja igara");
|
||||
define('OGP_LANG_reset_game_server_order_info', "Poništava naredbu redoslijeda igara na zadane postavke ID poslužitelja");
|
||||
define('LANG_maintenance_mode', "Održavanje");
|
||||
define('LANG_maintenance_mode_info', "Onemogućite Panel za obične korisnike. Samo administratori mogu pristupiti tijekom održavanja.");
|
||||
define('LANG_maintenance_title', "Naslov održavanja");
|
||||
define('LANG_maintenance_title_info', "Naslov koji se običnim korisnicima prikazuje tijekom održavanja.");
|
||||
define('LANG_maintenance_message', "Poruka o održavanju");
|
||||
define('LANG_maintenance_message_info', "Poruka koja se prikazuje običnim korisnicima tijekom održavanja.");
|
||||
define('LANG_update_settings', "Ažurirati postavke");
|
||||
define('LANG_settings_updated', "Postavke su uspješno ažurirane.");
|
||||
define('LANG_panel_language', "Jezik Panela");
|
||||
define('LANG_panel_language_info', "Ovaj jezik je zadani jezik Panela. Korisnici mogu promijeniti svoj jezik na stranici za uređivanje profila.");
|
||||
define('LANG_page_auto_refresh', "Automatsko Osvježavanje Stranice");
|
||||
define('LANG_page_auto_refresh_info', "Postavke automatskog osvježavanja stranice uglavnom se upotrebljavaju u debugu ploče. U normalnoj upotrebi to bi trebalo biti postavljeno na Uključeno.");
|
||||
define('LANG_smtp_server', "Poslužitelj za odlazne e-pošte");
|
||||
define('LANG_smtp_server_info', "Ovo je poslužitelj odlazne pošte (SMTP poslužitelj) koji se koristi, na primjer, za slanje zaboravljenih zaporki korisnicima, lokalni host prema zadanim postavkama.");
|
||||
define('LANG_panel_email_address', "Odlazna e-pošta");
|
||||
define('LANG_panel_email_address_info', "Ovo je adresa e-pošte koja je u polju kada se lozinke šalju korisnicima.");
|
||||
define('LANG_panel_name', "Naziv Panela");
|
||||
define('LANG_panel_name_info', "Naziv Panela prikazanog u naslovu stranice. Ova će vrijednost odbiti sve naslove stranica, ako nije prazna.");
|
||||
define('LANG_feed_enable', "Omogući LGSL feed");
|
||||
define('LANG_feed_enable_info', "Ako vaš webhost ima vatrozid koji blokira port upita, onda ručno ga morate otvoriti port.");
|
||||
define('LANG_feed_url', "URL feeda");
|
||||
define('LANG_feed_url_info', "GrayCube.com dijeli LGSL feed na URL:<br><b>http://www.greycube.co.uk/lgsl/feed/lgsl_files/lgsl_feed.php</b>");
|
||||
define('LANG_charset', "Kodiranje znakova");
|
||||
define('LANG_charset_info', "UTF8, ISO, ASCII, itd...Prebacuje kodiranje znakova definiranog jezičnim datotekama. Ostavite ga prazno da biste koristili zadanu postavku jezika.");
|
||||
define('LANG_steam_user', "Steam Korisnik");
|
||||
define('LANG_steam_user_info', "Ovaj korisnik je potreban za prijavu u Steam-u za preuzimanje nekih novih igara poput CS: GO.");
|
||||
define('LANG_steam_pass', "Steam Lozinka");
|
||||
define('LANG_steam_pass_info', "Ovdje napišite lozinku za Steam račun.");
|
||||
define('LANG_steam_guard', "Steam Guard");
|
||||
define('LANG_steam_guard_info', "Neki korisnici imaju aktivirano Steam Guard kako bi zaštitili svoje račune od hakera,<br>ovaj kôd šalje se e-pošti računa kada započne prvo ažuriranje Steam-a.");
|
||||
define('LANG_smtp_port', "SMTP Port");
|
||||
define('LANG_smtp_port_info', "Ako SMTP port nije zadani port (25) Ovdje unesite SMTP port.");
|
||||
define('LANG_smtp_login', "SMTP Korisnik");
|
||||
define('LANG_smtp_login_info', "Ako vaš SMTP poslužitelj zahtijeva provjeru autentičnosti, ovdje unesite korisničko ime.");
|
||||
define('LANG_smtp_passw', "SMTP Lozinka");
|
||||
define('LANG_smtp_passw_info', "Ako ne postavite lozinku, SMTP autentikacija će biti onemogućena.");
|
||||
define('LANG_smtp_secure', "SMTP Sigurnost");
|
||||
define('LANG_smtp_secure_info', "Koristite SSL/TLS za povezivanje sa SMTP poslužiteljem");
|
||||
define('LANG_time_zone', "Vremenska Zona");
|
||||
define('LANG_time_zone_info', "Postavlja zadanu vremensku zonu koju upotrebljavaju sve funkcije datuma vremena.");
|
||||
define('LANG_query_cache_life', "Život predmemorije");
|
||||
define('LANG_query_cache_life_info', "Postavlja vremensko ograničenje u sekundama prije osvježavanja statusa poslužitelja.");
|
||||
define('LANG_query_num_servers_stop', "Onemogući upite igara nakon");
|
||||
define('LANG_query_num_servers_stop_info', "Pomoću ove postavke onemogućite upite ako korisnik posjeduje više igrica od navedenog iznosa kako bi se ubrzao učitavanje panela.");
|
||||
define('LANG_editable_email', "E-pošta za uređivanje");
|
||||
define('LANG_editable_email_info', "Odaberite ako korisnici mogu urediti svoju adresu e-pošte ili ne.");
|
||||
define('LANG_old_dashboard_behavior', "Prikaz stare verzije Nadzorne Ploče");
|
||||
define('LANG_old_dashboard_behavior_info', "Stara nadzorna ploča je dosta sporija, ali prikazuje više informacija o serveru (npr. Trenutni igrači i karte).");
|
||||
define('LANG_rsync_available', "Dostupni Rsync poslužitelji");
|
||||
define('LANG_rsync_available_info', "Odaberite koji će poslužitelj biti prikazan u rsync instalaciji.");
|
||||
define('LANG_all_available_servers', "Svi dostupni poslužitelji ( rsync_sites.list + rsync_sites_local.list )");
|
||||
define('LANG_only_remote_servers', "Samo udaljeni poslužitelji ( rsync_sites.list )");
|
||||
define('LANG_only_local_servers', "Samo lokalni poslužitelji (rsync_sites_local.list )");
|
||||
define('LANG_header_code', "Šifra zaglavlja");
|
||||
define('LANG_header_code_info', "Ovdje možete napisati vlastiti kôd zaglavlja (poput HTML koda, Embed Code itd.) Bez uređivanja izgleda tema.");
|
||||
define('LANG_support_widget_title', "Naslov widgeta korisničke podrške");
|
||||
define('LANG_support_widget_title_info', "Prilagođeni naslov widgeta za podršku na nadzornoj ploči.");
|
||||
define('LANG_support_widget_content', "Sadržaj widgeta za Podršku");
|
||||
define('LANG_support_widget_content_info', "Sadržaj widgeta za podršku (dopušten HTML kôd).");
|
||||
define('LANG_support_widget_link', "Poveznica widgeta za Podršku");
|
||||
define('LANG_support_widget_link_info', "URL vaše stranice za podršku.");
|
||||
define('LANG_recaptcha_site_key', "Ključ Recaptcha Stranice");
|
||||
define('LANG_recaptcha_site_key_info', "Ključ stranice koji vam je Google pružio.");
|
||||
define('LANG_recaptcha_secret_key', "Recaptcha Tajni Ključ");
|
||||
define('LANG_recaptcha_secret_key_info', "Tajni ključ koji vam Google pruža.");
|
||||
define('LANG_recaptcha_use_login', "Upotrijebiti Recaptcha kada se korisnici prijave");
|
||||
define('LANG_recaptcha_use_login_info', "Ako je omogućeno, korisnici će morati riješiti Nisam Robot Recaptcha prilikom pokušaja prijave.");
|
||||
define('LANG_login_attempts_before_banned', "Broj neuspjelih pokušaja prijave prije nego što korisnik dobije zabranu");
|
||||
define('LANG_login_attempts_before_banned_info', "Ako se korisnik više puta pokuša prijaviti s nevažećim detaljima za prijavu, Panel će privremeno zabraniti korisnika.");
|
||||
define('LANG_custom_github_update_username', "Korisničko Ime za GitHub ažuriranje");
|
||||
define('LANG_custom_github_update_username_info', "Unesite GitHub korisničko ime SAMO za korištenje vlastitih repozitoriji za ažuriranje OGP-a. To bi trebalo mijenjati samo razvojni programeri koji žele koristiti vlastiti repozitorij za razvoj, umjesto da provjere eventualno pogrešan kod u glavnu granu.");
|
||||
define('LANG_remote_query', "Udaljeni upit");
|
||||
define('LANG_remote_query_info', "Upotrijebite udaljeni poslužitelj (agent) za upite na igre (samo GameQ i LGSL).");
|
||||
define('LANG_check_expiry_by', "Provjerite istek");
|
||||
define('LANG_check_expiry_by_info', "Ako je postavljeno na once_logged_in, igre koje su dodjeljenje korisnicma automatski će se izbrisati nakon isteka datuma. Ako je postavljeno na cron_job, trebat ćete napraviti cron zadatak pomoću cron modula kako biste provjerili datum isteka u konfiguriranom intervalu.");
|
||||
define('LANG_once_logged_in', "Kada se prijavi");
|
||||
define('LANG_cron_job', "Cron Zadatak");
|
||||
define('LANG_theme_settings', "Postavke teme");
|
||||
define('LANG_theme', "Tema");
|
||||
define('LANG_theme_info', "Tema odabrana ovdje bit će zadana tema za sve korisnike. Korisnici mogu promijeniti temu s njihove stranice profila.");
|
||||
define('LANG_welcome_title', "Naslov Dobrodošlice");
|
||||
define('LANG_welcome_title_info', "Omogućuje naslov koji se prikazuje na vrhu Nadzorne ploče.");
|
||||
define('LANG_welcome_title_message', "Poruka za Naslov Dobrodošlice");
|
||||
define('LANG_welcome_title_message_info', "Naslovna poruka koja se prikazuje na vrhu Nadzorne ploče (dopušteni HTML kôd).");
|
||||
define('LANG_logo_link', "Link za Logotip");
|
||||
define('LANG_logo_link_info', "Hyperlink logotipa. <b style='font-size:10px; font-weight:normal;'>(Ostavljajući ga prazno povezat će ga s nadzornom pločom)</b>");
|
||||
define('LANG_custom_tab', "Prilagođena kartica");
|
||||
define('LANG_custom_tab_info', "Na kraju izbornika dodaje se prilagodljiva kartica. <b style='font-size:10px; font-weight:normal;'>(Primijeni i osvježite ovu stranicu da biste uredili postavke kartica)</b>");
|
||||
define('LANG_custom_tab_name', "Naziv Prilagođene Kartice");
|
||||
define('LANG_custom_tab_name_info', "Naziv koji če se prikazati za priagođene kartice.");
|
||||
define('LANG_custom_tab_link', "Poveznica Prilagođene Kartice");
|
||||
define('LANG_custom_tab_link_info', "Hiperlinkovi kartica.");
|
||||
define('LANG_custom_tab_sub', "Prilagođene podkartice");
|
||||
define('LANG_custom_tab_sub_info', "Dodavanje prilagodljivih podkartica ispod \"Prilagođene kartice\".");
|
||||
define('LANG_custom_tab_sub_name', "Podkartica #1 Naziv");
|
||||
define('LANG_custom_tab_sub_link', "Podkartica #1 Poveznica");
|
||||
define('LANG_custom_tab_sub_name2', "Podkartica #2 Naziv");
|
||||
define('LANG_custom_tab_sub_link2', "Podkartica #2 Poveznica");
|
||||
define('LANG_custom_tab_sub_name3', "Podkartica #3 Naziv");
|
||||
define('LANG_custom_tab_sub_link3', "Podkartica #3 Poveznica");
|
||||
define('LANG_custom_tab_sub_name4', "Podkartica #4 Naziv");
|
||||
define('LANG_custom_tab_sub_link4', "Podkartica #4 Poveznica");
|
||||
define('LANG_custom_tab_target_blank', "Opcija Otvaranja Prilagođene Kartice");
|
||||
define('LANG_custom_tab_target_blank_info', "Opcija otvaranja prilagođene stranice. <b style='font-size:10px; font-weight:normal;'>(Ista_Stranica = otvara vezu na istoj stranici. Nova_Stranica = otvara vezu na novoj kartici.)</b>");
|
||||
define('LANG_bg_wrapper', "Pozadinska slika Wrappera");
|
||||
define('LANG_bg_wrapper_info', "Pozadinska slika wrappera. <b style='font-size:10px; font-weight:normal;'>(Dostupno samo za neke teme.)</b>");
|
||||
define('LANG_show_server_id_game_monitor', "Prikaži ID servera na stranici Monitor igara");
|
||||
define('LANG_show_server_id_game_monitor_info', "Pokažite stupac ID servera na Monitor Igara za podudaranje datoteka stvorenih od strane Agenta na aktualnom serveru.");
|
||||
define('LANG_default_game_server_home_path_prefix', "Zadani prefiks Home direktorija za server");
|
||||
define('LANG_default_game_server_home_path_prefix_info', "Unesite prefiks putanja za mjesto na kojem želite da Home direktoriji servera budu izrađeni prema zadanim postavkama. Možete upotrebljavati \"{USERNAME}\" na putu koji će biti zamijenjen korisničkim imenom OGP-a kojem se dodjeljuje server. Možete koristiti \"{GAMEKEY}\" na putu koji će biti zamijenjen imenom sa malim slovima. Možete upotrebljavati \"{SKIPID}\" bilo gdje na putu da preskočite dodavanje Home ID-a na putnju. Primjer: /ogp/games/{USERNAME}/{GAMEKEY}{SKIPID} će postati /ogp/games/username/arkse/. Primjer 2: /ogp/games će postati /ogp/games/1 gdje je 1 ID servera.");
|
||||
define('LANG_use_authorized_hosts', "Ograničite API na Definirane ovlaštene hostove");
|
||||
define('LANG_use_authorized_hosts_info', "Omogućite ovu postavku da biste dozvolili samo API pozive s unaprijed definiranih i odobrenih IP adresa. Odobrene adrese možete postaviti na ovoj stranici nakon što je postavka omogućena. Ako je ova postavka onemogućena, korisnik koji koristi važeći ključ imat će pristup API-ju s bilo koje IP adrese. Korisnici koji koriste valjani ključ moći će koristiti API za upravljanje bilo kojim poslužiteljem za igre koje imaju dozvole za administriranje.");
|
||||
define('LANG_setup_api_authorized_hosts', "Postavke API za autorizaciju poslužitelja");
|
||||
define('LANG_autohorized_hosts', "Ovlašteni poslužitelji");
|
||||
define('LANG_add', "Dodati");
|
||||
define('LANG_remove', "Ukloniti");
|
||||
define('LANG_default_trusted_hosts', "Zadani Pouzdani Poslužitelji");
|
||||
define('LANG_trusted_host_or_proxy_addresses_or_cidr', "Pouzdani Poslužitelji ili Proxy (IPv4/IPv6 Adrese ili CIDR)");
|
||||
define('LANG_trusted_forwarded_ip_addresses_or_cidr', "Pouzdani prosljeđeni IP-ovi (IPv4/IPv6 Addresses or CIDR)");
|
||||
define('LANG_reset_game_server_order', "Resetiranje redoslijeda poslužitelja igara");
|
||||
define('LANG_reset_game_server_order_info', "Poništava naredbu redoslijeda igara na zadane postavke ID poslužitelja");
|
||||
|
||||
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -22,27 +22,27 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_system_uptime', "Učinkovitost Sustava");
|
||||
define('OGP_LANG_system_up_time', "Vrijeme Rada");
|
||||
define('OGP_LANG_system_up_since', "Od");
|
||||
define('OGP_LANG_day_word', "Dan");
|
||||
define('OGP_LANG_days_word', "Dana");
|
||||
define('OGP_LANG_hour_word', "Sat");
|
||||
define('OGP_LANG_hours_word', "Sati");
|
||||
define('OGP_LANG_minute_word', "Minutu");
|
||||
define('OGP_LANG_minutes_word', "Minuta");
|
||||
define('OGP_LANG_second_word', "Sekunda");
|
||||
define('OGP_LANG_seconds_word', "Sekundi");
|
||||
define('OGP_LANG_cpu_usage', "Korištenje CPU-a");
|
||||
define('OGP_LANG_cpu_load', "Opterećenje");
|
||||
define('OGP_LANG_ram_usage', "Upotreba RAM-a");
|
||||
define('OGP_LANG_ram_used', "Upotrijebljena memorija");
|
||||
define('OGP_LANG_ram_of', "od");
|
||||
define('OGP_LANG_storage_space', "Prostor za pohranu");
|
||||
define('OGP_LANG_storage_total', "Prostor na disku");
|
||||
define('OGP_LANG_storage_used', "Korišteno");
|
||||
define('OGP_LANG_storage_free', "Slobodan prostor");
|
||||
define('OGP_LANG_process_monitor', "Proces Monitora");
|
||||
define('OGP_LANG_status_extension_required', "Potrebni dodatak");
|
||||
define('OGP_LANG_gd_info', "<a href=\"http://php.net/manual/en/image.installation.php\">GD</a> dodatak za PHP potreban je za generiranje ovih BAR slika!");
|
||||
define('LANG_system_uptime', "Učinkovitost Sustava");
|
||||
define('LANG_system_up_time', "Vrijeme Rada");
|
||||
define('LANG_system_up_since', "Od");
|
||||
define('LANG_day_word', "Dan");
|
||||
define('LANG_days_word', "Dana");
|
||||
define('LANG_hour_word', "Sat");
|
||||
define('LANG_hours_word', "Sati");
|
||||
define('LANG_minute_word', "Minutu");
|
||||
define('LANG_minutes_word', "Minuta");
|
||||
define('LANG_second_word', "Sekunda");
|
||||
define('LANG_seconds_word', "Sekundi");
|
||||
define('LANG_cpu_usage', "Korištenje CPU-a");
|
||||
define('LANG_cpu_load', "Opterećenje");
|
||||
define('LANG_ram_usage', "Upotreba RAM-a");
|
||||
define('LANG_ram_used', "Upotrijebljena memorija");
|
||||
define('LANG_ram_of', "od");
|
||||
define('LANG_storage_space', "Prostor za pohranu");
|
||||
define('LANG_storage_total', "Prostor na disku");
|
||||
define('LANG_storage_used', "Korišteno");
|
||||
define('LANG_storage_free', "Slobodan prostor");
|
||||
define('LANG_process_monitor', "Proces Monitora");
|
||||
define('LANG_status_extension_required', "Potrebni dodatak");
|
||||
define('LANG_gd_info', "<a href=\"http://php.net/manual/en/image.installation.php\">GD</a> dodatak za PHP potreban je za generiranje ovih BAR slika!");
|
||||
?>
|
||||
|
|
@ -21,54 +21,54 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*
|
||||
*/
|
||||
define('OGP_LANG_game', "Igra");
|
||||
define('OGP_LANG_select_mod', "Izaberite Mod");
|
||||
define('OGP_LANG_manual_workshop_mod_id', "Workshop mod ID Ručno");
|
||||
define('OGP_LANG_manual_workshop_mod_id_info', "Naći ćete mod id na URL modu, na primjer 1379153273 za ARK: Survival Evolved's Solar Panel. Možete instalirati više modova koji se razdvajaju od strane coma.");
|
||||
define('OGP_LANG_update_in_progress', "Ažuriranje u tijeku");
|
||||
define('OGP_LANG_refresh_steam_workshop_status', "Osjvežiti Steam Workshop status");
|
||||
define('OGP_LANG_update_completed', "Ažuriranje je dovršeno");
|
||||
define('OGP_LANG_mod_does_not_belong_to_workshop', "Mod %s ne pripada Workshopu");
|
||||
define('OGP_LANG_mod_installation_started', "Instalacija moda je započela");
|
||||
define('OGP_LANG_failed_to_start_steam_workshop', "Pokretanje Steam Workshop nije uspjelo");
|
||||
define('OGP_LANG_connection_error', "Greška u povezivanju");
|
||||
define('OGP_LANG_install_mod', "Instalirajte modove");
|
||||
define('OGP_LANG_show_mod_info', "Prikaži informacije o modovima");
|
||||
define('OGP_LANG_select_game', "Odaberite Igru");
|
||||
define('OGP_LANG_save_config', "Spremi konfiguraciju");
|
||||
define('OGP_LANG_mod_key_not_found_from_xml', "Mod ključ %s nije pronađen iz xml-a.");
|
||||
define('OGP_LANG_workshop_id', "Workshop ID");
|
||||
define('OGP_LANG_workshop_id_info', "ID Workshopa naći ćete u URL-u Workshopa , na primjer 440900 za Conan Exiles");
|
||||
define('OGP_LANG_mods_path', "Putanje modova");
|
||||
define('OGP_LANG_mods_path_info', "Realtivno putanje za mapu modova");
|
||||
define('OGP_LANG_regex', "Regex");
|
||||
define('OGP_LANG_regex_info', "Regularni izraz koji odgovara modima u konfiguracijskoj datoteci");
|
||||
define('OGP_LANG_mods_backreference_index', "Indeks povratnih informacija modova");
|
||||
define('OGP_LANG_mods_backreference_index_info', "Položaj povratnih informacija od dijela regexa koji odgovara popisu moda, počevši od 0.");
|
||||
define('OGP_LANG_variable', "Varijabla");
|
||||
define('OGP_LANG_variable_info', "Varijabla koja sadrži popis modova, ako ih ima.");
|
||||
define('OGP_LANG_place_after', "Mjesto nakon");
|
||||
define('OGP_LANG_place_after_info', "Dio konfiguracijske datoteke gdje se pojavljuje popis moda, ako ih ima. Bit će dodano konfiguracijskoj datoteci ako još ne postoji. Ako navedena varijabla nije prisutna, tada će biti stavljen u retku nakon ovog odjeljka.");
|
||||
define('OGP_LANG_mod_string', "Mod String");
|
||||
define('OGP_LANG_mod_string_info', "Niz koji predstavlja mod u modu popisa. Važeće zamjene:% workshop_mod_id%, %first_file% (prva datoteka je prva datoteka pronađena u mod mapi preuzeta od strane SteamCMD)");
|
||||
define('OGP_LANG_string_separator', "String razdvajanje");
|
||||
define('OGP_LANG_string_separator_info', "Karakter koji razdvaja modove u konfiguracijskoj datoteci, npr. Novi znak linije (\\ n) ili coma (,).");
|
||||
define('OGP_LANG_filepath', "Putanje datoteke");
|
||||
define('OGP_LANG_filepath_info', "Put konfiguracijske datoteke u kojoj moraju biti navedeni modovi.");
|
||||
define('OGP_LANG_post_install', "Postinstall Skripta");
|
||||
define('OGP_LANG_post_install_info', "Potrebne naredbe u bash za pomicanje moda u mapu mods. Važeća zamjena:% mods_full_path% (puni put do mape Wokshop mods),% workshop_mod_id%, %first_file% (prva datoteka prva je datoteka pronađena u mod preuzeta od strane SteamCMD)");
|
||||
define('OGP_LANG_install_mods', "Instalirati modove");
|
||||
define('OGP_LANG_uninstall_mods', "Deinstalirati modove");
|
||||
define('OGP_LANG_failed_uninstalling_mod', "Neuspješno deinstaliranje moda %s");
|
||||
define('OGP_LANG_uninstall', "Deinstalirati Skriptu");
|
||||
define('OGP_LANG_uninstall_info', "Ovo je skripta koja se zove kada je mod deinstaliran, Važeće zamjene:% mods_full_path% (puni put do mape wokshop mods),% mod_string% (mod string je naziv naveden u konfiguracijskoj datoteci za ovaj mod).");
|
||||
define('OGP_LANG_remove_mods', "Ukloniti Modove");
|
||||
define('OGP_LANG_do_not_close_this_page_while_mods_are_being_installed', "Nemojte zatvoriti ovu stranicu dok instalirate modove.");
|
||||
define('OGP_LANG_no_game_server_selected', "Nije odabrana nijedna igra");
|
||||
define('OGP_LANG_there_are_no_mods_installed_on_this_game_server', "Na ovoj igri nema instaliranih modova");
|
||||
define('OGP_LANG_workshop_configuration_not_found', "Workshop konfiguracija nije pronađena");
|
||||
define('OGP_LANG_download_method', "Preuzimanje Metode");
|
||||
define('OGP_LANG_anonymous_login', "Anonimna Prijava");
|
||||
define('OGP_LANG_select_at_least_one_mod_or_enter_mod_id', "Odaberite barem jedan mod ili unesite mod ID.");
|
||||
define('OGP_LANG_no_game_servers_assigned', "Nemate nijedan server dodijeljen vašem računu.");
|
||||
define('LANG_game', "Igra");
|
||||
define('LANG_select_mod', "Izaberite Mod");
|
||||
define('LANG_manual_workshop_mod_id', "Workshop mod ID Ručno");
|
||||
define('LANG_manual_workshop_mod_id_info', "Naći ćete mod id na URL modu, na primjer 1379153273 za ARK: Survival Evolved's Solar Panel. Možete instalirati više modova koji se razdvajaju od strane coma.");
|
||||
define('LANG_update_in_progress', "Ažuriranje u tijeku");
|
||||
define('LANG_refresh_steam_workshop_status', "Osjvežiti Steam Workshop status");
|
||||
define('LANG_update_completed', "Ažuriranje je dovršeno");
|
||||
define('LANG_mod_does_not_belong_to_workshop', "Mod %s ne pripada Workshopu");
|
||||
define('LANG_mod_installation_started', "Instalacija moda je započela");
|
||||
define('LANG_failed_to_start_steam_workshop', "Pokretanje Steam Workshop nije uspjelo");
|
||||
define('LANG_connection_error', "Greška u povezivanju");
|
||||
define('LANG_install_mod', "Instalirajte modove");
|
||||
define('LANG_show_mod_info', "Prikaži informacije o modovima");
|
||||
define('LANG_select_game', "Odaberite Igru");
|
||||
define('LANG_save_config', "Spremi konfiguraciju");
|
||||
define('LANG_mod_key_not_found_from_xml', "Mod ključ %s nije pronađen iz xml-a.");
|
||||
define('LANG_workshop_id', "Workshop ID");
|
||||
define('LANG_workshop_id_info', "ID Workshopa naći ćete u URL-u Workshopa , na primjer 440900 za Conan Exiles");
|
||||
define('LANG_mods_path', "Putanje modova");
|
||||
define('LANG_mods_path_info', "Realtivno putanje za mapu modova");
|
||||
define('LANG_regex', "Regex");
|
||||
define('LANG_regex_info', "Regularni izraz koji odgovara modima u konfiguracijskoj datoteci");
|
||||
define('LANG_mods_backreference_index', "Indeks povratnih informacija modova");
|
||||
define('LANG_mods_backreference_index_info', "Položaj povratnih informacija od dijela regexa koji odgovara popisu moda, počevši od 0.");
|
||||
define('LANG_variable', "Varijabla");
|
||||
define('LANG_variable_info', "Varijabla koja sadrži popis modova, ako ih ima.");
|
||||
define('LANG_place_after', "Mjesto nakon");
|
||||
define('LANG_place_after_info', "Dio konfiguracijske datoteke gdje se pojavljuje popis moda, ako ih ima. Bit će dodano konfiguracijskoj datoteci ako još ne postoji. Ako navedena varijabla nije prisutna, tada će biti stavljen u retku nakon ovog odjeljka.");
|
||||
define('LANG_mod_string', "Mod String");
|
||||
define('LANG_mod_string_info', "Niz koji predstavlja mod u modu popisa. Važeće zamjene:% workshop_mod_id%, %first_file% (prva datoteka je prva datoteka pronađena u mod mapi preuzeta od strane SteamCMD)");
|
||||
define('LANG_string_separator', "String razdvajanje");
|
||||
define('LANG_string_separator_info', "Karakter koji razdvaja modove u konfiguracijskoj datoteci, npr. Novi znak linije (\\ n) ili coma (,).");
|
||||
define('LANG_filepath', "Putanje datoteke");
|
||||
define('LANG_filepath_info', "Put konfiguracijske datoteke u kojoj moraju biti navedeni modovi.");
|
||||
define('LANG_post_install', "Postinstall Skripta");
|
||||
define('LANG_post_install_info', "Potrebne naredbe u bash za pomicanje moda u mapu mods. Važeća zamjena:% mods_full_path% (puni put do mape Wokshop mods),% workshop_mod_id%, %first_file% (prva datoteka prva je datoteka pronađena u mod preuzeta od strane SteamCMD)");
|
||||
define('LANG_install_mods', "Instalirati modove");
|
||||
define('LANG_uninstall_mods', "Deinstalirati modove");
|
||||
define('LANG_failed_uninstalling_mod', "Neuspješno deinstaliranje moda %s");
|
||||
define('LANG_uninstall', "Deinstalirati Skriptu");
|
||||
define('LANG_uninstall_info', "Ovo je skripta koja se zove kada je mod deinstaliran, Važeće zamjene:% mods_full_path% (puni put do mape wokshop mods),% mod_string% (mod string je naziv naveden u konfiguracijskoj datoteci za ovaj mod).");
|
||||
define('LANG_remove_mods', "Ukloniti Modove");
|
||||
define('LANG_do_not_close_this_page_while_mods_are_being_installed', "Nemojte zatvoriti ovu stranicu dok instalirate modove.");
|
||||
define('LANG_no_game_server_selected', "Nije odabrana nijedna igra");
|
||||
define('LANG_there_are_no_mods_installed_on_this_game_server', "Na ovoj igri nema instaliranih modova");
|
||||
define('LANG_workshop_configuration_not_found', "Workshop konfiguracija nije pronađena");
|
||||
define('LANG_download_method', "Preuzimanje Metode");
|
||||
define('LANG_anonymous_login', "Anonimna Prijava");
|
||||
define('LANG_select_at_least_one_mod_or_enter_mod_id', "Odaberite barem jedan mod ili unesite mod ID.");
|
||||
define('LANG_no_game_servers_assigned', "Nemate nijedan server dodijeljen vašem računu.");
|
||||
?>
|
||||
|
|
@ -22,43 +22,43 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_login_name', "Korisničko Ime");
|
||||
define('OGP_LANG_first_name', "Ime");
|
||||
define('OGP_LANG_last_name', "Prezime");
|
||||
define('OGP_LANG_phone_number', "Broj Telefona");
|
||||
define('OGP_LANG_email_address', "E-pošta");
|
||||
define('OGP_LANG_register_a_new_user', "Registrirati novog korisnika");
|
||||
define('OGP_LANG_password_mismatch', "Neodgovarajuće lozinke");
|
||||
define('OGP_LANG_confirm_password', "Potvrditi lozinku");
|
||||
define('OGP_LANG_subuser_password', "Lozinka Pod-Korisnika");
|
||||
define('OGP_LANG_subuser_man', "Upravljanje Pod-Korisnikom");
|
||||
define('OGP_LANG_successfull', "Uspješno");
|
||||
define('OGP_LANG_click_here', "Kliknite Ovdje");
|
||||
define('OGP_LANG_to_login', "za prijavu");
|
||||
define('OGP_LANG_registered_on', "Registriran");
|
||||
define('OGP_LANG_register_message', "Poštovani,<br><br> Vaš Open Game Panel račun je uspješno kreiran i za prijavu unesite Vaše podatke:<br><br>Korisničko Ime: %s<br>Lozinka: %s<br><br>Ne zaboravite često mijenjati lozinku nakon vaše prve prijave.<br><br>Molimo ne odgovarajte na ovu e-poštu!<br><br>______________________________<br>Black Market Servers");
|
||||
define('OGP_LANG_err_password', "Lozinka ne može biti prazna");
|
||||
define('OGP_LANG_err_confirm_password', "Polje za provjeru lozinke ne može biti prazno");
|
||||
define('OGP_LANG_err_password_mismatch', "Lozinke se ne podudaraju");
|
||||
define('OGP_LANG_err_captcha', "Captcha se ne podudara.");
|
||||
define('OGP_LANG_err_login_name', "Korisiničko Ime je prazno ili je zauzeto.");
|
||||
define('OGP_LANG_err_first_name', "Unesite vaše ime");
|
||||
define('OGP_LANG_err_last_name', "Prezime nije unešeno");
|
||||
define('OGP_LANG_err_phone_number', "Telefonski broj je prazan.");
|
||||
define('OGP_LANG_err_email_address', "Prazna ili netočna adresa e-pošte.");
|
||||
define('OGP_LANG_err_users_parent', "Računi pod-korisnika ne mogu stvarati druge korisnike.");
|
||||
define('OGP_LANG_err_parent_user', "Matični ID korisnika mora uputiti na valjani postojeći korisnik.");
|
||||
define('OGP_LANG_err_email_address_already_in_use_by', "Adresa e - pošte je zauzeta koju već upotrebljava korisnik <b>%s</b>.");
|
||||
define('OGP_LANG_user_registration', "Registracija korisnika");
|
||||
define('OGP_LANG_your_account_details_has_been_sent_by_email_to', "Podaci o vašem računu poslani su e-poštom na <b>%s</b>.");
|
||||
define('OGP_LANG_subject', "Bok %s, dobo došao na %s!");
|
||||
define('OGP_LANG_sub_user', "Pod-Korisnici");
|
||||
define('OGP_LANG_create_sub_user', "Dodati Pod-Korisnika");
|
||||
define('OGP_LANG_listdel_sub_user', "Popis, Izmjena podataka o Pod-korisnicima ili Izbriši Pod-Korisnike");
|
||||
define('OGP_LANG_delete_sub_user', "Urediti/Izbrisati Pod-Korisnika");
|
||||
define('OGP_LANG_del_subuser_conf', "Jeste li sigurni da želite izbrisati ovaj račun:");
|
||||
define('OGP_LANG_no_subusers', "Na vašem računu još niste stvorili pod-korisnike!");
|
||||
define('OGP_LANG_subuser_deleted', "Pod-Korisnik %s je uspješno izbrisan iz baze podataka!");
|
||||
define('OGP_LANG_subuser_added', "Sub-User %s je uspješno stvoren i dodan u bazu podataka!");
|
||||
define('OGP_LANG_your_subusers', "Pod-Korisnički Računi u Vlasništvu");
|
||||
define('LANG_login_name', "Korisničko Ime");
|
||||
define('LANG_first_name', "Ime");
|
||||
define('LANG_last_name', "Prezime");
|
||||
define('LANG_phone_number', "Broj Telefona");
|
||||
define('LANG_email_address', "E-pošta");
|
||||
define('LANG_register_a_new_user', "Registrirati novog korisnika");
|
||||
define('LANG_password_mismatch', "Neodgovarajuće lozinke");
|
||||
define('LANG_confirm_password', "Potvrditi lozinku");
|
||||
define('LANG_subuser_password', "Lozinka Pod-Korisnika");
|
||||
define('LANG_subuser_man', "Upravljanje Pod-Korisnikom");
|
||||
define('LANG_successfull', "Uspješno");
|
||||
define('LANG_click_here', "Kliknite Ovdje");
|
||||
define('LANG_to_login', "za prijavu");
|
||||
define('LANG_registered_on', "Registriran");
|
||||
define('LANG_register_message', "Poštovani,<br><br> Vaš Open Game Panel račun je uspješno kreiran i za prijavu unesite Vaše podatke:<br><br>Korisničko Ime: %s<br>Lozinka: %s<br><br>Ne zaboravite često mijenjati lozinku nakon vaše prve prijave.<br><br>Molimo ne odgovarajte na ovu e-poštu!<br><br>______________________________<br>Black Market Servers");
|
||||
define('LANG_err_password', "Lozinka ne može biti prazna");
|
||||
define('LANG_err_confirm_password', "Polje za provjeru lozinke ne može biti prazno");
|
||||
define('LANG_err_password_mismatch', "Lozinke se ne podudaraju");
|
||||
define('LANG_err_captcha', "Captcha se ne podudara.");
|
||||
define('LANG_err_login_name', "Korisiničko Ime je prazno ili je zauzeto.");
|
||||
define('LANG_err_first_name', "Unesite vaše ime");
|
||||
define('LANG_err_last_name', "Prezime nije unešeno");
|
||||
define('LANG_err_phone_number', "Telefonski broj je prazan.");
|
||||
define('LANG_err_email_address', "Prazna ili netočna adresa e-pošte.");
|
||||
define('LANG_err_users_parent', "Računi pod-korisnika ne mogu stvarati druge korisnike.");
|
||||
define('LANG_err_parent_user', "Matični ID korisnika mora uputiti na valjani postojeći korisnik.");
|
||||
define('LANG_err_email_address_already_in_use_by', "Adresa e - pošte je zauzeta koju već upotrebljava korisnik <b>%s</b>.");
|
||||
define('LANG_user_registration', "Registracija korisnika");
|
||||
define('LANG_your_account_details_has_been_sent_by_email_to', "Podaci o vašem računu poslani su e-poštom na <b>%s</b>.");
|
||||
define('LANG_subject', "Bok %s, dobo došao na %s!");
|
||||
define('LANG_sub_user', "Pod-Korisnici");
|
||||
define('LANG_create_sub_user', "Dodati Pod-Korisnika");
|
||||
define('LANG_listdel_sub_user', "Popis, Izmjena podataka o Pod-korisnicima ili Izbriši Pod-Korisnike");
|
||||
define('LANG_delete_sub_user', "Urediti/Izbrisati Pod-Korisnika");
|
||||
define('LANG_del_subuser_conf', "Jeste li sigurni da želite izbrisati ovaj račun:");
|
||||
define('LANG_no_subusers', "Na vašem računu još niste stvorili pod-korisnike!");
|
||||
define('LANG_subuser_deleted', "Pod-Korisnik %s je uspješno izbrisan iz baze podataka!");
|
||||
define('LANG_subuser_added', "Sub-User %s je uspješno stvoren i dodan u bazu podataka!");
|
||||
define('LANG_your_subusers', "Pod-Korisnički Računi u Vlasništvu");
|
||||
?>
|
||||
|
|
@ -22,17 +22,17 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_support_email_content', "Primili ste zahtjev za podršku od %s (%s).<br><br>Server: %s.<br><br>%s ");
|
||||
define('OGP_LANG_message_has_been_sent', "Hvala što ste nas kontaktirali! Vaša je poruka primljena i mi ćemo odgovoriti putem e-pošte.");
|
||||
define('OGP_LANG_please_describe_your_issue_below', "Upotrijebite obrazac u nastavku kako biste zatražili potporu vašem serveru.<br>Odgovorit ćemo što je prije moguće.");
|
||||
define('OGP_LANG_select_server', "Odaberite server");
|
||||
define('OGP_LANG_email_address', "E-pošta");
|
||||
define('OGP_LANG_subject', "Subjekt");
|
||||
define('OGP_LANG_message', "Poruka");
|
||||
define('OGP_LANG_email_must_be_filled_out', "Adresa e-pošte mora biti popunjena.");
|
||||
define('OGP_LANG_subject_must_be_filled_out', "Mora se ispuniti subjekt.");
|
||||
define('OGP_LANG_message_must_be_filled_out', "Poruka mora biti popunjena.");
|
||||
define('OGP_LANG_send', "Poslati");
|
||||
define('OGP_LANG_error', "Greška");
|
||||
define('OGP_LANG_info', "Detalji");
|
||||
define('LANG_support_email_content', "Primili ste zahtjev za podršku od %s (%s).<br><br>Server: %s.<br><br>%s ");
|
||||
define('LANG_message_has_been_sent', "Hvala što ste nas kontaktirali! Vaša je poruka primljena i mi ćemo odgovoriti putem e-pošte.");
|
||||
define('LANG_please_describe_your_issue_below', "Upotrijebite obrazac u nastavku kako biste zatražili potporu vašem serveru.<br>Odgovorit ćemo što je prije moguće.");
|
||||
define('LANG_select_server', "Odaberite server");
|
||||
define('LANG_email_address', "E-pošta");
|
||||
define('LANG_subject', "Subjekt");
|
||||
define('LANG_message', "Poruka");
|
||||
define('LANG_email_must_be_filled_out', "Adresa e-pošte mora biti popunjena.");
|
||||
define('LANG_subject_must_be_filled_out', "Mora se ispuniti subjekt.");
|
||||
define('LANG_message_must_be_filled_out', "Poruka mora biti popunjena.");
|
||||
define('LANG_send', "Poslati");
|
||||
define('LANG_error', "Greška");
|
||||
define('LANG_info', "Detalji");
|
||||
?>
|
||||
|
|
@ -22,94 +22,94 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_support_tickets', "Korisnička Podrška");
|
||||
define('OGP_LANG_ticket_subject', "Predmet");
|
||||
define('OGP_LANG_ticket_status', "Status");
|
||||
define('OGP_LANG_ticket_updated', "Zadnje Ažurirano");
|
||||
define('OGP_LANG_ticket_options', "Opcije");
|
||||
define('OGP_LANG_viewing_ticket', "Pregledavanje Upita");
|
||||
define('OGP_LANG_ticket_not_found', "Parametri upita ne odgovaraju postojećem upitu.");
|
||||
define('OGP_LANG_ticket_cant_read', "Nedovoljna dozvola za pregledavanje upita.");
|
||||
define('OGP_LANG_cant_view_ticket', "Nije moguće dohvatiti podatke o upitu.");
|
||||
define('OGP_LANG_ticket_id', "ID Upita");
|
||||
define('OGP_LANG_service_id', "ID Usluge");
|
||||
define('OGP_LANG_ticket_submitted', "Upit je poslan");
|
||||
define('OGP_LANG_submitter_info', "Podaci o podnositelju");
|
||||
define('OGP_LANG_name', "Ime");
|
||||
define('OGP_LANG_ip', "IP Adresa");
|
||||
define('OGP_LANG_role', "Korisnička uloga");
|
||||
define('OGP_LANG_ticket_submit_response', "Pošaljite odgovor");
|
||||
define('OGP_LANG_ticket_close', "Zatvoriti");
|
||||
define('OGP_LANG_no_ticket_replies', "Nema odgovoreni upita");
|
||||
define('OGP_LANG_no_tickets_submitted', "Nema poslani upita");
|
||||
define('OGP_LANG_submit_ticket', "Pošalji Upit");
|
||||
define('OGP_LANG_ticket_service', "Usluga");
|
||||
define('OGP_LANG_ticket_message', "Poruka");
|
||||
define('OGP_LANG_ticket_errors_occured', "Sljedeće su se pogreške pojavile prilikom slanja vašeg upita");
|
||||
define('OGP_LANG_no_ticket_subject', "Upit Bet Predmeta");
|
||||
define('OGP_LANG_invalid_ticket_subject_length', "Nevažeća dužina predmeta (4 do 64 znaka)");
|
||||
define('OGP_LANG_invalid_home_selected', "Nevažeći odabrani Home");
|
||||
define('OGP_LANG_no_ticket_message', "Nema predbilježbe za upit");
|
||||
define('OGP_LANG_invalid_ticket_message_length', "Nevažeća duljina poruke (minimalno 4 znaka)");
|
||||
define('OGP_LANG_ticket_no_service', "Nijedna usluga nije odabrana za ovaj upit.");
|
||||
define('OGP_LANG_failed_to_open', "Otvaranje upita nije uspjelo.");
|
||||
define('OGP_LANG_failed_to_reply', "Izrada odgovora na upit nije uspjela.");
|
||||
define('OGP_LANG_no_ticket_reply', "Ne postoji odgovor na upit");
|
||||
define('OGP_LANG_invalid_ticket_reply_length', "Nevažeća duljina odgovora za upit (minimalno 4 znaka)");
|
||||
define('OGP_LANG_ticket_closed', "Upit Zaključan");
|
||||
define('OGP_LANG_ticket_open', "Upit Otvoren");
|
||||
define('OGP_LANG_ticket_admin_response', "Odgovor Tehničke Podrške");
|
||||
define('OGP_LANG_ticket_customer_response', "Odgovor Korisnika");
|
||||
define('OGP_LANG_ticket_invalid_page_num', "Pokušali ste pregledati broj stranice bez upita!");
|
||||
define('OGP_LANG_ticket_is_closed', "Ovaj upit je zatvoren. Možete odgovoriti na ovaj upit kako biste ponovno otvorili.");
|
||||
define('OGP_LANG_reply', "Odgovoriti");
|
||||
define('OGP_LANG_invalid_rating', "Primljena ocjena nije valjana.");
|
||||
define('OGP_LANG_successfully_rated_response', "Uspješno ocijenjen odgovor.");
|
||||
define('OGP_LANG_failed_rating_response', "Nije uspjelo ocijeniti odgovor.");
|
||||
define('OGP_LANG_attachment_not_all_parameters_sent', "Nisu poslani svi parametri za preuzimanje datoteke.");
|
||||
define('OGP_LANG_requested_attachment_missing', "Zatraženi privitak ne postoji.");
|
||||
define('OGP_LANG_requested_attachment_missing_db', "Zatraženi privitak ne postoji u bazi podataka.");
|
||||
define('OGP_LANG_ratings_disabled', "Ociienjivanje odgovora nije omogućeno.");
|
||||
define('OGP_LANG_attachments', "Privitci");
|
||||
define('OGP_LANG_add_file_attachment', "Dodati Više");
|
||||
define('OGP_LANG_attachment_size_info', "Svaka odabrana datoteka mora biti maksimalno do %s");
|
||||
define('OGP_LANG_attachment_file_size_info', "Najviše %s datoteka(e) mogu biti učitane, %ssvaka.");
|
||||
define('OGP_LANG_attachment_allowed_extensions_info', "Dopušteno proširenje datoteke: %s");
|
||||
define('OGP_LANG_ticket_fix_before_submitting', "Ispravite sljedeće pogreške prije slanja upita");
|
||||
define('OGP_LANG_ticket_fix_before_replying', "Ispravite sljedeće pogreške prije nego što odgovorite na upit");
|
||||
define('OGP_LANG_ticket_problem_with_attachments', "Došlo je do problema s datotekom(ama) koje ste priložili");
|
||||
define('OGP_LANG_ticket_attachment_invalid_extension', "% 1 ne sadrži dopušteno proširenje.");
|
||||
define('OGP_LANG_ticket_attachment_invalid_size', "% 1 je veći od dopuštene veličine datoteke. % 2 maksimalno!");
|
||||
define('OGP_LANG_ticket_max_file_elements', "Može postojati samo najviše 1% ulaznih datoteka.");
|
||||
define('OGP_LANG_ticket_attachment_multiple_files', "Jedan ili više ulaznih datoteka ima više datoteka odabranih.");
|
||||
define('OGP_LANG_attachment_err_ini_size', "%s (%s) premašuje postavku \"upload_max_filesize\".");
|
||||
define('OGP_LANG_attachment_err_partial', "%s je djelomično prenesen.");
|
||||
define('OGP_LANG_attachment_err_no_tmp', "Nema tmp mape za spremanje %s");
|
||||
define('OGP_LANG_attachment_err_cant_write', "Nije moguće zapisati %s na disku.");
|
||||
define('OGP_LANG_attachment_err_extension', "Proširenje je zaustavilo prijenos %s. Pregledajte svoje zapisnike.");
|
||||
define('OGP_LANG_attachment_too_large', "%s (%s) je veća od maksimalne dopuštene veličine od %s!");
|
||||
define('OGP_LANG_attachment_forbidden_type', "Vrsta datoteke %s ne može se učitati.");
|
||||
define('OGP_LANG_attachment_directory_not_writable', "Nije moguće spremiti priložene datoteke. Navedeni direktorij za spremanje nije moguće pisati.");
|
||||
define('OGP_LANG_attachment_invalid_file_count', "Količina datoteka poslana poslužitelju bila je nevažeća. Može se prenijeti najviše %s");
|
||||
define('OGP_LANG_ratings_enabled', "Ocijene");
|
||||
define('OGP_LANG_ratings_enabled_info', "Postavite dali bi trebalo biti dopušteno ocijeniti odgovore.");
|
||||
define('OGP_LANG_attachments_enabled', "Privitci");
|
||||
define('OGP_LANG_attachments_enabled_info', "Postavite dali sustav privitka treba biti omogućen.");
|
||||
define('OGP_LANG_attachment_max_size', "Maksimalna Veličina Datoteke");
|
||||
define('OGP_LANG_attachment_max_size_info', "Postavite maksimalnu veličinu za privitke.");
|
||||
define('OGP_LANG_attachment_limit', "Ograničenje privitka");
|
||||
define('OGP_LANG_attachment_limit_info', "Odrediti koliko datoteka može biti dodano odjednom. 0 bez ograničenja.");
|
||||
define('OGP_LANG_attachment_save_dir', "Lokacija Prijenosa Privitka");
|
||||
define('OGP_LANG_attachment_save_dir_info', "Postavlja mjesta na koje treba prenijeti privitke. U svakom slučaju, izvan mape public_html ili izravnog pristupa blokiran je.");
|
||||
define('OGP_LANG_attachment_extensions', "Proširenja privitaka");
|
||||
define('OGP_LANG_attachment_extensions_info', "Postavlja dopuštena proširenja. Svako proširenje treba odvojiti zarezom.");
|
||||
define('OGP_LANG_show_php_ini', "Prikaži Procijenjene INI Postavke");
|
||||
define('OGP_LANG_settings_errors_occured', "Sljedeće su se pogreške pojavile prilikom pokušaja ažuriranja postavki - nije sve kompletno ažurirano!");
|
||||
define('OGP_LANG_invalid_max_size', "Nevažeća vrijednost za postavku Maksimalna veličina.");
|
||||
define('OGP_LANG_invalid_unit', "Nevažeća vrsta jedinice za postavku Maksimalna veličina. Očekujući KB, MB, GB, TB ili PB.");
|
||||
define('OGP_LANG_invalid_save_dir', "Navedeni direktorij za spremanje ne postoji i ne može se izraditi.");
|
||||
define('OGP_LANG_invalid_save_dir_not_writable', "Navedeni direktorij za spremanje postoji ali nije moguće pisati.");
|
||||
define('OGP_LANG_invalid_extensions', "Nije navedeno proširenje privitaka.");
|
||||
define('OGP_LANG_update_settings', "Ažurirati postavke");
|
||||
define('OGP_LANG_notifications_enabled', "Obavijesti");
|
||||
define('OGP_LANG_notifications_enabled_info', "Dopustite korisniku/administratoru da vidi je li dobio upit koji čeka odgovor.");
|
||||
define('LANG_support_tickets', "Korisnička Podrška");
|
||||
define('LANG_ticket_subject', "Predmet");
|
||||
define('LANG_ticket_status', "Status");
|
||||
define('LANG_ticket_updated', "Zadnje Ažurirano");
|
||||
define('LANG_ticket_options', "Opcije");
|
||||
define('LANG_viewing_ticket', "Pregledavanje Upita");
|
||||
define('LANG_ticket_not_found', "Parametri upita ne odgovaraju postojećem upitu.");
|
||||
define('LANG_ticket_cant_read', "Nedovoljna dozvola za pregledavanje upita.");
|
||||
define('LANG_cant_view_ticket', "Nije moguće dohvatiti podatke o upitu.");
|
||||
define('LANG_ticket_id', "ID Upita");
|
||||
define('LANG_service_id', "ID Usluge");
|
||||
define('LANG_ticket_submitted', "Upit je poslan");
|
||||
define('LANG_submitter_info', "Podaci o podnositelju");
|
||||
define('LANG_name', "Ime");
|
||||
define('LANG_ip', "IP Adresa");
|
||||
define('LANG_role', "Korisnička uloga");
|
||||
define('LANG_ticket_submit_response', "Pošaljite odgovor");
|
||||
define('LANG_ticket_close', "Zatvoriti");
|
||||
define('LANG_no_ticket_replies', "Nema odgovoreni upita");
|
||||
define('LANG_no_tickets_submitted', "Nema poslani upita");
|
||||
define('LANG_submit_ticket', "Pošalji Upit");
|
||||
define('LANG_ticket_service', "Usluga");
|
||||
define('LANG_ticket_message', "Poruka");
|
||||
define('LANG_ticket_errors_occured', "Sljedeće su se pogreške pojavile prilikom slanja vašeg upita");
|
||||
define('LANG_no_ticket_subject', "Upit Bet Predmeta");
|
||||
define('LANG_invalid_ticket_subject_length', "Nevažeća dužina predmeta (4 do 64 znaka)");
|
||||
define('LANG_invalid_home_selected', "Nevažeći odabrani Home");
|
||||
define('LANG_no_ticket_message', "Nema predbilježbe za upit");
|
||||
define('LANG_invalid_ticket_message_length', "Nevažeća duljina poruke (minimalno 4 znaka)");
|
||||
define('LANG_ticket_no_service', "Nijedna usluga nije odabrana za ovaj upit.");
|
||||
define('LANG_failed_to_open', "Otvaranje upita nije uspjelo.");
|
||||
define('LANG_failed_to_reply', "Izrada odgovora na upit nije uspjela.");
|
||||
define('LANG_no_ticket_reply', "Ne postoji odgovor na upit");
|
||||
define('LANG_invalid_ticket_reply_length', "Nevažeća duljina odgovora za upit (minimalno 4 znaka)");
|
||||
define('LANG_ticket_closed', "Upit Zaključan");
|
||||
define('LANG_ticket_open', "Upit Otvoren");
|
||||
define('LANG_ticket_admin_response', "Odgovor Tehničke Podrške");
|
||||
define('LANG_ticket_customer_response', "Odgovor Korisnika");
|
||||
define('LANG_ticket_invalid_page_num', "Pokušali ste pregledati broj stranice bez upita!");
|
||||
define('LANG_ticket_is_closed', "Ovaj upit je zatvoren. Možete odgovoriti na ovaj upit kako biste ponovno otvorili.");
|
||||
define('LANG_reply', "Odgovoriti");
|
||||
define('LANG_invalid_rating', "Primljena ocjena nije valjana.");
|
||||
define('LANG_successfully_rated_response', "Uspješno ocijenjen odgovor.");
|
||||
define('LANG_failed_rating_response', "Nije uspjelo ocijeniti odgovor.");
|
||||
define('LANG_attachment_not_all_parameters_sent', "Nisu poslani svi parametri za preuzimanje datoteke.");
|
||||
define('LANG_requested_attachment_missing', "Zatraženi privitak ne postoji.");
|
||||
define('LANG_requested_attachment_missing_db', "Zatraženi privitak ne postoji u bazi podataka.");
|
||||
define('LANG_ratings_disabled', "Ociienjivanje odgovora nije omogućeno.");
|
||||
define('LANG_attachments', "Privitci");
|
||||
define('LANG_add_file_attachment', "Dodati Više");
|
||||
define('LANG_attachment_size_info', "Svaka odabrana datoteka mora biti maksimalno do %s");
|
||||
define('LANG_attachment_file_size_info', "Najviše %s datoteka(e) mogu biti učitane, %ssvaka.");
|
||||
define('LANG_attachment_allowed_extensions_info', "Dopušteno proširenje datoteke: %s");
|
||||
define('LANG_ticket_fix_before_submitting', "Ispravite sljedeće pogreške prije slanja upita");
|
||||
define('LANG_ticket_fix_before_replying', "Ispravite sljedeće pogreške prije nego što odgovorite na upit");
|
||||
define('LANG_ticket_problem_with_attachments', "Došlo je do problema s datotekom(ama) koje ste priložili");
|
||||
define('LANG_ticket_attachment_invalid_extension', "% 1 ne sadrži dopušteno proširenje.");
|
||||
define('LANG_ticket_attachment_invalid_size', "% 1 je veći od dopuštene veličine datoteke. % 2 maksimalno!");
|
||||
define('LANG_ticket_max_file_elements', "Može postojati samo najviše 1% ulaznih datoteka.");
|
||||
define('LANG_ticket_attachment_multiple_files', "Jedan ili više ulaznih datoteka ima više datoteka odabranih.");
|
||||
define('LANG_attachment_err_ini_size', "%s (%s) premašuje postavku \"upload_max_filesize\".");
|
||||
define('LANG_attachment_err_partial', "%s je djelomično prenesen.");
|
||||
define('LANG_attachment_err_no_tmp', "Nema tmp mape za spremanje %s");
|
||||
define('LANG_attachment_err_cant_write', "Nije moguće zapisati %s na disku.");
|
||||
define('LANG_attachment_err_extension', "Proširenje je zaustavilo prijenos %s. Pregledajte svoje zapisnike.");
|
||||
define('LANG_attachment_too_large', "%s (%s) je veća od maksimalne dopuštene veličine od %s!");
|
||||
define('LANG_attachment_forbidden_type', "Vrsta datoteke %s ne može se učitati.");
|
||||
define('LANG_attachment_directory_not_writable', "Nije moguće spremiti priložene datoteke. Navedeni direktorij za spremanje nije moguće pisati.");
|
||||
define('LANG_attachment_invalid_file_count', "Količina datoteka poslana poslužitelju bila je nevažeća. Može se prenijeti najviše %s");
|
||||
define('LANG_ratings_enabled', "Ocijene");
|
||||
define('LANG_ratings_enabled_info', "Postavite dali bi trebalo biti dopušteno ocijeniti odgovore.");
|
||||
define('LANG_attachments_enabled', "Privitci");
|
||||
define('LANG_attachments_enabled_info', "Postavite dali sustav privitka treba biti omogućen.");
|
||||
define('LANG_attachment_max_size', "Maksimalna Veličina Datoteke");
|
||||
define('LANG_attachment_max_size_info', "Postavite maksimalnu veličinu za privitke.");
|
||||
define('LANG_attachment_limit', "Ograničenje privitka");
|
||||
define('LANG_attachment_limit_info', "Odrediti koliko datoteka može biti dodano odjednom. 0 bez ograničenja.");
|
||||
define('LANG_attachment_save_dir', "Lokacija Prijenosa Privitka");
|
||||
define('LANG_attachment_save_dir_info', "Postavlja mjesta na koje treba prenijeti privitke. U svakom slučaju, izvan mape public_html ili izravnog pristupa blokiran je.");
|
||||
define('LANG_attachment_extensions', "Proširenja privitaka");
|
||||
define('LANG_attachment_extensions_info', "Postavlja dopuštena proširenja. Svako proširenje treba odvojiti zarezom.");
|
||||
define('LANG_show_php_ini', "Prikaži Procijenjene INI Postavke");
|
||||
define('LANG_settings_errors_occured', "Sljedeće su se pogreške pojavile prilikom pokušaja ažuriranja postavki - nije sve kompletno ažurirano!");
|
||||
define('LANG_invalid_max_size', "Nevažeća vrijednost za postavku Maksimalna veličina.");
|
||||
define('LANG_invalid_unit', "Nevažeća vrsta jedinice za postavku Maksimalna veličina. Očekujući KB, MB, GB, TB ili PB.");
|
||||
define('LANG_invalid_save_dir', "Navedeni direktorij za spremanje ne postoji i ne može se izraditi.");
|
||||
define('LANG_invalid_save_dir_not_writable', "Navedeni direktorij za spremanje postoji ali nije moguće pisati.");
|
||||
define('LANG_invalid_extensions', "Nije navedeno proširenje privitaka.");
|
||||
define('LANG_update_settings', "Ažurirati postavke");
|
||||
define('LANG_notifications_enabled', "Obavijesti");
|
||||
define('LANG_notifications_enabled_info', "Dopustite korisniku/administratoru da vidi je li dobio upit koji čeka odgovor.");
|
||||
|
|
|
|||
|
|
@ -23,37 +23,37 @@
|
|||
*/
|
||||
|
||||
include('litefm.php');
|
||||
define('OGP_LANG_curl_needed', "Ova stranica zahtijeva PHP curl modul.");
|
||||
define('OGP_LANG_no_access', "Trebate administratorska prava za pristup ovoj stranici.");
|
||||
define('OGP_LANG_dwl_update', "Preuzimanje ažuriranja ...");
|
||||
define('OGP_LANG_dwl_complete', "Skidanje dovršeno");
|
||||
define('OGP_LANG_install_update', "Instaliranje ažuriranja ...");
|
||||
define('OGP_LANG_update_complete', "Ažuriranje je dovršeno");
|
||||
define('OGP_LANG_ignored_files', "%s ignorirana datoteka(e)");
|
||||
define('OGP_LANG_not_updated_files_blacklisted', "Nije ažurirana/instalirana datoteka (na crnoj listi):<br>%s");
|
||||
define('OGP_LANG_latest_version', "Najnovija verzija");
|
||||
define('OGP_LANG_panel_version', "Verzija Panela");
|
||||
define('OGP_LANG_update_now', "Ažurirati sada");
|
||||
define('OGP_LANG_the_panel_is_up_to_date', "Panel je ažuriran");
|
||||
define('OGP_LANG_files_overwritten', "%s datoteke su prepisane");
|
||||
define('OGP_LANG_files_not_overwritten', "%s datoteke NISU prepisane zbog crnog lista");
|
||||
define('OGP_LANG_can_not_update_non_writable_files', "Nije moguće ažurirati jer sljedeće datoteke/mape nisu pisane");
|
||||
define('OGP_LANG_dwl_failed', "Veza za preuzimanje nije dostupna: \"%s\" .<br>Pokušajte ponovo kasnije.");
|
||||
define('OGP_LANG_temp_folder_not_writable', "Preuzimanje nije moguće postaviti jer Apache nema dozvolu za pisanje u privremenoj mapi sustava (%s).");
|
||||
define('OGP_LANG_base_dir_not_writable', "Panel ne može ažurirati jer Apache nema dozvolu za pisanje na mapi \"%s\".");
|
||||
define('OGP_LANG_new_files', "%s nove datoteke.");
|
||||
define('OGP_LANG_updated_files', "Ažurirane datoteke:<br>%s");
|
||||
define('OGP_LANG_select_mirror', "Odaberite");
|
||||
define('OGP_LANG_view_changes', "Prikaz promjena");
|
||||
define('OGP_LANG_updating_modules', "Ažuriranje modula");
|
||||
define('OGP_LANG_updating_finished', "Ažuriranje dovršeno");
|
||||
define('OGP_LANG_updated_module', "Ažurirani modul: '%s'.");
|
||||
define('OGP_LANG_blacklist_files', "Dodaj datoteke na crnoj listi");
|
||||
define('OGP_LANG_blacklist_files_info', "Sve označene datoteke neće biti ažurirane.");
|
||||
define('OGP_LANG_save_to_blacklist', "Spremiti na crnoj listi");
|
||||
define('OGP_LANG_no_new_updates', "Nema novih ažuriranja");
|
||||
define('OGP_LANG_module_file_missing', "u direktoriju fali modul.php datoteka");
|
||||
define('OGP_LANG_query_failed', "Nije uspjelo izvršavanje upita");
|
||||
define('OGP_LANG_query_failed_2', "do baze podataka.");
|
||||
define('OGP_LANG_missing_zip_extension', "PHP-zip ekstenzija nije učitana. Omogućite da upotrijebi Ažuriraj Modul.");
|
||||
define('LANG_curl_needed', "Ova stranica zahtijeva PHP curl modul.");
|
||||
define('LANG_no_access', "Trebate administratorska prava za pristup ovoj stranici.");
|
||||
define('LANG_dwl_update', "Preuzimanje ažuriranja ...");
|
||||
define('LANG_dwl_complete', "Skidanje dovršeno");
|
||||
define('LANG_install_update', "Instaliranje ažuriranja ...");
|
||||
define('LANG_update_complete', "Ažuriranje je dovršeno");
|
||||
define('LANG_ignored_files', "%s ignorirana datoteka(e)");
|
||||
define('LANG_not_updated_files_blacklisted', "Nije ažurirana/instalirana datoteka (na crnoj listi):<br>%s");
|
||||
define('LANG_latest_version', "Najnovija verzija");
|
||||
define('LANG_panel_version', "Verzija Panela");
|
||||
define('LANG_update_now', "Ažurirati sada");
|
||||
define('LANG_the_panel_is_up_to_date', "Panel je ažuriran");
|
||||
define('LANG_files_overwritten', "%s datoteke su prepisane");
|
||||
define('LANG_files_not_overwritten', "%s datoteke NISU prepisane zbog crnog lista");
|
||||
define('LANG_can_not_update_non_writable_files', "Nije moguće ažurirati jer sljedeće datoteke/mape nisu pisane");
|
||||
define('LANG_dwl_failed', "Veza za preuzimanje nije dostupna: \"%s\" .<br>Pokušajte ponovo kasnije.");
|
||||
define('LANG_temp_folder_not_writable', "Preuzimanje nije moguće postaviti jer Apache nema dozvolu za pisanje u privremenoj mapi sustava (%s).");
|
||||
define('LANG_base_dir_not_writable', "Panel ne može ažurirati jer Apache nema dozvolu za pisanje na mapi \"%s\".");
|
||||
define('LANG_new_files', "%s nove datoteke.");
|
||||
define('LANG_updated_files', "Ažurirane datoteke:<br>%s");
|
||||
define('LANG_select_mirror', "Odaberite");
|
||||
define('LANG_view_changes', "Prikaz promjena");
|
||||
define('LANG_updating_modules', "Ažuriranje modula");
|
||||
define('LANG_updating_finished', "Ažuriranje dovršeno");
|
||||
define('LANG_updated_module', "Ažurirani modul: '%s'.");
|
||||
define('LANG_blacklist_files', "Dodaj datoteke na crnoj listi");
|
||||
define('LANG_blacklist_files_info', "Sve označene datoteke neće biti ažurirane.");
|
||||
define('LANG_save_to_blacklist', "Spremiti na crnoj listi");
|
||||
define('LANG_no_new_updates', "Nema novih ažuriranja");
|
||||
define('LANG_module_file_missing', "u direktoriju fali modul.php datoteka");
|
||||
define('LANG_query_failed', "Nije uspjelo izvršavanje upita");
|
||||
define('LANG_query_failed_2', "do baze podataka.");
|
||||
define('LANG_missing_zip_extension', "PHP-zip ekstenzija nije učitana. Omogućite da upotrijebi Ažuriraj Modul.");
|
||||
?>
|
||||
|
|
@ -22,92 +22,92 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_your_profile', "Vaš Profil");
|
||||
define('OGP_LANG_new_password', "Nova Lozinka");
|
||||
define('OGP_LANG_retype_new_password', "Ponovite novu Lozinku");
|
||||
define('OGP_LANG_login_name', "Korisničko ime");
|
||||
define('OGP_LANG_language', "Jezik");
|
||||
define('OGP_LANG_first_name', "Ime");
|
||||
define('OGP_LANG_page_limit', "Stavke po stranici");
|
||||
define('OGP_LANG_page_limit_info', "Broj prikazanih stavki po stranici. Broj stavki ne može biti manji od 10.");
|
||||
define('OGP_LANG_last_name', "Prezime");
|
||||
define('OGP_LANG_phone_number', "Broj Telefona");
|
||||
define('OGP_LANG_email_address', "E-pošta");
|
||||
define('OGP_LANG_city', "Grad");
|
||||
define('OGP_LANG_province', "Pokrajina");
|
||||
define('OGP_LANG_country', "Država");
|
||||
define('OGP_LANG_comment', "Komentari");
|
||||
define('OGP_LANG_expires', "Istječe");
|
||||
define('OGP_LANG_save_profile', "Sačuvati profil");
|
||||
define('OGP_LANG_new_password_info', "Kada je polje za lozinku prazno, zaporka neće biti ažurirana.");
|
||||
define('OGP_LANG_theme', "Tema");
|
||||
define('OGP_LANG_theme_info', "Ako je tema prazna, koristi se globalna vrijednost.");
|
||||
define('OGP_LANG_expires_info', "Datum kada istekne korisnički račun. Račun nije izbrisan, ali se korisnik više ne može prijaviti.");
|
||||
define('OGP_LANG_password_mismatch', "Lozinke se ne podudaraju.");
|
||||
define('OGP_LANG_current_password', "Trenutna Lozinka");
|
||||
define('OGP_LANG_current_password_info', "Vaša trenutna lozinka.");
|
||||
define('OGP_LANG_current_password_mismatch', "Vaša trenutačna lozinka ne podudara se onoj u bazi podataka.");
|
||||
define('OGP_LANG_add_new_user', "Dodajte novog korisnika");
|
||||
define('OGP_LANG_edit_user_groups', "Uređivanje Korisničkih Grupa");
|
||||
define('OGP_LANG_users', "Korisnici");
|
||||
define('OGP_LANG_user_role', "Korisnička uloga");
|
||||
define('OGP_LANG_full_name', "Puno Ime");
|
||||
define('OGP_LANG_edit_games', "Urediti Igre");
|
||||
define('OGP_LANG_edit_profile', "Urediti Profil");
|
||||
define('OGP_LANG_confirm_password', "Potvrdite lozinku");
|
||||
define('OGP_LANG_you_need_to_enter_both_passwords', "Morate unijeti obje lozinke.");
|
||||
define('OGP_LANG_passwords_did_not_match', "Lozinke se ne podudaraju.");
|
||||
define('OGP_LANG_could_not_add_user_because_user_already_exists', "Nije moguće dodati korisnika, jer korisnik<em>%s</em> već postoji.");
|
||||
define('OGP_LANG_successfully_added_user', "Korisnik <em>%s</em> je uspješno dodan.");
|
||||
define('OGP_LANG_add_a_new_user', "Dodati novog korisnika");
|
||||
define('OGP_LANG_admin', "Administrator");
|
||||
define('OGP_LANG_user', "Korisnik");
|
||||
define('OGP_LANG_user_with_id_does_not_exist', "Korisnik s ID-om %s ne postoji.");
|
||||
define('OGP_LANG_are_you_sure_you_want_to_delete_user', "Jeste li sigurni da želite izbrisati korisnika <em>%s</em>?");
|
||||
define('OGP_LANG_unable_to_delete_user', "Nije moguće izbrisati korisnika %s.");
|
||||
define('OGP_LANG_successfully_deleted_user', "Korisnik <b>%s</b> je uspješno izbrisan.");
|
||||
define('OGP_LANG_failed_to_update_user_profile_error', "Ažuriranje korisničkih profila nije uspjelo. Greška: %s");
|
||||
define('OGP_LANG_profile_of_user_modified_successfully', "Profil korisnika <b>%s</b> uspješno je izmijenjen.");
|
||||
define('OGP_LANG_no_subusers', "Nema dostupnih subkorisnika za dodjeljivanje u grupi. Izradite račune podkorisnika.");
|
||||
define('OGP_LANG_ownedby', "Vlasnik");
|
||||
define('OGP_LANG_andSubUsers', "I svi njegovi podkorisnici?");
|
||||
define('OGP_LANG_subusers', "Podkorisnici");
|
||||
define('OGP_LANG_show_subusers', "Prikazati sve podkorisnike");
|
||||
define('OGP_LANG_hide_subusers', "Sakriti sve podkorisnike");
|
||||
define('OGP_LANG_info_group', "S ove stranice moguće je odrediti korisničke skupine. Možete dodijeliti servere u grupi tako da su dostupni za sve korisnike grupe.");
|
||||
define('OGP_LANG_add_new_group', "Dodati novu grupu");
|
||||
define('OGP_LANG_group_name', "Naziv Grupe");
|
||||
define('OGP_LANG_add_group', "Dodati Grupu");
|
||||
define('OGP_LANG_no_groups_available', "Nema dostupnih grupa.");
|
||||
define('OGP_LANG_delete_group', "Izbrisati Grupu");
|
||||
define('OGP_LANG_add_user_to_group', "Dodati korisnika u grupi");
|
||||
define('OGP_LANG_add_user', "Dodati Korisnika");
|
||||
define('OGP_LANG_remove_from_group', "Ukloniti iz grupe");
|
||||
define('OGP_LANG_add_server_to_group', "Dodati server u grupi");
|
||||
define('OGP_LANG_add_server', "Dodati Server");
|
||||
define('OGP_LANG_servers_in_group', "Svi serveri u grupi");
|
||||
define('OGP_LANG_no_servers_in_group', "Žao nam je, ali nema servera u ovoj grupi %s.");
|
||||
define('OGP_LANG_available_groups', "Dostupne Grupe");
|
||||
define('OGP_LANG_assign_homes', "Dodijeliti Server");
|
||||
define('OGP_LANG_successfully_added_group', "Grupa %s uspješno dodana.");
|
||||
define('OGP_LANG_group_name_empty', "Naziv grupe ne smije biti prazno.");
|
||||
define('OGP_LANG_failed_to_add_group', "Dodavanje grupe %s nije uspjelo.");
|
||||
define('OGP_LANG_could_not_add_user_to_group', "Nije bilo moguće dodati korisnika %s u grupi %s, već se nalazi u toj grupi.");
|
||||
define('OGP_LANG_successfully_added_to_group', "> %s Uspješno dodan u grupi <em>%s</em>.");
|
||||
define('OGP_LANG_could_not_add_server_to_group', "Nije moguće dodati server u grupi %s, već se nalazi u toj grupi.");
|
||||
define('OGP_LANG_successfully_added_server_to_group', "Server uspješno dodan u grupi <em>%s</em>.");
|
||||
define('OGP_LANG_successfully_removed_from_group', "%s je uspješno uklonjen iz grupe <em>%s</em>.");
|
||||
define('OGP_LANG_could_not_delete_server_from_group', "Nije moguće izbrisati server %s iz grupe <em>%s</em>.");
|
||||
define('OGP_LANG_successfully_removed_server_from_group', "Server %s je uspješno uklonjen iz grupe <em>%s</em>.");
|
||||
define('OGP_LANG_group_with_id_does_not_exist', "%sgrupa ne postoji. ");
|
||||
define('OGP_LANG_are_you_sure_you_want_to_delete_group', "Jeste li sigurni da želite izbrisati grupu <em>%s</em>?");
|
||||
define('OGP_LANG_unable_to_delete_group', "Nije moguće izbrisati grupu %s.");
|
||||
define('OGP_LANG_successfully_deleted_group', "Grupa <b>%s</b> je uspješno izbrisana.");
|
||||
define('OGP_LANG_editing_profile', "Uređivanje profila: %s");
|
||||
define('OGP_LANG_valid_user', "Navedite važećeg korisnika.");
|
||||
define('OGP_LANG_enter_valid_username', "Molimo unesite važeće korisničko ime.");
|
||||
define('OGP_LANG_unexpected_role', "Primljena je neočekivana korisnička uloga.");
|
||||
define('OGP_LANG_search', "Tražiti");
|
||||
define('OGP_LANG_api_token', "API token");
|
||||
define('OGP_LANG_user_receives_emails', "Primajte e-poštu");
|
||||
define('LANG_your_profile', "Vaš Profil");
|
||||
define('LANG_new_password', "Nova Lozinka");
|
||||
define('LANG_retype_new_password', "Ponovite novu Lozinku");
|
||||
define('LANG_login_name', "Korisničko ime");
|
||||
define('LANG_language', "Jezik");
|
||||
define('LANG_first_name', "Ime");
|
||||
define('LANG_page_limit', "Stavke po stranici");
|
||||
define('LANG_page_limit_info', "Broj prikazanih stavki po stranici. Broj stavki ne može biti manji od 10.");
|
||||
define('LANG_last_name', "Prezime");
|
||||
define('LANG_phone_number', "Broj Telefona");
|
||||
define('LANG_email_address', "E-pošta");
|
||||
define('LANG_city', "Grad");
|
||||
define('LANG_province', "Pokrajina");
|
||||
define('LANG_country', "Država");
|
||||
define('LANG_comment', "Komentari");
|
||||
define('LANG_expires', "Istječe");
|
||||
define('LANG_save_profile', "Sačuvati profil");
|
||||
define('LANG_new_password_info', "Kada je polje za lozinku prazno, zaporka neće biti ažurirana.");
|
||||
define('LANG_theme', "Tema");
|
||||
define('LANG_theme_info', "Ako je tema prazna, koristi se globalna vrijednost.");
|
||||
define('LANG_expires_info', "Datum kada istekne korisnički račun. Račun nije izbrisan, ali se korisnik više ne može prijaviti.");
|
||||
define('LANG_password_mismatch', "Lozinke se ne podudaraju.");
|
||||
define('LANG_current_password', "Trenutna Lozinka");
|
||||
define('LANG_current_password_info', "Vaša trenutna lozinka.");
|
||||
define('LANG_current_password_mismatch', "Vaša trenutačna lozinka ne podudara se onoj u bazi podataka.");
|
||||
define('LANG_add_new_user', "Dodajte novog korisnika");
|
||||
define('LANG_edit_user_groups', "Uređivanje Korisničkih Grupa");
|
||||
define('LANG_users', "Korisnici");
|
||||
define('LANG_user_role', "Korisnička uloga");
|
||||
define('LANG_full_name', "Puno Ime");
|
||||
define('LANG_edit_games', "Urediti Igre");
|
||||
define('LANG_edit_profile', "Urediti Profil");
|
||||
define('LANG_confirm_password', "Potvrdite lozinku");
|
||||
define('LANG_you_need_to_enter_both_passwords', "Morate unijeti obje lozinke.");
|
||||
define('LANG_passwords_did_not_match', "Lozinke se ne podudaraju.");
|
||||
define('LANG_could_not_add_user_because_user_already_exists', "Nije moguće dodati korisnika, jer korisnik<em>%s</em> već postoji.");
|
||||
define('LANG_successfully_added_user', "Korisnik <em>%s</em> je uspješno dodan.");
|
||||
define('LANG_add_a_new_user', "Dodati novog korisnika");
|
||||
define('LANG_admin', "Administrator");
|
||||
define('LANG_user', "Korisnik");
|
||||
define('LANG_user_with_id_does_not_exist', "Korisnik s ID-om %s ne postoji.");
|
||||
define('LANG_are_you_sure_you_want_to_delete_user', "Jeste li sigurni da želite izbrisati korisnika <em>%s</em>?");
|
||||
define('LANG_unable_to_delete_user', "Nije moguće izbrisati korisnika %s.");
|
||||
define('LANG_successfully_deleted_user', "Korisnik <b>%s</b> je uspješno izbrisan.");
|
||||
define('LANG_failed_to_update_user_profile_error', "Ažuriranje korisničkih profila nije uspjelo. Greška: %s");
|
||||
define('LANG_profile_of_user_modified_successfully', "Profil korisnika <b>%s</b> uspješno je izmijenjen.");
|
||||
define('LANG_no_subusers', "Nema dostupnih subkorisnika za dodjeljivanje u grupi. Izradite račune podkorisnika.");
|
||||
define('LANG_ownedby', "Vlasnik");
|
||||
define('LANG_andSubUsers', "I svi njegovi podkorisnici?");
|
||||
define('LANG_subusers', "Podkorisnici");
|
||||
define('LANG_show_subusers', "Prikazati sve podkorisnike");
|
||||
define('LANG_hide_subusers', "Sakriti sve podkorisnike");
|
||||
define('LANG_info_group', "S ove stranice moguće je odrediti korisničke skupine. Možete dodijeliti servere u grupi tako da su dostupni za sve korisnike grupe.");
|
||||
define('LANG_add_new_group', "Dodati novu grupu");
|
||||
define('LANG_group_name', "Naziv Grupe");
|
||||
define('LANG_add_group', "Dodati Grupu");
|
||||
define('LANG_no_groups_available', "Nema dostupnih grupa.");
|
||||
define('LANG_delete_group', "Izbrisati Grupu");
|
||||
define('LANG_add_user_to_group', "Dodati korisnika u grupi");
|
||||
define('LANG_add_user', "Dodati Korisnika");
|
||||
define('LANG_remove_from_group', "Ukloniti iz grupe");
|
||||
define('LANG_add_server_to_group', "Dodati server u grupi");
|
||||
define('LANG_add_server', "Dodati Server");
|
||||
define('LANG_servers_in_group', "Svi serveri u grupi");
|
||||
define('LANG_no_servers_in_group', "Žao nam je, ali nema servera u ovoj grupi %s.");
|
||||
define('LANG_available_groups', "Dostupne Grupe");
|
||||
define('LANG_assign_homes', "Dodijeliti Server");
|
||||
define('LANG_successfully_added_group', "Grupa %s uspješno dodana.");
|
||||
define('LANG_group_name_empty', "Naziv grupe ne smije biti prazno.");
|
||||
define('LANG_failed_to_add_group', "Dodavanje grupe %s nije uspjelo.");
|
||||
define('LANG_could_not_add_user_to_group', "Nije bilo moguće dodati korisnika %s u grupi %s, već se nalazi u toj grupi.");
|
||||
define('LANG_successfully_added_to_group', "> %s Uspješno dodan u grupi <em>%s</em>.");
|
||||
define('LANG_could_not_add_server_to_group', "Nije moguće dodati server u grupi %s, već se nalazi u toj grupi.");
|
||||
define('LANG_successfully_added_server_to_group', "Server uspješno dodan u grupi <em>%s</em>.");
|
||||
define('LANG_successfully_removed_from_group', "%s je uspješno uklonjen iz grupe <em>%s</em>.");
|
||||
define('LANG_could_not_delete_server_from_group', "Nije moguće izbrisati server %s iz grupe <em>%s</em>.");
|
||||
define('LANG_successfully_removed_server_from_group', "Server %s je uspješno uklonjen iz grupe <em>%s</em>.");
|
||||
define('LANG_group_with_id_does_not_exist', "%sgrupa ne postoji. ");
|
||||
define('LANG_are_you_sure_you_want_to_delete_group', "Jeste li sigurni da želite izbrisati grupu <em>%s</em>?");
|
||||
define('LANG_unable_to_delete_group', "Nije moguće izbrisati grupu %s.");
|
||||
define('LANG_successfully_deleted_group', "Grupa <b>%s</b> je uspješno izbrisana.");
|
||||
define('LANG_editing_profile', "Uređivanje profila: %s");
|
||||
define('LANG_valid_user', "Navedite važećeg korisnika.");
|
||||
define('LANG_enter_valid_username', "Molimo unesite važeće korisničko ime.");
|
||||
define('LANG_unexpected_role', "Primljena je neočekivana korisnička uloga.");
|
||||
define('LANG_search', "Tražiti");
|
||||
define('LANG_api_token', "API token");
|
||||
define('LANG_user_receives_emails', "Primajte e-poštu");
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -22,202 +22,202 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_add_mods_note', "Možete dodati modove nakon dodavanja servera korisniku. To se može učiniti uređivanjem servera.");
|
||||
define('OGP_LANG_game_servers', "Serveri");
|
||||
define('OGP_LANG_game_path', "Putanje Igre");
|
||||
define('OGP_LANG_game_path_info', "Apsolutno putanje servera. Primjer: /home/ogpbot/OGP_User_Files / My_Server");
|
||||
define('OGP_LANG_game_server_name_info', "Ime servera pomaže korisnicima da identificiraju svoje servere.");
|
||||
define('OGP_LANG_control_password', "Upravljačka lozinka");
|
||||
define('OGP_LANG_control_password_info', "Ova se lozinka koristi za kontrolu servera, kao što je RCON lozinka. Ako je lozinka prazna, upotrebljavaju se druga sredstva.");
|
||||
define('OGP_LANG_add_game_home', "Dodati Igru");
|
||||
define('OGP_LANG_game_path_empty', "Putanje igre ne smije biti prazna.");
|
||||
define('OGP_LANG_game_home_added', "Igrica je uspješno dodana. Preusmjeravanje na stranicu uređivanja Home-a.");
|
||||
define('OGP_LANG_failed_to_add_home_to_db', "Dodavanje Home-a u bazu podataka nije uspjelo. Pogreška: %s");
|
||||
define('OGP_LANG_caution_agent_offline_can_not_get_os_and_arch_showing_servers_for_all_platforms', "<b>Oprez!</b>Agent je izvan mreže, ne može dobiti vrstu i arhitekturu OS-a,<br> Prikaz servera za sve platforme:");
|
||||
define('OGP_LANG_select_remote_server', "Odaberite Udaljeni Server");
|
||||
define('OGP_LANG_no_remote_servers_configured', "Nijedan udaljeni poslužitelj nije konfiguriran za Open Game Panel. Najprije morate dodati udaljene poslužitelje pa tek onda možete korisnicima dizati servere.");
|
||||
define('OGP_LANG_no_game_configurations_found', "Nije pronađena konfiguracija igre. Morate dodati konfiguracije igara iz");
|
||||
define('OGP_LANG_game_configurations', "> stranice za konfiguraciju igre");
|
||||
define('OGP_LANG_add_remote_server', "Dodati Server");
|
||||
define('OGP_LANG_wine_games', "Vinske Igre");
|
||||
define('OGP_LANG_home_path', "Putanje direktorija");
|
||||
define('OGP_LANG_change_home_info', "Mjesto instaliranog servera. Primjer: /home/ogp/my_server/");
|
||||
define('OGP_LANG_game_server_name', "Naziv Servera");
|
||||
define('OGP_LANG_change_name_info', "Mjesto instaliranog servera. Naziv servera koji korisnicima olakšava identifikaciju.");
|
||||
define('OGP_LANG_game_control_password', "Kontrolna lozinka za igru");
|
||||
define('OGP_LANG_change_control_password_info', "Kontrolna lozinka je npr. Lozinka za rcon.");
|
||||
define('OGP_LANG_available_mods', "Dostupni Modovi");
|
||||
define('OGP_LANG_note_no_mods', "Nema dostupnih mod(a) za ovu igru.");
|
||||
define('OGP_LANG_change_home', "Promjeni Direktorij");
|
||||
define('OGP_LANG_change_control_password', "Promjeniti Kontrolnu Lozinku");
|
||||
define('OGP_LANG_change_name', "Promijeniti Naziv");
|
||||
define('OGP_LANG_add_mod', "Dodajte Mod");
|
||||
define('OGP_LANG_set_ip', "Postavite IP");
|
||||
define('OGP_LANG_ips_and_ports', "IP adrese i Portovi");
|
||||
define('OGP_LANG_mod_name', "Naziv Moda");
|
||||
define('OGP_LANG_max_players', "Maksimalno Igrača");
|
||||
define('OGP_LANG_extra_cmd_line_args', "Dodatni naredbeni redak");
|
||||
define('OGP_LANG_extra_cmd_line_info', "Dodatna naredba linija omogućuje način unosa dodatnih argumenata u naredbu za igru kada se pokrene.");
|
||||
define('OGP_LANG_cpu_affinity', "CPU");
|
||||
define('OGP_LANG_nice_level', "Uljepšavanje Razine");
|
||||
define('OGP_LANG_set_options', "Postavite Opcije");
|
||||
define('OGP_LANG_remove_mod', "Ukloniti Mod");
|
||||
define('OGP_LANG_mods', "Modovi");
|
||||
define('OGP_LANG_ip', "IP");
|
||||
define('OGP_LANG_port', "Port");
|
||||
define('OGP_LANG_no_ip_ports_assigned', "Najmanje jedan IP: Port par mora biti dodijeljen serveru.");
|
||||
define('OGP_LANG_successfully_assigned_ip_port', "Uspješno dodijeljen IP: Port serveru.");
|
||||
define('OGP_LANG_port_range_error', "Port mora biti između raspona 0 i 65535.");
|
||||
define('OGP_LANG_failed_to_assing_mod_to_home', "Dodjeljivanje moda s ID-om %d nije uspjelo.");
|
||||
define('OGP_LANG_successfully_assigned_mod_to_home', "Uspješno dodijeljen mod sa ID %d serveru.");
|
||||
define('OGP_LANG_successfully_modified_mod', "Uspješno izmijenjene informacije o modu.");
|
||||
define('OGP_LANG_back_to_game_monitor', "Natrag na Monitor Igara");
|
||||
define('OGP_LANG_back_to_game_servers', "Natrag na Igrice");
|
||||
define('OGP_LANG_user_id_main', "Glavni Vlasnik");
|
||||
define('OGP_LANG_change_user_id_main', "Promijenite glavnog vlasnika");
|
||||
define('OGP_LANG_change_user_id_main_info', "Glavni Vlasnik Servera");
|
||||
define('OGP_LANG_server_ftp_password', "FTP lozinka");
|
||||
define('OGP_LANG_change_ftp_password', "Promijenite FTP lozinku");
|
||||
define('OGP_LANG_change_ftp_password_info', "Ovo je lozinka za prijavu na FTP poslužitelj za ovaj server.");
|
||||
define('OGP_LANG_Delete_old_user_assigned_homes', "Uklonite dodijelu servera trenutnim korisnicima.");
|
||||
define('OGP_LANG_editing_home_called', "Uređivanje Servera pod nazivom");
|
||||
define('OGP_LANG_control_password_updated_successfully', "Kontrolna lozinka uspješno ažurirana.");
|
||||
define('OGP_LANG_control_password_update_failed', "Ažuriranje kontrolne lozinke nije uspjelo");
|
||||
define('OGP_LANG_successfully_changed_game_server', "Uspješno promijenjene postavke.");
|
||||
define('OGP_LANG_error_ocurred_on_remote_server', "Došlo je do pogreške na udaljenom poslužitelju,");
|
||||
define('OGP_LANG_ftp_password_can_not_be_changed', "FTP lozinka ne može se mijenjati.");
|
||||
define('OGP_LANG_ftp_can_not_be_switched_on', "FTP se ne može uključiti.");
|
||||
define('OGP_LANG_ftp_can_not_be_switched_off', "FTP se ne može isključiti.");
|
||||
define('OGP_LANG_invalid_home_id_entered', "Unesen je nevažeći Home ID.");
|
||||
define('OGP_LANG_ip_port_already_in_use', "%s:%s je već u upotrebi. Odaberite neki drugi.");
|
||||
define('OGP_LANG_successfully_assigned_ip_port_to_server_id', "Uspješno dodijeljen %s:%s kod Home sa ID-om %s.");
|
||||
define('OGP_LANG_no_ip_addresses_configured', "Vaš server nema nikakve IP adrese koje su mu konfigurirane. Možete ih konfigurirati iz");
|
||||
define('OGP_LANG_server_page', "stranice servera");
|
||||
define('OGP_LANG_successfully_removed_mod', "Uspješno uklonjen mod igre.");
|
||||
define('OGP_LANG_warning_agent_offline_defaulting_CPU_count_to_1', "Upozorenje - Agent je izvan mreže, prebacivanje CPU-a na zadanom u 1.");
|
||||
define('OGP_LANG_mod_install_cmds', "Inst.Mod po Naredbi");
|
||||
define('OGP_LANG_cmds_for', "Naredbe za");
|
||||
define('OGP_LANG_preinstall_cmds', "Predinstalirajte Naredbe");
|
||||
define('OGP_LANG_postinstall_cmds', "Naredbe za Naknadnu Instalaciju");
|
||||
define('OGP_LANG_edit_preinstall_cmds', "Uređivanje Naredbi za Predinstaliranje");
|
||||
define('OGP_LANG_edit_postinstall_cmds', "Uređivanje naredbi za Naknadnu Instalaciju");
|
||||
define('OGP_LANG_save_as_default_for_this_mod', "Spremi kao zadano za ovaj mod");
|
||||
define('OGP_LANG_empty', "prazno");
|
||||
define('OGP_LANG_master_server_for_clon_update', "Master Server za lokalno ažuriranje");
|
||||
define('OGP_LANG_set_as_master_server', "Postaviti kao Master Server");
|
||||
define('OGP_LANG_set_as_master_server_for_local_clon_update', "Postaviti kao master server za lokalno ažuriranje");
|
||||
define('OGP_LANG_only_available_for', "Dostupno samo za '%s' za hosting na udaljenom poslužitelju nazvanom '%s'.");
|
||||
define('OGP_LANG_ftp_on', "Omogućiti FTP");
|
||||
define('OGP_LANG_ftp_off', "Onemogućiti FTP");
|
||||
define('OGP_LANG_change_ftp_account_status', "Promjena statusa FTP računa");
|
||||
define('OGP_LANG_change_ftp_account_status_info', "Jednom kada je FTP račun omogućen ili onemogućen, dodaje se ili uklanja iz FTP-ove baze podataka.");
|
||||
define('OGP_LANG_server_ftp_login', "FTP Prijava za Server");
|
||||
define('OGP_LANG_change_ftp_login_info', "Promijenite FTP prijavu s prilagođenim.");
|
||||
define('OGP_LANG_change_ftp_login', "Promjeniti FTP Prijavu");
|
||||
define('OGP_LANG_ftp_login_can_not_be_changed', "Nije moguće promijeniti FTP prijavu.");
|
||||
define('OGP_LANG_server_is_running_change_addresses_not_available', "Dok je server pokrenut, IP se ne može mijenjati.");
|
||||
define('OGP_LANG_change_game_type', "Promijeniti Vrstu Igre");
|
||||
define('OGP_LANG_change_game_type_info', "Promjenom tipa igre, trenutna konfiguracija moda bit će izbrisana.");
|
||||
define('OGP_LANG_force_mod_on_this_address', "Forsirajte mod na ovoj adresi");
|
||||
define('OGP_LANG_successfully_assigned_mod_to_address', "Uspješno dodijeljen mod adresi");
|
||||
define('OGP_LANG_switch_mods', "Prebaciti modove");
|
||||
define('OGP_LANG_switch_mod_for_address', "Prebaci mod za adresu %s");
|
||||
define('OGP_LANG_invalid_path', "Nevažeće putanje");
|
||||
define('OGP_LANG_add_new_game_home', "Dodajte novu igru");
|
||||
define('OGP_LANG_no_game_homes_found', "Nisu pronađene igre");
|
||||
define('OGP_LANG_available_game_homes', "Dostupne igre");
|
||||
define('OGP_LANG_home_id', "ID Servera");
|
||||
define('OGP_LANG_game_server', "IP Servera");
|
||||
define('OGP_LANG_game_type', "Vrsta Igre");
|
||||
define('OGP_LANG_game_home', "Putanje Servera");
|
||||
define('OGP_LANG_game_home_name', "Naziv Servera");
|
||||
define('OGP_LANG_clone', "Klonirati");
|
||||
define('OGP_LANG_unassign', "Ukloniti Server");
|
||||
define('OGP_LANG_access_rights', "Prava pristupa");
|
||||
define('OGP_LANG_assigned_homes', "Trenutni Dodijeljeni Serveri");
|
||||
define('OGP_LANG_assign', "Dodijeliti");
|
||||
define('OGP_LANG_allow_updates', "Dopustiti Ažuriranja Igre");
|
||||
define('OGP_LANG_allow_updates_info', "Omogućuje korisniku ažuriranje instalacije igre ako je to moguće.");
|
||||
define('OGP_LANG_allow_file_management', "Dopustiti Upravljanje Datotekama");
|
||||
define('OGP_LANG_allow_file_management_info', "Omogućuje korisniku pristup serveru s modulima za upravljanje datotekama.");
|
||||
define('OGP_LANG_allow_parameter_usage', "Dopustiti Upotrebu Parametara");
|
||||
define('OGP_LANG_allow_parameter_usage_info', "Omogućuje korisniku promjenu dostupnih parametara naredbenog retka.");
|
||||
define('OGP_LANG_allow_extra_params', "Dopustiti Dodatne Parametre");
|
||||
define('OGP_LANG_allow_extra_params_info', "Korisniku omogućuje izmjenu dodatnih parametara naredbenog retka.");
|
||||
define('OGP_LANG_allow_ftp', "Dopustiti FTP Upotrebu");
|
||||
define('OGP_LANG_allow_ftp_info', "Pokažite informacije za FTP pristup korisniku.");
|
||||
define('OGP_LANG_allow_custom_fields', "Dopustiti Prilagodljiva Polja");
|
||||
define('OGP_LANG_allow_custom_fields_info', "Korisnicima omogućuje pristup prilagođenim poljima servera ako ih ima.");
|
||||
define('OGP_LANG_select_home', "Odaberite Server za Dodjelivanje");
|
||||
define('OGP_LANG_assign_new_home_to_user', "Dodijelivanje Novi Server korisniku %s");
|
||||
define('OGP_LANG_assign_new_home_to_group', "Dodijelivanje Novi Server grupi %s");
|
||||
define('OGP_LANG_assigned_home_to_user', "Uspješno dodijeljen server (ID: %d) korisniku %s.");
|
||||
define('OGP_LANG_failed_to_assign_home_to_user', "Nije uspjelo dodijeljivanje servera (ID: %d) korisniku %s.");
|
||||
define('OGP_LANG_assigned_home_to_group', "Uspješno dodijeljen server (ID: %d) grupi%s.");
|
||||
define('OGP_LANG_unassigned_home_from_user', "Uspješno uklonjen server (ID: %d) od korisnika %s.");
|
||||
define('OGP_LANG_unassigned_home_from_group', "Uspješno uklonjen server (ID: %d) od grupe %s.");
|
||||
define('OGP_LANG_no_homes_assigned_to_user', "Nema dodijeljenih servera za korisnika %s.");
|
||||
define('OGP_LANG_no_homes_assigned_to_group', "Nema dodijeljenih servera za grupu %s.");
|
||||
define('OGP_LANG_no_more_homes_available_that_can_be_assigned_for_this_user', "Nema više dostupnih servera koji se mogu dodijeliti ovom korisniku");
|
||||
define('OGP_LANG_no_more_homes_available_that_can_be_assigned_for_this_group', "Nema više dostupnih servera koji se mogu dodijeliti ovoj grupi");
|
||||
define('OGP_LANG_you_can_add_a_new_game_server_from', "Možete dodati novu igru iz %s.");
|
||||
define('OGP_LANG_no_remote_servers_available_please_add_at_least_one', "Nemamo dostupnih udaljenih poslužitelja, molimo dodajte najmanje jedan!");
|
||||
define('OGP_LANG_cloning_of_home_failed', "Kloniranje servera sa ID-om '%s' nije uspjelo.");
|
||||
define('OGP_LANG_no_mods_to_clone', "Još nema omogućenih mod(a) za ovu igru. Nije moguće klonirati.");
|
||||
define('OGP_LANG_failed_to_add_mod', "Nije uspjelo dodavanje moda sa ID-om '%s' serveru sa ID-om '%s'.");
|
||||
define('OGP_LANG_failed_to_update_mod_settings', "Ažuriranje mod postavki za server sa ID-om '%s' nije uspjelo.");
|
||||
define('OGP_LANG_successfully_cloned_mods', "Uspješno kloniran mod za server sa ID-om '%s'.");
|
||||
define('OGP_LANG_successfully_copied_home_database', "Uspješno kopiran Direktorij baze podataka.");
|
||||
define('OGP_LANG_copying_home_remotely', "Kopiranje Servera na udaljenom poslužitelju od '%s' na '%s'.");
|
||||
define('OGP_LANG_cloning_home', "Kloniranje Servera pod nazivom '%s'.");
|
||||
define('OGP_LANG_current_home_path', "Trenutni Direktorij Servera");
|
||||
define('OGP_LANG_current_home_path_info', "Trenutni lokacija kopiranog Servera na udaljenom poslužitelju.");
|
||||
define('OGP_LANG_clone_home', "Klonirati Server");
|
||||
define('OGP_LANG_new_home_name', "Novi Naziv Servera");
|
||||
define('OGP_LANG_new_home_path', "Novo putanje Servera");
|
||||
define('OGP_LANG_agent_ip', "IP Agenta");
|
||||
define('OGP_LANG_game_server_copy_is_running', "Kopiranje servera se izvodi ...");
|
||||
define('OGP_LANG_game_server_copy_was_successful', "Kopiranje servera bilo je uspješno");
|
||||
define('OGP_LANG_game_server_copy_failed_with_return_code', "Kopija servera nije uspjela s povratnim kodom %s");
|
||||
define('OGP_LANG_clone_mods', "Klonirati Modove");
|
||||
define('OGP_LANG_game_server_owner', "Vlasnik Servera");
|
||||
define('OGP_LANG_the_name_of_the_server_to_help_users_to_identify_it', "Naziv servera koji korisnicima olakšava identifikaciju.");
|
||||
define('OGP_LANG_ips_and_ports_used_in_this_home', "IP adrese i portovi koji se koriste u ovom serveru");
|
||||
define('OGP_LANG_note_ips_and_ports_are_not_cloned', "Napomena - IP adrese i portovi neče bit klonirani");
|
||||
define('OGP_LANG_mods_and_settings_for_this_game_server', "Modovi i postavke za ovaj server");
|
||||
define('OGP_LANG_sure_to_delete_serverid_from_remoteip_and_directory', "Jeste li sigurni da želite izbrisati server (ID: %s) s poslužitelja %s i direktorij %s");
|
||||
define('OGP_LANG_yes_and_delete_the_files', "Da i Izbriši datoteke");
|
||||
define('OGP_LANG_failed_to_remove_gamehome_from_database', "Uklanjanje direktorij servera iz baze podataka nije uspjelo.");
|
||||
define('OGP_LANG_successfully_deleted_game_server_with_id', "Uspješno izbrisan server sa ID-om %s.");
|
||||
define('OGP_LANG_failed_to_remove_ftp_account_from_remote_server', "Neuspješno uklanjanje FTP računa s udaljenog poslužitelja.");
|
||||
define('OGP_LANG_remove_it_anyway', "Želite li ga ipak ukloniti?");
|
||||
define('OGP_LANG_sucessfully_deleted', "Uspješno izbrisan %s");
|
||||
define('OGP_LANG_the_agent_had_a_problem_deleting', "Agent je imao problema prilikom brisanja %s. Molimo vas, provjerite zapisnik agenta.");
|
||||
define('OGP_LANG_connection_timeout_or_problems_reaching_the_agent', "Vremenski prekid veze ili problemi s dosezanjem Agenta");
|
||||
define('OGP_LANG_does_not_exist_yet', "Još ne postoji.");
|
||||
define('OGP_LANG_update_settings', "Ažurirati postavke");
|
||||
define('OGP_LANG_settings_updated', "Postavke su ažurirane");
|
||||
define('OGP_LANG_selected_path_already_in_use', "Odabrano putanje je već u uporabi.");
|
||||
define('OGP_LANG_browse', "Tražiti");
|
||||
define('OGP_LANG_cancel', "Otkazati");
|
||||
define('OGP_LANG_set_this_path', "Postaviti ovo putanje");
|
||||
define('OGP_LANG_select_home_path', "Odaberite putanje ");
|
||||
define('OGP_LANG_folder', "Mapa");
|
||||
define('OGP_LANG_owner', "Vlasnik");
|
||||
define('OGP_LANG_group', "Grupa");
|
||||
define('OGP_LANG_level_up', "Viša razina");
|
||||
define('OGP_LANG_level_up_info', "Vratiti se na prethodnu mapu.");
|
||||
define('OGP_LANG_add_folder', "Dodati Mapu");
|
||||
define('OGP_LANG_add_folder_info', "Napišite naziv nove mape, a zatim kliknite ikonu.");
|
||||
define('OGP_LANG_valid_user', "Molimo vas navedite važećeg korisnika.");
|
||||
define('OGP_LANG_valid_group', "Molimo vas navedite valjanu grupu.");
|
||||
define('OGP_LANG_set_affinity', "Postavite CPU Servera");
|
||||
define('OGP_LANG_cpu_affinity_info', "Odaberite jezgru CPU-(a) koju želite dodijeliti serveru.");
|
||||
define('OGP_LANG_expiration_date_changed', "Datum isteka odabranog servera je promijenjen.");
|
||||
define('OGP_LANG_expiration_date_could_not_be_changed', "Nije moguće mijenjati datum isteka odabranog servera.");
|
||||
define('OGP_LANG_search', "Tražiti");
|
||||
define('OGP_LANG_ftp_account_username_too_long', "FTP korisničko ime je predugo. Isprobajte kraće korisničko ime najviše 20 znakova.");
|
||||
define('OGP_LANG_ftp_account_password_too_long', "FTP lozinka je predugačka. Isprobajte kraću lozinku koja nije duža od 20 znakova.");
|
||||
define('OGP_LANG_other_servers_exist_with_path_please_change', "Drugi serveri postoje s istim putanjem. Preporuča se (ali ne i potreban) da ovo putanje promijenite u nešto jedinstveno. Možete imati problema ako to ne učinite.");
|
||||
define('OGP_LANG_change_access_rights_for_selected_servers', "Promijenite prava pristupa za odabrane servere");
|
||||
define('LANG_add_mods_note', "Možete dodati modove nakon dodavanja servera korisniku. To se može učiniti uređivanjem servera.");
|
||||
define('LANG_game_servers', "Serveri");
|
||||
define('LANG_game_path', "Putanje Igre");
|
||||
define('LANG_game_path_info', "Apsolutno putanje servera. Primjer: /home/ogpbot/OGP_User_Files / My_Server");
|
||||
define('LANG_game_server_name_info', "Ime servera pomaže korisnicima da identificiraju svoje servere.");
|
||||
define('LANG_control_password', "Upravljačka lozinka");
|
||||
define('LANG_control_password_info', "Ova se lozinka koristi za kontrolu servera, kao što je RCON lozinka. Ako je lozinka prazna, upotrebljavaju se druga sredstva.");
|
||||
define('LANG_add_game_home', "Dodati Igru");
|
||||
define('LANG_game_path_empty', "Putanje igre ne smije biti prazna.");
|
||||
define('LANG_game_home_added', "Igrica je uspješno dodana. Preusmjeravanje na stranicu uređivanja Home-a.");
|
||||
define('LANG_failed_to_add_home_to_db', "Dodavanje Home-a u bazu podataka nije uspjelo. Pogreška: %s");
|
||||
define('LANG_caution_agent_offline_can_not_get_os_and_arch_showing_servers_for_all_platforms', "<b>Oprez!</b>Agent je izvan mreže, ne može dobiti vrstu i arhitekturu OS-a,<br> Prikaz servera za sve platforme:");
|
||||
define('LANG_select_remote_server', "Odaberite Udaljeni Server");
|
||||
define('LANG_no_remote_servers_configured', "Nijedan udaljeni poslužitelj nije konfiguriran za Open Game Panel. Najprije morate dodati udaljene poslužitelje pa tek onda možete korisnicima dizati servere.");
|
||||
define('LANG_no_game_configurations_found', "Nije pronađena konfiguracija igre. Morate dodati konfiguracije igara iz");
|
||||
define('LANG_game_configurations', "> stranice za konfiguraciju igre");
|
||||
define('LANG_add_remote_server', "Dodati Server");
|
||||
define('LANG_wine_games', "Vinske Igre");
|
||||
define('LANG_home_path', "Putanje direktorija");
|
||||
define('LANG_change_home_info', "Mjesto instaliranog servera. Primjer: /home/ogp/my_server/");
|
||||
define('LANG_game_server_name', "Naziv Servera");
|
||||
define('LANG_change_name_info', "Mjesto instaliranog servera. Naziv servera koji korisnicima olakšava identifikaciju.");
|
||||
define('LANG_game_control_password', "Kontrolna lozinka za igru");
|
||||
define('LANG_change_control_password_info', "Kontrolna lozinka je npr. Lozinka za rcon.");
|
||||
define('LANG_available_mods', "Dostupni Modovi");
|
||||
define('LANG_note_no_mods', "Nema dostupnih mod(a) za ovu igru.");
|
||||
define('LANG_change_home', "Promjeni Direktorij");
|
||||
define('LANG_change_control_password', "Promjeniti Kontrolnu Lozinku");
|
||||
define('LANG_change_name', "Promijeniti Naziv");
|
||||
define('LANG_add_mod', "Dodajte Mod");
|
||||
define('LANG_set_ip', "Postavite IP");
|
||||
define('LANG_ips_and_ports', "IP adrese i Portovi");
|
||||
define('LANG_mod_name', "Naziv Moda");
|
||||
define('LANG_max_players', "Maksimalno Igrača");
|
||||
define('LANG_extra_cmd_line_args', "Dodatni naredbeni redak");
|
||||
define('LANG_extra_cmd_line_info', "Dodatna naredba linija omogućuje način unosa dodatnih argumenata u naredbu za igru kada se pokrene.");
|
||||
define('LANG_cpu_affinity', "CPU");
|
||||
define('LANG_nice_level', "Uljepšavanje Razine");
|
||||
define('LANG_set_options', "Postavite Opcije");
|
||||
define('LANG_remove_mod', "Ukloniti Mod");
|
||||
define('LANG_mods', "Modovi");
|
||||
define('LANG_ip', "IP");
|
||||
define('LANG_port', "Port");
|
||||
define('LANG_no_ip_ports_assigned', "Najmanje jedan IP: Port par mora biti dodijeljen serveru.");
|
||||
define('LANG_successfully_assigned_ip_port', "Uspješno dodijeljen IP: Port serveru.");
|
||||
define('LANG_port_range_error', "Port mora biti između raspona 0 i 65535.");
|
||||
define('LANG_failed_to_assing_mod_to_home', "Dodjeljivanje moda s ID-om %d nije uspjelo.");
|
||||
define('LANG_successfully_assigned_mod_to_home', "Uspješno dodijeljen mod sa ID %d serveru.");
|
||||
define('LANG_successfully_modified_mod', "Uspješno izmijenjene informacije o modu.");
|
||||
define('LANG_back_to_game_monitor', "Natrag na Monitor Igara");
|
||||
define('LANG_back_to_game_servers', "Natrag na Igrice");
|
||||
define('LANG_user_id_main', "Glavni Vlasnik");
|
||||
define('LANG_change_user_id_main', "Promijenite glavnog vlasnika");
|
||||
define('LANG_change_user_id_main_info', "Glavni Vlasnik Servera");
|
||||
define('LANG_server_ftp_password', "FTP lozinka");
|
||||
define('LANG_change_ftp_password', "Promijenite FTP lozinku");
|
||||
define('LANG_change_ftp_password_info', "Ovo je lozinka za prijavu na FTP poslužitelj za ovaj server.");
|
||||
define('LANG_Delete_old_user_assigned_homes', "Uklonite dodijelu servera trenutnim korisnicima.");
|
||||
define('LANG_editing_home_called', "Uređivanje Servera pod nazivom");
|
||||
define('LANG_control_password_updated_successfully', "Kontrolna lozinka uspješno ažurirana.");
|
||||
define('LANG_control_password_update_failed', "Ažuriranje kontrolne lozinke nije uspjelo");
|
||||
define('LANG_successfully_changed_game_server', "Uspješno promijenjene postavke.");
|
||||
define('LANG_error_ocurred_on_remote_server', "Došlo je do pogreške na udaljenom poslužitelju,");
|
||||
define('LANG_ftp_password_can_not_be_changed', "FTP lozinka ne može se mijenjati.");
|
||||
define('LANG_ftp_can_not_be_switched_on', "FTP se ne može uključiti.");
|
||||
define('LANG_ftp_can_not_be_switched_off', "FTP se ne može isključiti.");
|
||||
define('LANG_invalid_home_id_entered', "Unesen je nevažeći Home ID.");
|
||||
define('LANG_ip_port_already_in_use', "%s:%s je već u upotrebi. Odaberite neki drugi.");
|
||||
define('LANG_successfully_assigned_ip_port_to_server_id', "Uspješno dodijeljen %s:%s kod Home sa ID-om %s.");
|
||||
define('LANG_no_ip_addresses_configured', "Vaš server nema nikakve IP adrese koje su mu konfigurirane. Možete ih konfigurirati iz");
|
||||
define('LANG_server_page', "stranice servera");
|
||||
define('LANG_successfully_removed_mod', "Uspješno uklonjen mod igre.");
|
||||
define('LANG_warning_agent_offline_defaulting_CPU_count_to_1', "Upozorenje - Agent je izvan mreže, prebacivanje CPU-a na zadanom u 1.");
|
||||
define('LANG_mod_install_cmds', "Inst.Mod po Naredbi");
|
||||
define('LANG_cmds_for', "Naredbe za");
|
||||
define('LANG_preinstall_cmds', "Predinstalirajte Naredbe");
|
||||
define('LANG_postinstall_cmds', "Naredbe za Naknadnu Instalaciju");
|
||||
define('LANG_edit_preinstall_cmds', "Uređivanje Naredbi za Predinstaliranje");
|
||||
define('LANG_edit_postinstall_cmds', "Uređivanje naredbi za Naknadnu Instalaciju");
|
||||
define('LANG_save_as_default_for_this_mod', "Spremi kao zadano za ovaj mod");
|
||||
define('LANG_empty', "prazno");
|
||||
define('LANG_master_server_for_clon_update', "Master Server za lokalno ažuriranje");
|
||||
define('LANG_set_as_master_server', "Postaviti kao Master Server");
|
||||
define('LANG_set_as_master_server_for_local_clon_update', "Postaviti kao master server za lokalno ažuriranje");
|
||||
define('LANG_only_available_for', "Dostupno samo za '%s' za hosting na udaljenom poslužitelju nazvanom '%s'.");
|
||||
define('LANG_ftp_on', "Omogućiti FTP");
|
||||
define('LANG_ftp_off', "Onemogućiti FTP");
|
||||
define('LANG_change_ftp_account_status', "Promjena statusa FTP računa");
|
||||
define('LANG_change_ftp_account_status_info', "Jednom kada je FTP račun omogućen ili onemogućen, dodaje se ili uklanja iz FTP-ove baze podataka.");
|
||||
define('LANG_server_ftp_login', "FTP Prijava za Server");
|
||||
define('LANG_change_ftp_login_info', "Promijenite FTP prijavu s prilagođenim.");
|
||||
define('LANG_change_ftp_login', "Promjeniti FTP Prijavu");
|
||||
define('LANG_ftp_login_can_not_be_changed', "Nije moguće promijeniti FTP prijavu.");
|
||||
define('LANG_server_is_running_change_addresses_not_available', "Dok je server pokrenut, IP se ne može mijenjati.");
|
||||
define('LANG_change_game_type', "Promijeniti Vrstu Igre");
|
||||
define('LANG_change_game_type_info', "Promjenom tipa igre, trenutna konfiguracija moda bit će izbrisana.");
|
||||
define('LANG_force_mod_on_this_address', "Forsirajte mod na ovoj adresi");
|
||||
define('LANG_successfully_assigned_mod_to_address', "Uspješno dodijeljen mod adresi");
|
||||
define('LANG_switch_mods', "Prebaciti modove");
|
||||
define('LANG_switch_mod_for_address', "Prebaci mod za adresu %s");
|
||||
define('LANG_invalid_path', "Nevažeće putanje");
|
||||
define('LANG_add_new_game_home', "Dodajte novu igru");
|
||||
define('LANG_no_game_homes_found', "Nisu pronađene igre");
|
||||
define('LANG_available_game_homes', "Dostupne igre");
|
||||
define('LANG_home_id', "ID Servera");
|
||||
define('LANG_game_server', "IP Servera");
|
||||
define('LANG_game_type', "Vrsta Igre");
|
||||
define('LANG_game_home', "Putanje Servera");
|
||||
define('LANG_game_home_name', "Naziv Servera");
|
||||
define('LANG_clone', "Klonirati");
|
||||
define('LANG_unassign', "Ukloniti Server");
|
||||
define('LANG_access_rights', "Prava pristupa");
|
||||
define('LANG_assigned_homes', "Trenutni Dodijeljeni Serveri");
|
||||
define('LANG_assign', "Dodijeliti");
|
||||
define('LANG_allow_updates', "Dopustiti Ažuriranja Igre");
|
||||
define('LANG_allow_updates_info', "Omogućuje korisniku ažuriranje instalacije igre ako je to moguće.");
|
||||
define('LANG_allow_file_management', "Dopustiti Upravljanje Datotekama");
|
||||
define('LANG_allow_file_management_info', "Omogućuje korisniku pristup serveru s modulima za upravljanje datotekama.");
|
||||
define('LANG_allow_parameter_usage', "Dopustiti Upotrebu Parametara");
|
||||
define('LANG_allow_parameter_usage_info', "Omogućuje korisniku promjenu dostupnih parametara naredbenog retka.");
|
||||
define('LANG_allow_extra_params', "Dopustiti Dodatne Parametre");
|
||||
define('LANG_allow_extra_params_info', "Korisniku omogućuje izmjenu dodatnih parametara naredbenog retka.");
|
||||
define('LANG_allow_ftp', "Dopustiti FTP Upotrebu");
|
||||
define('LANG_allow_ftp_info', "Pokažite informacije za FTP pristup korisniku.");
|
||||
define('LANG_allow_custom_fields', "Dopustiti Prilagodljiva Polja");
|
||||
define('LANG_allow_custom_fields_info', "Korisnicima omogućuje pristup prilagođenim poljima servera ako ih ima.");
|
||||
define('LANG_select_home', "Odaberite Server za Dodjelivanje");
|
||||
define('LANG_assign_new_home_to_user', "Dodijelivanje Novi Server korisniku %s");
|
||||
define('LANG_assign_new_home_to_group', "Dodijelivanje Novi Server grupi %s");
|
||||
define('LANG_assigned_home_to_user', "Uspješno dodijeljen server (ID: %d) korisniku %s.");
|
||||
define('LANG_failed_to_assign_home_to_user', "Nije uspjelo dodijeljivanje servera (ID: %d) korisniku %s.");
|
||||
define('LANG_assigned_home_to_group', "Uspješno dodijeljen server (ID: %d) grupi%s.");
|
||||
define('LANG_unassigned_home_from_user', "Uspješno uklonjen server (ID: %d) od korisnika %s.");
|
||||
define('LANG_unassigned_home_from_group', "Uspješno uklonjen server (ID: %d) od grupe %s.");
|
||||
define('LANG_no_homes_assigned_to_user', "Nema dodijeljenih servera za korisnika %s.");
|
||||
define('LANG_no_homes_assigned_to_group', "Nema dodijeljenih servera za grupu %s.");
|
||||
define('LANG_no_more_homes_available_that_can_be_assigned_for_this_user', "Nema više dostupnih servera koji se mogu dodijeliti ovom korisniku");
|
||||
define('LANG_no_more_homes_available_that_can_be_assigned_for_this_group', "Nema više dostupnih servera koji se mogu dodijeliti ovoj grupi");
|
||||
define('LANG_you_can_add_a_new_game_server_from', "Možete dodati novu igru iz %s.");
|
||||
define('LANG_no_remote_servers_available_please_add_at_least_one', "Nemamo dostupnih udaljenih poslužitelja, molimo dodajte najmanje jedan!");
|
||||
define('LANG_cloning_of_home_failed', "Kloniranje servera sa ID-om '%s' nije uspjelo.");
|
||||
define('LANG_no_mods_to_clone', "Još nema omogućenih mod(a) za ovu igru. Nije moguće klonirati.");
|
||||
define('LANG_failed_to_add_mod', "Nije uspjelo dodavanje moda sa ID-om '%s' serveru sa ID-om '%s'.");
|
||||
define('LANG_failed_to_update_mod_settings', "Ažuriranje mod postavki za server sa ID-om '%s' nije uspjelo.");
|
||||
define('LANG_successfully_cloned_mods', "Uspješno kloniran mod za server sa ID-om '%s'.");
|
||||
define('LANG_successfully_copied_home_database', "Uspješno kopiran Direktorij baze podataka.");
|
||||
define('LANG_copying_home_remotely', "Kopiranje Servera na udaljenom poslužitelju od '%s' na '%s'.");
|
||||
define('LANG_cloning_home', "Kloniranje Servera pod nazivom '%s'.");
|
||||
define('LANG_current_home_path', "Trenutni Direktorij Servera");
|
||||
define('LANG_current_home_path_info', "Trenutni lokacija kopiranog Servera na udaljenom poslužitelju.");
|
||||
define('LANG_clone_home', "Klonirati Server");
|
||||
define('LANG_new_home_name', "Novi Naziv Servera");
|
||||
define('LANG_new_home_path', "Novo putanje Servera");
|
||||
define('LANG_agent_ip', "IP Agenta");
|
||||
define('LANG_game_server_copy_is_running', "Kopiranje servera se izvodi ...");
|
||||
define('LANG_game_server_copy_was_successful', "Kopiranje servera bilo je uspješno");
|
||||
define('LANG_game_server_copy_failed_with_return_code', "Kopija servera nije uspjela s povratnim kodom %s");
|
||||
define('LANG_clone_mods', "Klonirati Modove");
|
||||
define('LANG_game_server_owner', "Vlasnik Servera");
|
||||
define('LANG_the_name_of_the_server_to_help_users_to_identify_it', "Naziv servera koji korisnicima olakšava identifikaciju.");
|
||||
define('LANG_ips_and_ports_used_in_this_home', "IP adrese i portovi koji se koriste u ovom serveru");
|
||||
define('LANG_note_ips_and_ports_are_not_cloned', "Napomena - IP adrese i portovi neče bit klonirani");
|
||||
define('LANG_mods_and_settings_for_this_game_server', "Modovi i postavke za ovaj server");
|
||||
define('LANG_sure_to_delete_serverid_from_remoteip_and_directory', "Jeste li sigurni da želite izbrisati server (ID: %s) s poslužitelja %s i direktorij %s");
|
||||
define('LANG_yes_and_delete_the_files', "Da i Izbriši datoteke");
|
||||
define('LANG_failed_to_remove_gamehome_from_database', "Uklanjanje direktorij servera iz baze podataka nije uspjelo.");
|
||||
define('LANG_successfully_deleted_game_server_with_id', "Uspješno izbrisan server sa ID-om %s.");
|
||||
define('LANG_failed_to_remove_ftp_account_from_remote_server', "Neuspješno uklanjanje FTP računa s udaljenog poslužitelja.");
|
||||
define('LANG_remove_it_anyway', "Želite li ga ipak ukloniti?");
|
||||
define('LANG_sucessfully_deleted', "Uspješno izbrisan %s");
|
||||
define('LANG_the_agent_had_a_problem_deleting', "Agent je imao problema prilikom brisanja %s. Molimo vas, provjerite zapisnik agenta.");
|
||||
define('LANG_connection_timeout_or_problems_reaching_the_agent', "Vremenski prekid veze ili problemi s dosezanjem Agenta");
|
||||
define('LANG_does_not_exist_yet', "Još ne postoji.");
|
||||
define('LANG_update_settings', "Ažurirati postavke");
|
||||
define('LANG_settings_updated', "Postavke su ažurirane");
|
||||
define('LANG_selected_path_already_in_use', "Odabrano putanje je već u uporabi.");
|
||||
define('LANG_browse', "Tražiti");
|
||||
define('LANG_cancel', "Otkazati");
|
||||
define('LANG_set_this_path', "Postaviti ovo putanje");
|
||||
define('LANG_select_home_path', "Odaberite putanje ");
|
||||
define('LANG_folder', "Mapa");
|
||||
define('LANG_owner', "Vlasnik");
|
||||
define('LANG_group', "Grupa");
|
||||
define('LANG_level_up', "Viša razina");
|
||||
define('LANG_level_up_info', "Vratiti se na prethodnu mapu.");
|
||||
define('LANG_add_folder', "Dodati Mapu");
|
||||
define('LANG_add_folder_info', "Napišite naziv nove mape, a zatim kliknite ikonu.");
|
||||
define('LANG_valid_user', "Molimo vas navedite važećeg korisnika.");
|
||||
define('LANG_valid_group', "Molimo vas navedite valjanu grupu.");
|
||||
define('LANG_set_affinity', "Postavite CPU Servera");
|
||||
define('LANG_cpu_affinity_info', "Odaberite jezgru CPU-(a) koju želite dodijeliti serveru.");
|
||||
define('LANG_expiration_date_changed', "Datum isteka odabranog servera je promijenjen.");
|
||||
define('LANG_expiration_date_could_not_be_changed', "Nije moguće mijenjati datum isteka odabranog servera.");
|
||||
define('LANG_search', "Tražiti");
|
||||
define('LANG_ftp_account_username_too_long', "FTP korisničko ime je predugo. Isprobajte kraće korisničko ime najviše 20 znakova.");
|
||||
define('LANG_ftp_account_password_too_long', "FTP lozinka je predugačka. Isprobajte kraću lozinku koja nije duža od 20 znakova.");
|
||||
define('LANG_other_servers_exist_with_path_please_change', "Drugi serveri postoje s istim putanjem. Preporuča se (ali ne i potreban) da ovo putanje promijenite u nešto jedinstveno. Možete imati problema ako to ne učinite.");
|
||||
define('LANG_change_access_rights_for_selected_servers', "Promijenite prava pristupa za odabrane servere");
|
||||
?>
|
||||
|
|
@ -22,104 +22,104 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_module_name', "Brze Usluge za Igrice");
|
||||
define('OGP_LANG_ping', "Ping");
|
||||
define('OGP_LANG_traceroute', "Trag Rute");
|
||||
define('OGP_LANG_network_tools', "Mrežni Alati");
|
||||
define('OGP_LANG_sourcemod_admins', "Sourcemod Admini");
|
||||
define('OGP_LANG_steam_converter', "SteamID Konverter");
|
||||
define('OGP_LANG_your_ip', "Vaša IP Adresa");
|
||||
define('OGP_LANG_loading_agents', "Učitavanje Agenata koji su na mreži...");
|
||||
define('OGP_LANG_loading_failed', "Učitavanje Agenata nije uspjelo.");
|
||||
define('OGP_LANG_agents_offline', "Svi Agenti su izvan mreže.");
|
||||
define('OGP_LANG_no_commands', "Žao nam je, vaš korisnički račun nema dostupne naredbe.");
|
||||
define('OGP_LANG_remote_target', "Ciljane IP Adrese:");
|
||||
define('OGP_LANG_command', "Naredba:");
|
||||
define('OGP_LANG_select_agent', "Odaberite Agent");
|
||||
define('OGP_LANG_chdir_failed', "Pogreška: chdir () je vraćen neispravno.");
|
||||
define('OGP_LANG_agent_invalid', "Navedeno je nevažeći Agent.");
|
||||
define('OGP_LANG_networktools_agent_offline', "Nije moguće izvršiti naredbu na odabranom Agentu jer je izvan mreže.");
|
||||
define('OGP_LANG_target_empty', "Nije dodjeljen udaljeni cilj.");
|
||||
define('OGP_LANG_command_empty', "Nije odabrana nijedna naredba.");
|
||||
define('OGP_LANG_command_unavilable', "Odabrana naredba nije dostupna na odabranom Agentu.");
|
||||
define('OGP_LANG_target_invalid', "Uneseni su nevažeći IP/Naziv poslužitelja.");
|
||||
define('OGP_LANG_exec_failed', "Isteklo vrijeme dok ste čekali za odgovor.");
|
||||
define('OGP_LANG_command_no_access', "Nemate pristup toj naredbi. Ovaj događaj će biti zapisan u zapisniku.");
|
||||
define('OGP_LANG_command_hacking_attempt', "Uneseni su znakovi koji se nalaze na crnoj listi. Ovaj događaj će biti zapisan u zapisniku.");
|
||||
define('OGP_LANG_command_bad_characters', "Pokušalo se izvršiti naredba zlonamjernim znakovima. Primljeni unos: %s %s");
|
||||
define('OGP_LANG_command_no_permissions', "Pokušalo se izvršiti naredba s nedovoljnim dozvolama. Primljeni unos: %s %s");
|
||||
define('OGP_LANG_command_executed', "Uspješno je poslana sljedeća naredba: %s %s");
|
||||
define('OGP_LANG_no_servers', "Na vašem računu nije dodjeljen nijedan server.");
|
||||
define('OGP_LANG_select_server', "Odaberite Server:");
|
||||
define('OGP_LANG_select_server_option', "Odabrati...");
|
||||
define('OGP_LANG_steamid', "Steam ID:");
|
||||
define('OGP_LANG_immunity', "Imunitet:");
|
||||
define('OGP_LANG_sourcemod_perms', "Sourcemod Privilegije:");
|
||||
define('OGP_LANG_sourcemod_perm_root', "Sourcemod Root Privilegije");
|
||||
define('OGP_LANG_sourcemod_perm_custom', "Sourcemod Određene Privilegije");
|
||||
define('OGP_LANG_sourcemod_flag_a', "A - Reserved slot access.");
|
||||
define('OGP_LANG_sourcemod_flag_b', "B - Generic admin; required for admins.");
|
||||
define('OGP_LANG_sourcemod_flag_c', "C - Kick other players.");
|
||||
define('OGP_LANG_sourcemod_flag_d', "D - Ban other players.");
|
||||
define('OGP_LANG_sourcemod_flag_e', "E - Remove bans.");
|
||||
define('OGP_LANG_sourcemod_flag_f', "F - Slay/harm other players.");
|
||||
define('OGP_LANG_sourcemod_flag_g', "G - Change the map or major gameplay features.");
|
||||
define('OGP_LANG_sourcemod_flag_h', "H - Change most CVARs.");
|
||||
define('OGP_LANG_sourcemod_flag_i', "I - Execute config files.");
|
||||
define('OGP_LANG_sourcemod_flag_j', "J - Special chat privileges.");
|
||||
define('OGP_LANG_sourcemod_flag_k', "K - Start or create votes.");
|
||||
define('OGP_LANG_sourcemod_flag_l', "L - Set a password on the server.");
|
||||
define('OGP_LANG_sourcemod_flag_m', "M - Use RCON commands.");
|
||||
define('OGP_LANG_sourcemod_flag_n', "N - Change sv_cheats or use cheating commands.");
|
||||
define('OGP_LANG_sourcemod_flag_o', "O - Custom Group 1.");
|
||||
define('OGP_LANG_sourcemod_flag_p', "P - Custom Group 2.");
|
||||
define('OGP_LANG_sourcemod_flag_q', "Q - Custom Group 3.");
|
||||
define('OGP_LANG_sourcemod_flag_r', "R - Custom Group 4.");
|
||||
define('OGP_LANG_sourcemod_flag_s', "S - Custom Group 5.");
|
||||
define('OGP_LANG_sourcemod_flag_t', "T - Custom Group 6.");
|
||||
define('OGP_LANG_rcon_reload_admins_failed', "Nije uspjelo ponovno učitavanje administratorske predmemorije putem RCON-a; je li on online?");
|
||||
define('OGP_LANG_reload_admins_failed', "Nije uspjelo ponovno učitavanje administratorske predmemorije; \"sm_reloadadmins\" je nepoznata naredba.");
|
||||
define('OGP_LANG_reload_admins_success', "Uspješno ste dodali %s na admins_simple.ini i ponovno učitao administratorsku predmemoriju.");
|
||||
define('OGP_LANG_add_success_no_rcon', "Uspješno ste dodali %s u datoteku admins_simple.ini, ali ne možete ponovo učitati administratorsku predmemoriju.");
|
||||
define('OGP_LANG_writefile_error', "Došlo je do nepoznate pogreške u pisanju na: %s");
|
||||
define('OGP_LANG_remotefile_nonexistent', "Nije moguće dodati novog Admina. Administratorska datoteka: %s ne postoji na ovom serveru.");
|
||||
define('OGP_LANG_empty_flag_list', "Niste odabrali nijednu Vip/Admin privilegiju.");
|
||||
define('OGP_LANG_invalid_steam_format', "SteamID koji ste unijeli ne odgovara potrebnom uzorku.");
|
||||
define('OGP_LANG_selected_server_offline', "Nije moguće dodati Admina, Agent koji kontrolira odabrani server je izvan mreže.");
|
||||
define('OGP_LANG_malformed_form', "Poslali ste obrazac s nepravilnim skrivenim elementima - ne možete dodati Admina.");
|
||||
define('OGP_LANG_empty_form_data', "Ispunite sve elemente obrasca.");
|
||||
define('OGP_LANG_server_not_selected', "Niste odabrali Server.");
|
||||
define('OGP_LANG_invalid_steamid', "Unijeli ste nevažeći Steam ID.");
|
||||
define('OGP_LANG_invalid_immunity', "Unijeli ste nevažeću vrijednost imuniteta.");
|
||||
define('OGP_LANG_submit', "Potvrditi");
|
||||
define('OGP_LANG_post_failed', "POST akcija nije uspjela. Nije moguće dobiti odgovor.");
|
||||
define('OGP_LANG_amx_mod_admins', "AMX mod X Admini");
|
||||
define('OGP_LANG_amx_login_type', "Način Prijave");
|
||||
define('OGP_LANG_amx_login_steamid', "Steam ID");
|
||||
define('OGP_LANG_amx_login_nick_pass', "Nadimak + Lozinka");
|
||||
define('OGP_LANG_nickname', "Nadimak");
|
||||
define('OGP_LANG_amx_mod_perms', "AMX mod X Dozvole:");
|
||||
define('OGP_LANG_amx_mod_perm_root', "AMX mod X Sve Privilegije");
|
||||
define('OGP_LANG_amx_mod_perm_custom', "AMX mod X Određene Privilegije");
|
||||
define('OGP_LANG_amx_mod_flag_a', "A - immunity (can't be kicked/baned/slayed/slaped and affected by other commmands)");
|
||||
define('OGP_LANG_amx_mod_flag_b', "B - reservation (can join on reserved slots)");
|
||||
define('OGP_LANG_amx_mod_flag_c', "C - amx_kick command");
|
||||
define('OGP_LANG_amx_mod_flag_d', "D - amx_ban and amx_unban commands");
|
||||
define('OGP_LANG_amx_mod_flag_e', "E - amx_slay and amx_slap commands");
|
||||
define('OGP_LANG_amx_mod_flag_f', "F - amx_map command");
|
||||
define('OGP_LANG_amx_mod_flag_g', "G - amx_cvar command (not all cvars will be available)");
|
||||
define('OGP_LANG_amx_mod_flag_h', "H - amx_cfg command");
|
||||
define('OGP_LANG_amx_mod_flag_i', "I - amx_chat and other chat commands");
|
||||
define('OGP_LANG_amx_mod_flag_j', "J - amx_vote and other vote commands");
|
||||
define('OGP_LANG_amx_mod_flag_k', "K - access to sv_password cvar (by amx_cvar command)");
|
||||
define('OGP_LANG_amx_mod_flag_l', "L - access to amx_rcon command and rcon_password cvar (by amx_cvar command)");
|
||||
define('OGP_LANG_amx_mod_flag_m', "M - custom level A (for additional plugins)");
|
||||
define('OGP_LANG_amx_mod_flag_n', "N - custom level B");
|
||||
define('OGP_LANG_amx_mod_flag_o', "O - custom level C");
|
||||
define('OGP_LANG_amx_mod_flag_p', "P - custom level D");
|
||||
define('OGP_LANG_amx_mod_flag_q', "Q - custom level E");
|
||||
define('OGP_LANG_amx_mod_flag_r', "R - custom level F");
|
||||
define('OGP_LANG_amx_mod_flag_s', "S - custom level G");
|
||||
define('OGP_LANG_amx_mod_flag_t', "T - custom level H");
|
||||
define('OGP_LANG_amx_mod_flag_u', "U - menu access");
|
||||
define('LANG_module_name', "Brze Usluge za Igrice");
|
||||
define('LANG_ping', "Ping");
|
||||
define('LANG_traceroute', "Trag Rute");
|
||||
define('LANG_network_tools', "Mrežni Alati");
|
||||
define('LANG_sourcemod_admins', "Sourcemod Admini");
|
||||
define('LANG_steam_converter', "SteamID Konverter");
|
||||
define('LANG_your_ip', "Vaša IP Adresa");
|
||||
define('LANG_loading_agents', "Učitavanje Agenata koji su na mreži...");
|
||||
define('LANG_loading_failed', "Učitavanje Agenata nije uspjelo.");
|
||||
define('LANG_agents_offline', "Svi Agenti su izvan mreže.");
|
||||
define('LANG_no_commands', "Žao nam je, vaš korisnički račun nema dostupne naredbe.");
|
||||
define('LANG_remote_target', "Ciljane IP Adrese:");
|
||||
define('LANG_command', "Naredba:");
|
||||
define('LANG_select_agent', "Odaberite Agent");
|
||||
define('LANG_chdir_failed', "Pogreška: chdir () je vraćen neispravno.");
|
||||
define('LANG_agent_invalid', "Navedeno je nevažeći Agent.");
|
||||
define('LANG_networktools_agent_offline', "Nije moguće izvršiti naredbu na odabranom Agentu jer je izvan mreže.");
|
||||
define('LANG_target_empty', "Nije dodjeljen udaljeni cilj.");
|
||||
define('LANG_command_empty', "Nije odabrana nijedna naredba.");
|
||||
define('LANG_command_unavilable', "Odabrana naredba nije dostupna na odabranom Agentu.");
|
||||
define('LANG_target_invalid', "Uneseni su nevažeći IP/Naziv poslužitelja.");
|
||||
define('LANG_exec_failed', "Isteklo vrijeme dok ste čekali za odgovor.");
|
||||
define('LANG_command_no_access', "Nemate pristup toj naredbi. Ovaj događaj će biti zapisan u zapisniku.");
|
||||
define('LANG_command_hacking_attempt', "Uneseni su znakovi koji se nalaze na crnoj listi. Ovaj događaj će biti zapisan u zapisniku.");
|
||||
define('LANG_command_bad_characters', "Pokušalo se izvršiti naredba zlonamjernim znakovima. Primljeni unos: %s %s");
|
||||
define('LANG_command_no_permissions', "Pokušalo se izvršiti naredba s nedovoljnim dozvolama. Primljeni unos: %s %s");
|
||||
define('LANG_command_executed', "Uspješno je poslana sljedeća naredba: %s %s");
|
||||
define('LANG_no_servers', "Na vašem računu nije dodjeljen nijedan server.");
|
||||
define('LANG_select_server', "Odaberite Server:");
|
||||
define('LANG_select_server_option', "Odabrati...");
|
||||
define('LANG_steamid', "Steam ID:");
|
||||
define('LANG_immunity', "Imunitet:");
|
||||
define('LANG_sourcemod_perms', "Sourcemod Privilegije:");
|
||||
define('LANG_sourcemod_perm_root', "Sourcemod Root Privilegije");
|
||||
define('LANG_sourcemod_perm_custom', "Sourcemod Određene Privilegije");
|
||||
define('LANG_sourcemod_flag_a', "A - Reserved slot access.");
|
||||
define('LANG_sourcemod_flag_b', "B - Generic admin; required for admins.");
|
||||
define('LANG_sourcemod_flag_c', "C - Kick other players.");
|
||||
define('LANG_sourcemod_flag_d', "D - Ban other players.");
|
||||
define('LANG_sourcemod_flag_e', "E - Remove bans.");
|
||||
define('LANG_sourcemod_flag_f', "F - Slay/harm other players.");
|
||||
define('LANG_sourcemod_flag_g', "G - Change the map or major gameplay features.");
|
||||
define('LANG_sourcemod_flag_h', "H - Change most CVARs.");
|
||||
define('LANG_sourcemod_flag_i', "I - Execute config files.");
|
||||
define('LANG_sourcemod_flag_j', "J - Special chat privileges.");
|
||||
define('LANG_sourcemod_flag_k', "K - Start or create votes.");
|
||||
define('LANG_sourcemod_flag_l', "L - Set a password on the server.");
|
||||
define('LANG_sourcemod_flag_m', "M - Use RCON commands.");
|
||||
define('LANG_sourcemod_flag_n', "N - Change sv_cheats or use cheating commands.");
|
||||
define('LANG_sourcemod_flag_o', "O - Custom Group 1.");
|
||||
define('LANG_sourcemod_flag_p', "P - Custom Group 2.");
|
||||
define('LANG_sourcemod_flag_q', "Q - Custom Group 3.");
|
||||
define('LANG_sourcemod_flag_r', "R - Custom Group 4.");
|
||||
define('LANG_sourcemod_flag_s', "S - Custom Group 5.");
|
||||
define('LANG_sourcemod_flag_t', "T - Custom Group 6.");
|
||||
define('LANG_rcon_reload_admins_failed', "Nije uspjelo ponovno učitavanje administratorske predmemorije putem RCON-a; je li on online?");
|
||||
define('LANG_reload_admins_failed', "Nije uspjelo ponovno učitavanje administratorske predmemorije; \"sm_reloadadmins\" je nepoznata naredba.");
|
||||
define('LANG_reload_admins_success', "Uspješno ste dodali %s na admins_simple.ini i ponovno učitao administratorsku predmemoriju.");
|
||||
define('LANG_add_success_no_rcon', "Uspješno ste dodali %s u datoteku admins_simple.ini, ali ne možete ponovo učitati administratorsku predmemoriju.");
|
||||
define('LANG_writefile_error', "Došlo je do nepoznate pogreške u pisanju na: %s");
|
||||
define('LANG_remotefile_nonexistent', "Nije moguće dodati novog Admina. Administratorska datoteka: %s ne postoji na ovom serveru.");
|
||||
define('LANG_empty_flag_list', "Niste odabrali nijednu Vip/Admin privilegiju.");
|
||||
define('LANG_invalid_steam_format', "SteamID koji ste unijeli ne odgovara potrebnom uzorku.");
|
||||
define('LANG_selected_server_offline', "Nije moguće dodati Admina, Agent koji kontrolira odabrani server je izvan mreže.");
|
||||
define('LANG_malformed_form', "Poslali ste obrazac s nepravilnim skrivenim elementima - ne možete dodati Admina.");
|
||||
define('LANG_empty_form_data', "Ispunite sve elemente obrasca.");
|
||||
define('LANG_server_not_selected', "Niste odabrali Server.");
|
||||
define('LANG_invalid_steamid', "Unijeli ste nevažeći Steam ID.");
|
||||
define('LANG_invalid_immunity', "Unijeli ste nevažeću vrijednost imuniteta.");
|
||||
define('LANG_submit', "Potvrditi");
|
||||
define('LANG_post_failed', "POST akcija nije uspjela. Nije moguće dobiti odgovor.");
|
||||
define('LANG_amx_mod_admins', "AMX mod X Admini");
|
||||
define('LANG_amx_login_type', "Način Prijave");
|
||||
define('LANG_amx_login_steamid', "Steam ID");
|
||||
define('LANG_amx_login_nick_pass', "Nadimak + Lozinka");
|
||||
define('LANG_nickname', "Nadimak");
|
||||
define('LANG_amx_mod_perms', "AMX mod X Dozvole:");
|
||||
define('LANG_amx_mod_perm_root', "AMX mod X Sve Privilegije");
|
||||
define('LANG_amx_mod_perm_custom', "AMX mod X Određene Privilegije");
|
||||
define('LANG_amx_mod_flag_a', "A - immunity (can't be kicked/baned/slayed/slaped and affected by other commmands)");
|
||||
define('LANG_amx_mod_flag_b', "B - reservation (can join on reserved slots)");
|
||||
define('LANG_amx_mod_flag_c', "C - amx_kick command");
|
||||
define('LANG_amx_mod_flag_d', "D - amx_ban and amx_unban commands");
|
||||
define('LANG_amx_mod_flag_e', "E - amx_slay and amx_slap commands");
|
||||
define('LANG_amx_mod_flag_f', "F - amx_map command");
|
||||
define('LANG_amx_mod_flag_g', "G - amx_cvar command (not all cvars will be available)");
|
||||
define('LANG_amx_mod_flag_h', "H - amx_cfg command");
|
||||
define('LANG_amx_mod_flag_i', "I - amx_chat and other chat commands");
|
||||
define('LANG_amx_mod_flag_j', "J - amx_vote and other vote commands");
|
||||
define('LANG_amx_mod_flag_k', "K - access to sv_password cvar (by amx_cvar command)");
|
||||
define('LANG_amx_mod_flag_l', "L - access to amx_rcon command and rcon_password cvar (by amx_cvar command)");
|
||||
define('LANG_amx_mod_flag_m', "M - custom level A (for additional plugins)");
|
||||
define('LANG_amx_mod_flag_n', "N - custom level B");
|
||||
define('LANG_amx_mod_flag_o', "O - custom level C");
|
||||
define('LANG_amx_mod_flag_p', "P - custom level D");
|
||||
define('LANG_amx_mod_flag_q', "Q - custom level E");
|
||||
define('LANG_amx_mod_flag_r', "R - custom level F");
|
||||
define('LANG_amx_mod_flag_s', "S - custom level G");
|
||||
define('LANG_amx_mod_flag_t', "T - custom level H");
|
||||
define('LANG_amx_mod_flag_u', "U - menu access");
|
||||
?>
|
||||
|
|
@ -22,122 +22,122 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_lang_charset', "UTF-8");
|
||||
define('OGP_LANG_already_logged_in_redirecting_to_dashboard', "Jste již přihlášeni, přesměrování na panel Dashboard.");
|
||||
define('OGP_LANG_logging_in', "Přihlášení");
|
||||
define('OGP_LANG_redirecting_in', "Přesměrování v");
|
||||
define('OGP_LANG_refresh_page', "Obnovit stránku");
|
||||
define('OGP_LANG_no_rights', "Nemáte práva na přístup k této stránce.");
|
||||
define('OGP_LANG_welcome', "Vítejte");
|
||||
define('OGP_LANG_logout', "Odhlásit se");
|
||||
define('OGP_LANG_logout_message', "Nyní jste odhlášeni.");
|
||||
define('OGP_LANG_support', "Podpora");
|
||||
define('OGP_LANG_password', "Heslo");
|
||||
define('OGP_LANG_login', "Uživatelské jméno");
|
||||
define('OGP_LANG_login_button', "Přihlásit se");
|
||||
define('OGP_LANG_solve_captcha', "Human Check");
|
||||
define('OGP_LANG_lost_passwd', "Zapomněli jste heslo?");
|
||||
define('OGP_LANG_no_db_connection', "Nelze se připojit k databázi.");
|
||||
define('OGP_LANG_bad_login', "Neplatné uživatelské jméno či heslo.");
|
||||
define('OGP_LANG_not_logged_in', "Nejste momentálně přihlášeni.");
|
||||
define('OGP_LANG_remove_install', "Odstraňte prosím soubor install.php z bezpečnostních důvodů.");
|
||||
define('OGP_LANG_agent_offline', "Agent, který ovládá tento server, je offline.");
|
||||
define('OGP_LANG_logged_in', "Jste přihlášen jako");
|
||||
define('OGP_LANG_delete', "Vymazat");
|
||||
define('OGP_LANG_edit', "Upravit");
|
||||
define('OGP_LANG_actions', "Akce");
|
||||
define('OGP_LANG_invalid_subpage', "Neplatná podstránka.");
|
||||
define('OGP_LANG_invalid_home_id', "Invalid home ID entered.");
|
||||
define('OGP_LANG_note', "POZNÁMKA");
|
||||
define('OGP_LANG_hint', "HINT");
|
||||
define('OGP_LANG_yes', "Ano");
|
||||
define('OGP_LANG_no', "Ne");
|
||||
define('OGP_LANG_on', "On");
|
||||
define('OGP_LANG_off', "Off");
|
||||
define('OGP_LANG_db_error_invalid_host', "Byl zadán neplatný databázový hostitel.");
|
||||
define('OGP_LANG_db_error_invalid_user_and_pass', "Neplatné uživatelské jméno nebo heslo databáze.");
|
||||
define('OGP_LANG_db_error_invalid_database', "Neplatná databáze.");
|
||||
define('OGP_LANG_db_unknown_error', "Unkown database error: %s");
|
||||
define('OGP_LANG_db_error_module_missing', "Požadovaný databázový modul PHP chybí.");
|
||||
define('OGP_LANG_db_error_invalid_db_type', "Neplatný typ databáze v konfiguračním souboru.");
|
||||
define('OGP_LANG_invalid_login_information', "Byly zadány neplatné přihlašovací údaje.");
|
||||
define('OGP_LANG_failed_to_read_config', "Nepodařilo se přečíst konfigurační soubor.");
|
||||
define('OGP_LANG_account_expired', "Platnost vašeho účtu vypršela.");
|
||||
define('OGP_LANG_contact_admin_to_enable_account', "Obraťte se na správce, aby znovu aktivoval váš účet.");
|
||||
define('OGP_LANG_maintenance_mode_on', "Režim údržby je zapnutý");
|
||||
define('OGP_LANG_logging_out_10', "Odhlásit se za 10 sekund");
|
||||
define('OGP_LANG_invalid_redirect', "Redirecting");
|
||||
define('OGP_LANG_login_title', "Připojení ovládacího panelu");
|
||||
define('OGP_LANG_module_not_installed', "Modul není nainstalován.");
|
||||
define('OGP_LANG_no_access_to_home', "You do not have access to this home.");
|
||||
define('OGP_LANG_not_available', "N/A");
|
||||
define('OGP_LANG_offline', "Offline");
|
||||
define('OGP_LANG_online', "Online");
|
||||
define('OGP_LANG_invalid_url', "Neplatná URL");
|
||||
define('OGP_LANG_xml_file_not_valid', "XML file '%s' could not be validated with schema '%s'.");
|
||||
define('OGP_LANG_unable_to_load_xml', "Unable to load XML file '%s'. Permission issue?");
|
||||
define('OGP_LANG_gamemanager', "Správce her");
|
||||
define('OGP_LANG_game_monitor', "Game Monitor");
|
||||
define('OGP_LANG_dashboard', "Dashboard");
|
||||
define('OGP_LANG_user_addons', "Addons");
|
||||
define('OGP_LANG_ftp', "FTP");
|
||||
define('OGP_LANG_shop', "Shop");
|
||||
define('OGP_LANG_shop_guest', "Shop");
|
||||
define('OGP_LANG_TS3Admin', "TS3 Admin");
|
||||
define('OGP_LANG_administration', "Administration");
|
||||
define('OGP_LANG_config_games', "Game/Mod Config");
|
||||
define('OGP_LANG_modulemanager', "Modules");
|
||||
define('OGP_LANG_server', "Servers");
|
||||
define('OGP_LANG_settings', "Panel Settings");
|
||||
define('OGP_LANG_themes', "Theme Settings");
|
||||
define('OGP_LANG_user_admin', "Users");
|
||||
define('OGP_LANG_sub_users', "Sub Users");
|
||||
define('OGP_LANG_show_groups', "Groups");
|
||||
define('OGP_LANG_user_games', "Game Servers");
|
||||
define('OGP_LANG_addons_manager', "Addons Manager");
|
||||
define('OGP_LANG_ftp_admin', "FTP users");
|
||||
define('OGP_LANG_orders', "Orders");
|
||||
define('OGP_LANG_services', "Services");
|
||||
define('OGP_LANG_shop_settings', "Shop Settings");
|
||||
define('OGP_LANG_update', "Update Panel");
|
||||
define('OGP_LANG_extras', "Extras");
|
||||
define('OGP_LANG_show', "Show");
|
||||
define('OGP_LANG_show_all', "Show All Servers");
|
||||
define('OGP_LANG_cur_theme', "%s Theme");
|
||||
define('OGP_LANG_copyright', "Copyright");
|
||||
define('OGP_LANG_all_rights_reserved', "All rights reserved");
|
||||
define('OGP_LANG_version', "Version");
|
||||
define('OGP_LANG_show_version', "Show Version");
|
||||
define('OGP_LANG_queries_executed', "queries executed");
|
||||
define('OGP_LANG_lang', "Language");
|
||||
define('OGP_LANG_get_size', "Show Size");
|
||||
define('OGP_LANG_total_size', "Total size");
|
||||
define('OGP_LANG_lgsl', "LGSL");
|
||||
define('OGP_LANG_lgsl_admin', "LGSL Admin");
|
||||
define('OGP_LANG_rcon', "RCON");
|
||||
define('OGP_LANG_watch_logger', "Watch Logger");
|
||||
define('OGP_LANG_litefm_settings', "LiteFM Settings");
|
||||
define('OGP_LANG_assign_expiration_date', "Assign expiration date");
|
||||
define('OGP_LANG_assign_expiration_date_info', "Once it expires the server is unassigned but not removed.");
|
||||
define('OGP_LANG_server_expiration_date', "Server expiration date");
|
||||
define('OGP_LANG_server_expiration_date_info', "Once it expires the server is removed (database and files).");
|
||||
define('OGP_LANG_set_expiration_date', "Set expiration date");
|
||||
define('OGP_LANG_admin_dsi', "DSi Settings");
|
||||
define('OGP_LANG_user_dsi', "DSi");
|
||||
define('OGP_LANG_list_dsi', "DSi List");
|
||||
define('OGP_LANG_no_remote_servers', "There is no known remote servers! Add a server to use this function.");
|
||||
define('OGP_LANG_no_results_found', "No search results found for %s");
|
||||
define('OGP_LANG_tickets', "Support Tickets");
|
||||
define('OGP_LANG_news', "News");
|
||||
define('OGP_LANG_admin_news', "News Admin");
|
||||
define('OGP_LANG_util', "Utilities");
|
||||
define('OGP_LANG_fast_download', "Fast Download");
|
||||
define('OGP_LANG_fd_user', "Fast Download");
|
||||
define('OGP_LANG_cron', "Cron Admin");
|
||||
define('OGP_LANG_user_cron', "Cron");
|
||||
define('OGP_LANG_faq', "F.A.Q.");
|
||||
define('OGP_LANG_mysql_admin', "MySQL Admin");
|
||||
define('OGP_LANG_copied', "Copied!");
|
||||
define('OGP_LANG_ticket_settings', "Ticket Settings");
|
||||
define('OGP_LANG_form', "Register");
|
||||
define('LANG_lang_charset', "UTF-8");
|
||||
define('LANG_already_logged_in_redirecting_to_dashboard', "Jste již přihlášeni, přesměrování na panel Dashboard.");
|
||||
define('LANG_logging_in', "Přihlášení");
|
||||
define('LANG_redirecting_in', "Přesměrování v");
|
||||
define('LANG_refresh_page', "Obnovit stránku");
|
||||
define('LANG_no_rights', "Nemáte práva na přístup k této stránce.");
|
||||
define('LANG_welcome', "Vítejte");
|
||||
define('LANG_logout', "Odhlásit se");
|
||||
define('LANG_logout_message', "Nyní jste odhlášeni.");
|
||||
define('LANG_support', "Podpora");
|
||||
define('LANG_password', "Heslo");
|
||||
define('LANG_login', "Uživatelské jméno");
|
||||
define('LANG_login_button', "Přihlásit se");
|
||||
define('LANG_solve_captcha', "Human Check");
|
||||
define('LANG_lost_passwd', "Zapomněli jste heslo?");
|
||||
define('LANG_no_db_connection', "Nelze se připojit k databázi.");
|
||||
define('LANG_bad_login', "Neplatné uživatelské jméno či heslo.");
|
||||
define('LANG_not_logged_in', "Nejste momentálně přihlášeni.");
|
||||
define('LANG_remove_install', "Odstraňte prosím soubor install.php z bezpečnostních důvodů.");
|
||||
define('LANG_agent_offline', "Agent, který ovládá tento server, je offline.");
|
||||
define('LANG_logged_in', "Jste přihlášen jako");
|
||||
define('LANG_delete', "Vymazat");
|
||||
define('LANG_edit', "Upravit");
|
||||
define('LANG_actions', "Akce");
|
||||
define('LANG_invalid_subpage', "Neplatná podstránka.");
|
||||
define('LANG_invalid_home_id', "Invalid home ID entered.");
|
||||
define('LANG_note', "POZNÁMKA");
|
||||
define('LANG_hint', "HINT");
|
||||
define('LANG_yes', "Ano");
|
||||
define('LANG_no', "Ne");
|
||||
define('LANG_on', "On");
|
||||
define('LANG_off', "Off");
|
||||
define('LANG_db_error_invalid_host', "Byl zadán neplatný databázový hostitel.");
|
||||
define('LANG_db_error_invalid_user_and_pass', "Neplatné uživatelské jméno nebo heslo databáze.");
|
||||
define('LANG_db_error_invalid_database', "Neplatná databáze.");
|
||||
define('LANG_db_unknown_error', "Unkown database error: %s");
|
||||
define('LANG_db_error_module_missing', "Požadovaný databázový modul PHP chybí.");
|
||||
define('LANG_db_error_invalid_db_type', "Neplatný typ databáze v konfiguračním souboru.");
|
||||
define('LANG_invalid_login_information', "Byly zadány neplatné přihlašovací údaje.");
|
||||
define('LANG_failed_to_read_config', "Nepodařilo se přečíst konfigurační soubor.");
|
||||
define('LANG_account_expired', "Platnost vašeho účtu vypršela.");
|
||||
define('LANG_contact_admin_to_enable_account', "Obraťte se na správce, aby znovu aktivoval váš účet.");
|
||||
define('LANG_maintenance_mode_on', "Režim údržby je zapnutý");
|
||||
define('LANG_logging_out_10', "Odhlásit se za 10 sekund");
|
||||
define('LANG_invalid_redirect', "Redirecting");
|
||||
define('LANG_login_title', "Připojení ovládacího panelu");
|
||||
define('LANG_module_not_installed', "Modul není nainstalován.");
|
||||
define('LANG_no_access_to_home', "You do not have access to this home.");
|
||||
define('LANG_not_available', "N/A");
|
||||
define('LANG_offline', "Offline");
|
||||
define('LANG_online', "Online");
|
||||
define('LANG_invalid_url', "Neplatná URL");
|
||||
define('LANG_xml_file_not_valid', "XML file '%s' could not be validated with schema '%s'.");
|
||||
define('LANG_unable_to_load_xml', "Unable to load XML file '%s'. Permission issue?");
|
||||
define('LANG_gamemanager', "Správce her");
|
||||
define('LANG_game_monitor', "Game Monitor");
|
||||
define('LANG_dashboard', "Dashboard");
|
||||
define('LANG_user_addons', "Addons");
|
||||
define('LANG_ftp', "FTP");
|
||||
define('LANG_shop', "Shop");
|
||||
define('LANG_shop_guest', "Shop");
|
||||
define('LANG_TS3Admin', "TS3 Admin");
|
||||
define('LANG_administration', "Administration");
|
||||
define('LANG_config_games', "Game/Mod Config");
|
||||
define('LANG_modulemanager', "Modules");
|
||||
define('LANG_server', "Servers");
|
||||
define('LANG_settings', "Panel Settings");
|
||||
define('LANG_themes', "Theme Settings");
|
||||
define('LANG_user_admin', "Users");
|
||||
define('LANG_sub_users', "Sub Users");
|
||||
define('LANG_show_groups', "Groups");
|
||||
define('LANG_user_games', "Game Servers");
|
||||
define('LANG_addons_manager', "Addons Manager");
|
||||
define('LANG_ftp_admin', "FTP users");
|
||||
define('LANG_orders', "Orders");
|
||||
define('LANG_services', "Services");
|
||||
define('LANG_shop_settings', "Shop Settings");
|
||||
define('LANG_update', "Update Panel");
|
||||
define('LANG_extras', "Extras");
|
||||
define('LANG_show', "Show");
|
||||
define('LANG_show_all', "Show All Servers");
|
||||
define('LANG_cur_theme', "%s Theme");
|
||||
define('LANG_copyright', "Copyright");
|
||||
define('LANG_all_rights_reserved', "All rights reserved");
|
||||
define('LANG_version', "Version");
|
||||
define('LANG_show_version', "Show Version");
|
||||
define('LANG_queries_executed', "queries executed");
|
||||
define('LANG_lang', "Language");
|
||||
define('LANG_get_size', "Show Size");
|
||||
define('LANG_total_size', "Total size");
|
||||
define('LANG_lgsl', "LGSL");
|
||||
define('LANG_lgsl_admin', "LGSL Admin");
|
||||
define('LANG_rcon', "RCON");
|
||||
define('LANG_watch_logger', "Watch Logger");
|
||||
define('LANG_litefm_settings', "LiteFM Settings");
|
||||
define('LANG_assign_expiration_date', "Assign expiration date");
|
||||
define('LANG_assign_expiration_date_info', "Once it expires the server is unassigned but not removed.");
|
||||
define('LANG_server_expiration_date', "Server expiration date");
|
||||
define('LANG_server_expiration_date_info', "Once it expires the server is removed (database and files).");
|
||||
define('LANG_set_expiration_date', "Set expiration date");
|
||||
define('LANG_admin_dsi', "DSi Settings");
|
||||
define('LANG_user_dsi', "DSi");
|
||||
define('LANG_list_dsi', "DSi List");
|
||||
define('LANG_no_remote_servers', "There is no known remote servers! Add a server to use this function.");
|
||||
define('LANG_no_results_found', "No search results found for %s");
|
||||
define('LANG_tickets', "Support Tickets");
|
||||
define('LANG_news', "News");
|
||||
define('LANG_admin_news', "News Admin");
|
||||
define('LANG_util', "Utilities");
|
||||
define('LANG_fast_download', "Fast Download");
|
||||
define('LANG_fd_user', "Fast Download");
|
||||
define('LANG_cron', "Cron Admin");
|
||||
define('LANG_user_cron', "Cron");
|
||||
define('LANG_faq', "F.A.Q.");
|
||||
define('LANG_mysql_admin', "MySQL Admin");
|
||||
define('LANG_copied', "Copied!");
|
||||
define('LANG_ticket_settings', "Ticket Settings");
|
||||
define('LANG_form', "Register");
|
||||
?>
|
||||
|
|
@ -22,48 +22,48 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_install_lang', "Select your preferred language");
|
||||
define('OGP_LANG_install_welcome', "Welcome to the Open Game Panel Installer");
|
||||
define('OGP_LANG_file_permission_check', "Checking required file permissions");
|
||||
define('OGP_LANG_OK', "OK");
|
||||
define('OGP_LANG_write_permission_required', "Write permission required");
|
||||
define('OGP_LANG_execute_permission_required', "Execute permission required");
|
||||
define('OGP_LANG_create_an_empty_file', "Create an empty file.");
|
||||
define('OGP_LANG_found', "Found");
|
||||
define('OGP_LANG_not_found', "Not found");
|
||||
define('OGP_LANG_pear_xxtea_info', "Pear Crypt_XXTEA is required for OGP usage. In the most of the Linux distributions this module can be installed with the following Pear command 'pear install Crypt_XXTEA-beta'.");
|
||||
define('OGP_LANG_refresh', "Refresh");
|
||||
define('OGP_LANG_checking_required_modules', "Checking required modules");
|
||||
define('OGP_LANG_checking_optional_modules', "Checking optional modules");
|
||||
define('OGP_LANG_database_type', "Database type");
|
||||
define('OGP_LANG_database_settings', "Database access settings");
|
||||
define('OGP_LANG_database_hostname', "Database Hostname");
|
||||
define('OGP_LANG_database_username', "Database Username");
|
||||
define('OGP_LANG_database_password', "Database Password");
|
||||
define('OGP_LANG_database_name', "Database Name");
|
||||
define('OGP_LANG_database_prefix', "Database Prefix");
|
||||
define('OGP_LANG_next', "Next");
|
||||
define('OGP_LANG_encryption_key', "Encyption key (Agent)");
|
||||
define('OGP_LANG_agent_port', "Port (Agent)");
|
||||
define('OGP_LANG_unable_to_write_config', "Unable to write to configuration file. Please recheck the write permission.");
|
||||
define('OGP_LANG_admin_login_details', "Admin login details");
|
||||
define('OGP_LANG_config_written', "The config files created successfully.");
|
||||
define('OGP_LANG_database_created', "Database tables created succesfully.");
|
||||
define('OGP_LANG_admin_login_details_info', "Now we create admin user for your Open Game Panel.");
|
||||
define('OGP_LANG_username', "Username");
|
||||
define('OGP_LANG_repeat_password', "Repeat password");
|
||||
define('OGP_LANG_email', "E-mail address");
|
||||
define('OGP_LANG_back', "Back");
|
||||
define('OGP_LANG_database_setup_failure', "Setup was unable to create the database. Please recheck your database configs.");
|
||||
define('OGP_LANG_php_version_check', "Checking PHP version");
|
||||
define('OGP_LANG_invalid_username', "You entered invalid username.");
|
||||
define('OGP_LANG_password_too_short', "Your password is too short. It must be at least '%d' characters long.");
|
||||
define('OGP_LANG_password_contains_invalid_characters', "Your password contains invalid characters.");
|
||||
define('OGP_LANG_invalid_email_address', "You entered invalid e-mail address.");
|
||||
define('OGP_LANG_setup_complete', "Setup has been completed successfully. The Open Game Panel is now ready for use.");
|
||||
define('OGP_LANG_remove_install_and_secure_config', "You should delete install.php from your server and chmod your includes/config.inc.php back to 644 for security purposes.");
|
||||
define('OGP_LANG_go_to_panel', "Click here to login to your OGP.");
|
||||
define('OGP_LANG_unable_to_resolve', "If you are unable to resolve this problem please visit OGP website ");
|
||||
define('OGP_LANG_slogan', "The Open-Source one!");
|
||||
define('OGP_LANG_default_welcome_title_message', "Welcome! <b style='font-size:12px; font-weight:normal;'>You can change this title in '<a href='?m=settings&p=themes'>Theme Settings</a>' under the '<a href='?m=administration&p=main'>Administration</a>' tab.</b>");
|
||||
define('LANG_install_lang', "Select your preferred language");
|
||||
define('LANG_install_welcome', "Welcome to the Open Game Panel Installer");
|
||||
define('LANG_file_permission_check', "Checking required file permissions");
|
||||
define('LANG_OK', "OK");
|
||||
define('LANG_write_permission_required', "Write permission required");
|
||||
define('LANG_execute_permission_required', "Execute permission required");
|
||||
define('LANG_create_an_empty_file', "Create an empty file.");
|
||||
define('LANG_found', "Found");
|
||||
define('LANG_not_found', "Not found");
|
||||
define('LANG_pear_xxtea_info', "Pear Crypt_XXTEA is required for OGP usage. In the most of the Linux distributions this module can be installed with the following Pear command 'pear install Crypt_XXTEA-beta'.");
|
||||
define('LANG_refresh', "Refresh");
|
||||
define('LANG_checking_required_modules', "Checking required modules");
|
||||
define('LANG_checking_optional_modules', "Checking optional modules");
|
||||
define('LANG_database_type', "Database type");
|
||||
define('LANG_database_settings', "Database access settings");
|
||||
define('LANG_database_hostname', "Database Hostname");
|
||||
define('LANG_database_username', "Database Username");
|
||||
define('LANG_database_password', "Database Password");
|
||||
define('LANG_database_name', "Database Name");
|
||||
define('LANG_database_prefix', "Database Prefix");
|
||||
define('LANG_next', "Next");
|
||||
define('LANG_encryption_key', "Encyption key (Agent)");
|
||||
define('LANG_agent_port', "Port (Agent)");
|
||||
define('LANG_unable_to_write_config', "Unable to write to configuration file. Please recheck the write permission.");
|
||||
define('LANG_admin_login_details', "Admin login details");
|
||||
define('LANG_config_written', "The config files created successfully.");
|
||||
define('LANG_database_created', "Database tables created succesfully.");
|
||||
define('LANG_admin_login_details_info', "Now we create admin user for your Open Game Panel.");
|
||||
define('LANG_username', "Username");
|
||||
define('LANG_repeat_password', "Repeat password");
|
||||
define('LANG_email', "E-mail address");
|
||||
define('LANG_back', "Back");
|
||||
define('LANG_database_setup_failure', "Setup was unable to create the database. Please recheck your database configs.");
|
||||
define('LANG_php_version_check', "Checking PHP version");
|
||||
define('LANG_invalid_username', "You entered invalid username.");
|
||||
define('LANG_password_too_short', "Your password is too short. It must be at least '%d' characters long.");
|
||||
define('LANG_password_contains_invalid_characters', "Your password contains invalid characters.");
|
||||
define('LANG_invalid_email_address', "You entered invalid e-mail address.");
|
||||
define('LANG_setup_complete', "Setup has been completed successfully. The Open Game Panel is now ready for use.");
|
||||
define('LANG_remove_install_and_secure_config', "You should delete install.php from your server and chmod your includes/config.inc.php back to 644 for security purposes.");
|
||||
define('LANG_go_to_panel', "Click here to login to your OGP.");
|
||||
define('LANG_unable_to_resolve', "If you are unable to resolve this problem please visit OGP website ");
|
||||
define('LANG_slogan', "The Open-Source one!");
|
||||
define('LANG_default_welcome_title_message', "Welcome! <b style='font-size:12px; font-weight:normal;'>You can change this title in '<a href='?m=settings&p=themes'>Theme Settings</a>' under the '<a href='?m=administration&p=main'>Administration</a>' tab.</b>");
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -22,154 +22,154 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_error', "Chyba");
|
||||
define('OGP_LANG_title', "Webové rozhraní TeamSpeak 3");
|
||||
define('OGP_LANG_update_available', "<h3>Pozor: nová verze (v% 1) tohoto softwaru je dostupná pod<a href=\"%2\" target=\"_blank\">%2</a>.</h3>");
|
||||
define('OGP_LANG_head_logout', "Odhlásit se");
|
||||
define('OGP_LANG_head_vserver_switch', "Změňte vServer");
|
||||
define('OGP_LANG_head_vserver_overview', "Přehled serveru vServer");
|
||||
define('OGP_LANG_head_vserver_token', "Správa Token");
|
||||
define('OGP_LANG_head_vserver_liveview', "Live View");
|
||||
define('OGP_LANG_e_fill_out', "Vyplňte prosím všechna povinná pole.");
|
||||
define('OGP_LANG_e_upload_failed', "Nahrání neuspěšné");
|
||||
define('OGP_LANG_e_server_responded', "Server odpověděl:");
|
||||
define('OGP_LANG_e_conn_serverquery', "Nelze vytvořit přístup ke službě ServerQuery.");
|
||||
define('OGP_LANG_e_conn_vserver', "Nelze vybrat virtuální server.");
|
||||
define('OGP_LANG_e_session_timedout', "Relace vypršela.");
|
||||
define('OGP_LANG_js_error', "Chyba");
|
||||
define('OGP_LANG_js_ajax_error', "An AJAX error has occurred: %1.");
|
||||
define('OGP_LANG_js_confirm_server_stop', "Do you really want to stop server #%1?");
|
||||
define('OGP_LANG_js_confirm_server_delete', "Do you really want to DELETE server #%1?");
|
||||
define('OGP_LANG_js_notice_server_deleted', "Server %1 was deleted successfully.\nThe overview page will be getting reloaded now.");
|
||||
define('OGP_LANG_js_prompt_banduration', "Duration in hours (0=unlimited): ");
|
||||
define('OGP_LANG_js_prompt_banreason', "Reason (optional): ");
|
||||
define('OGP_LANG_js_prompt_msg_to', "Text Message to %1 #%2: ");
|
||||
define('OGP_LANG_js_prompt_poke_to', "Poke Message to Client #%1: ");
|
||||
define('OGP_LANG_js_prompt_new_propvalue', "New value for '%1': ");
|
||||
define('OGP_LANG_n_server_responded', "The server responded: ");
|
||||
define('OGP_LANG_login_serverquery', "ServerQuery Login");
|
||||
define('OGP_LANG_login_name', "Username");
|
||||
define('OGP_LANG_login_password', "Password");
|
||||
define('OGP_LANG_login_submit', "Login");
|
||||
define('OGP_LANG_vsselect_headline', "vServer selection");
|
||||
define('OGP_LANG_vsselect_id', "ID #");
|
||||
define('OGP_LANG_vsselect_name', "Název");
|
||||
define('OGP_LANG_vsselect_ip', "IP");
|
||||
define('OGP_LANG_vsselect_port', "Port");
|
||||
define('OGP_LANG_vsselect_state', "Status");
|
||||
define('OGP_LANG_vsselect_clients', "Clients");
|
||||
define('OGP_LANG_vsselect_uptime', "Uptime");
|
||||
define('OGP_LANG_vsselect_choose', "Select");
|
||||
define('OGP_LANG_vsselect_start', "Zapnout");
|
||||
define('OGP_LANG_vsselect_stop', "Vypnout");
|
||||
define('OGP_LANG_vsselect_delete', "VYMAZAT");
|
||||
define('OGP_LANG_vsselect_new_headline', "Create a new virtual server");
|
||||
define('OGP_LANG_vsselect_new_servername', "Název Serveru");
|
||||
define('OGP_LANG_vsselect_new_slots', "Klientské sloty");
|
||||
define('OGP_LANG_vsselect_new_create', "Vytvořit");
|
||||
define('OGP_LANG_vsselect_new_added_ok', "vServer <span class=\"online\">%1</span> was created successfully.");
|
||||
define('OGP_LANG_vsselect_new_added_generated', "Generovaný token je:");
|
||||
define('OGP_LANG_vsoverview_virtualserver', "Virtuální server");
|
||||
define('OGP_LANG_vsoverview_information_head', "Information");
|
||||
define('OGP_LANG_vsoverview_connection_head', "Connection");
|
||||
define('OGP_LANG_vsoverview_info_general_head', "General settings");
|
||||
define('OGP_LANG_vsoverview_info_servername', "Server Name");
|
||||
define('OGP_LANG_vsoverview_info_host', "Host");
|
||||
define('OGP_LANG_vsoverview_info_state', "Status");
|
||||
define('OGP_LANG_vsoverview_info_state_port', "Port");
|
||||
define('OGP_LANG_vsoverview_info_uptime', "Uptime");
|
||||
define('OGP_LANG_vsoverview_info_welcomemsg', "Welcome<br />message");
|
||||
define('OGP_LANG_vsoverview_info_hostmsg', "Host message");
|
||||
define('OGP_LANG_vsoverview_info_hostmsg_mode_output', "output");
|
||||
define('OGP_LANG_vsoverview_info_hostmsg_mode_0', "none");
|
||||
define('OGP_LANG_vsoverview_info_hostmsg_mode_1', "in the chat log");
|
||||
define('OGP_LANG_vsoverview_info_hostmsg_mode_2', "window");
|
||||
define('OGP_LANG_vsoverview_info_hostmsg_mode_3', "Window + Disconnect");
|
||||
define('OGP_LANG_vsoverview_info_req_security', "Security level");
|
||||
define('OGP_LANG_vsoverview_info_req_securitylvl', "required");
|
||||
define('OGP_LANG_vsoverview_info_hostbanner_head', "Hostbanner");
|
||||
define('OGP_LANG_vsoverview_info_hostbanner_url', "URL");
|
||||
define('OGP_LANG_vsoverview_info_hostbanner_imgurl', "Image address");
|
||||
define('OGP_LANG_vsoverview_info_hostbanner_buttonurl', "Hostbutton URL");
|
||||
define('OGP_LANG_vsoverview_info_antiflood_head', "Anti-Flood");
|
||||
define('OGP_LANG_vsoverview_info_antiflood_warning', "Warning on");
|
||||
define('OGP_LANG_vsoverview_info_antiflood_kick', "Kick on");
|
||||
define('OGP_LANG_vsoverview_info_antiflood_ban', "Ban on");
|
||||
define('OGP_LANG_vsoverview_info_antiflood_banduration', "Ban length");
|
||||
define('OGP_LANG_vsoverview_info_antiflood_decrease', "Decrease");
|
||||
define('OGP_LANG_vsoverview_info_antiflood_points', "points");
|
||||
define('OGP_LANG_vsoverview_info_antiflood_in_seconds', "seconds");
|
||||
define('OGP_LANG_vsoverview_info_antiflood_points_per_tick', "Points per tick");
|
||||
define('OGP_LANG_vsoverview_conn_total_head', "Total");
|
||||
define('OGP_LANG_vsoverview_conn_total_packets', "packages");
|
||||
define('OGP_LANG_vsoverview_conn_total_bytes', "bytes");
|
||||
define('OGP_LANG_vsoverview_conn_total_send', "sent");
|
||||
define('OGP_LANG_vsoverview_conn_total_received', "received");
|
||||
define('OGP_LANG_vsoverview_conn_bandwidth_head', "Bandwidth");
|
||||
define('OGP_LANG_vsoverview_conn_bandwidth_last', "last");
|
||||
define('OGP_LANG_vsoverview_conn_bandwidth_second', "second");
|
||||
define('OGP_LANG_vsoverview_conn_bandwidth_minute', "minute");
|
||||
define('OGP_LANG_vsoverview_conn_bandwidth_send', "sent");
|
||||
define('OGP_LANG_vsoverview_conn_bandwidth_received', "received");
|
||||
define('OGP_LANG_vstoken_token_virtualserver', "Virtual Server");
|
||||
define('OGP_LANG_vstoken_token_head', "Token");
|
||||
define('OGP_LANG_vstoken_token_type', "Group type");
|
||||
define('OGP_LANG_vstoken_token_id1', "Server Group/<br />Channel Group");
|
||||
define('OGP_LANG_vstoken_token_id2', "(Channel)");
|
||||
define('OGP_LANG_vstoken_token_tokencode', "Token Code");
|
||||
define('OGP_LANG_vstoken_token_delete', "Delete");
|
||||
define('OGP_LANG_vstoken_new_head', "Create a new token");
|
||||
define('OGP_LANG_vstoken_new_create', "Generate");
|
||||
define('OGP_LANG_vstoken_new_tokentype', "Token type:");
|
||||
define('OGP_LANG_vstoken_new_servergroup', "Server Group");
|
||||
define('OGP_LANG_vstoken_new_channelgroup', "Channel Group");
|
||||
define('OGP_LANG_vstoken_new_select_group', "Servergroup");
|
||||
define('OGP_LANG_vstoken_new_select_channelgroup', "Channelgroup");
|
||||
define('OGP_LANG_vstoken_new_select_channel', "Channel");
|
||||
define('OGP_LANG_vstoken_new_tokentype_0', "Server");
|
||||
define('OGP_LANG_vstoken_new_tokentype_1', "Channel");
|
||||
define('OGP_LANG_vstoken_new_added_ok', "Token was generated successfully.");
|
||||
define('OGP_LANG_vsliveview_server_virtualserver', "Virtual Server");
|
||||
define('OGP_LANG_vsliveview_server_head', "Live View");
|
||||
define('OGP_LANG_vsliveview_liveview_enable_autorefresh', "Auto refresh");
|
||||
define('OGP_LANG_vsliveview_liveview_tooltip_to_channel', "to channel #");
|
||||
define('OGP_LANG_vsliveview_liveview_tooltip_switch', "Switch");
|
||||
define('OGP_LANG_vsliveview_liveview_tooltip_send_msg', "Send Message");
|
||||
define('OGP_LANG_vsliveview_liveview_tooltip_poke', "Poke");
|
||||
define('OGP_LANG_vsliveview_liveview_tooltip_kick', "Kick");
|
||||
define('OGP_LANG_vsliveview_liveview_tooltip_ban', "Ban");
|
||||
define('OGP_LANG_vsoverview_banlist_head', "Ban list");
|
||||
define('OGP_LANG_vsoverview_banlist_id', "ID #");
|
||||
define('OGP_LANG_vsoverview_banlist_ip', "IP");
|
||||
define('OGP_LANG_vsoverview_banlist_name', "Name");
|
||||
define('OGP_LANG_vsoverview_banlist_uid', "UniqueID");
|
||||
define('OGP_LANG_vsoverview_banlist_reason', "Reason");
|
||||
define('OGP_LANG_vsoverview_banlist_created', "Created");
|
||||
define('OGP_LANG_vsoverview_banlist_duration', "Duration");
|
||||
define('OGP_LANG_vsoverview_banlist_end', "Ends");
|
||||
define('OGP_LANG_vsoverview_banlist_unlimited', "unlimited");
|
||||
define('OGP_LANG_vsoverview_banlist_never', "never");
|
||||
define('OGP_LANG_vsoverview_banlist_new_head', "Create new ban");
|
||||
define('OGP_LANG_vsoverview_banlist_new_create', "Vytvořit");
|
||||
define('OGP_LANG_vsliveview_channelbackup_head', "Záloha kanálu");
|
||||
define('OGP_LANG_vsliveview_channelbackup_get', "Vytvořit a stáhnout");
|
||||
define('OGP_LANG_vsliveview_channelbackup_load', "Nahrát zálohu kanálu");
|
||||
define('OGP_LANG_vsliveview_channelbackup_load_submit', "obnovte");
|
||||
define('OGP_LANG_vsliveview_channelbackup_new_added_ok', "Záloha kanálu úspěšná.");
|
||||
define('OGP_LANG_time_day', "den");
|
||||
define('OGP_LANG_time_days', "dnů");
|
||||
define('OGP_LANG_time_hour', "hodina");
|
||||
define('OGP_LANG_time_hours', "hodin");
|
||||
define('OGP_LANG_time_minute', "minuta");
|
||||
define('OGP_LANG_time_minutes', "minuty");
|
||||
define('OGP_LANG_time_second', "druhý");
|
||||
define('OGP_LANG_time_seconds', "sekundy");
|
||||
define('OGP_LANG_e_2568', "Nemáte dostatečná práva.");
|
||||
define('OGP_LANG_temp_folder_not_writable', "Složka šablon (%s) nelze zapisovat.");
|
||||
define('OGP_LANG_unassign_from_subuser', "Odpojit od uživatele.");
|
||||
define('OGP_LANG_assign_to_subuser', "Přiřadit uživatele .");
|
||||
define('OGP_LANG_select_subuser', "Vyberte uživatele .");
|
||||
define('OGP_LANG_no_ts3_servers_assigned_to_account', "Na váš účet nejsou přiřazeny žádné servery.");
|
||||
define('OGP_LANG_change_virtual_server', "Změna Virtuálního Serveru");
|
||||
define('OGP_LANG_change_remote_server', "Změnit Vzdálený Server");
|
||||
define('LANG_error', "Chyba");
|
||||
define('LANG_title', "Webové rozhraní TeamSpeak 3");
|
||||
define('LANG_update_available', "<h3>Pozor: nová verze (v% 1) tohoto softwaru je dostupná pod<a href=\"%2\" target=\"_blank\">%2</a>.</h3>");
|
||||
define('LANG_head_logout', "Odhlásit se");
|
||||
define('LANG_head_vserver_switch', "Změňte vServer");
|
||||
define('LANG_head_vserver_overview', "Přehled serveru vServer");
|
||||
define('LANG_head_vserver_token', "Správa Token");
|
||||
define('LANG_head_vserver_liveview', "Live View");
|
||||
define('LANG_e_fill_out', "Vyplňte prosím všechna povinná pole.");
|
||||
define('LANG_e_upload_failed', "Nahrání neuspěšné");
|
||||
define('LANG_e_server_responded', "Server odpověděl:");
|
||||
define('LANG_e_conn_serverquery', "Nelze vytvořit přístup ke službě ServerQuery.");
|
||||
define('LANG_e_conn_vserver', "Nelze vybrat virtuální server.");
|
||||
define('LANG_e_session_timedout', "Relace vypršela.");
|
||||
define('LANG_js_error', "Chyba");
|
||||
define('LANG_js_ajax_error', "An AJAX error has occurred: %1.");
|
||||
define('LANG_js_confirm_server_stop', "Do you really want to stop server #%1?");
|
||||
define('LANG_js_confirm_server_delete', "Do you really want to DELETE server #%1?");
|
||||
define('LANG_js_notice_server_deleted', "Server %1 was deleted successfully.\nThe overview page will be getting reloaded now.");
|
||||
define('LANG_js_prompt_banduration', "Duration in hours (0=unlimited): ");
|
||||
define('LANG_js_prompt_banreason', "Reason (optional): ");
|
||||
define('LANG_js_prompt_msg_to', "Text Message to %1 #%2: ");
|
||||
define('LANG_js_prompt_poke_to', "Poke Message to Client #%1: ");
|
||||
define('LANG_js_prompt_new_propvalue', "New value for '%1': ");
|
||||
define('LANG_n_server_responded', "The server responded: ");
|
||||
define('LANG_login_serverquery', "ServerQuery Login");
|
||||
define('LANG_login_name', "Username");
|
||||
define('LANG_login_password', "Password");
|
||||
define('LANG_login_submit', "Login");
|
||||
define('LANG_vsselect_headline', "vServer selection");
|
||||
define('LANG_vsselect_id', "ID #");
|
||||
define('LANG_vsselect_name', "Název");
|
||||
define('LANG_vsselect_ip', "IP");
|
||||
define('LANG_vsselect_port', "Port");
|
||||
define('LANG_vsselect_state', "Status");
|
||||
define('LANG_vsselect_clients', "Clients");
|
||||
define('LANG_vsselect_uptime', "Uptime");
|
||||
define('LANG_vsselect_choose', "Select");
|
||||
define('LANG_vsselect_start', "Zapnout");
|
||||
define('LANG_vsselect_stop', "Vypnout");
|
||||
define('LANG_vsselect_delete', "VYMAZAT");
|
||||
define('LANG_vsselect_new_headline', "Create a new virtual server");
|
||||
define('LANG_vsselect_new_servername', "Název Serveru");
|
||||
define('LANG_vsselect_new_slots', "Klientské sloty");
|
||||
define('LANG_vsselect_new_create', "Vytvořit");
|
||||
define('LANG_vsselect_new_added_ok', "vServer <span class=\"online\">%1</span> was created successfully.");
|
||||
define('LANG_vsselect_new_added_generated', "Generovaný token je:");
|
||||
define('LANG_vsoverview_virtualserver', "Virtuální server");
|
||||
define('LANG_vsoverview_information_head', "Information");
|
||||
define('LANG_vsoverview_connection_head', "Connection");
|
||||
define('LANG_vsoverview_info_general_head', "General settings");
|
||||
define('LANG_vsoverview_info_servername', "Server Name");
|
||||
define('LANG_vsoverview_info_host', "Host");
|
||||
define('LANG_vsoverview_info_state', "Status");
|
||||
define('LANG_vsoverview_info_state_port', "Port");
|
||||
define('LANG_vsoverview_info_uptime', "Uptime");
|
||||
define('LANG_vsoverview_info_welcomemsg', "Welcome<br />message");
|
||||
define('LANG_vsoverview_info_hostmsg', "Host message");
|
||||
define('LANG_vsoverview_info_hostmsg_mode_output', "output");
|
||||
define('LANG_vsoverview_info_hostmsg_mode_0', "none");
|
||||
define('LANG_vsoverview_info_hostmsg_mode_1', "in the chat log");
|
||||
define('LANG_vsoverview_info_hostmsg_mode_2', "window");
|
||||
define('LANG_vsoverview_info_hostmsg_mode_3', "Window + Disconnect");
|
||||
define('LANG_vsoverview_info_req_security', "Security level");
|
||||
define('LANG_vsoverview_info_req_securitylvl', "required");
|
||||
define('LANG_vsoverview_info_hostbanner_head', "Hostbanner");
|
||||
define('LANG_vsoverview_info_hostbanner_url', "URL");
|
||||
define('LANG_vsoverview_info_hostbanner_imgurl', "Image address");
|
||||
define('LANG_vsoverview_info_hostbanner_buttonurl', "Hostbutton URL");
|
||||
define('LANG_vsoverview_info_antiflood_head', "Anti-Flood");
|
||||
define('LANG_vsoverview_info_antiflood_warning', "Warning on");
|
||||
define('LANG_vsoverview_info_antiflood_kick', "Kick on");
|
||||
define('LANG_vsoverview_info_antiflood_ban', "Ban on");
|
||||
define('LANG_vsoverview_info_antiflood_banduration', "Ban length");
|
||||
define('LANG_vsoverview_info_antiflood_decrease', "Decrease");
|
||||
define('LANG_vsoverview_info_antiflood_points', "points");
|
||||
define('LANG_vsoverview_info_antiflood_in_seconds', "seconds");
|
||||
define('LANG_vsoverview_info_antiflood_points_per_tick', "Points per tick");
|
||||
define('LANG_vsoverview_conn_total_head', "Total");
|
||||
define('LANG_vsoverview_conn_total_packets', "packages");
|
||||
define('LANG_vsoverview_conn_total_bytes', "bytes");
|
||||
define('LANG_vsoverview_conn_total_send', "sent");
|
||||
define('LANG_vsoverview_conn_total_received', "received");
|
||||
define('LANG_vsoverview_conn_bandwidth_head', "Bandwidth");
|
||||
define('LANG_vsoverview_conn_bandwidth_last', "last");
|
||||
define('LANG_vsoverview_conn_bandwidth_second', "second");
|
||||
define('LANG_vsoverview_conn_bandwidth_minute', "minute");
|
||||
define('LANG_vsoverview_conn_bandwidth_send', "sent");
|
||||
define('LANG_vsoverview_conn_bandwidth_received', "received");
|
||||
define('LANG_vstoken_token_virtualserver', "Virtual Server");
|
||||
define('LANG_vstoken_token_head', "Token");
|
||||
define('LANG_vstoken_token_type', "Group type");
|
||||
define('LANG_vstoken_token_id1', "Server Group/<br />Channel Group");
|
||||
define('LANG_vstoken_token_id2', "(Channel)");
|
||||
define('LANG_vstoken_token_tokencode', "Token Code");
|
||||
define('LANG_vstoken_token_delete', "Delete");
|
||||
define('LANG_vstoken_new_head', "Create a new token");
|
||||
define('LANG_vstoken_new_create', "Generate");
|
||||
define('LANG_vstoken_new_tokentype', "Token type:");
|
||||
define('LANG_vstoken_new_servergroup', "Server Group");
|
||||
define('LANG_vstoken_new_channelgroup', "Channel Group");
|
||||
define('LANG_vstoken_new_select_group', "Servergroup");
|
||||
define('LANG_vstoken_new_select_channelgroup', "Channelgroup");
|
||||
define('LANG_vstoken_new_select_channel', "Channel");
|
||||
define('LANG_vstoken_new_tokentype_0', "Server");
|
||||
define('LANG_vstoken_new_tokentype_1', "Channel");
|
||||
define('LANG_vstoken_new_added_ok', "Token was generated successfully.");
|
||||
define('LANG_vsliveview_server_virtualserver', "Virtual Server");
|
||||
define('LANG_vsliveview_server_head', "Live View");
|
||||
define('LANG_vsliveview_liveview_enable_autorefresh', "Auto refresh");
|
||||
define('LANG_vsliveview_liveview_tooltip_to_channel', "to channel #");
|
||||
define('LANG_vsliveview_liveview_tooltip_switch', "Switch");
|
||||
define('LANG_vsliveview_liveview_tooltip_send_msg', "Send Message");
|
||||
define('LANG_vsliveview_liveview_tooltip_poke', "Poke");
|
||||
define('LANG_vsliveview_liveview_tooltip_kick', "Kick");
|
||||
define('LANG_vsliveview_liveview_tooltip_ban', "Ban");
|
||||
define('LANG_vsoverview_banlist_head', "Ban list");
|
||||
define('LANG_vsoverview_banlist_id', "ID #");
|
||||
define('LANG_vsoverview_banlist_ip', "IP");
|
||||
define('LANG_vsoverview_banlist_name', "Name");
|
||||
define('LANG_vsoverview_banlist_uid', "UniqueID");
|
||||
define('LANG_vsoverview_banlist_reason', "Reason");
|
||||
define('LANG_vsoverview_banlist_created', "Created");
|
||||
define('LANG_vsoverview_banlist_duration', "Duration");
|
||||
define('LANG_vsoverview_banlist_end', "Ends");
|
||||
define('LANG_vsoverview_banlist_unlimited', "unlimited");
|
||||
define('LANG_vsoverview_banlist_never', "never");
|
||||
define('LANG_vsoverview_banlist_new_head', "Create new ban");
|
||||
define('LANG_vsoverview_banlist_new_create', "Vytvořit");
|
||||
define('LANG_vsliveview_channelbackup_head', "Záloha kanálu");
|
||||
define('LANG_vsliveview_channelbackup_get', "Vytvořit a stáhnout");
|
||||
define('LANG_vsliveview_channelbackup_load', "Nahrát zálohu kanálu");
|
||||
define('LANG_vsliveview_channelbackup_load_submit', "obnovte");
|
||||
define('LANG_vsliveview_channelbackup_new_added_ok', "Záloha kanálu úspěšná.");
|
||||
define('LANG_time_day', "den");
|
||||
define('LANG_time_days', "dnů");
|
||||
define('LANG_time_hour', "hodina");
|
||||
define('LANG_time_hours', "hodin");
|
||||
define('LANG_time_minute', "minuta");
|
||||
define('LANG_time_minutes', "minuty");
|
||||
define('LANG_time_second', "druhý");
|
||||
define('LANG_time_seconds', "sekundy");
|
||||
define('LANG_e_2568', "Nemáte dostatečná práva.");
|
||||
define('LANG_temp_folder_not_writable', "Složka šablon (%s) nelze zapisovat.");
|
||||
define('LANG_unassign_from_subuser', "Odpojit od uživatele.");
|
||||
define('LANG_assign_to_subuser', "Přiřadit uživatele .");
|
||||
define('LANG_select_subuser', "Vyberte uživatele .");
|
||||
define('LANG_no_ts3_servers_assigned_to_account', "Na váš účet nejsou přiřazeny žádné servery.");
|
||||
define('LANG_change_virtual_server', "Změna Virtuálního Serveru");
|
||||
define('LANG_change_remote_server', "Změnit Vzdálený Server");
|
||||
?>
|
||||
|
|
@ -22,49 +22,49 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_install_plugin', "Instalovat pluginy");
|
||||
define('OGP_LANG_install_mappack', "Instalovat Mapy");
|
||||
define('OGP_LANG_install_config', "Instalovat Konfigurace");
|
||||
define('OGP_LANG_game_name', "Game Name");
|
||||
define('OGP_LANG_directory', "Directory Path");
|
||||
define('OGP_LANG_remote_server', "Remote server");
|
||||
define('OGP_LANG_select_addon', "Select Addon");
|
||||
define('OGP_LANG_install', "Instalovat");
|
||||
define('OGP_LANG_failed_to_start_file_download', "Failed to start file download.");
|
||||
define('OGP_LANG_no_games_servers_available', "There are no game servers available in your account.");
|
||||
define('OGP_LANG_addon_installed_successfully', "Addon installed successfully");
|
||||
define('OGP_LANG_path', "Path");
|
||||
define('OGP_LANG_wait_while_decompressing', "Wait while the file %s is decompressed.");
|
||||
define('OGP_LANG_addon_name', "Addon Name");
|
||||
define('OGP_LANG_url', "URL");
|
||||
define('OGP_LANG_select_game_type', "Select Game Type");
|
||||
define('OGP_LANG_plugin', "Plugin");
|
||||
define('OGP_LANG_mappack', "MapPack");
|
||||
define('OGP_LANG_config', "Config");
|
||||
define('OGP_LANG_type', "Addon Type");
|
||||
define('OGP_LANG_game', "Game");
|
||||
define('OGP_LANG_show_all_addons', "Show All Addons");
|
||||
define('OGP_LANG_show_addons_for_selected_type', "Show Addons For Selected Type");
|
||||
define('OGP_LANG_show_addons_for_selected_game', "Show Addons For Selected Game");
|
||||
define('OGP_LANG_linux_games', "Linux Games:");
|
||||
define('OGP_LANG_windows_games', "Windows Games:");
|
||||
define('OGP_LANG_create_addon', "Create Addon");
|
||||
define('OGP_LANG_addons_db', "Addons Database");
|
||||
define('OGP_LANG_addon_has_been_created', "The addon %s has been created.");
|
||||
define('OGP_LANG_remove_addon', "Remove Addon");
|
||||
define('OGP_LANG_fill_the_url_address_to_a_compressed_file', "Please, fill an URL address for a compressed file.");
|
||||
define('OGP_LANG_fill_the_addon_name', "Please, fill a name for the addon package.");
|
||||
define('OGP_LANG_select_an_addon_type', "Please, select an addon type.");
|
||||
define('OGP_LANG_select_a_game_type', "Please, select a game type.");
|
||||
define('OGP_LANG_edit_addon', "Edit Addon");
|
||||
define('OGP_LANG_post-script', "Post-install script(bash)");
|
||||
define('OGP_LANG_replacements', "Replacements:");
|
||||
define('OGP_LANG_addon_name_info', "Enter a name for this addon, this is the name that the user sees.");
|
||||
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.");
|
||||
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.");
|
||||
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.");
|
||||
define('OGP_LANG_show_to_group', "Show to group");
|
||||
define('OGP_LANG_all_groups', "All groups");
|
||||
define('OGP_LANG_show_addons_for_selected_group', "Show addons for selected group");
|
||||
define('OGP_LANG_group', "Group");
|
||||
define('LANG_install_plugin', "Instalovat pluginy");
|
||||
define('LANG_install_mappack', "Instalovat Mapy");
|
||||
define('LANG_install_config', "Instalovat Konfigurace");
|
||||
define('LANG_game_name', "Game Name");
|
||||
define('LANG_directory', "Directory Path");
|
||||
define('LANG_remote_server', "Remote server");
|
||||
define('LANG_select_addon', "Select Addon");
|
||||
define('LANG_install', "Instalovat");
|
||||
define('LANG_failed_to_start_file_download', "Failed to start file download.");
|
||||
define('LANG_no_games_servers_available', "There are no game servers available in your account.");
|
||||
define('LANG_addon_installed_successfully', "Addon installed successfully");
|
||||
define('LANG_path', "Path");
|
||||
define('LANG_wait_while_decompressing', "Wait while the file %s is decompressed.");
|
||||
define('LANG_addon_name', "Addon Name");
|
||||
define('LANG_url', "URL");
|
||||
define('LANG_select_game_type', "Select Game Type");
|
||||
define('LANG_plugin', "Plugin");
|
||||
define('LANG_mappack', "MapPack");
|
||||
define('LANG_config', "Config");
|
||||
define('LANG_type', "Addon Type");
|
||||
define('LANG_game', "Game");
|
||||
define('LANG_show_all_addons', "Show All Addons");
|
||||
define('LANG_show_addons_for_selected_type', "Show Addons For Selected Type");
|
||||
define('LANG_show_addons_for_selected_game', "Show Addons For Selected Game");
|
||||
define('LANG_linux_games', "Linux Games:");
|
||||
define('LANG_windows_games', "Windows Games:");
|
||||
define('LANG_create_addon', "Create Addon");
|
||||
define('LANG_addons_db', "Addons Database");
|
||||
define('LANG_addon_has_been_created', "The addon %s has been created.");
|
||||
define('LANG_remove_addon', "Remove Addon");
|
||||
define('LANG_fill_the_url_address_to_a_compressed_file', "Please, fill an URL address for a compressed file.");
|
||||
define('LANG_fill_the_addon_name', "Please, fill a name for the addon package.");
|
||||
define('LANG_select_an_addon_type', "Please, select an addon type.");
|
||||
define('LANG_select_a_game_type', "Please, select a game type.");
|
||||
define('LANG_edit_addon', "Edit Addon");
|
||||
define('LANG_post-script', "Post-install script(bash)");
|
||||
define('LANG_replacements', "Replacements:");
|
||||
define('LANG_addon_name_info', "Enter a name for this addon, this is the name that the user sees.");
|
||||
define('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.");
|
||||
define('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.");
|
||||
define('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.");
|
||||
define('LANG_show_to_group', "Show to group");
|
||||
define('LANG_all_groups', "All groups");
|
||||
define('LANG_show_addons_for_selected_group', "Show addons for selected group");
|
||||
define('LANG_group', "Group");
|
||||
?>
|
||||
|
|
@ -22,28 +22,28 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_external_links', "Externí odkazy");
|
||||
define('OGP_LANG_url', "URL");
|
||||
define('OGP_LANG_name', "Název");
|
||||
define('OGP_LANG_add_it', "Přidat");
|
||||
define('OGP_LANG_link_has_been_removed', "%sodkaz byl odstraněn.");
|
||||
define('OGP_LANG_db_backup', "DB záloha");
|
||||
define('OGP_LANG_download_db_backup', "Stáhněte si DB zálohu");
|
||||
define('OGP_LANG_restore_db_backup', "Obnovit zálohu DB");
|
||||
define('OGP_LANG_sql_file', "soubor (.sql)");
|
||||
define('OGP_LANG_change_buttons_order', "Změna pořadí tlačítek");
|
||||
define('OGP_LANG_when', "Čas schůzky");
|
||||
define('OGP_LANG_who', "Uživatelské jméno");
|
||||
define('OGP_LANG_where', "Adresa IP");
|
||||
define('OGP_LANG_what', "Akce");
|
||||
define('OGP_LANG_search', "Vyhledávání");
|
||||
define('OGP_LANG_empty_logger', "Prázdný záznamník");
|
||||
define('OGP_LANG_ban_list', "Zakázat seznam");
|
||||
define('OGP_LANG_no_banned_ips', "Neexistují žádné zakázané adresy IP");
|
||||
define('OGP_LANG_unban', "Odbanovat IP");
|
||||
define('OGP_LANG_client_ip', "Klientova IP");
|
||||
define('OGP_LANG_banned_until', "Zakázáno");
|
||||
define('OGP_LANG_unban_selected_ips', "Unban vybrané IP adresy");
|
||||
define('OGP_LANG_view', "Přehled");
|
||||
define('OGP_LANG_per_page', "záznamy protokolu na stránku");
|
||||
define('LANG_external_links', "Externí odkazy");
|
||||
define('LANG_url', "URL");
|
||||
define('LANG_name', "Název");
|
||||
define('LANG_add_it', "Přidat");
|
||||
define('LANG_link_has_been_removed', "%sodkaz byl odstraněn.");
|
||||
define('LANG_db_backup', "DB záloha");
|
||||
define('LANG_download_db_backup', "Stáhněte si DB zálohu");
|
||||
define('LANG_restore_db_backup', "Obnovit zálohu DB");
|
||||
define('LANG_sql_file', "soubor (.sql)");
|
||||
define('LANG_change_buttons_order', "Změna pořadí tlačítek");
|
||||
define('LANG_when', "Čas schůzky");
|
||||
define('LANG_who', "Uživatelské jméno");
|
||||
define('LANG_where', "Adresa IP");
|
||||
define('LANG_what', "Akce");
|
||||
define('LANG_search', "Vyhledávání");
|
||||
define('LANG_empty_logger', "Prázdný záznamník");
|
||||
define('LANG_ban_list', "Zakázat seznam");
|
||||
define('LANG_no_banned_ips', "Neexistují žádné zakázané adresy IP");
|
||||
define('LANG_unban', "Odbanovat IP");
|
||||
define('LANG_client_ip', "Klientova IP");
|
||||
define('LANG_banned_until', "Zakázáno");
|
||||
define('LANG_unban_selected_ips', "Unban vybrané IP adresy");
|
||||
define('LANG_view', "Přehled");
|
||||
define('LANG_per_page', "záznamy protokolu na stránku");
|
||||
?>
|
||||
|
|
@ -22,22 +22,22 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_resetting_configs', "Resetování všech konfiguračních souborů");
|
||||
define('OGP_LANG_updating_configs', "Updating old configs");
|
||||
define('OGP_LANG_configs_updated_ok', "Konfigurace úspěšně přečtené.");
|
||||
define('OGP_LANG_reset_old_configs', "Obnovit staré configs");
|
||||
define('OGP_LANG_update_configs', "Aktualizovat konfigurování");
|
||||
define('OGP_LANG_game_config_setup', "Konfigurace nastavení hry");
|
||||
define('OGP_LANG_config_reset_warning', "Když vymažete staré configs, může dojít k potížím s přiřazenými herními servery, protože identifikační čísla nemusí odpovídat novým konfiguracím.");
|
||||
define('OGP_LANG_modify_configs_info', "Pokud chcete změnit konfiguraci hry, můžete upravit soubory umístěné v %s.");
|
||||
define('OGP_LANG_updating_config_from_file', "Aktualizace konfigurace ze %s souboru.");
|
||||
define('OGP_LANG_error_when_handling_file', "Při zpracování souboru došlo k chybě %s .");
|
||||
define('OGP_LANG_error_while_adding_cfg_to_db', "Při přidávání dat došlo k chybě %sdo databáze.");
|
||||
define('OGP_LANG_no_configs_found', "Nebyla nalezena žádná konfigurace%ssoubor.");
|
||||
define('OGP_LANG_select_game', "Vyberte hru");
|
||||
define('OGP_LANG_create_xml_configs', "Vytvoření konfigurace XML");
|
||||
define('OGP_LANG_failed_to_delete_config_from_db', "Smazání se nezdařilo %sconfig z databáze");
|
||||
define('OGP_LANG_failed_removing_file', "Odstranění souboru se nezdařilo %s.");
|
||||
define('OGP_LANG_removed_game_cfg_from_disk_and_datbase', "Odebráno config pro %sz úložiště a databáze.");
|
||||
define('OGP_LANG_delete_game_config_for', "Smazat konfiguraci hry z %s disku a databáze.");
|
||||
define('LANG_resetting_configs', "Resetování všech konfiguračních souborů");
|
||||
define('LANG_updating_configs', "Updating old configs");
|
||||
define('LANG_configs_updated_ok', "Konfigurace úspěšně přečtené.");
|
||||
define('LANG_reset_old_configs', "Obnovit staré configs");
|
||||
define('LANG_update_configs', "Aktualizovat konfigurování");
|
||||
define('LANG_game_config_setup', "Konfigurace nastavení hry");
|
||||
define('LANG_config_reset_warning', "Když vymažete staré configs, může dojít k potížím s přiřazenými herními servery, protože identifikační čísla nemusí odpovídat novým konfiguracím.");
|
||||
define('LANG_modify_configs_info', "Pokud chcete změnit konfiguraci hry, můžete upravit soubory umístěné v %s.");
|
||||
define('LANG_updating_config_from_file', "Aktualizace konfigurace ze %s souboru.");
|
||||
define('LANG_error_when_handling_file', "Při zpracování souboru došlo k chybě %s .");
|
||||
define('LANG_error_while_adding_cfg_to_db', "Při přidávání dat došlo k chybě %sdo databáze.");
|
||||
define('LANG_no_configs_found', "Nebyla nalezena žádná konfigurace%ssoubor.");
|
||||
define('LANG_select_game', "Vyberte hru");
|
||||
define('LANG_create_xml_configs', "Vytvoření konfigurace XML");
|
||||
define('LANG_failed_to_delete_config_from_db', "Smazání se nezdařilo %sconfig z databáze");
|
||||
define('LANG_failed_removing_file', "Odstranění souboru se nezdařilo %s.");
|
||||
define('LANG_removed_game_cfg_from_disk_and_datbase', "Odebráno config pro %sz úložiště a databáze.");
|
||||
define('LANG_delete_game_config_for', "Smazat konfiguraci hry z %s disku a databáze.");
|
||||
?>
|
||||
|
|
@ -22,22 +22,22 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_dashboard_ftp_text', "Klient FTP může komprimovat soubory a odesílat je prostřednictvím e-mailu, může také rozbalit, upravovat textové soubory a mnohem více.");
|
||||
define('OGP_LANG_dashboard_addons_manager_text', "Správa všech různých typů služeb s OGP. Vyberte si z více než 115 serverů, které přímo dodává společnost OGP.");
|
||||
define('OGP_LANG_dashboard_game_monitor_text', "Sledujte a monitorujte provoz a protokoly rychle. Můžete vidět, jaké servery jsou zapnuté a vypnuté.");
|
||||
define('OGP_LANG_dashboard_support_text', "Získejte podporu od OGP Professional Teamu na fóru. Rychlá reakce a velká pozornost.");
|
||||
define('OGP_LANG_welcome_text', "Vítejte v panelu Open Game (OGP). OGP je open source software, který umožňuje instalovat, spouštět a monitorovat různé herní servery.");
|
||||
define('OGP_LANG_any_server_is_online', "Každý server je online");
|
||||
define('OGP_LANG_current_map', "Aktuální mapa");
|
||||
define('OGP_LANG_server_ip_port', "IP:Port");
|
||||
define('OGP_LANG_statistics', "Statistika");
|
||||
define('OGP_LANG_servers', "Servery");
|
||||
define('OGP_LANG_players', "Hráči");
|
||||
define('OGP_LANG_server_status', "Stav Serveru");
|
||||
define('OGP_LANG_no_games_to_monitor', "V současné době neexistují žádné herní servery online / offline");
|
||||
define('OGP_LANG_online_servers', "Online Servery");
|
||||
define('OGP_LANG_add_games_in', "Pokud chcete přidat hry, můžete to udělat %s");
|
||||
define('OGP_LANG_currently_online', "Momentálně je online");
|
||||
define('OGP_LANG_game_servers', "Herní servery");
|
||||
define('OGP_LANG_select_remote_server', "Select Remote Server");
|
||||
define('LANG_dashboard_ftp_text', "Klient FTP může komprimovat soubory a odesílat je prostřednictvím e-mailu, může také rozbalit, upravovat textové soubory a mnohem více.");
|
||||
define('LANG_dashboard_addons_manager_text', "Správa všech různých typů služeb s OGP. Vyberte si z více než 115 serverů, které přímo dodává společnost OGP.");
|
||||
define('LANG_dashboard_game_monitor_text', "Sledujte a monitorujte provoz a protokoly rychle. Můžete vidět, jaké servery jsou zapnuté a vypnuté.");
|
||||
define('LANG_dashboard_support_text', "Získejte podporu od OGP Professional Teamu na fóru. Rychlá reakce a velká pozornost.");
|
||||
define('LANG_welcome_text', "Vítejte v panelu Open Game (OGP). OGP je open source software, který umožňuje instalovat, spouštět a monitorovat různé herní servery.");
|
||||
define('LANG_any_server_is_online', "Každý server je online");
|
||||
define('LANG_current_map', "Aktuální mapa");
|
||||
define('LANG_server_ip_port', "IP:Port");
|
||||
define('LANG_statistics', "Statistika");
|
||||
define('LANG_servers', "Servery");
|
||||
define('LANG_players', "Hráči");
|
||||
define('LANG_server_status', "Stav Serveru");
|
||||
define('LANG_no_games_to_monitor', "V současné době neexistují žádné herní servery online / offline");
|
||||
define('LANG_online_servers', "Online Servery");
|
||||
define('LANG_add_games_in', "Pokud chcete přidat hry, můžete to udělat %s");
|
||||
define('LANG_currently_online', "Momentálně je online");
|
||||
define('LANG_game_servers', "Herní servery");
|
||||
define('LANG_select_remote_server', "Select Remote Server");
|
||||
?>
|
||||
|
|
@ -22,9 +22,9 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_dsi_long', "Obrázek dynamického serveru");
|
||||
define('OGP_LANG_dsi_select_server', "Z rozevíracího seznamu vyberte server");
|
||||
define('OGP_LANG_dsi_admin_long', "Dynamické nastavení obrazu serveru");
|
||||
define('OGP_LANG_dsi_list', "Seznam dynamických serverů");
|
||||
define('OGP_LANG_no_game_homes_assigned', "You don't have any servers assigned to your account.");
|
||||
define('LANG_dsi_long', "Obrázek dynamického serveru");
|
||||
define('LANG_dsi_select_server', "Z rozevíracího seznamu vyberte server");
|
||||
define('LANG_dsi_admin_long', "Dynamické nastavení obrazu serveru");
|
||||
define('LANG_dsi_list', "Seznam dynamických serverů");
|
||||
define('LANG_no_game_homes_assigned', "You don't have any servers assigned to your account.");
|
||||
?>
|
||||
|
|
@ -1,17 +1,17 @@
|
|||
<?php
|
||||
|
||||
define('OGP_LANG_configuration_files', "Konfigurační soubory");
|
||||
define('OGP_LANG_editing_file', "Úpravy souboru");
|
||||
define('OGP_LANG_no_server_specfied', "Nebyl zadán žádný ID serveru - nelze uvést žádné konfigurační soubory.");
|
||||
define('OGP_LANG_no_home', "Nemáte přístup k danému ID serveru.");
|
||||
define('OGP_LANG_no_configs_for_game', "To nemá definované konfigurační soubory.");
|
||||
define('OGP_LANG_name', "Název");
|
||||
define('OGP_LANG_no_description', "Bez popisu");
|
||||
define('OGP_LANG_description', "Popis");
|
||||
define('OGP_LANG_invalid_file', "Zadaný soubor nemusí být upravován.");
|
||||
define('OGP_LANG_wrote_changes', "Soubor byl úspěšně uložen.");
|
||||
define('OGP_LANG_failed_write', "Soubor se nezdařil.");
|
||||
define('OGP_LANG_failed_read', "Soubor se nepodařilo přečíst.");
|
||||
define('OGP_LANG_save', "Uložit");
|
||||
define('OGP_LANG_go_back', "Vraťte se zpět");
|
||||
define('OGP_LANG_new_file', "Nový soubor");
|
||||
define('LANG_configuration_files', "Konfigurační soubory");
|
||||
define('LANG_editing_file', "Úpravy souboru");
|
||||
define('LANG_no_server_specfied', "Nebyl zadán žádný ID serveru - nelze uvést žádné konfigurační soubory.");
|
||||
define('LANG_no_home', "Nemáte přístup k danému ID serveru.");
|
||||
define('LANG_no_configs_for_game', "To nemá definované konfigurační soubory.");
|
||||
define('LANG_name', "Název");
|
||||
define('LANG_no_description', "Bez popisu");
|
||||
define('LANG_description', "Popis");
|
||||
define('LANG_invalid_file', "Zadaný soubor nemusí být upravován.");
|
||||
define('LANG_wrote_changes', "Soubor byl úspěšně uložen.");
|
||||
define('LANG_failed_write', "Soubor se nezdařil.");
|
||||
define('LANG_failed_read', "Soubor se nepodařilo přečíst.");
|
||||
define('LANG_save', "Uložit");
|
||||
define('LANG_go_back', "Vraťte se zpět");
|
||||
define('LANG_new_file', "Nový soubor");
|
||||
|
|
@ -23,21 +23,21 @@
|
|||
*/
|
||||
|
||||
include 'update.php';
|
||||
define('OGP_LANG_unable_download', "Nelze stáhnout %s.");
|
||||
define('OGP_LANG_md5_failed', "Test MD5 se nezdařil %s, Zkus to znovu.");
|
||||
define('OGP_LANG_uninstall', "Odinstalujte");
|
||||
define('OGP_LANG_install', "Nainstalujte");
|
||||
define('OGP_LANG_uptodate', "Aktuálně");
|
||||
define('OGP_LANG_update_available', "Aktualizace k dispozici");
|
||||
define('OGP_LANG_not_installed', "Není instalován");
|
||||
define('OGP_LANG_installed', "Instalováno");
|
||||
define('OGP_LANG_download_update', "Stáhnout / Aktualizovat");
|
||||
define('OGP_LANG_are_you_sure', "jsi si jistý?");
|
||||
define('OGP_LANG_uninstalling_module_dataloss', "Odinstalováním modulu ztratíte veškerá data, která s ním souvisejí.");
|
||||
define('OGP_LANG_remove_files_for', "Chcete odstranit všechny soubory pro");
|
||||
define('OGP_LANG_confirm', "Potvrdit");
|
||||
define('OGP_LANG_cancel', "zrušit");
|
||||
define('OGP_LANG_extra_themes', "Další témata");
|
||||
define('OGP_LANG_extra_modules', "Další moduly");
|
||||
define('OGP_LANG_search_for_updates', "Kontrola aktualizací");
|
||||
define('LANG_unable_download', "Nelze stáhnout %s.");
|
||||
define('LANG_md5_failed', "Test MD5 se nezdařil %s, Zkus to znovu.");
|
||||
define('LANG_uninstall', "Odinstalujte");
|
||||
define('LANG_install', "Nainstalujte");
|
||||
define('LANG_uptodate', "Aktuálně");
|
||||
define('LANG_update_available', "Aktualizace k dispozici");
|
||||
define('LANG_not_installed', "Není instalován");
|
||||
define('LANG_installed', "Instalováno");
|
||||
define('LANG_download_update', "Stáhnout / Aktualizovat");
|
||||
define('LANG_are_you_sure', "jsi si jistý?");
|
||||
define('LANG_uninstalling_module_dataloss', "Odinstalováním modulu ztratíte veškerá data, která s ním souvisejí.");
|
||||
define('LANG_remove_files_for', "Chcete odstranit všechny soubory pro");
|
||||
define('LANG_confirm', "Potvrdit");
|
||||
define('LANG_cancel', "zrušit");
|
||||
define('LANG_extra_themes', "Další témata");
|
||||
define('LANG_extra_modules', "Další moduly");
|
||||
define('LANG_search_for_updates', "Kontrola aktualizací");
|
||||
?>
|
||||
|
|
@ -22,53 +22,53 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_create_alias', "Create alias and folder");
|
||||
define('OGP_LANG_save_as', "Save As");
|
||||
define('OGP_LANG_failure', "Error, failed to generate the alias file");
|
||||
define('OGP_LANG_success', "Success");
|
||||
define('OGP_LANG_fast_download_service_for', "Downloads redirection service for %s");
|
||||
define('OGP_LANG_to_the_path', "To the path");
|
||||
define('OGP_LANG_at_url', "at URL");
|
||||
define('OGP_LANG_create_alias_for', "Create alias for");
|
||||
define('OGP_LANG_fast_dl', "Redirecting downloads (FastDL)");
|
||||
define('OGP_LANG_current_aliases_at_remote_server', "Current aliases at remote server");
|
||||
define('OGP_LANG_delete_selected_aliases', "Delete selected aliases");
|
||||
define('OGP_LANG_no_aliases_defined', "There are no web aliases defined by OGP for this remote server yet.");
|
||||
define('OGP_LANG_fastdl_port', "Port");
|
||||
define('OGP_LANG_fastdl_port_info', "Port on which your Fast Download Daemon will start.");
|
||||
define('OGP_LANG_fastdl_ip', "Address");
|
||||
define('OGP_LANG_fastdl_ip_info', "The IP address or domain in which your Fast Download server will start, the domain must to be listed at /etc/hosts.");
|
||||
define('OGP_LANG_listing', "Listing");
|
||||
define('OGP_LANG_listing_info', "If 'on', the server will list the contents of folders.");
|
||||
define('OGP_LANG_fast_dl_advanced', "Advanced Settings");
|
||||
define('OGP_LANG_apply_settings_and_restart_fastdl', "Save the daemon configuration and restart it");
|
||||
define('OGP_LANG_stop_fastdl', "Stop Fast Download Daemon");
|
||||
define('OGP_LANG_fast_download_daemon_running', "Fast Download Daemon is running.");
|
||||
define('OGP_LANG_fast_download_daemon_not_running', "Fast Download Daemon is not running.");
|
||||
define('OGP_LANG_fastdl_could_not_be_restarted', "The Fast Download service could not be restarted.");
|
||||
define('OGP_LANG_configuration_file_could_not_be_written', "The configuration file could not be written.");
|
||||
define('OGP_LANG_remove_folders', "Remove folder for selected aliases.");
|
||||
define('OGP_LANG_remove_folder', "Remove folder");
|
||||
define('OGP_LANG_delete_alias', "Delete alias");
|
||||
define('OGP_LANG_no_game_homes_assigned', "You don't have any servers assigned to your account.");
|
||||
define('OGP_LANG_select_remote_server', "Select remote server");
|
||||
define('OGP_LANG_access_rules', "Access Rules");
|
||||
define('OGP_LANG_create_aliases', "Create Aliases");
|
||||
define('OGP_LANG_select_game', "Select game");
|
||||
define('OGP_LANG_games_without_specified_rules', "Games without specified rules");
|
||||
define('OGP_LANG_match_file_extension', "Match file extension");
|
||||
define('OGP_LANG_match_file_extension_info', "Specify extensions separated by coma,<br> the matching files will be accessible.<br><b>Blank for unrestricted access</b>.");
|
||||
define('OGP_LANG_match_client_ip', "Match client IP");
|
||||
define('OGP_LANG_match_client_ip_info', "Connections with matching IP will be granted,<br>blank for unrestricted access. You can use<br>multiple IPs or ranges separated by coma:<br>/xx subnets<br>Example: 10.0.0.0/16<br>/xxx.xxx.xxx.xxx subnets<br>Example: 10.0.0.0/255.0.0.0<br>Hyphen ranges<br>Example: 10.0.0.5-230<br>Asterisk matching<br>Example: 10.0.*.*");
|
||||
define('OGP_LANG_save_access_rules', "Save Access Rules");
|
||||
define('OGP_LANG_create_access_rules', "Create access rules");
|
||||
define('OGP_LANG_invalid_entries_found', "Invalid entries found");
|
||||
define('OGP_LANG_game_name', "Game name");
|
||||
define('OGP_LANG_alias_already_exists', "Alias %s already exists.");
|
||||
define('OGP_LANG_warning_access_rules_applied_once_alias_created', "WARNING: Access rules are applied when the alias is created. No changes will be applied to the current aliases.");
|
||||
define('OGP_LANG_autostart_on_agent_startup', "Autostart on Agent startup");
|
||||
define('OGP_LANG_autostart_on_agent_startup_info', "Start the fast download daemon automatically when the Agent starts.");
|
||||
define('OGP_LANG_port_forwarded_to_80', "Port forwarded from 80");
|
||||
define('OGP_LANG_port_forwarded_to_80_info', "Enable this option if the port configured for this fast download daemon has been forwarded from port 80, so the port will be hidden at URLs.");
|
||||
define('OGP_LANG_current_access_rules', "Current access rules");
|
||||
define('LANG_create_alias', "Create alias and folder");
|
||||
define('LANG_save_as', "Save As");
|
||||
define('LANG_failure', "Error, failed to generate the alias file");
|
||||
define('LANG_success', "Success");
|
||||
define('LANG_fast_download_service_for', "Downloads redirection service for %s");
|
||||
define('LANG_to_the_path', "To the path");
|
||||
define('LANG_at_url', "at URL");
|
||||
define('LANG_create_alias_for', "Create alias for");
|
||||
define('LANG_fast_dl', "Redirecting downloads (FastDL)");
|
||||
define('LANG_current_aliases_at_remote_server', "Current aliases at remote server");
|
||||
define('LANG_delete_selected_aliases', "Delete selected aliases");
|
||||
define('LANG_no_aliases_defined', "There are no web aliases defined by OGP for this remote server yet.");
|
||||
define('LANG_fastdl_port', "Port");
|
||||
define('LANG_fastdl_port_info', "Port on which your Fast Download Daemon will start.");
|
||||
define('LANG_fastdl_ip', "Address");
|
||||
define('LANG_fastdl_ip_info', "The IP address or domain in which your Fast Download server will start, the domain must to be listed at /etc/hosts.");
|
||||
define('LANG_listing', "Listing");
|
||||
define('LANG_listing_info', "If 'on', the server will list the contents of folders.");
|
||||
define('LANG_fast_dl_advanced', "Advanced Settings");
|
||||
define('LANG_apply_settings_and_restart_fastdl', "Save the daemon configuration and restart it");
|
||||
define('LANG_stop_fastdl', "Stop Fast Download Daemon");
|
||||
define('LANG_fast_download_daemon_running', "Fast Download Daemon is running.");
|
||||
define('LANG_fast_download_daemon_not_running', "Fast Download Daemon is not running.");
|
||||
define('LANG_fastdl_could_not_be_restarted', "The Fast Download service could not be restarted.");
|
||||
define('LANG_configuration_file_could_not_be_written', "The configuration file could not be written.");
|
||||
define('LANG_remove_folders', "Remove folder for selected aliases.");
|
||||
define('LANG_remove_folder', "Remove folder");
|
||||
define('LANG_delete_alias', "Delete alias");
|
||||
define('LANG_no_game_homes_assigned', "You don't have any servers assigned to your account.");
|
||||
define('LANG_select_remote_server', "Select remote server");
|
||||
define('LANG_access_rules', "Access Rules");
|
||||
define('LANG_create_aliases', "Create Aliases");
|
||||
define('LANG_select_game', "Select game");
|
||||
define('LANG_games_without_specified_rules', "Games without specified rules");
|
||||
define('LANG_match_file_extension', "Match file extension");
|
||||
define('LANG_match_file_extension_info', "Specify extensions separated by coma,<br> the matching files will be accessible.<br><b>Blank for unrestricted access</b>.");
|
||||
define('LANG_match_client_ip', "Match client IP");
|
||||
define('LANG_match_client_ip_info', "Connections with matching IP will be granted,<br>blank for unrestricted access. You can use<br>multiple IPs or ranges separated by coma:<br>/xx subnets<br>Example: 10.0.0.0/16<br>/xxx.xxx.xxx.xxx subnets<br>Example: 10.0.0.0/255.0.0.0<br>Hyphen ranges<br>Example: 10.0.0.5-230<br>Asterisk matching<br>Example: 10.0.*.*");
|
||||
define('LANG_save_access_rules', "Save Access Rules");
|
||||
define('LANG_create_access_rules', "Create access rules");
|
||||
define('LANG_invalid_entries_found', "Invalid entries found");
|
||||
define('LANG_game_name', "Game name");
|
||||
define('LANG_alias_already_exists', "Alias %s already exists.");
|
||||
define('LANG_warning_access_rules_applied_once_alias_created', "WARNING: Access rules are applied when the alias is created. No changes will be applied to the current aliases.");
|
||||
define('LANG_autostart_on_agent_startup', "Autostart on Agent startup");
|
||||
define('LANG_autostart_on_agent_startup_info', "Start the fast download daemon automatically when the Agent starts.");
|
||||
define('LANG_port_forwarded_to_80', "Port forwarded from 80");
|
||||
define('LANG_port_forwarded_to_80_info', "Enable this option if the port configured for this fast download daemon has been forwarded from port 80, so the port will be hidden at URLs.");
|
||||
define('LANG_current_access_rules', "Current access rules");
|
||||
?>
|
||||
|
|
@ -22,14 +22,14 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_ftp_address', "Adresa FTP: %s:%s");
|
||||
define('OGP_LANG_change_account_details', "Změňte podrobnosti o účtu");
|
||||
define('OGP_LANG_remove_account', "Smazat účet");
|
||||
define('OGP_LANG_ftp_account_already_exists', "Tento účet FTP již existuje.");
|
||||
define('OGP_LANG_full_path', "Domovský adresář");
|
||||
define('OGP_LANG_add_ftp_account', "Přidat účet FTP");
|
||||
define('OGP_LANG_remote_server', "Vzdálený server");
|
||||
define('OGP_LANG_server_name', "Název serveru");
|
||||
define('OGP_LANG_ftp_account_username_too_long', "Uživatelské jméno FTP je příliš dlouhé. Zkuste zkrátit uživatelské jméno o délce maximálně 20 znaků.");
|
||||
define('OGP_LANG_ftp_account_password_too_long', "Heslo FTP je příliš dlouhé. Vyzkoušejte kratší heslo, které nesmí přesáhnout 20 znaků.");
|
||||
define('LANG_ftp_address', "Adresa FTP: %s:%s");
|
||||
define('LANG_change_account_details', "Změňte podrobnosti o účtu");
|
||||
define('LANG_remove_account', "Smazat účet");
|
||||
define('LANG_ftp_account_already_exists', "Tento účet FTP již existuje.");
|
||||
define('LANG_full_path', "Domovský adresář");
|
||||
define('LANG_add_ftp_account', "Přidat účet FTP");
|
||||
define('LANG_remote_server', "Vzdálený server");
|
||||
define('LANG_server_name', "Název serveru");
|
||||
define('LANG_ftp_account_username_too_long', "Uživatelské jméno FTP je příliš dlouhé. Zkuste zkrátit uživatelské jméno o délce maximálně 20 znaků.");
|
||||
define('LANG_ftp_account_password_too_long', "Heslo FTP je příliš dlouhé. Vyzkoušejte kratší heslo, které nesmí přesáhnout 20 znaků.");
|
||||
?>
|
||||
|
|
@ -22,189 +22,189 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_no_games_to_monitor', "You do not have any games configured to you that can be monitored.");
|
||||
define('OGP_LANG_status', "Status");
|
||||
define('OGP_LANG_fail_no_mods', "No mods enabled for this game! You need to ask your OGP admin to add mod(s) for the game assigned for you.");
|
||||
define('OGP_LANG_no_game_homes_assigned', "You don't have any servers assigned to your account.");
|
||||
define('OGP_LANG_select_game_home_to_configure', "Select a game server that you want to configure");
|
||||
define('OGP_LANG_file_manager', "File Manager");
|
||||
define('OGP_LANG_configure_mods', "Configure mods");
|
||||
define('OGP_LANG_install_update_steam', "Install/Update via Steam");
|
||||
define('OGP_LANG_install_update_manual', "Install/Update manually");
|
||||
define('OGP_LANG_assign_game_homes', "Assign game servers");
|
||||
define('OGP_LANG_user', "User");
|
||||
define('OGP_LANG_group', "Group");
|
||||
define('OGP_LANG_start', "Start");
|
||||
define('OGP_LANG_ogp_agent_ip', "OGP Agent IP");
|
||||
define('OGP_LANG_max_players', "Max Players");
|
||||
define('OGP_LANG_max', "Max");
|
||||
define('OGP_LANG_ip_and_port', "IP and Port");
|
||||
define('OGP_LANG_available_maps', "Available Maps");
|
||||
define('OGP_LANG_map_path', "Map Path");
|
||||
define('OGP_LANG_available_parameters', "Available Parameters");
|
||||
define('OGP_LANG_start_server', "Start Server");
|
||||
define('OGP_LANG_start_wait_note', "The server startup might take a while. Please wait without closing your browser.");
|
||||
define('OGP_LANG_game_type', "Game Type");
|
||||
define('OGP_LANG_map', "Map");
|
||||
define('OGP_LANG_starting_server', "Starting server, please wait...");
|
||||
define('OGP_LANG_starting_server_settings', "Starting server with following settings");
|
||||
define('OGP_LANG_startup_params', "Startup parameters");
|
||||
define('OGP_LANG_startup_cpu', "CPU the server is running on");
|
||||
define('OGP_LANG_startup_nice', "Nice value of the server");
|
||||
define('OGP_LANG_game_home', "Home Path");
|
||||
define('OGP_LANG_server_started', "Server started successfully.");
|
||||
define('OGP_LANG_no_parameter_access', "You do not have access to parameters.");
|
||||
define('OGP_LANG_extra_parameters', "Extra Parameters");
|
||||
define('OGP_LANG_no_extra_param_access', "You do not have access to extra parameters.");
|
||||
define('OGP_LANG_extra_parameters_info', "These parameters are put to the end of the command line when the game is started.");
|
||||
define('OGP_LANG_game_exec_not_found', "The game executable %s was not found from the remote server.");
|
||||
define('OGP_LANG_select_params_and_start', "Select the startup parameters for the server and press '%s'.");
|
||||
define('OGP_LANG_no_ip_port_pairs_assigned', "No IP Port pairs assigned for this home. If you do not have access to home editing contact your admin.");
|
||||
define('OGP_LANG_unable_to_get_log', "Unable to get log, retval %s.");
|
||||
define('OGP_LANG_server_binary_not_executable', "Server binary is not executable. Check you have proper permissions in the server home directory.");
|
||||
define('OGP_LANG_server_not_running_log_found', "Server is not running, but log is found. NOTE: This log might not be related to the last server startup.");
|
||||
define('OGP_LANG_ip_port_pair_not_owned', "IP:PORT pair not owned.");
|
||||
define('OGP_LANG_unsuitable_maxplayers_value_maximum_reachable_number_of_slots_has_been_set', "Unsuitable maxplayers value, maximum reachable number of slots has been set.");
|
||||
define('OGP_LANG_server_running_not_responding', "Server is running, but its not responding,<br>there might be a some kind of problem and you might want to ");
|
||||
define('OGP_LANG_update_started', "Update started, please wait...");
|
||||
define('OGP_LANG_failed_to_start_steam_update', "Failed to start Steam update. See agent log.");
|
||||
define('OGP_LANG_failed_to_start_rsync_update', "Failed to start Rsync update. See agent log.");
|
||||
define('OGP_LANG_update_completed', "Update completed successfully.");
|
||||
define('OGP_LANG_update_in_progress', "Update in progress, please wait...");
|
||||
define('OGP_LANG_refresh_steam_status', "Refresh Steam status");
|
||||
define('OGP_LANG_refresh_rsync_status', "Refresh Rsync status");
|
||||
define('OGP_LANG_server_running_cant_update', "Server running so update is not possible. Stop the server before update.");
|
||||
define('OGP_LANG_xml_steam_error', "Selected server type does not support steam install/update.");
|
||||
define('OGP_LANG_mod_key_not_found_from_xml', "Mod key '%s' not found from the XML file.");
|
||||
define('OGP_LANG_stop_update', "Stop update");
|
||||
define('OGP_LANG_statistics', "Statistics");
|
||||
define('OGP_LANG_servers', "Servers");
|
||||
define('OGP_LANG_players', "Players");
|
||||
define('OGP_LANG_current_map', "Current Map");
|
||||
define('OGP_LANG_stop_server', "Stop Server");
|
||||
define('OGP_LANG_server_ip_port', "Server IP:Port");
|
||||
define('OGP_LANG_server_name', "Server Name");
|
||||
define('OGP_LANG_server_id', "Server ID");
|
||||
define('OGP_LANG_player_name', "Player Name");
|
||||
define('OGP_LANG_score', "Score");
|
||||
define('OGP_LANG_time', "Time");
|
||||
define('OGP_LANG_no_rights_to_stop_server', "You do not have rights to stop this server.");
|
||||
define('OGP_LANG_no_ogp_lgsl_support', "This server (running: %s) does not have LGSL support in OGP and its statistics can not be shown.");
|
||||
define('OGP_LANG_server_status', "Server on %s is %s.");
|
||||
define('OGP_LANG_server_stopped', "Server '%s' has been stopped.");
|
||||
define('OGP_LANG_if_want_to_start_homes', "If you want to start game servers go to %s.");
|
||||
define('OGP_LANG_view_log', "Log Viewer");
|
||||
define('OGP_LANG_if_want_manage', "If you want to manage your games you can do it in the");
|
||||
define('OGP_LANG_columns', "columns");
|
||||
define('OGP_LANG_group_users', "Group users:");
|
||||
define('OGP_LANG_assigned_to', "Assigned to:");
|
||||
define('OGP_LANG_restart_server', "Restart Server");
|
||||
define('OGP_LANG_restarting_server', "Restarting server, please wait...");
|
||||
define('OGP_LANG_server_restarted', "Server '%s' has been restarted.");
|
||||
define('OGP_LANG_server_not_running', "The server is not running.");
|
||||
define('OGP_LANG_address', "Address");
|
||||
define('OGP_LANG_owner', "Owner");
|
||||
define('OGP_LANG_operations', "Operations");
|
||||
define('OGP_LANG_search', "Search");
|
||||
define('OGP_LANG_maps_read_from', "Maps read from ");
|
||||
define('OGP_LANG_file', "file");
|
||||
define('OGP_LANG_folder', "folder");
|
||||
define('OGP_LANG_unable_retrieve_mod_info', "Unable to retrieve mod information from database.");
|
||||
define('OGP_LANG_unexpected_result_libremote', "Unexpected result from libremote, please inform developers.");
|
||||
define('OGP_LANG_unable_get_info', "Unable to get the required information for startup, blocking startup.");
|
||||
define('OGP_LANG_server_already_running', "Server already running. If you do not see the server in the Game Monitor, there might be a somekind of problem and you might want to");
|
||||
define('OGP_LANG_already_running_stop_server', "Stop server.");
|
||||
define('OGP_LANG_error_server_already_running', "ERROR: Server already running on port");
|
||||
define('OGP_LANG_failed_start_server_code', "Failed to start the remote server. Error code: %s");
|
||||
define('OGP_LANG_disabled', "disabled ");
|
||||
define('OGP_LANG_not_found_server', "Could not find the remote server with ID");
|
||||
define('OGP_LANG_rcon_command_title', "RCON Command");
|
||||
define('OGP_LANG_has_sent_to', "has been sent to");
|
||||
define('OGP_LANG_need_set_remote_pass', "You need to set the remote control password on");
|
||||
define('OGP_LANG_before_sending_rcon_com', "before sending rcon commands to it.");
|
||||
define('OGP_LANG_retry', "Retry");
|
||||
define('OGP_LANG_page', "page");
|
||||
define('OGP_LANG_server_cant_start', "server can not start");
|
||||
define('OGP_LANG_server_cant_stop', "server can not stop");
|
||||
define('OGP_LANG_error_occured_remote_host', "Error occurred on the remote host");
|
||||
define('OGP_LANG_follow_server_status', "You can follow the server status from");
|
||||
define('OGP_LANG_addons', "Addons");
|
||||
define('OGP_LANG_hostname', "Hostname");
|
||||
define('OGP_LANG_rsync_install', "[Rsync Install]");
|
||||
define('OGP_LANG_ping', "Ping");
|
||||
define('OGP_LANG_team', "Team");
|
||||
define('OGP_LANG_deaths', "Deaths");
|
||||
define('OGP_LANG_pid', "PID");
|
||||
define('OGP_LANG_skill', "Skill");
|
||||
define('OGP_LANG_AIBot', "AIBot");
|
||||
define('OGP_LANG_steamid', "Steam ID");
|
||||
define('OGP_LANG_player', "Player");
|
||||
define('OGP_LANG_port', "Port");
|
||||
define('OGP_LANG_rcon_presets', "RCON presets");
|
||||
define('OGP_LANG_update_from_local_master_server', "Update from local Master Server");
|
||||
define('OGP_LANG_update_from_selected_rsync_server', "Update from selected Rsync server");
|
||||
define('OGP_LANG_execute_selected_server_operations', "Execute selected server operations");
|
||||
define('OGP_LANG_execute_operations', "Execute operations");
|
||||
define('OGP_LANG_account_expiration', "Account expiration");
|
||||
define('OGP_LANG_mysql_databases', "MySQL Databases");
|
||||
define('OGP_LANG_failed_querying_server', "* Failed querying the server.");
|
||||
define('OGP_LANG_query_protocol_not_supported', "* There is no query protocol in OGP that can support this server.");
|
||||
define('OGP_LANG_queries_disabled_by_setting_disable_queries_after', "Queries disabled by setting: Disable queries after: %s, since you have %s servers.<br>");
|
||||
define('OGP_LANG_presets_for_game_and_mod', "RCON presets for %s and mod %s");
|
||||
define('OGP_LANG_name', "Name");
|
||||
define('OGP_LANG_command', "RCON Command");
|
||||
define('OGP_LANG_add_preset', "Add preset");
|
||||
define('OGP_LANG_edit_presets', "Edit presets");
|
||||
define('OGP_LANG_del_preset', "Delete");
|
||||
define('OGP_LANG_change_preset', "Change");
|
||||
define('OGP_LANG_send_command', "Send command");
|
||||
define('OGP_LANG_starting_copy_with_master_server_named', "Starting copy with master server named '%s'...");
|
||||
define('OGP_LANG_starting_sync_with', "Starting sync with %s...");
|
||||
define('OGP_LANG_refresh_interval', "Log refreshing interval");
|
||||
define('OGP_LANG_finished_manual_update', "Finished manual update.");
|
||||
define('OGP_LANG_failed_to_start_file_download', "Failed to start file download");
|
||||
define('OGP_LANG_game_name', "Game name");
|
||||
define('OGP_LANG_dest_dir', "Destination directory");
|
||||
define('OGP_LANG_remote_server', "Remote Server");
|
||||
define('OGP_LANG_file_url', "File URL");
|
||||
define('OGP_LANG_file_url_info', "The URL of the file that is uploaded and uncompressed to the directory.");
|
||||
define('OGP_LANG_dest_filename', "Destination Filename");
|
||||
define('OGP_LANG_dest_filename_info', "The filename for the destination file.");
|
||||
define('OGP_LANG_update_server', "Update server");
|
||||
define('OGP_LANG_unavailable', "Unavailable");
|
||||
define('OGP_LANG_upload_map_image', "Upload map image");
|
||||
define('OGP_LANG_upload_image', "Upload image");
|
||||
define('OGP_LANG_jpg_gif_png_less_than_1mb', "The image must be jpg, gif or png and less than 1 MB.");
|
||||
define('OGP_LANG_check_dev_console', "Error during uploading file, please check the browser developer console.");
|
||||
define('OGP_LANG_uploaded_successfully', "Uploaded successfully.");
|
||||
define('OGP_LANG_cant_create_folder', "Can't create folder:<br><b>%s</b>");
|
||||
define('OGP_LANG_cant_write_file', "Can't write file:<br><b>%s</b>");
|
||||
define('OGP_LANG_exceeded_php_directive', "Exceeded PHP directive.<br><b>%s</b>.");
|
||||
define('OGP_LANG_unknown_errors', "Unknown errors.");
|
||||
define('OGP_LANG_directory', "Directory");
|
||||
define('OGP_LANG_view_player_commands', "View Player Commands");
|
||||
define('OGP_LANG_hide_player_commands', "Hide Player Commands");
|
||||
define('OGP_LANG_no_online_players', "There are no online players.");
|
||||
define('OGP_LANG_invalid_game_mod_id', "Invalid Game/Mod ID specified.");
|
||||
define('OGP_LANG_auto_update_title_popup', "Steam Auto Update Link");
|
||||
define('OGP_LANG_auto_update_popup_html', "<p>Use the link below to check and automatically update your game server via Steam if needed. You can query it using a cronjob or manually initiate the process.</p>");
|
||||
define('OGP_LANG_api_links_popup_html', "<p>Select an action you would like to perform using the OGP API for this game server. Then, use the link below to perform your desired action. You can run your desired action using a cronjob or by making a direct request to it.</p>");
|
||||
define('OGP_LANG_auto_update_copy_me', "Copy");
|
||||
define('OGP_LANG_auto_update_copy_me_success', "Copied!");
|
||||
define('OGP_LANG_auto_update_copy_me_fail', "Failed to copy. Please, manually copy the link.");
|
||||
define('OGP_LANG_get_steam_autoupdate_api_link', "Auto Update Link");
|
||||
define('OGP_LANG_show_api_actions', "Show API Actions");
|
||||
define('OGP_LANG_api_links', "API Links");
|
||||
define('OGP_LANG_update_attempt_from_nonmaster_server', "User %s attempted to update home_id %d from a non-master server. (Home ID: %d)");
|
||||
define('OGP_LANG_attempting_nonmaster_update', "You are attempting to update this server from a non-master server.");
|
||||
define('OGP_LANG_cannot_update_from_own_self', "Local server update may not run on a Master server.");
|
||||
define('OGP_LANG_show_server_id', "Show Server IDs");
|
||||
define('OGP_LANG_hide_server_id', "Hide Server IDs");
|
||||
define('OGP_LANG_edit_configuration_files', "Edit Configuration Files");
|
||||
define('OGP_LANG_admin', "Admin");
|
||||
define('OGP_LANG_cid', "CID");
|
||||
define('OGP_LANG_phan', "Phantom");
|
||||
define('OGP_LANG_sec', "Seconds");
|
||||
define('OGP_LANG_unknown_rsync_mirror', "You attempted to start an update from a mirror which doesn't exist.");
|
||||
define('OGP_LANG_custom_fields', "Custom Fields");
|
||||
define('LANG_no_games_to_monitor', "You do not have any games configured to you that can be monitored.");
|
||||
define('LANG_status', "Status");
|
||||
define('LANG_fail_no_mods', "No mods enabled for this game! You need to ask your OGP admin to add mod(s) for the game assigned for you.");
|
||||
define('LANG_no_game_homes_assigned', "You don't have any servers assigned to your account.");
|
||||
define('LANG_select_game_home_to_configure', "Select a game server that you want to configure");
|
||||
define('LANG_file_manager', "File Manager");
|
||||
define('LANG_configure_mods', "Configure mods");
|
||||
define('LANG_install_update_steam', "Install/Update via Steam");
|
||||
define('LANG_install_update_manual', "Install/Update manually");
|
||||
define('LANG_assign_game_homes', "Assign game servers");
|
||||
define('LANG_user', "User");
|
||||
define('LANG_group', "Group");
|
||||
define('LANG_start', "Start");
|
||||
define('LANG_ogp_agent_ip', "OGP Agent IP");
|
||||
define('LANG_max_players', "Max Players");
|
||||
define('LANG_max', "Max");
|
||||
define('LANG_ip_and_port', "IP and Port");
|
||||
define('LANG_available_maps', "Available Maps");
|
||||
define('LANG_map_path', "Map Path");
|
||||
define('LANG_available_parameters', "Available Parameters");
|
||||
define('LANG_start_server', "Start Server");
|
||||
define('LANG_start_wait_note', "The server startup might take a while. Please wait without closing your browser.");
|
||||
define('LANG_game_type', "Game Type");
|
||||
define('LANG_map', "Map");
|
||||
define('LANG_starting_server', "Starting server, please wait...");
|
||||
define('LANG_starting_server_settings', "Starting server with following settings");
|
||||
define('LANG_startup_params', "Startup parameters");
|
||||
define('LANG_startup_cpu', "CPU the server is running on");
|
||||
define('LANG_startup_nice', "Nice value of the server");
|
||||
define('LANG_game_home', "Home Path");
|
||||
define('LANG_server_started', "Server started successfully.");
|
||||
define('LANG_no_parameter_access', "You do not have access to parameters.");
|
||||
define('LANG_extra_parameters', "Extra Parameters");
|
||||
define('LANG_no_extra_param_access', "You do not have access to extra parameters.");
|
||||
define('LANG_extra_parameters_info', "These parameters are put to the end of the command line when the game is started.");
|
||||
define('LANG_game_exec_not_found', "The game executable %s was not found from the remote server.");
|
||||
define('LANG_select_params_and_start', "Select the startup parameters for the server and press '%s'.");
|
||||
define('LANG_no_ip_port_pairs_assigned', "No IP Port pairs assigned for this home. If you do not have access to home editing contact your admin.");
|
||||
define('LANG_unable_to_get_log', "Unable to get log, retval %s.");
|
||||
define('LANG_server_binary_not_executable', "Server binary is not executable. Check you have proper permissions in the server home directory.");
|
||||
define('LANG_server_not_running_log_found', "Server is not running, but log is found. NOTE: This log might not be related to the last server startup.");
|
||||
define('LANG_ip_port_pair_not_owned', "IP:PORT pair not owned.");
|
||||
define('LANG_unsuitable_maxplayers_value_maximum_reachable_number_of_slots_has_been_set', "Unsuitable maxplayers value, maximum reachable number of slots has been set.");
|
||||
define('LANG_server_running_not_responding', "Server is running, but its not responding,<br>there might be a some kind of problem and you might want to ");
|
||||
define('LANG_update_started', "Update started, please wait...");
|
||||
define('LANG_failed_to_start_steam_update', "Failed to start Steam update. See agent log.");
|
||||
define('LANG_failed_to_start_rsync_update', "Failed to start Rsync update. See agent log.");
|
||||
define('LANG_update_completed', "Update completed successfully.");
|
||||
define('LANG_update_in_progress', "Update in progress, please wait...");
|
||||
define('LANG_refresh_steam_status', "Refresh Steam status");
|
||||
define('LANG_refresh_rsync_status', "Refresh Rsync status");
|
||||
define('LANG_server_running_cant_update', "Server running so update is not possible. Stop the server before update.");
|
||||
define('LANG_xml_steam_error', "Selected server type does not support steam install/update.");
|
||||
define('LANG_mod_key_not_found_from_xml', "Mod key '%s' not found from the XML file.");
|
||||
define('LANG_stop_update', "Stop update");
|
||||
define('LANG_statistics', "Statistics");
|
||||
define('LANG_servers', "Servers");
|
||||
define('LANG_players', "Players");
|
||||
define('LANG_current_map', "Current Map");
|
||||
define('LANG_stop_server', "Stop Server");
|
||||
define('LANG_server_ip_port', "Server IP:Port");
|
||||
define('LANG_server_name', "Server Name");
|
||||
define('LANG_server_id', "Server ID");
|
||||
define('LANG_player_name', "Player Name");
|
||||
define('LANG_score', "Score");
|
||||
define('LANG_time', "Time");
|
||||
define('LANG_no_rights_to_stop_server', "You do not have rights to stop this server.");
|
||||
define('LANG_no_ogp_lgsl_support', "This server (running: %s) does not have LGSL support in OGP and its statistics can not be shown.");
|
||||
define('LANG_server_status', "Server on %s is %s.");
|
||||
define('LANG_server_stopped', "Server '%s' has been stopped.");
|
||||
define('LANG_if_want_to_start_homes', "If you want to start game servers go to %s.");
|
||||
define('LANG_view_log', "Log Viewer");
|
||||
define('LANG_if_want_manage', "If you want to manage your games you can do it in the");
|
||||
define('LANG_columns', "columns");
|
||||
define('LANG_group_users', "Group users:");
|
||||
define('LANG_assigned_to', "Assigned to:");
|
||||
define('LANG_restart_server', "Restart Server");
|
||||
define('LANG_restarting_server', "Restarting server, please wait...");
|
||||
define('LANG_server_restarted', "Server '%s' has been restarted.");
|
||||
define('LANG_server_not_running', "The server is not running.");
|
||||
define('LANG_address', "Address");
|
||||
define('LANG_owner', "Owner");
|
||||
define('LANG_operations', "Operations");
|
||||
define('LANG_search', "Search");
|
||||
define('LANG_maps_read_from', "Maps read from ");
|
||||
define('LANG_file', "file");
|
||||
define('LANG_folder', "folder");
|
||||
define('LANG_unable_retrieve_mod_info', "Unable to retrieve mod information from database.");
|
||||
define('LANG_unexpected_result_libremote', "Unexpected result from libremote, please inform developers.");
|
||||
define('LANG_unable_get_info', "Unable to get the required information for startup, blocking startup.");
|
||||
define('LANG_server_already_running', "Server already running. If you do not see the server in the Game Monitor, there might be a somekind of problem and you might want to");
|
||||
define('LANG_already_running_stop_server', "Stop server.");
|
||||
define('LANG_error_server_already_running', "ERROR: Server already running on port");
|
||||
define('LANG_failed_start_server_code', "Failed to start the remote server. Error code: %s");
|
||||
define('LANG_disabled', "disabled ");
|
||||
define('LANG_not_found_server', "Could not find the remote server with ID");
|
||||
define('LANG_rcon_command_title', "RCON Command");
|
||||
define('LANG_has_sent_to', "has been sent to");
|
||||
define('LANG_need_set_remote_pass', "You need to set the remote control password on");
|
||||
define('LANG_before_sending_rcon_com', "before sending rcon commands to it.");
|
||||
define('LANG_retry', "Retry");
|
||||
define('LANG_page', "page");
|
||||
define('LANG_server_cant_start', "server can not start");
|
||||
define('LANG_server_cant_stop', "server can not stop");
|
||||
define('LANG_error_occured_remote_host', "Error occurred on the remote host");
|
||||
define('LANG_follow_server_status', "You can follow the server status from");
|
||||
define('LANG_addons', "Addons");
|
||||
define('LANG_hostname', "Hostname");
|
||||
define('LANG_rsync_install', "[Rsync Install]");
|
||||
define('LANG_ping', "Ping");
|
||||
define('LANG_team', "Team");
|
||||
define('LANG_deaths', "Deaths");
|
||||
define('LANG_pid', "PID");
|
||||
define('LANG_skill', "Skill");
|
||||
define('LANG_AIBot', "AIBot");
|
||||
define('LANG_steamid', "Steam ID");
|
||||
define('LANG_player', "Player");
|
||||
define('LANG_port', "Port");
|
||||
define('LANG_rcon_presets', "RCON presets");
|
||||
define('LANG_update_from_local_master_server', "Update from local Master Server");
|
||||
define('LANG_update_from_selected_rsync_server', "Update from selected Rsync server");
|
||||
define('LANG_execute_selected_server_operations', "Execute selected server operations");
|
||||
define('LANG_execute_operations', "Execute operations");
|
||||
define('LANG_account_expiration', "Account expiration");
|
||||
define('LANG_mysql_databases', "MySQL Databases");
|
||||
define('LANG_failed_querying_server', "* Failed querying the server.");
|
||||
define('LANG_query_protocol_not_supported', "* There is no query protocol in OGP that can support this server.");
|
||||
define('LANG_queries_disabled_by_setting_disable_queries_after', "Queries disabled by setting: Disable queries after: %s, since you have %s servers.<br>");
|
||||
define('LANG_presets_for_game_and_mod', "RCON presets for %s and mod %s");
|
||||
define('LANG_name', "Name");
|
||||
define('LANG_command', "RCON Command");
|
||||
define('LANG_add_preset', "Add preset");
|
||||
define('LANG_edit_presets', "Edit presets");
|
||||
define('LANG_del_preset', "Delete");
|
||||
define('LANG_change_preset', "Change");
|
||||
define('LANG_send_command', "Send command");
|
||||
define('LANG_starting_copy_with_master_server_named', "Starting copy with master server named '%s'...");
|
||||
define('LANG_starting_sync_with', "Starting sync with %s...");
|
||||
define('LANG_refresh_interval', "Log refreshing interval");
|
||||
define('LANG_finished_manual_update', "Finished manual update.");
|
||||
define('LANG_failed_to_start_file_download', "Failed to start file download");
|
||||
define('LANG_game_name', "Game name");
|
||||
define('LANG_dest_dir', "Destination directory");
|
||||
define('LANG_remote_server', "Remote Server");
|
||||
define('LANG_file_url', "File URL");
|
||||
define('LANG_file_url_info', "The URL of the file that is uploaded and uncompressed to the directory.");
|
||||
define('LANG_dest_filename', "Destination Filename");
|
||||
define('LANG_dest_filename_info', "The filename for the destination file.");
|
||||
define('LANG_update_server', "Update server");
|
||||
define('LANG_unavailable', "Unavailable");
|
||||
define('LANG_upload_map_image', "Upload map image");
|
||||
define('LANG_upload_image', "Upload image");
|
||||
define('LANG_jpg_gif_png_less_than_1mb', "The image must be jpg, gif or png and less than 1 MB.");
|
||||
define('LANG_check_dev_console', "Error during uploading file, please check the browser developer console.");
|
||||
define('LANG_uploaded_successfully', "Uploaded successfully.");
|
||||
define('LANG_cant_create_folder', "Can't create folder:<br><b>%s</b>");
|
||||
define('LANG_cant_write_file', "Can't write file:<br><b>%s</b>");
|
||||
define('LANG_exceeded_php_directive', "Exceeded PHP directive.<br><b>%s</b>.");
|
||||
define('LANG_unknown_errors', "Unknown errors.");
|
||||
define('LANG_directory', "Directory");
|
||||
define('LANG_view_player_commands', "View Player Commands");
|
||||
define('LANG_hide_player_commands', "Hide Player Commands");
|
||||
define('LANG_no_online_players', "There are no online players.");
|
||||
define('LANG_invalid_game_mod_id', "Invalid Game/Mod ID specified.");
|
||||
define('LANG_auto_update_title_popup', "Steam Auto Update Link");
|
||||
define('LANG_auto_update_popup_html', "<p>Use the link below to check and automatically update your game server via Steam if needed. You can query it using a cronjob or manually initiate the process.</p>");
|
||||
define('LANG_api_links_popup_html', "<p>Select an action you would like to perform using the OGP API for this game server. Then, use the link below to perform your desired action. You can run your desired action using a cronjob or by making a direct request to it.</p>");
|
||||
define('LANG_auto_update_copy_me', "Copy");
|
||||
define('LANG_auto_update_copy_me_success', "Copied!");
|
||||
define('LANG_auto_update_copy_me_fail', "Failed to copy. Please, manually copy the link.");
|
||||
define('LANG_get_steam_autoupdate_api_link', "Auto Update Link");
|
||||
define('LANG_show_api_actions', "Show API Actions");
|
||||
define('LANG_api_links', "API Links");
|
||||
define('LANG_update_attempt_from_nonmaster_server', "User %s attempted to update home_id %d from a non-master server. (Home ID: %d)");
|
||||
define('LANG_attempting_nonmaster_update', "You are attempting to update this server from a non-master server.");
|
||||
define('LANG_cannot_update_from_own_self', "Local server update may not run on a Master server.");
|
||||
define('LANG_show_server_id', "Show Server IDs");
|
||||
define('LANG_hide_server_id', "Hide Server IDs");
|
||||
define('LANG_edit_configuration_files', "Edit Configuration Files");
|
||||
define('LANG_admin', "Admin");
|
||||
define('LANG_cid', "CID");
|
||||
define('LANG_phan', "Phantom");
|
||||
define('LANG_sec', "Seconds");
|
||||
define('LANG_unknown_rsync_mirror', "You attempted to start an update from a mirror which doesn't exist.");
|
||||
define('LANG_custom_fields', "Custom Fields");
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -22,67 +22,67 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_dir_not_found', "Directory '%s' not found from the server.");
|
||||
define('OGP_LANG_filename', "Filename");
|
||||
define('OGP_LANG_filesize', "Filesize");
|
||||
define('OGP_LANG_bytes', "Bytes");
|
||||
define('OGP_LANG_owner', "Owner");
|
||||
define('OGP_LANG_group', "Group");
|
||||
define('OGP_LANG_empty_directory', "Directory is empty.");
|
||||
define('OGP_LANG_currently_viewing', "Currently viewing directory '%s'");
|
||||
define('OGP_LANG_wrote_changes', "Changes saved successfully.");
|
||||
define('OGP_LANG_failed_write', "Failed to write file to remote server.");
|
||||
define('OGP_LANG_failed_read', "Failed to read file from the remote server.");
|
||||
define('OGP_LANG_failed_list', "Failed to retrieve directory list.");
|
||||
define('OGP_LANG_level_up', "^Up one Level^");
|
||||
define('OGP_LANG_unallowed_char', "Unallowed characters found from the path.");
|
||||
define('OGP_LANG_button_edit', "[Edit]");
|
||||
define('OGP_LANG_save', "Save");
|
||||
define('OGP_LANG_home_id_missing', "Home ID is missing.");
|
||||
define('OGP_LANG_upload', "Upload");
|
||||
define('OGP_LANG_upload_failed', "Upload failed, the error was: %s.");
|
||||
define('OGP_LANG_can_not_create_upload_folder_path', "Can not create upload folder path %s");
|
||||
define('OGP_LANG_url_is_not_accesible_from_agent', "URL %s is not accessible from the Agent");
|
||||
define('OGP_LANG_upload_file', "Upload file");
|
||||
define('OGP_LANG_uncompress', "Uncompress");
|
||||
define('OGP_LANG_create_folder', "Create folder");
|
||||
define('OGP_LANG_create', "Create");
|
||||
define('OGP_LANG_delete_item', "Delete %s?");
|
||||
define('OGP_LANG_upload_in_progress', "Upload in progress...");
|
||||
define('OGP_LANG_upload_complete', "Upload complete.");
|
||||
define('OGP_LANG_chattr_yes', "Lock File");
|
||||
define('OGP_LANG_chattr_no', "Unlock File");
|
||||
define('OGP_LANG_secure_item', "Secure/Unsecure %s?");
|
||||
define('OGP_LANG_filesecure', "File Security");
|
||||
define('OGP_LANG_chattr_locked', "File Locked");
|
||||
define('OGP_LANG_chattr_unlocked', "File Unlocked");
|
||||
define('OGP_LANG_rename', "Rename");
|
||||
define('OGP_LANG_move', "Move");
|
||||
define('OGP_LANG_copy', "Copy");
|
||||
define('OGP_LANG_compress', "Compress");
|
||||
define('OGP_LANG_create_file', "Create File");
|
||||
define('OGP_LANG_select_at_least_one_item', "Select at least one item");
|
||||
define('OGP_LANG_rename_item', "Rename item(s)");
|
||||
define('OGP_LANG_move_item', "Move item(s)");
|
||||
define('OGP_LANG_copy_item', "Copy item(s)");
|
||||
define('OGP_LANG_compress_item', "Compress item(s)");
|
||||
define('OGP_LANG_uncompress_item', "Uncompress item(s)");
|
||||
define('OGP_LANG_archive_name', "Archive name");
|
||||
define('OGP_LANG_archive_type', "Archive type");
|
||||
define('OGP_LANG_file_name', "File name");
|
||||
define('OGP_LANG_folder_name', "folder name");
|
||||
define('OGP_LANG_compresses_files_separately', "compresses files separately");
|
||||
define('OGP_LANG_to', "to");
|
||||
define('OGP_LANG_upload_to_web', "Upload to web");
|
||||
define('OGP_LANG_transfer_to_server', "Transfer to server");
|
||||
define('OGP_LANG_mail_sent_successfully', "Email sent successfully");
|
||||
define('OGP_LANG_send_item_by_email', "Send item(s) by email");
|
||||
define('OGP_LANG_subject', "Subject");
|
||||
define('OGP_LANG_message', "Message");
|
||||
define('OGP_LANG_dest_email', "Destination email");
|
||||
define('OGP_LANG_remove', "Remove");
|
||||
define('OGP_LANG_send_by_email', "Send by email");
|
||||
define('OGP_LANG_send_by_email_info', "For sending files the 'mutt' package must be installed on all available Agents.");
|
||||
define('OGP_LANG_settings_updated', "Settings updated");
|
||||
define('OGP_LANG_update_settings', "Update settings");
|
||||
define('LANG_dir_not_found', "Directory '%s' not found from the server.");
|
||||
define('LANG_filename', "Filename");
|
||||
define('LANG_filesize', "Filesize");
|
||||
define('LANG_bytes', "Bytes");
|
||||
define('LANG_owner', "Owner");
|
||||
define('LANG_group', "Group");
|
||||
define('LANG_empty_directory', "Directory is empty.");
|
||||
define('LANG_currently_viewing', "Currently viewing directory '%s'");
|
||||
define('LANG_wrote_changes', "Changes saved successfully.");
|
||||
define('LANG_failed_write', "Failed to write file to remote server.");
|
||||
define('LANG_failed_read', "Failed to read file from the remote server.");
|
||||
define('LANG_failed_list', "Failed to retrieve directory list.");
|
||||
define('LANG_level_up', "^Up one Level^");
|
||||
define('LANG_unallowed_char', "Unallowed characters found from the path.");
|
||||
define('LANG_button_edit', "[Edit]");
|
||||
define('LANG_save', "Save");
|
||||
define('LANG_home_id_missing', "Home ID is missing.");
|
||||
define('LANG_upload', "Upload");
|
||||
define('LANG_upload_failed', "Upload failed, the error was: %s.");
|
||||
define('LANG_can_not_create_upload_folder_path', "Can not create upload folder path %s");
|
||||
define('LANG_url_is_not_accesible_from_agent', "URL %s is not accessible from the Agent");
|
||||
define('LANG_upload_file', "Upload file");
|
||||
define('LANG_uncompress', "Uncompress");
|
||||
define('LANG_create_folder', "Create folder");
|
||||
define('LANG_create', "Create");
|
||||
define('LANG_delete_item', "Delete %s?");
|
||||
define('LANG_upload_in_progress', "Upload in progress...");
|
||||
define('LANG_upload_complete', "Upload complete.");
|
||||
define('LANG_chattr_yes', "Lock File");
|
||||
define('LANG_chattr_no', "Unlock File");
|
||||
define('LANG_secure_item', "Secure/Unsecure %s?");
|
||||
define('LANG_filesecure', "File Security");
|
||||
define('LANG_chattr_locked', "File Locked");
|
||||
define('LANG_chattr_unlocked', "File Unlocked");
|
||||
define('LANG_rename', "Rename");
|
||||
define('LANG_move', "Move");
|
||||
define('LANG_copy', "Copy");
|
||||
define('LANG_compress', "Compress");
|
||||
define('LANG_create_file', "Create File");
|
||||
define('LANG_select_at_least_one_item', "Select at least one item");
|
||||
define('LANG_rename_item', "Rename item(s)");
|
||||
define('LANG_move_item', "Move item(s)");
|
||||
define('LANG_copy_item', "Copy item(s)");
|
||||
define('LANG_compress_item', "Compress item(s)");
|
||||
define('LANG_uncompress_item', "Uncompress item(s)");
|
||||
define('LANG_archive_name', "Archive name");
|
||||
define('LANG_archive_type', "Archive type");
|
||||
define('LANG_file_name', "File name");
|
||||
define('LANG_folder_name', "folder name");
|
||||
define('LANG_compresses_files_separately', "compresses files separately");
|
||||
define('LANG_to', "to");
|
||||
define('LANG_upload_to_web', "Upload to web");
|
||||
define('LANG_transfer_to_server', "Transfer to server");
|
||||
define('LANG_mail_sent_successfully', "Email sent successfully");
|
||||
define('LANG_send_item_by_email', "Send item(s) by email");
|
||||
define('LANG_subject', "Subject");
|
||||
define('LANG_message', "Message");
|
||||
define('LANG_dest_email', "Destination email");
|
||||
define('LANG_remove', "Remove");
|
||||
define('LANG_send_by_email', "Send by email");
|
||||
define('LANG_send_by_email_info', "For sending files the 'mutt' package must be installed on all available Agents.");
|
||||
define('LANG_settings_updated', "Settings updated");
|
||||
define('LANG_update_settings', "Update settings");
|
||||
?>
|
||||
|
|
@ -22,23 +22,23 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_recover', "Obnovit zapomenuté heslo");
|
||||
define('OGP_LANG_back', "Zpět");
|
||||
define('OGP_LANG_incomplete', "Vraťte se a vyplňte všechna pole ve formuláři.");
|
||||
define('OGP_LANG_subject', "Požadavek na heslo");
|
||||
define('OGP_LANG_password_message', "Ahoj,<br><br>Vaše heslo bylo úspěšně resetováno.<br><br>Nové heslo: %s<br><br>Nezapomeňte heslo často měnit.<br><br>Prosím neodpovídejte na tento email!<br><br>______________________________<br>Black Market Servers");
|
||||
define('OGP_LANG_send', "Vaše heslo bylo odesláno! Prosím zkontrolujte svůj e-mail!");
|
||||
define('OGP_LANG_here', "Tady");
|
||||
define('OGP_LANG_to_login', "přihlásit se");
|
||||
define('OGP_LANG_errormail', "Vaše e-mailová adresa není správná.");
|
||||
define('OGP_LANG_submit', "Předložit");
|
||||
define('OGP_LANG_click', "Klikněte na tlačítko");
|
||||
define('OGP_LANG_mail_settings_missing', "Nastavení poštovní schránky není dokončeno, takže nemůže odeslat heslo. Obraťte se na administrátora OGP.");
|
||||
define('OGP_LANG_mail_failed', "Odeslání e-mailu se nezdařilo.");
|
||||
define('OGP_LANG_email', "E-mailem");
|
||||
define('OGP_LANG_enter_email', "prosím zadejte svou e-mailovou adresu");
|
||||
define('OGP_LANG_webmaster', "Webmaster");
|
||||
define('OGP_LANG_confirm_send', "For security reasons we have sent you a confirmation link before you restart your password.<br><b style='color:red;'>Please check your inbox.</b>");
|
||||
define('OGP_LANG_confirm_change_subject', "Reset hesel, potvrzovací e-mail");
|
||||
define('OGP_LANG_confirm_change_password_message', "Hello,<br><br>Please click on the link below to reset your password:<br><br>%s<br><br>Note: If you do not have requested the reset of your password, you can ignore this email.<br><br>Please do not reply to this email!<br><br>______________________________<br>Black Market Servers");
|
||||
define('LANG_recover', "Obnovit zapomenuté heslo");
|
||||
define('LANG_back', "Zpět");
|
||||
define('LANG_incomplete', "Vraťte se a vyplňte všechna pole ve formuláři.");
|
||||
define('LANG_subject', "Požadavek na heslo");
|
||||
define('LANG_password_message', "Ahoj,<br><br>Vaše heslo bylo úspěšně resetováno.<br><br>Nové heslo: %s<br><br>Nezapomeňte heslo často měnit.<br><br>Prosím neodpovídejte na tento email!<br><br>______________________________<br>Black Market Servers");
|
||||
define('LANG_send', "Vaše heslo bylo odesláno! Prosím zkontrolujte svůj e-mail!");
|
||||
define('LANG_here', "Tady");
|
||||
define('LANG_to_login', "přihlásit se");
|
||||
define('LANG_errormail', "Vaše e-mailová adresa není správná.");
|
||||
define('LANG_submit', "Předložit");
|
||||
define('LANG_click', "Klikněte na tlačítko");
|
||||
define('LANG_mail_settings_missing', "Nastavení poštovní schránky není dokončeno, takže nemůže odeslat heslo. Obraťte se na administrátora OGP.");
|
||||
define('LANG_mail_failed', "Odeslání e-mailu se nezdařilo.");
|
||||
define('LANG_email', "E-mailem");
|
||||
define('LANG_enter_email', "prosím zadejte svou e-mailovou adresu");
|
||||
define('LANG_webmaster', "Webmaster");
|
||||
define('LANG_confirm_send', "For security reasons we have sent you a confirmation link before you restart your password.<br><b style='color:red;'>Please check your inbox.</b>");
|
||||
define('LANG_confirm_change_subject', "Reset hesel, potvrzovací e-mail");
|
||||
define('LANG_confirm_change_password_message', "Hello,<br><br>Please click on the link below to reset your password:<br><br>%s<br><br>Note: If you do not have requested the reset of your password, you can ignore this email.<br><br>Please do not reply to this email!<br><br>______________________________<br>Black Market Servers");
|
||||
?>
|
||||
|
|
@ -22,35 +22,35 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_module_id', "Module ID");
|
||||
define('OGP_LANG_module_name', "Module Name");
|
||||
define('OGP_LANG_module_folder', "Module Folder");
|
||||
define('OGP_LANG_module_version', "Module Version");
|
||||
define('OGP_LANG_db_version', "DB Version");
|
||||
define('OGP_LANG_modules_available_for_install', "Custom Modules Available for Installation:");
|
||||
define('OGP_LANG_install', "Install");
|
||||
define('OGP_LANG_uninstall', "Uninstall");
|
||||
define('OGP_LANG_modules', "Modules");
|
||||
define('OGP_LANG_update_modules', "Update Modules");
|
||||
define('OGP_LANG_no_installed_modules', "No installed modules found.");
|
||||
define('OGP_LANG_not_complete', "The install/uninstall feature is not complete and might not work properly. WARNING: Data loss may occur in the OGP database!");
|
||||
define('OGP_LANG_core_mods_installed', "Installed Core Modules:");
|
||||
define('OGP_LANG_custom_mods_installed', "Installed Custom Modules:");
|
||||
define('OGP_LANG_installing_module', "Installing module '%s'");
|
||||
define('OGP_LANG_successfully_installed_module', "Successfully installed module %s.");
|
||||
define('OGP_LANG_failed_to_install_module', "Failed to install module %s.");
|
||||
define('OGP_LANG_adding_module', "Adding module called '%s'.");
|
||||
define('OGP_LANG_module_already_installed', "Module called '%s' is already installed.");
|
||||
define('OGP_LANG_uninstalling_module', "Uninstalling module '%s'");
|
||||
define('OGP_LANG_successfully_uninstalled_module', "Successfully uninstalled module %s.");
|
||||
define('OGP_LANG_failed_to_uninstall_module', "Failed to uninstall module %s.");
|
||||
define('OGP_LANG_module_file_missing', "directory is missing the module.php file.");
|
||||
define('OGP_LANG_module_file_missing_info', "is missing the required information.");
|
||||
define('OGP_LANG_query_failed', "Failed to execute query");
|
||||
define('OGP_LANG_query_failed_2', "to database.");
|
||||
define('OGP_LANG_failed_del_db', "Failed to delete module from database.");
|
||||
define('OGP_LANG_updated_module', "Updated module: '%s'.");
|
||||
define('OGP_LANG_updating_modules', "Updating Modules");
|
||||
define('OGP_LANG_updating_finished', "Updating Finished");
|
||||
define('OGP_LANG_prereqs_missing', "Prerequisites of %s must be installed on the server before %s can be installed.");
|
||||
define('LANG_module_id', "Module ID");
|
||||
define('LANG_module_name', "Module Name");
|
||||
define('LANG_module_folder', "Module Folder");
|
||||
define('LANG_module_version', "Module Version");
|
||||
define('LANG_db_version', "DB Version");
|
||||
define('LANG_modules_available_for_install', "Custom Modules Available for Installation:");
|
||||
define('LANG_install', "Install");
|
||||
define('LANG_uninstall', "Uninstall");
|
||||
define('LANG_modules', "Modules");
|
||||
define('LANG_update_modules', "Update Modules");
|
||||
define('LANG_no_installed_modules', "No installed modules found.");
|
||||
define('LANG_not_complete', "The install/uninstall feature is not complete and might not work properly. WARNING: Data loss may occur in the OGP database!");
|
||||
define('LANG_core_mods_installed', "Installed Core Modules:");
|
||||
define('LANG_custom_mods_installed', "Installed Custom Modules:");
|
||||
define('LANG_installing_module', "Installing module '%s'");
|
||||
define('LANG_successfully_installed_module', "Successfully installed module %s.");
|
||||
define('LANG_failed_to_install_module', "Failed to install module %s.");
|
||||
define('LANG_adding_module', "Adding module called '%s'.");
|
||||
define('LANG_module_already_installed', "Module called '%s' is already installed.");
|
||||
define('LANG_uninstalling_module', "Uninstalling module '%s'");
|
||||
define('LANG_successfully_uninstalled_module', "Successfully uninstalled module %s.");
|
||||
define('LANG_failed_to_uninstall_module', "Failed to uninstall module %s.");
|
||||
define('LANG_module_file_missing', "directory is missing the module.php file.");
|
||||
define('LANG_module_file_missing_info', "is missing the required information.");
|
||||
define('LANG_query_failed', "Failed to execute query");
|
||||
define('LANG_query_failed_2', "to database.");
|
||||
define('LANG_failed_del_db', "Failed to delete module from database.");
|
||||
define('LANG_updated_module', "Updated module: '%s'.");
|
||||
define('LANG_updating_modules', "Updating Modules");
|
||||
define('LANG_updating_finished', "Updating Finished");
|
||||
define('LANG_prereqs_missing', "Prerequisites of %s must be installed on the server before %s can be installed.");
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -22,94 +22,94 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_configured_mysql_hosts', "Configured MySQL Hosts");
|
||||
define('OGP_LANG_add_new_mysql_host', "Add MySQL host");
|
||||
define('OGP_LANG_enter_mysql_ip', "Enter MySQL IP.");
|
||||
define('OGP_LANG_enter_valid_port', "Enter a valid port.");
|
||||
define('OGP_LANG_enter_mysql_root_password', "Enter MySQL root password.");
|
||||
define('OGP_LANG_enter_mysql_name', "Enter MySQL name.");
|
||||
define('OGP_LANG_could_not_add_mysql_server', "Could not add MySQL server.");
|
||||
define('OGP_LANG_game_server_name_info', "Server name helps users to identify their servers.");
|
||||
define('OGP_LANG_note_mysql_host', "Note: Using a 'Direct connection' the server must accept external connections so the servers can connect remotely, whereas connecting through a remote server it will be used just as a local connection.");
|
||||
define('OGP_LANG_direct_connection', "Direct connection");
|
||||
define('OGP_LANG_connection_through_remote_server_named', "Connection through remote server named %s");
|
||||
define('OGP_LANG_add_mysql_server', "Add MySQL server");
|
||||
define('OGP_LANG_mysql_online', "MySQL online");
|
||||
define('OGP_LANG_mysql_offline', "MySQL offline");
|
||||
define('OGP_LANG_encryption_key_mismatch', "Encryption key mismatch");
|
||||
define('OGP_LANG_unknown_error', "Unknown error");
|
||||
define('OGP_LANG_remove', "Delete");
|
||||
define('OGP_LANG_assign_db', "Assign Database");
|
||||
define('OGP_LANG_mysql_server_name', "MySQL server name");
|
||||
define('OGP_LANG_server_status', "Server status");
|
||||
define('OGP_LANG_mysql_ip_port', "MySQL IP:port");
|
||||
define('OGP_LANG_mysql_root_passwd', "MySQL root password");
|
||||
define('OGP_LANG_connection_method', "Connection method");
|
||||
define('OGP_LANG_user_privilegies', "User privileges");
|
||||
define('OGP_LANG_current_dbs', "Current databases");
|
||||
define('OGP_LANG_mysql_name', "MySQL server name");
|
||||
define('OGP_LANG_mysql_ip', "MySQL IP");
|
||||
define('OGP_LANG_mysql_port', "MySQL port");
|
||||
define('OGP_LANG_privilegies', "privileges");
|
||||
define('OGP_LANG_all', "All");
|
||||
define('OGP_LANG_custom', "Custom");
|
||||
define('OGP_LANG_server_added', "Server added.");
|
||||
define('OGP_LANG_sql_alter', "ALTER");
|
||||
define('OGP_LANG_sql_create', "CREATE");
|
||||
define('OGP_LANG_sql_create_temporary_tables', "CREATE TEMPORARY TABLES");
|
||||
define('OGP_LANG_sql_drop', "DROP");
|
||||
define('OGP_LANG_sql_index', "INDEX");
|
||||
define('OGP_LANG_sql_insert', "INSERT");
|
||||
define('OGP_LANG_sql_lock_tables', "LOCK TABLES");
|
||||
define('OGP_LANG_sql_select', "SELECT");
|
||||
define('OGP_LANG_sql_grant_option', "GRANT OPTION");
|
||||
define('OGP_LANG_sql_update', "UPDATE");
|
||||
define('OGP_LANG_sql_delete', "DELETE");
|
||||
define('OGP_LANG_sql_alter_info', "<b>Enables use of ALTER TABLE.</b>");
|
||||
define('OGP_LANG_sql_create_info', "<b>Enables use of CREATE TABLE.</b>");
|
||||
define('OGP_LANG_sql_create_temporary_tables_info', "<b>Enables use of CREATE TEMPORARY TABLE.</b>");
|
||||
define('OGP_LANG_sql_delete_info', "<b>Enables use of DELETE.</b>");
|
||||
define('OGP_LANG_sql_drop_info', "<b>Enables use of DROP TABLE.</b>");
|
||||
define('OGP_LANG_sql_index_info', "<b>Enables use of CREATE INDEX and DROP INDEX.</b>");
|
||||
define('OGP_LANG_sql_insert_info', "<b>Enables use of INSERT.</b>");
|
||||
define('OGP_LANG_sql_lock_tables_info', "<b>Enables use of LOCK TABLES on tables for which you have the SELECT privilege.</b>");
|
||||
define('OGP_LANG_sql_select_info', "<b>Enables use of SELECT.</b>");
|
||||
define('OGP_LANG_sql_update_info', "<b>Enables use of UPDATE.</b>");
|
||||
define('OGP_LANG_sql_grant_option_info', "<b>Enables privileges to be granted.</b>");
|
||||
define('OGP_LANG_select_game_server', "Select game server");
|
||||
define('OGP_LANG_invalid_mysql_server_id', "Invalid MySQL server ID.");
|
||||
define('OGP_LANG_there_is_another_db_named_or_user_named', "There is another database named <b>%s</b> or another user named <b>%s</b>.");
|
||||
define('OGP_LANG_db_added_for_home_id', "Added database for home ID <b>%s</b>.");
|
||||
define('OGP_LANG_could_not_remove_db', "The selected database could not be removed.");
|
||||
define('OGP_LANG_db_removed_successfully_from_mysql_server_named', "The database was removed from server %s.");
|
||||
define('OGP_LANG_areyousure_remove_mysql_server', "Are you sure that you want remove MySQL server named <b>%s</b>?");
|
||||
define('OGP_LANG_db_changed_successfully', "The database named %s was changed successfully.");
|
||||
define('OGP_LANG_error_while_remove', "Error while remove.");
|
||||
define('OGP_LANG_mysql_server_removed', "MySQL server named <b>%s</b> has been removed successfully.");
|
||||
define('OGP_LANG_unable_to_set_changes_to', "Unable to set changes to MySQL server named <b>%s</b>.");
|
||||
define('OGP_LANG_mysql_server_settings_changed', "MySQL server named <b>%s</b> has been changed successfully.");
|
||||
define('OGP_LANG_editing_mysql_server', "Editing MySQL server named <b>%s</b>.");
|
||||
define('OGP_LANG_save_settings', "Save settings");
|
||||
define('OGP_LANG_mysql_dbs_for', "Databases for server %s");
|
||||
define('OGP_LANG_edit_dbs', "Edit databases");
|
||||
define('OGP_LANG_edit_db_settings', "Edit database settings");
|
||||
define('OGP_LANG_remove_db', "Remove database");
|
||||
define('OGP_LANG_save_db_changes', "Save database changes.");
|
||||
define('OGP_LANG_add_db', "Add database");
|
||||
define('OGP_LANG_select_db', "Select database");
|
||||
define('OGP_LANG_db_user', "DB User");
|
||||
define('OGP_LANG_db_passwd', "DB Password");
|
||||
define('OGP_LANG_db_name', "DB name");
|
||||
define('OGP_LANG_enabled', "Enabled");
|
||||
define('OGP_LANG_game_server', "Game server");
|
||||
define('OGP_LANG_there_are_no_databases_assigned_for', "There are no databases assigned for <b>%s</b>.");
|
||||
define('OGP_LANG_unable_to_connect_to_mysql_server_as', "Unable to connect to MySQL server as %s.");
|
||||
define('OGP_LANG_unable_to_create_db', "Unable to create database.");
|
||||
define('OGP_LANG_unable_to_select_db', "Unable to select database %s.");
|
||||
define('OGP_LANG_db_info', "Database Information");
|
||||
define('OGP_LANG_db_tables', "Database tables");
|
||||
define('OGP_LANG_db_backup', "DB Backup");
|
||||
define('OGP_LANG_download_db_backup', "Download DB Backup");
|
||||
define('OGP_LANG_restore_db_backup', "Restore DB Backup");
|
||||
define('OGP_LANG_sql_file', "file(.sql)");
|
||||
define('LANG_configured_mysql_hosts', "Configured MySQL Hosts");
|
||||
define('LANG_add_new_mysql_host', "Add MySQL host");
|
||||
define('LANG_enter_mysql_ip', "Enter MySQL IP.");
|
||||
define('LANG_enter_valid_port', "Enter a valid port.");
|
||||
define('LANG_enter_mysql_root_password', "Enter MySQL root password.");
|
||||
define('LANG_enter_mysql_name', "Enter MySQL name.");
|
||||
define('LANG_could_not_add_mysql_server', "Could not add MySQL server.");
|
||||
define('LANG_game_server_name_info', "Server name helps users to identify their servers.");
|
||||
define('LANG_note_mysql_host', "Note: Using a 'Direct connection' the server must accept external connections so the servers can connect remotely, whereas connecting through a remote server it will be used just as a local connection.");
|
||||
define('LANG_direct_connection', "Direct connection");
|
||||
define('LANG_connection_through_remote_server_named', "Connection through remote server named %s");
|
||||
define('LANG_add_mysql_server', "Add MySQL server");
|
||||
define('LANG_mysql_online', "MySQL online");
|
||||
define('LANG_mysql_offline', "MySQL offline");
|
||||
define('LANG_encryption_key_mismatch', "Encryption key mismatch");
|
||||
define('LANG_unknown_error', "Unknown error");
|
||||
define('LANG_remove', "Delete");
|
||||
define('LANG_assign_db', "Assign Database");
|
||||
define('LANG_mysql_server_name', "MySQL server name");
|
||||
define('LANG_server_status', "Server status");
|
||||
define('LANG_mysql_ip_port', "MySQL IP:port");
|
||||
define('LANG_mysql_root_passwd', "MySQL root password");
|
||||
define('LANG_connection_method', "Connection method");
|
||||
define('LANG_user_privilegies', "User privileges");
|
||||
define('LANG_current_dbs', "Current databases");
|
||||
define('LANG_mysql_name', "MySQL server name");
|
||||
define('LANG_mysql_ip', "MySQL IP");
|
||||
define('LANG_mysql_port', "MySQL port");
|
||||
define('LANG_privilegies', "privileges");
|
||||
define('LANG_all', "All");
|
||||
define('LANG_custom', "Custom");
|
||||
define('LANG_server_added', "Server added.");
|
||||
define('LANG_sql_alter', "ALTER");
|
||||
define('LANG_sql_create', "CREATE");
|
||||
define('LANG_sql_create_temporary_tables', "CREATE TEMPORARY TABLES");
|
||||
define('LANG_sql_drop', "DROP");
|
||||
define('LANG_sql_index', "INDEX");
|
||||
define('LANG_sql_insert', "INSERT");
|
||||
define('LANG_sql_lock_tables', "LOCK TABLES");
|
||||
define('LANG_sql_select', "SELECT");
|
||||
define('LANG_sql_grant_option', "GRANT OPTION");
|
||||
define('LANG_sql_update', "UPDATE");
|
||||
define('LANG_sql_delete', "DELETE");
|
||||
define('LANG_sql_alter_info', "<b>Enables use of ALTER TABLE.</b>");
|
||||
define('LANG_sql_create_info', "<b>Enables use of CREATE TABLE.</b>");
|
||||
define('LANG_sql_create_temporary_tables_info', "<b>Enables use of CREATE TEMPORARY TABLE.</b>");
|
||||
define('LANG_sql_delete_info', "<b>Enables use of DELETE.</b>");
|
||||
define('LANG_sql_drop_info', "<b>Enables use of DROP TABLE.</b>");
|
||||
define('LANG_sql_index_info', "<b>Enables use of CREATE INDEX and DROP INDEX.</b>");
|
||||
define('LANG_sql_insert_info', "<b>Enables use of INSERT.</b>");
|
||||
define('LANG_sql_lock_tables_info', "<b>Enables use of LOCK TABLES on tables for which you have the SELECT privilege.</b>");
|
||||
define('LANG_sql_select_info', "<b>Enables use of SELECT.</b>");
|
||||
define('LANG_sql_update_info', "<b>Enables use of UPDATE.</b>");
|
||||
define('LANG_sql_grant_option_info', "<b>Enables privileges to be granted.</b>");
|
||||
define('LANG_select_game_server', "Select game server");
|
||||
define('LANG_invalid_mysql_server_id', "Invalid MySQL server ID.");
|
||||
define('LANG_there_is_another_db_named_or_user_named', "There is another database named <b>%s</b> or another user named <b>%s</b>.");
|
||||
define('LANG_db_added_for_home_id', "Added database for home ID <b>%s</b>.");
|
||||
define('LANG_could_not_remove_db', "The selected database could not be removed.");
|
||||
define('LANG_db_removed_successfully_from_mysql_server_named', "The database was removed from server %s.");
|
||||
define('LANG_areyousure_remove_mysql_server', "Are you sure that you want remove MySQL server named <b>%s</b>?");
|
||||
define('LANG_db_changed_successfully', "The database named %s was changed successfully.");
|
||||
define('LANG_error_while_remove', "Error while remove.");
|
||||
define('LANG_mysql_server_removed', "MySQL server named <b>%s</b> has been removed successfully.");
|
||||
define('LANG_unable_to_set_changes_to', "Unable to set changes to MySQL server named <b>%s</b>.");
|
||||
define('LANG_mysql_server_settings_changed', "MySQL server named <b>%s</b> has been changed successfully.");
|
||||
define('LANG_editing_mysql_server', "Editing MySQL server named <b>%s</b>.");
|
||||
define('LANG_save_settings', "Save settings");
|
||||
define('LANG_mysql_dbs_for', "Databases for server %s");
|
||||
define('LANG_edit_dbs', "Edit databases");
|
||||
define('LANG_edit_db_settings', "Edit database settings");
|
||||
define('LANG_remove_db', "Remove database");
|
||||
define('LANG_save_db_changes', "Save database changes.");
|
||||
define('LANG_add_db', "Add database");
|
||||
define('LANG_select_db', "Select database");
|
||||
define('LANG_db_user', "DB User");
|
||||
define('LANG_db_passwd', "DB Password");
|
||||
define('LANG_db_name', "DB name");
|
||||
define('LANG_enabled', "Enabled");
|
||||
define('LANG_game_server', "Game server");
|
||||
define('LANG_there_are_no_databases_assigned_for', "There are no databases assigned for <b>%s</b>.");
|
||||
define('LANG_unable_to_connect_to_mysql_server_as', "Unable to connect to MySQL server as %s.");
|
||||
define('LANG_unable_to_create_db', "Unable to create database.");
|
||||
define('LANG_unable_to_select_db', "Unable to select database %s.");
|
||||
define('LANG_db_info', "Database Information");
|
||||
define('LANG_db_tables', "Database tables");
|
||||
define('LANG_db_backup', "DB Backup");
|
||||
define('LANG_download_db_backup', "Download DB Backup");
|
||||
define('LANG_restore_db_backup', "Restore DB Backup");
|
||||
define('LANG_sql_file', "file(.sql)");
|
||||
?>
|
||||
|
|
@ -22,77 +22,77 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_manage_listings', "Manage your news");
|
||||
define('OGP_LANG_add_new_listing', "Post News");
|
||||
define('OGP_LANG_your_current_listings', "Your current news");
|
||||
define('OGP_LANG_edit', "Edit");
|
||||
define('OGP_LANG_date', "Date");
|
||||
define('OGP_LANG_images', "Images");
|
||||
define('OGP_LANG_title', "Title");
|
||||
define('OGP_LANG_description', "News Content");
|
||||
define('OGP_LANG_written_by', "Written by");
|
||||
define('OGP_LANG_details', "Read More");
|
||||
define('OGP_LANG_modify', "Modify");
|
||||
define('OGP_LANG_save', "Save");
|
||||
define('OGP_LANG_delete', "Delete");
|
||||
define('OGP_LANG_sure_to_delete', "Are you sure that you would like to delete these news?");
|
||||
define('OGP_LANG_go_back', "Go Back");
|
||||
define('OGP_LANG_new_added_success', "The news has been posted successfully!");
|
||||
define('OGP_LANG_add_another', "Add another one");
|
||||
define('OGP_LANG_or_message', "or");
|
||||
define('OGP_LANG_please_select', "Please Select");
|
||||
define('OGP_LANG_submit', "Submit");
|
||||
define('OGP_LANG_edit_listing', "Edit the news");
|
||||
define('OGP_LANG_modifications_saved', "The new values have been saved successfully!");
|
||||
define('OGP_LANG_modify_images', "Modify the new article images");
|
||||
define('OGP_LANG_upload_more_images', "Upload more images");
|
||||
define('OGP_LANG_latest_news', "Latest News");
|
||||
define('OGP_LANG_search_results', "Search Results");
|
||||
define('OGP_LANG_no_results', "No news was found.");
|
||||
define('OGP_LANG_config_options', "News Options");
|
||||
define('OGP_LANG_date_format', "Date Format");
|
||||
define('OGP_LANG_results_per_page', "News per Page");
|
||||
define('OGP_LANG_enable_search', "Enable search engine");
|
||||
define('OGP_LANG_image_quality', "Image quality (0-100)");
|
||||
define('OGP_LANG_max_image_width', "Maximum image width (px)");
|
||||
define('OGP_LANG_gallery_theme', "Image gallery skin");
|
||||
define('OGP_LANG_images_bottom', "Position of the images gallery");
|
||||
define('OGP_LANG_img_bottom', "Under the article");
|
||||
define('OGP_LANG_img_right', "Right side of the article");
|
||||
define('OGP_LANG_no_word', "No");
|
||||
define('OGP_LANG_yes_word', "Yes");
|
||||
define('OGP_LANG_no_access', "You do not have the right to access this page. Your action will be logged for further inspection.");
|
||||
define('OGP_LANG_write_permission_required', "Write permission required");
|
||||
define('OGP_LANG_fix_permission', "Please fix permissions. The module will not work as intended until you fix all permissions.");
|
||||
define('OGP_LANG_check_permissions', "Check Permissions");
|
||||
define('OGP_LANG_permission_ok', "Required permissions are all OK!");
|
||||
define('OGP_LANG_empty_title', "Please fill the title");
|
||||
define('OGP_LANG_empty_description', "Please fill the content");
|
||||
define('OGP_LANG_empty_author', "Please fill the author name");
|
||||
define('OGP_LANG_gd_fail', "GD extension is NOT loaded on your server. Images upload disabled.");
|
||||
define('OGP_LANG_search_news', "Search the News");
|
||||
define('OGP_LANG_help', "help");
|
||||
define('OGP_LANG_help_date', "Get help regarding different formating of the date");
|
||||
define('OGP_LANG_id_invalid', "The News ID does not exist");
|
||||
define('OGP_LANG_id_not_set', "The News ID isn't set");
|
||||
define('OGP_LANG_unauthorized_access', "Unauthorized access from");
|
||||
define('OGP_LANG_wysiwyg', "WYSIWYG editor");
|
||||
define('OGP_LANG_tinymce_lang', "Tiny MCE language");
|
||||
define('OGP_LANG_da', "Danish");
|
||||
define('OGP_LANG_de', "German");
|
||||
define('OGP_LANG_en_GB', "English");
|
||||
define('OGP_LANG_es', "Spanish");
|
||||
define('OGP_LANG_fi', "Finnish");
|
||||
define('OGP_LANG_fr_FR', "French");
|
||||
define('OGP_LANG_it', "Italian");
|
||||
define('OGP_LANG_pl', "Polish");
|
||||
define('OGP_LANG_pt_PT', "Portuguese");
|
||||
define('OGP_LANG_ru', "Russian");
|
||||
define('OGP_LANG_tinymce_skin', "Tiny MCE skin");
|
||||
define('OGP_LANG_tinymce_skin_custom', "You absolutely need to upload your own custom skin in <b>modules/news/js/tinymce/skins/custom/</b> folder to be able to use this skin. If you select it without doing so, you'll encounter problems. Create your own custom skin here <a href='http://skin.tinymce.com/' target='_blank'>http://skin.tinymce.com/</a>.");
|
||||
define('OGP_LANG_safe_HTML', "HTML Purifier");
|
||||
define('OGP_LANG_safe_HTML_en', "HTML Purifier enabled");
|
||||
define('OGP_LANG_safe_HTML_dis', "HTML Purifier disabled");
|
||||
define('OGP_LANG_safe_HTML_en_info', "The HTML content of the article in the detailed view will be purified. This will lead in the removal of some HTML tags like iframes. Edit the file <b>modules/news/config.php</b> to change the setting 'safe_HTML' from value '1' (enabled) to value '0' (disabled) to disable this bahavior and allow usage of full HTML without restriction.");
|
||||
define('OGP_LANG_safe_HTML_dis_info', "The HTML content of the article in the detailed view will not be purified. Edit the file <b>modules/news/config.php</b> to change the setting 'safe_HTML' from value '0' (disabled) to value '1' (enabled) to enable safe HTML tags usage only.");
|
||||
define('LANG_manage_listings', "Manage your news");
|
||||
define('LANG_add_new_listing', "Post News");
|
||||
define('LANG_your_current_listings', "Your current news");
|
||||
define('LANG_edit', "Edit");
|
||||
define('LANG_date', "Date");
|
||||
define('LANG_images', "Images");
|
||||
define('LANG_title', "Title");
|
||||
define('LANG_description', "News Content");
|
||||
define('LANG_written_by', "Written by");
|
||||
define('LANG_details', "Read More");
|
||||
define('LANG_modify', "Modify");
|
||||
define('LANG_save', "Save");
|
||||
define('LANG_delete', "Delete");
|
||||
define('LANG_sure_to_delete', "Are you sure that you would like to delete these news?");
|
||||
define('LANG_go_back', "Go Back");
|
||||
define('LANG_new_added_success', "The news has been posted successfully!");
|
||||
define('LANG_add_another', "Add another one");
|
||||
define('LANG_or_message', "or");
|
||||
define('LANG_please_select', "Please Select");
|
||||
define('LANG_submit', "Submit");
|
||||
define('LANG_edit_listing', "Edit the news");
|
||||
define('LANG_modifications_saved', "The new values have been saved successfully!");
|
||||
define('LANG_modify_images', "Modify the new article images");
|
||||
define('LANG_upload_more_images', "Upload more images");
|
||||
define('LANG_latest_news', "Latest News");
|
||||
define('LANG_search_results', "Search Results");
|
||||
define('LANG_no_results', "No news was found.");
|
||||
define('LANG_config_options', "News Options");
|
||||
define('LANG_date_format', "Date Format");
|
||||
define('LANG_results_per_page', "News per Page");
|
||||
define('LANG_enable_search', "Enable search engine");
|
||||
define('LANG_image_quality', "Image quality (0-100)");
|
||||
define('LANG_max_image_width', "Maximum image width (px)");
|
||||
define('LANG_gallery_theme', "Image gallery skin");
|
||||
define('LANG_images_bottom', "Position of the images gallery");
|
||||
define('LANG_img_bottom', "Under the article");
|
||||
define('LANG_img_right', "Right side of the article");
|
||||
define('LANG_no_word', "No");
|
||||
define('LANG_yes_word', "Yes");
|
||||
define('LANG_no_access', "You do not have the right to access this page. Your action will be logged for further inspection.");
|
||||
define('LANG_write_permission_required', "Write permission required");
|
||||
define('LANG_fix_permission', "Please fix permissions. The module will not work as intended until you fix all permissions.");
|
||||
define('LANG_check_permissions', "Check Permissions");
|
||||
define('LANG_permission_ok', "Required permissions are all OK!");
|
||||
define('LANG_empty_title', "Please fill the title");
|
||||
define('LANG_empty_description', "Please fill the content");
|
||||
define('LANG_empty_author', "Please fill the author name");
|
||||
define('LANG_gd_fail', "GD extension is NOT loaded on your server. Images upload disabled.");
|
||||
define('LANG_search_news', "Search the News");
|
||||
define('LANG_help', "help");
|
||||
define('LANG_help_date', "Get help regarding different formating of the date");
|
||||
define('LANG_id_invalid', "The News ID does not exist");
|
||||
define('LANG_id_not_set', "The News ID isn't set");
|
||||
define('LANG_unauthorized_access', "Unauthorized access from");
|
||||
define('LANG_wysiwyg', "WYSIWYG editor");
|
||||
define('LANG_tinymce_lang', "Tiny MCE language");
|
||||
define('LANG_da', "Danish");
|
||||
define('LANG_de', "German");
|
||||
define('LANG_en_GB', "English");
|
||||
define('LANG_es', "Spanish");
|
||||
define('LANG_fi', "Finnish");
|
||||
define('LANG_fr_FR', "French");
|
||||
define('LANG_it', "Italian");
|
||||
define('LANG_pl', "Polish");
|
||||
define('LANG_pt_PT', "Portuguese");
|
||||
define('LANG_ru', "Russian");
|
||||
define('LANG_tinymce_skin', "Tiny MCE skin");
|
||||
define('LANG_tinymce_skin_custom', "You absolutely need to upload your own custom skin in <b>modules/news/js/tinymce/skins/custom/</b> folder to be able to use this skin. If you select it without doing so, you'll encounter problems. Create your own custom skin here <a href='http://skin.tinymce.com/' target='_blank'>http://skin.tinymce.com/</a>.");
|
||||
define('LANG_safe_HTML', "HTML Purifier");
|
||||
define('LANG_safe_HTML_en', "HTML Purifier enabled");
|
||||
define('LANG_safe_HTML_dis', "HTML Purifier disabled");
|
||||
define('LANG_safe_HTML_en_info', "The HTML content of the article in the detailed view will be purified. This will lead in the removal of some HTML tags like iframes. Edit the file <b>modules/news/config.php</b> to change the setting 'safe_HTML' from value '1' (enabled) to value '0' (disabled) to disable this bahavior and allow usage of full HTML without restriction.");
|
||||
define('LANG_safe_HTML_dis_info', "The HTML content of the article in the detailed view will not be purified. Edit the file <b>modules/news/config.php</b> to change the setting 'safe_HTML' from value '0' (disabled) to value '1' (enabled) to enable safe HTML tags usage only.");
|
||||
?>
|
||||
|
|
@ -22,11 +22,11 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_rcon_command_title', "Příkazy RCON");
|
||||
define('OGP_LANG_has_sent_to', "poslal na");
|
||||
define('OGP_LANG_need_set_remote_pass', "potřebujete nastavit vzdálený průchod");
|
||||
define('OGP_LANG_before_sending_rcon_com', "před odesláním rcon com");
|
||||
define('OGP_LANG_send_command', "Odeslat příkaz");
|
||||
define('OGP_LANG_check-all', "Zkontrolovat vše");
|
||||
define('OGP_LANG_uncheck-all', "Zrušte zaškrtnutí všech");
|
||||
define('LANG_rcon_command_title', "Příkazy RCON");
|
||||
define('LANG_has_sent_to', "poslal na");
|
||||
define('LANG_need_set_remote_pass', "potřebujete nastavit vzdálený průchod");
|
||||
define('LANG_before_sending_rcon_com', "před odesláním rcon com");
|
||||
define('LANG_send_command', "Odeslat příkaz");
|
||||
define('LANG_check-all', "Zkontrolovat vše");
|
||||
define('LANG_uncheck-all', "Zrušte zaškrtnutí všech");
|
||||
?>
|
||||
|
|
@ -22,34 +22,34 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_login_name', "Uživatelské jméno");
|
||||
define('OGP_LANG_users_fname', "Jméno");
|
||||
define('OGP_LANG_users_lname', "Příjmení");
|
||||
define('OGP_LANG_users_passwd', "Heslo");
|
||||
define('OGP_LANG_users_cpasswd', "potvrďte heslo");
|
||||
define('OGP_LANG_passwd_len', "Heslo musí být delší než 6 znaků");
|
||||
define('OGP_LANG_err_password', "Heslo nemůže být prázdné");
|
||||
define('OGP_LANG_err_confirm_password', "Pole ověřte heslo nemůže být prázdné");
|
||||
define('OGP_LANG_err_password_mismatch', "Hesla se neshodují");
|
||||
define('OGP_LANG_phone_number', "Telefonní číslo");
|
||||
define('OGP_LANG_users_email', "E-mailem");
|
||||
define('OGP_LANG_register_a_new_user', "Zaregistrujte nového uživatele");
|
||||
define('OGP_LANG_password_mismatch', "Nesouhlas hesel");
|
||||
define('OGP_LANG_confirm_password', "potvrďte heslo");
|
||||
define('OGP_LANG_successfull', "Úspěšný");
|
||||
define('OGP_LANG_click_here', "Klikněte zde");
|
||||
define('OGP_LANG_to_login', "přihlásit se.");
|
||||
define('OGP_LANG_registered_on', "Registered on: %s.");
|
||||
define('OGP_LANG_register_message', "Hello,<br><br>Your Open Game Panel account has been created and you may <a href='%s' target='_blank'>login now</a>.<br><br>Username: %s<br><br>Remember to change your password often and the first time you login.<br><br>Please do not reply to this email!<br><br>______________________________<br>Black Market Servers");
|
||||
define('OGP_LANG_err_captcha', "Captcha does not match.");
|
||||
define('OGP_LANG_err_login_name', "User name is empty or in use.");
|
||||
define('OGP_LANG_err_first_name', "Enter your name.");
|
||||
define('OGP_LANG_err_last_name', "Last Name not entered.");
|
||||
define('OGP_LANG_err_phone_number', "Phone number is empty.");
|
||||
define('OGP_LANG_err_email_address', "Empty or incorrect email address.");
|
||||
define('OGP_LANG_err_email_address_already_in_use_by', "Email address already in use by <b>%s</b>.");
|
||||
define('OGP_LANG_user_registration', "User Registration");
|
||||
define('OGP_LANG_your_account_details_has_been_sent_by_email_to', "Your account details has been sent by email to <b>%s</b>.");
|
||||
define('OGP_LANG_account_created', "Your account has been created.");
|
||||
define('OGP_LANG_subject', "%s :: Account Information");
|
||||
define('LANG_login_name', "Uživatelské jméno");
|
||||
define('LANG_users_fname', "Jméno");
|
||||
define('LANG_users_lname', "Příjmení");
|
||||
define('LANG_users_passwd', "Heslo");
|
||||
define('LANG_users_cpasswd', "potvrďte heslo");
|
||||
define('LANG_passwd_len', "Heslo musí být delší než 6 znaků");
|
||||
define('LANG_err_password', "Heslo nemůže být prázdné");
|
||||
define('LANG_err_confirm_password', "Pole ověřte heslo nemůže být prázdné");
|
||||
define('LANG_err_password_mismatch', "Hesla se neshodují");
|
||||
define('LANG_phone_number', "Telefonní číslo");
|
||||
define('LANG_users_email', "E-mailem");
|
||||
define('LANG_register_a_new_user', "Zaregistrujte nového uživatele");
|
||||
define('LANG_password_mismatch', "Nesouhlas hesel");
|
||||
define('LANG_confirm_password', "potvrďte heslo");
|
||||
define('LANG_successfull', "Úspěšný");
|
||||
define('LANG_click_here', "Klikněte zde");
|
||||
define('LANG_to_login', "přihlásit se.");
|
||||
define('LANG_registered_on', "Registered on: %s.");
|
||||
define('LANG_register_message', "Hello,<br><br>Your Open Game Panel account has been created and you may <a href='%s' target='_blank'>login now</a>.<br><br>Username: %s<br><br>Remember to change your password often and the first time you login.<br><br>Please do not reply to this email!<br><br>______________________________<br>Black Market Servers");
|
||||
define('LANG_err_captcha', "Captcha does not match.");
|
||||
define('LANG_err_login_name', "User name is empty or in use.");
|
||||
define('LANG_err_first_name', "Enter your name.");
|
||||
define('LANG_err_last_name', "Last Name not entered.");
|
||||
define('LANG_err_phone_number', "Phone number is empty.");
|
||||
define('LANG_err_email_address', "Empty or incorrect email address.");
|
||||
define('LANG_err_email_address_already_in_use_by', "Email address already in use by <b>%s</b>.");
|
||||
define('LANG_user_registration', "User Registration");
|
||||
define('LANG_your_account_details_has_been_sent_by_email_to', "Your account details has been sent by email to <b>%s</b>.");
|
||||
define('LANG_account_created', "Your account has been created.");
|
||||
define('LANG_subject', "%s :: Account Information");
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -22,118 +22,118 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_add_new_remote_host', "Add New Remote Host");
|
||||
define('OGP_LANG_configured_remote_hosts', "Configured Remote Host");
|
||||
define('OGP_LANG_remote_host', "Remote Host");
|
||||
define('OGP_LANG_remote_host_info', "The remote host must be a pingable hostname!");
|
||||
define('OGP_LANG_remote_host_port', "Remote Host Port");
|
||||
define('OGP_LANG_remote_host_port_info', "The port that is listened by the OGP Agent on remote host. Default: 12679.");
|
||||
define('OGP_LANG_remote_host_name', "Remote Host Name");
|
||||
define('OGP_LANG_ogp_user', "OGP Agent Username");
|
||||
define('OGP_LANG_remote_host_name_info', "Remote host name is used to help users to identify their servers.");
|
||||
define('OGP_LANG_add_remote_host', "Add Remote Host");
|
||||
define('OGP_LANG_remote_encryption_key', "Remote Encryption Key");
|
||||
define('OGP_LANG_remote_encryption_key_info', "Remote encryption key is used to encrypt the data between the Panel and Agent. This key must be same in both sides.");
|
||||
define('OGP_LANG_server_name', "Server Name");
|
||||
define('OGP_LANG_agent_ip_port', "Agent IP:Port");
|
||||
define('OGP_LANG_agent_status', "Agent Status");
|
||||
define('OGP_LANG_ips', "IPs");
|
||||
define('OGP_LANG_add_more_ips', "If you want to enter more IPs press 'Set IPs' when all fields are full and an empty field will appear.");
|
||||
define('OGP_LANG_encryption_key_mismatch', "Encryption key does not match with the Agent. Please recheck your Agent configuration.");
|
||||
define('OGP_LANG_no_ip_for_remote_host', "You need to add at least one (1) IP address for each remote host.");
|
||||
define('OGP_LANG_note_remote_host', "A remote host is a server where the OGP Agent is running on. Each host can have multiple number of IP addresses on which users can bind servers to.");
|
||||
define('OGP_LANG_ip_administration', "Server & IP Administration :: Open Game Panel");
|
||||
define('OGP_LANG_unknown_error', "Unknown error - status_chk returned");
|
||||
define('OGP_LANG_remote_host_user_name', "UNIX user");
|
||||
define('OGP_LANG_remote_host_user_name_info', "Username where the Agent is running. Example: Jonhy");
|
||||
define('OGP_LANG_remote_host_ftp_ip', "FTP IP");
|
||||
define('OGP_LANG_remote_host_ftp_ip_info', "The FTP server <b>IP</b> for the current Agent.");
|
||||
define('OGP_LANG_remote_host_ftp_port', "FTP Port");
|
||||
define('OGP_LANG_remote_host_ftp_port_info', "The FTP server <b>port</b> for the current Agent.");
|
||||
define('OGP_LANG_view_log', "View Log");
|
||||
define('OGP_LANG_status', "Status");
|
||||
define('OGP_LANG_stop_firewall', "Stop Firewall");
|
||||
define('OGP_LANG_start_firewall', "Start Firewall");
|
||||
define('OGP_LANG_seconds', "Seconds");
|
||||
define('OGP_LANG_reboot', "Remote Server Reboot");
|
||||
define('OGP_LANG_restart', "Restart Agent");
|
||||
define('OGP_LANG_confirm_reboot', "Are you sure you want to remotely reboot the entire physical server named '%s'?");
|
||||
define('OGP_LANG_confirm_restart', "Are you sure you want to restart the Agent named '%s'?");
|
||||
define('OGP_LANG_restarting', "Restarting Agent... Please wait.");
|
||||
define('OGP_LANG_restarted', "Agent successfully restarted.");
|
||||
define('OGP_LANG_reboot_success', "Server named '%s' was successfully rebooted. You will not be able to access the server until it has successfully booted.");
|
||||
define('OGP_LANG_invalid_remote_host_id', "Invalid remote host id '%s' given.");
|
||||
define('OGP_LANG_remote_host_removed', "Remote host called '%s' removed successfully.");
|
||||
define('OGP_LANG_editing_remote_server', "Editing remote server called '%s'");
|
||||
define('OGP_LANG_remote_server_settings_changed', "Changed settings for remote server '%s' successfully.");
|
||||
define('OGP_LANG_save_settings', "Save Settings");
|
||||
define('OGP_LANG_set_ips', "Set IPs");
|
||||
define('OGP_LANG_remote_ip', "Remote IP");
|
||||
define('OGP_LANG_remote_ips_for', "IPs for Game Servers To Use on Agent Server '%s'");
|
||||
define('OGP_LANG_ips_set_for_server', "IPs set for server called '%s' successfully.");
|
||||
define('OGP_LANG_could_not_remove_ip', "Could not remove old IP's from database.");
|
||||
define('OGP_LANG_could_add_ip', "Could add remote server IP to database.");
|
||||
define('OGP_LANG_areyousure_removeagent', "Are you sure you want to remove the Agent called");
|
||||
define('OGP_LANG_areyousure_removeagent2', "and all the homes related to it from the ogp database?");
|
||||
define('OGP_LANG_error_while_remove', "Error occurred while removing remote server.");
|
||||
define('OGP_LANG_add_ip', "Add IP");
|
||||
define('OGP_LANG_remove_ip', "Remove IP");
|
||||
define('OGP_LANG_edit_ip', "Edit IP");
|
||||
define('OGP_LANG_wrote_changes', "Changes saved successfully.");
|
||||
define('OGP_LANG_there_are_servers_running_on_this_ip', "There are servers running on this IP address.");
|
||||
define('OGP_LANG_enter_ip_host', "You must enter IP for the remote host.");
|
||||
define('OGP_LANG_enter_valid_ip', "You must enter valid port for the remote host. The port value can be between 0 and 65535, however recommendation is between 1024 and 65535.");
|
||||
define('OGP_LANG_could_not_add_server', "Could not add server");
|
||||
define('OGP_LANG_to_db', "to the database.");
|
||||
define('OGP_LANG_added_server', "Added server");
|
||||
define('OGP_LANG_with_port', "with port");
|
||||
define('OGP_LANG_to_db_succesfully', "to the database successfully.");
|
||||
define('OGP_LANG_unable_discover', "Unable to auto discover IPs on");
|
||||
define('OGP_LANG_set_ip_manually', "You'll have to set them manually.");
|
||||
define('OGP_LANG_found_ips', "Found IPs");
|
||||
define('OGP_LANG_for_remote_server', "for the remote server.");
|
||||
define('OGP_LANG_failed_add_ip', "Failed to add IP");
|
||||
define('OGP_LANG_timeout', "Time Out");
|
||||
define('OGP_LANG_timeout_info', "The time limit in seconds to get response from this Agent.");
|
||||
define('OGP_LANG_use_nat', "Use NAT");
|
||||
define('OGP_LANG_use_nat_info', "Enable if your remote server is using NAT rules. Use this setting if your game servers are running on internal private LAN IP addresses so that the panel will use your real remote IP address to query the game servers.");
|
||||
define('OGP_LANG_arrange_ports', "Arrange ports");
|
||||
define('OGP_LANG_assign_new_ports_range_for_ip', "Assign new ports range for IP %s");
|
||||
define('OGP_LANG_assigned_port_ranges_for_ip', "Assigned port ranges for IP %s");
|
||||
define('OGP_LANG_assigned_ports_for_ip', "Assigned ports for IP %s");
|
||||
define('OGP_LANG_unspecified_game_types', "Unspecified game types");
|
||||
define('OGP_LANG_start_port', "Start port:");
|
||||
define('OGP_LANG_end_port', "End port:");
|
||||
define('OGP_LANG_port_increment', "Port increment:");
|
||||
define('OGP_LANG_total_assignable_ports', "Total assignable ports:");
|
||||
define('OGP_LANG_available_range_ports', "Available range ports:");
|
||||
define('OGP_LANG_assign_range', "Assign range");
|
||||
define('OGP_LANG_edit_range', "Edit range");
|
||||
define('OGP_LANG_delete_range', "Delete range");
|
||||
define('OGP_LANG_home_id', "Home ID");
|
||||
define('OGP_LANG_home_path', "Home path");
|
||||
define('OGP_LANG_game_type', "Game type");
|
||||
define('OGP_LANG_port', "Port");
|
||||
define('OGP_LANG_invalid_values', "Invalid values.");
|
||||
define('OGP_LANG_ports_in_range_already_arranged', "Ports in range already arranged.");
|
||||
define('OGP_LANG_ports_range_already_configured_for', "Ports range already configured for %s.");
|
||||
define('OGP_LANG_ports_range_added_successfull_for', "Ports range added successfully for %s.");
|
||||
define('OGP_LANG_ports_range_deleted_successfull', "Ports range deleted successfully.");
|
||||
define('OGP_LANG_ports_range_edited_successfull_for', "Ports range edited successfully for %s.");
|
||||
define('OGP_LANG_editing_firewall_for_remote_server', "Editing Firewall for remote server named '%s'");
|
||||
define('OGP_LANG_default_allowed', "Allowed by default");
|
||||
define('OGP_LANG_allow_port_command', "Allow port command");
|
||||
define('OGP_LANG_deny_port_command', "Deny port command");
|
||||
define('OGP_LANG_allow_ip_port_command', "Allow IP:port command");
|
||||
define('OGP_LANG_deny_ip_port_command', "Deny IP:port command");
|
||||
define('OGP_LANG_enable_firewall_command', "Enable firewall command");
|
||||
define('OGP_LANG_disable_firewall_command', "Disable firewall command");
|
||||
define('OGP_LANG_get_firewall_status_command', "Get firewall status command");
|
||||
define('OGP_LANG_reset_firewall_command', "Reset firewall command");
|
||||
define('OGP_LANG_firewall_status', "Firewall status");
|
||||
define('OGP_LANG_save_firewall_settings', "Save firewall settings");
|
||||
define('OGP_LANG_reset_firewall', "Reset Firewall");
|
||||
define('OGP_LANG_firewall_settings', "Firewall Settings");
|
||||
define('OGP_LANG_display_public_ip', "Display Public IP");
|
||||
define('OGP_LANG_ips_can_be_internal_external', "Enter usable IP addresses. Public IP addresses and internal LAN IP addresses (for NAT setups) can be used.");
|
||||
define('LANG_add_new_remote_host', "Add New Remote Host");
|
||||
define('LANG_configured_remote_hosts', "Configured Remote Host");
|
||||
define('LANG_remote_host', "Remote Host");
|
||||
define('LANG_remote_host_info', "The remote host must be a pingable hostname!");
|
||||
define('LANG_remote_host_port', "Remote Host Port");
|
||||
define('LANG_remote_host_port_info', "The port that is listened by the OGP Agent on remote host. Default: 12679.");
|
||||
define('LANG_remote_host_name', "Remote Host Name");
|
||||
define('LANG_ogp_user', "OGP Agent Username");
|
||||
define('LANG_remote_host_name_info', "Remote host name is used to help users to identify their servers.");
|
||||
define('LANG_add_remote_host', "Add Remote Host");
|
||||
define('LANG_remote_encryption_key', "Remote Encryption Key");
|
||||
define('LANG_remote_encryption_key_info', "Remote encryption key is used to encrypt the data between the Panel and Agent. This key must be same in both sides.");
|
||||
define('LANG_server_name', "Server Name");
|
||||
define('LANG_agent_ip_port', "Agent IP:Port");
|
||||
define('LANG_agent_status', "Agent Status");
|
||||
define('LANG_ips', "IPs");
|
||||
define('LANG_add_more_ips', "If you want to enter more IPs press 'Set IPs' when all fields are full and an empty field will appear.");
|
||||
define('LANG_encryption_key_mismatch', "Encryption key does not match with the Agent. Please recheck your Agent configuration.");
|
||||
define('LANG_no_ip_for_remote_host', "You need to add at least one (1) IP address for each remote host.");
|
||||
define('LANG_note_remote_host', "A remote host is a server where the OGP Agent is running on. Each host can have multiple number of IP addresses on which users can bind servers to.");
|
||||
define('LANG_ip_administration', "Server & IP Administration :: Open Game Panel");
|
||||
define('LANG_unknown_error', "Unknown error - status_chk returned");
|
||||
define('LANG_remote_host_user_name', "UNIX user");
|
||||
define('LANG_remote_host_user_name_info', "Username where the Agent is running. Example: Jonhy");
|
||||
define('LANG_remote_host_ftp_ip', "FTP IP");
|
||||
define('LANG_remote_host_ftp_ip_info', "The FTP server <b>IP</b> for the current Agent.");
|
||||
define('LANG_remote_host_ftp_port', "FTP Port");
|
||||
define('LANG_remote_host_ftp_port_info', "The FTP server <b>port</b> for the current Agent.");
|
||||
define('LANG_view_log', "View Log");
|
||||
define('LANG_status', "Status");
|
||||
define('LANG_stop_firewall', "Stop Firewall");
|
||||
define('LANG_start_firewall', "Start Firewall");
|
||||
define('LANG_seconds', "Seconds");
|
||||
define('LANG_reboot', "Remote Server Reboot");
|
||||
define('LANG_restart', "Restart Agent");
|
||||
define('LANG_confirm_reboot', "Are you sure you want to remotely reboot the entire physical server named '%s'?");
|
||||
define('LANG_confirm_restart', "Are you sure you want to restart the Agent named '%s'?");
|
||||
define('LANG_restarting', "Restarting Agent... Please wait.");
|
||||
define('LANG_restarted', "Agent successfully restarted.");
|
||||
define('LANG_reboot_success', "Server named '%s' was successfully rebooted. You will not be able to access the server until it has successfully booted.");
|
||||
define('LANG_invalid_remote_host_id', "Invalid remote host id '%s' given.");
|
||||
define('LANG_remote_host_removed', "Remote host called '%s' removed successfully.");
|
||||
define('LANG_editing_remote_server', "Editing remote server called '%s'");
|
||||
define('LANG_remote_server_settings_changed', "Changed settings for remote server '%s' successfully.");
|
||||
define('LANG_save_settings', "Save Settings");
|
||||
define('LANG_set_ips', "Set IPs");
|
||||
define('LANG_remote_ip', "Remote IP");
|
||||
define('LANG_remote_ips_for', "IPs for Game Servers To Use on Agent Server '%s'");
|
||||
define('LANG_ips_set_for_server', "IPs set for server called '%s' successfully.");
|
||||
define('LANG_could_not_remove_ip', "Could not remove old IP's from database.");
|
||||
define('LANG_could_add_ip', "Could add remote server IP to database.");
|
||||
define('LANG_areyousure_removeagent', "Are you sure you want to remove the Agent called");
|
||||
define('LANG_areyousure_removeagent2', "and all the homes related to it from the ogp database?");
|
||||
define('LANG_error_while_remove', "Error occurred while removing remote server.");
|
||||
define('LANG_add_ip', "Add IP");
|
||||
define('LANG_remove_ip', "Remove IP");
|
||||
define('LANG_edit_ip', "Edit IP");
|
||||
define('LANG_wrote_changes', "Changes saved successfully.");
|
||||
define('LANG_there_are_servers_running_on_this_ip', "There are servers running on this IP address.");
|
||||
define('LANG_enter_ip_host', "You must enter IP for the remote host.");
|
||||
define('LANG_enter_valid_ip', "You must enter valid port for the remote host. The port value can be between 0 and 65535, however recommendation is between 1024 and 65535.");
|
||||
define('LANG_could_not_add_server', "Could not add server");
|
||||
define('LANG_to_db', "to the database.");
|
||||
define('LANG_added_server', "Added server");
|
||||
define('LANG_with_port', "with port");
|
||||
define('LANG_to_db_succesfully', "to the database successfully.");
|
||||
define('LANG_unable_discover', "Unable to auto discover IPs on");
|
||||
define('LANG_set_ip_manually', "You'll have to set them manually.");
|
||||
define('LANG_found_ips', "Found IPs");
|
||||
define('LANG_for_remote_server', "for the remote server.");
|
||||
define('LANG_failed_add_ip', "Failed to add IP");
|
||||
define('LANG_timeout', "Time Out");
|
||||
define('LANG_timeout_info', "The time limit in seconds to get response from this Agent.");
|
||||
define('LANG_use_nat', "Use NAT");
|
||||
define('LANG_use_nat_info', "Enable if your remote server is using NAT rules. Use this setting if your game servers are running on internal private LAN IP addresses so that the panel will use your real remote IP address to query the game servers.");
|
||||
define('LANG_arrange_ports', "Arrange ports");
|
||||
define('LANG_assign_new_ports_range_for_ip', "Assign new ports range for IP %s");
|
||||
define('LANG_assigned_port_ranges_for_ip', "Assigned port ranges for IP %s");
|
||||
define('LANG_assigned_ports_for_ip', "Assigned ports for IP %s");
|
||||
define('LANG_unspecified_game_types', "Unspecified game types");
|
||||
define('LANG_start_port', "Start port:");
|
||||
define('LANG_end_port', "End port:");
|
||||
define('LANG_port_increment', "Port increment:");
|
||||
define('LANG_total_assignable_ports', "Total assignable ports:");
|
||||
define('LANG_available_range_ports', "Available range ports:");
|
||||
define('LANG_assign_range', "Assign range");
|
||||
define('LANG_edit_range', "Edit range");
|
||||
define('LANG_delete_range', "Delete range");
|
||||
define('LANG_home_id', "Home ID");
|
||||
define('LANG_home_path', "Home path");
|
||||
define('LANG_game_type', "Game type");
|
||||
define('LANG_port', "Port");
|
||||
define('LANG_invalid_values', "Invalid values.");
|
||||
define('LANG_ports_in_range_already_arranged', "Ports in range already arranged.");
|
||||
define('LANG_ports_range_already_configured_for', "Ports range already configured for %s.");
|
||||
define('LANG_ports_range_added_successfull_for', "Ports range added successfully for %s.");
|
||||
define('LANG_ports_range_deleted_successfull', "Ports range deleted successfully.");
|
||||
define('LANG_ports_range_edited_successfull_for', "Ports range edited successfully for %s.");
|
||||
define('LANG_editing_firewall_for_remote_server', "Editing Firewall for remote server named '%s'");
|
||||
define('LANG_default_allowed', "Allowed by default");
|
||||
define('LANG_allow_port_command', "Allow port command");
|
||||
define('LANG_deny_port_command', "Deny port command");
|
||||
define('LANG_allow_ip_port_command', "Allow IP:port command");
|
||||
define('LANG_deny_ip_port_command', "Deny IP:port command");
|
||||
define('LANG_enable_firewall_command', "Enable firewall command");
|
||||
define('LANG_disable_firewall_command', "Disable firewall command");
|
||||
define('LANG_get_firewall_status_command', "Get firewall status command");
|
||||
define('LANG_reset_firewall_command', "Reset firewall command");
|
||||
define('LANG_firewall_status', "Firewall status");
|
||||
define('LANG_save_firewall_settings', "Save firewall settings");
|
||||
define('LANG_reset_firewall', "Reset Firewall");
|
||||
define('LANG_firewall_settings', "Firewall Settings");
|
||||
define('LANG_display_public_ip', "Display Public IP");
|
||||
define('LANG_ips_can_be_internal_external', "Enter usable IP addresses. Public IP addresses and internal LAN IP addresses (for NAT setups) can be used.");
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -22,127 +22,127 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_maintenance_mode', "Údržba");
|
||||
define('OGP_LANG_maintenance_mode_info', "Disable the Panel for normal users. Only administrators can access it during maintenance.");
|
||||
define('OGP_LANG_maintenance_title', "Název údržby");
|
||||
define('OGP_LANG_maintenance_title_info', "Titul, který se během údržby zobrazuje běžným uživatelům.");
|
||||
define('OGP_LANG_maintenance_message', "Zpráva údržby");
|
||||
define('OGP_LANG_maintenance_message_info', "Zpráva, která se během údržby zobrazuje běžným uživatelům.");
|
||||
define('OGP_LANG_update_settings', "Nastavení aktualizace");
|
||||
define('OGP_LANG_settings_updated', "Nastavení bylo úspěšně aktualizováno.");
|
||||
define('OGP_LANG_panel_language', "Jazyk panelu");
|
||||
define('OGP_LANG_panel_language_info', "Tento jazyk je výchozím jazykem panelu. Uživatelé mohou změnit svůj vlastní jazyk na stránce upravující profil.");
|
||||
define('OGP_LANG_page_auto_refresh', "Automatické obnovení stránky");
|
||||
define('OGP_LANG_page_auto_refresh_info', "Nastavení automatického obnovení stránky se používá hlavně při ladění panelů. Při běžném používání by měl být nastaven na hodnotu Zapnuto.");
|
||||
define('OGP_LANG_smtp_server', "Outgoing E-Mail Server");
|
||||
define('OGP_LANG_smtp_server_info', "This is the outgoing mail server (SMTP server) that is used, for example, to sent forgotten passwords to users, localhost by default.");
|
||||
define('OGP_LANG_panel_email_address', "Outgoing E-Mail Address");
|
||||
define('OGP_LANG_panel_email_address_info', "This is the e-mail address that is in from field when passwords are sent to users.");
|
||||
define('OGP_LANG_panel_name', "Panel name");
|
||||
define('OGP_LANG_panel_name_info', "Name of the Panel that is shown in the page title. This value will overrule all page titles, if it's not empty.");
|
||||
define('OGP_LANG_feed_enable', "Enable LGSL Feed");
|
||||
define('OGP_LANG_feed_enable_info', "If your webhost has a firewall which is blocking the query port, then you need to open the port manually.");
|
||||
define('OGP_LANG_feed_url', "Feed URL");
|
||||
define('OGP_LANG_feed_url_info', "GrayCube.com is sharing a LGSL feed on the URL:<br><b>http://www.greycube.co.uk/lgsl/feed/lgsl_files/lgsl_feed.php</b>");
|
||||
define('OGP_LANG_charset', "Character Encoding");
|
||||
define('OGP_LANG_charset_info', "UTF8, ISO, ASCII, etc... Overrides the character encoding defined in language files. Leave it blank to use language default.");
|
||||
define('OGP_LANG_steam_user', "Steam User");
|
||||
define('OGP_LANG_steam_user_info', "This user is needed to log in to steam for download some new games like CS:GO.");
|
||||
define('OGP_LANG_steam_pass', "Steam Password");
|
||||
define('OGP_LANG_steam_pass_info', "Set here the steam account password.");
|
||||
define('OGP_LANG_steam_guard', "Steam Guard");
|
||||
define('OGP_LANG_steam_guard_info', "Some users have steam guard activated to protect their accounts from hackers,<br>this code is sent to the account email when the first steam update is started.");
|
||||
define('OGP_LANG_smtp_port', "SMTP Port");
|
||||
define('OGP_LANG_smtp_port_info', "If SMTP port is not the default port (25) Enter the SMTP port here.");
|
||||
define('OGP_LANG_smtp_login', "SMTP User");
|
||||
define('OGP_LANG_smtp_login_info', "If your SMTP server requires authentication, enter your user name here.");
|
||||
define('OGP_LANG_smtp_passw', "SMTP Password");
|
||||
define('OGP_LANG_smtp_passw_info', "If you do not set a password the SMTP authentication will be disabled.");
|
||||
define('OGP_LANG_smtp_secure', "SMTP Secure");
|
||||
define('OGP_LANG_smtp_secure_info', "Use SSL/TLS to connect to the SMTP server");
|
||||
define('OGP_LANG_time_zone', "Time Zone");
|
||||
define('OGP_LANG_time_zone_info', "Sets the default timezone used by all date/time functions.");
|
||||
define('OGP_LANG_query_cache_life', "Query cache life");
|
||||
define('OGP_LANG_query_cache_life_info', "Sets the timeout in seconds before the server status is refreshed.");
|
||||
define('OGP_LANG_query_num_servers_stop', "Disable Game Server Queries After");
|
||||
define('OGP_LANG_query_num_servers_stop_info', "Use this setting to disable queries if a user owns more game servers than this amount specified to speed up panel loading.");
|
||||
define('OGP_LANG_editable_email', "Editable E-Mail Address");
|
||||
define('OGP_LANG_editable_email_info', "Select if users can edit their e-mail address or not.");
|
||||
define('OGP_LANG_old_dashboard_behavior', "Old Dashboard behavior");
|
||||
define('OGP_LANG_old_dashboard_behavior_info', "The old Dashboard was running slower, but shows more server informations (e.g. current players and maps).");
|
||||
define('OGP_LANG_rsync_available', "Available Rsync servers");
|
||||
define('OGP_LANG_rsync_available_info', "Select what servers list will be shown in the rsync installation.");
|
||||
define('OGP_LANG_all_available_servers', "All available servers ( rsync_sites.list + rsync_sites_local.list )");
|
||||
define('OGP_LANG_only_remote_servers', "Only remote servers ( rsync_sites.list )");
|
||||
define('OGP_LANG_only_local_servers', "Only local servers ( rsync_sites_local.list )");
|
||||
define('OGP_LANG_header_code', "Header code");
|
||||
define('OGP_LANG_header_code_info', "Here you can write your own header code (like HTML code, Embed Code etc.) without editing the theme layout.");
|
||||
define('OGP_LANG_support_widget_title', "Support widget title");
|
||||
define('OGP_LANG_support_widget_title_info', "A custom title for the support widget in the Dashboard.");
|
||||
define('OGP_LANG_support_widget_content', "Support widget content");
|
||||
define('OGP_LANG_support_widget_content_info', "The content of the support widget (HTML code allowed).");
|
||||
define('OGP_LANG_support_widget_link', "Support widget link");
|
||||
define('OGP_LANG_support_widget_link_info', "The URL of your support site.");
|
||||
define('OGP_LANG_recaptcha_site_key', "Recaptcha Site Key");
|
||||
define('OGP_LANG_recaptcha_site_key_info', "The site key provided to you by Google.");
|
||||
define('OGP_LANG_recaptcha_secret_key', "Recaptcha Secret Key");
|
||||
define('OGP_LANG_recaptcha_secret_key_info', "The secret key provided to you by Google.");
|
||||
define('OGP_LANG_recaptcha_use_login', "Use Recaptcha on Login");
|
||||
define('OGP_LANG_recaptcha_use_login_info', "If enabled, users will have to solve the Not a Robot Recaptcha when attempting to login.");
|
||||
define('OGP_LANG_login_attempts_before_banned', "Number of failed login attempts before user is banned");
|
||||
define('OGP_LANG_login_attempts_before_banned_info', "If a user tries to login with invalid credentials more than this many times, the user will be banned temporarily by the panel.");
|
||||
define('OGP_LANG_custom_github_update_username', "GitHub update username");
|
||||
define('OGP_LANG_custom_github_update_username_info', "Enter your GitHub username ONLY to use your own forked repositories to update OGP. This should only be changed by developers who wish to use their own repos for development rather than checking in possibly buggy code into the main branch.");
|
||||
define('OGP_LANG_remote_query', "Remote query");
|
||||
define('OGP_LANG_remote_query_info', "Use the remote server (agent) to make queries to the game servers (Only GameQ and LGSL).");
|
||||
define('OGP_LANG_check_expiry_by', "Check expiration using");
|
||||
define('OGP_LANG_check_expiry_by_info', "If set to once_logged_in, the user's game server assignments will be automatically deleted if past the expiration date. If set to cron_job, you will need to create a cron task using the cron module to check for the expiration date at a configured interval.");
|
||||
define('OGP_LANG_once_logged_in', "Once Logged In");
|
||||
define('OGP_LANG_cron_job', "Cron Job");
|
||||
define('OGP_LANG_theme_settings', "Theme Settings");
|
||||
define('OGP_LANG_theme', "Theme");
|
||||
define('OGP_LANG_theme_info', "Theme selected here will be the default theme for all users. Users can change their theme from their profile page.");
|
||||
define('OGP_LANG_welcome_title', "Welcome Title");
|
||||
define('OGP_LANG_welcome_title_info', "Enables the title that is displayed at the top of the Dashboard.");
|
||||
define('OGP_LANG_welcome_title_message', "Welcome Title Message");
|
||||
define('OGP_LANG_welcome_title_message_info', "The title message that is displayed at the top of the Dashboard (HTML code allowed).");
|
||||
define('OGP_LANG_logo_link', "Logos Link");
|
||||
define('OGP_LANG_logo_link_info', "The logos hyperlink. <b style='font-size:10px; font-weight:normal;'>(Leaving it blank will link it to the Dashboard)</b>");
|
||||
define('OGP_LANG_custom_tab', "Custom Tab");
|
||||
define('OGP_LANG_custom_tab_info', "Adds a customisable tab at the end of the menu. <b style='font-size:10px; font-weight:normal;'>(Apply and refresh this page to edit tab settings)</b>");
|
||||
define('OGP_LANG_custom_tab_name', "Custom Tab Name");
|
||||
define('OGP_LANG_custom_tab_name_info', "The tabs display name.");
|
||||
define('OGP_LANG_custom_tab_link', "Custom Tab Link");
|
||||
define('OGP_LANG_custom_tab_link_info', "The tabs hyperlink.");
|
||||
define('OGP_LANG_custom_tab_sub', "Custom Sub-Tabs");
|
||||
define('OGP_LANG_custom_tab_sub_info', "Adds customisable sub-tabs when hovering over the 'Custom Tab'.");
|
||||
define('OGP_LANG_custom_tab_sub_name', "Sub-Tab #1 Name");
|
||||
define('OGP_LANG_custom_tab_sub_link', "Sub-Tab #1 Link");
|
||||
define('OGP_LANG_custom_tab_sub_name2', "Sub-Tab #2 Name");
|
||||
define('OGP_LANG_custom_tab_sub_link2', "Sub-Tab #2 Link");
|
||||
define('OGP_LANG_custom_tab_sub_name3', "Sub-Tab #3 Name");
|
||||
define('OGP_LANG_custom_tab_sub_link3', "Sub-Tab #3 Link");
|
||||
define('OGP_LANG_custom_tab_sub_name4', "Sub-Tab #4 Name");
|
||||
define('OGP_LANG_custom_tab_sub_link4', "Sub-Tab #4 Link");
|
||||
define('OGP_LANG_custom_tab_target_blank', "Custom Tabs Target");
|
||||
define('OGP_LANG_custom_tab_target_blank_info', "Sets all the tabs target. <b style='font-size:10px; font-weight:normal;'>(Self_Page = Opens link on same page. New_Page = Opens link on new tab.)</b>");
|
||||
define('OGP_LANG_bg_wrapper', "Wrapper Background");
|
||||
define('OGP_LANG_bg_wrapper_info', "The wrappers background image. <b style='font-size:10px; font-weight:normal;'>(Only available on some themes.)</b>");
|
||||
define('OGP_LANG_show_server_id_game_monitor', "Show Server IDs on Game Monitor page");
|
||||
define('OGP_LANG_show_server_id_game_monitor_info', "Show the game server ID column on the Game Monitor for matching up files created by the Agent to the actual game server.");
|
||||
define('OGP_LANG_default_game_server_home_path_prefix', "Default game server home directory prefix");
|
||||
define('OGP_LANG_default_game_server_home_path_prefix_info', "Enter a path prefix for where you want game server homes to be created by default. You can use \"{USERNAME}\" in the path which will be replaced with the OGP username the game server is being assigned to. You can use \"{GAMEKEY}\" in the path which will be replaced with a friendly lowercase name. You can use \"{SKIPID}\" anywhere in the path to skip appending the home ID to the path. Example: /ogp/games/{USERNAME}/{GAMEKEY}{SKIPID} will become /ogp/games/username/arkse/. Example 2: /ogp/games will become /ogp/games/1 where 1 is the game servers ID.");
|
||||
define('OGP_LANG_use_authorized_hosts', "Limit API to Defined Authorized Hosts");
|
||||
define('OGP_LANG_use_authorized_hosts_info', "Enable this setting to only allow API calls from pre-defined and approved IP addresses. Approved addresses can be set on this page once the setting has been enabled. If this setting is disabled, a user using a valid key will have access to the API from any IP address. Users using a valid key will be able to use the API to manage any game server they have permissions to administrate.");
|
||||
define('OGP_LANG_setup_api_authorized_hosts', "Setup API authorized hosts");
|
||||
define('OGP_LANG_autohorized_hosts', "Authorized hosts");
|
||||
define('OGP_LANG_add', "Add");
|
||||
define('OGP_LANG_remove', "Remove");
|
||||
define('OGP_LANG_default_trusted_hosts', "Default Trusted Hosts");
|
||||
define('OGP_LANG_trusted_host_or_proxy_addresses_or_cidr', "Trusted Hosts or Proxies (IPv4/IPv6 Addresses or CIDR)");
|
||||
define('OGP_LANG_trusted_forwarded_ip_addresses_or_cidr', "Trusted Forwarded IPs (IPv4/IPv6 Addresses or CIDR)");
|
||||
define('OGP_LANG_reset_game_server_order', "Reset Game Server Ordering");
|
||||
define('OGP_LANG_reset_game_server_order_info', "Resets game server ordering back to the default of using the server ID");
|
||||
define('LANG_maintenance_mode', "Údržba");
|
||||
define('LANG_maintenance_mode_info', "Disable the Panel for normal users. Only administrators can access it during maintenance.");
|
||||
define('LANG_maintenance_title', "Název údržby");
|
||||
define('LANG_maintenance_title_info', "Titul, který se během údržby zobrazuje běžným uživatelům.");
|
||||
define('LANG_maintenance_message', "Zpráva údržby");
|
||||
define('LANG_maintenance_message_info', "Zpráva, která se během údržby zobrazuje běžným uživatelům.");
|
||||
define('LANG_update_settings', "Nastavení aktualizace");
|
||||
define('LANG_settings_updated', "Nastavení bylo úspěšně aktualizováno.");
|
||||
define('LANG_panel_language', "Jazyk panelu");
|
||||
define('LANG_panel_language_info', "Tento jazyk je výchozím jazykem panelu. Uživatelé mohou změnit svůj vlastní jazyk na stránce upravující profil.");
|
||||
define('LANG_page_auto_refresh', "Automatické obnovení stránky");
|
||||
define('LANG_page_auto_refresh_info', "Nastavení automatického obnovení stránky se používá hlavně při ladění panelů. Při běžném používání by měl být nastaven na hodnotu Zapnuto.");
|
||||
define('LANG_smtp_server', "Outgoing E-Mail Server");
|
||||
define('LANG_smtp_server_info', "This is the outgoing mail server (SMTP server) that is used, for example, to sent forgotten passwords to users, localhost by default.");
|
||||
define('LANG_panel_email_address', "Outgoing E-Mail Address");
|
||||
define('LANG_panel_email_address_info', "This is the e-mail address that is in from field when passwords are sent to users.");
|
||||
define('LANG_panel_name', "Panel name");
|
||||
define('LANG_panel_name_info', "Name of the Panel that is shown in the page title. This value will overrule all page titles, if it's not empty.");
|
||||
define('LANG_feed_enable', "Enable LGSL Feed");
|
||||
define('LANG_feed_enable_info', "If your webhost has a firewall which is blocking the query port, then you need to open the port manually.");
|
||||
define('LANG_feed_url', "Feed URL");
|
||||
define('LANG_feed_url_info', "GrayCube.com is sharing a LGSL feed on the URL:<br><b>http://www.greycube.co.uk/lgsl/feed/lgsl_files/lgsl_feed.php</b>");
|
||||
define('LANG_charset', "Character Encoding");
|
||||
define('LANG_charset_info', "UTF8, ISO, ASCII, etc... Overrides the character encoding defined in language files. Leave it blank to use language default.");
|
||||
define('LANG_steam_user', "Steam User");
|
||||
define('LANG_steam_user_info', "This user is needed to log in to steam for download some new games like CS:GO.");
|
||||
define('LANG_steam_pass', "Steam Password");
|
||||
define('LANG_steam_pass_info', "Set here the steam account password.");
|
||||
define('LANG_steam_guard', "Steam Guard");
|
||||
define('LANG_steam_guard_info', "Some users have steam guard activated to protect their accounts from hackers,<br>this code is sent to the account email when the first steam update is started.");
|
||||
define('LANG_smtp_port', "SMTP Port");
|
||||
define('LANG_smtp_port_info', "If SMTP port is not the default port (25) Enter the SMTP port here.");
|
||||
define('LANG_smtp_login', "SMTP User");
|
||||
define('LANG_smtp_login_info', "If your SMTP server requires authentication, enter your user name here.");
|
||||
define('LANG_smtp_passw', "SMTP Password");
|
||||
define('LANG_smtp_passw_info', "If you do not set a password the SMTP authentication will be disabled.");
|
||||
define('LANG_smtp_secure', "SMTP Secure");
|
||||
define('LANG_smtp_secure_info', "Use SSL/TLS to connect to the SMTP server");
|
||||
define('LANG_time_zone', "Time Zone");
|
||||
define('LANG_time_zone_info', "Sets the default timezone used by all date/time functions.");
|
||||
define('LANG_query_cache_life', "Query cache life");
|
||||
define('LANG_query_cache_life_info', "Sets the timeout in seconds before the server status is refreshed.");
|
||||
define('LANG_query_num_servers_stop', "Disable Game Server Queries After");
|
||||
define('LANG_query_num_servers_stop_info', "Use this setting to disable queries if a user owns more game servers than this amount specified to speed up panel loading.");
|
||||
define('LANG_editable_email', "Editable E-Mail Address");
|
||||
define('LANG_editable_email_info', "Select if users can edit their e-mail address or not.");
|
||||
define('LANG_old_dashboard_behavior', "Old Dashboard behavior");
|
||||
define('LANG_old_dashboard_behavior_info', "The old Dashboard was running slower, but shows more server informations (e.g. current players and maps).");
|
||||
define('LANG_rsync_available', "Available Rsync servers");
|
||||
define('LANG_rsync_available_info', "Select what servers list will be shown in the rsync installation.");
|
||||
define('LANG_all_available_servers', "All available servers ( rsync_sites.list + rsync_sites_local.list )");
|
||||
define('LANG_only_remote_servers', "Only remote servers ( rsync_sites.list )");
|
||||
define('LANG_only_local_servers', "Only local servers ( rsync_sites_local.list )");
|
||||
define('LANG_header_code', "Header code");
|
||||
define('LANG_header_code_info', "Here you can write your own header code (like HTML code, Embed Code etc.) without editing the theme layout.");
|
||||
define('LANG_support_widget_title', "Support widget title");
|
||||
define('LANG_support_widget_title_info', "A custom title for the support widget in the Dashboard.");
|
||||
define('LANG_support_widget_content', "Support widget content");
|
||||
define('LANG_support_widget_content_info', "The content of the support widget (HTML code allowed).");
|
||||
define('LANG_support_widget_link', "Support widget link");
|
||||
define('LANG_support_widget_link_info', "The URL of your support site.");
|
||||
define('LANG_recaptcha_site_key', "Recaptcha Site Key");
|
||||
define('LANG_recaptcha_site_key_info', "The site key provided to you by Google.");
|
||||
define('LANG_recaptcha_secret_key', "Recaptcha Secret Key");
|
||||
define('LANG_recaptcha_secret_key_info', "The secret key provided to you by Google.");
|
||||
define('LANG_recaptcha_use_login', "Use Recaptcha on Login");
|
||||
define('LANG_recaptcha_use_login_info', "If enabled, users will have to solve the Not a Robot Recaptcha when attempting to login.");
|
||||
define('LANG_login_attempts_before_banned', "Number of failed login attempts before user is banned");
|
||||
define('LANG_login_attempts_before_banned_info', "If a user tries to login with invalid credentials more than this many times, the user will be banned temporarily by the panel.");
|
||||
define('LANG_custom_github_update_username', "GitHub update username");
|
||||
define('LANG_custom_github_update_username_info', "Enter your GitHub username ONLY to use your own forked repositories to update OGP. This should only be changed by developers who wish to use their own repos for development rather than checking in possibly buggy code into the main branch.");
|
||||
define('LANG_remote_query', "Remote query");
|
||||
define('LANG_remote_query_info', "Use the remote server (agent) to make queries to the game servers (Only GameQ and LGSL).");
|
||||
define('LANG_check_expiry_by', "Check expiration using");
|
||||
define('LANG_check_expiry_by_info', "If set to once_logged_in, the user's game server assignments will be automatically deleted if past the expiration date. If set to cron_job, you will need to create a cron task using the cron module to check for the expiration date at a configured interval.");
|
||||
define('LANG_once_logged_in', "Once Logged In");
|
||||
define('LANG_cron_job', "Cron Job");
|
||||
define('LANG_theme_settings', "Theme Settings");
|
||||
define('LANG_theme', "Theme");
|
||||
define('LANG_theme_info', "Theme selected here will be the default theme for all users. Users can change their theme from their profile page.");
|
||||
define('LANG_welcome_title', "Welcome Title");
|
||||
define('LANG_welcome_title_info', "Enables the title that is displayed at the top of the Dashboard.");
|
||||
define('LANG_welcome_title_message', "Welcome Title Message");
|
||||
define('LANG_welcome_title_message_info', "The title message that is displayed at the top of the Dashboard (HTML code allowed).");
|
||||
define('LANG_logo_link', "Logos Link");
|
||||
define('LANG_logo_link_info', "The logos hyperlink. <b style='font-size:10px; font-weight:normal;'>(Leaving it blank will link it to the Dashboard)</b>");
|
||||
define('LANG_custom_tab', "Custom Tab");
|
||||
define('LANG_custom_tab_info', "Adds a customisable tab at the end of the menu. <b style='font-size:10px; font-weight:normal;'>(Apply and refresh this page to edit tab settings)</b>");
|
||||
define('LANG_custom_tab_name', "Custom Tab Name");
|
||||
define('LANG_custom_tab_name_info', "The tabs display name.");
|
||||
define('LANG_custom_tab_link', "Custom Tab Link");
|
||||
define('LANG_custom_tab_link_info', "The tabs hyperlink.");
|
||||
define('LANG_custom_tab_sub', "Custom Sub-Tabs");
|
||||
define('LANG_custom_tab_sub_info', "Adds customisable sub-tabs when hovering over the 'Custom Tab'.");
|
||||
define('LANG_custom_tab_sub_name', "Sub-Tab #1 Name");
|
||||
define('LANG_custom_tab_sub_link', "Sub-Tab #1 Link");
|
||||
define('LANG_custom_tab_sub_name2', "Sub-Tab #2 Name");
|
||||
define('LANG_custom_tab_sub_link2', "Sub-Tab #2 Link");
|
||||
define('LANG_custom_tab_sub_name3', "Sub-Tab #3 Name");
|
||||
define('LANG_custom_tab_sub_link3', "Sub-Tab #3 Link");
|
||||
define('LANG_custom_tab_sub_name4', "Sub-Tab #4 Name");
|
||||
define('LANG_custom_tab_sub_link4', "Sub-Tab #4 Link");
|
||||
define('LANG_custom_tab_target_blank', "Custom Tabs Target");
|
||||
define('LANG_custom_tab_target_blank_info', "Sets all the tabs target. <b style='font-size:10px; font-weight:normal;'>(Self_Page = Opens link on same page. New_Page = Opens link on new tab.)</b>");
|
||||
define('LANG_bg_wrapper', "Wrapper Background");
|
||||
define('LANG_bg_wrapper_info', "The wrappers background image. <b style='font-size:10px; font-weight:normal;'>(Only available on some themes.)</b>");
|
||||
define('LANG_show_server_id_game_monitor', "Show Server IDs on Game Monitor page");
|
||||
define('LANG_show_server_id_game_monitor_info', "Show the game server ID column on the Game Monitor for matching up files created by the Agent to the actual game server.");
|
||||
define('LANG_default_game_server_home_path_prefix', "Default game server home directory prefix");
|
||||
define('LANG_default_game_server_home_path_prefix_info', "Enter a path prefix for where you want game server homes to be created by default. You can use \"{USERNAME}\" in the path which will be replaced with the OGP username the game server is being assigned to. You can use \"{GAMEKEY}\" in the path which will be replaced with a friendly lowercase name. You can use \"{SKIPID}\" anywhere in the path to skip appending the home ID to the path. Example: /ogp/games/{USERNAME}/{GAMEKEY}{SKIPID} will become /ogp/games/username/arkse/. Example 2: /ogp/games will become /ogp/games/1 where 1 is the game servers ID.");
|
||||
define('LANG_use_authorized_hosts', "Limit API to Defined Authorized Hosts");
|
||||
define('LANG_use_authorized_hosts_info', "Enable this setting to only allow API calls from pre-defined and approved IP addresses. Approved addresses can be set on this page once the setting has been enabled. If this setting is disabled, a user using a valid key will have access to the API from any IP address. Users using a valid key will be able to use the API to manage any game server they have permissions to administrate.");
|
||||
define('LANG_setup_api_authorized_hosts', "Setup API authorized hosts");
|
||||
define('LANG_autohorized_hosts', "Authorized hosts");
|
||||
define('LANG_add', "Add");
|
||||
define('LANG_remove', "Remove");
|
||||
define('LANG_default_trusted_hosts', "Default Trusted Hosts");
|
||||
define('LANG_trusted_host_or_proxy_addresses_or_cidr', "Trusted Hosts or Proxies (IPv4/IPv6 Addresses or CIDR)");
|
||||
define('LANG_trusted_forwarded_ip_addresses_or_cidr', "Trusted Forwarded IPs (IPv4/IPv6 Addresses or CIDR)");
|
||||
define('LANG_reset_game_server_order', "Reset Game Server Ordering");
|
||||
define('LANG_reset_game_server_order_info', "Resets game server ordering back to the default of using the server ID");
|
||||
|
||||
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -22,27 +22,27 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_system_uptime', "System Uptime");
|
||||
define('OGP_LANG_system_up_time', "Up Time");
|
||||
define('OGP_LANG_system_up_since', "Since");
|
||||
define('OGP_LANG_day_word', "Day");
|
||||
define('OGP_LANG_days_word', "Days");
|
||||
define('OGP_LANG_hour_word', "Hour");
|
||||
define('OGP_LANG_hours_word', "Hours");
|
||||
define('OGP_LANG_minute_word', "Minute");
|
||||
define('OGP_LANG_minutes_word', "Minutes");
|
||||
define('OGP_LANG_second_word', "Second");
|
||||
define('OGP_LANG_seconds_word', "Seconds");
|
||||
define('OGP_LANG_cpu_usage', "CPU Usage");
|
||||
define('OGP_LANG_cpu_load', "Load");
|
||||
define('OGP_LANG_ram_usage', "RAM Usage");
|
||||
define('OGP_LANG_ram_used', "Memory Used");
|
||||
define('OGP_LANG_ram_of', "of");
|
||||
define('OGP_LANG_storage_space', "Storage Space");
|
||||
define('OGP_LANG_storage_total', "Disk Space");
|
||||
define('OGP_LANG_storage_used', "Used");
|
||||
define('OGP_LANG_storage_free', "Free Space");
|
||||
define('OGP_LANG_process_monitor', "Process Monitor");
|
||||
define('OGP_LANG_status_extension_required', "Extension Required");
|
||||
define('OGP_LANG_gd_info', "PHP Extension <a href=\"http://php.net/manual/en/image.installation.php\">GD</a> is required to generate these bar images!");
|
||||
define('LANG_system_uptime', "System Uptime");
|
||||
define('LANG_system_up_time', "Up Time");
|
||||
define('LANG_system_up_since', "Since");
|
||||
define('LANG_day_word', "Day");
|
||||
define('LANG_days_word', "Days");
|
||||
define('LANG_hour_word', "Hour");
|
||||
define('LANG_hours_word', "Hours");
|
||||
define('LANG_minute_word', "Minute");
|
||||
define('LANG_minutes_word', "Minutes");
|
||||
define('LANG_second_word', "Second");
|
||||
define('LANG_seconds_word', "Seconds");
|
||||
define('LANG_cpu_usage', "CPU Usage");
|
||||
define('LANG_cpu_load', "Load");
|
||||
define('LANG_ram_usage', "RAM Usage");
|
||||
define('LANG_ram_used', "Memory Used");
|
||||
define('LANG_ram_of', "of");
|
||||
define('LANG_storage_space', "Storage Space");
|
||||
define('LANG_storage_total', "Disk Space");
|
||||
define('LANG_storage_used', "Used");
|
||||
define('LANG_storage_free', "Free Space");
|
||||
define('LANG_process_monitor', "Process Monitor");
|
||||
define('LANG_status_extension_required', "Extension Required");
|
||||
define('LANG_gd_info', "PHP Extension <a href=\"http://php.net/manual/en/image.installation.php\">GD</a> is required to generate these bar images!");
|
||||
?>
|
||||
|
|
@ -21,54 +21,54 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*
|
||||
*/
|
||||
define('OGP_LANG_game', "Game");
|
||||
define('OGP_LANG_select_mod', "Select mod");
|
||||
define('OGP_LANG_manual_workshop_mod_id', "Manual Workshop mod ID");
|
||||
define('OGP_LANG_manual_workshop_mod_id_info', "You'll find the mod id at the URL of the mod, for example 1379153273 for ARK: Survival Evolved's Solar Panel. You can install multiple mods separating them by coma.");
|
||||
define('OGP_LANG_update_in_progress', "Update in progress");
|
||||
define('OGP_LANG_refresh_steam_workshop_status', "Refresh Steam Workshop status");
|
||||
define('OGP_LANG_update_completed', "Update completed");
|
||||
define('OGP_LANG_mod_does_not_belong_to_workshop', "The mod %s does not belong to the Workshop");
|
||||
define('OGP_LANG_mod_installation_started', "Mod installation started");
|
||||
define('OGP_LANG_failed_to_start_steam_workshop', "Failed to start Steam Workshop");
|
||||
define('OGP_LANG_connection_error', "Connection error");
|
||||
define('OGP_LANG_install_mod', "Install mods");
|
||||
define('OGP_LANG_show_mod_info', "Show mods info");
|
||||
define('OGP_LANG_select_game', "Select Game");
|
||||
define('OGP_LANG_save_config', "Save Config");
|
||||
define('OGP_LANG_mod_key_not_found_from_xml', "Mod key %s not found from xml.");
|
||||
define('OGP_LANG_workshop_id', "Workshop ID");
|
||||
define('OGP_LANG_workshop_id_info', "You'll find the Workshop ID at the URL of the Workshop, for example 440900 for Conan Exiles");
|
||||
define('OGP_LANG_mods_path', "Mods Path");
|
||||
define('OGP_LANG_mods_path_info', "The relative path for the mods folder.");
|
||||
define('OGP_LANG_regex', "Regex");
|
||||
define('OGP_LANG_regex_info', "A regular expression that matches the mods in the configuration file");
|
||||
define('OGP_LANG_mods_backreference_index', "Mods Backreference Index");
|
||||
define('OGP_LANG_mods_backreference_index_info', "The position of the back reference from the part of the regex that match the mods list, starting by 0.");
|
||||
define('OGP_LANG_variable', "Variable");
|
||||
define('OGP_LANG_variable_info', "The variable that cointains the mods list, if any.");
|
||||
define('OGP_LANG_place_after', "Place After");
|
||||
define('OGP_LANG_place_after_info', "The section of the configuration file where the mods list appears, if any. It will be added to the config file if does not exists yet. If the given variable is not present then it will be placed in the line after this section.");
|
||||
define('OGP_LANG_mod_string', "Mod String");
|
||||
define('OGP_LANG_mod_string_info', "The string that represents the mod in the mod list. Valid replacements: %workshop_mod_id%, %first_file% (first file is the first file found in the mod folder downloaded by SteamCMD)");
|
||||
define('OGP_LANG_string_separator', "String Separator");
|
||||
define('OGP_LANG_string_separator_info', "The character that separates the mods in the configuration file, for example new line character (\\n) or coma (,).");
|
||||
define('OGP_LANG_filepath', "File Path");
|
||||
define('OGP_LANG_filepath_info', "The path of the configuration file where the mods must be listed.");
|
||||
define('OGP_LANG_post_install', "Postinstall Script");
|
||||
define('OGP_LANG_post_install_info', "The necessary commands in bash to move the mods to the mods folder. Valid replacements: %mods_full_path% (the full path to the Wokshop mods folder), %workshop_mod_id%, %first_file% (first file is the first file found in the mod folder downloaded by SteamCMD)");
|
||||
define('OGP_LANG_install_mods', "Install Mods");
|
||||
define('OGP_LANG_uninstall_mods', "Uninstall Mods");
|
||||
define('OGP_LANG_failed_uninstalling_mod', "Failed uninstalling mod %s");
|
||||
define('OGP_LANG_uninstall', "Uninstall Script");
|
||||
define('OGP_LANG_uninstall_info', "This is the script called when a mod is uninstalled, Valid replacements: %mods_full_path% (the full path to the wokshop mods folder), %mod_string% (mod string is the name listed in the configuration file for this mod).");
|
||||
define('OGP_LANG_remove_mods', "Remove Mods");
|
||||
define('OGP_LANG_do_not_close_this_page_while_mods_are_being_installed', "Do not close this page while mods are being installed.");
|
||||
define('OGP_LANG_no_game_server_selected', "No game server selected");
|
||||
define('OGP_LANG_there_are_no_mods_installed_on_this_game_server', "There are no mods installed on this game server");
|
||||
define('OGP_LANG_workshop_configuration_not_found', "Workshop configuration not found");
|
||||
define('OGP_LANG_download_method', "Download Method");
|
||||
define('OGP_LANG_anonymous_login', "Anonymous Login");
|
||||
define('OGP_LANG_select_at_least_one_mod_or_enter_mod_id', "Select at least one mod or enter a mod ID.");
|
||||
define('OGP_LANG_no_game_servers_assigned', "You don't have any servers assigned to your account.");
|
||||
define('LANG_game', "Game");
|
||||
define('LANG_select_mod', "Select mod");
|
||||
define('LANG_manual_workshop_mod_id', "Manual Workshop mod ID");
|
||||
define('LANG_manual_workshop_mod_id_info', "You'll find the mod id at the URL of the mod, for example 1379153273 for ARK: Survival Evolved's Solar Panel. You can install multiple mods separating them by coma.");
|
||||
define('LANG_update_in_progress', "Update in progress");
|
||||
define('LANG_refresh_steam_workshop_status', "Refresh Steam Workshop status");
|
||||
define('LANG_update_completed', "Update completed");
|
||||
define('LANG_mod_does_not_belong_to_workshop', "The mod %s does not belong to the Workshop");
|
||||
define('LANG_mod_installation_started', "Mod installation started");
|
||||
define('LANG_failed_to_start_steam_workshop', "Failed to start Steam Workshop");
|
||||
define('LANG_connection_error', "Connection error");
|
||||
define('LANG_install_mod', "Install mods");
|
||||
define('LANG_show_mod_info', "Show mods info");
|
||||
define('LANG_select_game', "Select Game");
|
||||
define('LANG_save_config', "Save Config");
|
||||
define('LANG_mod_key_not_found_from_xml', "Mod key %s not found from xml.");
|
||||
define('LANG_workshop_id', "Workshop ID");
|
||||
define('LANG_workshop_id_info', "You'll find the Workshop ID at the URL of the Workshop, for example 440900 for Conan Exiles");
|
||||
define('LANG_mods_path', "Mods Path");
|
||||
define('LANG_mods_path_info', "The relative path for the mods folder.");
|
||||
define('LANG_regex', "Regex");
|
||||
define('LANG_regex_info', "A regular expression that matches the mods in the configuration file");
|
||||
define('LANG_mods_backreference_index', "Mods Backreference Index");
|
||||
define('LANG_mods_backreference_index_info', "The position of the back reference from the part of the regex that match the mods list, starting by 0.");
|
||||
define('LANG_variable', "Variable");
|
||||
define('LANG_variable_info', "The variable that cointains the mods list, if any.");
|
||||
define('LANG_place_after', "Place After");
|
||||
define('LANG_place_after_info', "The section of the configuration file where the mods list appears, if any. It will be added to the config file if does not exists yet. If the given variable is not present then it will be placed in the line after this section.");
|
||||
define('LANG_mod_string', "Mod String");
|
||||
define('LANG_mod_string_info', "The string that represents the mod in the mod list. Valid replacements: %workshop_mod_id%, %first_file% (first file is the first file found in the mod folder downloaded by SteamCMD)");
|
||||
define('LANG_string_separator', "String Separator");
|
||||
define('LANG_string_separator_info', "The character that separates the mods in the configuration file, for example new line character (\\n) or coma (,).");
|
||||
define('LANG_filepath', "File Path");
|
||||
define('LANG_filepath_info', "The path of the configuration file where the mods must be listed.");
|
||||
define('LANG_post_install', "Postinstall Script");
|
||||
define('LANG_post_install_info', "The necessary commands in bash to move the mods to the mods folder. Valid replacements: %mods_full_path% (the full path to the Wokshop mods folder), %workshop_mod_id%, %first_file% (first file is the first file found in the mod folder downloaded by SteamCMD)");
|
||||
define('LANG_install_mods', "Install Mods");
|
||||
define('LANG_uninstall_mods', "Uninstall Mods");
|
||||
define('LANG_failed_uninstalling_mod', "Failed uninstalling mod %s");
|
||||
define('LANG_uninstall', "Uninstall Script");
|
||||
define('LANG_uninstall_info', "This is the script called when a mod is uninstalled, Valid replacements: %mods_full_path% (the full path to the wokshop mods folder), %mod_string% (mod string is the name listed in the configuration file for this mod).");
|
||||
define('LANG_remove_mods', "Remove Mods");
|
||||
define('LANG_do_not_close_this_page_while_mods_are_being_installed', "Do not close this page while mods are being installed.");
|
||||
define('LANG_no_game_server_selected', "No game server selected");
|
||||
define('LANG_there_are_no_mods_installed_on_this_game_server', "There are no mods installed on this game server");
|
||||
define('LANG_workshop_configuration_not_found', "Workshop configuration not found");
|
||||
define('LANG_download_method', "Download Method");
|
||||
define('LANG_anonymous_login', "Anonymous Login");
|
||||
define('LANG_select_at_least_one_mod_or_enter_mod_id', "Select at least one mod or enter a mod ID.");
|
||||
define('LANG_no_game_servers_assigned', "You don't have any servers assigned to your account.");
|
||||
?>
|
||||
|
|
@ -22,43 +22,43 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_login_name', "Username");
|
||||
define('OGP_LANG_first_name', "First name");
|
||||
define('OGP_LANG_last_name', "Last name");
|
||||
define('OGP_LANG_phone_number', "Phone number");
|
||||
define('OGP_LANG_email_address', "Email");
|
||||
define('OGP_LANG_register_a_new_user', "Register a new user");
|
||||
define('OGP_LANG_password_mismatch', "Passwords mismatch.");
|
||||
define('OGP_LANG_confirm_password', "Confirm password");
|
||||
define('OGP_LANG_subuser_password', "Sub-User Password");
|
||||
define('OGP_LANG_subuser_man', "Sub-User Management");
|
||||
define('OGP_LANG_successfull', "Successfull");
|
||||
define('OGP_LANG_click_here', "Click here");
|
||||
define('OGP_LANG_to_login', "to login.");
|
||||
define('OGP_LANG_registered_on', "Registered on");
|
||||
define('OGP_LANG_register_message', "Hello,<br><br>Your Open Game Panel account has been created and you may now login using the following account information:<br><br>Username: %s<br>Password: %s<br><br>Remember to change your password often and the first time you login.<br><br>Please do not reply to this email!<br><br>______________________________<br>Black Market Servers");
|
||||
define('OGP_LANG_err_password', "Password cannot be empty");
|
||||
define('OGP_LANG_err_confirm_password', "Verify password field cannot be empty");
|
||||
define('OGP_LANG_err_password_mismatch', "Passwords do not match");
|
||||
define('OGP_LANG_err_captcha', "Captcha does not match.");
|
||||
define('OGP_LANG_err_login_name', "User name is empty or in use.");
|
||||
define('OGP_LANG_err_first_name', "Enter your name.");
|
||||
define('OGP_LANG_err_last_name', "Last Name not entered.");
|
||||
define('OGP_LANG_err_phone_number', "Phone number is empty.");
|
||||
define('OGP_LANG_err_email_address', "Empty or incorrect email address.");
|
||||
define('OGP_LANG_err_users_parent', "Sub-user accounts may not create other users.");
|
||||
define('OGP_LANG_err_parent_user', "The parent user ID must reference a valid pre-existing user.");
|
||||
define('OGP_LANG_err_email_address_already_in_use_by', "Email address already in use by <b>%s</b>.");
|
||||
define('OGP_LANG_user_registration', "User Registration");
|
||||
define('OGP_LANG_your_account_details_has_been_sent_by_email_to', "Your account details has been sent by email to <b>%s</b>.");
|
||||
define('OGP_LANG_subject', "Hello %s, welcome to %s!");
|
||||
define('OGP_LANG_sub_user', "Sub Users");
|
||||
define('OGP_LANG_create_sub_user', "Add Sub User");
|
||||
define('OGP_LANG_listdel_sub_user', "List, Modify Sub User Account Information, or Delete Sub User");
|
||||
define('OGP_LANG_delete_sub_user', "Edit / Delete Sub User");
|
||||
define('OGP_LANG_del_subuser_conf', "Are you sure you want to delete this account:");
|
||||
define('OGP_LANG_no_subusers', "No subusers have been created under your account yet!");
|
||||
define('OGP_LANG_subuser_deleted', "Sub-User %s was successfully deleted from the database!");
|
||||
define('OGP_LANG_subuser_added', "Sub-User %s was successfully created and added to the database!");
|
||||
define('OGP_LANG_your_subusers', "Owned Sub-User Accounts");
|
||||
define('LANG_login_name', "Username");
|
||||
define('LANG_first_name', "First name");
|
||||
define('LANG_last_name', "Last name");
|
||||
define('LANG_phone_number', "Phone number");
|
||||
define('LANG_email_address', "Email");
|
||||
define('LANG_register_a_new_user', "Register a new user");
|
||||
define('LANG_password_mismatch', "Passwords mismatch.");
|
||||
define('LANG_confirm_password', "Confirm password");
|
||||
define('LANG_subuser_password', "Sub-User Password");
|
||||
define('LANG_subuser_man', "Sub-User Management");
|
||||
define('LANG_successfull', "Successfull");
|
||||
define('LANG_click_here', "Click here");
|
||||
define('LANG_to_login', "to login.");
|
||||
define('LANG_registered_on', "Registered on");
|
||||
define('LANG_register_message', "Hello,<br><br>Your Open Game Panel account has been created and you may now login using the following account information:<br><br>Username: %s<br>Password: %s<br><br>Remember to change your password often and the first time you login.<br><br>Please do not reply to this email!<br><br>______________________________<br>Black Market Servers");
|
||||
define('LANG_err_password', "Password cannot be empty");
|
||||
define('LANG_err_confirm_password', "Verify password field cannot be empty");
|
||||
define('LANG_err_password_mismatch', "Passwords do not match");
|
||||
define('LANG_err_captcha', "Captcha does not match.");
|
||||
define('LANG_err_login_name', "User name is empty or in use.");
|
||||
define('LANG_err_first_name', "Enter your name.");
|
||||
define('LANG_err_last_name', "Last Name not entered.");
|
||||
define('LANG_err_phone_number', "Phone number is empty.");
|
||||
define('LANG_err_email_address', "Empty or incorrect email address.");
|
||||
define('LANG_err_users_parent', "Sub-user accounts may not create other users.");
|
||||
define('LANG_err_parent_user', "The parent user ID must reference a valid pre-existing user.");
|
||||
define('LANG_err_email_address_already_in_use_by', "Email address already in use by <b>%s</b>.");
|
||||
define('LANG_user_registration', "User Registration");
|
||||
define('LANG_your_account_details_has_been_sent_by_email_to', "Your account details has been sent by email to <b>%s</b>.");
|
||||
define('LANG_subject', "Hello %s, welcome to %s!");
|
||||
define('LANG_sub_user', "Sub Users");
|
||||
define('LANG_create_sub_user', "Add Sub User");
|
||||
define('LANG_listdel_sub_user', "List, Modify Sub User Account Information, or Delete Sub User");
|
||||
define('LANG_delete_sub_user', "Edit / Delete Sub User");
|
||||
define('LANG_del_subuser_conf', "Are you sure you want to delete this account:");
|
||||
define('LANG_no_subusers', "No subusers have been created under your account yet!");
|
||||
define('LANG_subuser_deleted', "Sub-User %s was successfully deleted from the database!");
|
||||
define('LANG_subuser_added', "Sub-User %s was successfully created and added to the database!");
|
||||
define('LANG_your_subusers', "Owned Sub-User Accounts");
|
||||
?>
|
||||
|
|
@ -22,17 +22,17 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_support_email_content', "You have received a support request from %s (%s).<br><br>Server: %s.<br><br>%s");
|
||||
define('OGP_LANG_message_has_been_sent', "Děkujeme, že jste nás kontaktovali! Vaše zpráva byla přijata a na ni budeme reagovat emailem.");
|
||||
define('OGP_LANG_please_describe_your_issue_below', "Please use the form below to request support for your game server.<br>We will respond as soon as possible.");
|
||||
define('OGP_LANG_select_server', "Vyberte server");
|
||||
define('OGP_LANG_email_address', "Emailová adresa");
|
||||
define('OGP_LANG_subject', "Předmět");
|
||||
define('OGP_LANG_message', "Zpráva");
|
||||
define('OGP_LANG_email_must_be_filled_out', "E-mailová adresa musí být vyplněna.");
|
||||
define('OGP_LANG_subject_must_be_filled_out', "Předmět musí být vyplněn.");
|
||||
define('OGP_LANG_message_must_be_filled_out', "Zpráva musí být vyplněna.");
|
||||
define('OGP_LANG_send', "Poslat");
|
||||
define('OGP_LANG_error', "Chyba");
|
||||
define('OGP_LANG_info', "Informace");
|
||||
define('LANG_support_email_content', "You have received a support request from %s (%s).<br><br>Server: %s.<br><br>%s");
|
||||
define('LANG_message_has_been_sent', "Děkujeme, že jste nás kontaktovali! Vaše zpráva byla přijata a na ni budeme reagovat emailem.");
|
||||
define('LANG_please_describe_your_issue_below', "Please use the form below to request support for your game server.<br>We will respond as soon as possible.");
|
||||
define('LANG_select_server', "Vyberte server");
|
||||
define('LANG_email_address', "Emailová adresa");
|
||||
define('LANG_subject', "Předmět");
|
||||
define('LANG_message', "Zpráva");
|
||||
define('LANG_email_must_be_filled_out', "E-mailová adresa musí být vyplněna.");
|
||||
define('LANG_subject_must_be_filled_out', "Předmět musí být vyplněn.");
|
||||
define('LANG_message_must_be_filled_out', "Zpráva musí být vyplněna.");
|
||||
define('LANG_send', "Poslat");
|
||||
define('LANG_error', "Chyba");
|
||||
define('LANG_info', "Informace");
|
||||
?>
|
||||
|
|
@ -22,94 +22,94 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_support_tickets', "Support Tickets");
|
||||
define('OGP_LANG_ticket_subject', "Subject");
|
||||
define('OGP_LANG_ticket_status', "Status");
|
||||
define('OGP_LANG_ticket_updated', "Last Updated");
|
||||
define('OGP_LANG_ticket_options', "Options");
|
||||
define('OGP_LANG_viewing_ticket', "Viewing Ticket");
|
||||
define('OGP_LANG_ticket_not_found', "The given ticket parameters don't match an existing ticket.");
|
||||
define('OGP_LANG_ticket_cant_read', "Insufficient permission to view ticket.");
|
||||
define('OGP_LANG_cant_view_ticket', "Unable to retrieve the ticket information.");
|
||||
define('OGP_LANG_ticket_id', "Ticket ID");
|
||||
define('OGP_LANG_service_id', "Service ID");
|
||||
define('OGP_LANG_ticket_submitted', "Ticket Submitted");
|
||||
define('OGP_LANG_submitter_info', "Submitter Info");
|
||||
define('OGP_LANG_name', "Name");
|
||||
define('OGP_LANG_ip', "IP");
|
||||
define('OGP_LANG_role', "User Role");
|
||||
define('OGP_LANG_ticket_submit_response', "Submit Response");
|
||||
define('OGP_LANG_ticket_close', "Close");
|
||||
define('OGP_LANG_no_ticket_replies', "No Ticket Replies");
|
||||
define('OGP_LANG_no_tickets_submitted', "No Tickets have been submitted.");
|
||||
define('OGP_LANG_submit_ticket', "Submit Ticket");
|
||||
define('OGP_LANG_ticket_service', "Service");
|
||||
define('OGP_LANG_ticket_message', "Message");
|
||||
define('OGP_LANG_ticket_errors_occured', "The following errors occured when submitting your ticket");
|
||||
define('OGP_LANG_no_ticket_subject', "No Ticket Subject");
|
||||
define('OGP_LANG_invalid_ticket_subject_length', "Invalid Subject Length (4 to 64 characters)");
|
||||
define('OGP_LANG_invalid_home_selected', "Invalid Home Selected");
|
||||
define('OGP_LANG_no_ticket_message', "No Ticket Message Provided");
|
||||
define('OGP_LANG_invalid_ticket_message_length', "Invalid Ticket Message Length (Minimum of 4 characters)");
|
||||
define('OGP_LANG_ticket_no_service', "No service selected for this ticket.");
|
||||
define('OGP_LANG_failed_to_open', "Failed to open the ticket.");
|
||||
define('OGP_LANG_failed_to_reply', "Failed to create response to ticket.");
|
||||
define('OGP_LANG_no_ticket_reply', "No Ticket Reply Provided");
|
||||
define('OGP_LANG_invalid_ticket_reply_length', "Invalid Ticket Reply Length (Minimum of 4 characters)");
|
||||
define('OGP_LANG_ticket_closed', "Ticket Closed");
|
||||
define('OGP_LANG_ticket_open', "Ticket Open");
|
||||
define('OGP_LANG_ticket_admin_response', "Admin Response");
|
||||
define('OGP_LANG_ticket_customer_response', "Customer Response");
|
||||
define('OGP_LANG_ticket_invalid_page_num', "You have attempted to view a page number with no tickets!");
|
||||
define('OGP_LANG_ticket_is_closed', "This ticket is closed. You may reply to this ticket to reopen it.");
|
||||
define('OGP_LANG_reply', "Reply");
|
||||
define('OGP_LANG_invalid_rating', "The rating received is not valid.");
|
||||
define('OGP_LANG_successfully_rated_response', "Successfully rated response.");
|
||||
define('OGP_LANG_failed_rating_response', "Failed to rate the response.");
|
||||
define('OGP_LANG_attachment_not_all_parameters_sent', "Not all parameters have been sent to download the file.");
|
||||
define('OGP_LANG_requested_attachment_missing', "The requested attachment does not exist.");
|
||||
define('OGP_LANG_requested_attachment_missing_db', "The requested attachment does not exist in the database.");
|
||||
define('OGP_LANG_ratings_disabled', "Rating responses is not enabled.");
|
||||
define('OGP_LANG_attachments', "Attachments");
|
||||
define('OGP_LANG_add_file_attachment', "Add More");
|
||||
define('OGP_LANG_attachment_size_info', "Each selected file may be a maximum of %s");
|
||||
define('OGP_LANG_attachment_file_size_info', "A maximum of %s file(s) may be uploaded, %s each.");
|
||||
define('OGP_LANG_attachment_allowed_extensions_info', "Allowed File Extensions: %s");
|
||||
define('OGP_LANG_ticket_fix_before_submitting', "Please fix the following errors before submitting the ticket");
|
||||
define('OGP_LANG_ticket_fix_before_replying', "Please fix the following errors before replying to the ticket");
|
||||
define('OGP_LANG_ticket_problem_with_attachments', "There was a problem with the file(s) you attached");
|
||||
define('OGP_LANG_ticket_attachment_invalid_extension', "%1 does not contain a permitted extension.");
|
||||
define('OGP_LANG_ticket_attachment_invalid_size', "%1 is larger than the allowed file size. %2 maximum!");
|
||||
define('OGP_LANG_ticket_max_file_elements', "Only a maximum of %1 file inputs may exist.");
|
||||
define('OGP_LANG_ticket_attachment_multiple_files', "One or more file inputs have multiple files selected.");
|
||||
define('OGP_LANG_attachment_err_ini_size', "%s (%s) exceeds the 'upload_max_filesize' setting.");
|
||||
define('OGP_LANG_attachment_err_partial', "%s was only partially uploaded.");
|
||||
define('OGP_LANG_attachment_err_no_tmp', "No tmp directory exists to save %s");
|
||||
define('OGP_LANG_attachment_err_cant_write', "Unable to write %s to disk.");
|
||||
define('OGP_LANG_attachment_err_extension', "An extension stopped the upload of %s. Review your logs.");
|
||||
define('OGP_LANG_attachment_too_large', "%s (%s) is larger than the maximum allowed size of %s!");
|
||||
define('OGP_LANG_attachment_forbidden_type', "The file type of %s may not be uploaded.");
|
||||
define('OGP_LANG_attachment_directory_not_writable', "Unable to save the attached files. The specified save directory is not writable.");
|
||||
define('OGP_LANG_attachment_invalid_file_count', "The amount of files sent to the server was invalid. Only a maximum of %s may be uploaded");
|
||||
define('OGP_LANG_ratings_enabled', "Ratings");
|
||||
define('OGP_LANG_ratings_enabled_info', "Set if rating responses should be allowed.");
|
||||
define('OGP_LANG_attachments_enabled', "Attachments");
|
||||
define('OGP_LANG_attachments_enabled_info', "Set if the attachment system should be enabled.");
|
||||
define('OGP_LANG_attachment_max_size', "Max File Size");
|
||||
define('OGP_LANG_attachment_max_size_info', "Sets the max file size for attachments.");
|
||||
define('OGP_LANG_attachment_limit', "Attachment Limit");
|
||||
define('OGP_LANG_attachment_limit_info', "Sets how many files may be attached at once. 0 for no limit.");
|
||||
define('OGP_LANG_attachment_save_dir', "Attachment Upload Location");
|
||||
define('OGP_LANG_attachment_save_dir_info', "Sets where attachments should be uploaded. Ideally, outside of the public_html folder or direct access blocked.");
|
||||
define('OGP_LANG_attachment_extensions', "Attachment Extensions");
|
||||
define('OGP_LANG_attachment_extensions_info', "Sets the permitted extensions. Each extension should be separated by a comma.");
|
||||
define('OGP_LANG_show_php_ini', "Show Estimated INI Settings");
|
||||
define('OGP_LANG_settings_errors_occured', "The following errors occured when attempting to update the settings - not everything has been updated!");
|
||||
define('OGP_LANG_invalid_max_size', "Invalid value for Max Size setting.");
|
||||
define('OGP_LANG_invalid_unit', "Invalid unit type for Max Size setting. Expecting KB, MB, GB, TB, or PB.");
|
||||
define('OGP_LANG_invalid_save_dir', "The specified save directory does not exist and can not be created.");
|
||||
define('OGP_LANG_invalid_save_dir_not_writable', "The specified save directory exists but is not writable.");
|
||||
define('OGP_LANG_invalid_extensions', "No attachment extensions have been specified.");
|
||||
define('OGP_LANG_update_settings', "Update Settings");
|
||||
define('OGP_LANG_notifications_enabled', "Notifications");
|
||||
define('OGP_LANG_notifications_enabled_info', "Allow the user/admin to see if they have got a ticket awaiting reply.");
|
||||
define('LANG_support_tickets', "Support Tickets");
|
||||
define('LANG_ticket_subject', "Subject");
|
||||
define('LANG_ticket_status', "Status");
|
||||
define('LANG_ticket_updated', "Last Updated");
|
||||
define('LANG_ticket_options', "Options");
|
||||
define('LANG_viewing_ticket', "Viewing Ticket");
|
||||
define('LANG_ticket_not_found', "The given ticket parameters don't match an existing ticket.");
|
||||
define('LANG_ticket_cant_read', "Insufficient permission to view ticket.");
|
||||
define('LANG_cant_view_ticket', "Unable to retrieve the ticket information.");
|
||||
define('LANG_ticket_id', "Ticket ID");
|
||||
define('LANG_service_id', "Service ID");
|
||||
define('LANG_ticket_submitted', "Ticket Submitted");
|
||||
define('LANG_submitter_info', "Submitter Info");
|
||||
define('LANG_name', "Name");
|
||||
define('LANG_ip', "IP");
|
||||
define('LANG_role', "User Role");
|
||||
define('LANG_ticket_submit_response', "Submit Response");
|
||||
define('LANG_ticket_close', "Close");
|
||||
define('LANG_no_ticket_replies', "No Ticket Replies");
|
||||
define('LANG_no_tickets_submitted', "No Tickets have been submitted.");
|
||||
define('LANG_submit_ticket', "Submit Ticket");
|
||||
define('LANG_ticket_service', "Service");
|
||||
define('LANG_ticket_message', "Message");
|
||||
define('LANG_ticket_errors_occured', "The following errors occured when submitting your ticket");
|
||||
define('LANG_no_ticket_subject', "No Ticket Subject");
|
||||
define('LANG_invalid_ticket_subject_length', "Invalid Subject Length (4 to 64 characters)");
|
||||
define('LANG_invalid_home_selected', "Invalid Home Selected");
|
||||
define('LANG_no_ticket_message', "No Ticket Message Provided");
|
||||
define('LANG_invalid_ticket_message_length', "Invalid Ticket Message Length (Minimum of 4 characters)");
|
||||
define('LANG_ticket_no_service', "No service selected for this ticket.");
|
||||
define('LANG_failed_to_open', "Failed to open the ticket.");
|
||||
define('LANG_failed_to_reply', "Failed to create response to ticket.");
|
||||
define('LANG_no_ticket_reply', "No Ticket Reply Provided");
|
||||
define('LANG_invalid_ticket_reply_length', "Invalid Ticket Reply Length (Minimum of 4 characters)");
|
||||
define('LANG_ticket_closed', "Ticket Closed");
|
||||
define('LANG_ticket_open', "Ticket Open");
|
||||
define('LANG_ticket_admin_response', "Admin Response");
|
||||
define('LANG_ticket_customer_response', "Customer Response");
|
||||
define('LANG_ticket_invalid_page_num', "You have attempted to view a page number with no tickets!");
|
||||
define('LANG_ticket_is_closed', "This ticket is closed. You may reply to this ticket to reopen it.");
|
||||
define('LANG_reply', "Reply");
|
||||
define('LANG_invalid_rating', "The rating received is not valid.");
|
||||
define('LANG_successfully_rated_response', "Successfully rated response.");
|
||||
define('LANG_failed_rating_response', "Failed to rate the response.");
|
||||
define('LANG_attachment_not_all_parameters_sent', "Not all parameters have been sent to download the file.");
|
||||
define('LANG_requested_attachment_missing', "The requested attachment does not exist.");
|
||||
define('LANG_requested_attachment_missing_db', "The requested attachment does not exist in the database.");
|
||||
define('LANG_ratings_disabled', "Rating responses is not enabled.");
|
||||
define('LANG_attachments', "Attachments");
|
||||
define('LANG_add_file_attachment', "Add More");
|
||||
define('LANG_attachment_size_info', "Each selected file may be a maximum of %s");
|
||||
define('LANG_attachment_file_size_info', "A maximum of %s file(s) may be uploaded, %s each.");
|
||||
define('LANG_attachment_allowed_extensions_info', "Allowed File Extensions: %s");
|
||||
define('LANG_ticket_fix_before_submitting', "Please fix the following errors before submitting the ticket");
|
||||
define('LANG_ticket_fix_before_replying', "Please fix the following errors before replying to the ticket");
|
||||
define('LANG_ticket_problem_with_attachments', "There was a problem with the file(s) you attached");
|
||||
define('LANG_ticket_attachment_invalid_extension', "%1 does not contain a permitted extension.");
|
||||
define('LANG_ticket_attachment_invalid_size', "%1 is larger than the allowed file size. %2 maximum!");
|
||||
define('LANG_ticket_max_file_elements', "Only a maximum of %1 file inputs may exist.");
|
||||
define('LANG_ticket_attachment_multiple_files', "One or more file inputs have multiple files selected.");
|
||||
define('LANG_attachment_err_ini_size', "%s (%s) exceeds the 'upload_max_filesize' setting.");
|
||||
define('LANG_attachment_err_partial', "%s was only partially uploaded.");
|
||||
define('LANG_attachment_err_no_tmp', "No tmp directory exists to save %s");
|
||||
define('LANG_attachment_err_cant_write', "Unable to write %s to disk.");
|
||||
define('LANG_attachment_err_extension', "An extension stopped the upload of %s. Review your logs.");
|
||||
define('LANG_attachment_too_large', "%s (%s) is larger than the maximum allowed size of %s!");
|
||||
define('LANG_attachment_forbidden_type', "The file type of %s may not be uploaded.");
|
||||
define('LANG_attachment_directory_not_writable', "Unable to save the attached files. The specified save directory is not writable.");
|
||||
define('LANG_attachment_invalid_file_count', "The amount of files sent to the server was invalid. Only a maximum of %s may be uploaded");
|
||||
define('LANG_ratings_enabled', "Ratings");
|
||||
define('LANG_ratings_enabled_info', "Set if rating responses should be allowed.");
|
||||
define('LANG_attachments_enabled', "Attachments");
|
||||
define('LANG_attachments_enabled_info', "Set if the attachment system should be enabled.");
|
||||
define('LANG_attachment_max_size', "Max File Size");
|
||||
define('LANG_attachment_max_size_info', "Sets the max file size for attachments.");
|
||||
define('LANG_attachment_limit', "Attachment Limit");
|
||||
define('LANG_attachment_limit_info', "Sets how many files may be attached at once. 0 for no limit.");
|
||||
define('LANG_attachment_save_dir', "Attachment Upload Location");
|
||||
define('LANG_attachment_save_dir_info', "Sets where attachments should be uploaded. Ideally, outside of the public_html folder or direct access blocked.");
|
||||
define('LANG_attachment_extensions', "Attachment Extensions");
|
||||
define('LANG_attachment_extensions_info', "Sets the permitted extensions. Each extension should be separated by a comma.");
|
||||
define('LANG_show_php_ini', "Show Estimated INI Settings");
|
||||
define('LANG_settings_errors_occured', "The following errors occured when attempting to update the settings - not everything has been updated!");
|
||||
define('LANG_invalid_max_size', "Invalid value for Max Size setting.");
|
||||
define('LANG_invalid_unit', "Invalid unit type for Max Size setting. Expecting KB, MB, GB, TB, or PB.");
|
||||
define('LANG_invalid_save_dir', "The specified save directory does not exist and can not be created.");
|
||||
define('LANG_invalid_save_dir_not_writable', "The specified save directory exists but is not writable.");
|
||||
define('LANG_invalid_extensions', "No attachment extensions have been specified.");
|
||||
define('LANG_update_settings', "Update Settings");
|
||||
define('LANG_notifications_enabled', "Notifications");
|
||||
define('LANG_notifications_enabled_info', "Allow the user/admin to see if they have got a ticket awaiting reply.");
|
||||
|
|
|
|||
|
|
@ -23,37 +23,37 @@
|
|||
*/
|
||||
|
||||
include('litefm.php');
|
||||
define('OGP_LANG_curl_needed', "This page requires PHP curl module.");
|
||||
define('OGP_LANG_no_access', "You need admin rights to access this page.");
|
||||
define('OGP_LANG_dwl_update', "Downloading update...");
|
||||
define('OGP_LANG_dwl_complete', "Download complete");
|
||||
define('OGP_LANG_install_update', "Installing update...");
|
||||
define('OGP_LANG_update_complete', "Update complete");
|
||||
define('OGP_LANG_ignored_files', "%s ignored file(s)");
|
||||
define('OGP_LANG_not_updated_files_blacklisted', "Not updated/installed files (blacklisted):<br>%s");
|
||||
define('OGP_LANG_latest_version', "Latest version");
|
||||
define('OGP_LANG_panel_version', "Panel version");
|
||||
define('OGP_LANG_update_now', "Update Now");
|
||||
define('OGP_LANG_the_panel_is_up_to_date', "The Panel is up-to-date.");
|
||||
define('OGP_LANG_files_overwritten', "%s files overwritten");
|
||||
define('OGP_LANG_files_not_overwritten', "%s files are NOT overwritten due to blacklist");
|
||||
define('OGP_LANG_can_not_update_non_writable_files', "Can not update because the following files/folders are not writable");
|
||||
define('OGP_LANG_dwl_failed', "The download link is not available: \"%s\".<br>Try again later.");
|
||||
define('OGP_LANG_temp_folder_not_writable', "The download can not be placed, because Apache does not have write permission at the system temporary folder (%s).");
|
||||
define('OGP_LANG_base_dir_not_writable', "The Panel can not update, because Apache does not have write permission on \"%s\" folder.");
|
||||
define('OGP_LANG_new_files', "%s new files.");
|
||||
define('OGP_LANG_updated_files', "Updated files:<br>%s");
|
||||
define('OGP_LANG_select_mirror', "Select mirror");
|
||||
define('OGP_LANG_view_changes', "View changes");
|
||||
define('OGP_LANG_updating_modules', "Updating Modules");
|
||||
define('OGP_LANG_updating_finished', "Updating Finished");
|
||||
define('OGP_LANG_updated_module', "Updated module: '%s'.");
|
||||
define('OGP_LANG_blacklist_files', "Blacklist files");
|
||||
define('OGP_LANG_blacklist_files_info', "All marked files will not be updated.");
|
||||
define('OGP_LANG_save_to_blacklist', "Save to blacklist");
|
||||
define('OGP_LANG_no_new_updates', "No new updates");
|
||||
define('OGP_LANG_module_file_missing', "directory is missing the module.php file.");
|
||||
define('OGP_LANG_query_failed', "Failed to execute query");
|
||||
define('OGP_LANG_query_failed_2', "to database.");
|
||||
define('OGP_LANG_missing_zip_extension', "The php-zip extension is not loaded. Please, enable it to use the Update module.");
|
||||
define('LANG_curl_needed', "This page requires PHP curl module.");
|
||||
define('LANG_no_access', "You need admin rights to access this page.");
|
||||
define('LANG_dwl_update', "Downloading update...");
|
||||
define('LANG_dwl_complete', "Download complete");
|
||||
define('LANG_install_update', "Installing update...");
|
||||
define('LANG_update_complete', "Update complete");
|
||||
define('LANG_ignored_files', "%s ignored file(s)");
|
||||
define('LANG_not_updated_files_blacklisted', "Not updated/installed files (blacklisted):<br>%s");
|
||||
define('LANG_latest_version', "Latest version");
|
||||
define('LANG_panel_version', "Panel version");
|
||||
define('LANG_update_now', "Update Now");
|
||||
define('LANG_the_panel_is_up_to_date', "The Panel is up-to-date.");
|
||||
define('LANG_files_overwritten', "%s files overwritten");
|
||||
define('LANG_files_not_overwritten', "%s files are NOT overwritten due to blacklist");
|
||||
define('LANG_can_not_update_non_writable_files', "Can not update because the following files/folders are not writable");
|
||||
define('LANG_dwl_failed', "The download link is not available: \"%s\".<br>Try again later.");
|
||||
define('LANG_temp_folder_not_writable', "The download can not be placed, because Apache does not have write permission at the system temporary folder (%s).");
|
||||
define('LANG_base_dir_not_writable', "The Panel can not update, because Apache does not have write permission on \"%s\" folder.");
|
||||
define('LANG_new_files', "%s new files.");
|
||||
define('LANG_updated_files', "Updated files:<br>%s");
|
||||
define('LANG_select_mirror', "Select mirror");
|
||||
define('LANG_view_changes', "View changes");
|
||||
define('LANG_updating_modules', "Updating Modules");
|
||||
define('LANG_updating_finished', "Updating Finished");
|
||||
define('LANG_updated_module', "Updated module: '%s'.");
|
||||
define('LANG_blacklist_files', "Blacklist files");
|
||||
define('LANG_blacklist_files_info', "All marked files will not be updated.");
|
||||
define('LANG_save_to_blacklist', "Save to blacklist");
|
||||
define('LANG_no_new_updates', "No new updates");
|
||||
define('LANG_module_file_missing', "directory is missing the module.php file.");
|
||||
define('LANG_query_failed', "Failed to execute query");
|
||||
define('LANG_query_failed_2', "to database.");
|
||||
define('LANG_missing_zip_extension', "The php-zip extension is not loaded. Please, enable it to use the Update module.");
|
||||
?>
|
||||
|
|
@ -22,92 +22,92 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_your_profile', "Your profile");
|
||||
define('OGP_LANG_new_password', "New password");
|
||||
define('OGP_LANG_retype_new_password', "Retype new password");
|
||||
define('OGP_LANG_login_name', "Login name");
|
||||
define('OGP_LANG_language', "Language");
|
||||
define('OGP_LANG_first_name', "First name");
|
||||
define('OGP_LANG_page_limit', "Items per Page");
|
||||
define('OGP_LANG_page_limit_info', "Number of items shown per page. The number of items cannot be less than 10.");
|
||||
define('OGP_LANG_last_name', "Last name");
|
||||
define('OGP_LANG_phone_number', "Phone number");
|
||||
define('OGP_LANG_email_address', "Email address");
|
||||
define('OGP_LANG_city', "City");
|
||||
define('OGP_LANG_province', "Province");
|
||||
define('OGP_LANG_country', "Country");
|
||||
define('OGP_LANG_comment', "Comments");
|
||||
define('OGP_LANG_expires', "Expires");
|
||||
define('OGP_LANG_save_profile', "Save profile");
|
||||
define('OGP_LANG_new_password_info', "When password field is empty the password will not be updated.");
|
||||
define('OGP_LANG_theme', "Theme");
|
||||
define('OGP_LANG_theme_info', "If theme is empty the global value is used.");
|
||||
define('OGP_LANG_expires_info', "Date when the user account expires. The account is not deleted, but user can not login anymore.");
|
||||
define('OGP_LANG_password_mismatch', "Passwords did not match.");
|
||||
define('OGP_LANG_current_password', "Current password");
|
||||
define('OGP_LANG_current_password_info', "Your current password.");
|
||||
define('OGP_LANG_current_password_mismatch', "Your current password did not match to the one in database.");
|
||||
define('OGP_LANG_add_new_user', "Add a new user");
|
||||
define('OGP_LANG_edit_user_groups', "Edit User Groups");
|
||||
define('OGP_LANG_users', "Users");
|
||||
define('OGP_LANG_user_role', "User role");
|
||||
define('OGP_LANG_full_name', "Full Name");
|
||||
define('OGP_LANG_edit_games', "Edit Games");
|
||||
define('OGP_LANG_edit_profile', "Edit Profile");
|
||||
define('OGP_LANG_confirm_password', "Confirm password");
|
||||
define('OGP_LANG_you_need_to_enter_both_passwords', "You need to enter both passwords.");
|
||||
define('OGP_LANG_passwords_did_not_match', "Passwords did not match.");
|
||||
define('OGP_LANG_could_not_add_user_because_user_already_exists', "Could not add user, because user <em>%s</em> already exists.");
|
||||
define('OGP_LANG_successfully_added_user', "Successfully added user <em>%s</em>.");
|
||||
define('OGP_LANG_add_a_new_user', "Add a new user");
|
||||
define('OGP_LANG_admin', "Admin");
|
||||
define('OGP_LANG_user', "User");
|
||||
define('OGP_LANG_user_with_id_does_not_exist', "User with ID %s does not exist.");
|
||||
define('OGP_LANG_are_you_sure_you_want_to_delete_user', "Are you sure you want to delete user <em>%s</em>?");
|
||||
define('OGP_LANG_unable_to_delete_user', "Unable to delete user %s.");
|
||||
define('OGP_LANG_successfully_deleted_user', "Successfully deleted user <b>%s</b>.");
|
||||
define('OGP_LANG_failed_to_update_user_profile_error', "Failed to update user profile. Error: %s");
|
||||
define('OGP_LANG_profile_of_user_modified_successfully', "Profile of user <b>%s</b> was modified successfully.");
|
||||
define('OGP_LANG_no_subusers', "No subusers are available to be assigned to a group. Please create subuser accounts.");
|
||||
define('OGP_LANG_ownedby', "Parent Owner");
|
||||
define('OGP_LANG_andSubUsers', " And all of his subusers?");
|
||||
define('OGP_LANG_subusers', "Subusers");
|
||||
define('OGP_LANG_show_subusers', "Show Subusers");
|
||||
define('OGP_LANG_hide_subusers', "Hide Subusers");
|
||||
define('OGP_LANG_info_group', "From this page it is possible to determine user groups. You can assign servers to group so that they are availble for all of the group users.");
|
||||
define('OGP_LANG_add_new_group', "Add new group");
|
||||
define('OGP_LANG_group_name', "Group Name");
|
||||
define('OGP_LANG_add_group', "Add Group");
|
||||
define('OGP_LANG_no_groups_available', "No groups available.");
|
||||
define('OGP_LANG_delete_group', "Delete Group");
|
||||
define('OGP_LANG_add_user_to_group', "Add user to group");
|
||||
define('OGP_LANG_add_user', "Add User");
|
||||
define('OGP_LANG_remove_from_group', "Remove from group");
|
||||
define('OGP_LANG_add_server_to_group', "Add server to group");
|
||||
define('OGP_LANG_add_server', "Add Server");
|
||||
define('OGP_LANG_servers_in_group', "Servers in group");
|
||||
define('OGP_LANG_no_servers_in_group', "No servers in group %s.");
|
||||
define('OGP_LANG_available_groups', "Available Groups");
|
||||
define('OGP_LANG_assign_homes', "Assign Homes");
|
||||
define('OGP_LANG_successfully_added_group', "Successfully added group %s.");
|
||||
define('OGP_LANG_group_name_empty', "Group name can not be empty.");
|
||||
define('OGP_LANG_failed_to_add_group', "Failed to add group %s.");
|
||||
define('OGP_LANG_could_not_add_user_to_group', "Could not add user %s to group %s, because already belongs.");
|
||||
define('OGP_LANG_successfully_added_to_group', ">Successfully added %s to group <em>%s</em>.");
|
||||
define('OGP_LANG_could_not_add_server_to_group', "Could not add server to group %s, because already belongs.");
|
||||
define('OGP_LANG_successfully_added_server_to_group', "Successfully added server to group <em>%s</em>.");
|
||||
define('OGP_LANG_successfully_removed_from_group', "Successfully removed %s from group <em>%s</em>.");
|
||||
define('OGP_LANG_could_not_delete_server_from_group', "Could not delete server %s from group <em>%s</em>.");
|
||||
define('OGP_LANG_successfully_removed_server_from_group', "Successfully removed server %s from group <em>%s</em>.");
|
||||
define('OGP_LANG_group_with_id_does_not_exist', "%s group does not exist.");
|
||||
define('OGP_LANG_are_you_sure_you_want_to_delete_group', "Are you sure you want to delete group <em>%s</em>?");
|
||||
define('OGP_LANG_unable_to_delete_group', "Unable to delete %s group.");
|
||||
define('OGP_LANG_successfully_deleted_group', "Successfully deleted group <b>%s</b>.");
|
||||
define('OGP_LANG_editing_profile', "Editing Profile: %s");
|
||||
define('OGP_LANG_valid_user', "Please specify a valid user.");
|
||||
define('OGP_LANG_enter_valid_username', "Please enter a valid username.");
|
||||
define('OGP_LANG_unexpected_role', "Unexpected user role received.");
|
||||
define('OGP_LANG_search', "Search");
|
||||
define('OGP_LANG_api_token', "API token");
|
||||
define('OGP_LANG_user_receives_emails', "Receive emails");
|
||||
define('LANG_your_profile', "Your profile");
|
||||
define('LANG_new_password', "New password");
|
||||
define('LANG_retype_new_password', "Retype new password");
|
||||
define('LANG_login_name', "Login name");
|
||||
define('LANG_language', "Language");
|
||||
define('LANG_first_name', "First name");
|
||||
define('LANG_page_limit', "Items per Page");
|
||||
define('LANG_page_limit_info', "Number of items shown per page. The number of items cannot be less than 10.");
|
||||
define('LANG_last_name', "Last name");
|
||||
define('LANG_phone_number', "Phone number");
|
||||
define('LANG_email_address', "Email address");
|
||||
define('LANG_city', "City");
|
||||
define('LANG_province', "Province");
|
||||
define('LANG_country', "Country");
|
||||
define('LANG_comment', "Comments");
|
||||
define('LANG_expires', "Expires");
|
||||
define('LANG_save_profile', "Save profile");
|
||||
define('LANG_new_password_info', "When password field is empty the password will not be updated.");
|
||||
define('LANG_theme', "Theme");
|
||||
define('LANG_theme_info', "If theme is empty the global value is used.");
|
||||
define('LANG_expires_info', "Date when the user account expires. The account is not deleted, but user can not login anymore.");
|
||||
define('LANG_password_mismatch', "Passwords did not match.");
|
||||
define('LANG_current_password', "Current password");
|
||||
define('LANG_current_password_info', "Your current password.");
|
||||
define('LANG_current_password_mismatch', "Your current password did not match to the one in database.");
|
||||
define('LANG_add_new_user', "Add a new user");
|
||||
define('LANG_edit_user_groups', "Edit User Groups");
|
||||
define('LANG_users', "Users");
|
||||
define('LANG_user_role', "User role");
|
||||
define('LANG_full_name', "Full Name");
|
||||
define('LANG_edit_games', "Edit Games");
|
||||
define('LANG_edit_profile', "Edit Profile");
|
||||
define('LANG_confirm_password', "Confirm password");
|
||||
define('LANG_you_need_to_enter_both_passwords', "You need to enter both passwords.");
|
||||
define('LANG_passwords_did_not_match', "Passwords did not match.");
|
||||
define('LANG_could_not_add_user_because_user_already_exists', "Could not add user, because user <em>%s</em> already exists.");
|
||||
define('LANG_successfully_added_user', "Successfully added user <em>%s</em>.");
|
||||
define('LANG_add_a_new_user', "Add a new user");
|
||||
define('LANG_admin', "Admin");
|
||||
define('LANG_user', "User");
|
||||
define('LANG_user_with_id_does_not_exist', "User with ID %s does not exist.");
|
||||
define('LANG_are_you_sure_you_want_to_delete_user', "Are you sure you want to delete user <em>%s</em>?");
|
||||
define('LANG_unable_to_delete_user', "Unable to delete user %s.");
|
||||
define('LANG_successfully_deleted_user', "Successfully deleted user <b>%s</b>.");
|
||||
define('LANG_failed_to_update_user_profile_error', "Failed to update user profile. Error: %s");
|
||||
define('LANG_profile_of_user_modified_successfully', "Profile of user <b>%s</b> was modified successfully.");
|
||||
define('LANG_no_subusers', "No subusers are available to be assigned to a group. Please create subuser accounts.");
|
||||
define('LANG_ownedby', "Parent Owner");
|
||||
define('LANG_andSubUsers', " And all of his subusers?");
|
||||
define('LANG_subusers', "Subusers");
|
||||
define('LANG_show_subusers', "Show Subusers");
|
||||
define('LANG_hide_subusers', "Hide Subusers");
|
||||
define('LANG_info_group', "From this page it is possible to determine user groups. You can assign servers to group so that they are availble for all of the group users.");
|
||||
define('LANG_add_new_group', "Add new group");
|
||||
define('LANG_group_name', "Group Name");
|
||||
define('LANG_add_group', "Add Group");
|
||||
define('LANG_no_groups_available', "No groups available.");
|
||||
define('LANG_delete_group', "Delete Group");
|
||||
define('LANG_add_user_to_group', "Add user to group");
|
||||
define('LANG_add_user', "Add User");
|
||||
define('LANG_remove_from_group', "Remove from group");
|
||||
define('LANG_add_server_to_group', "Add server to group");
|
||||
define('LANG_add_server', "Add Server");
|
||||
define('LANG_servers_in_group', "Servers in group");
|
||||
define('LANG_no_servers_in_group', "No servers in group %s.");
|
||||
define('LANG_available_groups', "Available Groups");
|
||||
define('LANG_assign_homes', "Assign Homes");
|
||||
define('LANG_successfully_added_group', "Successfully added group %s.");
|
||||
define('LANG_group_name_empty', "Group name can not be empty.");
|
||||
define('LANG_failed_to_add_group', "Failed to add group %s.");
|
||||
define('LANG_could_not_add_user_to_group', "Could not add user %s to group %s, because already belongs.");
|
||||
define('LANG_successfully_added_to_group', ">Successfully added %s to group <em>%s</em>.");
|
||||
define('LANG_could_not_add_server_to_group', "Could not add server to group %s, because already belongs.");
|
||||
define('LANG_successfully_added_server_to_group', "Successfully added server to group <em>%s</em>.");
|
||||
define('LANG_successfully_removed_from_group', "Successfully removed %s from group <em>%s</em>.");
|
||||
define('LANG_could_not_delete_server_from_group', "Could not delete server %s from group <em>%s</em>.");
|
||||
define('LANG_successfully_removed_server_from_group', "Successfully removed server %s from group <em>%s</em>.");
|
||||
define('LANG_group_with_id_does_not_exist', "%s group does not exist.");
|
||||
define('LANG_are_you_sure_you_want_to_delete_group', "Are you sure you want to delete group <em>%s</em>?");
|
||||
define('LANG_unable_to_delete_group', "Unable to delete %s group.");
|
||||
define('LANG_successfully_deleted_group', "Successfully deleted group <b>%s</b>.");
|
||||
define('LANG_editing_profile', "Editing Profile: %s");
|
||||
define('LANG_valid_user', "Please specify a valid user.");
|
||||
define('LANG_enter_valid_username', "Please enter a valid username.");
|
||||
define('LANG_unexpected_role', "Unexpected user role received.");
|
||||
define('LANG_search', "Search");
|
||||
define('LANG_api_token', "API token");
|
||||
define('LANG_user_receives_emails', "Receive emails");
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -22,202 +22,202 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_add_mods_note', "You need to add mods after adding server to user. This can be done by editing the server.");
|
||||
define('OGP_LANG_game_servers', "Game Servers");
|
||||
define('OGP_LANG_game_path', "Game Path");
|
||||
define('OGP_LANG_game_path_info', "An absolute server path. Example: /home/ogpbot/OGP_User_Files/My_Server");
|
||||
define('OGP_LANG_game_server_name_info', "Server name helps users to identify their servers.");
|
||||
define('OGP_LANG_control_password', "Control password");
|
||||
define('OGP_LANG_control_password_info', "This password is used for server control, such as RCON password. If the password is empty then other means are used.");
|
||||
define('OGP_LANG_add_game_home', "Add game server");
|
||||
define('OGP_LANG_game_path_empty', "Game path can not be empty.");
|
||||
define('OGP_LANG_game_home_added', "Game server added successfully. Redirecting to home edit page.");
|
||||
define('OGP_LANG_failed_to_add_home_to_db', "Failed to add home to database. Error: %s");
|
||||
define('OGP_LANG_caution_agent_offline_can_not_get_os_and_arch_showing_servers_for_all_platforms', "<b>Caution!</b> The Agent is offline, can not get OS type and architecture,<br> Showing servers for all platforms:");
|
||||
define('OGP_LANG_select_remote_server', "Select Remote Server");
|
||||
define('OGP_LANG_no_remote_servers_configured', "No remote servers configured to the Open Game Panel.<br>You need to add remote servers before you can add servers for the users.");
|
||||
define('OGP_LANG_no_game_configurations_found', "No game configuration found. You need to add game configurations from the");
|
||||
define('OGP_LANG_game_configurations', ">game configuration page");
|
||||
define('OGP_LANG_add_remote_server', "Add a server.");
|
||||
define('OGP_LANG_wine_games', "Wine Games");
|
||||
define('OGP_LANG_home_path', "Home path");
|
||||
define('OGP_LANG_change_home_info', "The location of the installed game server. Example: /home/ogp/my_server/");
|
||||
define('OGP_LANG_game_server_name', "Game server name");
|
||||
define('OGP_LANG_change_name_info', "The name of the server to help users to identify it.");
|
||||
define('OGP_LANG_game_control_password', "Game control password");
|
||||
define('OGP_LANG_change_control_password_info', "Control password is for example rcon password.");
|
||||
define('OGP_LANG_available_mods', "Available mods");
|
||||
define('OGP_LANG_note_no_mods', "No mod(s) available for this game.");
|
||||
define('OGP_LANG_change_home', "Change Home");
|
||||
define('OGP_LANG_change_control_password', "Change Control Password");
|
||||
define('OGP_LANG_change_name', "Change Name");
|
||||
define('OGP_LANG_add_mod', "Add Mod");
|
||||
define('OGP_LANG_set_ip', "Set IP");
|
||||
define('OGP_LANG_ips_and_ports', "IPs and Ports");
|
||||
define('OGP_LANG_mod_name', "Mod Name");
|
||||
define('OGP_LANG_max_players', "Max Players");
|
||||
define('OGP_LANG_extra_cmd_line_args', "Extra Command Line Args");
|
||||
define('OGP_LANG_extra_cmd_line_info', "The Extra command line args provides a way to enter extra arguments to the game command line when it is started.");
|
||||
define('OGP_LANG_cpu_affinity', "CPU Affinity");
|
||||
define('OGP_LANG_nice_level', "Nice Level");
|
||||
define('OGP_LANG_set_options', "Set Options");
|
||||
define('OGP_LANG_remove_mod', "Remove Mod");
|
||||
define('OGP_LANG_mods', "Mods");
|
||||
define('OGP_LANG_ip', "IP");
|
||||
define('OGP_LANG_port', "Port");
|
||||
define('OGP_LANG_no_ip_ports_assigned', "At least one IP:Port pair must be assigned to the home.");
|
||||
define('OGP_LANG_successfully_assigned_ip_port', "Successfully assigned IP:Port pair to home.");
|
||||
define('OGP_LANG_port_range_error', "Port needs to be between range 0 and 65535.");
|
||||
define('OGP_LANG_failed_to_assing_mod_to_home', "Failed to assing mod with id %d to home.");
|
||||
define('OGP_LANG_successfully_assigned_mod_to_home', "Successfully assigned mod with id %d to home.");
|
||||
define('OGP_LANG_successfully_modified_mod', "Successfully modified mod information.");
|
||||
define('OGP_LANG_back_to_game_monitor', "Back to Game Monitor");
|
||||
define('OGP_LANG_back_to_game_servers', "Back to Game Servers");
|
||||
define('OGP_LANG_user_id_main', "Main owner");
|
||||
define('OGP_LANG_change_user_id_main', "Change main owner");
|
||||
define('OGP_LANG_change_user_id_main_info', "The main server home owner.");
|
||||
define('OGP_LANG_server_ftp_password', "FTP password");
|
||||
define('OGP_LANG_change_ftp_password', "Change FTP password");
|
||||
define('OGP_LANG_change_ftp_password_info', "This is the password to login to FTP server for this home.");
|
||||
define('OGP_LANG_Delete_old_user_assigned_homes', "Unassign home to current users.");
|
||||
define('OGP_LANG_editing_home_called', "Editing home called");
|
||||
define('OGP_LANG_control_password_updated_successfully', "Control password updated successfully.");
|
||||
define('OGP_LANG_control_password_update_failed', "Control password update failed");
|
||||
define('OGP_LANG_successfully_changed_game_server', "Successfully changed game server.");
|
||||
define('OGP_LANG_error_ocurred_on_remote_server', "Error ocurred on remote server,");
|
||||
define('OGP_LANG_ftp_password_can_not_be_changed', "FTP password can not be changed.");
|
||||
define('OGP_LANG_ftp_can_not_be_switched_on', "FTP can not be switched ON.");
|
||||
define('OGP_LANG_ftp_can_not_be_switched_off', "FTP can not be switched OFF.");
|
||||
define('OGP_LANG_invalid_home_id_entered', "Invalid home id entered.");
|
||||
define('OGP_LANG_ip_port_already_in_use', "The %s:%s is already in use. Choose another one.");
|
||||
define('OGP_LANG_successfully_assigned_ip_port_to_server_id', "Successfully assigned %s:%s to home with ID %s.");
|
||||
define('OGP_LANG_no_ip_addresses_configured', "Your game server does not have any IP-addresses configured to it. You can configure them from ");
|
||||
define('OGP_LANG_server_page', "server page");
|
||||
define('OGP_LANG_successfully_removed_mod', "Successfully removed game mod.");
|
||||
define('OGP_LANG_warning_agent_offline_defaulting_CPU_count_to_1', "Warning - Agent offline, defaulting CPU count to 1.");
|
||||
define('OGP_LANG_mod_install_cmds', "Mod Install CMDs");
|
||||
define('OGP_LANG_cmds_for', "Commands for");
|
||||
define('OGP_LANG_preinstall_cmds', "Preinstall Commands");
|
||||
define('OGP_LANG_postinstall_cmds', "Postinstall Commands");
|
||||
define('OGP_LANG_edit_preinstall_cmds', "Edit Preinstall Commands");
|
||||
define('OGP_LANG_edit_postinstall_cmds', "Edit Postinstall Commands");
|
||||
define('OGP_LANG_save_as_default_for_this_mod', "Save as default for this mod");
|
||||
define('OGP_LANG_empty', "empty");
|
||||
define('OGP_LANG_master_server_for_clon_update', "Master server for local update");
|
||||
define('OGP_LANG_set_as_master_server', "Set as master server");
|
||||
define('OGP_LANG_set_as_master_server_for_local_clon_update', "Set as master server for local update.");
|
||||
define('OGP_LANG_only_available_for', "Only available for '%s' hosted on the remote server named '%s'.");
|
||||
define('OGP_LANG_ftp_on', "Enable FTP");
|
||||
define('OGP_LANG_ftp_off', "Disable FTP");
|
||||
define('OGP_LANG_change_ftp_account_status', "Change FTP account status");
|
||||
define('OGP_LANG_change_ftp_account_status_info', "Once a FTP account is enabled or disabled, it is added or removed from the FTP's database.");
|
||||
define('OGP_LANG_server_ftp_login', "Server FTP Login");
|
||||
define('OGP_LANG_change_ftp_login_info', "Change the FTP Login with a customized one.");
|
||||
define('OGP_LANG_change_ftp_login', "Change FTP Login");
|
||||
define('OGP_LANG_ftp_login_can_not_be_changed', "Can not change FTP Login.");
|
||||
define('OGP_LANG_server_is_running_change_addresses_not_available', "The server is actually running, the IP cannot be changed.");
|
||||
define('OGP_LANG_change_game_type', "Change Game Type");
|
||||
define('OGP_LANG_change_game_type_info', "By changing the game type the current the mods configuration will be deleted.");
|
||||
define('OGP_LANG_force_mod_on_this_address', "Force mod on this address");
|
||||
define('OGP_LANG_successfully_assigned_mod_to_address', "Successfully assigned mod to address");
|
||||
define('OGP_LANG_switch_mods', "Switch mods");
|
||||
define('OGP_LANG_switch_mod_for_address', "Switch mod for address %s");
|
||||
define('OGP_LANG_invalid_path', "Invalid Path");
|
||||
define('OGP_LANG_add_new_game_home', "Add new game server");
|
||||
define('OGP_LANG_no_game_homes_found', "No game servers found");
|
||||
define('OGP_LANG_available_game_homes', "Available game servers");
|
||||
define('OGP_LANG_home_id', "Home ID");
|
||||
define('OGP_LANG_game_server', "Game Server");
|
||||
define('OGP_LANG_game_type', "Game Type");
|
||||
define('OGP_LANG_game_home', "Home Path");
|
||||
define('OGP_LANG_game_home_name', "Game Server Name");
|
||||
define('OGP_LANG_clone', "Clone");
|
||||
define('OGP_LANG_unassign', "Unassign");
|
||||
define('OGP_LANG_access_rights', "Access Rights");
|
||||
define('OGP_LANG_assigned_homes', "Currently Assigned Homes");
|
||||
define('OGP_LANG_assign', "Assign");
|
||||
define('OGP_LANG_allow_updates', "Allow Game Updates");
|
||||
define('OGP_LANG_allow_updates_info', "Allows user to update the game installation if that is possible.");
|
||||
define('OGP_LANG_allow_file_management', "Allow File Management");
|
||||
define('OGP_LANG_allow_file_management_info', "Allows user to access the game server with file management modules.");
|
||||
define('OGP_LANG_allow_parameter_usage', "Allow Parameter Usage");
|
||||
define('OGP_LANG_allow_parameter_usage_info', "Allows user to change available command line parameters.");
|
||||
define('OGP_LANG_allow_extra_params', "Allow Extra parametrs");
|
||||
define('OGP_LANG_allow_extra_params_info', "Allows user to modify extra command line parameters.");
|
||||
define('OGP_LANG_allow_ftp', "Allow FTP");
|
||||
define('OGP_LANG_allow_ftp_info', "Show the FTP access information to the user.");
|
||||
define('OGP_LANG_allow_custom_fields', "Allow Custom Fields");
|
||||
define('OGP_LANG_allow_custom_fields_info', "Allows user to access custom fields of the game server if any.");
|
||||
define('OGP_LANG_select_home', "Select Home to Assign");
|
||||
define('OGP_LANG_assign_new_home_to_user', "Assign New Home to user %s");
|
||||
define('OGP_LANG_assign_new_home_to_group', "Assign New Home to group %s");
|
||||
define('OGP_LANG_assigned_home_to_user', "Successfully assigned home (ID: %d) to user %s.");
|
||||
define('OGP_LANG_failed_to_assign_home_to_user', "Failed to assign home (ID: %d) to user %s.");
|
||||
define('OGP_LANG_assigned_home_to_group', "Successfully assigned home (ID: %d) to group %s.");
|
||||
define('OGP_LANG_unassigned_home_from_user', "Successfully unassigned home (ID: %d) from user %s.");
|
||||
define('OGP_LANG_unassigned_home_from_group', "Successfully unassigned home (ID: %d) from group %s.");
|
||||
define('OGP_LANG_no_homes_assigned_to_user', "No homes assigned for user %s.");
|
||||
define('OGP_LANG_no_homes_assigned_to_group', "No homes assigned for group %s.");
|
||||
define('OGP_LANG_no_more_homes_available_that_can_be_assigned_for_this_user', "No more homes available that can be assigned for this user");
|
||||
define('OGP_LANG_no_more_homes_available_that_can_be_assigned_for_this_group', "No more homes available that can be assigned for this group");
|
||||
define('OGP_LANG_you_can_add_a_new_game_server_from', "You can add a new game server from %s.");
|
||||
define('OGP_LANG_no_remote_servers_available_please_add_at_least_one', "There are no remote servers available, please add at least one!");
|
||||
define('OGP_LANG_cloning_of_home_failed', "Cloning of home with id '%s' failed.");
|
||||
define('OGP_LANG_no_mods_to_clone', "No enabled mod(s) for this game yet. None will be cloned.");
|
||||
define('OGP_LANG_failed_to_add_mod', "Failed to add mod with id '%s' to home with id '%s'.");
|
||||
define('OGP_LANG_failed_to_update_mod_settings', "Failed to update mod settings for home with id '%s'.");
|
||||
define('OGP_LANG_successfully_cloned_mods', "Successfully cloned mods for home with id '%s'.");
|
||||
define('OGP_LANG_successfully_copied_home_database', "Successfully copied home database.");
|
||||
define('OGP_LANG_copying_home_remotely', "Copying the home on remote server from '%s' to '%s'.");
|
||||
define('OGP_LANG_cloning_home', "Cloning home called '%s'");
|
||||
define('OGP_LANG_current_home_path', "Current home path");
|
||||
define('OGP_LANG_current_home_path_info', "The current location of the copied home on remote server.");
|
||||
define('OGP_LANG_clone_home', "Clone Home");
|
||||
define('OGP_LANG_new_home_name', "New Home Name");
|
||||
define('OGP_LANG_new_home_path', "New Home Path");
|
||||
define('OGP_LANG_agent_ip', "Agent IP");
|
||||
define('OGP_LANG_game_server_copy_is_running', "Game server copy is running...");
|
||||
define('OGP_LANG_game_server_copy_was_successful', "Game server copy was successful");
|
||||
define('OGP_LANG_game_server_copy_failed_with_return_code', "Game server copy failed with return code %s");
|
||||
define('OGP_LANG_clone_mods', "Clone Mods");
|
||||
define('OGP_LANG_game_server_owner', "Game server owner");
|
||||
define('OGP_LANG_the_name_of_the_server_to_help_users_to_identify_it', "The name of the server to help users to identify it.");
|
||||
define('OGP_LANG_ips_and_ports_used_in_this_home', "IPs and Ports used in this home");
|
||||
define('OGP_LANG_note_ips_and_ports_are_not_cloned', "Note - IPs and Ports are not cloned");
|
||||
define('OGP_LANG_mods_and_settings_for_this_game_server', "Mods and settings for this game server");
|
||||
define('OGP_LANG_sure_to_delete_serverid_from_remoteip_and_directory', "Are you sure you want to delete game server (ID: %s) from server %s and is in directory %s");
|
||||
define('OGP_LANG_yes_and_delete_the_files', "Yes and Delete the files");
|
||||
define('OGP_LANG_failed_to_remove_gamehome_from_database', "Failed to remove gamehome from database.");
|
||||
define('OGP_LANG_successfully_deleted_game_server_with_id', "Successfully deleted game server with ID %s.");
|
||||
define('OGP_LANG_failed_to_remove_ftp_account_from_remote_server', "Failed to remove FTP account from remote server.");
|
||||
define('OGP_LANG_remove_it_anyway', "Would you like to remove it anyway?");
|
||||
define('OGP_LANG_sucessfully_deleted', "Sucessfully deleted %s");
|
||||
define('OGP_LANG_the_agent_had_a_problem_deleting', "The Agent had a problem while deleting %s. Please, check the Agent's log.");
|
||||
define('OGP_LANG_connection_timeout_or_problems_reaching_the_agent', "Connection timeout or problems with reaching the Agent");
|
||||
define('OGP_LANG_does_not_exist_yet', "Does not exist yet.");
|
||||
define('OGP_LANG_update_settings', "Update settings");
|
||||
define('OGP_LANG_settings_updated', "Settings updated.");
|
||||
define('OGP_LANG_selected_path_already_in_use', "The selected path is already in use.");
|
||||
define('OGP_LANG_browse', "Browse");
|
||||
define('OGP_LANG_cancel', "Cancel");
|
||||
define('OGP_LANG_set_this_path', "Set this path");
|
||||
define('OGP_LANG_select_home_path', "Select home path");
|
||||
define('OGP_LANG_folder', "Folder");
|
||||
define('OGP_LANG_owner', "Owner");
|
||||
define('OGP_LANG_group', "Group");
|
||||
define('OGP_LANG_level_up', "Level up");
|
||||
define('OGP_LANG_level_up_info', "Back to the previous folder.");
|
||||
define('OGP_LANG_add_folder', "Add folder");
|
||||
define('OGP_LANG_add_folder_info', "Write the name for the new folder, then click on the icon.");
|
||||
define('OGP_LANG_valid_user', "Please specify a valid user.");
|
||||
define('OGP_LANG_valid_group', "Please specify a valid group.");
|
||||
define('OGP_LANG_set_affinity', "Set Server Affinity");
|
||||
define('OGP_LANG_cpu_affinity_info', "Select the CPU core(s) you want to assign to the game server.");
|
||||
define('OGP_LANG_expiration_date_changed', "Expiration date for selected home has been changed.");
|
||||
define('OGP_LANG_expiration_date_could_not_be_changed', "Expiration date for selected home could not be changed.");
|
||||
define('OGP_LANG_search', "Search");
|
||||
define('OGP_LANG_ftp_account_username_too_long', "FTP username is too long. Try a shorter username no longer than 20 characters.");
|
||||
define('OGP_LANG_ftp_account_password_too_long', "FTP password is too long. Try a shorter password no longer than 20 characters.");
|
||||
define('OGP_LANG_other_servers_exist_with_path_please_change', "Other homes exist with the same path. It is recommended (but not required) that you change this path to something unique. You may have problems if you do NOT.");
|
||||
define('OGP_LANG_change_access_rights_for_selected_servers', "Change access rights for selected servers");
|
||||
define('LANG_add_mods_note', "You need to add mods after adding server to user. This can be done by editing the server.");
|
||||
define('LANG_game_servers', "Game Servers");
|
||||
define('LANG_game_path', "Game Path");
|
||||
define('LANG_game_path_info', "An absolute server path. Example: /home/ogpbot/OGP_User_Files/My_Server");
|
||||
define('LANG_game_server_name_info', "Server name helps users to identify their servers.");
|
||||
define('LANG_control_password', "Control password");
|
||||
define('LANG_control_password_info', "This password is used for server control, such as RCON password. If the password is empty then other means are used.");
|
||||
define('LANG_add_game_home', "Add game server");
|
||||
define('LANG_game_path_empty', "Game path can not be empty.");
|
||||
define('LANG_game_home_added', "Game server added successfully. Redirecting to home edit page.");
|
||||
define('LANG_failed_to_add_home_to_db', "Failed to add home to database. Error: %s");
|
||||
define('LANG_caution_agent_offline_can_not_get_os_and_arch_showing_servers_for_all_platforms', "<b>Caution!</b> The Agent is offline, can not get OS type and architecture,<br> Showing servers for all platforms:");
|
||||
define('LANG_select_remote_server', "Select Remote Server");
|
||||
define('LANG_no_remote_servers_configured', "No remote servers configured to the Open Game Panel.<br>You need to add remote servers before you can add servers for the users.");
|
||||
define('LANG_no_game_configurations_found', "No game configuration found. You need to add game configurations from the");
|
||||
define('LANG_game_configurations', ">game configuration page");
|
||||
define('LANG_add_remote_server', "Add a server.");
|
||||
define('LANG_wine_games', "Wine Games");
|
||||
define('LANG_home_path', "Home path");
|
||||
define('LANG_change_home_info', "The location of the installed game server. Example: /home/ogp/my_server/");
|
||||
define('LANG_game_server_name', "Game server name");
|
||||
define('LANG_change_name_info', "The name of the server to help users to identify it.");
|
||||
define('LANG_game_control_password', "Game control password");
|
||||
define('LANG_change_control_password_info', "Control password is for example rcon password.");
|
||||
define('LANG_available_mods', "Available mods");
|
||||
define('LANG_note_no_mods', "No mod(s) available for this game.");
|
||||
define('LANG_change_home', "Change Home");
|
||||
define('LANG_change_control_password', "Change Control Password");
|
||||
define('LANG_change_name', "Change Name");
|
||||
define('LANG_add_mod', "Add Mod");
|
||||
define('LANG_set_ip', "Set IP");
|
||||
define('LANG_ips_and_ports', "IPs and Ports");
|
||||
define('LANG_mod_name', "Mod Name");
|
||||
define('LANG_max_players', "Max Players");
|
||||
define('LANG_extra_cmd_line_args', "Extra Command Line Args");
|
||||
define('LANG_extra_cmd_line_info', "The Extra command line args provides a way to enter extra arguments to the game command line when it is started.");
|
||||
define('LANG_cpu_affinity', "CPU Affinity");
|
||||
define('LANG_nice_level', "Nice Level");
|
||||
define('LANG_set_options', "Set Options");
|
||||
define('LANG_remove_mod', "Remove Mod");
|
||||
define('LANG_mods', "Mods");
|
||||
define('LANG_ip', "IP");
|
||||
define('LANG_port', "Port");
|
||||
define('LANG_no_ip_ports_assigned', "At least one IP:Port pair must be assigned to the home.");
|
||||
define('LANG_successfully_assigned_ip_port', "Successfully assigned IP:Port pair to home.");
|
||||
define('LANG_port_range_error', "Port needs to be between range 0 and 65535.");
|
||||
define('LANG_failed_to_assing_mod_to_home', "Failed to assing mod with id %d to home.");
|
||||
define('LANG_successfully_assigned_mod_to_home', "Successfully assigned mod with id %d to home.");
|
||||
define('LANG_successfully_modified_mod', "Successfully modified mod information.");
|
||||
define('LANG_back_to_game_monitor', "Back to Game Monitor");
|
||||
define('LANG_back_to_game_servers', "Back to Game Servers");
|
||||
define('LANG_user_id_main', "Main owner");
|
||||
define('LANG_change_user_id_main', "Change main owner");
|
||||
define('LANG_change_user_id_main_info', "The main server home owner.");
|
||||
define('LANG_server_ftp_password', "FTP password");
|
||||
define('LANG_change_ftp_password', "Change FTP password");
|
||||
define('LANG_change_ftp_password_info', "This is the password to login to FTP server for this home.");
|
||||
define('LANG_Delete_old_user_assigned_homes', "Unassign home to current users.");
|
||||
define('LANG_editing_home_called', "Editing home called");
|
||||
define('LANG_control_password_updated_successfully', "Control password updated successfully.");
|
||||
define('LANG_control_password_update_failed', "Control password update failed");
|
||||
define('LANG_successfully_changed_game_server', "Successfully changed game server.");
|
||||
define('LANG_error_ocurred_on_remote_server', "Error ocurred on remote server,");
|
||||
define('LANG_ftp_password_can_not_be_changed', "FTP password can not be changed.");
|
||||
define('LANG_ftp_can_not_be_switched_on', "FTP can not be switched ON.");
|
||||
define('LANG_ftp_can_not_be_switched_off', "FTP can not be switched OFF.");
|
||||
define('LANG_invalid_home_id_entered', "Invalid home id entered.");
|
||||
define('LANG_ip_port_already_in_use', "The %s:%s is already in use. Choose another one.");
|
||||
define('LANG_successfully_assigned_ip_port_to_server_id', "Successfully assigned %s:%s to home with ID %s.");
|
||||
define('LANG_no_ip_addresses_configured', "Your game server does not have any IP-addresses configured to it. You can configure them from ");
|
||||
define('LANG_server_page', "server page");
|
||||
define('LANG_successfully_removed_mod', "Successfully removed game mod.");
|
||||
define('LANG_warning_agent_offline_defaulting_CPU_count_to_1', "Warning - Agent offline, defaulting CPU count to 1.");
|
||||
define('LANG_mod_install_cmds', "Mod Install CMDs");
|
||||
define('LANG_cmds_for', "Commands for");
|
||||
define('LANG_preinstall_cmds', "Preinstall Commands");
|
||||
define('LANG_postinstall_cmds', "Postinstall Commands");
|
||||
define('LANG_edit_preinstall_cmds', "Edit Preinstall Commands");
|
||||
define('LANG_edit_postinstall_cmds', "Edit Postinstall Commands");
|
||||
define('LANG_save_as_default_for_this_mod', "Save as default for this mod");
|
||||
define('LANG_empty', "empty");
|
||||
define('LANG_master_server_for_clon_update', "Master server for local update");
|
||||
define('LANG_set_as_master_server', "Set as master server");
|
||||
define('LANG_set_as_master_server_for_local_clon_update', "Set as master server for local update.");
|
||||
define('LANG_only_available_for', "Only available for '%s' hosted on the remote server named '%s'.");
|
||||
define('LANG_ftp_on', "Enable FTP");
|
||||
define('LANG_ftp_off', "Disable FTP");
|
||||
define('LANG_change_ftp_account_status', "Change FTP account status");
|
||||
define('LANG_change_ftp_account_status_info', "Once a FTP account is enabled or disabled, it is added or removed from the FTP's database.");
|
||||
define('LANG_server_ftp_login', "Server FTP Login");
|
||||
define('LANG_change_ftp_login_info', "Change the FTP Login with a customized one.");
|
||||
define('LANG_change_ftp_login', "Change FTP Login");
|
||||
define('LANG_ftp_login_can_not_be_changed', "Can not change FTP Login.");
|
||||
define('LANG_server_is_running_change_addresses_not_available', "The server is actually running, the IP cannot be changed.");
|
||||
define('LANG_change_game_type', "Change Game Type");
|
||||
define('LANG_change_game_type_info', "By changing the game type the current the mods configuration will be deleted.");
|
||||
define('LANG_force_mod_on_this_address', "Force mod on this address");
|
||||
define('LANG_successfully_assigned_mod_to_address', "Successfully assigned mod to address");
|
||||
define('LANG_switch_mods', "Switch mods");
|
||||
define('LANG_switch_mod_for_address', "Switch mod for address %s");
|
||||
define('LANG_invalid_path', "Invalid Path");
|
||||
define('LANG_add_new_game_home', "Add new game server");
|
||||
define('LANG_no_game_homes_found', "No game servers found");
|
||||
define('LANG_available_game_homes', "Available game servers");
|
||||
define('LANG_home_id', "Home ID");
|
||||
define('LANG_game_server', "Game Server");
|
||||
define('LANG_game_type', "Game Type");
|
||||
define('LANG_game_home', "Home Path");
|
||||
define('LANG_game_home_name', "Game Server Name");
|
||||
define('LANG_clone', "Clone");
|
||||
define('LANG_unassign', "Unassign");
|
||||
define('LANG_access_rights', "Access Rights");
|
||||
define('LANG_assigned_homes', "Currently Assigned Homes");
|
||||
define('LANG_assign', "Assign");
|
||||
define('LANG_allow_updates', "Allow Game Updates");
|
||||
define('LANG_allow_updates_info', "Allows user to update the game installation if that is possible.");
|
||||
define('LANG_allow_file_management', "Allow File Management");
|
||||
define('LANG_allow_file_management_info', "Allows user to access the game server with file management modules.");
|
||||
define('LANG_allow_parameter_usage', "Allow Parameter Usage");
|
||||
define('LANG_allow_parameter_usage_info', "Allows user to change available command line parameters.");
|
||||
define('LANG_allow_extra_params', "Allow Extra parametrs");
|
||||
define('LANG_allow_extra_params_info', "Allows user to modify extra command line parameters.");
|
||||
define('LANG_allow_ftp', "Allow FTP");
|
||||
define('LANG_allow_ftp_info', "Show the FTP access information to the user.");
|
||||
define('LANG_allow_custom_fields', "Allow Custom Fields");
|
||||
define('LANG_allow_custom_fields_info', "Allows user to access custom fields of the game server if any.");
|
||||
define('LANG_select_home', "Select Home to Assign");
|
||||
define('LANG_assign_new_home_to_user', "Assign New Home to user %s");
|
||||
define('LANG_assign_new_home_to_group', "Assign New Home to group %s");
|
||||
define('LANG_assigned_home_to_user', "Successfully assigned home (ID: %d) to user %s.");
|
||||
define('LANG_failed_to_assign_home_to_user', "Failed to assign home (ID: %d) to user %s.");
|
||||
define('LANG_assigned_home_to_group', "Successfully assigned home (ID: %d) to group %s.");
|
||||
define('LANG_unassigned_home_from_user', "Successfully unassigned home (ID: %d) from user %s.");
|
||||
define('LANG_unassigned_home_from_group', "Successfully unassigned home (ID: %d) from group %s.");
|
||||
define('LANG_no_homes_assigned_to_user', "No homes assigned for user %s.");
|
||||
define('LANG_no_homes_assigned_to_group', "No homes assigned for group %s.");
|
||||
define('LANG_no_more_homes_available_that_can_be_assigned_for_this_user', "No more homes available that can be assigned for this user");
|
||||
define('LANG_no_more_homes_available_that_can_be_assigned_for_this_group', "No more homes available that can be assigned for this group");
|
||||
define('LANG_you_can_add_a_new_game_server_from', "You can add a new game server from %s.");
|
||||
define('LANG_no_remote_servers_available_please_add_at_least_one', "There are no remote servers available, please add at least one!");
|
||||
define('LANG_cloning_of_home_failed', "Cloning of home with id '%s' failed.");
|
||||
define('LANG_no_mods_to_clone', "No enabled mod(s) for this game yet. None will be cloned.");
|
||||
define('LANG_failed_to_add_mod', "Failed to add mod with id '%s' to home with id '%s'.");
|
||||
define('LANG_failed_to_update_mod_settings', "Failed to update mod settings for home with id '%s'.");
|
||||
define('LANG_successfully_cloned_mods', "Successfully cloned mods for home with id '%s'.");
|
||||
define('LANG_successfully_copied_home_database', "Successfully copied home database.");
|
||||
define('LANG_copying_home_remotely', "Copying the home on remote server from '%s' to '%s'.");
|
||||
define('LANG_cloning_home', "Cloning home called '%s'");
|
||||
define('LANG_current_home_path', "Current home path");
|
||||
define('LANG_current_home_path_info', "The current location of the copied home on remote server.");
|
||||
define('LANG_clone_home', "Clone Home");
|
||||
define('LANG_new_home_name', "New Home Name");
|
||||
define('LANG_new_home_path', "New Home Path");
|
||||
define('LANG_agent_ip', "Agent IP");
|
||||
define('LANG_game_server_copy_is_running', "Game server copy is running...");
|
||||
define('LANG_game_server_copy_was_successful', "Game server copy was successful");
|
||||
define('LANG_game_server_copy_failed_with_return_code', "Game server copy failed with return code %s");
|
||||
define('LANG_clone_mods', "Clone Mods");
|
||||
define('LANG_game_server_owner', "Game server owner");
|
||||
define('LANG_the_name_of_the_server_to_help_users_to_identify_it', "The name of the server to help users to identify it.");
|
||||
define('LANG_ips_and_ports_used_in_this_home', "IPs and Ports used in this home");
|
||||
define('LANG_note_ips_and_ports_are_not_cloned', "Note - IPs and Ports are not cloned");
|
||||
define('LANG_mods_and_settings_for_this_game_server', "Mods and settings for this game server");
|
||||
define('LANG_sure_to_delete_serverid_from_remoteip_and_directory', "Are you sure you want to delete game server (ID: %s) from server %s and is in directory %s");
|
||||
define('LANG_yes_and_delete_the_files', "Yes and Delete the files");
|
||||
define('LANG_failed_to_remove_gamehome_from_database', "Failed to remove gamehome from database.");
|
||||
define('LANG_successfully_deleted_game_server_with_id', "Successfully deleted game server with ID %s.");
|
||||
define('LANG_failed_to_remove_ftp_account_from_remote_server', "Failed to remove FTP account from remote server.");
|
||||
define('LANG_remove_it_anyway', "Would you like to remove it anyway?");
|
||||
define('LANG_sucessfully_deleted', "Sucessfully deleted %s");
|
||||
define('LANG_the_agent_had_a_problem_deleting', "The Agent had a problem while deleting %s. Please, check the Agent's log.");
|
||||
define('LANG_connection_timeout_or_problems_reaching_the_agent', "Connection timeout or problems with reaching the Agent");
|
||||
define('LANG_does_not_exist_yet', "Does not exist yet.");
|
||||
define('LANG_update_settings', "Update settings");
|
||||
define('LANG_settings_updated', "Settings updated.");
|
||||
define('LANG_selected_path_already_in_use', "The selected path is already in use.");
|
||||
define('LANG_browse', "Browse");
|
||||
define('LANG_cancel', "Cancel");
|
||||
define('LANG_set_this_path', "Set this path");
|
||||
define('LANG_select_home_path', "Select home path");
|
||||
define('LANG_folder', "Folder");
|
||||
define('LANG_owner', "Owner");
|
||||
define('LANG_group', "Group");
|
||||
define('LANG_level_up', "Level up");
|
||||
define('LANG_level_up_info', "Back to the previous folder.");
|
||||
define('LANG_add_folder', "Add folder");
|
||||
define('LANG_add_folder_info', "Write the name for the new folder, then click on the icon.");
|
||||
define('LANG_valid_user', "Please specify a valid user.");
|
||||
define('LANG_valid_group', "Please specify a valid group.");
|
||||
define('LANG_set_affinity', "Set Server Affinity");
|
||||
define('LANG_cpu_affinity_info', "Select the CPU core(s) you want to assign to the game server.");
|
||||
define('LANG_expiration_date_changed', "Expiration date for selected home has been changed.");
|
||||
define('LANG_expiration_date_could_not_be_changed', "Expiration date for selected home could not be changed.");
|
||||
define('LANG_search', "Search");
|
||||
define('LANG_ftp_account_username_too_long', "FTP username is too long. Try a shorter username no longer than 20 characters.");
|
||||
define('LANG_ftp_account_password_too_long', "FTP password is too long. Try a shorter password no longer than 20 characters.");
|
||||
define('LANG_other_servers_exist_with_path_please_change', "Other homes exist with the same path. It is recommended (but not required) that you change this path to something unique. You may have problems if you do NOT.");
|
||||
define('LANG_change_access_rights_for_selected_servers', "Change access rights for selected servers");
|
||||
?>
|
||||
|
|
@ -22,104 +22,104 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_module_name', "Utilities");
|
||||
define('OGP_LANG_ping', "Ping");
|
||||
define('OGP_LANG_traceroute', "Traceroute");
|
||||
define('OGP_LANG_network_tools', "Network Tools");
|
||||
define('OGP_LANG_sourcemod_admins', "Sourcemod Admins");
|
||||
define('OGP_LANG_steam_converter', "SteamID Converter");
|
||||
define('OGP_LANG_your_ip', "Your IP Address:");
|
||||
define('OGP_LANG_loading_agents', "Loading online Agents...");
|
||||
define('OGP_LANG_loading_failed', "Loading Agents failed.");
|
||||
define('OGP_LANG_agents_offline', "All Agents are offline.");
|
||||
define('OGP_LANG_no_commands', "Sorry, your user account has no commands available.");
|
||||
define('OGP_LANG_remote_target', "Target IP Address:");
|
||||
define('OGP_LANG_command', "Command:");
|
||||
define('OGP_LANG_select_agent', "Select Agent:");
|
||||
define('OGP_LANG_chdir_failed', "Error: chdir() returned false.");
|
||||
define('OGP_LANG_agent_invalid', "Invalid Agent specified.");
|
||||
define('OGP_LANG_networktools_agent_offline', "Unable to execute your command on the selected Agent, because it is offline.");
|
||||
define('OGP_LANG_target_empty', "No remote target given.");
|
||||
define('OGP_LANG_command_empty', "No command selected.");
|
||||
define('OGP_LANG_command_unavilable', "The selected command is unavailable on the selected agent.");
|
||||
define('OGP_LANG_target_invalid', "Invalid IP/hostname entered.");
|
||||
define('OGP_LANG_exec_failed', "Timed out while waiting for a response.");
|
||||
define('OGP_LANG_command_no_access', "You do not have access to this command. This incident will be logged.");
|
||||
define('OGP_LANG_command_hacking_attempt', "Blacklisted characters entered. This incident will be logged.");
|
||||
define('OGP_LANG_command_bad_characters', "Attempted to execute a command with malicious characters. Input received: %s %s");
|
||||
define('OGP_LANG_command_no_permissions', "Attempted to execute a command with insufficient permissions. Input received: %s %s");
|
||||
define('OGP_LANG_command_executed', "Successfully sent the following command: %s %s");
|
||||
define('OGP_LANG_no_servers', "You have no servers assigned to your account.");
|
||||
define('OGP_LANG_select_server', "Select Server:");
|
||||
define('OGP_LANG_select_server_option', "Select...");
|
||||
define('OGP_LANG_steamid', "Steam ID:");
|
||||
define('OGP_LANG_immunity', "Immunity:");
|
||||
define('OGP_LANG_sourcemod_perms', "Sourcemod Permissions:");
|
||||
define('OGP_LANG_sourcemod_perm_root', "Sourcemod Root Flag");
|
||||
define('OGP_LANG_sourcemod_perm_custom', "Sourcemod Custom Flags");
|
||||
define('OGP_LANG_sourcemod_flag_a', "Reserved slot access.");
|
||||
define('OGP_LANG_sourcemod_flag_b', "Generic admin; required for admins.");
|
||||
define('OGP_LANG_sourcemod_flag_c', "Kick other players.");
|
||||
define('OGP_LANG_sourcemod_flag_d', "Ban other players.");
|
||||
define('OGP_LANG_sourcemod_flag_e', "Remove bans.");
|
||||
define('OGP_LANG_sourcemod_flag_f', "Slay/harm other players.");
|
||||
define('OGP_LANG_sourcemod_flag_g', "Change the map or major gameplay features.");
|
||||
define('OGP_LANG_sourcemod_flag_h', "Change most CVARs.");
|
||||
define('OGP_LANG_sourcemod_flag_i', "Execute config files.");
|
||||
define('OGP_LANG_sourcemod_flag_j', "Special chat privileges.");
|
||||
define('OGP_LANG_sourcemod_flag_k', "Start or create votes.");
|
||||
define('OGP_LANG_sourcemod_flag_l', "Set a password on the server.");
|
||||
define('OGP_LANG_sourcemod_flag_m', "Use RCON commands.");
|
||||
define('OGP_LANG_sourcemod_flag_n', "Change sv_cheats or use cheating commands.");
|
||||
define('OGP_LANG_sourcemod_flag_o', "Custom Group 1.");
|
||||
define('OGP_LANG_sourcemod_flag_p', "Custom Group 2.");
|
||||
define('OGP_LANG_sourcemod_flag_q', "Custom Group 3.");
|
||||
define('OGP_LANG_sourcemod_flag_r', "Custom Group 4.");
|
||||
define('OGP_LANG_sourcemod_flag_s', "Custom Group 5.");
|
||||
define('OGP_LANG_sourcemod_flag_t', "Custom Group 6.");
|
||||
define('OGP_LANG_rcon_reload_admins_failed', "Failed to reload the admin cache via RCON; is it online?");
|
||||
define('OGP_LANG_reload_admins_failed', "Failed to reload the admin cache; \"sm_reloadadmins\" is an unknown command.");
|
||||
define('OGP_LANG_reload_admins_success', "Successfully added %s to admins_simple.ini and reloaded the admin cache.");
|
||||
define('OGP_LANG_add_success_no_rcon', "Successfully added %s to your admins_simple.ini file, but unable to reload the admin cache.");
|
||||
define('OGP_LANG_writefile_error', "There was an unknown error writing to: %s");
|
||||
define('OGP_LANG_remotefile_nonexistent', "Unable to add a new admin. Admin file: %s doesn\'t exist on this server.");
|
||||
define('OGP_LANG_empty_flag_list', "You didn\'t select any admin flags.");
|
||||
define('OGP_LANG_invalid_steam_format', "The SteamID you entered doesn\'t match the required pattern.");
|
||||
define('OGP_LANG_selected_server_offline', "Unable to add an admin, the agent controlling the selected server is offline.");
|
||||
define('OGP_LANG_malformed_form', "You submitted a form with malformed hidden elements - unable to add an admin.");
|
||||
define('OGP_LANG_empty_form_data', "Please fill out all elements of the form.");
|
||||
define('OGP_LANG_server_not_selected', "You haven\'t selected a server.");
|
||||
define('OGP_LANG_invalid_steamid', "You have entered an invalid Steam ID.");
|
||||
define('OGP_LANG_invalid_immunity', "You entered an invalid immunity value.");
|
||||
define('OGP_LANG_submit', "Submit");
|
||||
define('OGP_LANG_post_failed', "The POST action failed. Unable to retrieve a response.");
|
||||
define('OGP_LANG_amx_mod_admins', "AMX mod X Admins");
|
||||
define('OGP_LANG_amx_login_type', "Login Type");
|
||||
define('OGP_LANG_amx_login_steamid', "Steam ID");
|
||||
define('OGP_LANG_amx_login_nick_pass', "Nickname + Password");
|
||||
define('OGP_LANG_nickname', "Nickname");
|
||||
define('OGP_LANG_amx_mod_perms', "AMX mod X Permissions:");
|
||||
define('OGP_LANG_amx_mod_perm_root', "AMX mod X All Flags.");
|
||||
define('OGP_LANG_amx_mod_perm_custom', "AMX mod X Custom Flags.");
|
||||
define('OGP_LANG_amx_mod_flag_a', "immunity (can't be kicked/baned/slayed/slaped and affected by other commmands)");
|
||||
define('OGP_LANG_amx_mod_flag_b', "reservation (can join on reserved slots)");
|
||||
define('OGP_LANG_amx_mod_flag_c', "amx_kick command");
|
||||
define('OGP_LANG_amx_mod_flag_d', "amx_ban and amx_unban commands");
|
||||
define('OGP_LANG_amx_mod_flag_e', "amx_slay and amx_slap commands");
|
||||
define('OGP_LANG_amx_mod_flag_f', "amx_map command");
|
||||
define('OGP_LANG_amx_mod_flag_g', "amx_cvar command (not all cvars will be available)");
|
||||
define('OGP_LANG_amx_mod_flag_h', "amx_cfg command");
|
||||
define('OGP_LANG_amx_mod_flag_i', "amx_chat and other chat commands");
|
||||
define('OGP_LANG_amx_mod_flag_j', "amx_vote and other vote commands");
|
||||
define('OGP_LANG_amx_mod_flag_k', "access to sv_password cvar (by amx_cvar command)");
|
||||
define('OGP_LANG_amx_mod_flag_l', "access to amx_rcon command and rcon_password cvar (by amx_cvar command)");
|
||||
define('OGP_LANG_amx_mod_flag_m', "custom level A (for additional plugins)");
|
||||
define('OGP_LANG_amx_mod_flag_n', "custom level B");
|
||||
define('OGP_LANG_amx_mod_flag_o', "custom level C");
|
||||
define('OGP_LANG_amx_mod_flag_p', "custom level D");
|
||||
define('OGP_LANG_amx_mod_flag_q', "custom level E");
|
||||
define('OGP_LANG_amx_mod_flag_r', "custom level F");
|
||||
define('OGP_LANG_amx_mod_flag_s', "custom level G");
|
||||
define('OGP_LANG_amx_mod_flag_t', "custom level H");
|
||||
define('OGP_LANG_amx_mod_flag_u', "menu access");
|
||||
define('LANG_module_name', "Utilities");
|
||||
define('LANG_ping', "Ping");
|
||||
define('LANG_traceroute', "Traceroute");
|
||||
define('LANG_network_tools', "Network Tools");
|
||||
define('LANG_sourcemod_admins', "Sourcemod Admins");
|
||||
define('LANG_steam_converter', "SteamID Converter");
|
||||
define('LANG_your_ip', "Your IP Address:");
|
||||
define('LANG_loading_agents', "Loading online Agents...");
|
||||
define('LANG_loading_failed', "Loading Agents failed.");
|
||||
define('LANG_agents_offline', "All Agents are offline.");
|
||||
define('LANG_no_commands', "Sorry, your user account has no commands available.");
|
||||
define('LANG_remote_target', "Target IP Address:");
|
||||
define('LANG_command', "Command:");
|
||||
define('LANG_select_agent', "Select Agent:");
|
||||
define('LANG_chdir_failed', "Error: chdir() returned false.");
|
||||
define('LANG_agent_invalid', "Invalid Agent specified.");
|
||||
define('LANG_networktools_agent_offline', "Unable to execute your command on the selected Agent, because it is offline.");
|
||||
define('LANG_target_empty', "No remote target given.");
|
||||
define('LANG_command_empty', "No command selected.");
|
||||
define('LANG_command_unavilable', "The selected command is unavailable on the selected agent.");
|
||||
define('LANG_target_invalid', "Invalid IP/hostname entered.");
|
||||
define('LANG_exec_failed', "Timed out while waiting for a response.");
|
||||
define('LANG_command_no_access', "You do not have access to this command. This incident will be logged.");
|
||||
define('LANG_command_hacking_attempt', "Blacklisted characters entered. This incident will be logged.");
|
||||
define('LANG_command_bad_characters', "Attempted to execute a command with malicious characters. Input received: %s %s");
|
||||
define('LANG_command_no_permissions', "Attempted to execute a command with insufficient permissions. Input received: %s %s");
|
||||
define('LANG_command_executed', "Successfully sent the following command: %s %s");
|
||||
define('LANG_no_servers', "You have no servers assigned to your account.");
|
||||
define('LANG_select_server', "Select Server:");
|
||||
define('LANG_select_server_option', "Select...");
|
||||
define('LANG_steamid', "Steam ID:");
|
||||
define('LANG_immunity', "Immunity:");
|
||||
define('LANG_sourcemod_perms', "Sourcemod Permissions:");
|
||||
define('LANG_sourcemod_perm_root', "Sourcemod Root Flag");
|
||||
define('LANG_sourcemod_perm_custom', "Sourcemod Custom Flags");
|
||||
define('LANG_sourcemod_flag_a', "Reserved slot access.");
|
||||
define('LANG_sourcemod_flag_b', "Generic admin; required for admins.");
|
||||
define('LANG_sourcemod_flag_c', "Kick other players.");
|
||||
define('LANG_sourcemod_flag_d', "Ban other players.");
|
||||
define('LANG_sourcemod_flag_e', "Remove bans.");
|
||||
define('LANG_sourcemod_flag_f', "Slay/harm other players.");
|
||||
define('LANG_sourcemod_flag_g', "Change the map or major gameplay features.");
|
||||
define('LANG_sourcemod_flag_h', "Change most CVARs.");
|
||||
define('LANG_sourcemod_flag_i', "Execute config files.");
|
||||
define('LANG_sourcemod_flag_j', "Special chat privileges.");
|
||||
define('LANG_sourcemod_flag_k', "Start or create votes.");
|
||||
define('LANG_sourcemod_flag_l', "Set a password on the server.");
|
||||
define('LANG_sourcemod_flag_m', "Use RCON commands.");
|
||||
define('LANG_sourcemod_flag_n', "Change sv_cheats or use cheating commands.");
|
||||
define('LANG_sourcemod_flag_o', "Custom Group 1.");
|
||||
define('LANG_sourcemod_flag_p', "Custom Group 2.");
|
||||
define('LANG_sourcemod_flag_q', "Custom Group 3.");
|
||||
define('LANG_sourcemod_flag_r', "Custom Group 4.");
|
||||
define('LANG_sourcemod_flag_s', "Custom Group 5.");
|
||||
define('LANG_sourcemod_flag_t', "Custom Group 6.");
|
||||
define('LANG_rcon_reload_admins_failed', "Failed to reload the admin cache via RCON; is it online?");
|
||||
define('LANG_reload_admins_failed', "Failed to reload the admin cache; \"sm_reloadadmins\" is an unknown command.");
|
||||
define('LANG_reload_admins_success', "Successfully added %s to admins_simple.ini and reloaded the admin cache.");
|
||||
define('LANG_add_success_no_rcon', "Successfully added %s to your admins_simple.ini file, but unable to reload the admin cache.");
|
||||
define('LANG_writefile_error', "There was an unknown error writing to: %s");
|
||||
define('LANG_remotefile_nonexistent', "Unable to add a new admin. Admin file: %s doesn\'t exist on this server.");
|
||||
define('LANG_empty_flag_list', "You didn\'t select any admin flags.");
|
||||
define('LANG_invalid_steam_format', "The SteamID you entered doesn\'t match the required pattern.");
|
||||
define('LANG_selected_server_offline', "Unable to add an admin, the agent controlling the selected server is offline.");
|
||||
define('LANG_malformed_form', "You submitted a form with malformed hidden elements - unable to add an admin.");
|
||||
define('LANG_empty_form_data', "Please fill out all elements of the form.");
|
||||
define('LANG_server_not_selected', "You haven\'t selected a server.");
|
||||
define('LANG_invalid_steamid', "You have entered an invalid Steam ID.");
|
||||
define('LANG_invalid_immunity', "You entered an invalid immunity value.");
|
||||
define('LANG_submit', "Submit");
|
||||
define('LANG_post_failed', "The POST action failed. Unable to retrieve a response.");
|
||||
define('LANG_amx_mod_admins', "AMX mod X Admins");
|
||||
define('LANG_amx_login_type', "Login Type");
|
||||
define('LANG_amx_login_steamid', "Steam ID");
|
||||
define('LANG_amx_login_nick_pass', "Nickname + Password");
|
||||
define('LANG_nickname', "Nickname");
|
||||
define('LANG_amx_mod_perms', "AMX mod X Permissions:");
|
||||
define('LANG_amx_mod_perm_root', "AMX mod X All Flags.");
|
||||
define('LANG_amx_mod_perm_custom', "AMX mod X Custom Flags.");
|
||||
define('LANG_amx_mod_flag_a', "immunity (can't be kicked/baned/slayed/slaped and affected by other commmands)");
|
||||
define('LANG_amx_mod_flag_b', "reservation (can join on reserved slots)");
|
||||
define('LANG_amx_mod_flag_c', "amx_kick command");
|
||||
define('LANG_amx_mod_flag_d', "amx_ban and amx_unban commands");
|
||||
define('LANG_amx_mod_flag_e', "amx_slay and amx_slap commands");
|
||||
define('LANG_amx_mod_flag_f', "amx_map command");
|
||||
define('LANG_amx_mod_flag_g', "amx_cvar command (not all cvars will be available)");
|
||||
define('LANG_amx_mod_flag_h', "amx_cfg command");
|
||||
define('LANG_amx_mod_flag_i', "amx_chat and other chat commands");
|
||||
define('LANG_amx_mod_flag_j', "amx_vote and other vote commands");
|
||||
define('LANG_amx_mod_flag_k', "access to sv_password cvar (by amx_cvar command)");
|
||||
define('LANG_amx_mod_flag_l', "access to amx_rcon command and rcon_password cvar (by amx_cvar command)");
|
||||
define('LANG_amx_mod_flag_m', "custom level A (for additional plugins)");
|
||||
define('LANG_amx_mod_flag_n', "custom level B");
|
||||
define('LANG_amx_mod_flag_o', "custom level C");
|
||||
define('LANG_amx_mod_flag_p', "custom level D");
|
||||
define('LANG_amx_mod_flag_q', "custom level E");
|
||||
define('LANG_amx_mod_flag_r', "custom level F");
|
||||
define('LANG_amx_mod_flag_s', "custom level G");
|
||||
define('LANG_amx_mod_flag_t', "custom level H");
|
||||
define('LANG_amx_mod_flag_u', "menu access");
|
||||
?>
|
||||
|
|
@ -22,122 +22,122 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_lang_charset', "UTF-8");
|
||||
define('OGP_LANG_already_logged_in_redirecting_to_dashboard', "Du er allerede logget ind, omadresseres til instrumentpanel");
|
||||
define('OGP_LANG_logging_in', "Logget ind");
|
||||
define('OGP_LANG_redirecting_in', "Omadressere til");
|
||||
define('OGP_LANG_refresh_page', "Genfrisk Side");
|
||||
define('OGP_LANG_no_rights', "Du har ikke rettigheder til, at få adgang til denne side.");
|
||||
define('OGP_LANG_welcome', "Velkommen");
|
||||
define('OGP_LANG_logout', "Logud");
|
||||
define('OGP_LANG_logout_message', "Du er nu logget ud.");
|
||||
define('OGP_LANG_support', "Support");
|
||||
define('OGP_LANG_password', "Kodeord");
|
||||
define('OGP_LANG_login', "Brugernavn");
|
||||
define('OGP_LANG_login_button', "Login");
|
||||
define('OGP_LANG_solve_captcha', "Human Check");
|
||||
define('OGP_LANG_lost_passwd', "Mistet dit kodeord?");
|
||||
define('OGP_LANG_no_db_connection', "Kunne ikke forbinde til databasen.");
|
||||
define('OGP_LANG_bad_login', "Ugyldig brugernavn eller kodeord.");
|
||||
define('OGP_LANG_not_logged_in', "Du er på nuværende tidspunkt ikke logget ind.");
|
||||
define('OGP_LANG_remove_install', "Vær venlig at slette install.php filen, af sikkerheds mæssige grunde.");
|
||||
define('OGP_LANG_agent_offline', "Agenten der kontrollere denne server, er offline.");
|
||||
define('OGP_LANG_logged_in', "Du er logget ind som");
|
||||
define('OGP_LANG_delete', "Slet");
|
||||
define('OGP_LANG_edit', "Edit");
|
||||
define('OGP_LANG_actions', "Handlinger");
|
||||
define('OGP_LANG_invalid_subpage', "Ugyldig subside.");
|
||||
define('OGP_LANG_invalid_home_id', "Ugyldig hjemme ID indtastet.");
|
||||
define('OGP_LANG_note', "NOTE");
|
||||
define('OGP_LANG_hint', "HINT");
|
||||
define('OGP_LANG_yes', "Ja");
|
||||
define('OGP_LANG_no', "Nej");
|
||||
define('OGP_LANG_on', "Tændt");
|
||||
define('OGP_LANG_off', "Slukket");
|
||||
define('OGP_LANG_db_error_invalid_host', "Ugyldig database vært indtastet.");
|
||||
define('OGP_LANG_db_error_invalid_user_and_pass', "Ugyldig database brugernavn og/eller kodeord.");
|
||||
define('OGP_LANG_db_error_invalid_database', "Ugyldig database.");
|
||||
define('OGP_LANG_db_unknown_error', "Ukendt database fejl: %s");
|
||||
define('OGP_LANG_db_error_module_missing', "Påkrævet PHP database modul mangler.");
|
||||
define('OGP_LANG_db_error_invalid_db_type', "Ugyldig database type i config filen.");
|
||||
define('OGP_LANG_invalid_login_information', "Ugyldig login information indtastet.");
|
||||
define('OGP_LANG_failed_to_read_config', "Fejlet I at læse config filen.");
|
||||
define('OGP_LANG_account_expired', "Din konto er udløbet.");
|
||||
define('OGP_LANG_contact_admin_to_enable_account', "Kontakt din administrator, for at gen-aktivere din konto.");
|
||||
define('OGP_LANG_maintenance_mode_on', "Vedligeholdelse funktion er aktiv");
|
||||
define('OGP_LANG_logging_out_10', "Logger ud om 10 sekunder");
|
||||
define('OGP_LANG_invalid_redirect', "Omadressere");
|
||||
define('OGP_LANG_login_title', "Kontrol Panel Logind");
|
||||
define('OGP_LANG_module_not_installed', "Modul er ikke installeret.");
|
||||
define('OGP_LANG_no_access_to_home', "You do not have access to this home.");
|
||||
define('OGP_LANG_not_available', "I/T");
|
||||
define('OGP_LANG_offline', "Offline");
|
||||
define('OGP_LANG_online', "Online");
|
||||
define('OGP_LANG_invalid_url', "Ugyldig URL");
|
||||
define('OGP_LANG_xml_file_not_valid', "XML fil '%s' kunne ikke blive valideret med skema '%s'.");
|
||||
define('OGP_LANG_unable_to_load_xml', "Ikke muligt at loade XML fil '%s'. Problemer med rettigheder?");
|
||||
define('OGP_LANG_gamemanager', "Spil Manager");
|
||||
define('OGP_LANG_game_monitor', "Spil Monitor");
|
||||
define('OGP_LANG_dashboard', "Instrumentpanel");
|
||||
define('OGP_LANG_user_addons', "Addons");
|
||||
define('OGP_LANG_ftp', "FTP");
|
||||
define('OGP_LANG_shop', "Butik");
|
||||
define('OGP_LANG_shop_guest', "Butik");
|
||||
define('OGP_LANG_TS3Admin', "TS3 Admin");
|
||||
define('OGP_LANG_administration', "Administration");
|
||||
define('OGP_LANG_config_games', "Spil/Mod Config");
|
||||
define('OGP_LANG_modulemanager', "Moduler");
|
||||
define('OGP_LANG_server', "Servers");
|
||||
define('OGP_LANG_settings', "Panel indstillinger");
|
||||
define('OGP_LANG_themes', "Tema indstillinge");
|
||||
define('OGP_LANG_user_admin', "Brugere");
|
||||
define('OGP_LANG_sub_users', "Sub Users");
|
||||
define('OGP_LANG_show_groups', "Grupper");
|
||||
define('OGP_LANG_user_games', "Spil Servers");
|
||||
define('OGP_LANG_addons_manager', "Addons Manager");
|
||||
define('OGP_LANG_ftp_admin', "FTP Brugere");
|
||||
define('OGP_LANG_orders', "Ordre");
|
||||
define('OGP_LANG_services', "Service");
|
||||
define('OGP_LANG_shop_settings', "Butik Indstillinge");
|
||||
define('OGP_LANG_update', "Update Panel");
|
||||
define('OGP_LANG_extras', "ekstra");
|
||||
define('OGP_LANG_show', "Vis");
|
||||
define('OGP_LANG_show_all', "Vis Alle Servere");
|
||||
define('OGP_LANG_cur_theme', "%s Theme");
|
||||
define('OGP_LANG_copyright', "Copyright");
|
||||
define('OGP_LANG_all_rights_reserved', "Alle rettigheder forbeholdes");
|
||||
define('OGP_LANG_version', "Version");
|
||||
define('OGP_LANG_show_version', "Show Version");
|
||||
define('OGP_LANG_queries_executed', "Forspørgelser udført");
|
||||
define('OGP_LANG_lang', "Sprog");
|
||||
define('OGP_LANG_get_size', "Show Size");
|
||||
define('OGP_LANG_total_size', "Total size");
|
||||
define('OGP_LANG_lgsl', "LGSL");
|
||||
define('OGP_LANG_lgsl_admin', "LGSL Admin");
|
||||
define('OGP_LANG_rcon', "RCON");
|
||||
define('OGP_LANG_watch_logger', "iagttage Logger");
|
||||
define('OGP_LANG_litefm_settings', "LiteFM Settings");
|
||||
define('OGP_LANG_assign_expiration_date', "Assign expiration date");
|
||||
define('OGP_LANG_assign_expiration_date_info', "Once it expires the server is unassigned but not removed.");
|
||||
define('OGP_LANG_server_expiration_date', "Server expiration date");
|
||||
define('OGP_LANG_server_expiration_date_info', "Once it expires the server is removed (database and files).");
|
||||
define('OGP_LANG_set_expiration_date', "Set expiration date");
|
||||
define('OGP_LANG_admin_dsi', "DSi Settings");
|
||||
define('OGP_LANG_user_dsi', "DSi");
|
||||
define('OGP_LANG_list_dsi', "DSi List");
|
||||
define('OGP_LANG_no_remote_servers', "There is no known remote servers! Add a server to use this function.");
|
||||
define('OGP_LANG_no_results_found', "No search results found for %s");
|
||||
define('OGP_LANG_tickets', "Support Tickets");
|
||||
define('OGP_LANG_news', "News");
|
||||
define('OGP_LANG_admin_news', "News Admin");
|
||||
define('OGP_LANG_util', "Utilities");
|
||||
define('OGP_LANG_fast_download', "Fast Download");
|
||||
define('OGP_LANG_fd_user', "Fast Download");
|
||||
define('OGP_LANG_cron', "Cron Admin");
|
||||
define('OGP_LANG_user_cron', "Cron");
|
||||
define('OGP_LANG_faq', "F.A.Q.");
|
||||
define('OGP_LANG_mysql_admin', "MySQL Admin");
|
||||
define('OGP_LANG_copied', "Copied!");
|
||||
define('OGP_LANG_ticket_settings', "Ticket Settings");
|
||||
define('OGP_LANG_form', "Register");
|
||||
define('LANG_lang_charset', "UTF-8");
|
||||
define('LANG_already_logged_in_redirecting_to_dashboard', "Du er allerede logget ind, omadresseres til instrumentpanel");
|
||||
define('LANG_logging_in', "Logget ind");
|
||||
define('LANG_redirecting_in', "Omadressere til");
|
||||
define('LANG_refresh_page', "Genfrisk Side");
|
||||
define('LANG_no_rights', "Du har ikke rettigheder til, at få adgang til denne side.");
|
||||
define('LANG_welcome', "Velkommen");
|
||||
define('LANG_logout', "Logud");
|
||||
define('LANG_logout_message', "Du er nu logget ud.");
|
||||
define('LANG_support', "Support");
|
||||
define('LANG_password', "Kodeord");
|
||||
define('LANG_login', "Brugernavn");
|
||||
define('LANG_login_button', "Login");
|
||||
define('LANG_solve_captcha', "Human Check");
|
||||
define('LANG_lost_passwd', "Mistet dit kodeord?");
|
||||
define('LANG_no_db_connection', "Kunne ikke forbinde til databasen.");
|
||||
define('LANG_bad_login', "Ugyldig brugernavn eller kodeord.");
|
||||
define('LANG_not_logged_in', "Du er på nuværende tidspunkt ikke logget ind.");
|
||||
define('LANG_remove_install', "Vær venlig at slette install.php filen, af sikkerheds mæssige grunde.");
|
||||
define('LANG_agent_offline', "Agenten der kontrollere denne server, er offline.");
|
||||
define('LANG_logged_in', "Du er logget ind som");
|
||||
define('LANG_delete', "Slet");
|
||||
define('LANG_edit', "Edit");
|
||||
define('LANG_actions', "Handlinger");
|
||||
define('LANG_invalid_subpage', "Ugyldig subside.");
|
||||
define('LANG_invalid_home_id', "Ugyldig hjemme ID indtastet.");
|
||||
define('LANG_note', "NOTE");
|
||||
define('LANG_hint', "HINT");
|
||||
define('LANG_yes', "Ja");
|
||||
define('LANG_no', "Nej");
|
||||
define('LANG_on', "Tændt");
|
||||
define('LANG_off', "Slukket");
|
||||
define('LANG_db_error_invalid_host', "Ugyldig database vært indtastet.");
|
||||
define('LANG_db_error_invalid_user_and_pass', "Ugyldig database brugernavn og/eller kodeord.");
|
||||
define('LANG_db_error_invalid_database', "Ugyldig database.");
|
||||
define('LANG_db_unknown_error', "Ukendt database fejl: %s");
|
||||
define('LANG_db_error_module_missing', "Påkrævet PHP database modul mangler.");
|
||||
define('LANG_db_error_invalid_db_type', "Ugyldig database type i config filen.");
|
||||
define('LANG_invalid_login_information', "Ugyldig login information indtastet.");
|
||||
define('LANG_failed_to_read_config', "Fejlet I at læse config filen.");
|
||||
define('LANG_account_expired', "Din konto er udløbet.");
|
||||
define('LANG_contact_admin_to_enable_account', "Kontakt din administrator, for at gen-aktivere din konto.");
|
||||
define('LANG_maintenance_mode_on', "Vedligeholdelse funktion er aktiv");
|
||||
define('LANG_logging_out_10', "Logger ud om 10 sekunder");
|
||||
define('LANG_invalid_redirect', "Omadressere");
|
||||
define('LANG_login_title', "Kontrol Panel Logind");
|
||||
define('LANG_module_not_installed', "Modul er ikke installeret.");
|
||||
define('LANG_no_access_to_home', "You do not have access to this home.");
|
||||
define('LANG_not_available', "I/T");
|
||||
define('LANG_offline', "Offline");
|
||||
define('LANG_online', "Online");
|
||||
define('LANG_invalid_url', "Ugyldig URL");
|
||||
define('LANG_xml_file_not_valid', "XML fil '%s' kunne ikke blive valideret med skema '%s'.");
|
||||
define('LANG_unable_to_load_xml', "Ikke muligt at loade XML fil '%s'. Problemer med rettigheder?");
|
||||
define('LANG_gamemanager', "Spil Manager");
|
||||
define('LANG_game_monitor', "Spil Monitor");
|
||||
define('LANG_dashboard', "Instrumentpanel");
|
||||
define('LANG_user_addons', "Addons");
|
||||
define('LANG_ftp', "FTP");
|
||||
define('LANG_shop', "Butik");
|
||||
define('LANG_shop_guest', "Butik");
|
||||
define('LANG_TS3Admin', "TS3 Admin");
|
||||
define('LANG_administration', "Administration");
|
||||
define('LANG_config_games', "Spil/Mod Config");
|
||||
define('LANG_modulemanager', "Moduler");
|
||||
define('LANG_server', "Servers");
|
||||
define('LANG_settings', "Panel indstillinger");
|
||||
define('LANG_themes', "Tema indstillinge");
|
||||
define('LANG_user_admin', "Brugere");
|
||||
define('LANG_sub_users', "Sub Users");
|
||||
define('LANG_show_groups', "Grupper");
|
||||
define('LANG_user_games', "Spil Servers");
|
||||
define('LANG_addons_manager', "Addons Manager");
|
||||
define('LANG_ftp_admin', "FTP Brugere");
|
||||
define('LANG_orders', "Ordre");
|
||||
define('LANG_services', "Service");
|
||||
define('LANG_shop_settings', "Butik Indstillinge");
|
||||
define('LANG_update', "Update Panel");
|
||||
define('LANG_extras', "ekstra");
|
||||
define('LANG_show', "Vis");
|
||||
define('LANG_show_all', "Vis Alle Servere");
|
||||
define('LANG_cur_theme', "%s Theme");
|
||||
define('LANG_copyright', "Copyright");
|
||||
define('LANG_all_rights_reserved', "Alle rettigheder forbeholdes");
|
||||
define('LANG_version', "Version");
|
||||
define('LANG_show_version', "Show Version");
|
||||
define('LANG_queries_executed', "Forspørgelser udført");
|
||||
define('LANG_lang', "Sprog");
|
||||
define('LANG_get_size', "Show Size");
|
||||
define('LANG_total_size', "Total size");
|
||||
define('LANG_lgsl', "LGSL");
|
||||
define('LANG_lgsl_admin', "LGSL Admin");
|
||||
define('LANG_rcon', "RCON");
|
||||
define('LANG_watch_logger', "iagttage Logger");
|
||||
define('LANG_litefm_settings', "LiteFM Settings");
|
||||
define('LANG_assign_expiration_date', "Assign expiration date");
|
||||
define('LANG_assign_expiration_date_info', "Once it expires the server is unassigned but not removed.");
|
||||
define('LANG_server_expiration_date', "Server expiration date");
|
||||
define('LANG_server_expiration_date_info', "Once it expires the server is removed (database and files).");
|
||||
define('LANG_set_expiration_date', "Set expiration date");
|
||||
define('LANG_admin_dsi', "DSi Settings");
|
||||
define('LANG_user_dsi', "DSi");
|
||||
define('LANG_list_dsi', "DSi List");
|
||||
define('LANG_no_remote_servers', "There is no known remote servers! Add a server to use this function.");
|
||||
define('LANG_no_results_found', "No search results found for %s");
|
||||
define('LANG_tickets', "Support Tickets");
|
||||
define('LANG_news', "News");
|
||||
define('LANG_admin_news', "News Admin");
|
||||
define('LANG_util', "Utilities");
|
||||
define('LANG_fast_download', "Fast Download");
|
||||
define('LANG_fd_user', "Fast Download");
|
||||
define('LANG_cron', "Cron Admin");
|
||||
define('LANG_user_cron', "Cron");
|
||||
define('LANG_faq', "F.A.Q.");
|
||||
define('LANG_mysql_admin', "MySQL Admin");
|
||||
define('LANG_copied', "Copied!");
|
||||
define('LANG_ticket_settings', "Ticket Settings");
|
||||
define('LANG_form', "Register");
|
||||
?>
|
||||
|
|
@ -22,48 +22,48 @@
|
|||
*
|
||||
*/
|
||||
|
||||
define('OGP_LANG_install_lang', "Vælg dit fortrukne sprog");
|
||||
define('OGP_LANG_install_welcome', "Velkommen til Open Game Panel installationen");
|
||||
define('OGP_LANG_file_permission_check', "Kontrollere påkrævet fil tilladelser");
|
||||
define('OGP_LANG_OK', "OK");
|
||||
define('OGP_LANG_write_permission_required', "Skrive tilladelse påkrævet");
|
||||
define('OGP_LANG_execute_permission_required', "Udføre tilladelse påkrævet");
|
||||
define('OGP_LANG_create_an_empty_file', "Skabe en tom fil.");
|
||||
define('OGP_LANG_found', "Fundet");
|
||||
define('OGP_LANG_not_found', "Ikke fundet");
|
||||
define('OGP_LANG_pear_xxtea_info', "Pear Crypt_XXTEA er nødvendig for brug af OGP. I de fleste linux distributioner, dette modul kan blive installeret med de følgende Pear kommando 'pear install Crypt_XXTEA-beta'.");
|
||||
define('OGP_LANG_refresh', "Genopfrisk");
|
||||
define('OGP_LANG_checking_required_modules', "tjekker nødvendige moduler");
|
||||
define('OGP_LANG_checking_optional_modules', "tjekker valgfri moduler");
|
||||
define('OGP_LANG_database_type', "Database type");
|
||||
define('OGP_LANG_database_settings', "Database adgang opsætning");
|
||||
define('OGP_LANG_database_hostname', "Database Hostnavn");
|
||||
define('OGP_LANG_database_username', "Database Brugernavn");
|
||||
define('OGP_LANG_database_password', "Database Adgangskode");
|
||||
define('OGP_LANG_database_name', "Database Navn");
|
||||
define('OGP_LANG_database_prefix', "Database Præfiks");
|
||||
define('OGP_LANG_next', "Næste");
|
||||
define('OGP_LANG_encryption_key', "Krypteret Key (Agent)");
|
||||
define('OGP_LANG_agent_port', "Port (Agent)");
|
||||
define('OGP_LANG_unable_to_write_config', "Ikke muligt at skive i konfigurationsfilen. Tjek venligst skive tilladelsen igen.");
|
||||
define('OGP_LANG_admin_login_details', "Admin login detaljer");
|
||||
define('OGP_LANG_config_written', "Konfig filerne blev oprettet succesfuldt");
|
||||
define('OGP_LANG_database_created', "Database tabellerne blev oprettet succesfuldt.");
|
||||
define('OGP_LANG_admin_login_details_info', "Nu opretter vi en admin bruger for dit Open Game Panel.");
|
||||
define('OGP_LANG_username', "Brugernavn");
|
||||
define('OGP_LANG_repeat_password', "Gentag adgangskode");
|
||||
define('OGP_LANG_email', "E-mail adresse");
|
||||
define('OGP_LANG_back', "Tilbage");
|
||||
define('OGP_LANG_database_setup_failure', "Setup kunne ikke bygge databases. Tjek venligst dine database konfigurationer.");
|
||||
define('OGP_LANG_php_version_check', "kontrollere PHP version");
|
||||
define('OGP_LANG_invalid_username', "Du har indtastet ukorrekt brugernavn.");
|
||||
define('OGP_LANG_password_too_short', "Din adgangskode er for kort. Det skal være mindst '%d' bogstaver og tal lang.");
|
||||
define('OGP_LANG_password_contains_invalid_characters', "Din adgangskode indeholder ugyldige tegn.");
|
||||
define('OGP_LANG_invalid_email_address', "Du indtastede en ugyldig email addrese.");
|
||||
define('OGP_LANG_setup_complete', "Setup blev færdig gjort succesfuldt. Open Game Panel er nu klar til brug.");
|
||||
define('OGP_LANG_remove_install_and_secure_config', "Du burde slette install.php fra din server og chmod din includes/config.inc.php tilbage til 644 af sikkerhedsmæssige grunde.");
|
||||
define('OGP_LANG_go_to_panel', "Klik her, for at logge ind på din OGP.");
|
||||
define('OGP_LANG_unable_to_resolve', "Hvis du ikke har mulighed for, at løse dette problem, besøg venligst OGP hjemmeside ");
|
||||
define('OGP_LANG_slogan', "Åben software siden!");
|
||||
define('OGP_LANG_default_welcome_title_message', "Velkommen! <b style='font-size:12px; font-weight:normal;'>Du kan ændre denne titel i '<a href='?m=settings&p=themes'>Tema indstillinger</a>' under '<a href='?m=administration&p=main'>Administration</a>' tab.</b>");
|
||||
define('LANG_install_lang', "Vælg dit fortrukne sprog");
|
||||
define('LANG_install_welcome', "Velkommen til Open Game Panel installationen");
|
||||
define('LANG_file_permission_check', "Kontrollere påkrævet fil tilladelser");
|
||||
define('LANG_OK', "OK");
|
||||
define('LANG_write_permission_required', "Skrive tilladelse påkrævet");
|
||||
define('LANG_execute_permission_required', "Udføre tilladelse påkrævet");
|
||||
define('LANG_create_an_empty_file', "Skabe en tom fil.");
|
||||
define('LANG_found', "Fundet");
|
||||
define('LANG_not_found', "Ikke fundet");
|
||||
define('LANG_pear_xxtea_info', "Pear Crypt_XXTEA er nødvendig for brug af OGP. I de fleste linux distributioner, dette modul kan blive installeret med de følgende Pear kommando 'pear install Crypt_XXTEA-beta'.");
|
||||
define('LANG_refresh', "Genopfrisk");
|
||||
define('LANG_checking_required_modules', "tjekker nødvendige moduler");
|
||||
define('LANG_checking_optional_modules', "tjekker valgfri moduler");
|
||||
define('LANG_database_type', "Database type");
|
||||
define('LANG_database_settings', "Database adgang opsætning");
|
||||
define('LANG_database_hostname', "Database Hostnavn");
|
||||
define('LANG_database_username', "Database Brugernavn");
|
||||
define('LANG_database_password', "Database Adgangskode");
|
||||
define('LANG_database_name', "Database Navn");
|
||||
define('LANG_database_prefix', "Database Præfiks");
|
||||
define('LANG_next', "Næste");
|
||||
define('LANG_encryption_key', "Krypteret Key (Agent)");
|
||||
define('LANG_agent_port', "Port (Agent)");
|
||||
define('LANG_unable_to_write_config', "Ikke muligt at skive i konfigurationsfilen. Tjek venligst skive tilladelsen igen.");
|
||||
define('LANG_admin_login_details', "Admin login detaljer");
|
||||
define('LANG_config_written', "Konfig filerne blev oprettet succesfuldt");
|
||||
define('LANG_database_created', "Database tabellerne blev oprettet succesfuldt.");
|
||||
define('LANG_admin_login_details_info', "Nu opretter vi en admin bruger for dit Open Game Panel.");
|
||||
define('LANG_username', "Brugernavn");
|
||||
define('LANG_repeat_password', "Gentag adgangskode");
|
||||
define('LANG_email', "E-mail adresse");
|
||||
define('LANG_back', "Tilbage");
|
||||
define('LANG_database_setup_failure', "Setup kunne ikke bygge databases. Tjek venligst dine database konfigurationer.");
|
||||
define('LANG_php_version_check', "kontrollere PHP version");
|
||||
define('LANG_invalid_username', "Du har indtastet ukorrekt brugernavn.");
|
||||
define('LANG_password_too_short', "Din adgangskode er for kort. Det skal være mindst '%d' bogstaver og tal lang.");
|
||||
define('LANG_password_contains_invalid_characters', "Din adgangskode indeholder ugyldige tegn.");
|
||||
define('LANG_invalid_email_address', "Du indtastede en ugyldig email addrese.");
|
||||
define('LANG_setup_complete', "Setup blev færdig gjort succesfuldt. Open Game Panel er nu klar til brug.");
|
||||
define('LANG_remove_install_and_secure_config', "Du burde slette install.php fra din server og chmod din includes/config.inc.php tilbage til 644 af sikkerhedsmæssige grunde.");
|
||||
define('LANG_go_to_panel', "Klik her, for at logge ind på din OGP.");
|
||||
define('LANG_unable_to_resolve', "Hvis du ikke har mulighed for, at løse dette problem, besøg venligst OGP hjemmeside ");
|
||||
define('LANG_slogan', "Åben software siden!");
|
||||
define('LANG_default_welcome_title_message', "Velkommen! <b style='font-size:12px; font-weight:normal;'>Du kan ændre denne titel i '<a href='?m=settings&p=themes'>Tema indstillinger</a>' under '<a href='?m=administration&p=main'>Administration</a>' tab.</b>");
|
||||
?>
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue