From a547aa97a20ebe557c4933603ab79082d80a0050 Mon Sep 17 00:00:00 2001 From: Remdex Date: Thu, 9 Apr 2015 18:47:52 +0200 Subject: [PATCH] Translations and new custom forms --- .../js/angular.lhc.startchatformgenerator.js | 47 ++++++++++ .../tpl/lhchat/chatwidget.tpl.php | 3 + .../tpl/lhchat/offline_form.tpl.php | 3 + .../tpl/lhchat/offline_form_startchat.tpl.php | 3 + .../lhchat/part/admin_form_variables.tpl.php | 17 ++++ .../tpl/lhchat/readoperatormessage.tpl.php | 5 +- .../defaulttheme/tpl/lhchat/startchat.tpl.php | 5 +- .../custom_fields.tpl.php | 73 +++++++++++++++ .../lhchat/startchatformsettings/form.tpl.php | 6 ++ lhc_web/lib/core/lhchat/lhchatvalidator.php | 46 ++++++++-- lhc_web/modules/lhchat/chatwidget.php | 1 + .../modules/lhchat/readoperatormessage.php | 53 ++++++++++- lhc_web/modules/lhchat/startchat.php | 2 + .../modules/lhchat/startchatformsettings.php | 39 +++++++- lhc_web/translations/ar_EG/translation.ts | 58 +++++++----- lhc_web/translations/bg_BG/translation.ts | 60 ++++++++----- lhc_web/translations/cs_CS/translation.ts | 60 ++++++++----- lhc_web/translations/da_DA/translation.ts | 60 ++++++++----- lhc_web/translations/de_DE/translation.ts | 60 ++++++++----- lhc_web/translations/el_EL/translation.ts | 60 ++++++++----- lhc_web/translations/es_MX/translation.ts | 60 ++++++++----- lhc_web/translations/fa_FA/translation.ts | 60 ++++++++----- lhc_web/translations/fi_FI/translation.ts | 60 ++++++++----- lhc_web/translations/fr_FR/translation.ts | 88 +++++++++++-------- lhc_web/translations/hr_HR/translation.ts | 60 ++++++++----- lhc_web/translations/id_ID/translation.ts | 60 ++++++++----- lhc_web/translations/it_IT/translation.ts | 62 +++++++------ lhc_web/translations/ka_KA/translation.ts | 60 ++++++++----- lhc_web/translations/lt_LT/translation.ts | 60 ++++++++----- lhc_web/translations/nl_NL/translation.ts | 62 +++++++------ lhc_web/translations/no_NO/translation.ts | 60 ++++++++----- lhc_web/translations/pl_PL/translation.ts | 60 ++++++++----- lhc_web/translations/pt_BR/translation.ts | 60 ++++++++----- lhc_web/translations/ro_RO/translation.ts | 60 ++++++++----- lhc_web/translations/ru_RU/translation.ts | 60 ++++++++----- lhc_web/translations/sq_AL/translation.ts | 44 ++++++---- lhc_web/translations/sv_SV/translation.ts | 62 +++++++------ lhc_web/translations/th_TH/translation.ts | 60 ++++++++----- lhc_web/translations/tr_TR/translation.ts | 60 ++++++++----- lhc_web/translations/vi_VN/translation.ts | 60 ++++++++----- lhc_web/translations/zh_ZH/translation.ts | 60 ++++++++----- 41 files changed, 1271 insertions(+), 668 deletions(-) create mode 100644 lhc_web/design/defaulttheme/js/angular.lhc.startchatformgenerator.js create mode 100644 lhc_web/design/defaulttheme/tpl/lhchat/part/admin_form_variables.tpl.php create mode 100644 lhc_web/design/defaulttheme/tpl/lhchat/startchatformsettings/custom_fields.tpl.php diff --git a/lhc_web/design/defaulttheme/js/angular.lhc.startchatformgenerator.js b/lhc_web/design/defaulttheme/js/angular.lhc.startchatformgenerator.js new file mode 100644 index 0000000000..164fa98701 --- /dev/null +++ b/lhc_web/design/defaulttheme/js/angular.lhc.startchatformgenerator.js @@ -0,0 +1,47 @@ +lhcAppControllers.controller('StartChatFormCtrl',['$scope','$http','$location','$rootScope', '$log', function($scope, $http, $location, $rootScope, $log) { + + this.startchatfields = []; + this.size = 6; + this.fieldtype = 'text'; + this.visibility = 'all'; + + var that = this; + + this.move = function(element, offset) { + index = that.startchatfields.indexOf(element); + newIndex = index + offset; + if (newIndex > -1 && newIndex < that.startchatfields.length){ + removedElement = that.startchatfields.splice(index, 1)[0]; + that.startchatfields.splice(newIndex, 0, removedElement) + } + }; + + this.addField = function() { + that.startchatfields.push({ + 'fieldname' : that.fieldname, + 'defaultvalue' : that.defaultvalue, + 'fieldtype' : that.fieldtype, + 'visibility' : that.visibility, + 'size' : that.size, + 'isrequired' : that.isrequired + }); + }; + + this.deleteField = function(field) { + that.startchatfields.splice(that.startchatfields.indexOf(field),1); + }; + + this.deleteField = function(field) { + that.startchatfields.splice(that.startchatfields.indexOf(field),1); + }; + + this.moveLeftField = function(field) { + that.move(field,-1); + } + + this.moveRightField = function(field) { + that.move(field,1); + } + + +}]); \ No newline at end of file diff --git a/lhc_web/design/defaulttheme/tpl/lhchat/chatwidget.tpl.php b/lhc_web/design/defaulttheme/tpl/lhchat/chatwidget.tpl.php index ba51bebf64..da730e5870 100644 --- a/lhc_web/design/defaulttheme/tpl/lhchat/chatwidget.tpl.php +++ b/lhc_web/design/defaulttheme/tpl/lhchat/chatwidget.tpl.php @@ -98,6 +98,9 @@ + + + diff --git a/lhc_web/design/defaulttheme/tpl/lhchat/offline_form.tpl.php b/lhc_web/design/defaulttheme/tpl/lhchat/offline_form.tpl.php index 71ee949315..0141313984 100644 --- a/lhc_web/design/defaulttheme/tpl/lhchat/offline_form.tpl.php +++ b/lhc_web/design/defaulttheme/tpl/lhchat/offline_form.tpl.php @@ -66,6 +66,9 @@ + + + diff --git a/lhc_web/design/defaulttheme/tpl/lhchat/offline_form_startchat.tpl.php b/lhc_web/design/defaulttheme/tpl/lhchat/offline_form_startchat.tpl.php index 2c74cbcfb8..913424e3f5 100644 --- a/lhc_web/design/defaulttheme/tpl/lhchat/offline_form_startchat.tpl.php +++ b/lhc_web/design/defaulttheme/tpl/lhchat/offline_form_startchat.tpl.php @@ -52,6 +52,9 @@ + + + diff --git a/lhc_web/design/defaulttheme/tpl/lhchat/part/admin_form_variables.tpl.php b/lhc_web/design/defaulttheme/tpl/lhchat/part/admin_form_variables.tpl.php new file mode 100644 index 0000000000..679df6c99a --- /dev/null +++ b/lhc_web/design/defaulttheme/tpl/lhchat/part/admin_form_variables.tpl.php @@ -0,0 +1,17 @@ + +
+ $adminField) : if ($adminField['visibility'] == 'all' || $adminCustomFieldsMode == $adminField['visibility']) : ?> + + + +
+
+ + +
+
+ +
+ \ No newline at end of file diff --git a/lhc_web/design/defaulttheme/tpl/lhchat/readoperatormessage.tpl.php b/lhc_web/design/defaulttheme/tpl/lhchat/readoperatormessage.tpl.php index fa5e1066b5..619568e327 100644 --- a/lhc_web/design/defaulttheme/tpl/lhchat/readoperatormessage.tpl.php +++ b/lhc_web/design/defaulttheme/tpl/lhchat/readoperatormessage.tpl.php @@ -43,7 +43,10 @@ requires_username == 1 || $visitor->requires_email == 1 || $visitor->requires_phone == 1) : ?> - + + + + diff --git a/lhc_web/design/defaulttheme/tpl/lhchat/startchat.tpl.php b/lhc_web/design/defaulttheme/tpl/lhchat/startchat.tpl.php index b0580056bb..49f11d3a1d 100644 --- a/lhc_web/design/defaulttheme/tpl/lhchat/startchat.tpl.php +++ b/lhc_web/design/defaulttheme/tpl/lhchat/startchat.tpl.php @@ -78,7 +78,10 @@ - + + + + diff --git a/lhc_web/design/defaulttheme/tpl/lhchat/startchatformsettings/custom_fields.tpl.php b/lhc_web/design/defaulttheme/tpl/lhchat/startchatformsettings/custom_fields.tpl.php new file mode 100644 index 0000000000..f8f45cd23d --- /dev/null +++ b/lhc_web/design/defaulttheme/tpl/lhchat/startchatformsettings/custom_fields.tpl.php @@ -0,0 +1,73 @@ +

getTranslation('chat/startchatformsettings','Custom fields generator, these fields will be visible in start chat forms')?>

+ +
ng-init='startChat.startchatfields = '> + +
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+ +
+ +
+ +
+
+
+ +
+
+
+
+ + +
+ +
    +
  • getTranslation('chat/startchatformsettings','Visible only in offline form')?>
  • +
  • getTranslation('chat/startchatformsettings','Visible only in online form')?>
  • +
  • getTranslation('chat/startchatformsettings','Size')?> - {{field.size}}
  • +
  • getTranslation('chat/startchatformsettings','Type')?> - {{field.fieldtype}}
  • +
+ +
+ + + + + + +
+
+ +
\ No newline at end of file diff --git a/lhc_web/design/defaulttheme/tpl/lhchat/startchatformsettings/form.tpl.php b/lhc_web/design/defaulttheme/tpl/lhchat/startchatformsettings/form.tpl.php index 9119d8f9c7..7eac6b4c15 100644 --- a/lhc_web/design/defaulttheme/tpl/lhchat/startchatformsettings/form.tpl.php +++ b/lhc_web/design/defaulttheme/tpl/lhchat/startchatformsettings/form.tpl.php @@ -7,6 +7,7 @@
  • getTranslation('chat/startchatformsettings','Offline form settings');?>
  • getTranslation('chat/startchatformsettings','Additional form settings');?>
  • +
  • getTranslation('chat/startchatformsettings','Custom fields');?>
  • @@ -170,5 +171,10 @@ + +
    + +
    + \ No newline at end of file diff --git a/lhc_web/lib/core/lhchat/lhchatvalidator.php b/lhc_web/lib/core/lhchat/lhchatvalidator.php index 73ca7c367c..0e082df7cf 100644 --- a/lhc_web/lib/core/lhchat/lhchatvalidator.php +++ b/lhc_web/lib/core/lhchat/lhchatvalidator.php @@ -166,6 +166,14 @@ public static function validateStartChat(& $inputForm, & $start_data_fields, & $ $validationFields[$nameField] = new ezcInputFormDefinitionElement( ezcInputFormDefinitionElement::OPTIONAL, 'string' ); } + // Custom start chat fields + $validationFields['value_items_admin'] = new ezcInputFormDefinitionElement( + ezcInputFormDefinitionElement::OPTIONAL, 'unsafe_raw', + null, + FILTER_REQUIRE_ARRAY + ); + + $form = new ezcInputForm( INPUT_POST, $validationFields ); $Errors = array(); @@ -218,7 +226,7 @@ public static function validateStartChat(& $inputForm, & $start_data_fields, & $ $chat->email = $inputForm->email = $_POST['Email']; } } - + // Validate question if (isset($validationFields['Question'])) { @@ -339,6 +347,7 @@ public static function validateStartChat(& $inputForm, & $start_data_fields, & $ } } + $stringParts = array(); if ( $form->hasValidData( 'name_items' ) && !empty($form->name_items)) { @@ -374,17 +383,44 @@ public static function validateStartChat(& $inputForm, & $start_data_fields, & $ } $inputForm->name_items = $form->name_items; - - $stringParts = array(); + foreach ($form->name_items as $key => $name_item) { if (isset($inputForm->values_req[$key]) && $inputForm->values_req[$key] == 't' && ($inputForm->value_show[$key] == 'b' || $inputForm->value_show[$key] == (isset($additionalParams['offline']) ? 'off' : 'on')) && (!isset($valuesArray[$key]) || trim($valuesArray[$key]) == '')) { $Errors[] = trim($name_item).' : '.erTranslationClassLhTranslation::getInstance()->getTranslation('chat/startchat','is required'); } $stringParts[] = array('key' => $name_item,'value' => (isset($valuesArray[$key]) ? trim($valuesArray[$key]) : '')); - } + } + } + - $chat->additional_data = json_encode($stringParts); + if (isset($start_data_fields['custom_fields']) && $start_data_fields['custom_fields'] != '') { + $customAdminfields = json_decode($start_data_fields['custom_fields'],true); + + $valuesArray = array(); + + // Fill values if exists + if ($form->hasValidData( 'value_items_admin' )){ + $inputForm->value_items_admin = $valuesArray = $form->value_items_admin; + } + + if (is_array($customAdminfields)){ + foreach ($customAdminfields as $key => $adminField) { + + if (isset($inputForm->value_items_admin[$key]) && isset($adminField['isrequired']) && $adminField['isrequired'] == 'true' && ($adminField['visibility'] == 'all' || $adminField['visibility'] == (isset($additionalParams['offline']) ? 'off' : 'on')) && (!isset($valuesArray[$key]) || trim($valuesArray[$key]) == '')) { + $Errors[] = trim($adminField['fieldname']).': '.erTranslationClassLhTranslation::getInstance()->getTranslation('chat/startchat','is required'); + } + + if (isset($valuesArray[$key]) && $valuesArray[$key] != '') { + $stringParts[] = array('key' => $adminField['fieldname'], 'value' => (isset($valuesArray[$key]) ? trim($valuesArray[$key]) : '')); + } + } + } + } + + if (!empty($stringParts)) { + $chat->additional_data = json_encode($stringParts); } + erLhcoreClassChatEventDispatcher::getInstance()->dispatch('chat.validate_start_chat',array('errors' => & $Errors, 'input_form' => & $inputForm, 'start_data_fields' => & $start_data_fields, 'chat' => & $chat,'additional_params' => & $additionalParams)); diff --git a/lhc_web/modules/lhchat/chatwidget.php b/lhc_web/modules/lhchat/chatwidget.php index ba5e4df7a3..71e4301781 100644 --- a/lhc_web/modules/lhchat/chatwidget.php +++ b/lhc_web/modules/lhchat/chatwidget.php @@ -151,6 +151,7 @@ $inputData->value_items = array(); $inputData->value_sizes = array(); $inputData->value_types = array(); +$inputData->value_items_admin = array(); // These variables get's filled from start chat form settings $inputData->hattr = array(); $inputData->ua = $Params['user_parameters_unordered']['ua']; $inputData->priority = is_numeric($Params['user_parameters_unordered']['priority']) ? (int)$Params['user_parameters_unordered']['priority'] : false; diff --git a/lhc_web/modules/lhchat/readoperatormessage.php b/lhc_web/modules/lhchat/readoperatormessage.php index 3e9c724ba9..80e60dfc1a 100644 --- a/lhc_web/modules/lhchat/readoperatormessage.php +++ b/lhc_web/modules/lhchat/readoperatormessage.php @@ -34,6 +34,7 @@ $inputData->value_sizes = array(); $inputData->ua = $Params['user_parameters_unordered']['ua']; $inputData->hattr = array(); +$inputData->value_items_admin = array(); // These variables get's filled from start chat form settings if ((string)$Params['user_parameters_unordered']['vid'] != '') { $inputData->vid = (string)$Params['user_parameters_unordered']['vid']; @@ -54,6 +55,10 @@ $tpl->set('playsound',(string)$Params['user_parameters_unordered']['playsound'] == 'true' && !isset($_POST['askQuestion']) && erLhcoreClassModelChatConfig::fetch('sound_invitation')->current_value == 1); +$startData = erLhcoreClassModelChatConfig::fetch('start_chat_data'); +$startDataFields = (array)$startData->data; + + $chat = new erLhcoreClassModelChat(); $modeAppendTheme = ''; @@ -98,7 +103,14 @@ $validationFields['value_sizes'] = new ezcInputFormDefinitionElement ( ezcInputFormDefinitionElement::OPTIONAL, 'unsafe_raw', null, FILTER_REQUIRE_ARRAY ); $validationFields['value_show'] = new ezcInputFormDefinitionElement ( ezcInputFormDefinitionElement::OPTIONAL, 'string', null, FILTER_REQUIRE_ARRAY ); $validationFields['hattr'] = new ezcInputFormDefinitionElement ( ezcInputFormDefinitionElement::OPTIONAL, 'string', null, FILTER_REQUIRE_ARRAY ); - + // Custom start chat fields + $validationFields['value_items_admin'] = new ezcInputFormDefinitionElement( + ezcInputFormDefinitionElement::OPTIONAL, 'unsafe_raw', + null, + FILTER_REQUIRE_ARRAY + ); + + if (erLhcoreClassModelChatConfig::fetch('session_captcha')->current_value == 1) { // Start session if required only $currentUser = erLhcoreClassUser::instance(); @@ -149,6 +161,8 @@ } } + $stringParts = array(); + // validate and insert additional_data code in proactive chat if ($form->hasValidData ( 'name_items' ) && ! empty ( $form->name_items )) { $valuesArray = array (); @@ -188,11 +202,37 @@ 'value' => (isset ( $valuesArray [$key] ) ? trim ( $valuesArray [$key] ) : '') ); } - - $chat->additional_data = json_encode ( $stringParts ); } - + + // Admin custom fields + if (isset($startDataFields['custom_fields']) && $startDataFields['custom_fields'] != '') { + $customAdminfields = json_decode($startDataFields['custom_fields'],true); + + $valuesArray = array(); + // Fill values if exists + if ($form->hasValidData( 'value_items_admin' )){ + $inputData->value_items_admin = $valuesArray = $form->value_items_admin; + } + + if (is_array($customAdminfields)){ + foreach ($customAdminfields as $key => $adminField) { + + if (isset($form->value_items_admin[$key]) && isset($adminField['isrequired']) && $adminField['isrequired'] == 'true' && ($adminField['visibility'] == 'all' || $adminField['visibility'] == 'on') && (!isset($valuesArray[$key]) || trim($valuesArray[$key]) == '')) { + $Errors[] = trim($adminField['fieldname']).': '.erTranslationClassLhTranslation::getInstance()->getTranslation('chat/startchat','is required'); + } + + if (isset($valuesArray[$key]) && $valuesArray[$key] != '') { + $stringParts[] = array('key' => $adminField['fieldname'], 'value' => (isset($valuesArray[$key]) ? trim($valuesArray[$key]) : '')); + } + } + } + } + + if (!empty($stringParts)) { + $chat->additional_data = json_encode ( $stringParts ); + } + if (erLhcoreClassModelChatConfig::fetch('session_captcha')->current_value == 1) { if ( !$form->hasValidData( $nameField ) || $form->$nameField == '' || $form->$nameField < time()-600 || $hashCaptcha != sha1($_SERVER['REMOTE_ADDR'].$form->$nameField.erConfigClassLhConfig::getInstance()->getSetting( 'site', 'secrethash' ))){ $Errors[] = erTranslationClassLhTranslation::getInstance()->getTranslation('chat/startchat','Invalid captcha code, please enable Javascript!'); @@ -346,6 +386,8 @@ } } +$tpl->set('start_data_fields',$startDataFields); + // User this only if not post if (!ezcInputForm::hasPostData()) { $definition = array( @@ -446,6 +488,9 @@ $tpl->set('referer_site',$_POST['r']); } + + + erLhcoreClassChatEventDispatcher::getInstance()->dispatch('chat.readoperatormessage',array('tpl' => $tpl, 'params' => & $Params)); $Result['content'] = $tpl->fetch(); diff --git a/lhc_web/modules/lhchat/startchat.php b/lhc_web/modules/lhchat/startchat.php index cf4ac240d2..4ffe174f7c 100644 --- a/lhc_web/modules/lhchat/startchat.php +++ b/lhc_web/modules/lhchat/startchat.php @@ -135,10 +135,12 @@ $inputData->value_items = array(); $inputData->value_types = array(); $inputData->value_sizes = array(); +$inputData->value_items_admin = array(); // These variables get's filled from start chat form settings $inputData->hattr = array(); $inputData->hash_resume = false; $inputData->vid = false; + // Perhaps it's direct argument if ((string)$Params['user_parameters_unordered']['hash_resume'] != '') { CSCacheAPC::getMem()->setSession('chat_hash_widget_resume',(string)$Params['user_parameters_unordered']['hash_resume'],true,true); diff --git a/lhc_web/modules/lhchat/startchatformsettings.php b/lhc_web/modules/lhchat/startchatformsettings.php index f8ecc3c5a5..cb0a959da9 100644 --- a/lhc_web/modules/lhchat/startchatformsettings.php +++ b/lhc_web/modules/lhchat/startchatformsettings.php @@ -150,7 +150,27 @@ ), 'HideMessageLabel' => new ezcInputFormDefinitionElement( ezcInputFormDefinitionElement::OPTIONAL, 'boolean' - ) + ), + + // Custom fields from back office + 'customFieldLabel' => new ezcInputFormDefinitionElement( + ezcInputFormDefinitionElement::OPTIONAL, 'unsafe_raw', null, FILTER_REQUIRE_ARRAY + ), + 'customFieldType' => new ezcInputFormDefinitionElement( + ezcInputFormDefinitionElement::OPTIONAL, 'unsafe_raw', null, FILTER_REQUIRE_ARRAY + ), + 'customFieldSize' => new ezcInputFormDefinitionElement( + ezcInputFormDefinitionElement::OPTIONAL, 'unsafe_raw', null, FILTER_REQUIRE_ARRAY + ), + 'customFieldVisibility' => new ezcInputFormDefinitionElement( + ezcInputFormDefinitionElement::OPTIONAL, 'unsafe_raw', null, FILTER_REQUIRE_ARRAY + ), + 'customFieldIsrequired' => new ezcInputFormDefinitionElement( + ezcInputFormDefinitionElement::OPTIONAL, 'unsafe_raw', null, FILTER_REQUIRE_ARRAY + ), + 'customFieldDefaultValue' => new ezcInputFormDefinitionElement( + ezcInputFormDefinitionElement::OPTIONAL, 'unsafe_raw', null, FILTER_REQUIRE_ARRAY + ), ); $form = new ezcInputForm( INPUT_POST, $definition ); @@ -436,6 +456,22 @@ $data['offline_message_require_option'] = 'required'; } + if ( $form->hasValidData( 'customFieldType' ) && !empty($form->customFieldType)) { + $customFields = array(); + foreach ($form->customFieldType as $key => $customFieldType) { + $customFields[] = array( + 'fieldname' => $form->customFieldLabel[$key], + 'defaultvalue' => $form->customFieldDefaultValue[$key], + 'fieldtype' => $customFieldType, + 'size' => $form->customFieldSize[$key], + 'visibility' => $form->customFieldVisibility[$key], + 'isrequired' => $form->customFieldIsrequired[$key], + ); + } + $data['custom_fields'] = json_encode($customFields,JSON_HEX_APOS); + } else { + $data['custom_fields'] = ''; + } if ($data['message_visible_in_popup'] == true && $data['message_require_option'] == 'required') { $hasValidPopupData = true; @@ -477,6 +513,7 @@ $tpl->set('start_chat_data',$data); $Result['content'] = $tpl->fetch(); +$Result['additional_footer_js'] = ''; $Result['path'] = array(array('url' => erLhcoreClassDesign::baseurl('system/configuration'),'title' => erTranslationClassLhTranslation::getInstance()->getTranslation('department/departments','System configuration')), array('title' => erTranslationClassLhTranslation::getInstance()->getTranslation('chat/startchatformsettings','Start chat form settings'))); diff --git a/lhc_web/translations/ar_EG/translation.ts b/lhc_web/translations/ar_EG/translation.ts index a437f9c95e..a3d1ea8591 100644 --- a/lhc_web/translations/ar_EG/translation.ts +++ b/lhc_web/translations/ar_EG/translation.ts @@ -694,6 +694,10 @@ system/htmlcode + + Popup window size + حجم النافذة المنبثقة + HTML code شفرة HTML @@ -870,6 +874,14 @@ Speech language + + General + + + + Design + + Hide status when offline @@ -915,51 +927,51 @@ - Popup window size - حجم النافذة المنبثقة + Minimize action, applies only if status widget is at the bottom + - Popup window width in pixels - عرض النافذة المنبثقة بالبكسل + Keep where it was + - Popup window height in pixels - ارتفاع النافذة المنبثقة بالبكسل + Minimize to bottom of the screen + - Widget width - عرض الودجة + Native placement - it will be shown where the html is embedded + - Widget width in pixels - عرض الودجة بالبكسل + Invisible, only JS API will be included + - height - الارتفاع + Popup window width + - Widget height in pixels - + Popup window width in pixels + عرض النافذة المنبثقة بالبكسل - Native placement - it will be shown where the html is embedded - + height + الارتفاع - Invisible, only JS API will be included - + Popup window height in pixels + ارتفاع النافذة المنبثقة بالبكسل - Minimize action, applies only if status widget is at the bottom - + Widget width + عرض الودجة - Keep where it was - + Widget width in pixels + عرض الودجة بالبكسل - Minimize to bottom of the screen + Widget height in pixels diff --git a/lhc_web/translations/bg_BG/translation.ts b/lhc_web/translations/bg_BG/translation.ts index 8565d13de6..eb63eec0a8 100644 --- a/lhc_web/translations/bg_BG/translation.ts +++ b/lhc_web/translations/bg_BG/translation.ts @@ -694,6 +694,10 @@ system/htmlcode + + Popup window size + Размер на изкачащия прозорец + HTML code HTML код @@ -870,6 +874,14 @@ Speech language Език на разговор + + General + + + + Design + + Hide status when offline Скрийте статуса, когато не сте на линия @@ -915,52 +927,52 @@ Изключване на активните покани, полезно е, ако искате да ги изключите и от сайта - Popup window size - Размер на изкачащия прозорец + Minimize action, applies only if status widget is at the bottom + Действие при минимизиране, прилага се само ако модула е на дъното на прозореца - Popup window width in pixels - Ширина на изкачащия прозорец в пиксели + Keep where it was + Да остане където е - Popup window height in pixels - Височина на изкачащия прозорец в пиксели + Minimize to bottom of the screen + Да се минимизира на дъното на прозореца - Widget width - Размер на модула + Native placement - it will be shown where the html is embedded + Местно позициониране - ще се покаже където html адреса е вграден - Widget width in pixels - Ширина на модула в пиксели + Invisible, only JS API will be included + Невидим, само JS API ще бъдат включени - height - Височина + Popup window width + - Widget height in pixels - Височина на модула в пиксели + Popup window width in pixels + Ширина на изкачащия прозорец в пиксели - Native placement - it will be shown where the html is embedded - Местно позициониране - ще се покаже където html адреса е вграден + height + Височина - Invisible, only JS API will be included - Невидим, само JS API ще бъдат включени + Popup window height in pixels + Височина на изкачащия прозорец в пиксели - Minimize action, applies only if status widget is at the bottom - Действие при минимизиране, прилага се само ако модула е на дъното на прозореца + Widget width + Размер на модула - Keep where it was - Да остане където е + Widget width in pixels + Ширина на модула в пиксели - Minimize to bottom of the screen - Да се минимизира на дъното на прозореца + Widget height in pixels + Височина на модула в пиксели Please do not enter protocol, only domain name is required diff --git a/lhc_web/translations/cs_CS/translation.ts b/lhc_web/translations/cs_CS/translation.ts index 5af51325c9..f4c2c47d56 100644 --- a/lhc_web/translations/cs_CS/translation.ts +++ b/lhc_web/translations/cs_CS/translation.ts @@ -694,6 +694,10 @@ system/htmlcode + + Popup window size + Velikost vyskakovacího okna + HTML code HTML kód @@ -870,6 +874,14 @@ Speech language Jazyk řeči + + General + Obecné + + + Design + Návrh + Hide status when offline Nezobrazovat stav pokud je operátor offline @@ -915,52 +927,52 @@ Deaktivace proaktivních pozvánek k rozhovoru. Použijte, pokud chcete vypnout jejich použití na webu. - Popup window size - Velikost vyskakovacího okna + Minimize action, applies only if status widget is at the bottom + Minimalizace, použije se pouze pokud je widget stavu dole - Popup window width in pixels - Šířka vyskakovacího okna v pixelech + Keep where it was + Pamatuj si, kde byl - Popup window height in pixels - Výška vyskakovacího okna v pixelech + Minimize to bottom of the screen + Minimalizovat na obrazovce dolů - Widget width - Šířka Widgetu + Native placement - it will be shown where the html is embedded + Původní umístění - zobrazí se v místě, kde se nachází kód v HTML stránky - Widget width in pixels - Šířka Widgetu v pixelech + Invisible, only JS API will be included + Neviditelný, bude vloženo pouze JS API - height - výška + Popup window width + Šířka vyskakovacího okna - Widget height in pixels - Výška widgetu v pixelech + Popup window width in pixels + Šířka vyskakovacího okna v pixelech - Native placement - it will be shown where the html is embedded - Původní umístění - zobrazí se v místě, kde se nachází kód v HTML stránky + height + výška - Invisible, only JS API will be included - Neviditelný, bude vloženo pouze JS API + Popup window height in pixels + Výška vyskakovacího okna v pixelech - Minimize action, applies only if status widget is at the bottom - Minimalizace, použije se pouze pokud je widget stavu dole + Widget width + Šířka Widgetu - Keep where it was - Pamatuj si, kde byl + Widget width in pixels + Šířka Widgetu v pixelech - Minimize to bottom of the screen - Minimalizovat na obrazovce dolů + Widget height in pixels + Výška widgetu v pixelech Please do not enter protocol, only domain name is required diff --git a/lhc_web/translations/da_DA/translation.ts b/lhc_web/translations/da_DA/translation.ts index d17b6dce94..f52d5fb233 100644 --- a/lhc_web/translations/da_DA/translation.ts +++ b/lhc_web/translations/da_DA/translation.ts @@ -694,6 +694,10 @@ system/htmlcode + + Popup window size + Popup vinduesstørrelse + HTML code HTML-kode @@ -870,6 +874,14 @@ Speech language + + General + + + + Design + + Hide status when offline Skjul status når du arbejder offline @@ -915,52 +927,52 @@ Deaktivere proaktive invitationer, nyttigt hvis du vil deaktivere dem fra del af webstedet. - Popup window size - Popup vinduesstørrelse + Minimize action, applies only if status widget is at the bottom + - Popup window width in pixels - Popup vinduesbredde i pixels + Keep where it was + - Popup window height in pixels - Popup vindueshøjde i pixels + Minimize to bottom of the screen + - Widget width - Widget bredde + Native placement - it will be shown where the html is embedded + Oprindelig placering - det bliver vist, hvor html er integreret - Widget width in pixels - Widget bredde i pixels + Invisible, only JS API will be included + - height - højde + Popup window width + - Widget height in pixels - Widget højde i pixels + Popup window width in pixels + Popup vinduesbredde i pixels - Native placement - it will be shown where the html is embedded - Oprindelig placering - det bliver vist, hvor html er integreret + height + højde - Invisible, only JS API will be included - + Popup window height in pixels + Popup vindueshøjde i pixels - Minimize action, applies only if status widget is at the bottom - + Widget width + Widget bredde - Keep where it was - + Widget width in pixels + Widget bredde i pixels - Minimize to bottom of the screen - + Widget height in pixels + Widget højde i pixels Please do not enter protocol, only domain name is required diff --git a/lhc_web/translations/de_DE/translation.ts b/lhc_web/translations/de_DE/translation.ts index 01d297d9aa..d962a00042 100644 --- a/lhc_web/translations/de_DE/translation.ts +++ b/lhc_web/translations/de_DE/translation.ts @@ -694,6 +694,10 @@ system/htmlcode + + Popup window size + Groesse des Popup-Fenster + HTML code HTML-Code @@ -870,6 +874,14 @@ Speech language + + General + + + + Design + + Hide status when offline Status ausblenden, wenn offline @@ -915,52 +927,52 @@ Deaktivere pro-aktive Einladungen, dies ist nützlich, wenn diese auf der Seite deaktiviert werden sollen. - Popup window size - Groesse des Popup-Fenster + Minimize action, applies only if status widget is at the bottom + - Popup window width in pixels - Breite des Popup-Fenster + Keep where it was + - Popup window height in pixels - Hoehe des Popup-Fenster + Minimize to bottom of the screen + Nach unten minimieren - Widget width - Widget Breite + Native placement - it will be shown where the html is embedded + Ursprüngliche Platzierung - wird dort angezeigt, wo das html eingebettet ist - Widget width in pixels - Breite des Widget in Pixel + Invisible, only JS API will be included + - height - Hoehe + Popup window width + - Widget height in pixels - Höhe des Widget in Pixel + Popup window width in pixels + Breite des Popup-Fenster - Native placement - it will be shown where the html is embedded - Ursprüngliche Platzierung - wird dort angezeigt, wo das html eingebettet ist + height + Hoehe - Invisible, only JS API will be included - + Popup window height in pixels + Hoehe des Popup-Fenster - Minimize action, applies only if status widget is at the bottom - + Widget width + Widget Breite - Keep where it was - + Widget width in pixels + Breite des Widget in Pixel - Minimize to bottom of the screen - Nach unten minimieren + Widget height in pixels + Höhe des Widget in Pixel Please do not enter protocol, only domain name is required diff --git a/lhc_web/translations/el_EL/translation.ts b/lhc_web/translations/el_EL/translation.ts index 01325dc4ed..b8abaac8bd 100644 --- a/lhc_web/translations/el_EL/translation.ts +++ b/lhc_web/translations/el_EL/translation.ts @@ -694,6 +694,10 @@ system/htmlcode + + Popup window size + Αναδυόμενο παράθυρο μέγεθος + HTML code Κώδικα HTML @@ -870,6 +874,14 @@ Speech language + + General + + + + Design + + Hide status when offline Απόκρυψη status, όταν είναι εκτός σύνδεσης @@ -915,52 +927,52 @@ Απενεργοποιήσετε προορατικού προσκλήσεις, χρήσιμο αν θέλετε να απενεργοποιήσετε από τμήμα τοποθεσίας. - Popup window size - Αναδυόμενο παράθυρο μέγεθος + Minimize action, applies only if status widget is at the bottom + Ελαχιστοποίηση της δράσης, να ισχύει μόνο αν το γραφικό στοιχείο κατάσταση είναι στο κάτω μέρος - Popup window width in pixels - Αναδυόμενο παράθυρο πλάτος σε pixel + Keep where it was + Κρατήσει όπου ήταν - Popup window height in pixels - Αναδυόμενο παράθυρο ύψος, σε pixel + Minimize to bottom of the screen + Ελαχιστοποίηση κάτω μέρος της οθόνης - Widget width - Πλάτος του widget + Native placement - it will be shown where the html is embedded + Μητρική τοποθέτηση - θα παρουσιαστεί όπου ενσωματώνεται το html - Widget width in pixels - Widget πλάτος σε pixel + Invisible, only JS API will be included + Αόρατο, μόνο JS API θα πρέπει να περιλαμβάνονται - height - ύψος + Popup window width + - Widget height in pixels - Widget ύψος, σε pixel + Popup window width in pixels + Αναδυόμενο παράθυρο πλάτος σε pixel - Native placement - it will be shown where the html is embedded - Μητρική τοποθέτηση - θα παρουσιαστεί όπου ενσωματώνεται το html + height + ύψος - Invisible, only JS API will be included - Αόρατο, μόνο JS API θα πρέπει να περιλαμβάνονται + Popup window height in pixels + Αναδυόμενο παράθυρο ύψος, σε pixel - Minimize action, applies only if status widget is at the bottom - Ελαχιστοποίηση της δράσης, να ισχύει μόνο αν το γραφικό στοιχείο κατάσταση είναι στο κάτω μέρος + Widget width + Πλάτος του widget - Keep where it was - Κρατήσει όπου ήταν + Widget width in pixels + Widget πλάτος σε pixel - Minimize to bottom of the screen - Ελαχιστοποίηση κάτω μέρος της οθόνης + Widget height in pixels + Widget ύψος, σε pixel Please do not enter protocol, only domain name is required diff --git a/lhc_web/translations/es_MX/translation.ts b/lhc_web/translations/es_MX/translation.ts index 3694077247..f8f9c7902b 100644 --- a/lhc_web/translations/es_MX/translation.ts +++ b/lhc_web/translations/es_MX/translation.ts @@ -694,6 +694,10 @@ system/htmlcode + + Popup window size + Tamaño de la ventana emergente + HTML code Código HTML @@ -870,6 +874,14 @@ Speech language Idioma del dictado + + General + + + + Design + + Hide status when offline Ocultar estado si está fuera de línea @@ -915,52 +927,52 @@ Desactivar invitaciones pro-activas, muy útil si quieres desactivarlos de esta parte del sitio. - Popup window size - Tamaño de la ventana emergente + Minimize action, applies only if status widget is at the bottom + Minimizar, Aplica solo si el Widget esta en pie de pagina - Popup window width in pixels - Anchura de la ventana emergente en píxeles + Keep where it was + Mantenga donde estaba - Popup window height in pixels - Altura de la ventana emergente en píxeles + Minimize to bottom of the screen + Minimizar a la parte inferior de la pantalla - Widget width - Ancho del Widget + Native placement - it will be shown where the html is embedded + Colocación natural - se mostrará donde el código HTML esté incrustado - Widget width in pixels - Ancho del Widget en píxeles + Invisible, only JS API will be included + Invisible, solo la API JS será incluida - height - altura + Popup window width + - Widget height in pixels - Altura del Widget en píxeles + Popup window width in pixels + Anchura de la ventana emergente en píxeles - Native placement - it will be shown where the html is embedded - Colocación natural - se mostrará donde el código HTML esté incrustado + height + altura - Invisible, only JS API will be included - Invisible, solo la API JS será incluida + Popup window height in pixels + Altura de la ventana emergente en píxeles - Minimize action, applies only if status widget is at the bottom - Minimizar, Aplica solo si el Widget esta en pie de pagina + Widget width + Ancho del Widget - Keep where it was - Mantenga donde estaba + Widget width in pixels + Ancho del Widget en píxeles - Minimize to bottom of the screen - Minimizar a la parte inferior de la pantalla + Widget height in pixels + Altura del Widget en píxeles Please do not enter protocol, only domain name is required diff --git a/lhc_web/translations/fa_FA/translation.ts b/lhc_web/translations/fa_FA/translation.ts index ef518f9a2c..9c87a12164 100644 --- a/lhc_web/translations/fa_FA/translation.ts +++ b/lhc_web/translations/fa_FA/translation.ts @@ -694,6 +694,10 @@ system/htmlcode + + Popup window size + اندازه پنجره Popup + HTML code کد HTML @@ -870,6 +874,14 @@ Speech language زبان + + General + + + + Design + + Hide status when offline عدم نمایش وضعیت در حالت آفلاین @@ -915,52 +927,52 @@ غیرفعال کردن دعوت به چت - Popup window size - اندازه پنجره Popup + Minimize action, applies only if status widget is at the bottom + عملیات کمینه کردن، فقط زمانی اعمال می شود که ابزارک وضعیت در پایین صفحه است - Popup window width in pixels - عرض پنجره Popup بر حسب پیکسل + Keep where it was + جایی که بود نگه داشته شود * - Popup window height in pixels - ارتفاع پنجره Popup بر حسب پیکسل + Minimize to bottom of the screen + کمینه شدن به پایین صفحه - Widget width - عرض ابزارک + Native placement - it will be shown where the html is embedded + محل قرارگیری - محل html داخلی را نمایش می دهد. - Widget width in pixels - عرض ابزارک بر حسب پیکسل + Invisible, only JS API will be included + غیرقابل مشاهده، فقط JS API شامل خواهد شد - height - ارتفاع + Popup window width + - Widget height in pixels - ارتفاع ابزارک بر حسب پیکسل + Popup window width in pixels + عرض پنجره Popup بر حسب پیکسل - Native placement - it will be shown where the html is embedded - محل قرارگیری - محل html داخلی را نمایش می دهد. + height + ارتفاع - Invisible, only JS API will be included - غیرقابل مشاهده، فقط JS API شامل خواهد شد + Popup window height in pixels + ارتفاع پنجره Popup بر حسب پیکسل - Minimize action, applies only if status widget is at the bottom - عملیات کمینه کردن، فقط زمانی اعمال می شود که ابزارک وضعیت در پایین صفحه است + Widget width + عرض ابزارک - Keep where it was - جایی که بود نگه داشته شود * + Widget width in pixels + عرض ابزارک بر حسب پیکسل - Minimize to bottom of the screen - کمینه شدن به پایین صفحه + Widget height in pixels + ارتفاع ابزارک بر حسب پیکسل Please do not enter protocol, only domain name is required diff --git a/lhc_web/translations/fi_FI/translation.ts b/lhc_web/translations/fi_FI/translation.ts index d7b474385d..1790c914f1 100644 --- a/lhc_web/translations/fi_FI/translation.ts +++ b/lhc_web/translations/fi_FI/translation.ts @@ -694,6 +694,10 @@ system/htmlcode + + Popup window size + Popup-ikkunan koko + HTML code HTML koodi @@ -870,6 +874,14 @@ Speech language Puheen kieli + + General + + + + Design + + Hide status when offline Piilota, jos ei käsittelijöitä @@ -915,52 +927,52 @@ Estä proaktiiviset kutsut. - Popup window size - Popup-ikkunan koko + Minimize action, applies only if status widget is at the bottom + Pienennykseen liittyvä toimenpide, käytetään vain jos status widget on alareunassa - Popup window width in pixels - Popup-ikkunan leveys (px) + Keep where it was + Pidä missä se oli - Popup window height in pixels - Popup-ikkunan korkeus (px) + Minimize to bottom of the screen + Pienennä ruudun alareunaan - Widget width - Widgetin leveys + Native placement - it will be shown where the html is embedded + Natiivi sijoitus - näytetään siinä kohdassa missä html sijaitsee - Widget width in pixels - Widgetin leveys (px) + Invisible, only JS API will be included + - height - Korkeus + Popup window width + - Widget height in pixels - Widgetin korkeus (px) + Popup window width in pixels + Popup-ikkunan leveys (px) - Native placement - it will be shown where the html is embedded - Natiivi sijoitus - näytetään siinä kohdassa missä html sijaitsee + height + Korkeus - Invisible, only JS API will be included - + Popup window height in pixels + Popup-ikkunan korkeus (px) - Minimize action, applies only if status widget is at the bottom - Pienennykseen liittyvä toimenpide, käytetään vain jos status widget on alareunassa + Widget width + Widgetin leveys - Keep where it was - Pidä missä se oli + Widget width in pixels + Widgetin leveys (px) - Minimize to bottom of the screen - Pienennä ruudun alareunaan + Widget height in pixels + Widgetin korkeus (px) Please do not enter protocol, only domain name is required diff --git a/lhc_web/translations/fr_FR/translation.ts b/lhc_web/translations/fr_FR/translation.ts index 95e0401404..0663ca34f2 100644 --- a/lhc_web/translations/fr_FR/translation.ts +++ b/lhc_web/translations/fr_FR/translation.ts @@ -151,7 +151,7 @@ Home page tabs order - + Ordre des onglets de la page principale Is visitor e-mail required for FAQ @@ -412,7 +412,7 @@ Header height (px) - + Hauteur de l'entête (px) Header padding (px) @@ -420,7 +420,7 @@ Site URL - + URL du site Text above start chat form fields @@ -694,6 +694,10 @@ system/htmlcode + + Popup window size + Taille de la fenêtre popup + HTML code Code HTML @@ -870,6 +874,14 @@ Speech language + + General + + + + Design + + Hide status when offline Masquer le statut si hors ligne @@ -915,52 +927,52 @@ Désactiver les invitations pro actives, utile si vous voulez les désactiver de la partie du site. - Popup window size - Taille de la fenêtre popup + Minimize action, applies only if status widget is at the bottom + Action minimiser, s'applique uniquement si le widget de statut est en bas - Popup window width in pixels - Largeur de la fenêtre popup en pixels + Keep where it was + Garder où c'était - Popup window height in pixels - Hauteur de la fenêtre popup en pixels + Minimize to bottom of the screen + Minimisez au bas de l'écran - Widget width - Largeur du widget + Native placement - it will be shown where the html is embedded + Placement d'origine - affiché où le html est intégré - Widget width in pixels - Largeur du widget en pixels + Invisible, only JS API will be included + Invisible, seule l'API JS sera incluse - height - hauteur + Popup window width + - Widget height in pixels - Hauteur du widget en pixels + Popup window width in pixels + Largeur de la fenêtre popup en pixels - Native placement - it will be shown where the html is embedded - Placement d'origine - affiché où le html est intégré + height + hauteur - Invisible, only JS API will be included - Invisible, seule l'API JS sera incluse + Popup window height in pixels + Hauteur de la fenêtre popup en pixels - Minimize action, applies only if status widget is at the bottom - Action minimiser, s'applique uniquement si le widget de statut est en bas + Widget width + Largeur du widget - Keep where it was - Garder où c'était + Widget width in pixels + Largeur du widget en pixels - Minimize to bottom of the screen - Minimisez au bas de l'écran + Widget height in pixels + Hauteur du widget en pixels Please do not enter protocol, only domain name is required @@ -1788,7 +1800,7 @@ Notes - + Notes Send @@ -1831,11 +1843,11 @@ Auto translate - + Traduction automatique Translating - + Traduction Automatically detected @@ -1855,7 +1867,7 @@ Translated text - + Texte traduit Detected language @@ -1867,7 +1879,7 @@ Translate - + Traduire Enable translation service @@ -1875,11 +1887,11 @@ Bing - + Bing Google - + Google Use Bing service @@ -1962,11 +1974,11 @@ Sent by Customer - + Envoyé par le client Sent by Operator - + Envoyé par l'opérateur Drop your files here. @@ -2119,7 +2131,7 @@ SMTP - + SMTP @@ -2925,7 +2937,7 @@ Online visitors list - + Liste des visiteurs en ligne Online users on map diff --git a/lhc_web/translations/hr_HR/translation.ts b/lhc_web/translations/hr_HR/translation.ts index a6400b342a..e3e855591e 100644 --- a/lhc_web/translations/hr_HR/translation.ts +++ b/lhc_web/translations/hr_HR/translation.ts @@ -694,6 +694,10 @@ system/htmlcode + + Popup window size + Veličina popup prozora + HTML code HTML kod @@ -870,6 +874,14 @@ Speech language + + General + + + + Design + + Hide status when offline Sakrij status dok si offline @@ -915,52 +927,52 @@ Onemogući pro aktivne pozivnice. Korisno ako ih želite onemogućiti u dijelu web sjedišta. - Popup window size - Veličina popup prozora + Minimize action, applies only if status widget is at the bottom + - Popup window width in pixels - Širina popup przora u pikselima + Keep where it was + - Popup window height in pixels - Visina popup prozora u pikselima + Minimize to bottom of the screen + - Widget width - Širina widgeta + Native placement - it will be shown where the html is embedded + Prirodan položaj - bit će pokazano tamo gdje je ugrađen HTML - Widget width in pixels - Širina widgeta u pikselima + Invisible, only JS API will be included + - height - visina + Popup window width + - Widget height in pixels - Visina widgeta u pikselima + Popup window width in pixels + Širina popup przora u pikselima - Native placement - it will be shown where the html is embedded - Prirodan položaj - bit će pokazano tamo gdje je ugrađen HTML + height + visina - Invisible, only JS API will be included - + Popup window height in pixels + Visina popup prozora u pikselima - Minimize action, applies only if status widget is at the bottom - + Widget width + Širina widgeta - Keep where it was - + Widget width in pixels + Širina widgeta u pikselima - Minimize to bottom of the screen - + Widget height in pixels + Visina widgeta u pikselima Please do not enter protocol, only domain name is required diff --git a/lhc_web/translations/id_ID/translation.ts b/lhc_web/translations/id_ID/translation.ts index 675004d570..9f570fca0a 100644 --- a/lhc_web/translations/id_ID/translation.ts +++ b/lhc_web/translations/id_ID/translation.ts @@ -694,6 +694,10 @@ system/htmlcode + + Popup window size + Ukuran jendela popup + HTML code Kode HTML @@ -870,6 +874,14 @@ Speech language + + General + + + + Design + + Hide status when offline Sembunyikan status ketika offline @@ -915,52 +927,52 @@ Nonaktifkan undangan pro aktif, berguna jika Anda ingin menonaktifkan mereka dari bagian situs. - Popup window size - Ukuran jendela popup + Minimize action, applies only if status widget is at the bottom + Tindakan meminimalkan, hanya berlaku jika widget status di bagian bawah - Popup window width in pixels - Lebar jendela popup dalam piksel + Keep where it was + Tetap di mana itu berada - Popup window height in pixels - Tinggi jendela popup dalam piksel + Minimize to bottom of the screen + Minimalkan ke bawah layar - Widget width - Lebar widget + Native placement - it will be shown where the html is embedded + Penempatan asli - akan ditampilkan di mana html tercantum - Widget width in pixels - Lebar widget dalam piksel + Invisible, only JS API will be included + Tidak terlihat, hanya JS API yang akan diikutsertakan - height - tinggi + Popup window width + - Widget height in pixels - Tinggi widget dalam piksel + Popup window width in pixels + Lebar jendela popup dalam piksel - Native placement - it will be shown where the html is embedded - Penempatan asli - akan ditampilkan di mana html tercantum + height + tinggi - Invisible, only JS API will be included - Tidak terlihat, hanya JS API yang akan diikutsertakan + Popup window height in pixels + Tinggi jendela popup dalam piksel - Minimize action, applies only if status widget is at the bottom - Tindakan meminimalkan, hanya berlaku jika widget status di bagian bawah + Widget width + Lebar widget - Keep where it was - Tetap di mana itu berada + Widget width in pixels + Lebar widget dalam piksel - Minimize to bottom of the screen - Minimalkan ke bawah layar + Widget height in pixels + Tinggi widget dalam piksel Please do not enter protocol, only domain name is required diff --git a/lhc_web/translations/it_IT/translation.ts b/lhc_web/translations/it_IT/translation.ts index 44f3717f26..c436a5df79 100644 --- a/lhc_web/translations/it_IT/translation.ts +++ b/lhc_web/translations/it_IT/translation.ts @@ -695,6 +695,10 @@ system/htmlcode + + Popup window size + Popup window size + HTML code HTML-Code @@ -871,6 +875,14 @@ Speech language Lingua parlata + + General + Generale + + + Design + Aspetto + Hide status when offline Nascondi stato quando offline @@ -916,52 +928,52 @@ Disabilita invito pro attivo, utile se vuoi disabilitarlo dal lato sito. - Popup window size - Popup window size + Minimize action, applies only if status widget is at the bottom + Minimizza l'azione, disponibile solo se il widget status è in basso - Popup window width in pixels - Popup window width in pixels + Keep where it was + Tienilo dov'era - Popup window height in pixels - Popup window height in pixels + Minimize to bottom of the screen + Minimizza in fondo allo schermo - Widget width - Widget larghezza + Native placement - it will be shown where the html is embedded + Posizione nativa - sarà mostrato dove il codice html sarà incorporato - Widget width in pixels - Widget width in pixels + Invisible, only JS API will be included + Invisibile, solo gli API JS verranno inclusi - height - altezza + Popup window width + Larghezza finestra popup - Widget height in pixels - Altezza in pixel del widget + Popup window width in pixels + Popup window width in pixels - Native placement - it will be shown where the html is embedded - Posizione nativa - sarà mostrato dove il codice html sarà incorporato + height + altezza - Invisible, only JS API will be included - Invisibile, solo gli API JS verranno inclusi + Popup window height in pixels + Popup window height in pixels - Minimize action, applies only if status widget is at the bottom - Minimizza l'azione, disponibile solo se il widget status è in basso + Widget width + Widget larghezza - Keep where it was - Tienilo dov'era + Widget width in pixels + Widget width in pixels - Minimize to bottom of the screen - Minimizza in fondo allo schermo + Widget height in pixels + Altezza in pixel del widget Please do not enter protocol, only domain name is required @@ -2303,7 +2315,7 @@ Your request was not processed as expected - but don't worry it was not your fault. Please re-submit your request. If you experience the same issue you will need to contact us via other means. - + La richiesta non è stata elaborata come previsto - ma non ti preoccupare non era colpa tua. Si prega di inviare nuovamente la richiesta. Se si verifica lo stesso problema devi contattarci tramite altri mezzi. Invalid file extension diff --git a/lhc_web/translations/ka_KA/translation.ts b/lhc_web/translations/ka_KA/translation.ts index aee302bd02..fdf3e57ea2 100644 --- a/lhc_web/translations/ka_KA/translation.ts +++ b/lhc_web/translations/ka_KA/translation.ts @@ -694,6 +694,10 @@ system/htmlcode + + Popup window size + ჩამოშლადი ფანჯრის ზომა + HTML code HTML კოდი @@ -870,6 +874,14 @@ Speech language + + General + + + + Design + + Hide status when offline სტატუსის დამალვა როდესაც კავშირგარეშეა @@ -915,52 +927,52 @@ პრო აქტიური მოწვევების გათიშვა, სასარგებლოა თუ მათი გათიშვა გსურთ საიტის ნაწილიდან. - Popup window size - ჩამოშლადი ფანჯრის ზომა + Minimize action, applies only if status widget is at the bottom + მოქმედების მინიმიზაცია, გამოიყენება მხოლოდ მაშინ, თუ სტატუსის ვიდჯეტი არის ქვემოთ - Popup window width in pixels - ჩამოშლადი ფანჯრის სიგანე პიქსელებში + Keep where it was + შეინარჩუნე, სადაც იყო - Popup window height in pixels - ჩამოშლადი ფანჯრის სიმაღლე პიქსელებში + Minimize to bottom of the screen + მინიმიზაცია ეკრანის ქვემოთ - Widget width - ვიჯეტის სიგანე + Native placement - it will be shown where the html is embedded + მშობლიური მდებარეობა- ეს ნაჩვენები იქნება როდესაც html არის ჩაშენებული - Widget width in pixels - ვიჯეტის სიგანე პიქსელებში + Invisible, only JS API will be included + უხილავი, მხოლოდ JS API იქნება ჩასმული - height - სიმაღლე + Popup window width + - Widget height in pixels - ვიჯეტის სიმაღლე პიქსელებში + Popup window width in pixels + ჩამოშლადი ფანჯრის სიგანე პიქსელებში - Native placement - it will be shown where the html is embedded - მშობლიური მდებარეობა- ეს ნაჩვენები იქნება როდესაც html არის ჩაშენებული + height + სიმაღლე - Invisible, only JS API will be included - უხილავი, მხოლოდ JS API იქნება ჩასმული + Popup window height in pixels + ჩამოშლადი ფანჯრის სიმაღლე პიქსელებში - Minimize action, applies only if status widget is at the bottom - მოქმედების მინიმიზაცია, გამოიყენება მხოლოდ მაშინ, თუ სტატუსის ვიდჯეტი არის ქვემოთ + Widget width + ვიჯეტის სიგანე - Keep where it was - შეინარჩუნე, სადაც იყო + Widget width in pixels + ვიჯეტის სიგანე პიქსელებში - Minimize to bottom of the screen - მინიმიზაცია ეკრანის ქვემოთ + Widget height in pixels + ვიჯეტის სიმაღლე პიქსელებში Please do not enter protocol, only domain name is required diff --git a/lhc_web/translations/lt_LT/translation.ts b/lhc_web/translations/lt_LT/translation.ts index cda96c6f15..919bc39fe0 100644 --- a/lhc_web/translations/lt_LT/translation.ts +++ b/lhc_web/translations/lt_LT/translation.ts @@ -694,6 +694,10 @@ system/htmlcode + + Popup window size + Iššokančio lango dydis + HTML code HTML kodas @@ -870,6 +874,14 @@ Speech language Jūsų kalba + + General + + + + Design + + Hide status when offline Nerodyti būsenos, kai nėra prisijungusių operatorių @@ -915,52 +927,52 @@ Išjungti pro active kvietimus, naudinga jei norite juos valdyti iš puslapio. - Popup window size - Iššokančio lango dydis + Minimize action, applies only if status widget is at the bottom + Sumažinimo veiksmas, taikoma jeigu widgetas rodomas apačioje. - Popup window width in pixels - Iššokančio lango plotis pikseliais + Keep where it was + Palikti kur buvo - Popup window height in pixels - Iššokančio lango aukštis pikseliais + Minimize to bottom of the screen + Sumažinti prie apačios ekrano - Widget width - Widget plotis + Native placement - it will be shown where the html is embedded + Įerpimo pozicija - bus rodoma ten kur įdėtas HTML kodas - Widget width in pixels - Widgeto plotis pikseliais + Invisible, only JS API will be included + Nematomas, tik JS API bus įtrauktą - height - aukštis + Popup window width + - Widget height in pixels - Widget aukštis pikseliais + Popup window width in pixels + Iššokančio lango plotis pikseliais - Native placement - it will be shown where the html is embedded - Įerpimo pozicija - bus rodoma ten kur įdėtas HTML kodas + height + aukštis - Invisible, only JS API will be included - Nematomas, tik JS API bus įtrauktą + Popup window height in pixels + Iššokančio lango aukštis pikseliais - Minimize action, applies only if status widget is at the bottom - Sumažinimo veiksmas, taikoma jeigu widgetas rodomas apačioje. + Widget width + Widget plotis - Keep where it was - Palikti kur buvo + Widget width in pixels + Widgeto plotis pikseliais - Minimize to bottom of the screen - Sumažinti prie apačios ekrano + Widget height in pixels + Widget aukštis pikseliais Please do not enter protocol, only domain name is required diff --git a/lhc_web/translations/nl_NL/translation.ts b/lhc_web/translations/nl_NL/translation.ts index 31a5206f6a..e3213c7659 100644 --- a/lhc_web/translations/nl_NL/translation.ts +++ b/lhc_web/translations/nl_NL/translation.ts @@ -694,6 +694,10 @@ system/htmlcode + + Popup window size + Grootte popup-scherm + HTML code HTML code @@ -870,6 +874,14 @@ Speech language Spreektaal + + General + Algemeen + + + Design + Ontwerp + Hide status when offline Verberg status wanneer offline @@ -915,52 +927,52 @@ Schakel pro-actieve uitnodigingen uit, handig voor als je ze wilt uitschakelen vanaf de site-kant. - Popup window size - Grootte popup-scherm + Minimize action, applies only if status widget is at the bottom + Minimaliseer actie, alleen toepasbaar als de status widget beneden staat - Popup window width in pixels - Breedte popup-scherm in pixels + Keep where it was + Laat staan waar het stond - Popup window height in pixels - Hoogte popup-scherm in pixels + Minimize to bottom of the screen + Minimaliseer naar de bodem van het scherm - Widget width - Breedte widget + Native placement - it will be shown where the html is embedded + Native positionering - het zal getoond worden waar de html geplaatst is - Widget width in pixels - Breedte widget in pixels + Invisible, only JS API will be included + Onzichtbaar, alleen JS API wordt bijgevoegd - height - hoogte + Popup window width + Breedte van het popup scherm - Widget height in pixels - Hoogte widget in pixels + Popup window width in pixels + Breedte popup-scherm in pixels - Native placement - it will be shown where the html is embedded - Native positionering - het zal getoond worden waar de html geplaatst is + height + hoogte - Invisible, only JS API will be included - Onzichtbaar, alleen JS API wordt bijgevoegd + Popup window height in pixels + Hoogte popup-scherm in pixels - Minimize action, applies only if status widget is at the bottom - Minimaliseer actie, alleen toepasbaar als de status widget beneden staat + Widget width + Breedte widget - Keep where it was - Laat staan waar het stond + Widget width in pixels + Breedte widget in pixels - Minimize to bottom of the screen - Minimaliseer naar de bodem van het scherm + Widget height in pixels + Hoogte widget in pixels Please do not enter protocol, only domain name is required @@ -2302,7 +2314,7 @@ Your request was not processed as expected - but don't worry it was not your fault. Please re-submit your request. If you experience the same issue you will need to contact us via other means. - + Uw aanvraag is niet succesvol behandeld, geen zorgen dit was een probleem vanuit ons. Probeer het alstublieft opnieuw. Mocht het nog niet lukken kunt u contact opnemen via een andere manier. Invalid file extension diff --git a/lhc_web/translations/no_NO/translation.ts b/lhc_web/translations/no_NO/translation.ts index c257b13558..3ce7e453b8 100644 --- a/lhc_web/translations/no_NO/translation.ts +++ b/lhc_web/translations/no_NO/translation.ts @@ -694,6 +694,10 @@ system/htmlcode + + Popup window size + Popup vindustørrelse + HTML code HTML kode @@ -870,6 +874,14 @@ Speech language + + General + + + + Design + + Hide status when offline Skjul status når du er offline @@ -915,52 +927,52 @@ Deaktiver pro active invitasjoner - Popup window size - Popup vindustørrelse + Minimize action, applies only if status widget is at the bottom + - Popup window width in pixels - Popup vindubredde i px + Keep where it was + - Popup window height in pixels - Popup vinduhøyde i px + Minimize to bottom of the screen + - Widget width - Widget bredde + Native placement - it will be shown where the html is embedded + Native plassering - den viser hvor html-koden er innebygd - Widget width in pixels - Widget bredde i px + Invisible, only JS API will be included + - height - høyde + Popup window width + - Widget height in pixels - Widget høyde i px + Popup window width in pixels + Popup vindubredde i px - Native placement - it will be shown where the html is embedded - Native plassering - den viser hvor html-koden er innebygd + height + høyde - Invisible, only JS API will be included - + Popup window height in pixels + Popup vinduhøyde i px - Minimize action, applies only if status widget is at the bottom - + Widget width + Widget bredde - Keep where it was - + Widget width in pixels + Widget bredde i px - Minimize to bottom of the screen - + Widget height in pixels + Widget høyde i px Please do not enter protocol, only domain name is required diff --git a/lhc_web/translations/pl_PL/translation.ts b/lhc_web/translations/pl_PL/translation.ts index 3e1cbfa4dc..db2783dcb6 100644 --- a/lhc_web/translations/pl_PL/translation.ts +++ b/lhc_web/translations/pl_PL/translation.ts @@ -695,6 +695,10 @@ pokazywany system/htmlcode + + Popup window size + Rozmiar okna pop-up + HTML code kod HTML @@ -871,6 +875,14 @@ pokazywany Speech language + + General + + + + Design + + Hide status when offline Ukryj statusu w trybie niedostępnym @@ -916,52 +928,52 @@ pokazywany Wyłącz proaktywne zaproszenia, przydatne, jeśli chcesz wyłączyć je z części witryny. - Popup window size - Rozmiar okna pop-up + Minimize action, applies only if status widget is at the bottom + Minimalizacja, stosuje się tylko wtedy, gdy widżet stanu jest na dole - Popup window width in pixels - Szerokość okna pop-up w pikselach + Keep where it was + Zachowaj, tam gdzie to było - Popup window height in pixels - Wysokość okna pop-up w pikselach + Minimize to bottom of the screen + Minimalizuj do dołu ekranu - Widget width - szerokość widżeta + Native placement - it will be shown where the html is embedded + Naturalna lokalizacja - zostanie pokazany tam, gdzie jest osadzony html - Widget width in pixels - szerokość widżeta w pikselach + Invisible, only JS API will be included + Niewidocznę, jedynie API JS będzie wklejone - height - wysokość + Popup window width + - Widget height in pixels - Wyskość widżeta w pikselach + Popup window width in pixels + Szerokość okna pop-up w pikselach - Native placement - it will be shown where the html is embedded - Naturalna lokalizacja - zostanie pokazany tam, gdzie jest osadzony html + height + wysokość - Invisible, only JS API will be included - Niewidocznę, jedynie API JS będzie wklejone + Popup window height in pixels + Wysokość okna pop-up w pikselach - Minimize action, applies only if status widget is at the bottom - Minimalizacja, stosuje się tylko wtedy, gdy widżet stanu jest na dole + Widget width + szerokość widżeta - Keep where it was - Zachowaj, tam gdzie to było + Widget width in pixels + szerokość widżeta w pikselach - Minimize to bottom of the screen - Minimalizuj do dołu ekranu + Widget height in pixels + Wyskość widżeta w pikselach Please do not enter protocol, only domain name is required diff --git a/lhc_web/translations/pt_BR/translation.ts b/lhc_web/translations/pt_BR/translation.ts index 0a7e29228b..76ae8beafe 100644 --- a/lhc_web/translations/pt_BR/translation.ts +++ b/lhc_web/translations/pt_BR/translation.ts @@ -694,6 +694,10 @@ system/htmlcode + + Popup window size + Tamanho da janela do popup + HTML code Código HTML @@ -870,6 +874,14 @@ Speech language Falar no idioma + + General + Geral + + + Design + Design + Hide status when offline Ocultar status quando offline @@ -915,52 +927,52 @@ Desativar convites pró-ativos, útil se você quiser desativá-los de parte do site. - Popup window size - Tamanho da janela do popup + Minimize action, applies only if status widget is at the bottom + Ação minimizar, só se aplica se o widget está na parte inferior - Popup window width in pixels - Largura da janela do popup em pixels + Keep where it was + Manter onde estava - Popup window height in pixels - Altura da janela do popup em pixels + Minimize to bottom of the screen + Minimizar para a parte inferior da tela - Widget width - Largura do widget + Native placement - it will be shown where the html is embedded + Localização nativa - será mostrado onde o html é incorporado - Widget width in pixels - Largura do widget em pixels + Invisible, only JS API will be included + Invisível, somente JS API será incluída - height - altura + Popup window width + Tamanho da janela do popup - Widget height in pixels - Altura do widget em pixels + Popup window width in pixels + Largura da janela do popup em pixels - Native placement - it will be shown where the html is embedded - Localização nativa - será mostrado onde o html é incorporado + height + altura - Invisible, only JS API will be included - Invisível, somente JS API será incluída + Popup window height in pixels + Altura da janela do popup em pixels - Minimize action, applies only if status widget is at the bottom - Ação minimizar, só se aplica se o widget está na parte inferior + Widget width + Largura do widget - Keep where it was - Manter onde estava + Widget width in pixels + Largura do widget em pixels - Minimize to bottom of the screen - Minimizar para a parte inferior da tela + Widget height in pixels + Altura do widget em pixels Please do not enter protocol, only domain name is required diff --git a/lhc_web/translations/ro_RO/translation.ts b/lhc_web/translations/ro_RO/translation.ts index d5ffb3cadf..948c2df4c9 100644 --- a/lhc_web/translations/ro_RO/translation.ts +++ b/lhc_web/translations/ro_RO/translation.ts @@ -694,6 +694,10 @@ system/htmlcode + + Popup window size + Dimensiunea de fereastra pop-up + HTML code Codul HTML @@ -870,6 +874,14 @@ Speech language Limba vorbire + + General + + + + Design + + Hide status when offline Ascunde starea când offline @@ -915,52 +927,52 @@ Dezactivaţi pro activ invitatii, util dacă doriţi să dezactivaţi-le din partea site-ului. - Popup window size - Dimensiunea de fereastra pop-up + Minimize action, applies only if status widget is at the bottom + Minimiza de acţiune, se aplică numai în cazul în care statutul widget-ul este în partea de jos - Popup window width in pixels - Pop-up fereastra lăţimea în pixeli + Keep where it was + Păstraţi în cazul în care a fost - Popup window height in pixels - Înălţimea de fereastra pop-up în pixeli + Minimize to bottom of the screen + Minimizare la partea de jos a ecranului - Widget width - Widget lăţime + Native placement - it will be shown where the html is embedded + Plasarea nativ - va fi indicat în cazul în care este încorporat html - Widget width in pixels - Widget lăţimea în pixeli + Invisible, only JS API will be included + Invizibil, doar JS API va fi inclus - height - înălțime + Popup window width + - Widget height in pixels - Widget inaltimea in pixeli + Popup window width in pixels + Pop-up fereastra lăţimea în pixeli - Native placement - it will be shown where the html is embedded - Plasarea nativ - va fi indicat în cazul în care este încorporat html + height + înălțime - Invisible, only JS API will be included - Invizibil, doar JS API va fi inclus + Popup window height in pixels + Înălţimea de fereastra pop-up în pixeli - Minimize action, applies only if status widget is at the bottom - Minimiza de acţiune, se aplică numai în cazul în care statutul widget-ul este în partea de jos + Widget width + Widget lăţime - Keep where it was - Păstraţi în cazul în care a fost + Widget width in pixels + Widget lăţimea în pixeli - Minimize to bottom of the screen - Minimizare la partea de jos a ecranului + Widget height in pixels + Widget inaltimea in pixeli Please do not enter protocol, only domain name is required diff --git a/lhc_web/translations/ru_RU/translation.ts b/lhc_web/translations/ru_RU/translation.ts index 77800f6fa7..a018ca6655 100644 --- a/lhc_web/translations/ru_RU/translation.ts +++ b/lhc_web/translations/ru_RU/translation.ts @@ -694,6 +694,10 @@ system/htmlcode + + Popup window size + Размер всплывающего окна + HTML code HTML код @@ -870,6 +874,14 @@ Speech language Диалект + + General + + + + Design + + Hide status when offline Скрыть статус если оффлайн @@ -915,52 +927,52 @@ Отключить проактивные приглашения (требуется только если Вы не хотите их использовать) - Popup window size - Размер всплывающего окна + Minimize action, applies only if status widget is at the bottom + Действие свернуть, применяется только если виджет находится внизу - Popup window width in pixels - Ширина всплывающего окна в пикселях + Keep where it was + Оставить где было - Popup window height in pixels - Высота всплывающего окна в пикселях + Minimize to bottom of the screen + Минимизировать вниз экрана - Widget width - Ширина виджета + Native placement - it will be shown where the html is embedded + Отображать виджет в там, где он встроен в HTML код - Widget width in pixels - Ширина виджета в пикселях + Invisible, only JS API will be included + Невидимо, только JS API будет включено - height - Высота + Popup window width + - Widget height in pixels - Высота выбжета в пикселях + Popup window width in pixels + Ширина всплывающего окна в пикселях - Native placement - it will be shown where the html is embedded - Отображать виджет в там, где он встроен в HTML код + height + Высота - Invisible, only JS API will be included - Невидимо, только JS API будет включено + Popup window height in pixels + Высота всплывающего окна в пикселях - Minimize action, applies only if status widget is at the bottom - Действие свернуть, применяется только если виджет находится внизу + Widget width + Ширина виджета - Keep where it was - Оставить где было + Widget width in pixels + Ширина виджета в пикселях - Minimize to bottom of the screen - Минимизировать вниз экрана + Widget height in pixels + Высота выбжета в пикселях Please do not enter protocol, only domain name is required diff --git a/lhc_web/translations/sq_AL/translation.ts b/lhc_web/translations/sq_AL/translation.ts index 453f2faaab..a24f2b2df2 100644 --- a/lhc_web/translations/sq_AL/translation.ts +++ b/lhc_web/translations/sq_AL/translation.ts @@ -694,6 +694,10 @@ system/htmlcode + + Popup window size + + HTML code Kodi HTML @@ -870,6 +874,14 @@ Speech language + + General + + + + Design + + Hide status when offline Fshih gjendjen kur je jashte linje @@ -915,51 +927,51 @@ - Popup window size + Minimize action, applies only if status widget is at the bottom - Popup window width in pixels - + Keep where it was + Mbaje aty ku ishte - Popup window height in pixels + Minimize to bottom of the screen - Widget width + Native placement - it will be shown where the html is embedded - Widget width in pixels + Invisible, only JS API will be included - height - gjatesia + Popup window width + - Widget height in pixels + Popup window width in pixels - Native placement - it will be shown where the html is embedded - + height + gjatesia - Invisible, only JS API will be included + Popup window height in pixels - Minimize action, applies only if status widget is at the bottom + Widget width - Keep where it was - Mbaje aty ku ishte + Widget width in pixels + - Minimize to bottom of the screen + Widget height in pixels diff --git a/lhc_web/translations/sv_SV/translation.ts b/lhc_web/translations/sv_SV/translation.ts index a1f38efe4e..c89673b768 100644 --- a/lhc_web/translations/sv_SV/translation.ts +++ b/lhc_web/translations/sv_SV/translation.ts @@ -694,6 +694,10 @@ system/htmlcode + + Popup window size + Storlek popup ruta + HTML code HTML kod @@ -870,6 +874,14 @@ Speech language Talspråk + + General + Allmänt + + + Design + Design + Hide status when offline Göm status när ej tillgänglig @@ -915,52 +927,52 @@ Avaktivera proaktiva inbjudningar, användbart om du vill avaktivera dem från webbplatsen. - Popup window size - Storlek popup ruta + Minimize action, applies only if status widget is at the bottom + Minimera handling, tillämpas endast om statuswidgeten är i botten - Popup window width in pixels - Popup ruta bredd i pixlar + Keep where it was + Behåll där den var - Popup window height in pixels - Popup ruta höjd i pixlar + Minimize to bottom of the screen + Minimera till botten av skärmen - Widget width - Widget bredd + Native placement - it will be shown where the html is embedded + Direkt placering - den visas där html koden läggs in - Widget width in pixels - Widget bredd i pixlar + Invisible, only JS API will be included + Osynlig, endast JS API kommer att inkluderas - height - höjd + Popup window width + Bredd på popup-fönstret - Widget height in pixels - Widget höjd i pixlar + Popup window width in pixels + Popup ruta bredd i pixlar - Native placement - it will be shown where the html is embedded - Direkt placering - den visas där html koden läggs in + height + höjd - Invisible, only JS API will be included - Osynlig, endast JS API kommer att inkluderas + Popup window height in pixels + Popup ruta höjd i pixlar - Minimize action, applies only if status widget is at the bottom - Minimera handling, tillämpas endast om statuswidgeten är i botten + Widget width + Widget bredd - Keep where it was - Behåll där den var + Widget width in pixels + Widget bredd i pixlar - Minimize to bottom of the screen - Minimera till botten av skärmen + Widget height in pixels + Widget höjd i pixlar Please do not enter protocol, only domain name is required @@ -2302,7 +2314,7 @@ Your request was not processed as expected - but don't worry it was not your fault. Please re-submit your request. If you experience the same issue you will need to contact us via other means. - + Din förfrågan behandlades inte som förväntat - men oroa dig inte, det var inte ditt fel. Var vänlig skicka din förfrågan igen. Om du upplever samma fel så är du välkommen att kontakta oss. Invalid file extension diff --git a/lhc_web/translations/th_TH/translation.ts b/lhc_web/translations/th_TH/translation.ts index 0a70e93f20..4815dde0e6 100644 --- a/lhc_web/translations/th_TH/translation.ts +++ b/lhc_web/translations/th_TH/translation.ts @@ -694,6 +694,10 @@ system/htmlcode + + Popup window size + ขนาดหน้าต่างแบบผุดขึ้น + HTML code โค้ด HTML @@ -870,6 +874,14 @@ Speech language + + General + + + + Design + + Hide status when offline ซ่อนสถานะเมื่อคุณออฟไลน์ @@ -915,52 +927,52 @@ ปิดใช้งาน pro เชิญ ประโยชน์ถ้าคุณต้องการปิดใช้งานจากเว็บไซต์ส่วน - Popup window size - ขนาดหน้าต่างแบบผุดขึ้น + Minimize action, applies only if status widget is at the bottom + - Popup window width in pixels - ความกว้างของหน้าต่างแบบผุดขึ้นเป็นพิกเซล + Keep where it was + - Popup window height in pixels - ความสูงของหน้าต่างแบบผุดขึ้นในพิกเซล + Minimize to bottom of the screen + - Widget width - ความกว้างของเครื่องมือ + Native placement - it will be shown where the html is embedded + แม่วาง - จะแสดงที่ html ถูกฝัง - Widget width in pixels - เครื่องมือความกว้างเป็นพิกเซล + Invisible, only JS API will be included + - height - ความสูง + Popup window width + - Widget height in pixels - เครื่องมือความสูงเป็นพิกเซล + Popup window width in pixels + ความกว้างของหน้าต่างแบบผุดขึ้นเป็นพิกเซล - Native placement - it will be shown where the html is embedded - แม่วาง - จะแสดงที่ html ถูกฝัง + height + ความสูง - Invisible, only JS API will be included - + Popup window height in pixels + ความสูงของหน้าต่างแบบผุดขึ้นในพิกเซล - Minimize action, applies only if status widget is at the bottom - + Widget width + ความกว้างของเครื่องมือ - Keep where it was - + Widget width in pixels + เครื่องมือความกว้างเป็นพิกเซล - Minimize to bottom of the screen - + Widget height in pixels + เครื่องมือความสูงเป็นพิกเซล Please do not enter protocol, only domain name is required diff --git a/lhc_web/translations/tr_TR/translation.ts b/lhc_web/translations/tr_TR/translation.ts index 2a82afee40..ce89403a12 100644 --- a/lhc_web/translations/tr_TR/translation.ts +++ b/lhc_web/translations/tr_TR/translation.ts @@ -694,6 +694,10 @@ system/htmlcode + + Popup window size + Açılır pencere ebatı + HTML code HTML kod @@ -870,6 +874,14 @@ Speech language + + General + + + + Design + + Hide status when offline Çevrim dışıyken durumu gizle @@ -915,52 +927,52 @@ pro aktif konuşma isteğini - Popup window size - Açılır pencere ebatı + Minimize action, applies only if status widget is at the bottom + - Popup window width in pixels - Piksel olarak açılır pencere genişliği + Keep where it was + - Popup window height in pixels - Piksel olarak açılır pencere yüksekliği + Minimize to bottom of the screen + - Widget width - Görsel bileşen genişliği + Native placement - it will be shown where the html is embedded + Yerel konumlama - bu html kodunun gömülü olduğu yerde gösterilecek - Widget width in pixels - Piksel olarak görsel bileşen genişliği + Invisible, only JS API will be included + - height - yükseklik + Popup window width + - Widget height in pixels - Piksel olarak görsel bileşen boyu + Popup window width in pixels + Piksel olarak açılır pencere genişliği - Native placement - it will be shown where the html is embedded - Yerel konumlama - bu html kodunun gömülü olduğu yerde gösterilecek + height + yükseklik - Invisible, only JS API will be included - + Popup window height in pixels + Piksel olarak açılır pencere yüksekliği - Minimize action, applies only if status widget is at the bottom - + Widget width + Görsel bileşen genişliği - Keep where it was - + Widget width in pixels + Piksel olarak görsel bileşen genişliği - Minimize to bottom of the screen - + Widget height in pixels + Piksel olarak görsel bileşen boyu Please do not enter protocol, only domain name is required diff --git a/lhc_web/translations/vi_VN/translation.ts b/lhc_web/translations/vi_VN/translation.ts index 41650facd5..f3b8d8ca1e 100644 --- a/lhc_web/translations/vi_VN/translation.ts +++ b/lhc_web/translations/vi_VN/translation.ts @@ -694,6 +694,10 @@ system/htmlcode + + Popup window size + Kích thước cửa sổ popup + HTML code Mã HTML @@ -870,6 +874,14 @@ Speech language + + General + + + + Design + + Hide status when offline Ẩn trạng thái khi offline @@ -915,52 +927,52 @@ Vô hiệu hóa lời mời hoạt động chuyên nghiệp, hữu ích nếu bạn muốn vô hiệu hóa chúng từ một phần trang web. - Popup window size - Kích thước cửa sổ popup + Minimize action, applies only if status widget is at the bottom + - Popup window width in pixels - Độ rộng cửa sổ Popup bằng pixel + Keep where it was + - Popup window height in pixels - Chiều cao cửa sổ popup bằng pixel + Minimize to bottom of the screen + - Widget width - Độ rộng tiện ích + Native placement - it will be shown where the html is embedded + Vị trí bản đồ - nó sẽ được hiển thị, nơi html được nhúng - Widget width in pixels - Tiện ích chiều rộng bằng pixel + Invisible, only JS API will be included + - height - cao + Popup window width + - Widget height in pixels - Chiều cao tiện ích bằng pixel + Popup window width in pixels + Độ rộng cửa sổ Popup bằng pixel - Native placement - it will be shown where the html is embedded - Vị trí bản đồ - nó sẽ được hiển thị, nơi html được nhúng + height + cao - Invisible, only JS API will be included - + Popup window height in pixels + Chiều cao cửa sổ popup bằng pixel - Minimize action, applies only if status widget is at the bottom - + Widget width + Độ rộng tiện ích - Keep where it was - + Widget width in pixels + Tiện ích chiều rộng bằng pixel - Minimize to bottom of the screen - + Widget height in pixels + Chiều cao tiện ích bằng pixel Please do not enter protocol, only domain name is required diff --git a/lhc_web/translations/zh_ZH/translation.ts b/lhc_web/translations/zh_ZH/translation.ts index 815f002844..4db5e4a703 100644 --- a/lhc_web/translations/zh_ZH/translation.ts +++ b/lhc_web/translations/zh_ZH/translation.ts @@ -694,6 +694,10 @@ system/htmlcode + + Popup window size + 弹出窗口的大小 + HTML code HTML代码 @@ -870,6 +874,14 @@ Speech language + + General + + + + Design + + Hide status when offline 隐藏状态离线 @@ -915,52 +927,52 @@ 禁用積極邀請,有用的,如果你想禁止他們從現場部分。 - Popup window size - 弹出窗口的大小 + Minimize action, applies only if status widget is at the bottom + 最小化操作,仅当状态插件位于页面底部时启用 - Popup window width in pixels - 弹出窗口的宽度像素 + Keep where it was + 保持当前位置 - Popup window height in pixels - 弹出窗口的像素高度 + Minimize to bottom of the screen + 最小化到屏幕底部 - Widget width - Widget width + Native placement - it will be shown where the html is embedded + 母语的位置 - 它会显示HTML嵌入 - Widget width in pixels - 插件宽度的像素 + Invisible, only JS API will be included + - height - 高度 + Popup window width + - Widget height in pixels - 小工具以像素为单位的高度 + Popup window width in pixels + 弹出窗口的宽度像素 - Native placement - it will be shown where the html is embedded - 母语的位置 - 它会显示HTML嵌入 + height + 高度 - Invisible, only JS API will be included - + Popup window height in pixels + 弹出窗口的像素高度 - Minimize action, applies only if status widget is at the bottom - 最小化操作,仅当状态插件位于页面底部时启用 + Widget width + Widget width - Keep where it was - 保持当前位置 + Widget width in pixels + 插件宽度的像素 - Minimize to bottom of the screen - 最小化到屏幕底部 + Widget height in pixels + 小工具以像素为单位的高度 Please do not enter protocol, only domain name is required