Version Description
(15/02/2021) = * Update settings dropdown * Fix rare bug when root equal slug page
Download this release
Release Info
Developer | remyb92 |
Plugin | Weglot Translate – Translate your WP website |
Version | 3.3.2 |
Comparing to | |
See all releases |
Code changes from version 3.3.1 to 3.3.2
- app/images/wgarrowdown.png +0 -0
- app/javascripts/selectize.js +0 -0
- app/static/weglot_fav.png +0 -0
- app/static/weglot_fav_bw.png +0 -0
- app/styles/amp.scss +1 -1
- app/styles/index.scss +1 -1
- app/styles/selectize.css +0 -0
- bootstrap.php +1 -0
- composer.json +5 -1
- dist/admin-css.js +1 -1
- dist/admin-js.js +1 -1
- dist/css/admin-css.css +1 -440
- dist/css/front-amp-css.css +1 -181
- dist/css/front-css.css +1 -1107
- dist/front-amp-css.js +1 -1
- dist/front-css.js +1 -1
- dist/front-js.js +1 -1
- dist/nav-js.js +1 -1
- languages/weglot-de_DE.mo +0 -0
- languages/weglot-de_DE.po +0 -0
- languages/weglot-en_GB.mo +0 -0
- languages/weglot-en_GB.po +0 -0
- languages/weglot-es_ES.mo +0 -0
- languages/weglot-es_ES.po +0 -0
- languages/weglot-fr_FR.mo +0 -0
- languages/weglot-fr_FR.po +0 -0
- languages/weglot-it_IT.mo +0 -0
- languages/weglot-it_IT.po +0 -0
- languages/weglot-nl_NL.mo +0 -0
- languages/weglot-nl_NL.po +0 -0
- languages/weglot-pt_BR.mo +0 -0
- languages/weglot-pt_BR.po +0 -0
- languages/weglot-ru_RU.mo +0 -0
- languages/weglot-ru_RU.po +0 -0
- languages/weglot.pot +0 -0
- readme.txt +9 -4
- src/actions/admin/class-customize-menu-weglot.php +1 -0
- src/actions/admin/class-metabox-url-translate-weglot.php +73 -0
- src/actions/admin/class-options-weglot.php +17 -0
- src/actions/front/class-translate-page-weglot.php +6 -0
- src/helpers/class-helper-menu-options-weglot.php +0 -4
- src/services/class-button-service-weglot.php +2 -1
- src/services/class-option-service-weglot.php +5 -0
- src/services/class-redirect-service-weglot.php +3 -1
- src/services/class-request-url-service-weglot.php +1 -1
- src/third/yoast/class-redirect-handler-weglot.php +1 -3
- vendor/autoload.php +1 -1
- vendor/composer/InstalledVersions.php +11 -11
- vendor/composer/autoload_real.php +7 -7
- vendor/composer/autoload_static.php +5 -5
- vendor/composer/installed.json +21 -21
- vendor/composer/installed.php +11 -11
- vendor/weglot/simplehtmldom/src/simple_html_dom.php +8 -4
- vendor/weglot/translation-definitions/data/cases/cases-v3.json +3 -3
- vendor/weglot/weglot-php/README.md +2 -2
- vendor/weglot/weglot-php/composer.json +1 -1
- vendor/weglot/weglot-php/src/Util/Url.php +14 -4
- weglot-functions.php +6 -0
- weglot.php +3 -3
app/images/wgarrowdown.png
CHANGED
File without changes
|
app/javascripts/selectize.js
CHANGED
File without changes
|
app/static/weglot_fav.png
CHANGED
File without changes
|
app/static/weglot_fav_bw.png
CHANGED
File without changes
|
app/styles/amp.scss
CHANGED
@@ -186,7 +186,7 @@ html[dir="rtl"] {
|
|
186 |
|
187 |
.weglot-flags {
|
188 |
a,
|
189 |
-
span {
|
190 |
&:before {
|
191 |
background-image: url("../images/rect_mate.png");
|
192 |
background-size: auto 20px;
|
186 |
|
187 |
.weglot-flags {
|
188 |
a,
|
189 |
+
span.wglanguage-name {
|
190 |
&:before {
|
191 |
background-image: url("../images/rect_mate.png");
|
192 |
background-size: auto 20px;
|
app/styles/index.scss
CHANGED
@@ -208,7 +208,7 @@ html[dir="rtl"] {
|
|
208 |
|
209 |
.weglot-flags {
|
210 |
> a,
|
211 |
-
> span {
|
212 |
&:before {
|
213 |
background-image: url("../images/rect_mate.png");
|
214 |
background-size: auto 20px !important;
|
208 |
|
209 |
.weglot-flags {
|
210 |
> a,
|
211 |
+
> span.wglanguage-name {
|
212 |
&:before {
|
213 |
background-image: url("../images/rect_mate.png");
|
214 |
background-size: auto 20px !important;
|
app/styles/selectize.css
CHANGED
File without changes
|
bootstrap.php
CHANGED
@@ -84,6 +84,7 @@ abstract class Context_Weglot {
|
|
84 |
'\WeglotWP\Actions\Admin\Admin_Enqueue_Weglot',
|
85 |
'\WeglotWP\Actions\Admin\Customize_Menu_Weglot',
|
86 |
'\WeglotWP\Actions\Admin\Permalink_Weglot',
|
|
|
87 |
'\WeglotWP\Actions\Front\Translate_Page_Weglot',
|
88 |
'\WeglotWP\Actions\Front\Front_Enqueue_Weglot',
|
89 |
'\WeglotWP\Actions\Front\Shortcode_Weglot',
|
84 |
'\WeglotWP\Actions\Admin\Admin_Enqueue_Weglot',
|
85 |
'\WeglotWP\Actions\Admin\Customize_Menu_Weglot',
|
86 |
'\WeglotWP\Actions\Admin\Permalink_Weglot',
|
87 |
+
'\WeglotWP\Actions\Admin\Metabox_Url_Translate_Weglot',
|
88 |
'\WeglotWP\Actions\Front\Translate_Page_Weglot',
|
89 |
'\WeglotWP\Actions\Front\Front_Enqueue_Weglot',
|
90 |
'\WeglotWP\Actions\Front\Shortcode_Weglot',
|
composer.json
CHANGED
@@ -15,7 +15,11 @@
|
|
15 |
{
|
16 |
"name": "Julien JACOB",
|
17 |
"email": "julien@weglot.com"
|
18 |
-
|
|
|
|
|
|
|
|
|
19 |
],
|
20 |
"require": {
|
21 |
"weglot/weglot-php": "^1.1",
|
15 |
{
|
16 |
"name": "Julien JACOB",
|
17 |
"email": "julien@weglot.com"
|
18 |
+
},
|
19 |
+
{
|
20 |
+
"name": "Edson GALINA FORTES",
|
21 |
+
"email": "edson@weglot.com"
|
22 |
+
}
|
23 |
],
|
24 |
"require": {
|
25 |
"weglot/weglot-php": "^1.1",
|
dist/admin-css.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(e){var t={};function r(n){if(t[n])return t[n].exports;var o=t[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,r),o.l=!0,o.exports}r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)r.d(n,o,function(t){return e[t]}.bind(null,o));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="/dist/",r(r.s=
|
1 |
+
!function(e){var t={};function r(n){if(t[n])return t[n].exports;var o=t[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,r),o.l=!0,o.exports}r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)r.d(n,o,function(t){return e[t]}.bind(null,o));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="/dist/",r(r.s=10)}({10:function(e,t){}});
|
dist/admin-js.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(e){var t={};function o(a){if(t[a])return t[a].exports;var l=t[a]={i:a,l:!1,exports:{}};return e[a].call(l.exports,l,l.exports,o),l.l=!0,l.exports}o.m=e,o.c=t,o.d=function(e,t,a){o.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:a})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(e,t){if(1&t&&(e=o(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var a=Object.create(null);if(o.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var l in e)o.d(a,l,function(t){return e[t]}.bind(null,l));return a},o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,"a",t),t},o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o.p="/dist/",o(o.s=0)}([function(e,t,o){"use strict";o.r(t);var a=function(){const e=jQuery;let t;const o=()=>{t=e(".weglot-select-destination").selectize({delimiter:"|",persist:!1,valueField:"internal_code",labelField:"local",searchField:["internal_code","english","local"],sortField:[{field:"english",direction:"asc"}],maxItems:weglot_languages.limit,plugins:["remove_button","drag_drop"],options:(()=>weglot_languages.available.filter(e=>e.internal_code!==weglot_languages.original))(),render:{option:function(e,t){return`<div class="weglot__choice__language"><span class="weglot__choice__language--english">${t(e.english)}</span><span class="weglot__choice__language--local">${t(e.local)}[${t(e.external_code)}]</span></div>`}}}).on("change",o=>{const a=t[0].selectize.getValue(),l=e("#li-button-tpl");if(0===l.length)return;const n=e("#is_fullname").is(":checked"),r=e("#with_name").is(":checked");let s="";e("#with_flags").is(":checked")&&(s="weglot-flags");let i="";a.forEach(e=>{const t=weglot_languages.available.find(t=>t.internal_code===e);let o="";r&&(o=n?t.local:e.toUpperCase()),i+=l.html().replace("{LABEL_LANGUAGE}",o).replace(new RegExp("{CODE_LANGUAGE}","g"),e).replace("{CLASSES}",s)}),e(".country-selector ul").html(i)})};document.addEventListener("DOMContentLoaded",()=>{(()=>{let a=e("#original_language").val();e("#original_language").on("change",function(o){const l=a,n=a;a=o.target.value,t[0].selectize.removeOption(a);const r=weglot_languages.available.find(e=>e.internal_code===n),s=weglot_languages.available.find(e=>e.internal_code===a);t[0].selectize.addOption(r);const i=e("#is_fullname").is(":checked");let c="";e("#with_name").is(":checked")&&(c=i?s.local:s.internal_code.toUpperCase()),e(".wgcurrent.wg-li").removeClass(l).addClass(a).attr("data-code-language",a).find("span").text(c)}),o(),window.addEventListener("weglotCheckApi",e=>{let o=1e3;const a=e.detail.plan;a<=0||weglot_languages.plans.starter_free.ids.indexOf(a)>=0?o=weglot_languages.plans.starter_free.limit_language:weglot_languages.plans.business.ids.indexOf(a)>=0&&(o=weglot_languages.plans.business.limit_language),t[0].selectize.settings.maxItems=o})})()})};var l=function(){const e=jQuery;document.addEventListener("DOMContentLoaded",()=>{e("#weglot-box-first-settings .weglot-btn-close").on("click",function(t){t.preventDefault(),e("#weglot-box-first-settings").hide()})})};var n=function(){const e=()=>{document.querySelector("#tpl-exclusion-url");const e=document.querySelector("#tpl-exclusion-block"),t=document.querySelector("#container-exclude_blocks");function o(e){e.preventDefault(),this.parentNode.remove()}document.querySelector("#js-add-exclude-block")&&document.querySelector("#js-add-exclude-block").addEventListener("click",a=>{a.preventDefault(),t.insertAdjacentHTML("beforeend",e.innerHTML),document.querySelector("#container-exclude_blocks .item-exclude:last-child .js-btn-remove-exclude").addEventListener("click",o)}),document.querySelectorAll(".js-btn-remove").forEach(e=>{e.addEventListener("click",o)})};document.addEventListener("DOMContentLoaded",()=>{e()})};var r=function(){const e=jQuery,t=()=>{let t=e("#type_flags option:selected").data("value"),o=[];o.push(e(".country-selector label").data("code-language")),e(".country-selector li").each((t,a)=>{o.push(e(a).data("code-language"))});const a=weglot_languages.available.filter(e=>o.indexOf(e.code)>=0);e("#weglot-css-inline").text(weglot_css.inline),e("#is_dropdown").on("change",function(){e(".country-selector").toggleClass("weglot-inline"),e(".country-selector").toggleClass("weglot-dropdown")}),e("#with_flags").on("change",function(){e(".country-selector label, .country-selector li").toggleClass("weglot-flags")}),e("#type_flags").on("change",function(o){e(".country-selector label, .country-selector li").removeClass(`flag-${t}`);const a=e(":selected",this).data("value");e(".country-selector label, .country-selector li").addClass(`flag-${a}`),t=a});const l=()=>{const t=a.find(t=>t.code===e(".country-selector label").data("code-language")),o=e("#is_fullname").is(":checked"),l=o?t.local:t.code.toUpperCase();e(".country-selector label a, .country-selector label span").text(l),e(".country-selector li").each((t,l)=>{const n=a.find(t=>t.code===e(l).data("code-language")),r=o?n.local:n.code.toUpperCase();e(l).find("a").text(r)})};e("#with_name").on("change",function(t){t.target.checked?l():(e(".country-selector label a, .country-selector label span").text(""),e(".country-selector li a, .country-selector li span").each((t,o)=>{e(o).text("")}))}),e("#is_fullname").on("change",function(t){if(e("#with_name").is(":checked"))if(t.target.checked)l();else{const t=a.find(t=>t.code===e(".country-selector label").data("code-language"));e(".country-selector label a, .country-selector label span").text(t.code.toUpperCase()),e(".country-selector li").each((t,o)=>{const l=a.find(t=>t.code===e(o).data("code-language"));e(o).find("a").text(l.code.toUpperCase()),e(o).find("span").text(l.code.toUpperCase())})}}),e("#override_css").on("keyup",function(t){e("#weglot-css-inline").text(t.target.value)})};document.addEventListener("DOMContentLoaded",()=>{0!==e(".weglot-preview").length&&t()})};var s=function(){const e=jQuery,t=()=>{e("#api_key_private").blur(function(){var t=e(this).val();if(0===t.length)return e(".weglot-keyres").remove(),e("#api_key_private").after('<span class="weglot-keyres weglot-nokkey"></span>'),void e("#wrap-weglot #submit").prop("disabled",!0);function o(){e(".weglot-keyres").remove(),e("#api_key_private").after('<span class="weglot-keyres weglot-nokkey"></span><p class="weglot-keyres">Make sure you enter a valid Weglot API key. If the key is still not validating, you can contact your host provider and ask if it\'s possible to whitelist api.weglot.com and weglot.com</p>'),e("#wrap-weglot #submit").prop("disabled",!0)}e(".weglot-keyres").remove(),e("#api_key_private").after('<span class="weglot-keyres weglot-ckeckkey"></span>'),e.ajax({method:"POST",url:ajaxurl,data:{action:"get_user_info",api_key:t},success:({data:t,success:a})=>{e(".weglot-keyres").remove(),a?function(t){e(".weglot-keyres").remove(),e("#api_key_private").after('<span class="weglot-keyres weglot-okkey"></span>'),e("#wrap-weglot #submit").prop("disabled",!1);const o=new CustomEvent("weglotCheckApi",{detail:t});window.dispatchEvent(o)}(t):o()}}).fail(function(){o()})})};document.addEventListener("DOMContentLoaded",()=>{t()})};var i=function(){jQuery;document.addEventListener("DOMContentLoaded",()=>{jQuery(document).ready(function(e){wp.codeEditor.initialize(e("#override_css"),cm_settings)})})};var c=function(){const e=jQuery;"undefined"!=typeof weglot_css&&e("#weglot-css-flag-css").text(weglot_css.flag_css);const t=()=>{e(".flag-style-openclose").on("click",function(){e(".flag-style-wrapper").toggle()}),e("select.flag-en-type, select.flag-es-type, select.flag-pt-type, select.flag-fr-type, select.flag-ar-type, select.flag-tw-type, select.flag-zh-type").on("change",function(){!function(){var t=new Array,o=new Array,a=new Array,l=new Array,n=new Array,r=new Array,s=new Array;t[1]=[3570,7841,48,2712],t[2]=[3720,449,3048,4440],t[3]=[3840,1281,2712,4224],t[4]=[3240,5217,1224,2112],t[5]=[4050,3585,1944,2496],t[6]=[2340,3457,2016,2016],o[1]=[4320,4641,3144,3552],o[2]=[3750,353,2880,4656],o[3]=[4200,1601,2568,3192],o[4]=[3990,5793,1032,2232],o[5]=[5460,897,4104,3120],o[6]=[3810,7905,216,3888],o[7]=[3630,8065,192,2376],o[8]=[3780,1473,2496,4104],o[9]=[6120,2145,4680,2568],o[10]=[4440,3009,3240,1176],o[11]=[5280,1825,3936,2976],o[12]=[4770,2081,3624,1008],o[13]=[4080,3201,2160,2544],o[14]=[4590,5761,3432,624],o[15]=[4350,2209,3360,2688],o[16]=[5610,5249,3168,528],o[17]=[5070,1729,3792,2952],o[18]=[6870,5953,96,3408],o[19]=[4020,5697,1056,1224],a[1]=[2760,736,2856,4416],a[2]=[3840,1280,2712,4224],a[3]=[5700,7201,5016,2400],a[4]=[2220,4160,1632,1944],l[1]=[1830,129,3096,5664],l[2]=[5100,2177,3840,2904],l[3]=[4890,3425,3648,2136],l[4]=[1320,3681,1896,4080],l[5]=[1260,3841,1824,1200],l[6]=[1020,3969,1608,312],l[7]=[4800,4065,3600,72],l[8]=[4710,4865,3504,480],l[9]=[6720,5984,5112,3792],l[10]=[4500,7233,3288,1800],l[11]=[720,7522,384,3936],l[12]=[690,7745,336,1104],l[13]=[600,8225,120,1272],l[14]=[660,5569,840,576],n[1]=[3690,1505,2592,3240],n[2]=[3600,3233,2112,48],r[1]=[2970,6369,3408,4008],r[2]=[3600,3233,2112,48],s[1]=[6630,993,2784,4344];var i=e("select.flag-en-type").val(),c=e("select.flag-es-type").val(),g=e("select.flag-fr-type").val(),f=e("select.flag-ar-type").val(),p=e("select.flag-tw-type").val(),d=e("select.flag-zh-type").val(),u=e("select.flag-pt-type").val(),w=i<=0?"":".weglot-flags.en > a:before, .weglot-flags.en > span:before { background-position: -"+t[i][0]+"px 0 !important; } .weglot-flags.flag-1.en > a:before, .weglot-flags.flag-1.en > span:before { background-position: -"+t[i][1]+"px 0 !important; } .weglot-flags.flag-2.en > a:before, .weglot-flags.flag-2.en > span:before { background-position: -"+t[i][2]+"px 0 !important; } .weglot-flags.flag-3.en > a:before, .weglot-flags.flag-3.en > span:before { background-position: -"+t[i][3]+"px 0 !important; } ",b=c<=0?"":".weglot-flags.es > a:before, .weglot-flags.es > span:before { background-position: -"+o[c][0]+"px 0 !important; } .weglot-flags.flag-1.es > a:before, .weglot-flags.flag-1.es > span:before { background-position: -"+o[c][1]+"px 0 !important; } .weglot-flags.flag-2.es > a:before, .weglot-flags.flag-2.es > span:before { background-position: -"+o[c][2]+"px 0 !important; } .weglot-flags.flag-3.es > a:before, .weglot-flags.flag-3.es > span:before { background-position: -"+o[c][3]+"px 0 !important; } ",y=g<=0?"":".weglot-flags.fr > a:before, .weglot-flags.fr > span:before { background-position: -"+a[g][0]+"px 0 !important; } .weglot-flags.flag-1.fr > a:before, .weglot-flags.flag-1.fr > span:before { background-position: -"+a[g][1]+"px 0 !important; } .weglot-flags.flag-2.fr > a:before, .weglot-flags.flag-2.fr > span:before { background-position: -"+a[g][2]+"px 0 !important; } .weglot-flags.flag-3.fr > a:before, .weglot-flags.flag-3.fr > span:before { background-position: -"+a[g][3]+"px 0 !important; } ",m=f<=0?"":".weglot-flags.ar > a:before, .weglot-flags.ar > span:before { background-position: -"+l[f][0]+"px 0 !important; } .weglot-flags.flag-1.ar > a:before, .weglot-flags.flag-1.ar > span:before { background-position: -"+l[f][1]+"px 0 !important; } .weglot-flags.flag-2.ar > a:before, .weglot-flags.flag-2.ar > span:before { background-position: -"+l[f][2]+"px 0 !important; } .weglot-flags.flag-3.ar > a:before, .weglot-flags.flag-3.ar > span:before { background-position: -"+l[f][3]+"px 0 !important; } ",v=p<=0?"":".weglot-flags.tw > a:before, .weglot-flags.tw > span:before { background-position: -"+n[p][0]+"px 0 !important; } .weglot-flags.flag-1.tw > a:before, .weglot-flags.flag-1.tw > span:before { background-position: -"+n[p][1]+"px 0 !important; } .weglot-flags.flag-2.tw > a:before, .weglot-flags.flag-2.tw > span:before { background-position: -"+n[p][2]+"px 0 !important; } .weglot-flags.flag-3.tw > a:before, .weglot-flags.flag-3.tw > span:before { background-position: -"+n[p][3]+"px 0 !important; } ",h=d<=0?"":".weglot-flags.zh > a:before, .weglot-flags.zh > span:before { background-position: -"+r[d][0]+"px 0 !important; } .weglot-flags.flag-1.zh > a:before, .weglot-flags.flag-1.zh > span:before { background-position: -"+r[d][1]+"px 0 !important; } .weglot-flags.flag-2.zh > a:before, .weglot-flags.flag-2.zh > span:before { background-position: -"+r[d][2]+"px 0 !important; } .weglot-flags.flag-3.zh > a:before, .weglot-flags.flag-3.zh > span:before { background-position: -"+r[d][3]+"px 0 !important; } ",_=u<=0?"":".weglot-flags.pt > a:before, .weglot-flags.pt > span:before { background-position: -"+s[u][0]+"px 0 !important; } .weglot-flags.flag-1.pt > a:before, .weglot-flags.flag-1.pt > span:before { background-position: -"+s[u][1]+"px 0 !important; } .weglot-flags.flag-2.pt > a:before, .weglot-flags.flag-2.pt > span:before { background-position: -"+s[u][2]+"px 0 !important; } .weglot-flags.flag-3.pt > a:before, .weglot-flags.flag-3.pt > span:before { background-position: -"+s[u][3]+"px 0 !important; } ";e("#flag_css, #weglot-css-flag-css").text(w+b+y+m+v+h+_)}()});var t=e("#flag_css").text();t.trim()&&e("#weglot-css-flag-css").text(t)};document.addEventListener("DOMContentLoaded",()=>{t()})};var g=function(){jQuery;document.addEventListener("DOMContentLoaded",()=>{const e=document.querySelector("#private_mode");e&&0!=e.length&&(document.querySelector("#private_mode").addEventListener("change",function(e){document.querySelectorAll(".private-mode-lang--input").forEach(t=>{t.checked=e.target.checked})}),document.querySelectorAll(".private-mode-lang--input").forEach(e=>{e.addEventListener("change",function(e){0===document.querySelectorAll(".private-mode-lang--input:checked").length&&(document.querySelector("#private_mode").checked=!1)})}))})};o(3),o(2);a(),n(),l(),r(),s(),i(),c(),g()},,function(e,t){Array.prototype.filter||(Array.prototype.filter=function(e,t){"use strict";if("Function"!=typeof e&&"function"!=typeof e||!this)throw new TypeError;var o=this.length>>>0,a=new Array(o),l=this,n=0,r=-1;if(void 0===t)for(;++r!==o;)r in this&&e(l[r],r,l)&&(a[n++]=l[r]);else for(;++r!==o;)r in this&&e.call(t,l[r],r,l)&&(a[n++]=l[r]);return a.length=n,a})},function(e,t){Array.prototype.find||Object.defineProperty(Array.prototype,"find",{value:function(e){if(null==this)throw new TypeError('"this" is null or not defined');var t=Object(this),o=t.length>>>0;if("function"!=typeof e)throw new TypeError("predicate must be a function");for(var a=arguments[1],l=0;l<o;){var n=t[l];if(e.call(a,n,l,t))return n;l++}},configurable:!0,writable:!0})}]);
|
1 |
+
!function(e){var t={};function o(a){if(t[a])return t[a].exports;var l=t[a]={i:a,l:!1,exports:{}};return e[a].call(l.exports,l,l.exports,o),l.l=!0,l.exports}o.m=e,o.c=t,o.d=function(e,t,a){o.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:a})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(e,t){if(1&t&&(e=o(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var a=Object.create(null);if(o.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var l in e)o.d(a,l,function(t){return e[t]}.bind(null,l));return a},o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,"a",t),t},o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o.p="/dist/",o(o.s=4)}([,function(e,t){Array.prototype.find||Object.defineProperty(Array.prototype,"find",{value:function(e){if(null==this)throw new TypeError('"this" is null or not defined');var t=Object(this),o=t.length>>>0;if("function"!=typeof e)throw new TypeError("predicate must be a function");for(var a=arguments[1],l=0;l<o;){var n=t[l];if(e.call(a,n,l,t))return n;l++}},configurable:!0,writable:!0})},function(e,t){Array.prototype.filter||(Array.prototype.filter=function(e,t){"use strict";if("Function"!=typeof e&&"function"!=typeof e||!this)throw new TypeError;var o=this.length>>>0,a=new Array(o),l=this,n=0,r=-1;if(void 0===t)for(;++r!==o;)r in this&&e(l[r],r,l)&&(a[n++]=l[r]);else for(;++r!==o;)r in this&&e.call(t,l[r],r,l)&&(a[n++]=l[r]);return a.length=n,a})},,function(e,t,o){"use strict";o.r(t);var a=function(){const e=jQuery;let t;const o=()=>{let o=e("#original_language").val();e("#original_language").on("change",(function(a){const l=o,n=o;o=a.target.value,t[0].selectize.removeOption(o);const r=weglot_languages.available.find(e=>e.internal_code===n),s=weglot_languages.available.find(e=>e.internal_code===o);t[0].selectize.addOption(r);const i=e("#is_fullname").is(":checked");let c="";e("#with_name").is(":checked")&&(c=i?s.local:s.internal_code.toUpperCase()),e(".wgcurrent.wg-li").removeClass(l).addClass(o).attr("data-code-language",o).find("span").text(c)})),t=e(".weglot-select-destination").selectize({delimiter:"|",persist:!1,valueField:"internal_code",labelField:"local",searchField:["internal_code","english","local"],sortField:[{field:"english",direction:"asc"}],maxItems:weglot_languages.limit,plugins:["remove_button","drag_drop"],options:weglot_languages.available.filter(e=>e.internal_code!==weglot_languages.original),render:{option:function(e,t){return`<div class="weglot__choice__language"><span class="weglot__choice__language--english">${t(e.english)}</span><span class="weglot__choice__language--local">${t(e.local)}[${t(e.external_code)}]</span></div>`}}}).on("change",o=>{const a=t[0].selectize.getValue(),l=e("#li-button-tpl");if(0===l.length)return;const n=e("#is_fullname").is(":checked"),r=e("#with_name").is(":checked"),s=e("#with_flags").is(":checked");let i="";s&&(i="weglot-flags");let c="";a.forEach(e=>{const t=weglot_languages.available.find(t=>t.internal_code===e);let o="";r&&(o=n?t.local:e.toUpperCase()),c+=l.html().replace("{LABEL_LANGUAGE}",o).replace(new RegExp("{CODE_LANGUAGE}","g"),e).replace("{CLASSES}",i)}),e(".country-selector ul").html(c)}),window.addEventListener("weglotCheckApi",e=>{let o=1e3;const a=e.detail.plan;a<=0||weglot_languages.plans.starter_free.ids.indexOf(a)>=0?o=weglot_languages.plans.starter_free.limit_language:weglot_languages.plans.business.ids.indexOf(a)>=0&&(o=weglot_languages.plans.business.limit_language),t[0].selectize.settings.maxItems=o})};document.addEventListener("DOMContentLoaded",()=>{o()})};var l=function(){const e=jQuery;document.addEventListener("DOMContentLoaded",()=>{e("#weglot-box-first-settings .weglot-btn-close").on("click",(function(t){t.preventDefault(),e("#weglot-box-first-settings").hide()}))})};var n=function(){const e=()=>{document.querySelector("#tpl-exclusion-url");const e=document.querySelector("#tpl-exclusion-block"),t=document.querySelector("#container-exclude_blocks");function o(e){e.preventDefault(),this.parentNode.remove()}document.querySelector("#js-add-exclude-block")&&document.querySelector("#js-add-exclude-block").addEventListener("click",a=>{a.preventDefault(),t.insertAdjacentHTML("beforeend",e.innerHTML),document.querySelector("#container-exclude_blocks .item-exclude:last-child .js-btn-remove-exclude").addEventListener("click",o)});document.querySelectorAll(".js-btn-remove").forEach(e=>{e.addEventListener("click",o)})};document.addEventListener("DOMContentLoaded",()=>{e()})};var r=function(){const e=jQuery,t=()=>{let t=e("#type_flags option:selected").data("value"),o=[];o.push(e(".country-selector label").data("code-language")),e(".country-selector li").each((t,a)=>{o.push(e(a).data("code-language"))});const a=weglot_languages.available.filter(e=>o.indexOf(e.code)>=0);e("#weglot-css-inline").text(weglot_css.inline),e("#is_dropdown").on("change",(function(){e(".country-selector").toggleClass("weglot-inline"),e(".country-selector").toggleClass("weglot-dropdown")})),e("#with_flags").on("change",(function(){e(".country-selector label, .country-selector li").toggleClass("weglot-flags")})),e("#type_flags").on("change",(function(o){e(".country-selector label, .country-selector li").removeClass("flag-"+t);const a=e(":selected",this).data("value");e(".country-selector label, .country-selector li").addClass("flag-"+a),t=a}));const l=()=>{const t=a.find(t=>t.code===e(".country-selector label").data("code-language")),o=e("#is_fullname").is(":checked"),l=o?t.local:t.code.toUpperCase();e(".country-selector label a, .country-selector label span").text(l),e(".country-selector li").each((t,l)=>{const n=a.find(t=>t.code===e(l).data("code-language")),r=o?n.local:n.code.toUpperCase();e(l).find("a").text(r)})};e("#with_name").on("change",(function(t){t.target.checked?l():(e(".country-selector label a, .country-selector label span").text(""),e(".country-selector li a, .country-selector li span").each((t,o)=>{e(o).text("")}))})),e("#is_fullname").on("change",(function(t){if(e("#with_name").is(":checked"))if(t.target.checked)l();else{const t=a.find(t=>t.code===e(".country-selector label").data("code-language"));e(".country-selector label a, .country-selector label span").text(t.code.toUpperCase()),e(".country-selector li").each((t,o)=>{const l=a.find(t=>t.code===e(o).data("code-language"));e(o).find("a").text(l.code.toUpperCase()),e(o).find("span").text(l.code.toUpperCase())})}})),e("#override_css").on("keyup",(function(t){e("#weglot-css-inline").text(t.target.value)}))};document.addEventListener("DOMContentLoaded",()=>{0!==e(".weglot-preview").length&&t()})};var s=function(){const e=jQuery,t=()=>{e("#api_key_private").blur((function(){var t=e(this).val();if(0===t.length)return e(".weglot-keyres").remove(),e("#api_key_private").after('<span class="weglot-keyres weglot-nokkey"></span>'),void e("#wrap-weglot #submit").prop("disabled",!0);function o(){e(".weglot-keyres").remove(),e("#api_key_private").after('<span class="weglot-keyres weglot-nokkey"></span><p class="weglot-keyres">Make sure you enter a valid Weglot API key. If the key is still not validating, you can contact your host provider and ask if it\'s possible to whitelist api.weglot.com and weglot.com</p>'),e("#wrap-weglot #submit").prop("disabled",!0)}e(".weglot-keyres").remove(),e("#api_key_private").after('<span class="weglot-keyres weglot-ckeckkey"></span>'),e.ajax({method:"POST",url:ajaxurl,data:{action:"get_user_info",api_key:t},success:({data:t,success:a})=>{e(".weglot-keyres").remove(),a?function(t){e(".weglot-keyres").remove(),e("#api_key_private").after('<span class="weglot-keyres weglot-okkey"></span>'),e("#wrap-weglot #submit").prop("disabled",!1);const o=new CustomEvent("weglotCheckApi",{detail:t});window.dispatchEvent(o)}(t):o()}}).fail((function(){o()}))}))};document.addEventListener("DOMContentLoaded",()=>{t()})};var i=function(){jQuery;document.addEventListener("DOMContentLoaded",()=>{jQuery(document).ready((function(e){wp.codeEditor.initialize(e("#override_css"),cm_settings)}))})};var c=function(){const e=jQuery;"undefined"!=typeof weglot_css&&e("#weglot-css-flag-css").text(weglot_css.flag_css);const t=()=>{e(".flag-style-openclose").on("click",(function(){e(".flag-style-wrapper").toggle()})),e("select.flag-en-type, select.flag-es-type, select.flag-pt-type, select.flag-fr-type, select.flag-ar-type, select.flag-tw-type, select.flag-zh-type").on("change",(function(){!function(){var t=new Array,o=new Array,a=new Array,l=new Array,n=new Array,r=new Array,s=new Array;t[1]=[3570,7841,48,2712],t[2]=[3720,449,3048,4440],t[3]=[3840,1281,2712,4224],t[4]=[3240,5217,1224,2112],t[5]=[4050,3585,1944,2496],t[6]=[2340,3457,2016,2016],o[1]=[4320,4641,3144,3552],o[2]=[3750,353,2880,4656],o[3]=[4200,1601,2568,3192],o[4]=[3990,5793,1032,2232],o[5]=[5460,897,4104,3120],o[6]=[3810,7905,216,3888],o[7]=[3630,8065,192,2376],o[8]=[3780,1473,2496,4104],o[9]=[6120,2145,4680,2568],o[10]=[4440,3009,3240,1176],o[11]=[5280,1825,3936,2976],o[12]=[4770,2081,3624,1008],o[13]=[4080,3201,2160,2544],o[14]=[4590,5761,3432,624],o[15]=[4350,2209,3360,2688],o[16]=[5610,5249,3168,528],o[17]=[5070,1729,3792,2952],o[18]=[6870,5953,96,3408],o[19]=[4020,5697,1056,1224],a[1]=[2760,736,2856,4416],a[2]=[3840,1280,2712,4224],a[3]=[5700,7201,5016,2400],a[4]=[2220,4160,1632,1944],l[1]=[1830,129,3096,5664],l[2]=[5100,2177,3840,2904],l[3]=[4890,3425,3648,2136],l[4]=[1320,3681,1896,4080],l[5]=[1260,3841,1824,1200],l[6]=[1020,3969,1608,312],l[7]=[4800,4065,3600,72],l[8]=[4710,4865,3504,480],l[9]=[6720,5984,5112,3792],l[10]=[4500,7233,3288,1800],l[11]=[720,7522,384,3936],l[12]=[690,7745,336,1104],l[13]=[600,8225,120,1272],l[14]=[660,5569,840,576],n[1]=[3690,1505,2592,3240],n[2]=[3600,3233,2112,48],r[1]=[2970,6369,3408,4008],r[2]=[3600,3233,2112,48],s[1]=[6630,993,2784,4344];var i=e("select.flag-en-type").val(),c=e("select.flag-es-type").val(),g=e("select.flag-fr-type").val(),f=e("select.flag-ar-type").val(),p=e("select.flag-tw-type").val(),d=e("select.flag-zh-type").val(),u=e("select.flag-pt-type").val(),w=i<=0?"":".weglot-flags.en > a:before, .weglot-flags.en > span:before { background-position: -"+t[i][0]+"px 0 !important; } .weglot-flags.flag-1.en > a:before, .weglot-flags.flag-1.en > span:before { background-position: -"+t[i][1]+"px 0 !important; } .weglot-flags.flag-2.en > a:before, .weglot-flags.flag-2.en > span:before { background-position: -"+t[i][2]+"px 0 !important; } .weglot-flags.flag-3.en > a:before, .weglot-flags.flag-3.en > span:before { background-position: -"+t[i][3]+"px 0 !important; } ",b=c<=0?"":".weglot-flags.es > a:before, .weglot-flags.es > span:before { background-position: -"+o[c][0]+"px 0 !important; } .weglot-flags.flag-1.es > a:before, .weglot-flags.flag-1.es > span:before { background-position: -"+o[c][1]+"px 0 !important; } .weglot-flags.flag-2.es > a:before, .weglot-flags.flag-2.es > span:before { background-position: -"+o[c][2]+"px 0 !important; } .weglot-flags.flag-3.es > a:before, .weglot-flags.flag-3.es > span:before { background-position: -"+o[c][3]+"px 0 !important; } ",y=g<=0?"":".weglot-flags.fr > a:before, .weglot-flags.fr > span:before { background-position: -"+a[g][0]+"px 0 !important; } .weglot-flags.flag-1.fr > a:before, .weglot-flags.flag-1.fr > span:before { background-position: -"+a[g][1]+"px 0 !important; } .weglot-flags.flag-2.fr > a:before, .weglot-flags.flag-2.fr > span:before { background-position: -"+a[g][2]+"px 0 !important; } .weglot-flags.flag-3.fr > a:before, .weglot-flags.flag-3.fr > span:before { background-position: -"+a[g][3]+"px 0 !important; } ",m=f<=0?"":".weglot-flags.ar > a:before, .weglot-flags.ar > span:before { background-position: -"+l[f][0]+"px 0 !important; } .weglot-flags.flag-1.ar > a:before, .weglot-flags.flag-1.ar > span:before { background-position: -"+l[f][1]+"px 0 !important; } .weglot-flags.flag-2.ar > a:before, .weglot-flags.flag-2.ar > span:before { background-position: -"+l[f][2]+"px 0 !important; } .weglot-flags.flag-3.ar > a:before, .weglot-flags.flag-3.ar > span:before { background-position: -"+l[f][3]+"px 0 !important; } ",v=p<=0?"":".weglot-flags.tw > a:before, .weglot-flags.tw > span:before { background-position: -"+n[p][0]+"px 0 !important; } .weglot-flags.flag-1.tw > a:before, .weglot-flags.flag-1.tw > span:before { background-position: -"+n[p][1]+"px 0 !important; } .weglot-flags.flag-2.tw > a:before, .weglot-flags.flag-2.tw > span:before { background-position: -"+n[p][2]+"px 0 !important; } .weglot-flags.flag-3.tw > a:before, .weglot-flags.flag-3.tw > span:before { background-position: -"+n[p][3]+"px 0 !important; } ",h=d<=0?"":".weglot-flags.zh > a:before, .weglot-flags.zh > span:before { background-position: -"+r[d][0]+"px 0 !important; } .weglot-flags.flag-1.zh > a:before, .weglot-flags.flag-1.zh > span:before { background-position: -"+r[d][1]+"px 0 !important; } .weglot-flags.flag-2.zh > a:before, .weglot-flags.flag-2.zh > span:before { background-position: -"+r[d][2]+"px 0 !important; } .weglot-flags.flag-3.zh > a:before, .weglot-flags.flag-3.zh > span:before { background-position: -"+r[d][3]+"px 0 !important; } ",_=u<=0?"":".weglot-flags.pt > a:before, .weglot-flags.pt > span:before { background-position: -"+s[u][0]+"px 0 !important; } .weglot-flags.flag-1.pt > a:before, .weglot-flags.flag-1.pt > span:before { background-position: -"+s[u][1]+"px 0 !important; } .weglot-flags.flag-2.pt > a:before, .weglot-flags.flag-2.pt > span:before { background-position: -"+s[u][2]+"px 0 !important; } .weglot-flags.flag-3.pt > a:before, .weglot-flags.flag-3.pt > span:before { background-position: -"+s[u][3]+"px 0 !important; } ";e("#flag_css, #weglot-css-flag-css").text(w+b+y+m+v+h+_)}()}));var t=e("#flag_css").text();t.trim()&&e("#weglot-css-flag-css").text(t)};document.addEventListener("DOMContentLoaded",()=>{t()})};var g=function(){jQuery;document.addEventListener("DOMContentLoaded",()=>{const e=document.querySelector("#private_mode");e&&0!=e.length&&(document.querySelector("#private_mode").addEventListener("change",(function(e){document.querySelectorAll(".private-mode-lang--input").forEach(t=>{t.checked=e.target.checked})})),document.querySelectorAll(".private-mode-lang--input").forEach(e=>{e.addEventListener("change",(function(e){0===document.querySelectorAll(".private-mode-lang--input:checked").length&&(document.querySelector("#private_mode").checked=!1)}))}))})};o(1),o(2);a(),n(),l(),r(),s(),i(),c(),g()}]);
|
dist/css/admin-css.css
CHANGED
@@ -322,443 +322,4 @@
|
|
322 |
opacity: 0.5;
|
323 |
background-color: #fafafa;
|
324 |
}
|
325 |
-
@charset "UTF-8";
|
326 |
-
#weglot-url-translate,
|
327 |
-
#wrap-weglot {
|
328 |
-
/* Code Editor */
|
329 |
-
/* End Code Editor */ }
|
330 |
-
#weglot-url-translate .CodeMirror-placeholder,
|
331 |
-
#wrap-weglot .CodeMirror-placeholder {
|
332 |
-
color: #c0c0c0; }
|
333 |
-
#weglot-url-translate .CodeMirror-wrap,
|
334 |
-
#wrap-weglot .CodeMirror-wrap {
|
335 |
-
border-radius: 4px;
|
336 |
-
border: 1px solid #c0c0c0;
|
337 |
-
width: 100%;
|
338 |
-
max-width: 550px;
|
339 |
-
height: 200px; }
|
340 |
-
#weglot-url-translate .weglot__choice__language,
|
341 |
-
#wrap-weglot .weglot__choice__language {
|
342 |
-
border-bottom: 1px solid #eee;
|
343 |
-
margin: 5px 0; }
|
344 |
-
#weglot-url-translate .weglot__choice__language--local,
|
345 |
-
#wrap-weglot .weglot__choice__language--local {
|
346 |
-
border-width: 50px;
|
347 |
-
color: #a6a6a6;
|
348 |
-
display: block; }
|
349 |
-
#weglot-url-translate p.weglot-keyres,
|
350 |
-
#wrap-weglot p.weglot-keyres {
|
351 |
-
font-style: italic;
|
352 |
-
color: #ff6464; }
|
353 |
-
#weglot-url-translate .weglot_text_error,
|
354 |
-
#wrap-weglot .weglot_text_error {
|
355 |
-
color: #dc3232; }
|
356 |
-
#weglot-url-translate .weglot_reset,
|
357 |
-
#wrap-weglot .weglot_reset {
|
358 |
-
text-decoration: underline;
|
359 |
-
font-style: italic; }
|
360 |
-
#weglot-url-translate .weglot_reset:hover,
|
361 |
-
#wrap-weglot .weglot_reset:hover {
|
362 |
-
cursor: pointer; }
|
363 |
-
#weglot-url-translate .btn,
|
364 |
-
#wrap-weglot .btn {
|
365 |
-
background: #335ee2;
|
366 |
-
display: inline-block;
|
367 |
-
padding: 8px 10px;
|
368 |
-
border-radius: 4px;
|
369 |
-
-webkit-transition: 0.2s background linear, 0.2s color linear, 0.2s border linear, 0.2s text-shadow linear;
|
370 |
-
-o-transition: 0.2s background linear, 0.2s color linear, 0.2s border linear, 0.2s text-shadow linear;
|
371 |
-
transition: 0.2s background linear, 0.2s color linear, 0.2s border linear, 0.2s text-shadow linear;
|
372 |
-
outline: 0;
|
373 |
-
-webkit-font-smoothing: antialiased;
|
374 |
-
text-rendering: optimizeLegibility;
|
375 |
-
font-weight: 700;
|
376 |
-
cursor: pointer;
|
377 |
-
text-align: center;
|
378 |
-
text-decoration: none;
|
379 |
-
-webkit-box-shadow: none;
|
380 |
-
box-shadow: none;
|
381 |
-
white-space: nowrap;
|
382 |
-
color: white;
|
383 |
-
border: 1px solid #335ee2; }
|
384 |
-
#weglot-url-translate .btn.btn-soft,
|
385 |
-
#wrap-weglot .btn.btn-soft {
|
386 |
-
background-color: #fff;
|
387 |
-
color: #24284c;
|
388 |
-
border-radius: 4px;
|
389 |
-
border: 1px solid #7e8993;
|
390 |
-
line-height: 1.4em; }
|
391 |
-
#weglot-url-translate .btn.btn-primary:active, #weglot-url-translate .btn.btn-primary:focus, #weglot-url-translate .btn.btn-primary:hover,
|
392 |
-
#wrap-weglot .btn.btn-primary:active,
|
393 |
-
#wrap-weglot .btn.btn-primary:focus,
|
394 |
-
#wrap-weglot .btn.btn-primary:hover {
|
395 |
-
border-color: #446dea;
|
396 |
-
background-color: #446dea; }
|
397 |
-
#weglot-url-translate .js-btn-remove,
|
398 |
-
#wrap-weglot .js-btn-remove {
|
399 |
-
border: none;
|
400 |
-
background-color: #e35b5b;
|
401 |
-
color: #fff;
|
402 |
-
display: inline-block;
|
403 |
-
width: 22px;
|
404 |
-
height: 22px;
|
405 |
-
border-radius: 50%;
|
406 |
-
cursor: pointer;
|
407 |
-
-webkit-transform: translateY(-5%);
|
408 |
-
-ms-transform: translateY(-5%);
|
409 |
-
transform: translateY(-5%);
|
410 |
-
-webkit-transition: opacity 175ms linear;
|
411 |
-
-o-transition: opacity 175ms linear;
|
412 |
-
transition: opacity 175ms linear;
|
413 |
-
outline: 0;
|
414 |
-
padding: 0;
|
415 |
-
margin: 4px 0;
|
416 |
-
vertical-align: middle; }
|
417 |
-
#weglot-url-translate .js-btn-remove:hover,
|
418 |
-
#wrap-weglot .js-btn-remove:hover {
|
419 |
-
background-color: #c62d2d; }
|
420 |
-
#weglot-url-translate .item-exclude,
|
421 |
-
#wrap-weglot .item-exclude {
|
422 |
-
position: relative;
|
423 |
-
margin-bottom: 10px; }
|
424 |
-
#weglot-url-translate::-webkit-input-placeholder, #weglot-url-translate:-moz-placeholder, #weglot-url-translate::-moz-placeholder, #weglot-url-translate:-ms-input-placeholder,
|
425 |
-
#wrap-weglot::-webkit-input-placeholder,
|
426 |
-
#wrap-weglot:-moz-placeholder,
|
427 |
-
#wrap-weglot::-moz-placeholder,
|
428 |
-
#wrap-weglot:-ms-input-placeholder {
|
429 |
-
color: #c0c0c0; }
|
430 |
-
#weglot-url-translate .sub-label,
|
431 |
-
#wrap-weglot .sub-label {
|
432 |
-
font-size: 13px;
|
433 |
-
font-weight: normal;
|
434 |
-
margin: 2px 0 0;
|
435 |
-
color: #444;
|
436 |
-
opacity: 0.8; }
|
437 |
-
#weglot-url-translate .weglot-select-original,
|
438 |
-
#wrap-weglot .weglot-select-original {
|
439 |
-
height: 36px !important;
|
440 |
-
margin: 0; }
|
441 |
-
#weglot-url-translate .original-select,
|
442 |
-
#weglot-url-translate #type_flags,
|
443 |
-
#wrap-weglot .original-select,
|
444 |
-
#wrap-weglot #type_flags {
|
445 |
-
padding: 8px;
|
446 |
-
height: 36px !important;
|
447 |
-
width: 300px; }
|
448 |
-
#weglot-url-translate #type_flags,
|
449 |
-
#wrap-weglot #type_flags {
|
450 |
-
width: 150px; }
|
451 |
-
#weglot-url-translate .selectize-control.multi .selectize-input,
|
452 |
-
#wrap-weglot .selectize-control.multi .selectize-input {
|
453 |
-
border: 1px solid #7e8993;
|
454 |
-
border-radius: 4px;
|
455 |
-
-webkit-box-shadow: unset;
|
456 |
-
box-shadow: unset; }
|
457 |
-
#weglot-url-translate .selectize-control.multi .selectize-input > div,
|
458 |
-
#wrap-weglot .selectize-control.multi .selectize-input > div {
|
459 |
-
background-color: #eff0ff;
|
460 |
-
border: 1px solid #7e8993;
|
461 |
-
border-radius: 2px; }
|
462 |
-
#weglot-url-translate .selectize-control.multi .selectize-input > div .remove,
|
463 |
-
#wrap-weglot .selectize-control.multi .selectize-input > div .remove {
|
464 |
-
border-left-color: #7e8993; }
|
465 |
-
#weglot-url-translate .wg-input-textarea,
|
466 |
-
#wrap-weglot .wg-input-textarea {
|
467 |
-
padding: 8px; }
|
468 |
-
#weglot-url-translate .wg-input-textarea::-webkit-input-placeholder,
|
469 |
-
#wrap-weglot .wg-input-textarea::-webkit-input-placeholder {
|
470 |
-
color: #c0c0c0; }
|
471 |
-
#weglot-url-translate .wg-input-textarea:-ms-input-placeholder,
|
472 |
-
#wrap-weglot .wg-input-textarea:-ms-input-placeholder {
|
473 |
-
color: #c0c0c0; }
|
474 |
-
#weglot-url-translate .wg-input-textarea::-ms-input-placeholder,
|
475 |
-
#wrap-weglot .wg-input-textarea::-ms-input-placeholder {
|
476 |
-
color: #c0c0c0; }
|
477 |
-
#weglot-url-translate .wg-input-textarea::placeholder,
|
478 |
-
#wrap-weglot .wg-input-textarea::placeholder {
|
479 |
-
color: #c0c0c0; }
|
480 |
-
#weglot-url-translate .weglot-select.weglot-select-original,
|
481 |
-
#weglot-url-translate input[type="text"],
|
482 |
-
#weglot-url-translate textarea,
|
483 |
-
#weglot-url-translate select,
|
484 |
-
#weglot-url-translate #type_flags,
|
485 |
-
#wrap-weglot .weglot-select.weglot-select-original,
|
486 |
-
#wrap-weglot input[type="text"],
|
487 |
-
#wrap-weglot textarea,
|
488 |
-
#wrap-weglot select,
|
489 |
-
#wrap-weglot #type_flags {
|
490 |
-
padding: 0 8px;
|
491 |
-
border-radius: 4px;
|
492 |
-
border: 1px solid #7e8993; }
|
493 |
-
#weglot-url-translate .weglot-select.weglot-select-original:focus,
|
494 |
-
#weglot-url-translate input[type="text"]:focus,
|
495 |
-
#weglot-url-translate textarea:focus,
|
496 |
-
#weglot-url-translate select:focus,
|
497 |
-
#weglot-url-translate #type_flags:focus,
|
498 |
-
#wrap-weglot .weglot-select.weglot-select-original:focus,
|
499 |
-
#wrap-weglot input[type="text"]:focus,
|
500 |
-
#wrap-weglot textarea:focus,
|
501 |
-
#wrap-weglot select:focus,
|
502 |
-
#wrap-weglot #type_flags:focus {
|
503 |
-
border-color: #446dea !important;
|
504 |
-
-webkit-box-shadow: none !important;
|
505 |
-
box-shadow: none !important; }
|
506 |
-
#weglot-url-translate .weglot-info,
|
507 |
-
#wrap-weglot .weglot-info {
|
508 |
-
position: relative;
|
509 |
-
color: #3741cc;
|
510 |
-
font-weight: bold; }
|
511 |
-
#weglot-url-translate .weglot-info:hover .wg-tooltip,
|
512 |
-
#wrap-weglot .weglot-info:hover .wg-tooltip {
|
513 |
-
line-height: 1.4;
|
514 |
-
position: absolute;
|
515 |
-
top: 27px;
|
516 |
-
display: block !important;
|
517 |
-
background-color: #24292d;
|
518 |
-
width: 160px;
|
519 |
-
padding: 10px;
|
520 |
-
color: white;
|
521 |
-
font-weight: normal;
|
522 |
-
border: 1px solid #e0e0e0;
|
523 |
-
font-size: 12px; }
|
524 |
-
#weglot-url-translate .weglot-box-overlay,
|
525 |
-
#wrap-weglot .weglot-box-overlay {
|
526 |
-
position: fixed;
|
527 |
-
top: 0;
|
528 |
-
left: 0;
|
529 |
-
display: -webkit-box;
|
530 |
-
display: -webkit-flex;
|
531 |
-
display: -ms-flexbox;
|
532 |
-
display: flex;
|
533 |
-
width: 100%;
|
534 |
-
height: 100%;
|
535 |
-
background-color: rgba(0, 0, 0, 0.85);
|
536 |
-
z-index: 9999;
|
537 |
-
-webkit-box-pack: center;
|
538 |
-
-webkit-justify-content: center;
|
539 |
-
-ms-flex-pack: center;
|
540 |
-
justify-content: center;
|
541 |
-
-webkit-box-align: center;
|
542 |
-
-webkit-align-items: center;
|
543 |
-
-ms-flex-align: center;
|
544 |
-
align-items: center; }
|
545 |
-
#weglot-url-translate .weglot-box-overlay .weglot-box,
|
546 |
-
#wrap-weglot .weglot-box-overlay .weglot-box {
|
547 |
-
background-color: #fff;
|
548 |
-
padding: 25px;
|
549 |
-
text-align: center;
|
550 |
-
-webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
|
551 |
-
box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75); }
|
552 |
-
#weglot-url-translate .weglot-box-overlay .weglot-box--title,
|
553 |
-
#wrap-weglot .weglot-box-overlay .weglot-box--title {
|
554 |
-
font-size: 24px;
|
555 |
-
line-height: 1.3; }
|
556 |
-
#weglot-url-translate .weglot-box-overlay .weglot-box--text,
|
557 |
-
#wrap-weglot .weglot-box-overlay .weglot-box--text {
|
558 |
-
font-size: 18px; }
|
559 |
-
#weglot-url-translate .weglot-box-overlay .weglot-box--subtext,
|
560 |
-
#wrap-weglot .weglot-box-overlay .weglot-box--subtext {
|
561 |
-
font-size: 12px;
|
562 |
-
font-style: italic; }
|
563 |
-
#weglot-url-translate .weglot-box-overlay .weglot-btn-close,
|
564 |
-
#wrap-weglot .weglot-box-overlay .weglot-btn-close {
|
565 |
-
float: right;
|
566 |
-
cursor: pointer; }
|
567 |
-
#weglot-url-translate .flag-style-openclose,
|
568 |
-
#wrap-weglot .flag-style-openclose {
|
569 |
-
display: inline-block;
|
570 |
-
font-size: 12px;
|
571 |
-
text-decoration: underline;
|
572 |
-
cursor: default;
|
573 |
-
margin: 12px 15px 0 10px;
|
574 |
-
color: #46b450; }
|
575 |
-
#weglot-url-translate .flag-style-openclose:hover,
|
576 |
-
#wrap-weglot .flag-style-openclose:hover {
|
577 |
-
color: #399648;
|
578 |
-
cursor: pointer; }
|
579 |
-
#weglot-url-translate .flag-style-wrapper,
|
580 |
-
#wrap-weglot .flag-style-wrapper {
|
581 |
-
padding: 15px 0px; }
|
582 |
-
#weglot-url-translate .flag-style-wrapper p,
|
583 |
-
#wrap-weglot .flag-style-wrapper p {
|
584 |
-
font-size: 12px !important; }
|
585 |
-
#weglot-url-translate .flag-style-wrapper select,
|
586 |
-
#wrap-weglot .flag-style-wrapper select {
|
587 |
-
font-size: 12px;
|
588 |
-
margin: 0 2px 6px 0;
|
589 |
-
padding: 0 26px 0 8px; }
|
590 |
-
#weglot-url-translate #private_mode + p + div,
|
591 |
-
#wrap-weglot #private_mode + p + div {
|
592 |
-
display: none; }
|
593 |
-
#weglot-url-translate #private_mode:checked + p + div,
|
594 |
-
#wrap-weglot #private_mode:checked + p + div {
|
595 |
-
display: block; }
|
596 |
-
#weglot-url-translate #private-mode-detail,
|
597 |
-
#wrap-weglot #private-mode-detail {
|
598 |
-
margin-top: 20px; }
|
599 |
-
#weglot-url-translate #private-mode-detail .private-mode-detail-lang,
|
600 |
-
#wrap-weglot #private-mode-detail .private-mode-detail-lang {
|
601 |
-
display: -webkit-box;
|
602 |
-
display: -webkit-flex;
|
603 |
-
display: -ms-flexbox;
|
604 |
-
display: flex;
|
605 |
-
-webkit-box-align: center;
|
606 |
-
-webkit-align-items: center;
|
607 |
-
-ms-flex-align: center;
|
608 |
-
align-items: center;
|
609 |
-
margin-bottom: 10px;
|
610 |
-
margin-left: 25px; }
|
611 |
-
#weglot-url-translate #private-mode-detail .private-mode-detail-lang input[type="checkbox"],
|
612 |
-
#wrap-weglot #private-mode-detail .private-mode-detail-lang input[type="checkbox"] {
|
613 |
-
margin-top: -1px; }
|
614 |
-
|
615 |
-
#wrap-weglot {
|
616 |
-
display: -webkit-box;
|
617 |
-
display: -webkit-flex;
|
618 |
-
display: -ms-flexbox;
|
619 |
-
display: flex;
|
620 |
-
margin-left: 15px; }
|
621 |
-
#wrap-weglot .wrap {
|
622 |
-
-webkit-box-flex: 4;
|
623 |
-
-webkit-flex: 4;
|
624 |
-
-ms-flex: 4;
|
625 |
-
flex: 4; }
|
626 |
-
#wrap-weglot input[type="text"]:not(#destination_language-selectized),
|
627 |
-
#wrap-weglot input[type="url"] {
|
628 |
-
padding: 0 8px;
|
629 |
-
height: 36px; }
|
630 |
-
#wrap-weglot select {
|
631 |
-
height: 36px;
|
632 |
-
vertical-align: top;
|
633 |
-
border-radius: 4px;
|
634 |
-
padding: 0 26px 0 8px; }
|
635 |
-
#wrap-weglot input[type="checkbox"] {
|
636 |
-
margin-top: -4px; }
|
637 |
-
#wrap-weglot .weglot-ckeckkey:before {
|
638 |
-
content: "\21BB";
|
639 |
-
display: inline-block;
|
640 |
-
color: #666;
|
641 |
-
padding: 0 6px 0 0;
|
642 |
-
font-size: 16px;
|
643 |
-
padding: 0 10px;
|
644 |
-
line-height: 1em;
|
645 |
-
-webkit-animation: spin 2s infinite linear; }
|
646 |
-
|
647 |
-
@-webkit-keyframes spin {
|
648 |
-
0% {
|
649 |
-
-webkit-transform: rotate(0deg); }
|
650 |
-
100% {
|
651 |
-
-webkit-transform: rotate(360deg); } }
|
652 |
-
#wrap-weglot .weglot-nokkey:before {
|
653 |
-
content: "\274C";
|
654 |
-
display: inline-block;
|
655 |
-
color: #dc3232;
|
656 |
-
padding: 0 6px 0 0;
|
657 |
-
font-size: 15px;
|
658 |
-
padding: 0 10px; }
|
659 |
-
#wrap-weglot .weglot-okkey:before {
|
660 |
-
content: "\2713";
|
661 |
-
display: inline-block;
|
662 |
-
color: #46b450;
|
663 |
-
padding: 0 10px;
|
664 |
-
font-size: 20px;
|
665 |
-
font-weight: bold;
|
666 |
-
padding: 0 10px; }
|
667 |
-
#wrap-weglot .weglot-infobox {
|
668 |
-
-webkit-box-flex: 2;
|
669 |
-
-webkit-flex: 2;
|
670 |
-
-ms-flex: 2;
|
671 |
-
flex: 2;
|
672 |
-
-webkit-align-self: start;
|
673 |
-
-ms-flex-item-align: start;
|
674 |
-
align-self: start;
|
675 |
-
margin: 10px 20px 0 2px;
|
676 |
-
background-color: white;
|
677 |
-
border: 1px solid #e0e0e0;
|
678 |
-
border-radius: 12px;
|
679 |
-
overflow: hidden; }
|
680 |
-
#wrap-weglot .weglot-infobox h3 {
|
681 |
-
color: #18164c;
|
682 |
-
background-color: white;
|
683 |
-
padding: 30px 30px 0 30px;
|
684 |
-
margin: 0px;
|
685 |
-
font-size: 23px;
|
686 |
-
line-height: 1.3; }
|
687 |
-
#wrap-weglot .weglot-infobox div {
|
688 |
-
padding: 15px 30px 30px 30px; }
|
689 |
-
#wrap-weglot .weglot-infobox .weglot-editbtn {
|
690 |
-
-webkit-box-shadow: 0 2px 4px 0 rgba(1, 1, 2, 0.05);
|
691 |
-
box-shadow: 0 2px 4px 0 rgba(1, 1, 2, 0.05);
|
692 |
-
background-color: #3d46fb;
|
693 |
-
color: #fff;
|
694 |
-
height: 45px;
|
695 |
-
border-radius: 23px;
|
696 |
-
line-height: 45px;
|
697 |
-
font-size: 14px !important;
|
698 |
-
text-decoration: none;
|
699 |
-
padding: 0 30px;
|
700 |
-
display: inline-block;
|
701 |
-
-webkit-transition: all 0.2s ease-in;
|
702 |
-
-o-transition: all 0.2s ease-in;
|
703 |
-
transition: all 0.2s ease-in; }
|
704 |
-
#wrap-weglot .weglot-infobox .weglot-editbtn:hover {
|
705 |
-
color: white;
|
706 |
-
background: #252ed7; }
|
707 |
-
#wrap-weglot input[type="text"],
|
708 |
-
#wrap-weglot .selectize-control,
|
709 |
-
#wrap-weglot .wg-input-textarea,
|
710 |
-
#wrap-weglot .weglot-select-original {
|
711 |
-
width: 100%;
|
712 |
-
max-width: 320px; }
|
713 |
-
#wrap-weglot #submit {
|
714 |
-
height: 50px;
|
715 |
-
padding: 0 30px !important;
|
716 |
-
font-size: 16px; }
|
717 |
-
#wrap-weglot .description {
|
718 |
-
display: inline; }
|
719 |
-
#wrap-weglot .wg-tooltip {
|
720 |
-
position: absolute;
|
721 |
-
display: none; }
|
722 |
-
#wrap-weglot #mainform {
|
723 |
-
margin-bottom: 50px; }
|
724 |
-
#wrap-weglot .arrow-up {
|
725 |
-
width: 0;
|
726 |
-
height: 0;
|
727 |
-
border-left: 10px solid transparent;
|
728 |
-
border-right: 10px solid transparent;
|
729 |
-
border-bottom: 10px solid #24292d;
|
730 |
-
position: absolute;
|
731 |
-
top: -10px;
|
732 |
-
left: 36px; }
|
733 |
-
#wrap-weglot .question-icon {
|
734 |
-
font-size: 17px; }
|
735 |
-
#wrap-weglot .form-table {
|
736 |
-
margin-bottom: 50px; }
|
737 |
-
#wrap-weglot .country-selector {
|
738 |
-
z-index: 1 !important; }
|
739 |
-
|
740 |
-
#weglot-url-translate .weglot_custom_url {
|
741 |
-
border-bottom: 1px solid #ccc;
|
742 |
-
margin-bottom: 20px;
|
743 |
-
padding-bottom: 10px; }
|
744 |
-
#weglot-url-translate .weglot_custom_url a {
|
745 |
-
margin: 5px 0px;
|
746 |
-
display: inline-block; }
|
747 |
-
#weglot-url-translate .weglot_custom_url--text_link {
|
748 |
-
margin-bottom: 4px; }
|
749 |
-
#weglot-url-translate .weglot_custom_url .weglot_custom_url--text_link input[type="text"] {
|
750 |
-
min-height: 24px !important;
|
751 |
-
height: 24px; }
|
752 |
-
#weglot-url-translate .weglot_custom_url .weglot_custom_url--text_link button {
|
753 |
-
margin-top: -2px;
|
754 |
-
font-size: 11px;
|
755 |
-
padding: 0 8px; }
|
756 |
-
#weglot-url-translate .weglot_custom_url .weglot_custom_url--text_link button.button-weglot-lang .dashicons {
|
757 |
-
font-size: 14px;
|
758 |
-
line-height: 21px;
|
759 |
-
margin-right: -3px;
|
760 |
-
margin-left: -4px; }
|
761 |
-
#weglot-url-translate .weglot_custom_url a.weglot_reset {
|
762 |
-
text-decoration: none; }
|
763 |
-
#weglot-url-translate .weglot_custom_url a.weglot_reset:link, #weglot-url-translate .weglot_custom_url a.weglot_reset:visited, #weglot-url-translate .weglot_custom_url a.weglot_reset:hover, #weglot-url-translate .weglot_custom_url a.weglot_reset:active {
|
764 |
-
text-decoration: none; }
|
322 |
opacity: 0.5;
|
323 |
background-color: #fafafa;
|
324 |
}
|
325 |
+
#weglot-url-translate .CodeMirror-placeholder,#wrap-weglot .CodeMirror-placeholder{color:#c0c0c0}#weglot-url-translate .CodeMirror-wrap,#wrap-weglot .CodeMirror-wrap{border-radius:4px;border:1px solid #c0c0c0;width:100%;max-width:550px;height:200px}#weglot-url-translate .weglot__choice__language,#wrap-weglot .weglot__choice__language{border-bottom:1px solid #eee;margin:5px 0}#weglot-url-translate .weglot__choice__language--local,#wrap-weglot .weglot__choice__language--local{border-width:50px;color:#a6a6a6;display:block}#weglot-url-translate p.weglot-keyres,#wrap-weglot p.weglot-keyres{font-style:italic;color:#ff6464}#weglot-url-translate .weglot_text_error,#wrap-weglot .weglot_text_error{color:#dc3232}#weglot-url-translate .weglot_reset,#wrap-weglot .weglot_reset{text-decoration:underline;font-style:italic}#weglot-url-translate .weglot_reset:hover,#wrap-weglot .weglot_reset:hover{cursor:pointer}#weglot-url-translate .btn,#wrap-weglot .btn{background:#335ee2;display:inline-block;padding:8px 10px;border-radius:4px;-webkit-transition:0.2s background linear, 0.2s color linear, 0.2s border linear, 0.2s text-shadow linear;-o-transition:0.2s background linear, 0.2s color linear, 0.2s border linear, 0.2s text-shadow linear;transition:0.2s background linear, 0.2s color linear, 0.2s border linear, 0.2s text-shadow linear;outline:0;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;font-weight:700;cursor:pointer;text-align:center;text-decoration:none;-webkit-box-shadow:none;box-shadow:none;white-space:nowrap;color:white;border:1px solid #335ee2}#weglot-url-translate .btn.btn-soft,#wrap-weglot .btn.btn-soft{background-color:#fff;color:#24284c;border-radius:4px;border:1px solid #7e8993;line-height:1.4em}#weglot-url-translate .btn.btn-primary:active,#weglot-url-translate .btn.btn-primary:focus,#weglot-url-translate .btn.btn-primary:hover,#wrap-weglot .btn.btn-primary:active,#wrap-weglot .btn.btn-primary:focus,#wrap-weglot .btn.btn-primary:hover{border-color:#446dea;background-color:#446dea}#weglot-url-translate .js-btn-remove,#wrap-weglot .js-btn-remove{border:none;background-color:#e35b5b;color:#fff;display:inline-block;width:22px;height:22px;border-radius:50%;cursor:pointer;-webkit-transform:translateY(-5%);-ms-transform:translateY(-5%);transform:translateY(-5%);-webkit-transition:opacity 175ms linear;-o-transition:opacity 175ms linear;transition:opacity 175ms linear;outline:0;padding:0;margin:4px 0;vertical-align:middle}#weglot-url-translate .js-btn-remove:hover,#wrap-weglot .js-btn-remove:hover{background-color:#c62d2d}#weglot-url-translate .item-exclude,#wrap-weglot .item-exclude{position:relative;margin-bottom:10px}#weglot-url-translate::-webkit-input-placeholder,#weglot-url-translate:-moz-placeholder,#weglot-url-translate::-moz-placeholder,#weglot-url-translate:-ms-input-placeholder,#wrap-weglot::-webkit-input-placeholder,#wrap-weglot:-moz-placeholder,#wrap-weglot::-moz-placeholder,#wrap-weglot:-ms-input-placeholder{color:#c0c0c0}#weglot-url-translate .sub-label,#wrap-weglot .sub-label{font-size:13px;font-weight:normal;margin:2px 0 0;color:#444;opacity:0.8}#weglot-url-translate .weglot-select-original,#wrap-weglot .weglot-select-original{height:36px !important;margin:0}#weglot-url-translate .original-select,#weglot-url-translate #type_flags,#wrap-weglot .original-select,#wrap-weglot #type_flags{padding:8px;height:36px !important;width:300px}#weglot-url-translate #type_flags,#wrap-weglot #type_flags{width:150px}#weglot-url-translate .selectize-control.multi .selectize-input,#wrap-weglot .selectize-control.multi .selectize-input{border:1px solid #7e8993;border-radius:4px;-webkit-box-shadow:unset;box-shadow:unset}#weglot-url-translate .selectize-control.multi .selectize-input>div,#wrap-weglot .selectize-control.multi .selectize-input>div{background-color:#eff0ff;border:1px solid #7e8993;border-radius:2px}#weglot-url-translate .selectize-control.multi .selectize-input>div .remove,#wrap-weglot .selectize-control.multi .selectize-input>div .remove{border-left-color:#7e8993}#weglot-url-translate .wg-input-textarea,#wrap-weglot .wg-input-textarea{padding:8px}#weglot-url-translate .wg-input-textarea::-webkit-input-placeholder,#wrap-weglot .wg-input-textarea::-webkit-input-placeholder{color:#c0c0c0}#weglot-url-translate .wg-input-textarea::-moz-placeholder,#wrap-weglot .wg-input-textarea::-moz-placeholder{color:#c0c0c0}#weglot-url-translate .wg-input-textarea::-ms-input-placeholder,#wrap-weglot .wg-input-textarea::-ms-input-placeholder{color:#c0c0c0}#weglot-url-translate .wg-input-textarea::placeholder,#wrap-weglot .wg-input-textarea::placeholder{color:#c0c0c0}#weglot-url-translate .weglot-select.weglot-select-original,#weglot-url-translate input[type="text"],#weglot-url-translate textarea,#weglot-url-translate select,#weglot-url-translate #type_flags,#wrap-weglot .weglot-select.weglot-select-original,#wrap-weglot input[type="text"],#wrap-weglot textarea,#wrap-weglot select,#wrap-weglot #type_flags{padding:0 8px;border-radius:4px;border:1px solid #7e8993}#weglot-url-translate .weglot-select.weglot-select-original:focus,#weglot-url-translate input[type="text"]:focus,#weglot-url-translate textarea:focus,#weglot-url-translate select:focus,#weglot-url-translate #type_flags:focus,#wrap-weglot .weglot-select.weglot-select-original:focus,#wrap-weglot input[type="text"]:focus,#wrap-weglot textarea:focus,#wrap-weglot select:focus,#wrap-weglot #type_flags:focus{border-color:#446dea !important;-webkit-box-shadow:none !important;box-shadow:none !important}#weglot-url-translate .weglot-info,#wrap-weglot .weglot-info{position:relative;color:#3741cc;font-weight:bold}#weglot-url-translate .weglot-info:hover .wg-tooltip,#wrap-weglot .weglot-info:hover .wg-tooltip{line-height:1.4;position:absolute;top:27px;display:block !important;background-color:#24292d;width:160px;padding:10px;color:white;font-weight:normal;border:1px solid #e0e0e0;font-size:12px}#weglot-url-translate .weglot-box-overlay,#wrap-weglot .weglot-box-overlay{position:fixed;top:0;left:0;display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;height:100%;background-color:rgba(0,0,0,0.85);z-index:9999;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}#weglot-url-translate .weglot-box-overlay .weglot-box,#wrap-weglot .weglot-box-overlay .weglot-box{background-color:#fff;padding:25px;text-align:center;-webkit-box-shadow:0px 0px 5px 0px rgba(0,0,0,0.75);box-shadow:0px 0px 5px 0px rgba(0,0,0,0.75)}#weglot-url-translate .weglot-box-overlay .weglot-box--title,#wrap-weglot .weglot-box-overlay .weglot-box--title{font-size:24px;line-height:1.3}#weglot-url-translate .weglot-box-overlay .weglot-box--text,#wrap-weglot .weglot-box-overlay .weglot-box--text{font-size:18px}#weglot-url-translate .weglot-box-overlay .weglot-box--subtext,#wrap-weglot .weglot-box-overlay .weglot-box--subtext{font-size:12px;font-style:italic}#weglot-url-translate .weglot-box-overlay .weglot-btn-close,#wrap-weglot .weglot-box-overlay .weglot-btn-close{float:right;cursor:pointer}#weglot-url-translate .flag-style-openclose,#wrap-weglot .flag-style-openclose{display:inline-block;font-size:12px;text-decoration:underline;cursor:default;margin:12px 15px 0 10px;color:#46b450}#weglot-url-translate .flag-style-openclose:hover,#wrap-weglot .flag-style-openclose:hover{color:#399648;cursor:pointer}#weglot-url-translate .flag-style-wrapper,#wrap-weglot .flag-style-wrapper{padding:15px 0px}#weglot-url-translate .flag-style-wrapper p,#wrap-weglot .flag-style-wrapper p{font-size:12px !important}#weglot-url-translate .flag-style-wrapper select,#wrap-weglot .flag-style-wrapper select{font-size:12px;margin:0 2px 6px 0;padding:0 26px 0 8px}#weglot-url-translate #private_mode+p+div,#wrap-weglot #private_mode+p+div{display:none}#weglot-url-translate #private_mode:checked+p+div,#wrap-weglot #private_mode:checked+p+div{display:block}#weglot-url-translate #private-mode-detail,#wrap-weglot #private-mode-detail{margin-top:20px}#weglot-url-translate #private-mode-detail .private-mode-detail-lang,#wrap-weglot #private-mode-detail .private-mode-detail-lang{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:10px;margin-left:25px}#weglot-url-translate #private-mode-detail .private-mode-detail-lang input[type="checkbox"],#wrap-weglot #private-mode-detail .private-mode-detail-lang input[type="checkbox"]{margin-top:-1px}#wrap-weglot{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:15px}#wrap-weglot .wrap{-webkit-box-flex:4;-ms-flex:4;flex:4}#wrap-weglot input[type="text"]:not(#destination_language-selectized),#wrap-weglot input[type="url"]{padding:0 8px;height:36px}#wrap-weglot select{height:36px;vertical-align:top;border-radius:4px;padding:0 26px 0 8px}#wrap-weglot input[type="checkbox"]{margin-top:-4px}#wrap-weglot .weglot-ckeckkey:before{content:"\21BB";display:inline-block;color:#666;padding:0 6px 0 0;font-size:16px;padding:0 10px;line-height:1em;-webkit-animation:spin 2s infinite linear}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg)}}#wrap-weglot .weglot-nokkey:before{content:"\274C";display:inline-block;color:#dc3232;padding:0 6px 0 0;font-size:15px;padding:0 10px}#wrap-weglot .weglot-okkey:before{content:"\2713";display:inline-block;color:#46b450;padding:0 10px;font-size:20px;font-weight:bold;padding:0 10px}#wrap-weglot .weglot-infobox{-webkit-box-flex:2;-ms-flex:2;flex:2;-ms-flex-item-align:start;align-self:start;margin:10px 20px 0 2px;background-color:white;border:1px solid #e0e0e0;border-radius:12px;overflow:hidden}#wrap-weglot .weglot-infobox h3{color:#18164c;background-color:white;padding:30px 30px 0 30px;margin:0px;font-size:23px;line-height:1.3}#wrap-weglot .weglot-infobox div{padding:15px 30px 30px 30px}#wrap-weglot .weglot-infobox .weglot-editbtn{-webkit-box-shadow:0 2px 4px 0 rgba(1,1,2,0.05);box-shadow:0 2px 4px 0 rgba(1,1,2,0.05);background-color:#3d46fb;color:#fff;height:45px;border-radius:23px;line-height:45px;font-size:14px !important;text-decoration:none;padding:0 30px;display:inline-block;-webkit-transition:all 0.2s ease-in;-o-transition:all 0.2s ease-in;transition:all 0.2s ease-in}#wrap-weglot .weglot-infobox .weglot-editbtn:hover{color:white;background:#252ed7}#wrap-weglot input[type="text"],#wrap-weglot .selectize-control,#wrap-weglot .wg-input-textarea,#wrap-weglot .weglot-select-original{width:100%;max-width:320px}#wrap-weglot #submit{height:50px;padding:0 30px !important;font-size:16px}#wrap-weglot .description{display:inline}#wrap-weglot .wg-tooltip{position:absolute;display:none}#wrap-weglot #mainform{margin-bottom:50px}#wrap-weglot .arrow-up{width:0;height:0;border-left:10px solid transparent;border-right:10px solid transparent;border-bottom:10px solid #24292d;position:absolute;top:-10px;left:36px}#wrap-weglot .question-icon{font-size:17px}#wrap-weglot .form-table{margin-bottom:50px}#wrap-weglot .country-selector{z-index:1 !important}#weglot-url-translate .weglot_custom_url{border-bottom:1px solid #ccc;margin-bottom:20px;padding-bottom:10px}#weglot-url-translate .weglot_custom_url a{margin:5px 0px;display:inline-block}#weglot-url-translate .weglot_custom_url--text_link{margin-bottom:4px}#weglot-url-translate .weglot_custom_url .weglot_custom_url--text_link input[type="text"]{min-height:24px !important;height:24px}#weglot-url-translate .weglot_custom_url .weglot_custom_url--text_link button{margin-top:-2px;font-size:11px;padding:0 8px}#weglot-url-translate .weglot_custom_url .weglot_custom_url--text_link button.button-weglot-lang .dashicons{font-size:14px;line-height:21px;margin-right:-3px;margin-left:-4px}#weglot-url-translate .weglot_custom_url a.weglot_reset{text-decoration:none}#weglot-url-translate .weglot_custom_url a.weglot_reset:link,#weglot-url-translate .weglot_custom_url a.weglot_reset:visited,#weglot-url-translate .weglot_custom_url a.weglot_reset:hover,#weglot-url-translate .weglot_custom_url a.weglot_reset:active{text-decoration:none}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
dist/css/front-amp-css.css
CHANGED
@@ -1,181 +1 @@
|
|
1 |
-
.country-selector {
|
2 |
-
z-index: 9999;
|
3 |
-
text-align: left;
|
4 |
-
position: relative;
|
5 |
-
display: inline-block;
|
6 |
-
width: auto; }
|
7 |
-
.country-selector a {
|
8 |
-
padding: 0 10px;
|
9 |
-
outline: none;
|
10 |
-
text-decoration: none;
|
11 |
-
float: none;
|
12 |
-
white-space: nowrap;
|
13 |
-
font-weight: normal;
|
14 |
-
cursor: pointer;
|
15 |
-
color: black;
|
16 |
-
-webkit-touch-callout: none;
|
17 |
-
/* iOS Safari */
|
18 |
-
-webkit-user-select: none;
|
19 |
-
-moz-user-select: none;
|
20 |
-
-ms-user-select: none;
|
21 |
-
user-select: none; }
|
22 |
-
.country-selector a:focus {
|
23 |
-
outline: none; }
|
24 |
-
.country-selector ul {
|
25 |
-
padding: 0px;
|
26 |
-
z-index: 1010;
|
27 |
-
list-style: none;
|
28 |
-
margin: 0; }
|
29 |
-
.country-selector li {
|
30 |
-
margin: 0px;
|
31 |
-
padding: 0px; }
|
32 |
-
.country-selector.weglot-dropdown {
|
33 |
-
background-color: white; }
|
34 |
-
.country-selector.weglot-dropdown a,
|
35 |
-
.country-selector.weglot-dropdown span {
|
36 |
-
display: block;
|
37 |
-
height: 37px;
|
38 |
-
line-height: 36px;
|
39 |
-
font-size: 13px;
|
40 |
-
padding: 0 10px;
|
41 |
-
width: 100%;
|
42 |
-
-webkit-box-sizing: border-box;
|
43 |
-
box-sizing: border-box;
|
44 |
-
font-weight: normal; }
|
45 |
-
.country-selector.weglot-dropdown a:hover,
|
46 |
-
.country-selector.weglot-dropdown span:hover {
|
47 |
-
cursor: pointer; }
|
48 |
-
.country-selector.weglot-dropdown .wgcurrent {
|
49 |
-
border: 1px solid #e0e0e0;
|
50 |
-
list-style: none;
|
51 |
-
display: block;
|
52 |
-
margin: 0; }
|
53 |
-
.country-selector.weglot-dropdown .wgcurrent a,
|
54 |
-
.country-selector.weglot-dropdown .wgcurrent span {
|
55 |
-
padding-right: 60px; }
|
56 |
-
.country-selector.weglot-dropdown .wgcurrent:after {
|
57 |
-
display: inline-block;
|
58 |
-
position: absolute;
|
59 |
-
top: 17px;
|
60 |
-
right: 8px;
|
61 |
-
width: 13px;
|
62 |
-
height: 7px;
|
63 |
-
-ms-interpolation-mode: nearest-neighbor;
|
64 |
-
image-rendering: -webkit-optimize-contrast;
|
65 |
-
image-rendering: -moz-crisp-edges;
|
66 |
-
image-rendering: -o-pixelated;
|
67 |
-
image-rendering: pixelated;
|
68 |
-
background: url("../images/wgarrowdown.png") no-repeat;
|
69 |
-
content: "";
|
70 |
-
-webkit-transition: all 200ms;
|
71 |
-
-o-transition: all 200ms;
|
72 |
-
transition: all 200ms;
|
73 |
-
-webkit-transform: rotate(-90deg);
|
74 |
-
-ms-transform: rotate(-90deg);
|
75 |
-
transform: rotate(-90deg); }
|
76 |
-
.country-selector.weglot-dropdown ul {
|
77 |
-
position: absolute;
|
78 |
-
min-width: 100%;
|
79 |
-
border: 1px solid #ebeef0;
|
80 |
-
background: white;
|
81 |
-
left: 0;
|
82 |
-
top: initial;
|
83 |
-
-webkit-box-sizing: border-box;
|
84 |
-
box-sizing: border-box;
|
85 |
-
display: none;
|
86 |
-
padding: 0; }
|
87 |
-
.country-selector.weglot-dropdown input:checked ~ ul {
|
88 |
-
display: block; }
|
89 |
-
.country-selector.weglot-dropdown input:checked ~ .wgcurrent:after {
|
90 |
-
-webkit-transform: rotate(0deg);
|
91 |
-
-ms-transform: rotate(0deg);
|
92 |
-
transform: rotate(0deg); }
|
93 |
-
.country-selector.weglot-dropdown li {
|
94 |
-
width: 100%; }
|
95 |
-
.country-selector.weglot-dropdown.weglot-invert ul {
|
96 |
-
bottom: 38px; }
|
97 |
-
.country-selector.weglot-dropdown.weglot-invert input:checked ~ .wgcurrent:after {
|
98 |
-
-webkit-transform: rotate(-180deg);
|
99 |
-
-ms-transform: rotate(-180deg);
|
100 |
-
transform: rotate(-180deg); }
|
101 |
-
.country-selector.weglot-default {
|
102 |
-
position: fixed;
|
103 |
-
bottom: 0px;
|
104 |
-
right: 40px; }
|
105 |
-
.country-selector.weglot-inline a:hover {
|
106 |
-
text-decoration: underline;
|
107 |
-
color: #00a0d2; }
|
108 |
-
.country-selector.weglot-inline .wgcurrent a {
|
109 |
-
text-decoration: underline; }
|
110 |
-
.country-selector.weglot-inline label {
|
111 |
-
margin-bottom: 0;
|
112 |
-
display: inline-block;
|
113 |
-
vertical-align: middle; }
|
114 |
-
.country-selector.weglot-inline ul {
|
115 |
-
display: inline-block;
|
116 |
-
vertical-align: middle; }
|
117 |
-
.country-selector.weglot-inline li {
|
118 |
-
line-height: 1;
|
119 |
-
display: inline-block;
|
120 |
-
margin: 2px 0px;
|
121 |
-
vertical-align: middle; }
|
122 |
-
.country-selector.weglot-inline.weglot-default {
|
123 |
-
bottom: 5px; }
|
124 |
-
.country-selector input {
|
125 |
-
display: none; }
|
126 |
-
|
127 |
-
.navbar .navbar-nav li.weglot-flags a.weglot-lang:before {
|
128 |
-
position: static;
|
129 |
-
-webkit-transform: none;
|
130 |
-
-ms-transform: none;
|
131 |
-
transform: none;
|
132 |
-
-webkit-transition: none;
|
133 |
-
-o-transition: none;
|
134 |
-
transition: none; }
|
135 |
-
|
136 |
-
html[dir="rtl"] .weglot-flags a:before,
|
137 |
-
html[dir="rtl"] .weglot-flags span:before {
|
138 |
-
margin-right: 0;
|
139 |
-
margin-left: 10px; }
|
140 |
-
|
141 |
-
.weglot-flags a:before,
|
142 |
-
.weglot-flags span:before {
|
143 |
-
background-image: url("../images/rect_mate.png");
|
144 |
-
-webkit-background-size: auto 20px;
|
145 |
-
background-size: auto 20px;
|
146 |
-
border-radius: 0px;
|
147 |
-
width: 30px;
|
148 |
-
height: 20px;
|
149 |
-
content: "";
|
150 |
-
vertical-align: middle;
|
151 |
-
margin-right: 10px;
|
152 |
-
display: inline-block;
|
153 |
-
overflow: hidden; }
|
154 |
-
|
155 |
-
.weglot-flags.flag-1 a:before,
|
156 |
-
.weglot-flags.flag-1 span:before {
|
157 |
-
background-image: url("../images/rect_bright.png"); }
|
158 |
-
|
159 |
-
.weglot-flags.flag-2 a:before,
|
160 |
-
.weglot-flags.flag-2 span:before {
|
161 |
-
background-image: url("../images/square_flag.png");
|
162 |
-
width: 24px;
|
163 |
-
height: 24px;
|
164 |
-
-webkit-background-size: auto 24px;
|
165 |
-
background-size: auto 24px; }
|
166 |
-
|
167 |
-
.weglot-flags.flag-3 a:before,
|
168 |
-
.weglot-flags.flag-3 span:before {
|
169 |
-
background-image: url("../images/circular_flag.png");
|
170 |
-
width: 24px;
|
171 |
-
height: 24px;
|
172 |
-
-webkit-background-size: auto 24px;
|
173 |
-
background-size: auto 24px; }
|
174 |
-
|
175 |
-
.weglot-flags a span:before {
|
176 |
-
background-image: none;
|
177 |
-
display: none; }
|
178 |
-
|
179 |
-
.weglot-flags span a:before {
|
180 |
-
background-image: none;
|
181 |
-
display: none; }
|
1 |
+
.country-selector{z-index:9999;text-align:left;position:relative;display:inline-block;width:auto}.country-selector a{padding:0 10px;outline:none;text-decoration:none;float:none;white-space:nowrap;font-weight:normal;cursor:pointer;color:black;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.country-selector a:focus{outline:none}.country-selector ul{padding:0px;z-index:1010;list-style:none;margin:0}.country-selector li{margin:0px;padding:0px}.country-selector.weglot-dropdown{background-color:white}.country-selector.weglot-dropdown a,.country-selector.weglot-dropdown span{display:block;height:37px;line-height:36px;font-size:13px;padding:0 10px;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box;font-weight:normal}.country-selector.weglot-dropdown a:hover,.country-selector.weglot-dropdown span:hover{cursor:pointer}.country-selector.weglot-dropdown .wgcurrent{border:1px solid #e0e0e0;list-style:none;display:block;margin:0}.country-selector.weglot-dropdown .wgcurrent a,.country-selector.weglot-dropdown .wgcurrent span{padding-right:60px}.country-selector.weglot-dropdown .wgcurrent:after{display:inline-block;position:absolute;top:17px;right:8px;width:13px;height:7px;-ms-interpolation-mode:nearest-neighbor;image-rendering:-webkit-optimize-contrast;image-rendering:-moz-crisp-edges;image-rendering:-o-pixelated;image-rendering:pixelated;background:url("../images/wgarrowdown.png") no-repeat;content:"";-webkit-transition:all 200ms;-o-transition:all 200ms;transition:all 200ms;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}.country-selector.weglot-dropdown ul{position:absolute;min-width:100%;border:1px solid #ebeef0;background:white;left:0;top:initial;-webkit-box-sizing:border-box;box-sizing:border-box;display:none;padding:0}.country-selector.weglot-dropdown input:checked ~ ul{display:block}.country-selector.weglot-dropdown input:checked ~ .wgcurrent:after{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}.country-selector.weglot-dropdown li{width:100%}.country-selector.weglot-dropdown.weglot-invert ul{bottom:38px}.country-selector.weglot-dropdown.weglot-invert input:checked ~ .wgcurrent:after{-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg)}.country-selector.weglot-default{position:fixed;bottom:0px;right:40px}.country-selector.weglot-inline a:hover{text-decoration:underline;color:#00a0d2}.country-selector.weglot-inline .wgcurrent a{text-decoration:underline}.country-selector.weglot-inline label{margin-bottom:0;display:inline-block;vertical-align:middle}.country-selector.weglot-inline ul{display:inline-block;vertical-align:middle}.country-selector.weglot-inline li{line-height:1;display:inline-block;margin:2px 0px;vertical-align:middle}.country-selector.weglot-inline.weglot-default{bottom:5px}.country-selector input{display:none}.navbar .navbar-nav li.weglot-flags a.weglot-lang:before{position:static;-webkit-transform:none;-ms-transform:none;transform:none;-webkit-transition:none;-o-transition:none;transition:none}html[dir="rtl"] .weglot-flags a:before,html[dir="rtl"] .weglot-flags span:before{margin-right:0;margin-left:10px}.weglot-flags a:before,.weglot-flags span.wglanguage-name:before{background-image:url("../images/rect_mate.png");-webkit-background-size:auto 20px;background-size:auto 20px;border-radius:0px;width:30px;height:20px;content:"";vertical-align:middle;margin-right:10px;display:inline-block;overflow:hidden}.weglot-flags.flag-1 a:before,.weglot-flags.flag-1 span:before{background-image:url("../images/rect_bright.png")}.weglot-flags.flag-2 a:before,.weglot-flags.flag-2 span:before{background-image:url("../images/square_flag.png");width:24px;height:24px;-webkit-background-size:auto 24px;background-size:auto 24px}.weglot-flags.flag-3 a:before,.weglot-flags.flag-3 span:before{background-image:url("../images/circular_flag.png");width:24px;height:24px;-webkit-background-size:auto 24px;background-size:auto 24px}.weglot-flags a span:before{background-image:none;display:none}.weglot-flags span a:before{background-image:none;display:none}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
dist/css/front-css.css
CHANGED
@@ -1,1107 +1 @@
|
|
1 |
-
.weglot-flags {
|
2 |
-
/* TODO */
|
3 |
-
/* TODO */
|
4 |
-
/* TODO */
|
5 |
-
/* TODO */ }
|
6 |
-
.weglot-flags.hw > a:before, .weglot-flags.hw > span:before {
|
7 |
-
background-position: -3570px 0 !important; }
|
8 |
-
.weglot-flags.af > a:before, .weglot-flags.af > span:before {
|
9 |
-
background-position: -6570px 0 !important; }
|
10 |
-
.weglot-flags.fl > a:before, .weglot-flags.fl > span:before {
|
11 |
-
background-position: -3060px 0 !important; }
|
12 |
-
.weglot-flags.sq > a:before, .weglot-flags.sq > span:before {
|
13 |
-
background-position: -2580px 0 !important; }
|
14 |
-
.weglot-flags.am > a:before, .weglot-flags.am > span:before {
|
15 |
-
background-position: -5130px 0 !important; }
|
16 |
-
.weglot-flags.ar > a:before, .weglot-flags.ar > span:before {
|
17 |
-
background-position: -510px 0 !important; }
|
18 |
-
.weglot-flags.hy > a:before, .weglot-flags.hy > span:before {
|
19 |
-
background-position: -1800px 0 !important; }
|
20 |
-
.weglot-flags.az > a:before, .weglot-flags.az > span:before {
|
21 |
-
background-position: -6840px 0 !important; }
|
22 |
-
.weglot-flags.ba > a:before, .weglot-flags.ba > span:before {
|
23 |
-
background-position: -2040px 0 !important; }
|
24 |
-
.weglot-flags.eu > a:before, .weglot-flags.eu > span:before {
|
25 |
-
background-position: -7260px 0 !important; }
|
26 |
-
.weglot-flags.be > a:before, .weglot-flags.be > span:before {
|
27 |
-
background-position: -5310px 0 !important; }
|
28 |
-
.weglot-flags.bn > a:before, .weglot-flags.bn > span:before {
|
29 |
-
background-position: -5400px 0 !important; }
|
30 |
-
.weglot-flags.bs > a:before, .weglot-flags.bs > span:before {
|
31 |
-
background-position: -6390px 0 !important; }
|
32 |
-
.weglot-flags.bg > a:before, .weglot-flags.bg > span:before {
|
33 |
-
background-position: -2730px 0 !important; }
|
34 |
-
.weglot-flags.br > a:before, .weglot-flags.br > span:before {
|
35 |
-
background-position: -6630px 0 !important; }
|
36 |
-
.weglot-flags.my > a:before, .weglot-flags.my > span:before {
|
37 |
-
background-position: -3299px 0 !important; }
|
38 |
-
.weglot-flags.ca > a:before, .weglot-flags.ca > span:before {
|
39 |
-
background-position: -7230px 0 !important; }
|
40 |
-
.weglot-flags.zh > a:before, .weglot-flags.zh > span:before {
|
41 |
-
background-position: -3690px 0 !important; }
|
42 |
-
.weglot-flags.tw > a:before, .weglot-flags.tw > span:before {
|
43 |
-
background-position: -2970px 0 !important; }
|
44 |
-
.weglot-flags.km > a:before, .weglot-flags.km > span:before {
|
45 |
-
background-position: -6930px 0 !important; }
|
46 |
-
.weglot-flags.ny > a:before, .weglot-flags.ny > span:before {
|
47 |
-
background-position: -1140px 0 !important; }
|
48 |
-
.weglot-flags.co > a:before, .weglot-flags.co > span:before {
|
49 |
-
background-position: -2520px 0 !important; }
|
50 |
-
.weglot-flags.hr > a:before, .weglot-flags.hr > span:before {
|
51 |
-
background-position: -5910px 0 !important; }
|
52 |
-
.weglot-flags.cs > a:before, .weglot-flags.cs > span:before {
|
53 |
-
background-position: -2700px 0 !important; }
|
54 |
-
.weglot-flags.da > a:before, .weglot-flags.da > span:before {
|
55 |
-
background-position: -2670px 0 !important; }
|
56 |
-
.weglot-flags.nl > a:before, .weglot-flags.nl > span:before {
|
57 |
-
background-position: -2100px 0 !important; }
|
58 |
-
.weglot-flags.en > a:before, .weglot-flags.en > span:before {
|
59 |
-
background-position: -1920px 0 !important; }
|
60 |
-
.weglot-flags.eo > a:before, .weglot-flags.eo > span:before {
|
61 |
-
background-position: -1920px 0 !important; }
|
62 |
-
.weglot-flags.et > a:before, .weglot-flags.et > span:before {
|
63 |
-
background-position: -2640px 0 !important; }
|
64 |
-
.weglot-flags.fj > a:before, .weglot-flags.fj > span:before {
|
65 |
-
background-position: -1710px 0 !important; }
|
66 |
-
.weglot-flags.fi > a:before, .weglot-flags.fi > span:before {
|
67 |
-
background-position: -2550px 0 !important; }
|
68 |
-
.weglot-flags.fr > a:before, .weglot-flags.fr > span:before {
|
69 |
-
background-position: -2520px 0 !important; }
|
70 |
-
.weglot-flags.gl > a:before, .weglot-flags.gl > span:before {
|
71 |
-
background-position: -7290px 0 !important; }
|
72 |
-
.weglot-flags.ka > a:before, .weglot-flags.ka > span:before {
|
73 |
-
background-position: -5040px 0 !important; }
|
74 |
-
.weglot-flags.de > a:before, .weglot-flags.de > span:before {
|
75 |
-
background-position: -2490px 0 !important; }
|
76 |
-
.weglot-flags.el > a:before, .weglot-flags.el > span:before {
|
77 |
-
background-position: -2460px 0 !important; }
|
78 |
-
.weglot-flags.gu > a:before, .weglot-flags.gu > span:before {
|
79 |
-
background-position: -1170px 0 !important; }
|
80 |
-
.weglot-flags.ht > a:before, .weglot-flags.ht > span:before {
|
81 |
-
background-position: -4650px 0 !important; }
|
82 |
-
.weglot-flags.ha > a:before, .weglot-flags.ha > span:before {
|
83 |
-
background-position: -900px 0 !important; }
|
84 |
-
.weglot-flags.he > a:before, .weglot-flags.he > span:before {
|
85 |
-
background-position: -1050px 0 !important; }
|
86 |
-
.weglot-flags.hi > a:before, .weglot-flags.hi > span:before {
|
87 |
-
background-position: -1170px 0 !important; }
|
88 |
-
.weglot-flags.hu > a:before, .weglot-flags.hu > span:before {
|
89 |
-
background-position: -2430px 0 !important; }
|
90 |
-
.weglot-flags.is > a:before, .weglot-flags.is > span:before {
|
91 |
-
background-position: -2400px 0 !important; }
|
92 |
-
.weglot-flags.ig > a:before, .weglot-flags.ig > span:before {
|
93 |
-
background-position: -870px 0 !important; }
|
94 |
-
.weglot-flags.id > a:before, .weglot-flags.id > span:before {
|
95 |
-
background-position: -3510px 0 !important; }
|
96 |
-
.weglot-flags.ga > a:before, .weglot-flags.ga > span:before {
|
97 |
-
background-position: -2340px 0 !important; }
|
98 |
-
.weglot-flags.it > a:before, .weglot-flags.it > span:before {
|
99 |
-
background-position: -2310px 0 !important; }
|
100 |
-
.weglot-flags.ja > a:before, .weglot-flags.ja > span:before {
|
101 |
-
background-position: -3480px 0 !important; }
|
102 |
-
.weglot-flags.jv > a:before, .weglot-flags.jv > span:before {
|
103 |
-
background-position: -3360px 0 !important; }
|
104 |
-
.weglot-flags.kn > a:before, .weglot-flags.kn > span:before {
|
105 |
-
background-position: -1170px 0 !important; }
|
106 |
-
.weglot-flags.kk > a:before, .weglot-flags.kk > span:before {
|
107 |
-
background-position: -3150px 0 !important; }
|
108 |
-
.weglot-flags.ko > a:before, .weglot-flags.ko > span:before {
|
109 |
-
background-position: -6990px 0 !important; }
|
110 |
-
.weglot-flags.ku > a:before, .weglot-flags.ku > span:before {
|
111 |
-
background-position: -2430px 0 !important; }
|
112 |
-
.weglot-flags.ky > a:before, .weglot-flags.ky > span:before {
|
113 |
-
background-position: -3420px 0 !important; }
|
114 |
-
.weglot-flags.lo > a:before, .weglot-flags.lo > span:before {
|
115 |
-
background-position: -3450px 0 !important; }
|
116 |
-
.weglot-flags.la > a:before, .weglot-flags.la > span:before {
|
117 |
-
background-position: -2310px 0 !important; }
|
118 |
-
.weglot-flags.lv > a:before, .weglot-flags.lv > span:before {
|
119 |
-
background-position: -2280px 0 !important; }
|
120 |
-
.weglot-flags.lt > a:before, .weglot-flags.lt > span:before {
|
121 |
-
background-position: -2250px 0 !important; }
|
122 |
-
.weglot-flags.lb > a:before, .weglot-flags.lb > span:before {
|
123 |
-
background-position: -2220px 0 !important; }
|
124 |
-
.weglot-flags.mk > a:before, .weglot-flags.mk > span:before {
|
125 |
-
background-position: -2190px 0 !important; }
|
126 |
-
.weglot-flags.mg > a:before, .weglot-flags.mg > span:before {
|
127 |
-
background-position: -1200px 0 !important; }
|
128 |
-
.weglot-flags.ms > a:before, .weglot-flags.ms > span:before {
|
129 |
-
background-position: -3360px 0 !important; }
|
130 |
-
.weglot-flags.ml > a:before, .weglot-flags.ml > span:before {
|
131 |
-
background-position: -1170px 0 !important; }
|
132 |
-
.weglot-flags.mt > a:before, .weglot-flags.mt > span:before {
|
133 |
-
background-position: -2130px 0 !important; }
|
134 |
-
.weglot-flags.mi > a:before, .weglot-flags.mi > span:before {
|
135 |
-
background-position: -3240px 0 !important; }
|
136 |
-
.weglot-flags.mr > a:before, .weglot-flags.mr > span:before {
|
137 |
-
background-position: -1170px 0 !important; }
|
138 |
-
.weglot-flags.mn > a:before, .weglot-flags.mn > span:before {
|
139 |
-
background-position: -6000px 0 !important; }
|
140 |
-
.weglot-flags.ne > a:before, .weglot-flags.ne > span:before {
|
141 |
-
background-position: -3270px 0 !important; }
|
142 |
-
.weglot-flags.no > a:before, .weglot-flags.no > span:before {
|
143 |
-
background-position: -5850px 0 !important; }
|
144 |
-
.weglot-flags.ps > a:before, .weglot-flags.ps > span:before {
|
145 |
-
background-position: -5189px 0 !important; }
|
146 |
-
.weglot-flags.fa > a:before, .weglot-flags.fa > span:before {
|
147 |
-
background-position: -6690px 0 !important; }
|
148 |
-
.weglot-flags.pl > a:before, .weglot-flags.pl > span:before {
|
149 |
-
background-position: -2160px 0 !important; }
|
150 |
-
.weglot-flags.pt > a:before, .weglot-flags.pt > span:before {
|
151 |
-
background-position: -1740px 0 !important; }
|
152 |
-
.weglot-flags.pa > a:before, .weglot-flags.pa > span:before {
|
153 |
-
background-position: -3180px 0 !important; }
|
154 |
-
.weglot-flags.ro > a:before, .weglot-flags.ro > span:before {
|
155 |
-
background-position: -2070px 0 !important; }
|
156 |
-
.weglot-flags.ru > a:before, .weglot-flags.ru > span:before {
|
157 |
-
background-position: -2040px 0 !important; }
|
158 |
-
.weglot-flags.sm > a:before, .weglot-flags.sm > span:before {
|
159 |
-
background-position: -4620px 0 !important; }
|
160 |
-
.weglot-flags.gd > a:before, .weglot-flags.gd > span:before {
|
161 |
-
background-position: -30px 0 !important; }
|
162 |
-
.weglot-flags.sr > a:before, .weglot-flags.sr > span:before {
|
163 |
-
background-position: -4290px 0 !important; }
|
164 |
-
.weglot-flags.sn > a:before, .weglot-flags.sn > span:before {
|
165 |
-
background-position: -540px 0 !important; }
|
166 |
-
.weglot-flags.sd > a:before, .weglot-flags.sd > span:before {
|
167 |
-
background-position: -3180px 0 !important; }
|
168 |
-
.weglot-flags.si > a:before, .weglot-flags.si > span:before {
|
169 |
-
background-position: -2820px 0 !important; }
|
170 |
-
.weglot-flags.sk > a:before, .weglot-flags.sk > span:before {
|
171 |
-
background-position: -6810px 0 !important; }
|
172 |
-
.weglot-flags.sl > a:before, .weglot-flags.sl > span:before {
|
173 |
-
background-position: -2010px 0 !important; }
|
174 |
-
.weglot-flags.so > a:before, .weglot-flags.so > span:before {
|
175 |
-
background-position: -4560px 0 !important; }
|
176 |
-
.weglot-flags.st > a:before, .weglot-flags.st > span:before {
|
177 |
-
background-position: -4830px 0 !important; }
|
178 |
-
.weglot-flags.es > a:before, .weglot-flags.es > span:before {
|
179 |
-
background-position: -480px 0 !important; }
|
180 |
-
.weglot-flags.su > a:before, .weglot-flags.su > span:before {
|
181 |
-
background-position: -4530px 0 !important; }
|
182 |
-
.weglot-flags.sw > a:before, .weglot-flags.sw > span:before {
|
183 |
-
background-position: -1290px 0 !important; }
|
184 |
-
.weglot-flags.sv > a:before, .weglot-flags.sv > span:before {
|
185 |
-
background-position: -1980px 0 !important; }
|
186 |
-
.weglot-flags.tl > a:before, .weglot-flags.tl > span:before {
|
187 |
-
background-position: -3060px 0 !important; }
|
188 |
-
.weglot-flags.ty > a:before, .weglot-flags.ty > span:before {
|
189 |
-
background-position: -6270px 0 !important; }
|
190 |
-
.weglot-flags.tg > a:before, .weglot-flags.tg > span:before {
|
191 |
-
background-position: -2940px 0 !important; }
|
192 |
-
.weglot-flags.ta > a:before, .weglot-flags.ta > span:before {
|
193 |
-
background-position: -1170px 0 !important; }
|
194 |
-
.weglot-flags.tt > a:before, .weglot-flags.tt > span:before {
|
195 |
-
background-position: -2040px 0 !important; }
|
196 |
-
.weglot-flags.te > a:before, .weglot-flags.te > span:before {
|
197 |
-
background-position: -1170px 0 !important; }
|
198 |
-
.weglot-flags.th > a:before, .weglot-flags.th > span:before {
|
199 |
-
background-position: -2910px 0 !important; }
|
200 |
-
.weglot-flags.to > a:before, .weglot-flags.to > span:before {
|
201 |
-
background-position: -6540px 0 !important; }
|
202 |
-
.weglot-flags.tr > a:before, .weglot-flags.tr > span:before {
|
203 |
-
background-position: -1950px 0 !important; }
|
204 |
-
.weglot-flags.uk > a:before, .weglot-flags.uk > span:before {
|
205 |
-
background-position: -1890px 0 !important; }
|
206 |
-
.weglot-flags.ur > a:before, .weglot-flags.ur > span:before {
|
207 |
-
background-position: -3180px 0 !important; }
|
208 |
-
.weglot-flags.uz > a:before, .weglot-flags.uz > span:before {
|
209 |
-
background-position: -2880px 0 !important; }
|
210 |
-
.weglot-flags.vi > a:before, .weglot-flags.vi > span:before {
|
211 |
-
background-position: -2850px 0 !important; }
|
212 |
-
.weglot-flags.cy > a:before, .weglot-flags.cy > span:before {
|
213 |
-
background-position: -6420px 0 !important; }
|
214 |
-
.weglot-flags.fy > a:before, .weglot-flags.fy > span:before {
|
215 |
-
background-position: -2100px 0 !important; }
|
216 |
-
.weglot-flags.xh > a:before, .weglot-flags.xh > span:before {
|
217 |
-
background-position: -6570px 0 !important; }
|
218 |
-
.weglot-flags.yi > a:before, .weglot-flags.yi > span:before {
|
219 |
-
background-position: -1050px 0 !important; }
|
220 |
-
.weglot-flags.yo > a:before, .weglot-flags.yo > span:before {
|
221 |
-
background-position: -870px 0 !important; }
|
222 |
-
.weglot-flags.zu > a:before, .weglot-flags.zu > span:before {
|
223 |
-
background-position: -6570px 0 !important; }
|
224 |
-
.weglot-flags.flag-1.hw > a:before, .weglot-flags.flag-1.hw > span:before {
|
225 |
-
background-position: -7840px 0 !important; }
|
226 |
-
.weglot-flags.flag-1.fl > a:before, .weglot-flags.flag-1.fl > span:before {
|
227 |
-
background-position: 2560px 0 !important; }
|
228 |
-
.weglot-flags.flag-1.af > a:before, .weglot-flags.flag-1.af > span:before {
|
229 |
-
background-position: -6848px 0 !important; }
|
230 |
-
.weglot-flags.flag-1.sq > a:before, .weglot-flags.flag-1.sq > span:before {
|
231 |
-
background-position: -97px 0 !important; }
|
232 |
-
.weglot-flags.flag-1.am > a:before, .weglot-flags.flag-1.am > span:before {
|
233 |
-
background-position: -2369px 0 !important; }
|
234 |
-
.weglot-flags.flag-1.ar > a:before, .weglot-flags.flag-1.ar > span:before {
|
235 |
-
background-position: -6465px 0 !important; }
|
236 |
-
.weglot-flags.flag-1.hy > a:before, .weglot-flags.flag-1.hy > span:before {
|
237 |
-
background-position: -385px 0 !important; }
|
238 |
-
.weglot-flags.flag-1.az > a:before, .weglot-flags.flag-1.az > span:before {
|
239 |
-
background-position: -513px 0 !important; }
|
240 |
-
.weglot-flags.flag-1.ba > a:before, .weglot-flags.flag-1.ba > span:before {
|
241 |
-
background-position: -6113px 0 !important; }
|
242 |
-
.weglot-flags.flag-1.eu > a:before, .weglot-flags.flag-1.eu > span:before {
|
243 |
-
background-position: -8353px 0 !important; }
|
244 |
-
.weglot-flags.flag-1.be > a:before, .weglot-flags.flag-1.be > span:before {
|
245 |
-
background-position: -705px 0 !important; }
|
246 |
-
.weglot-flags.flag-1.bn > a:before, .weglot-flags.flag-1.bn > span:before {
|
247 |
-
background-position: -609px 0 !important; }
|
248 |
-
.weglot-flags.flag-1.bs > a:before, .weglot-flags.flag-1.bs > span:before {
|
249 |
-
background-position: -929px 0 !important; }
|
250 |
-
.weglot-flags.flag-1.bg > a:before, .weglot-flags.flag-1.bg > span:before {
|
251 |
-
background-position: -1121px 0 !important; }
|
252 |
-
.weglot-flags.flag-1.br > a:before, .weglot-flags.flag-1.br > span:before {
|
253 |
-
background-position: -993px 0 !important; }
|
254 |
-
.weglot-flags.flag-1.my > a:before, .weglot-flags.flag-1.my > span:before {
|
255 |
-
background-position: -4929px 0 !important; }
|
256 |
-
.weglot-flags.flag-1.ca > a:before, .weglot-flags.flag-1.ca > span:before {
|
257 |
-
background-position: -8321px 0 !important; }
|
258 |
-
.weglot-flags.flag-1.zh > a:before, .weglot-flags.flag-1.zh > span:before {
|
259 |
-
background-position: -1505px 0 !important; }
|
260 |
-
.weglot-flags.flag-1.tw > a:before, .weglot-flags.flag-1.tw > span:before {
|
261 |
-
background-position: -6369px 0 !important; }
|
262 |
-
.weglot-flags.flag-1.km > a:before, .weglot-flags.flag-1.km > span:before {
|
263 |
-
background-position: -1217px 0 !important; }
|
264 |
-
.weglot-flags.flag-1.ny > a:before, .weglot-flags.flag-1.ny > span:before {
|
265 |
-
background-position: -4289px 0 !important; }
|
266 |
-
.weglot-flags.flag-1.co > a:before, .weglot-flags.flag-1.co > span:before {
|
267 |
-
background-position: -2561px 0 !important; }
|
268 |
-
.weglot-flags.flag-1.hr > a:before, .weglot-flags.flag-1.hr > span:before {
|
269 |
-
background-position: -1793px 0 !important; }
|
270 |
-
.weglot-flags.flag-1.cs > a:before, .weglot-flags.flag-1.cs > span:before {
|
271 |
-
background-position: -1921px 0 !important; }
|
272 |
-
.weglot-flags.flag-1.da > a:before, .weglot-flags.flag-1.da > span:before {
|
273 |
-
background-position: -1985px 0 !important; }
|
274 |
-
.weglot-flags.flag-1.nl > a:before, .weglot-flags.flag-1.nl > span:before {
|
275 |
-
background-position: -5121px 0 !important; }
|
276 |
-
.weglot-flags.flag-1.en > a:before, .weglot-flags.flag-1.en > span:before {
|
277 |
-
background-position: -7777px 0 !important; }
|
278 |
-
.weglot-flags.flag-1.eo > a:before, .weglot-flags.flag-1.eo > span:before {
|
279 |
-
background-position: -7777px 0 !important; }
|
280 |
-
.weglot-flags.flag-1.et > a:before, .weglot-flags.flag-1.et > span:before {
|
281 |
-
background-position: -2337px 0 !important; }
|
282 |
-
.weglot-flags.flag-1.fj > a:before, .weglot-flags.flag-1.fj > span:before {
|
283 |
-
background-position: -2497px 0 !important; }
|
284 |
-
.weglot-flags.flag-1.fi > a:before, .weglot-flags.flag-1.fi > span:before {
|
285 |
-
background-position: -2529px 0 !important; }
|
286 |
-
.weglot-flags.flag-1.fr > a:before, .weglot-flags.flag-1.fr > span:before {
|
287 |
-
background-position: -2561px 0 !important; }
|
288 |
-
.weglot-flags.flag-1.gl > a:before, .weglot-flags.flag-1.gl > span:before {
|
289 |
-
background-position: -8383px 0 !important; }
|
290 |
-
.weglot-flags.flag-1.ka > a:before, .weglot-flags.flag-1.ka > span:before {
|
291 |
-
background-position: -2721px 0 !important; }
|
292 |
-
.weglot-flags.flag-1.de > a:before, .weglot-flags.flag-1.de > span:before {
|
293 |
-
background-position: -2753px 0 !important; }
|
294 |
-
.weglot-flags.flag-1.el > a:before, .weglot-flags.flag-1.el > span:before {
|
295 |
-
background-position: -2881px 0 !important; }
|
296 |
-
.weglot-flags.flag-1.gu > a:before, .weglot-flags.flag-1.gu > span:before {
|
297 |
-
background-position: -3329px 0 !important; }
|
298 |
-
.weglot-flags.flag-1.ht > a:before, .weglot-flags.flag-1.ht > span:before {
|
299 |
-
background-position: -3169px 0 !important; }
|
300 |
-
.weglot-flags.flag-1.ha > a:before, .weglot-flags.flag-1.ha > span:before {
|
301 |
-
background-position: -5281px 0 !important; }
|
302 |
-
.weglot-flags.flag-1.he > a:before, .weglot-flags.flag-1.he > span:before {
|
303 |
-
background-position: -3521px 0 !important; }
|
304 |
-
.weglot-flags.flag-1.hi > a:before, .weglot-flags.flag-1.hi > span:before {
|
305 |
-
background-position: -3329px 0 !important; }
|
306 |
-
.weglot-flags.flag-1.hu > a:before, .weglot-flags.flag-1.hu > span:before {
|
307 |
-
background-position: -3265px 0 !important; }
|
308 |
-
.weglot-flags.flag-1.is > a:before, .weglot-flags.flag-1.is > span:before {
|
309 |
-
background-position: -3297px 0 !important; }
|
310 |
-
.weglot-flags.flag-1.ig > a:before, .weglot-flags.flag-1.ig > span:before {
|
311 |
-
background-position: -5313px 0 !important; }
|
312 |
-
.weglot-flags.flag-1.id > a:before, .weglot-flags.flag-1.id > span:before {
|
313 |
-
background-position: -3361px 0 !important; }
|
314 |
-
.weglot-flags.flag-1.ga > a:before, .weglot-flags.flag-1.ga > span:before {
|
315 |
-
background-position: -3457px 0 !important; }
|
316 |
-
.weglot-flags.flag-1.it > a:before, .weglot-flags.flag-1.it > span:before {
|
317 |
-
background-position: -3553px 0 !important; }
|
318 |
-
.weglot-flags.flag-1.ja > a:before, .weglot-flags.flag-1.ja > span:before {
|
319 |
-
background-position: -3617px 0 !important; }
|
320 |
-
.weglot-flags.flag-1.jv > a:before, .weglot-flags.flag-1.jv > span:before {
|
321 |
-
background-position: -4321px 0 !important; }
|
322 |
-
.weglot-flags.flag-1.kn > a:before, .weglot-flags.flag-1.kn > span:before {
|
323 |
-
background-position: -3329px 0 !important; }
|
324 |
-
.weglot-flags.flag-1.kk > a:before, .weglot-flags.flag-1.kk > span:before {
|
325 |
-
background-position: -3713px 0 !important; }
|
326 |
-
.weglot-flags.flag-1.ko > a:before, .weglot-flags.flag-1.ko > span:before {
|
327 |
-
background-position: -6913px 0 !important; }
|
328 |
-
.weglot-flags.flag-1.ku > a:before, .weglot-flags.flag-1.ku > span:before {
|
329 |
-
background-position: -3265px 0 !important; }
|
330 |
-
.weglot-flags.flag-1.ky > a:before, .weglot-flags.flag-1.ky > span:before {
|
331 |
-
background-position: -3873px 0 !important; }
|
332 |
-
.weglot-flags.flag-1.lo > a:before, .weglot-flags.flag-1.lo > span:before {
|
333 |
-
background-position: -3904px 0 !important; }
|
334 |
-
.weglot-flags.flag-1.la > a:before, .weglot-flags.flag-1.la > span:before {
|
335 |
-
background-position: -3553px 0 !important; }
|
336 |
-
.weglot-flags.flag-1.lv > a:before, .weglot-flags.flag-1.lv > span:before {
|
337 |
-
background-position: -3937px 0 !important; }
|
338 |
-
.weglot-flags.flag-1.lt > a:before, .weglot-flags.flag-1.lt > span:before {
|
339 |
-
background-position: -4129px 0 !important; }
|
340 |
-
.weglot-flags.flag-1.lb > a:before, .weglot-flags.flag-1.lb > span:before {
|
341 |
-
background-position: -4161px 0 !important; }
|
342 |
-
.weglot-flags.flag-1.mk > a:before, .weglot-flags.flag-1.mk > span:before {
|
343 |
-
background-position: -4225px 0 !important; }
|
344 |
-
.weglot-flags.flag-1.mg > a:before, .weglot-flags.flag-1.mg > span:before {
|
345 |
-
background-position: -4257px 0 !important; }
|
346 |
-
.weglot-flags.flag-1.ms > a:before, .weglot-flags.flag-1.ms > span:before {
|
347 |
-
background-position: -4321px 0 !important; }
|
348 |
-
.weglot-flags.flag-1.ml > a:before, .weglot-flags.flag-1.ml > span:before {
|
349 |
-
background-position: -3329px 0 !important; }
|
350 |
-
.weglot-flags.flag-1.mt > a:before, .weglot-flags.flag-1.mt > span:before {
|
351 |
-
background-position: -4417px 0 !important; }
|
352 |
-
.weglot-flags.flag-1.mi > a:before, .weglot-flags.flag-1.mi > span:before {
|
353 |
-
background-position: -5217px 0 !important; }
|
354 |
-
.weglot-flags.flag-1.mr > a:before, .weglot-flags.flag-1.mr > span:before {
|
355 |
-
background-position: -3329px 0 !important; }
|
356 |
-
.weglot-flags.flag-1.mn > a:before, .weglot-flags.flag-1.mn > span:before {
|
357 |
-
background-position: -4769px 0 !important; }
|
358 |
-
.weglot-flags.flag-1.ne > a:before, .weglot-flags.flag-1.ne > span:before {
|
359 |
-
background-position: -5091px 0 !important; }
|
360 |
-
.weglot-flags.flag-1.no > a:before, .weglot-flags.flag-1.no > span:before {
|
361 |
-
background-position: -5505px 0 !important; }
|
362 |
-
.weglot-flags.flag-1.ps > a:before, .weglot-flags.flag-1.ps > span:before {
|
363 |
-
background-position: -33px 0 !important; }
|
364 |
-
.weglot-flags.flag-1.fa > a:before, .weglot-flags.flag-1.fa > span:before {
|
365 |
-
background-position: -3393px 0 !important; }
|
366 |
-
.weglot-flags.flag-1.pl > a:before, .weglot-flags.flag-1.pl > span:before {
|
367 |
-
background-position: -5889px 0 !important; }
|
368 |
-
.weglot-flags.flag-1.pt > a:before, .weglot-flags.flag-1.pt > span:before {
|
369 |
-
background-position: -5921px 0 !important; }
|
370 |
-
.weglot-flags.flag-1.pa > a:before, .weglot-flags.flag-1.pa > span:before {
|
371 |
-
background-position: -3329px 0 !important; }
|
372 |
-
.weglot-flags.flag-1.ro > a:before, .weglot-flags.flag-1.ro > span:before {
|
373 |
-
background-position: -6081px 0 !important; }
|
374 |
-
.weglot-flags.flag-1.ru > a:before, .weglot-flags.flag-1.ru > span:before {
|
375 |
-
background-position: -6113px 0 !important; }
|
376 |
-
.weglot-flags.flag-1.sm > a:before, .weglot-flags.flag-1.sm > span:before {
|
377 |
-
background-position: -6369px 0 !important; }
|
378 |
-
.weglot-flags.flag-1.gd > a:before, .weglot-flags.flag-1.gd > span:before {
|
379 |
-
background-position: -6497px 0 !important; }
|
380 |
-
.weglot-flags.flag-1.sr > a:before, .weglot-flags.flag-1.sr > span:before {
|
381 |
-
background-position: -6561px 0 !important; }
|
382 |
-
.weglot-flags.flag-1.sn > a:before, .weglot-flags.flag-1.sn > span:before {
|
383 |
-
background-position: -8287px 0 !important; }
|
384 |
-
.weglot-flags.flag-1.sd > a:before, .weglot-flags.flag-1.sd > span:before {
|
385 |
-
background-position: -5601px 0 !important; }
|
386 |
-
.weglot-flags.flag-1.si > a:before, .weglot-flags.flag-1.si > span:before {
|
387 |
-
background-position: -7039px 0 !important; }
|
388 |
-
.weglot-flags.flag-1.sk > a:before, .weglot-flags.flag-1.sk > span:before {
|
389 |
-
background-position: -6689px 0 !important; }
|
390 |
-
.weglot-flags.flag-1.sl > a:before, .weglot-flags.flag-1.sl > span:before {
|
391 |
-
background-position: -6721px 0 !important; }
|
392 |
-
.weglot-flags.flag-1.so > a:before, .weglot-flags.flag-1.so > span:before {
|
393 |
-
background-position: -6785px 0 !important; }
|
394 |
-
.weglot-flags.flag-1.st > a:before, .weglot-flags.flag-1.st > span:before {
|
395 |
-
background-position: -4001px 0 !important; }
|
396 |
-
.weglot-flags.flag-1.es > a:before, .weglot-flags.flag-1.es > span:before {
|
397 |
-
background-position: -7009px 0 !important; }
|
398 |
-
.weglot-flags.flag-1.su > a:before, .weglot-flags.flag-1.su > span:before {
|
399 |
-
background-position: -7073px 0 !important; }
|
400 |
-
.weglot-flags.flag-1.sw > a:before, .weglot-flags.flag-1.sw > span:before {
|
401 |
-
background-position: -3745px 0 !important; }
|
402 |
-
.weglot-flags.flag-1.sv > a:before, .weglot-flags.flag-1.sv > span:before {
|
403 |
-
background-position: -7169px 0 !important; }
|
404 |
-
.weglot-flags.flag-1.tl > a:before, .weglot-flags.flag-1.tl > span:before {
|
405 |
-
background-position: -5823px 0 !important; }
|
406 |
-
.weglot-flags.flag-1.ty > a:before, .weglot-flags.flag-1.ty > span:before {
|
407 |
-
background-position: -2593px 0 !important; }
|
408 |
-
.weglot-flags.flag-1.tg > a:before, .weglot-flags.flag-1.tg > span:before {
|
409 |
-
background-position: -7297px 0 !important; }
|
410 |
-
.weglot-flags.flag-1.ta > a:before, .weglot-flags.flag-1.ta > span:before {
|
411 |
-
background-position: -3329px 0 !important; }
|
412 |
-
.weglot-flags.flag-1.tt > a:before, .weglot-flags.flag-1.tt > span:before {
|
413 |
-
background-position: -6113px 0 !important; }
|
414 |
-
.weglot-flags.flag-1.te > a:before, .weglot-flags.flag-1.te > span:before {
|
415 |
-
background-position: -3329px 0 !important; }
|
416 |
-
.weglot-flags.flag-1.th > a:before, .weglot-flags.flag-1.th > span:before {
|
417 |
-
background-position: -7361px 0 !important; }
|
418 |
-
.weglot-flags.flag-1.to > a:before, .weglot-flags.flag-1.to > span:before {
|
419 |
-
background-position: -7456px 0 !important; }
|
420 |
-
.weglot-flags.flag-1.tr > a:before, .weglot-flags.flag-1.tr > span:before {
|
421 |
-
background-position: -7553px 0 !important; }
|
422 |
-
.weglot-flags.flag-1.uk > a:before, .weglot-flags.flag-1.uk > span:before {
|
423 |
-
background-position: -7713px 0 !important; }
|
424 |
-
.weglot-flags.flag-1.ur > a:before, .weglot-flags.flag-1.ur > span:before {
|
425 |
-
background-position: -5600px 0 !important; }
|
426 |
-
.weglot-flags.flag-1.uz > a:before, .weglot-flags.flag-1.uz > span:before {
|
427 |
-
background-position: -7969px 0 !important; }
|
428 |
-
.weglot-flags.flag-1.vi > a:before, .weglot-flags.flag-1.vi > span:before {
|
429 |
-
background-position: -8097px 0 !important; }
|
430 |
-
.weglot-flags.flag-1.cy > a:before, .weglot-flags.flag-1.cy > span:before {
|
431 |
-
background-position: -8129px 0 !important; }
|
432 |
-
.weglot-flags.flag-1.fy > a:before, .weglot-flags.flag-1.fy > span:before {
|
433 |
-
background-position: -5121px 0 !important; }
|
434 |
-
.weglot-flags.flag-1.xh > a:before, .weglot-flags.flag-1.xh > span:before {
|
435 |
-
background-position: -6848px 0 !important; }
|
436 |
-
.weglot-flags.flag-1.yi > a:before, .weglot-flags.flag-1.yi > span:before {
|
437 |
-
background-position: -3521px 0 !important; }
|
438 |
-
.weglot-flags.flag-1.yo > a:before, .weglot-flags.flag-1.yo > span:before {
|
439 |
-
background-position: -5313px 0 !important; }
|
440 |
-
.weglot-flags.flag-1.zu > a:before, .weglot-flags.flag-1.zu > span:before {
|
441 |
-
background-position: -6848px 0 !important; }
|
442 |
-
.weglot-flags.flag-2 {
|
443 |
-
/* TODO */ }
|
444 |
-
.weglot-flags.flag-2.hw > a:before, .weglot-flags.flag-2.hw > span:before {
|
445 |
-
background-position: -5448px 0 !important; }
|
446 |
-
.weglot-flags.flag-2.fl > a:before, .weglot-flags.flag-2.fl > span:before {
|
447 |
-
background-position: -1008px 0 !important; }
|
448 |
-
.weglot-flags.flag-2.af > a:before, .weglot-flags.flag-2.af > span:before {
|
449 |
-
background-position: -4968px 0 !important; }
|
450 |
-
.weglot-flags.flag-2.sq > a:before, .weglot-flags.flag-2.sq > span:before {
|
451 |
-
background-position: -2976px 0 !important; }
|
452 |
-
.weglot-flags.flag-2.am > a:before, .weglot-flags.flag-2.am > span:before {
|
453 |
-
background-position: -3816px 0 !important; }
|
454 |
-
.weglot-flags.flag-2.ar > a:before, .weglot-flags.flag-2.ar > span:before {
|
455 |
-
background-position: -768px 0 !important; }
|
456 |
-
.weglot-flags.flag-2.hy > a:before, .weglot-flags.flag-2.hy > span:before {
|
457 |
-
background-position: 0 0 !important; }
|
458 |
-
.weglot-flags.flag-2.az > a:before, .weglot-flags.flag-2.az > span:before {
|
459 |
-
background-position: -5136px 0 !important; }
|
460 |
-
.weglot-flags.flag-2.ba > a:before, .weglot-flags.flag-2.ba > span:before {
|
461 |
-
background-position: -936px 0 !important; }
|
462 |
-
.weglot-flags.flag-2.eu > a:before, .weglot-flags.flag-2.eu > span:before {
|
463 |
-
background-position: -5376px 0 !important; }
|
464 |
-
.weglot-flags.flag-2.be > a:before, .weglot-flags.flag-2.be > span:before {
|
465 |
-
background-position: -4224px 0 !important; }
|
466 |
-
.weglot-flags.flag-2.bn > a:before, .weglot-flags.flag-2.bn > span:before {
|
467 |
-
background-position: -4056px 0 !important; }
|
468 |
-
.weglot-flags.flag-2.bs > a:before, .weglot-flags.flag-2.bs > span:before {
|
469 |
-
background-position: -3984px 0 !important; }
|
470 |
-
.weglot-flags.flag-2.bg > a:before, .weglot-flags.flag-2.bg > span:before {
|
471 |
-
background-position: -5040px 0 !important; }
|
472 |
-
.weglot-flags.flag-2.br > a:before, .weglot-flags.flag-2.br > span:before {
|
473 |
-
background-position: -2784px 0 !important; }
|
474 |
-
.weglot-flags.flag-2.my > a:before, .weglot-flags.flag-2.my > span:before {
|
475 |
-
background-position: -1248px 0 !important; }
|
476 |
-
.weglot-flags.flag-2.ca > a:before, .weglot-flags.flag-2.ca > span:before {
|
477 |
-
background-position: -5352px 0 !important; }
|
478 |
-
.weglot-flags.flag-2.zh > a:before, .weglot-flags.flag-2.zh > span:before {
|
479 |
-
background-position: -2592px 0 !important; }
|
480 |
-
.weglot-flags.flag-2.tw > a:before, .weglot-flags.flag-2.tw > span:before {
|
481 |
-
background-position: -3408px 0 !important; }
|
482 |
-
.weglot-flags.flag-2.km > a:before, .weglot-flags.flag-2.km > span:before {
|
483 |
-
background-position: -5160px 0 !important; }
|
484 |
-
.weglot-flags.flag-2.ny > a:before, .weglot-flags.flag-2.ny > span:before {
|
485 |
-
background-position: -1392px 0 !important; }
|
486 |
-
.weglot-flags.flag-2.co > a:before, .weglot-flags.flag-2.co > span:before {
|
487 |
-
background-position: -2304px 0 !important; }
|
488 |
-
.weglot-flags.flag-2.hr > a:before, .weglot-flags.flag-2.hr > span:before {
|
489 |
-
background-position: -4416px 0 !important; }
|
490 |
-
.weglot-flags.flag-2.cs > a:before, .weglot-flags.flag-2.cs > span:before {
|
491 |
-
background-position: -2472px 0 !important; }
|
492 |
-
.weglot-flags.flag-2.da > a:before, .weglot-flags.flag-2.da > span:before {
|
493 |
-
background-position: -2448px 0 !important; }
|
494 |
-
.weglot-flags.flag-2.nl > a:before, .weglot-flags.flag-2.nl > span:before {
|
495 |
-
background-position: -1296px 0 !important; }
|
496 |
-
.weglot-flags.flag-2.en > a:before, .weglot-flags.flag-2.en > span:before {
|
497 |
-
background-position: -312px 0 !important; }
|
498 |
-
.weglot-flags.flag-2.eo > a:before, .weglot-flags.flag-2.eo > span:before {
|
499 |
-
background-position: -312px 0 !important; }
|
500 |
-
.weglot-flags.flag-2.et > a:before, .weglot-flags.flag-2.et > span:before {
|
501 |
-
background-position: -2424px 0 !important; }
|
502 |
-
.weglot-flags.flag-2.fj > a:before, .weglot-flags.flag-2.fj > span:before {
|
503 |
-
background-position: -576px 0 !important; }
|
504 |
-
.weglot-flags.flag-2.fi > a:before, .weglot-flags.flag-2.fi > span:before {
|
505 |
-
background-position: -2328px 0 !important; }
|
506 |
-
.weglot-flags.flag-2.fr > a:before, .weglot-flags.flag-2.fr > span:before {
|
507 |
-
background-position: -2304px 0 !important; }
|
508 |
-
.weglot-flags.flag-2.gl > a:before, .weglot-flags.flag-2.gl > span:before {
|
509 |
-
background-position: -5400px 0 !important; }
|
510 |
-
.weglot-flags.flag-2.ka > a:before, .weglot-flags.flag-2.ka > span:before {
|
511 |
-
background-position: -3744px 0 !important; }
|
512 |
-
.weglot-flags.flag-2.de > a:before, .weglot-flags.flag-2.de > span:before {
|
513 |
-
background-position: -2256px 0 !important; }
|
514 |
-
.weglot-flags.flag-2.el > a:before, .weglot-flags.flag-2.el > span:before {
|
515 |
-
background-position: -2208px 0 !important; }
|
516 |
-
.weglot-flags.flag-2.gu > a:before, .weglot-flags.flag-2.gu > span:before {
|
517 |
-
background-position: -1728px 0 !important; }
|
518 |
-
.weglot-flags.flag-2.ht > a:before, .weglot-flags.flag-2.ht > span:before {
|
519 |
-
background-position: -3528px 0 !important; }
|
520 |
-
.weglot-flags.flag-2.ha > a:before, .weglot-flags.flag-2.ha > span:before {
|
521 |
-
background-position: -1176px 0 !important; }
|
522 |
-
.weglot-flags.flag-2.he > a:before, .weglot-flags.flag-2.he > span:before {
|
523 |
-
background-position: -1992px 0 !important; }
|
524 |
-
.weglot-flags.flag-2.hi > a:before, .weglot-flags.flag-2.hi > span:before {
|
525 |
-
background-position: -1728px 0 !important; }
|
526 |
-
.weglot-flags.flag-2.hu > a:before, .weglot-flags.flag-2.hu > span:before {
|
527 |
-
background-position: -2088px 0 !important; }
|
528 |
-
.weglot-flags.flag-2.is > a:before, .weglot-flags.flag-2.is > span:before {
|
529 |
-
background-position: -2064px 0 !important; }
|
530 |
-
.weglot-flags.flag-2.ig > a:before, .weglot-flags.flag-2.ig > span:before {
|
531 |
-
background-position: -1103px 0 !important; }
|
532 |
-
.weglot-flags.flag-2.id > a:before, .weglot-flags.flag-2.id > span:before {
|
533 |
-
background-position: -2040px 0 !important; }
|
534 |
-
.weglot-flags.flag-2.ga > a:before, .weglot-flags.flag-2.ga > span:before {
|
535 |
-
background-position: -2016px 0 !important; }
|
536 |
-
.weglot-flags.flag-2.it > a:before, .weglot-flags.flag-2.it > span:before {
|
537 |
-
background-position: -1968px 0 !important; }
|
538 |
-
.weglot-flags.flag-2.ja > a:before, .weglot-flags.flag-2.ja > span:before {
|
539 |
-
background-position: -1920px 0 !important; }
|
540 |
-
.weglot-flags.flag-2.jv > a:before, .weglot-flags.flag-2.jv > span:before {
|
541 |
-
background-position: -1536px 0 !important; }
|
542 |
-
.weglot-flags.flag-2.kn > a:before, .weglot-flags.flag-2.kn > span:before {
|
543 |
-
background-position: -1728px 0 !important; }
|
544 |
-
.weglot-flags.flag-2.kk > a:before, .weglot-flags.flag-2.kk > span:before {
|
545 |
-
background-position: -1704px 0 !important; }
|
546 |
-
.weglot-flags.flag-2.ko > a:before, .weglot-flags.flag-2.ko > span:before {
|
547 |
-
background-position: -1848px 0 !important; }
|
548 |
-
.weglot-flags.flag-2.ku > a:before, .weglot-flags.flag-2.ku > span:before {
|
549 |
-
background-position: -2088px 0 !important; }
|
550 |
-
.weglot-flags.flag-2.ky > a:before, .weglot-flags.flag-2.ky > span:before {
|
551 |
-
background-position: -1800px 0 !important; }
|
552 |
-
.weglot-flags.flag-2.lo > a:before, .weglot-flags.flag-2.lo > span:before {
|
553 |
-
background-position: -1776px 0 !important; }
|
554 |
-
.weglot-flags.flag-2.la > a:before, .weglot-flags.flag-2.la > span:before {
|
555 |
-
background-position: -1968px 0 !important; }
|
556 |
-
.weglot-flags.flag-2.lv > a:before, .weglot-flags.flag-2.lv > span:before {
|
557 |
-
background-position: -1752px 0 !important; }
|
558 |
-
.weglot-flags.flag-2.lt > a:before, .weglot-flags.flag-2.lt > span:before {
|
559 |
-
background-position: -1656px 0 !important; }
|
560 |
-
.weglot-flags.flag-2.lb > a:before, .weglot-flags.flag-2.lb > span:before {
|
561 |
-
background-position: -1632px 0 !important; }
|
562 |
-
.weglot-flags.flag-2.mk > a:before, .weglot-flags.flag-2.mk > span:before {
|
563 |
-
background-position: -1440px 0 !important; }
|
564 |
-
.weglot-flags.flag-2.mg > a:before, .weglot-flags.flag-2.mg > span:before {
|
565 |
-
background-position: -1560px 0 !important; }
|
566 |
-
.weglot-flags.flag-2.ms > a:before, .weglot-flags.flag-2.ms > span:before {
|
567 |
-
background-position: -1536px 0 !important; }
|
568 |
-
.weglot-flags.flag-2.ml > a:before, .weglot-flags.flag-2.ml > span:before {
|
569 |
-
background-position: -1728px 0 !important; }
|
570 |
-
.weglot-flags.flag-2.mt > a:before, .weglot-flags.flag-2.mt > span:before {
|
571 |
-
background-position: -1200px 0 !important; }
|
572 |
-
.weglot-flags.flag-2.mi > a:before, .weglot-flags.flag-2.mi > span:before {
|
573 |
-
background-position: -1224px 0 !important; }
|
574 |
-
.weglot-flags.flag-2.mr > a:before, .weglot-flags.flag-2.mr > span:before {
|
575 |
-
background-position: -1728px 0 !important; }
|
576 |
-
.weglot-flags.flag-2.mn > a:before, .weglot-flags.flag-2.mn > span:before {
|
577 |
-
background-position: -4800px 0 !important; }
|
578 |
-
.weglot-flags.flag-2.ne > a:before, .weglot-flags.flag-2.ne > span:before {
|
579 |
-
background-position: -1320px 0 !important; }
|
580 |
-
.weglot-flags.flag-2.no > a:before, .weglot-flags.flag-2.no > span:before {
|
581 |
-
background-position: -4776px 0 !important; }
|
582 |
-
.weglot-flags.flag-2.ps > a:before, .weglot-flags.flag-2.ps > span:before {
|
583 |
-
background-position: -4008px 0 !important; }
|
584 |
-
.weglot-flags.flag-2.fa > a:before, .weglot-flags.flag-2.fa > span:before {
|
585 |
-
background-position: -5088px 0 !important; }
|
586 |
-
.weglot-flags.flag-2.pl > a:before, .weglot-flags.flag-2.pl > span:before {
|
587 |
-
background-position: -984px 0 !important; }
|
588 |
-
.weglot-flags.flag-2.pt > a:before, .weglot-flags.flag-2.pt > span:before {
|
589 |
-
background-position: -528px 0 !important; }
|
590 |
-
.weglot-flags.flag-2.pa > a:before, .weglot-flags.flag-2.pa > span:before {
|
591 |
-
background-position: -1728px 0 !important; }
|
592 |
-
.weglot-flags.flag-2.ro > a:before, .weglot-flags.flag-2.ro > span:before {
|
593 |
-
background-position: -960px 0 !important; }
|
594 |
-
.weglot-flags.flag-2.ru > a:before, .weglot-flags.flag-2.ru > span:before {
|
595 |
-
background-position: -936px 0 !important; }
|
596 |
-
.weglot-flags.flag-2.sm > a:before, .weglot-flags.flag-2.sm > span:before {
|
597 |
-
background-position: -3408px 0 !important; }
|
598 |
-
.weglot-flags.flag-2.gd > a:before, .weglot-flags.flag-2.gd > span:before {
|
599 |
-
background-position: -4872px 0 !important; }
|
600 |
-
.weglot-flags.flag-2.sr > a:before, .weglot-flags.flag-2.sr > span:before {
|
601 |
-
background-position: -3120px 0 !important; }
|
602 |
-
.weglot-flags.flag-2.sn > a:before, .weglot-flags.flag-2.sn > span:before {
|
603 |
-
background-position: -72px 0 !important; }
|
604 |
-
.weglot-flags.flag-2.sd > a:before, .weglot-flags.flag-2.sd > span:before {
|
605 |
-
background-position: -1128px 0 !important; }
|
606 |
-
.weglot-flags.flag-2.si > a:before, .weglot-flags.flag-2.si > span:before {
|
607 |
-
background-position: -480px 0 !important; }
|
608 |
-
.weglot-flags.flag-2.sk > a:before, .weglot-flags.flag-2.sk > span:before {
|
609 |
-
background-position: -4152px 0 !important; }
|
610 |
-
.weglot-flags.flag-2.sl > a:before, .weglot-flags.flag-2.sl > span:before {
|
611 |
-
background-position: -696px 0 !important; }
|
612 |
-
.weglot-flags.flag-2.so > a:before, .weglot-flags.flag-2.so > span:before {
|
613 |
-
background-position: -3336px 0 !important; }
|
614 |
-
.weglot-flags.flag-2.st > a:before, .weglot-flags.flag-2.st > span:before {
|
615 |
-
background-position: -3552px 0 !important; }
|
616 |
-
.weglot-flags.flag-2.es > a:before, .weglot-flags.flag-2.es > span:before {
|
617 |
-
background-position: -96px 0 !important; }
|
618 |
-
.weglot-flags.flag-2.su > a:before, .weglot-flags.flag-2.su > span:before {
|
619 |
-
background-position: -3312px 0 !important; }
|
620 |
-
.weglot-flags.flag-2.sw > a:before, .weglot-flags.flag-2.sw > span:before {
|
621 |
-
background-position: -1872px 0 !important; }
|
622 |
-
.weglot-flags.flag-2.sv > a:before, .weglot-flags.flag-2.sv > span:before {
|
623 |
-
background-position: -552px 0 !important; }
|
624 |
-
.weglot-flags.flag-2.tl > a:before, .weglot-flags.flag-2.tl > span:before {
|
625 |
-
background-position: -1008px 0 !important; }
|
626 |
-
.weglot-flags.flag-2.ty > a:before, .weglot-flags.flag-2.ty > span:before {
|
627 |
-
background-position: -4512px 0 !important; }
|
628 |
-
.weglot-flags.flag-2.tg > a:before, .weglot-flags.flag-2.tg > span:before {
|
629 |
-
background-position: -264px 0 !important; }
|
630 |
-
.weglot-flags.flag-2.ta > a:before, .weglot-flags.flag-2.ta > span:before {
|
631 |
-
background-position: -1728px 0 !important; }
|
632 |
-
.weglot-flags.flag-2.tt > a:before, .weglot-flags.flag-2.tt > span:before {
|
633 |
-
background-position: -936px 0 !important; }
|
634 |
-
.weglot-flags.flag-2.te > a:before, .weglot-flags.flag-2.te > span:before {
|
635 |
-
background-position: -1728px 0 !important; }
|
636 |
-
.weglot-flags.flag-2.th > a:before, .weglot-flags.flag-2.th > span:before {
|
637 |
-
background-position: -456px 0 !important; }
|
638 |
-
.weglot-flags.flag-2.to > a:before, .weglot-flags.flag-2.to > span:before {
|
639 |
-
background-position: -3264px 0 !important; }
|
640 |
-
.weglot-flags.flag-2.tr > a:before, .weglot-flags.flag-2.tr > span:before {
|
641 |
-
background-position: -360px 0 !important; }
|
642 |
-
.weglot-flags.flag-2.uk > a:before, .weglot-flags.flag-2.uk > span:before {
|
643 |
-
background-position: -288px 0 !important; }
|
644 |
-
.weglot-flags.flag-2.ur > a:before, .weglot-flags.flag-2.ur > span:before {
|
645 |
-
background-position: -1128px 0 !important; }
|
646 |
-
.weglot-flags.flag-2.uz > a:before, .weglot-flags.flag-2.uz > span:before {
|
647 |
-
background-position: -240px 0 !important; }
|
648 |
-
.weglot-flags.flag-2.vi > a:before, .weglot-flags.flag-2.vi > span:before {
|
649 |
-
background-position: -144px 0 !important; }
|
650 |
-
.weglot-flags.flag-2.cy > a:before, .weglot-flags.flag-2.cy > span:before {
|
651 |
-
background-position: -4848px 0 !important; }
|
652 |
-
.weglot-flags.flag-2.fy > a:before, .weglot-flags.flag-2.fy > span:before {
|
653 |
-
background-position: -1296px 0 !important; }
|
654 |
-
.weglot-flags.flag-2.xh > a:before, .weglot-flags.flag-2.xh > span:before {
|
655 |
-
background-position: -4968px 0 !important; }
|
656 |
-
.weglot-flags.flag-2.yi > a:before, .weglot-flags.flag-2.yi > span:before {
|
657 |
-
background-position: -1992px 0 !important; }
|
658 |
-
.weglot-flags.flag-2.yo > a:before, .weglot-flags.flag-2.yo > span:before {
|
659 |
-
background-position: -1103px 0 !important; }
|
660 |
-
.weglot-flags.flag-2.zu > a:before, .weglot-flags.flag-2.zu > span:before {
|
661 |
-
background-position: -4968px 0 !important; }
|
662 |
-
.weglot-flags.flag-3 {
|
663 |
-
/* TODO */
|
664 |
-
/* TODO */
|
665 |
-
/* TODO */ }
|
666 |
-
.weglot-flags.flag-3.hw > a:before, .weglot-flags.flag-3.hw > span:before {
|
667 |
-
background-position: -2711px 0 !important; }
|
668 |
-
.weglot-flags.flag-3.fl > a:before, .weglot-flags.flag-3.fl > span:before {
|
669 |
-
background-position: -5232px 0 !important; }
|
670 |
-
.weglot-flags.flag-3.af > a:before, .weglot-flags.flag-3.af > span:before {
|
671 |
-
background-position: -5496px 0 !important; }
|
672 |
-
.weglot-flags.flag-3.sq > a:before, .weglot-flags.flag-3.sq > span:before {
|
673 |
-
background-position: -4776px 0 !important; }
|
674 |
-
.weglot-flags.flag-3.am > a:before, .weglot-flags.flag-3.am > span:before {
|
675 |
-
background-position: -192px 0 !important; }
|
676 |
-
.weglot-flags.flag-3.ar > a:before, .weglot-flags.flag-3.ar > span:before {
|
677 |
-
background-position: -3336px 0 !important; }
|
678 |
-
.weglot-flags.flag-3.hy > a:before, .weglot-flags.flag-3.hy > span:before {
|
679 |
-
background-position: -4632px 0 !important; }
|
680 |
-
.weglot-flags.flag-3.az > a:before, .weglot-flags.flag-3.az > span:before {
|
681 |
-
background-position: -4536px 0 !important; }
|
682 |
-
.weglot-flags.flag-3.ba > a:before, .weglot-flags.flag-3.ba > span:before {
|
683 |
-
background-position: -2664px 0 !important; }
|
684 |
-
.weglot-flags.flag-3.eu > a:before, .weglot-flags.flag-3.eu > span:before {
|
685 |
-
background-position: -5808px 0 !important; }
|
686 |
-
.weglot-flags.flag-3.be > a:before, .weglot-flags.flag-3.be > span:before {
|
687 |
-
background-position: -144px 0 !important; }
|
688 |
-
.weglot-flags.flag-3.bn > a:before, .weglot-flags.flag-3.bn > span:before {
|
689 |
-
background-position: -4488px 0 !important; }
|
690 |
-
.weglot-flags.flag-3.bs > a:before, .weglot-flags.flag-3.bs > span:before {
|
691 |
-
background-position: -4392px 0 !important; }
|
692 |
-
.weglot-flags.flag-3.bg > a:before, .weglot-flags.flag-3.bg > span:before {
|
693 |
-
background-position: -4296px 0 !important; }
|
694 |
-
.weglot-flags.flag-3.br > a:before, .weglot-flags.flag-3.br > span:before {
|
695 |
-
background-position: -4344px 0 !important; }
|
696 |
-
.weglot-flags.flag-3.my > a:before, .weglot-flags.flag-3.my > span:before {
|
697 |
-
background-position: -3769px 0 !important; }
|
698 |
-
.weglot-flags.flag-3.ca > a:before, .weglot-flags.flag-3.ca > span:before {
|
699 |
-
background-position: -5784px 0 !important; }
|
700 |
-
.weglot-flags.flag-3.zh > a:before, .weglot-flags.flag-3.zh > span:before {
|
701 |
-
background-position: -3240px 0 !important; }
|
702 |
-
.weglot-flags.flag-3.tw > a:before, .weglot-flags.flag-3.tw > span:before {
|
703 |
-
background-position: -4008px 0 !important; }
|
704 |
-
.weglot-flags.flag-3.km > a:before, .weglot-flags.flag-3.km > span:before {
|
705 |
-
background-position: -4201px 0 !important; }
|
706 |
-
.weglot-flags.flag-3.ny > a:before, .weglot-flags.flag-3.ny > span:before {
|
707 |
-
background-position: -384px 0 !important; }
|
708 |
-
.weglot-flags.flag-3.co > a:before, .weglot-flags.flag-3.co > span:before {
|
709 |
-
background-position: -2760px 0 !important; }
|
710 |
-
.weglot-flags.flag-3.hr > a:before, .weglot-flags.flag-3.hr > span:before {
|
711 |
-
background-position: -3048px 0 !important; }
|
712 |
-
.weglot-flags.flag-3.cs > a:before, .weglot-flags.flag-3.cs > span:before {
|
713 |
-
background-position: -5280px 0 !important; }
|
714 |
-
.weglot-flags.flag-3.da > a:before, .weglot-flags.flag-3.da > span:before {
|
715 |
-
background-position: -3024px 0 !important; }
|
716 |
-
.weglot-flags.flag-3.nl > a:before, .weglot-flags.flag-3.nl > span:before {
|
717 |
-
background-position: -3360px 0 !important; }
|
718 |
-
.weglot-flags.flag-3.en > a:before, .weglot-flags.flag-3.en > span:before {
|
719 |
-
background-position: -2520px 0 !important; }
|
720 |
-
.weglot-flags.flag-3.eo > a:before, .weglot-flags.flag-3.eo > span:before {
|
721 |
-
background-position: -2520px 0 !important; }
|
722 |
-
.weglot-flags.flag-3.et > a:before, .weglot-flags.flag-3.et > span:before {
|
723 |
-
background-position: -2856px 0 !important; }
|
724 |
-
.weglot-flags.flag-3.fj > a:before, .weglot-flags.flag-3.fj > span:before {
|
725 |
-
background-position: -0px 0 !important; }
|
726 |
-
.weglot-flags.flag-3.fi > a:before, .weglot-flags.flag-3.fi > span:before {
|
727 |
-
background-position: -2784px 0 !important; }
|
728 |
-
.weglot-flags.flag-3.fr > a:before, .weglot-flags.flag-3.fr > span:before {
|
729 |
-
background-position: -2760px 0 !important; }
|
730 |
-
.weglot-flags.flag-3.gl > a:before, .weglot-flags.flag-3.gl > span:before {
|
731 |
-
background-position: -5832px 0 !important; }
|
732 |
-
.weglot-flags.flag-3.ka > a:before, .weglot-flags.flag-3.ka > span:before {
|
733 |
-
background-position: -1536px 0 !important; }
|
734 |
-
.weglot-flags.flag-3.de > a:before, .weglot-flags.flag-3.de > span:before {
|
735 |
-
background-position: -1488px 0 !important; }
|
736 |
-
.weglot-flags.flag-3.el > a:before, .weglot-flags.flag-3.el > span:before {
|
737 |
-
background-position: -1416px 0 !important; }
|
738 |
-
.weglot-flags.flag-3.gu > a:before, .weglot-flags.flag-3.gu > span:before {
|
739 |
-
background-position: -2304px 0 !important; }
|
740 |
-
.weglot-flags.flag-3.ht > a:before, .weglot-flags.flag-3.ht > span:before {
|
741 |
-
background-position: -5160px 0 !important; }
|
742 |
-
.weglot-flags.flag-3.ha > a:before, .weglot-flags.flag-3.ha > span:before {
|
743 |
-
background-position: -361px 0 !important; }
|
744 |
-
.weglot-flags.flag-3.he > a:before, .weglot-flags.flag-3.he > span:before {
|
745 |
-
background-position: -1608px 0 !important; }
|
746 |
-
.weglot-flags.flag-3.hi > a:before, .weglot-flags.flag-3.hi > span:before {
|
747 |
-
background-position: -2304px 0 !important; }
|
748 |
-
.weglot-flags.flag-3.hu > a:before, .weglot-flags.flag-3.hu > span:before {
|
749 |
-
background-position: -1920px 0 !important; }
|
750 |
-
.weglot-flags.flag-3.is > a:before, .weglot-flags.flag-3.is > span:before {
|
751 |
-
background-position: -840px 0 !important; }
|
752 |
-
.weglot-flags.flag-3.ig > a:before, .weglot-flags.flag-3.ig > span:before {
|
753 |
-
background-position: -3457px 0 !important; }
|
754 |
-
.weglot-flags.flag-3.id > a:before, .weglot-flags.flag-3.id > span:before {
|
755 |
-
background-position: -4992px 0 !important; }
|
756 |
-
.weglot-flags.flag-3.ga > a:before, .weglot-flags.flag-3.ga > span:before {
|
757 |
-
background-position: -2016px 0 !important; }
|
758 |
-
.weglot-flags.flag-3.it > a:before, .weglot-flags.flag-3.it > span:before {
|
759 |
-
background-position: -336px 0 !important; }
|
760 |
-
.weglot-flags.flag-3.ja > a:before, .weglot-flags.flag-3.ja > span:before {
|
761 |
-
background-position: -2448px 0 !important; }
|
762 |
-
.weglot-flags.flag-3.jv > a:before, .weglot-flags.flag-3.jv > span:before {
|
763 |
-
background-position: -864px 0 !important; }
|
764 |
-
.weglot-flags.flag-3.kn > a:before, .weglot-flags.flag-3.kn > span:before {
|
765 |
-
background-position: -2304px 0 !important; }
|
766 |
-
.weglot-flags.flag-3.kk > a:before, .weglot-flags.flag-3.kk > span:before {
|
767 |
-
background-position: -3912px 0 !important; }
|
768 |
-
.weglot-flags.flag-3.ko > a:before, .weglot-flags.flag-3.ko > span:before {
|
769 |
-
background-position: -2256px 0 !important; }
|
770 |
-
.weglot-flags.flag-3.ku > a:before, .weglot-flags.flag-3.ku > span:before {
|
771 |
-
background-position: -1920px 0 !important; }
|
772 |
-
.weglot-flags.flag-3.ky > a:before, .weglot-flags.flag-3.ky > span:before {
|
773 |
-
background-position: -744px 0 !important; }
|
774 |
-
.weglot-flags.flag-3.lo > a:before, .weglot-flags.flag-3.lo > span:before {
|
775 |
-
background-position: -3816px 0 !important; }
|
776 |
-
.weglot-flags.flag-3.la > a:before, .weglot-flags.flag-3.la > span:before {
|
777 |
-
background-position: -336px 0 !important; }
|
778 |
-
.weglot-flags.flag-3.lv > a:before, .weglot-flags.flag-3.lv > span:before {
|
779 |
-
background-position: -216px 0 !important; }
|
780 |
-
.weglot-flags.flag-3.lt > a:before, .weglot-flags.flag-3.lt > span:before {
|
781 |
-
background-position: -1776px 0 !important; }
|
782 |
-
.weglot-flags.flag-3.lb > a:before, .weglot-flags.flag-3.lb > span:before {
|
783 |
-
background-position: -1945px 0 !important; }
|
784 |
-
.weglot-flags.flag-3.mk > a:before, .weglot-flags.flag-3.mk > span:before {
|
785 |
-
background-position: -2208px 0 !important; }
|
786 |
-
.weglot-flags.flag-3.mg > a:before, .weglot-flags.flag-3.mg > span:before {
|
787 |
-
background-position: -5064px 0 !important; }
|
788 |
-
.weglot-flags.flag-3.ms > a:before, .weglot-flags.flag-3.ms > span:before {
|
789 |
-
background-position: -864px 0 !important; }
|
790 |
-
.weglot-flags.flag-3.ml > a:before, .weglot-flags.flag-3.ml > span:before {
|
791 |
-
background-position: -2304px 0 !important; }
|
792 |
-
.weglot-flags.flag-3.mt > a:before, .weglot-flags.flag-3.mt > span:before {
|
793 |
-
background-position: -4920px 0 !important; }
|
794 |
-
.weglot-flags.flag-3.mi > a:before, .weglot-flags.flag-3.mi > span:before {
|
795 |
-
background-position: -2113px 0 !important; }
|
796 |
-
.weglot-flags.flag-3.mr > a:before, .weglot-flags.flag-3.mr > span:before {
|
797 |
-
background-position: -2304px 0 !important; }
|
798 |
-
.weglot-flags.flag-3.mn > a:before, .weglot-flags.flag-3.mn > span:before {
|
799 |
-
background-position: -24px 0 !important; }
|
800 |
-
.weglot-flags.flag-3.ne > a:before, .weglot-flags.flag-3.ne > span:before {
|
801 |
-
background-position: -5642px 0 !important; }
|
802 |
-
.weglot-flags.flag-3.no > a:before, .weglot-flags.flag-3.no > span:before {
|
803 |
-
background-position: -984px 0 !important; }
|
804 |
-
.weglot-flags.flag-3.ps > a:before, .weglot-flags.flag-3.ps > span:before {
|
805 |
-
background-position: -4753px 0 !important; }
|
806 |
-
.weglot-flags.flag-3.fa > a:before, .weglot-flags.flag-3.fa > span:before {
|
807 |
-
background-position: -816px 0 !important; }
|
808 |
-
.weglot-flags.flag-3.pl > a:before, .weglot-flags.flag-3.pl > span:before {
|
809 |
-
background-position: -4944px 0 !important; }
|
810 |
-
.weglot-flags.flag-3.pt > a:before, .weglot-flags.flag-3.pt > span:before {
|
811 |
-
background-position: -3504px 0 !important; }
|
812 |
-
.weglot-flags.flag-3.pa > a:before, .weglot-flags.flag-3.pa > span:before {
|
813 |
-
background-position: -2304px 0 !important; }
|
814 |
-
.weglot-flags.flag-3.ro > a:before, .weglot-flags.flag-3.ro > span:before {
|
815 |
-
background-position: -3744px 0 !important; }
|
816 |
-
.weglot-flags.flag-3.ru > a:before, .weglot-flags.flag-3.ru > span:before {
|
817 |
-
background-position: -2664px 0 !important; }
|
818 |
-
.weglot-flags.flag-3.sm > a:before, .weglot-flags.flag-3.sm > span:before {
|
819 |
-
background-position: -1248px 0 !important; }
|
820 |
-
.weglot-flags.flag-3.gd > a:before, .weglot-flags.flag-3.gd > span:before {
|
821 |
-
background-position: -3841px 0 !important; }
|
822 |
-
.weglot-flags.flag-3.sr > a:before, .weglot-flags.flag-3.sr > span:before {
|
823 |
-
background-position: -3312px 0 !important; }
|
824 |
-
.weglot-flags.flag-3.sn > a:before, .weglot-flags.flag-3.sn > span:before {
|
825 |
-
background-position: -5521px 0 !important; }
|
826 |
-
.weglot-flags.flag-3.sd > a:before, .weglot-flags.flag-3.sd > span:before {
|
827 |
-
background-position: -1993px 0 !important; }
|
828 |
-
.weglot-flags.flag-3.si > a:before, .weglot-flags.flag-3.si > span:before {
|
829 |
-
background-position: -2833px 0 !important; }
|
830 |
-
.weglot-flags.flag-3.sk > a:before, .weglot-flags.flag-3.sk > span:before {
|
831 |
-
background-position: -552px 0 !important; }
|
832 |
-
.weglot-flags.flag-3.sl > a:before, .weglot-flags.flag-3.sl > span:before {
|
833 |
-
background-position: -936px 0 !important; }
|
834 |
-
.weglot-flags.flag-3.so > a:before, .weglot-flags.flag-3.so > span:before {
|
835 |
-
background-position: -4032px 0 !important; }
|
836 |
-
.weglot-flags.flag-3.st > a:before, .weglot-flags.flag-3.st > span:before {
|
837 |
-
background-position: -3961px 0 !important; }
|
838 |
-
.weglot-flags.flag-3.es > a:before, .weglot-flags.flag-3.es > span:before {
|
839 |
-
background-position: -3576px 0 !important; }
|
840 |
-
.weglot-flags.flag-3.su > a:before, .weglot-flags.flag-3.su > span:before {
|
841 |
-
background-position: -3985px 0 !important; }
|
842 |
-
.weglot-flags.flag-3.sw > a:before, .weglot-flags.flag-3.sw > span:before {
|
843 |
-
background-position: -912px 0 !important; }
|
844 |
-
.weglot-flags.flag-3.sv > a:before, .weglot-flags.flag-3.sv > span:before {
|
845 |
-
background-position: -264px 0 !important; }
|
846 |
-
.weglot-flags.flag-3.tl > a:before, .weglot-flags.flag-3.tl > span:before {
|
847 |
-
background-position: -5232px 0 !important; }
|
848 |
-
.weglot-flags.flag-3.ty > a:before, .weglot-flags.flag-3.ty > span:before {
|
849 |
-
background-position: -1512px 0 !important; }
|
850 |
-
.weglot-flags.flag-3.tg > a:before, .weglot-flags.flag-3.tg > span:before {
|
851 |
-
background-position: -3720px 0 !important; }
|
852 |
-
.weglot-flags.flag-3.ta > a:before, .weglot-flags.flag-3.ta > span:before {
|
853 |
-
background-position: -2304px 0 !important; }
|
854 |
-
.weglot-flags.flag-3.tt > a:before, .weglot-flags.flag-3.tt > span:before {
|
855 |
-
background-position: -2664px 0 !important; }
|
856 |
-
.weglot-flags.flag-3.te > a:before, .weglot-flags.flag-3.te > span:before {
|
857 |
-
background-position: -2304px 0 !important; }
|
858 |
-
.weglot-flags.flag-3.th > a:before, .weglot-flags.flag-3.th > span:before {
|
859 |
-
background-position: -4848px 0 !important; }
|
860 |
-
.weglot-flags.flag-3.to > a:before, .weglot-flags.flag-3.to > span:before {
|
861 |
-
background-position: -1680px 0 !important; }
|
862 |
-
.weglot-flags.flag-3.tr > a:before, .weglot-flags.flag-3.tr > span:before {
|
863 |
-
background-position: -432px 0 !important; }
|
864 |
-
.weglot-flags.flag-3.uk > a:before, .weglot-flags.flag-3.uk > span:before {
|
865 |
-
background-position: -5736px 0 !important; }
|
866 |
-
.weglot-flags.flag-3.ur > a:before, .weglot-flags.flag-3.ur > span:before {
|
867 |
-
background-position: -1992px 0 !important; }
|
868 |
-
.weglot-flags.flag-3.uz > a:before, .weglot-flags.flag-3.uz > span:before {
|
869 |
-
background-position: -2160px 0 !important; }
|
870 |
-
.weglot-flags.flag-3.vi > a:before, .weglot-flags.flag-3.vi > span:before {
|
871 |
-
background-position: -3384px 0 !important; }
|
872 |
-
.weglot-flags.flag-3.cy > a:before, .weglot-flags.flag-3.cy > span:before {
|
873 |
-
background-position: -5040px 0 !important; }
|
874 |
-
.weglot-flags.flag-3.fy > a:before, .weglot-flags.flag-3.fy > span:before {
|
875 |
-
background-position: -3360px 0 !important; }
|
876 |
-
.weglot-flags.flag-3.xh > a:before, .weglot-flags.flag-3.xh > span:before {
|
877 |
-
background-position: -5496px 0 !important; }
|
878 |
-
.weglot-flags.flag-3.yi > a:before, .weglot-flags.flag-3.yi > span:before {
|
879 |
-
background-position: -1608px 0 !important; }
|
880 |
-
.weglot-flags.flag-3.yo > a:before, .weglot-flags.flag-3.yo > span:before {
|
881 |
-
background-position: -3457px 0 !important; }
|
882 |
-
.weglot-flags.flag-3.zu > a:before, .weglot-flags.flag-3.zu > span:before {
|
883 |
-
background-position: -5496px 0 !important; }
|
884 |
-
|
885 |
-
body div[id^="mega-menu-wrap"] #mega-menu-primary li.mega-menu-item.weglot-flags a.mega-menu-link:before {
|
886 |
-
background-image: url("../images/rect_mate.png") !important;
|
887 |
-
background-size: auto 20px !important;
|
888 |
-
border-radius: 0px !important;
|
889 |
-
width: 30px !important;
|
890 |
-
height: 20px !important;
|
891 |
-
content: "";
|
892 |
-
vertical-align: middle;
|
893 |
-
margin-right: 10px;
|
894 |
-
display: inline-block;
|
895 |
-
overflow: hidden; }
|
896 |
-
|
897 |
-
body div[id^="mega-menu-wrap"] #mega-menu-primary li.mega-menu-item.weglot-flags.flag-1 .mega-menu-link:before {
|
898 |
-
background-image: url("../images/rect_bright.png") !important; }
|
899 |
-
|
900 |
-
body div[id^="mega-menu-wrap"] #mega-menu-primary li.mega-menu-item.weglot-flags.flag-2 .mega-menu-link:before {
|
901 |
-
background-image: url("../images/square_flag.png") !important;
|
902 |
-
width: 24px !important;
|
903 |
-
height: 24px !important;
|
904 |
-
background-size: auto 24px !important; }
|
905 |
-
|
906 |
-
body div[id^="mega-menu-wrap"] #mega-menu-primary li.mega-menu-item.weglot-flags.flag-3 .mega-menu-link:before {
|
907 |
-
background-image: url("../images/circular_flag.png") !important;
|
908 |
-
width: 24px !important;
|
909 |
-
height: 24px !important;
|
910 |
-
background-size: auto 24px !important; }
|
911 |
-
|
912 |
-
#wp-admin-bar-weglot > .ab-item {
|
913 |
-
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZyBmaWxsPSIjYTBhNWFhIj48cGF0aCBkPSJNMjEuNzM5IDkyLjU2NWw1MS44MjggMTI5LjczMiAyMy42Ni02MC4yNzkgMjQuMTQ0IDYwLjI3OUwxNzMuMiA5Mi41NjVoLTI4LjAwN2wtMjMuODIyIDU4Ljc1LTIzLjkwMi01OC43NS0yMy45MDIgNTguNzUtMjMuOTAyLTU4Ljc1SDIxLjczOXoiLz48cGF0aCBkPSJNMjEwLjAwNiA5Mi43MWMtMTcuODY2IDAtMzMuMTU3IDYuMzU4LTQ1Ljg3MyAxOS4wNzQtMTIuNzE1IDEyLjcxNi0xOC45OTMgMjguMDA2LTE4Ljk5MyA0NS43OTIgMCAxNy44NjcgNi4yNzggMzMuMTU4IDE4Ljk5MyA0NS44NzMgMTIuNzE2IDEyLjcxNiAyOC4wMDcgMTguOTkzIDQ1Ljg3MyAxOC45OTMgMTcuNzg2IDAgMzMuMDc3LTYuMjc3IDQ1Ljc5My0xOC45OTMgMTIuNzE1LTEyLjcxNSAxOS4wNzMtMjguMDA2IDE5LjA3My00NS44NzMgMC00LjUwNy0uNDgzLTguODUyLTEuMjg4LTEyLjk1N2gtNjMuNTc4djI1LjkxNGgzNi42OTljLTIuNzM3IDcuNTY1LTcuNDg1IDEzLjg0My0xNC4wODQgMTguNjcxLTYuNjggNC44My0xNC4yNDUgNy4yNDQtMjIuNjE1IDcuMjQ0LTEwLjc4NCAwLTE5Ljk1OC0zLjc4My0yNy41MjMtMTEuMzQ4LTcuNTY2LTcuNTY1LTExLjM0OC0xNi43NC0xMS4zNDgtMjcuNTI0IDAtMTAuNjIzIDMuNzgyLTE5Ljc5OCAxMS4zNDgtMjcuNDQzIDcuNTY1LTcuNjQ1IDE2Ljc0LTExLjUwOCAyNy41MjMtMTEuNTA4IDEwLjYyMyAwIDE5Ljc5OCAzLjg2MyAyNy41MjQgMTEuNDI4bDE4LjM1LTE4LjM1YTY3Ljk2MyA2Ny45NjMgMCAwMC0yMC43NjQtMTMuODQyYy03Ljg4Ny0zLjM4LTE2LjI1Ny01LjE1LTI1LjExLTUuMTV6Ii8+PC9nPjwvc3ZnPg==") !important;
|
914 |
-
-webkit-background-size: 22px auto !important;
|
915 |
-
background-size: 22px auto !important;
|
916 |
-
background-repeat: no-repeat !important;
|
917 |
-
background-position: 4px 5px !important;
|
918 |
-
padding-left: 30px !important; }
|
919 |
-
|
920 |
-
li.weglot-hide,
|
921 |
-
.weglot-hide {
|
922 |
-
display: none !important; }
|
923 |
-
|
924 |
-
.country-selector {
|
925 |
-
z-index: 9999;
|
926 |
-
text-align: left;
|
927 |
-
position: relative;
|
928 |
-
display: inline-block;
|
929 |
-
width: auto; }
|
930 |
-
.country-selector a {
|
931 |
-
padding: 0 10px;
|
932 |
-
outline: none;
|
933 |
-
text-decoration: none;
|
934 |
-
float: none !important;
|
935 |
-
white-space: nowrap;
|
936 |
-
font-weight: normal;
|
937 |
-
cursor: pointer;
|
938 |
-
color: black;
|
939 |
-
-webkit-touch-callout: none;
|
940 |
-
/* iOS Safari */
|
941 |
-
-webkit-user-select: none;
|
942 |
-
-moz-user-select: none;
|
943 |
-
-ms-user-select: none;
|
944 |
-
user-select: none; }
|
945 |
-
.country-selector a:focus {
|
946 |
-
outline: none; }
|
947 |
-
.country-selector ul {
|
948 |
-
padding: 0px;
|
949 |
-
z-index: 1010;
|
950 |
-
list-style: none;
|
951 |
-
margin: 0; }
|
952 |
-
.country-selector li {
|
953 |
-
margin: 0px;
|
954 |
-
padding: 0px; }
|
955 |
-
.country-selector.weglot-dropdown {
|
956 |
-
background-color: white; }
|
957 |
-
.country-selector.weglot-dropdown a,
|
958 |
-
.country-selector.weglot-dropdown span {
|
959 |
-
display: block;
|
960 |
-
height: 37px;
|
961 |
-
line-height: 36px;
|
962 |
-
font-size: 13px;
|
963 |
-
padding: 0 10px;
|
964 |
-
width: 100%;
|
965 |
-
-webkit-box-sizing: border-box;
|
966 |
-
box-sizing: border-box;
|
967 |
-
font-weight: normal; }
|
968 |
-
.country-selector.weglot-dropdown a:hover,
|
969 |
-
.country-selector.weglot-dropdown span:hover {
|
970 |
-
cursor: pointer; }
|
971 |
-
.country-selector.weglot-dropdown .wgcurrent {
|
972 |
-
border: 1px solid #e0e0e0;
|
973 |
-
list-style: none;
|
974 |
-
display: block;
|
975 |
-
margin: 0; }
|
976 |
-
.country-selector.weglot-dropdown .wgcurrent a,
|
977 |
-
.country-selector.weglot-dropdown .wgcurrent span {
|
978 |
-
padding-right: 60px; }
|
979 |
-
.country-selector.weglot-dropdown .wgcurrent:after {
|
980 |
-
display: inline-block;
|
981 |
-
position: absolute;
|
982 |
-
top: 17px;
|
983 |
-
right: 8px;
|
984 |
-
width: 13px;
|
985 |
-
height: 7px;
|
986 |
-
-ms-interpolation-mode: nearest-neighbor;
|
987 |
-
image-rendering: -webkit-optimize-contrast;
|
988 |
-
image-rendering: -moz-crisp-edges;
|
989 |
-
image-rendering: -o-pixelated;
|
990 |
-
image-rendering: pixelated;
|
991 |
-
background: url("../images/wgarrowdown.png") no-repeat;
|
992 |
-
content: "";
|
993 |
-
-webkit-transition: all 200ms;
|
994 |
-
-o-transition: all 200ms;
|
995 |
-
transition: all 200ms;
|
996 |
-
-webkit-transform: rotate(-90deg);
|
997 |
-
-ms-transform: rotate(-90deg);
|
998 |
-
transform: rotate(-90deg); }
|
999 |
-
.country-selector.weglot-dropdown ul {
|
1000 |
-
position: absolute;
|
1001 |
-
min-width: 100%;
|
1002 |
-
border: 1px solid #ebeef0;
|
1003 |
-
background: white;
|
1004 |
-
left: 0;
|
1005 |
-
top: initial;
|
1006 |
-
-webkit-box-sizing: border-box;
|
1007 |
-
box-sizing: border-box;
|
1008 |
-
display: none;
|
1009 |
-
padding: 0; }
|
1010 |
-
.country-selector.weglot-dropdown input:checked ~ ul {
|
1011 |
-
display: block; }
|
1012 |
-
.country-selector.weglot-dropdown input:checked ~ .wgcurrent:after {
|
1013 |
-
-webkit-transform: rotate(0deg);
|
1014 |
-
-ms-transform: rotate(0deg);
|
1015 |
-
transform: rotate(0deg); }
|
1016 |
-
.country-selector.weglot-dropdown li {
|
1017 |
-
width: 100%; }
|
1018 |
-
.country-selector.weglot-dropdown.weglot-invert ul {
|
1019 |
-
bottom: 38px; }
|
1020 |
-
.country-selector.weglot-dropdown.weglot-invert input:checked ~ .wgcurrent:after {
|
1021 |
-
-webkit-transform: rotate(-180deg);
|
1022 |
-
-ms-transform: rotate(-180deg);
|
1023 |
-
transform: rotate(-180deg); }
|
1024 |
-
.country-selector.weglot-default {
|
1025 |
-
position: fixed;
|
1026 |
-
bottom: 0px;
|
1027 |
-
right: 40px; }
|
1028 |
-
.country-selector.weglot-inline a:hover {
|
1029 |
-
text-decoration: underline;
|
1030 |
-
color: #00a0d2; }
|
1031 |
-
.country-selector.weglot-inline .wgcurrent a {
|
1032 |
-
text-decoration: underline; }
|
1033 |
-
.country-selector.weglot-inline label {
|
1034 |
-
margin-bottom: 0;
|
1035 |
-
display: inline-block;
|
1036 |
-
vertical-align: middle; }
|
1037 |
-
.country-selector.weglot-inline ul {
|
1038 |
-
display: inline-block;
|
1039 |
-
vertical-align: middle; }
|
1040 |
-
.country-selector.weglot-inline li {
|
1041 |
-
line-height: 1 !important;
|
1042 |
-
display: inline-block;
|
1043 |
-
margin: 2px 0px;
|
1044 |
-
vertical-align: middle; }
|
1045 |
-
.country-selector.weglot-inline.weglot-default {
|
1046 |
-
bottom: 5px; }
|
1047 |
-
.country-selector input {
|
1048 |
-
display: none !important; }
|
1049 |
-
|
1050 |
-
.navbar .navbar-nav li.weglot-flags a.weglot-lang:before {
|
1051 |
-
position: static;
|
1052 |
-
-webkit-transform: none;
|
1053 |
-
-ms-transform: none;
|
1054 |
-
transform: none;
|
1055 |
-
-webkit-transition: none;
|
1056 |
-
-o-transition: none;
|
1057 |
-
transition: none; }
|
1058 |
-
|
1059 |
-
.js .main-navigation .country-selector ul {
|
1060 |
-
display: none; }
|
1061 |
-
|
1062 |
-
html[dir="rtl"] .weglot-flags a:before,
|
1063 |
-
html[dir="rtl"] .weglot-flags span:before {
|
1064 |
-
margin-right: 0;
|
1065 |
-
margin-left: 10px; }
|
1066 |
-
|
1067 |
-
.weglot-flags > a:before,
|
1068 |
-
.weglot-flags > span:before {
|
1069 |
-
background-image: url("../images/rect_mate.png");
|
1070 |
-
-webkit-background-size: auto 20px !important;
|
1071 |
-
background-size: auto 20px !important;
|
1072 |
-
border-radius: 0px !important;
|
1073 |
-
width: 30px !important;
|
1074 |
-
height: 20px !important;
|
1075 |
-
content: "";
|
1076 |
-
vertical-align: middle;
|
1077 |
-
margin-right: 10px;
|
1078 |
-
display: inline-block;
|
1079 |
-
overflow: hidden; }
|
1080 |
-
|
1081 |
-
.weglot-flags.flag-1 > a:before,
|
1082 |
-
.weglot-flags.flag-1 > span:before {
|
1083 |
-
background-image: url("../images/rect_bright.png"); }
|
1084 |
-
|
1085 |
-
.weglot-flags.flag-2 > a:before,
|
1086 |
-
.weglot-flags.flag-2 > span:before {
|
1087 |
-
background-image: url("../images/square_flag.png");
|
1088 |
-
width: 24px !important;
|
1089 |
-
height: 24px !important;
|
1090 |
-
-webkit-background-size: auto 24px !important;
|
1091 |
-
background-size: auto 24px !important; }
|
1092 |
-
|
1093 |
-
.weglot-flags.flag-3 a:before,
|
1094 |
-
.weglot-flags.flag-3 span:before {
|
1095 |
-
background-image: url("../images/circular_flag.png");
|
1096 |
-
width: 24px !important;
|
1097 |
-
height: 24px !important;
|
1098 |
-
-webkit-background-size: auto 24px !important;
|
1099 |
-
background-size: auto 24px !important; }
|
1100 |
-
|
1101 |
-
.weglot-flags > a span:before {
|
1102 |
-
background-image: none !important;
|
1103 |
-
display: none !important; }
|
1104 |
-
|
1105 |
-
.weglot-flags > span a:before {
|
1106 |
-
background-image: none !important;
|
1107 |
-
display: none !important; }
|
1 |
+
.weglot-flags.hw>a:before,.weglot-flags.hw>span:before{background-position:-3570px 0 !important}.weglot-flags.af>a:before,.weglot-flags.af>span:before{background-position:-6570px 0 !important}.weglot-flags.fl>a:before,.weglot-flags.fl>span:before{background-position:-3060px 0 !important}.weglot-flags.sq>a:before,.weglot-flags.sq>span:before{background-position:-2580px 0 !important}.weglot-flags.am>a:before,.weglot-flags.am>span:before{background-position:-5130px 0 !important}.weglot-flags.ar>a:before,.weglot-flags.ar>span:before{background-position:-510px 0 !important}.weglot-flags.hy>a:before,.weglot-flags.hy>span:before{background-position:-1800px 0 !important}.weglot-flags.az>a:before,.weglot-flags.az>span:before{background-position:-6840px 0 !important}.weglot-flags.ba>a:before,.weglot-flags.ba>span:before{background-position:-2040px 0 !important}.weglot-flags.eu>a:before,.weglot-flags.eu>span:before{background-position:-7260px 0 !important}.weglot-flags.be>a:before,.weglot-flags.be>span:before{background-position:-5310px 0 !important}.weglot-flags.bn>a:before,.weglot-flags.bn>span:before{background-position:-5400px 0 !important}.weglot-flags.bs>a:before,.weglot-flags.bs>span:before{background-position:-6390px 0 !important}.weglot-flags.bg>a:before,.weglot-flags.bg>span:before{background-position:-2730px 0 !important}.weglot-flags.br>a:before,.weglot-flags.br>span:before{background-position:-6630px 0 !important}.weglot-flags.my>a:before,.weglot-flags.my>span:before{background-position:-3299px 0 !important}.weglot-flags.ca>a:before,.weglot-flags.ca>span:before{background-position:-7230px 0 !important}.weglot-flags.zh>a:before,.weglot-flags.zh>span:before{background-position:-3690px 0 !important}.weglot-flags.tw>a:before,.weglot-flags.tw>span:before{background-position:-2970px 0 !important}.weglot-flags.km>a:before,.weglot-flags.km>span:before{background-position:-6930px 0 !important}.weglot-flags.ny>a:before,.weglot-flags.ny>span:before{background-position:-1140px 0 !important}.weglot-flags.co>a:before,.weglot-flags.co>span:before{background-position:-2520px 0 !important}.weglot-flags.hr>a:before,.weglot-flags.hr>span:before{background-position:-5910px 0 !important}.weglot-flags.cs>a:before,.weglot-flags.cs>span:before{background-position:-2700px 0 !important}.weglot-flags.da>a:before,.weglot-flags.da>span:before{background-position:-2670px 0 !important}.weglot-flags.nl>a:before,.weglot-flags.nl>span:before{background-position:-2100px 0 !important}.weglot-flags.en>a:before,.weglot-flags.en>span:before{background-position:-1920px 0 !important}.weglot-flags.eo>a:before,.weglot-flags.eo>span:before{background-position:-1920px 0 !important}.weglot-flags.et>a:before,.weglot-flags.et>span:before{background-position:-2640px 0 !important}.weglot-flags.fj>a:before,.weglot-flags.fj>span:before{background-position:-1710px 0 !important}.weglot-flags.fi>a:before,.weglot-flags.fi>span:before{background-position:-2550px 0 !important}.weglot-flags.fr>a:before,.weglot-flags.fr>span:before{background-position:-2520px 0 !important}.weglot-flags.gl>a:before,.weglot-flags.gl>span:before{background-position:-7290px 0 !important}.weglot-flags.ka>a:before,.weglot-flags.ka>span:before{background-position:-5040px 0 !important}.weglot-flags.de>a:before,.weglot-flags.de>span:before{background-position:-2490px 0 !important}.weglot-flags.el>a:before,.weglot-flags.el>span:before{background-position:-2460px 0 !important}.weglot-flags.gu>a:before,.weglot-flags.gu>span:before{background-position:-1170px 0 !important}.weglot-flags.ht>a:before,.weglot-flags.ht>span:before{background-position:-4650px 0 !important}.weglot-flags.ha>a:before,.weglot-flags.ha>span:before{background-position:-900px 0 !important}.weglot-flags.he>a:before,.weglot-flags.he>span:before{background-position:-1050px 0 !important}.weglot-flags.hi>a:before,.weglot-flags.hi>span:before{background-position:-1170px 0 !important}.weglot-flags.hu>a:before,.weglot-flags.hu>span:before{background-position:-2430px 0 !important}.weglot-flags.is>a:before,.weglot-flags.is>span:before{background-position:-2400px 0 !important}.weglot-flags.ig>a:before,.weglot-flags.ig>span:before{background-position:-870px 0 !important}.weglot-flags.id>a:before,.weglot-flags.id>span:before{background-position:-3510px 0 !important}.weglot-flags.ga>a:before,.weglot-flags.ga>span:before{background-position:-2340px 0 !important}.weglot-flags.it>a:before,.weglot-flags.it>span:before{background-position:-2310px 0 !important}.weglot-flags.ja>a:before,.weglot-flags.ja>span:before{background-position:-3480px 0 !important}.weglot-flags.jv>a:before,.weglot-flags.jv>span:before{background-position:-3360px 0 !important}.weglot-flags.kn>a:before,.weglot-flags.kn>span:before{background-position:-1170px 0 !important}.weglot-flags.kk>a:before,.weglot-flags.kk>span:before{background-position:-3150px 0 !important}.weglot-flags.ko>a:before,.weglot-flags.ko>span:before{background-position:-6990px 0 !important}.weglot-flags.ku>a:before,.weglot-flags.ku>span:before{background-position:-2430px 0 !important}.weglot-flags.ky>a:before,.weglot-flags.ky>span:before{background-position:-3420px 0 !important}.weglot-flags.lo>a:before,.weglot-flags.lo>span:before{background-position:-3450px 0 !important}.weglot-flags.la>a:before,.weglot-flags.la>span:before{background-position:-2310px 0 !important}.weglot-flags.lv>a:before,.weglot-flags.lv>span:before{background-position:-2280px 0 !important}.weglot-flags.lt>a:before,.weglot-flags.lt>span:before{background-position:-2250px 0 !important}.weglot-flags.lb>a:before,.weglot-flags.lb>span:before{background-position:-2220px 0 !important}.weglot-flags.mk>a:before,.weglot-flags.mk>span:before{background-position:-2190px 0 !important}.weglot-flags.mg>a:before,.weglot-flags.mg>span:before{background-position:-1200px 0 !important}.weglot-flags.ms>a:before,.weglot-flags.ms>span:before{background-position:-3360px 0 !important}.weglot-flags.ml>a:before,.weglot-flags.ml>span:before{background-position:-1170px 0 !important}.weglot-flags.mt>a:before,.weglot-flags.mt>span:before{background-position:-2130px 0 !important}.weglot-flags.mi>a:before,.weglot-flags.mi>span:before{background-position:-3240px 0 !important}.weglot-flags.mr>a:before,.weglot-flags.mr>span:before{background-position:-1170px 0 !important}.weglot-flags.mn>a:before,.weglot-flags.mn>span:before{background-position:-6000px 0 !important}.weglot-flags.ne>a:before,.weglot-flags.ne>span:before{background-position:-3270px 0 !important}.weglot-flags.no>a:before,.weglot-flags.no>span:before{background-position:-5850px 0 !important}.weglot-flags.ps>a:before,.weglot-flags.ps>span:before{background-position:-5189px 0 !important}.weglot-flags.fa>a:before,.weglot-flags.fa>span:before{background-position:-6690px 0 !important}.weglot-flags.pl>a:before,.weglot-flags.pl>span:before{background-position:-2160px 0 !important}.weglot-flags.pt>a:before,.weglot-flags.pt>span:before{background-position:-1740px 0 !important}.weglot-flags.pa>a:before,.weglot-flags.pa>span:before{background-position:-3180px 0 !important}.weglot-flags.ro>a:before,.weglot-flags.ro>span:before{background-position:-2070px 0 !important}.weglot-flags.ru>a:before,.weglot-flags.ru>span:before{background-position:-2040px 0 !important}.weglot-flags.sm>a:before,.weglot-flags.sm>span:before{background-position:-4620px 0 !important}.weglot-flags.gd>a:before,.weglot-flags.gd>span:before{background-position:-30px 0 !important}.weglot-flags.sr>a:before,.weglot-flags.sr>span:before{background-position:-4290px 0 !important}.weglot-flags.sn>a:before,.weglot-flags.sn>span:before{background-position:-540px 0 !important}.weglot-flags.sd>a:before,.weglot-flags.sd>span:before{background-position:-3180px 0 !important}.weglot-flags.si>a:before,.weglot-flags.si>span:before{background-position:-2820px 0 !important}.weglot-flags.sk>a:before,.weglot-flags.sk>span:before{background-position:-6810px 0 !important}.weglot-flags.sl>a:before,.weglot-flags.sl>span:before{background-position:-2010px 0 !important}.weglot-flags.so>a:before,.weglot-flags.so>span:before{background-position:-4560px 0 !important}.weglot-flags.st>a:before,.weglot-flags.st>span:before{background-position:-4830px 0 !important}.weglot-flags.es>a:before,.weglot-flags.es>span:before{background-position:-480px 0 !important}.weglot-flags.su>a:before,.weglot-flags.su>span:before{background-position:-4530px 0 !important}.weglot-flags.sw>a:before,.weglot-flags.sw>span:before{background-position:-1290px 0 !important}.weglot-flags.sv>a:before,.weglot-flags.sv>span:before{background-position:-1980px 0 !important}.weglot-flags.tl>a:before,.weglot-flags.tl>span:before{background-position:-3060px 0 !important}.weglot-flags.ty>a:before,.weglot-flags.ty>span:before{background-position:-6270px 0 !important}.weglot-flags.tg>a:before,.weglot-flags.tg>span:before{background-position:-2940px 0 !important}.weglot-flags.ta>a:before,.weglot-flags.ta>span:before{background-position:-1170px 0 !important}.weglot-flags.tt>a:before,.weglot-flags.tt>span:before{background-position:-2040px 0 !important}.weglot-flags.te>a:before,.weglot-flags.te>span:before{background-position:-1170px 0 !important}.weglot-flags.th>a:before,.weglot-flags.th>span:before{background-position:-2910px 0 !important}.weglot-flags.to>a:before,.weglot-flags.to>span:before{background-position:-6540px 0 !important}.weglot-flags.tr>a:before,.weglot-flags.tr>span:before{background-position:-1950px 0 !important}.weglot-flags.uk>a:before,.weglot-flags.uk>span:before{background-position:-1890px 0 !important}.weglot-flags.ur>a:before,.weglot-flags.ur>span:before{background-position:-3180px 0 !important}.weglot-flags.uz>a:before,.weglot-flags.uz>span:before{background-position:-2880px 0 !important}.weglot-flags.vi>a:before,.weglot-flags.vi>span:before{background-position:-2850px 0 !important}.weglot-flags.cy>a:before,.weglot-flags.cy>span:before{background-position:-6420px 0 !important}.weglot-flags.fy>a:before,.weglot-flags.fy>span:before{background-position:-2100px 0 !important}.weglot-flags.xh>a:before,.weglot-flags.xh>span:before{background-position:-6570px 0 !important}.weglot-flags.yi>a:before,.weglot-flags.yi>span:before{background-position:-1050px 0 !important}.weglot-flags.yo>a:before,.weglot-flags.yo>span:before{background-position:-870px 0 !important}.weglot-flags.zu>a:before,.weglot-flags.zu>span:before{background-position:-6570px 0 !important}.weglot-flags.flag-1.hw>a:before,.weglot-flags.flag-1.hw>span:before{background-position:-7840px 0 !important}.weglot-flags.flag-1.fl>a:before,.weglot-flags.flag-1.fl>span:before{background-position:2560px 0 !important}.weglot-flags.flag-1.af>a:before,.weglot-flags.flag-1.af>span:before{background-position:-6848px 0 !important}.weglot-flags.flag-1.sq>a:before,.weglot-flags.flag-1.sq>span:before{background-position:-97px 0 !important}.weglot-flags.flag-1.am>a:before,.weglot-flags.flag-1.am>span:before{background-position:-2369px 0 !important}.weglot-flags.flag-1.ar>a:before,.weglot-flags.flag-1.ar>span:before{background-position:-6465px 0 !important}.weglot-flags.flag-1.hy>a:before,.weglot-flags.flag-1.hy>span:before{background-position:-385px 0 !important}.weglot-flags.flag-1.az>a:before,.weglot-flags.flag-1.az>span:before{background-position:-513px 0 !important}.weglot-flags.flag-1.ba>a:before,.weglot-flags.flag-1.ba>span:before{background-position:-6113px 0 !important}.weglot-flags.flag-1.eu>a:before,.weglot-flags.flag-1.eu>span:before{background-position:-8353px 0 !important}.weglot-flags.flag-1.be>a:before,.weglot-flags.flag-1.be>span:before{background-position:-705px 0 !important}.weglot-flags.flag-1.bn>a:before,.weglot-flags.flag-1.bn>span:before{background-position:-609px 0 !important}.weglot-flags.flag-1.bs>a:before,.weglot-flags.flag-1.bs>span:before{background-position:-929px 0 !important}.weglot-flags.flag-1.bg>a:before,.weglot-flags.flag-1.bg>span:before{background-position:-1121px 0 !important}.weglot-flags.flag-1.br>a:before,.weglot-flags.flag-1.br>span:before{background-position:-993px 0 !important}.weglot-flags.flag-1.my>a:before,.weglot-flags.flag-1.my>span:before{background-position:-4929px 0 !important}.weglot-flags.flag-1.ca>a:before,.weglot-flags.flag-1.ca>span:before{background-position:-8321px 0 !important}.weglot-flags.flag-1.zh>a:before,.weglot-flags.flag-1.zh>span:before{background-position:-1505px 0 !important}.weglot-flags.flag-1.tw>a:before,.weglot-flags.flag-1.tw>span:before{background-position:-6369px 0 !important}.weglot-flags.flag-1.km>a:before,.weglot-flags.flag-1.km>span:before{background-position:-1217px 0 !important}.weglot-flags.flag-1.ny>a:before,.weglot-flags.flag-1.ny>span:before{background-position:-4289px 0 !important}.weglot-flags.flag-1.co>a:before,.weglot-flags.flag-1.co>span:before{background-position:-2561px 0 !important}.weglot-flags.flag-1.hr>a:before,.weglot-flags.flag-1.hr>span:before{background-position:-1793px 0 !important}.weglot-flags.flag-1.cs>a:before,.weglot-flags.flag-1.cs>span:before{background-position:-1921px 0 !important}.weglot-flags.flag-1.da>a:before,.weglot-flags.flag-1.da>span:before{background-position:-1985px 0 !important}.weglot-flags.flag-1.nl>a:before,.weglot-flags.flag-1.nl>span:before{background-position:-5121px 0 !important}.weglot-flags.flag-1.en>a:before,.weglot-flags.flag-1.en>span:before{background-position:-7777px 0 !important}.weglot-flags.flag-1.eo>a:before,.weglot-flags.flag-1.eo>span:before{background-position:-7777px 0 !important}.weglot-flags.flag-1.et>a:before,.weglot-flags.flag-1.et>span:before{background-position:-2337px 0 !important}.weglot-flags.flag-1.fj>a:before,.weglot-flags.flag-1.fj>span:before{background-position:-2497px 0 !important}.weglot-flags.flag-1.fi>a:before,.weglot-flags.flag-1.fi>span:before{background-position:-2529px 0 !important}.weglot-flags.flag-1.fr>a:before,.weglot-flags.flag-1.fr>span:before{background-position:-2561px 0 !important}.weglot-flags.flag-1.gl>a:before,.weglot-flags.flag-1.gl>span:before{background-position:-8383px 0 !important}.weglot-flags.flag-1.ka>a:before,.weglot-flags.flag-1.ka>span:before{background-position:-2721px 0 !important}.weglot-flags.flag-1.de>a:before,.weglot-flags.flag-1.de>span:before{background-position:-2753px 0 !important}.weglot-flags.flag-1.el>a:before,.weglot-flags.flag-1.el>span:before{background-position:-2881px 0 !important}.weglot-flags.flag-1.gu>a:before,.weglot-flags.flag-1.gu>span:before{background-position:-3329px 0 !important}.weglot-flags.flag-1.ht>a:before,.weglot-flags.flag-1.ht>span:before{background-position:-3169px 0 !important}.weglot-flags.flag-1.ha>a:before,.weglot-flags.flag-1.ha>span:before{background-position:-5281px 0 !important}.weglot-flags.flag-1.he>a:before,.weglot-flags.flag-1.he>span:before{background-position:-3521px 0 !important}.weglot-flags.flag-1.hi>a:before,.weglot-flags.flag-1.hi>span:before{background-position:-3329px 0 !important}.weglot-flags.flag-1.hu>a:before,.weglot-flags.flag-1.hu>span:before{background-position:-3265px 0 !important}.weglot-flags.flag-1.is>a:before,.weglot-flags.flag-1.is>span:before{background-position:-3297px 0 !important}.weglot-flags.flag-1.ig>a:before,.weglot-flags.flag-1.ig>span:before{background-position:-5313px 0 !important}.weglot-flags.flag-1.id>a:before,.weglot-flags.flag-1.id>span:before{background-position:-3361px 0 !important}.weglot-flags.flag-1.ga>a:before,.weglot-flags.flag-1.ga>span:before{background-position:-3457px 0 !important}.weglot-flags.flag-1.it>a:before,.weglot-flags.flag-1.it>span:before{background-position:-3553px 0 !important}.weglot-flags.flag-1.ja>a:before,.weglot-flags.flag-1.ja>span:before{background-position:-3617px 0 !important}.weglot-flags.flag-1.jv>a:before,.weglot-flags.flag-1.jv>span:before{background-position:-4321px 0 !important}.weglot-flags.flag-1.kn>a:before,.weglot-flags.flag-1.kn>span:before{background-position:-3329px 0 !important}.weglot-flags.flag-1.kk>a:before,.weglot-flags.flag-1.kk>span:before{background-position:-3713px 0 !important}.weglot-flags.flag-1.ko>a:before,.weglot-flags.flag-1.ko>span:before{background-position:-6913px 0 !important}.weglot-flags.flag-1.ku>a:before,.weglot-flags.flag-1.ku>span:before{background-position:-3265px 0 !important}.weglot-flags.flag-1.ky>a:before,.weglot-flags.flag-1.ky>span:before{background-position:-3873px 0 !important}.weglot-flags.flag-1.lo>a:before,.weglot-flags.flag-1.lo>span:before{background-position:-3904px 0 !important}.weglot-flags.flag-1.la>a:before,.weglot-flags.flag-1.la>span:before{background-position:-3553px 0 !important}.weglot-flags.flag-1.lv>a:before,.weglot-flags.flag-1.lv>span:before{background-position:-3937px 0 !important}.weglot-flags.flag-1.lt>a:before,.weglot-flags.flag-1.lt>span:before{background-position:-4129px 0 !important}.weglot-flags.flag-1.lb>a:before,.weglot-flags.flag-1.lb>span:before{background-position:-4161px 0 !important}.weglot-flags.flag-1.mk>a:before,.weglot-flags.flag-1.mk>span:before{background-position:-4225px 0 !important}.weglot-flags.flag-1.mg>a:before,.weglot-flags.flag-1.mg>span:before{background-position:-4257px 0 !important}.weglot-flags.flag-1.ms>a:before,.weglot-flags.flag-1.ms>span:before{background-position:-4321px 0 !important}.weglot-flags.flag-1.ml>a:before,.weglot-flags.flag-1.ml>span:before{background-position:-3329px 0 !important}.weglot-flags.flag-1.mt>a:before,.weglot-flags.flag-1.mt>span:before{background-position:-4417px 0 !important}.weglot-flags.flag-1.mi>a:before,.weglot-flags.flag-1.mi>span:before{background-position:-5217px 0 !important}.weglot-flags.flag-1.mr>a:before,.weglot-flags.flag-1.mr>span:before{background-position:-3329px 0 !important}.weglot-flags.flag-1.mn>a:before,.weglot-flags.flag-1.mn>span:before{background-position:-4769px 0 !important}.weglot-flags.flag-1.ne>a:before,.weglot-flags.flag-1.ne>span:before{background-position:-5091px 0 !important}.weglot-flags.flag-1.no>a:before,.weglot-flags.flag-1.no>span:before{background-position:-5505px 0 !important}.weglot-flags.flag-1.ps>a:before,.weglot-flags.flag-1.ps>span:before{background-position:-33px 0 !important}.weglot-flags.flag-1.fa>a:before,.weglot-flags.flag-1.fa>span:before{background-position:-3393px 0 !important}.weglot-flags.flag-1.pl>a:before,.weglot-flags.flag-1.pl>span:before{background-position:-5889px 0 !important}.weglot-flags.flag-1.pt>a:before,.weglot-flags.flag-1.pt>span:before{background-position:-5921px 0 !important}.weglot-flags.flag-1.pa>a:before,.weglot-flags.flag-1.pa>span:before{background-position:-3329px 0 !important}.weglot-flags.flag-1.ro>a:before,.weglot-flags.flag-1.ro>span:before{background-position:-6081px 0 !important}.weglot-flags.flag-1.ru>a:before,.weglot-flags.flag-1.ru>span:before{background-position:-6113px 0 !important}.weglot-flags.flag-1.sm>a:before,.weglot-flags.flag-1.sm>span:before{background-position:-6369px 0 !important}.weglot-flags.flag-1.gd>a:before,.weglot-flags.flag-1.gd>span:before{background-position:-6497px 0 !important}.weglot-flags.flag-1.sr>a:before,.weglot-flags.flag-1.sr>span:before{background-position:-6561px 0 !important}.weglot-flags.flag-1.sn>a:before,.weglot-flags.flag-1.sn>span:before{background-position:-8287px 0 !important}.weglot-flags.flag-1.sd>a:before,.weglot-flags.flag-1.sd>span:before{background-position:-5601px 0 !important}.weglot-flags.flag-1.si>a:before,.weglot-flags.flag-1.si>span:before{background-position:-7039px 0 !important}.weglot-flags.flag-1.sk>a:before,.weglot-flags.flag-1.sk>span:before{background-position:-6689px 0 !important}.weglot-flags.flag-1.sl>a:before,.weglot-flags.flag-1.sl>span:before{background-position:-6721px 0 !important}.weglot-flags.flag-1.so>a:before,.weglot-flags.flag-1.so>span:before{background-position:-6785px 0 !important}.weglot-flags.flag-1.st>a:before,.weglot-flags.flag-1.st>span:before{background-position:-4001px 0 !important}.weglot-flags.flag-1.es>a:before,.weglot-flags.flag-1.es>span:before{background-position:-7009px 0 !important}.weglot-flags.flag-1.su>a:before,.weglot-flags.flag-1.su>span:before{background-position:-7073px 0 !important}.weglot-flags.flag-1.sw>a:before,.weglot-flags.flag-1.sw>span:before{background-position:-3745px 0 !important}.weglot-flags.flag-1.sv>a:before,.weglot-flags.flag-1.sv>span:before{background-position:-7169px 0 !important}.weglot-flags.flag-1.tl>a:before,.weglot-flags.flag-1.tl>span:before{background-position:-5823px 0 !important}.weglot-flags.flag-1.ty>a:before,.weglot-flags.flag-1.ty>span:before{background-position:-2593px 0 !important}.weglot-flags.flag-1.tg>a:before,.weglot-flags.flag-1.tg>span:before{background-position:-7297px 0 !important}.weglot-flags.flag-1.ta>a:before,.weglot-flags.flag-1.ta>span:before{background-position:-3329px 0 !important}.weglot-flags.flag-1.tt>a:before,.weglot-flags.flag-1.tt>span:before{background-position:-6113px 0 !important}.weglot-flags.flag-1.te>a:before,.weglot-flags.flag-1.te>span:before{background-position:-3329px 0 !important}.weglot-flags.flag-1.th>a:before,.weglot-flags.flag-1.th>span:before{background-position:-7361px 0 !important}.weglot-flags.flag-1.to>a:before,.weglot-flags.flag-1.to>span:before{background-position:-7456px 0 !important}.weglot-flags.flag-1.tr>a:before,.weglot-flags.flag-1.tr>span:before{background-position:-7553px 0 !important}.weglot-flags.flag-1.uk>a:before,.weglot-flags.flag-1.uk>span:before{background-position:-7713px 0 !important}.weglot-flags.flag-1.ur>a:before,.weglot-flags.flag-1.ur>span:before{background-position:-5600px 0 !important}.weglot-flags.flag-1.uz>a:before,.weglot-flags.flag-1.uz>span:before{background-position:-7969px 0 !important}.weglot-flags.flag-1.vi>a:before,.weglot-flags.flag-1.vi>span:before{background-position:-8097px 0 !important}.weglot-flags.flag-1.cy>a:before,.weglot-flags.flag-1.cy>span:before{background-position:-8129px 0 !important}.weglot-flags.flag-1.fy>a:before,.weglot-flags.flag-1.fy>span:before{background-position:-5121px 0 !important}.weglot-flags.flag-1.xh>a:before,.weglot-flags.flag-1.xh>span:before{background-position:-6848px 0 !important}.weglot-flags.flag-1.yi>a:before,.weglot-flags.flag-1.yi>span:before{background-position:-3521px 0 !important}.weglot-flags.flag-1.yo>a:before,.weglot-flags.flag-1.yo>span:before{background-position:-5313px 0 !important}.weglot-flags.flag-1.zu>a:before,.weglot-flags.flag-1.zu>span:before{background-position:-6848px 0 !important}.weglot-flags.flag-2.hw>a:before,.weglot-flags.flag-2.hw>span:before{background-position:-5448px 0 !important}.weglot-flags.flag-2.fl>a:before,.weglot-flags.flag-2.fl>span:before{background-position:-1008px 0 !important}.weglot-flags.flag-2.af>a:before,.weglot-flags.flag-2.af>span:before{background-position:-4968px 0 !important}.weglot-flags.flag-2.sq>a:before,.weglot-flags.flag-2.sq>span:before{background-position:-2976px 0 !important}.weglot-flags.flag-2.am>a:before,.weglot-flags.flag-2.am>span:before{background-position:-3816px 0 !important}.weglot-flags.flag-2.ar>a:before,.weglot-flags.flag-2.ar>span:before{background-position:-768px 0 !important}.weglot-flags.flag-2.hy>a:before,.weglot-flags.flag-2.hy>span:before{background-position:0 0 !important}.weglot-flags.flag-2.az>a:before,.weglot-flags.flag-2.az>span:before{background-position:-5136px 0 !important}.weglot-flags.flag-2.ba>a:before,.weglot-flags.flag-2.ba>span:before{background-position:-936px 0 !important}.weglot-flags.flag-2.eu>a:before,.weglot-flags.flag-2.eu>span:before{background-position:-5376px 0 !important}.weglot-flags.flag-2.be>a:before,.weglot-flags.flag-2.be>span:before{background-position:-4224px 0 !important}.weglot-flags.flag-2.bn>a:before,.weglot-flags.flag-2.bn>span:before{background-position:-4056px 0 !important}.weglot-flags.flag-2.bs>a:before,.weglot-flags.flag-2.bs>span:before{background-position:-3984px 0 !important}.weglot-flags.flag-2.bg>a:before,.weglot-flags.flag-2.bg>span:before{background-position:-5040px 0 !important}.weglot-flags.flag-2.br>a:before,.weglot-flags.flag-2.br>span:before{background-position:-2784px 0 !important}.weglot-flags.flag-2.my>a:before,.weglot-flags.flag-2.my>span:before{background-position:-1248px 0 !important}.weglot-flags.flag-2.ca>a:before,.weglot-flags.flag-2.ca>span:before{background-position:-5352px 0 !important}.weglot-flags.flag-2.zh>a:before,.weglot-flags.flag-2.zh>span:before{background-position:-2592px 0 !important}.weglot-flags.flag-2.tw>a:before,.weglot-flags.flag-2.tw>span:before{background-position:-3408px 0 !important}.weglot-flags.flag-2.km>a:before,.weglot-flags.flag-2.km>span:before{background-position:-5160px 0 !important}.weglot-flags.flag-2.ny>a:before,.weglot-flags.flag-2.ny>span:before{background-position:-1392px 0 !important}.weglot-flags.flag-2.co>a:before,.weglot-flags.flag-2.co>span:before{background-position:-2304px 0 !important}.weglot-flags.flag-2.hr>a:before,.weglot-flags.flag-2.hr>span:before{background-position:-4416px 0 !important}.weglot-flags.flag-2.cs>a:before,.weglot-flags.flag-2.cs>span:before{background-position:-2472px 0 !important}.weglot-flags.flag-2.da>a:before,.weglot-flags.flag-2.da>span:before{background-position:-2448px 0 !important}.weglot-flags.flag-2.nl>a:before,.weglot-flags.flag-2.nl>span:before{background-position:-1296px 0 !important}.weglot-flags.flag-2.en>a:before,.weglot-flags.flag-2.en>span:before{background-position:-312px 0 !important}.weglot-flags.flag-2.eo>a:before,.weglot-flags.flag-2.eo>span:before{background-position:-312px 0 !important}.weglot-flags.flag-2.et>a:before,.weglot-flags.flag-2.et>span:before{background-position:-2424px 0 !important}.weglot-flags.flag-2.fj>a:before,.weglot-flags.flag-2.fj>span:before{background-position:-576px 0 !important}.weglot-flags.flag-2.fi>a:before,.weglot-flags.flag-2.fi>span:before{background-position:-2328px 0 !important}.weglot-flags.flag-2.fr>a:before,.weglot-flags.flag-2.fr>span:before{background-position:-2304px 0 !important}.weglot-flags.flag-2.gl>a:before,.weglot-flags.flag-2.gl>span:before{background-position:-5400px 0 !important}.weglot-flags.flag-2.ka>a:before,.weglot-flags.flag-2.ka>span:before{background-position:-3744px 0 !important}.weglot-flags.flag-2.de>a:before,.weglot-flags.flag-2.de>span:before{background-position:-2256px 0 !important}.weglot-flags.flag-2.el>a:before,.weglot-flags.flag-2.el>span:before{background-position:-2208px 0 !important}.weglot-flags.flag-2.gu>a:before,.weglot-flags.flag-2.gu>span:before{background-position:-1728px 0 !important}.weglot-flags.flag-2.ht>a:before,.weglot-flags.flag-2.ht>span:before{background-position:-3528px 0 !important}.weglot-flags.flag-2.ha>a:before,.weglot-flags.flag-2.ha>span:before{background-position:-1176px 0 !important}.weglot-flags.flag-2.he>a:before,.weglot-flags.flag-2.he>span:before{background-position:-1992px 0 !important}.weglot-flags.flag-2.hi>a:before,.weglot-flags.flag-2.hi>span:before{background-position:-1728px 0 !important}.weglot-flags.flag-2.hu>a:before,.weglot-flags.flag-2.hu>span:before{background-position:-2088px 0 !important}.weglot-flags.flag-2.is>a:before,.weglot-flags.flag-2.is>span:before{background-position:-2064px 0 !important}.weglot-flags.flag-2.ig>a:before,.weglot-flags.flag-2.ig>span:before{background-position:-1103px 0 !important}.weglot-flags.flag-2.id>a:before,.weglot-flags.flag-2.id>span:before{background-position:-2040px 0 !important}.weglot-flags.flag-2.ga>a:before,.weglot-flags.flag-2.ga>span:before{background-position:-2016px 0 !important}.weglot-flags.flag-2.it>a:before,.weglot-flags.flag-2.it>span:before{background-position:-1968px 0 !important}.weglot-flags.flag-2.ja>a:before,.weglot-flags.flag-2.ja>span:before{background-position:-1920px 0 !important}.weglot-flags.flag-2.jv>a:before,.weglot-flags.flag-2.jv>span:before{background-position:-1536px 0 !important}.weglot-flags.flag-2.kn>a:before,.weglot-flags.flag-2.kn>span:before{background-position:-1728px 0 !important}.weglot-flags.flag-2.kk>a:before,.weglot-flags.flag-2.kk>span:before{background-position:-1704px 0 !important}.weglot-flags.flag-2.ko>a:before,.weglot-flags.flag-2.ko>span:before{background-position:-1848px 0 !important}.weglot-flags.flag-2.ku>a:before,.weglot-flags.flag-2.ku>span:before{background-position:-2088px 0 !important}.weglot-flags.flag-2.ky>a:before,.weglot-flags.flag-2.ky>span:before{background-position:-1800px 0 !important}.weglot-flags.flag-2.lo>a:before,.weglot-flags.flag-2.lo>span:before{background-position:-1776px 0 !important}.weglot-flags.flag-2.la>a:before,.weglot-flags.flag-2.la>span:before{background-position:-1968px 0 !important}.weglot-flags.flag-2.lv>a:before,.weglot-flags.flag-2.lv>span:before{background-position:-1752px 0 !important}.weglot-flags.flag-2.lt>a:before,.weglot-flags.flag-2.lt>span:before{background-position:-1656px 0 !important}.weglot-flags.flag-2.lb>a:before,.weglot-flags.flag-2.lb>span:before{background-position:-1632px 0 !important}.weglot-flags.flag-2.mk>a:before,.weglot-flags.flag-2.mk>span:before{background-position:-1440px 0 !important}.weglot-flags.flag-2.mg>a:before,.weglot-flags.flag-2.mg>span:before{background-position:-1560px 0 !important}.weglot-flags.flag-2.ms>a:before,.weglot-flags.flag-2.ms>span:before{background-position:-1536px 0 !important}.weglot-flags.flag-2.ml>a:before,.weglot-flags.flag-2.ml>span:before{background-position:-1728px 0 !important}.weglot-flags.flag-2.mt>a:before,.weglot-flags.flag-2.mt>span:before{background-position:-1200px 0 !important}.weglot-flags.flag-2.mi>a:before,.weglot-flags.flag-2.mi>span:before{background-position:-1224px 0 !important}.weglot-flags.flag-2.mr>a:before,.weglot-flags.flag-2.mr>span:before{background-position:-1728px 0 !important}.weglot-flags.flag-2.mn>a:before,.weglot-flags.flag-2.mn>span:before{background-position:-4800px 0 !important}.weglot-flags.flag-2.ne>a:before,.weglot-flags.flag-2.ne>span:before{background-position:-1320px 0 !important}.weglot-flags.flag-2.no>a:before,.weglot-flags.flag-2.no>span:before{background-position:-4776px 0 !important}.weglot-flags.flag-2.ps>a:before,.weglot-flags.flag-2.ps>span:before{background-position:-4008px 0 !important}.weglot-flags.flag-2.fa>a:before,.weglot-flags.flag-2.fa>span:before{background-position:-5088px 0 !important}.weglot-flags.flag-2.pl>a:before,.weglot-flags.flag-2.pl>span:before{background-position:-984px 0 !important}.weglot-flags.flag-2.pt>a:before,.weglot-flags.flag-2.pt>span:before{background-position:-528px 0 !important}.weglot-flags.flag-2.pa>a:before,.weglot-flags.flag-2.pa>span:before{background-position:-1728px 0 !important}.weglot-flags.flag-2.ro>a:before,.weglot-flags.flag-2.ro>span:before{background-position:-960px 0 !important}.weglot-flags.flag-2.ru>a:before,.weglot-flags.flag-2.ru>span:before{background-position:-936px 0 !important}.weglot-flags.flag-2.sm>a:before,.weglot-flags.flag-2.sm>span:before{background-position:-3408px 0 !important}.weglot-flags.flag-2.gd>a:before,.weglot-flags.flag-2.gd>span:before{background-position:-4872px 0 !important}.weglot-flags.flag-2.sr>a:before,.weglot-flags.flag-2.sr>span:before{background-position:-3120px 0 !important}.weglot-flags.flag-2.sn>a:before,.weglot-flags.flag-2.sn>span:before{background-position:-72px 0 !important}.weglot-flags.flag-2.sd>a:before,.weglot-flags.flag-2.sd>span:before{background-position:-1128px 0 !important}.weglot-flags.flag-2.si>a:before,.weglot-flags.flag-2.si>span:before{background-position:-480px 0 !important}.weglot-flags.flag-2.sk>a:before,.weglot-flags.flag-2.sk>span:before{background-position:-4152px 0 !important}.weglot-flags.flag-2.sl>a:before,.weglot-flags.flag-2.sl>span:before{background-position:-696px 0 !important}.weglot-flags.flag-2.so>a:before,.weglot-flags.flag-2.so>span:before{background-position:-3336px 0 !important}.weglot-flags.flag-2.st>a:before,.weglot-flags.flag-2.st>span:before{background-position:-3552px 0 !important}.weglot-flags.flag-2.es>a:before,.weglot-flags.flag-2.es>span:before{background-position:-96px 0 !important}.weglot-flags.flag-2.su>a:before,.weglot-flags.flag-2.su>span:before{background-position:-3312px 0 !important}.weglot-flags.flag-2.sw>a:before,.weglot-flags.flag-2.sw>span:before{background-position:-1872px 0 !important}.weglot-flags.flag-2.sv>a:before,.weglot-flags.flag-2.sv>span:before{background-position:-552px 0 !important}.weglot-flags.flag-2.tl>a:before,.weglot-flags.flag-2.tl>span:before{background-position:-1008px 0 !important}.weglot-flags.flag-2.ty>a:before,.weglot-flags.flag-2.ty>span:before{background-position:-4512px 0 !important}.weglot-flags.flag-2.tg>a:before,.weglot-flags.flag-2.tg>span:before{background-position:-264px 0 !important}.weglot-flags.flag-2.ta>a:before,.weglot-flags.flag-2.ta>span:before{background-position:-1728px 0 !important}.weglot-flags.flag-2.tt>a:before,.weglot-flags.flag-2.tt>span:before{background-position:-936px 0 !important}.weglot-flags.flag-2.te>a:before,.weglot-flags.flag-2.te>span:before{background-position:-1728px 0 !important}.weglot-flags.flag-2.th>a:before,.weglot-flags.flag-2.th>span:before{background-position:-456px 0 !important}.weglot-flags.flag-2.to>a:before,.weglot-flags.flag-2.to>span:before{background-position:-3264px 0 !important}.weglot-flags.flag-2.tr>a:before,.weglot-flags.flag-2.tr>span:before{background-position:-360px 0 !important}.weglot-flags.flag-2.uk>a:before,.weglot-flags.flag-2.uk>span:before{background-position:-288px 0 !important}.weglot-flags.flag-2.ur>a:before,.weglot-flags.flag-2.ur>span:before{background-position:-1128px 0 !important}.weglot-flags.flag-2.uz>a:before,.weglot-flags.flag-2.uz>span:before{background-position:-240px 0 !important}.weglot-flags.flag-2.vi>a:before,.weglot-flags.flag-2.vi>span:before{background-position:-144px 0 !important}.weglot-flags.flag-2.cy>a:before,.weglot-flags.flag-2.cy>span:before{background-position:-4848px 0 !important}.weglot-flags.flag-2.fy>a:before,.weglot-flags.flag-2.fy>span:before{background-position:-1296px 0 !important}.weglot-flags.flag-2.xh>a:before,.weglot-flags.flag-2.xh>span:before{background-position:-4968px 0 !important}.weglot-flags.flag-2.yi>a:before,.weglot-flags.flag-2.yi>span:before{background-position:-1992px 0 !important}.weglot-flags.flag-2.yo>a:before,.weglot-flags.flag-2.yo>span:before{background-position:-1103px 0 !important}.weglot-flags.flag-2.zu>a:before,.weglot-flags.flag-2.zu>span:before{background-position:-4968px 0 !important}.weglot-flags.flag-3.hw>a:before,.weglot-flags.flag-3.hw>span:before{background-position:-2711px 0 !important}.weglot-flags.flag-3.fl>a:before,.weglot-flags.flag-3.fl>span:before{background-position:-5232px 0 !important}.weglot-flags.flag-3.af>a:before,.weglot-flags.flag-3.af>span:before{background-position:-5496px 0 !important}.weglot-flags.flag-3.sq>a:before,.weglot-flags.flag-3.sq>span:before{background-position:-4776px 0 !important}.weglot-flags.flag-3.am>a:before,.weglot-flags.flag-3.am>span:before{background-position:-192px 0 !important}.weglot-flags.flag-3.ar>a:before,.weglot-flags.flag-3.ar>span:before{background-position:-3336px 0 !important}.weglot-flags.flag-3.hy>a:before,.weglot-flags.flag-3.hy>span:before{background-position:-4632px 0 !important}.weglot-flags.flag-3.az>a:before,.weglot-flags.flag-3.az>span:before{background-position:-4536px 0 !important}.weglot-flags.flag-3.ba>a:before,.weglot-flags.flag-3.ba>span:before{background-position:-2664px 0 !important}.weglot-flags.flag-3.eu>a:before,.weglot-flags.flag-3.eu>span:before{background-position:-5808px 0 !important}.weglot-flags.flag-3.be>a:before,.weglot-flags.flag-3.be>span:before{background-position:-144px 0 !important}.weglot-flags.flag-3.bn>a:before,.weglot-flags.flag-3.bn>span:before{background-position:-4488px 0 !important}.weglot-flags.flag-3.bs>a:before,.weglot-flags.flag-3.bs>span:before{background-position:-4392px 0 !important}.weglot-flags.flag-3.bg>a:before,.weglot-flags.flag-3.bg>span:before{background-position:-4296px 0 !important}.weglot-flags.flag-3.br>a:before,.weglot-flags.flag-3.br>span:before{background-position:-4344px 0 !important}.weglot-flags.flag-3.my>a:before,.weglot-flags.flag-3.my>span:before{background-position:-3769px 0 !important}.weglot-flags.flag-3.ca>a:before,.weglot-flags.flag-3.ca>span:before{background-position:-5784px 0 !important}.weglot-flags.flag-3.zh>a:before,.weglot-flags.flag-3.zh>span:before{background-position:-3240px 0 !important}.weglot-flags.flag-3.tw>a:before,.weglot-flags.flag-3.tw>span:before{background-position:-4008px 0 !important}.weglot-flags.flag-3.km>a:before,.weglot-flags.flag-3.km>span:before{background-position:-4201px 0 !important}.weglot-flags.flag-3.ny>a:before,.weglot-flags.flag-3.ny>span:before{background-position:-384px 0 !important}.weglot-flags.flag-3.co>a:before,.weglot-flags.flag-3.co>span:before{background-position:-2760px 0 !important}.weglot-flags.flag-3.hr>a:before,.weglot-flags.flag-3.hr>span:before{background-position:-3048px 0 !important}.weglot-flags.flag-3.cs>a:before,.weglot-flags.flag-3.cs>span:before{background-position:-5280px 0 !important}.weglot-flags.flag-3.da>a:before,.weglot-flags.flag-3.da>span:before{background-position:-3024px 0 !important}.weglot-flags.flag-3.nl>a:before,.weglot-flags.flag-3.nl>span:before{background-position:-3360px 0 !important}.weglot-flags.flag-3.en>a:before,.weglot-flags.flag-3.en>span:before{background-position:-2520px 0 !important}.weglot-flags.flag-3.eo>a:before,.weglot-flags.flag-3.eo>span:before{background-position:-2520px 0 !important}.weglot-flags.flag-3.et>a:before,.weglot-flags.flag-3.et>span:before{background-position:-2856px 0 !important}.weglot-flags.flag-3.fj>a:before,.weglot-flags.flag-3.fj>span:before{background-position:-0px 0 !important}.weglot-flags.flag-3.fi>a:before,.weglot-flags.flag-3.fi>span:before{background-position:-2784px 0 !important}.weglot-flags.flag-3.fr>a:before,.weglot-flags.flag-3.fr>span:before{background-position:-2760px 0 !important}.weglot-flags.flag-3.gl>a:before,.weglot-flags.flag-3.gl>span:before{background-position:-5832px 0 !important}.weglot-flags.flag-3.ka>a:before,.weglot-flags.flag-3.ka>span:before{background-position:-1536px 0 !important}.weglot-flags.flag-3.de>a:before,.weglot-flags.flag-3.de>span:before{background-position:-1488px 0 !important}.weglot-flags.flag-3.el>a:before,.weglot-flags.flag-3.el>span:before{background-position:-1416px 0 !important}.weglot-flags.flag-3.gu>a:before,.weglot-flags.flag-3.gu>span:before{background-position:-2304px 0 !important}.weglot-flags.flag-3.ht>a:before,.weglot-flags.flag-3.ht>span:before{background-position:-5160px 0 !important}.weglot-flags.flag-3.ha>a:before,.weglot-flags.flag-3.ha>span:before{background-position:-361px 0 !important}.weglot-flags.flag-3.he>a:before,.weglot-flags.flag-3.he>span:before{background-position:-1608px 0 !important}.weglot-flags.flag-3.hi>a:before,.weglot-flags.flag-3.hi>span:before{background-position:-2304px 0 !important}.weglot-flags.flag-3.hu>a:before,.weglot-flags.flag-3.hu>span:before{background-position:-1920px 0 !important}.weglot-flags.flag-3.is>a:before,.weglot-flags.flag-3.is>span:before{background-position:-840px 0 !important}.weglot-flags.flag-3.ig>a:before,.weglot-flags.flag-3.ig>span:before{background-position:-3457px 0 !important}.weglot-flags.flag-3.id>a:before,.weglot-flags.flag-3.id>span:before{background-position:-4992px 0 !important}.weglot-flags.flag-3.ga>a:before,.weglot-flags.flag-3.ga>span:before{background-position:-2016px 0 !important}.weglot-flags.flag-3.it>a:before,.weglot-flags.flag-3.it>span:before{background-position:-336px 0 !important}.weglot-flags.flag-3.ja>a:before,.weglot-flags.flag-3.ja>span:before{background-position:-2448px 0 !important}.weglot-flags.flag-3.jv>a:before,.weglot-flags.flag-3.jv>span:before{background-position:-864px 0 !important}.weglot-flags.flag-3.kn>a:before,.weglot-flags.flag-3.kn>span:before{background-position:-2304px 0 !important}.weglot-flags.flag-3.kk>a:before,.weglot-flags.flag-3.kk>span:before{background-position:-3912px 0 !important}.weglot-flags.flag-3.ko>a:before,.weglot-flags.flag-3.ko>span:before{background-position:-2256px 0 !important}.weglot-flags.flag-3.ku>a:before,.weglot-flags.flag-3.ku>span:before{background-position:-1920px 0 !important}.weglot-flags.flag-3.ky>a:before,.weglot-flags.flag-3.ky>span:before{background-position:-744px 0 !important}.weglot-flags.flag-3.lo>a:before,.weglot-flags.flag-3.lo>span:before{background-position:-3816px 0 !important}.weglot-flags.flag-3.la>a:before,.weglot-flags.flag-3.la>span:before{background-position:-336px 0 !important}.weglot-flags.flag-3.lv>a:before,.weglot-flags.flag-3.lv>span:before{background-position:-216px 0 !important}.weglot-flags.flag-3.lt>a:before,.weglot-flags.flag-3.lt>span:before{background-position:-1776px 0 !important}.weglot-flags.flag-3.lb>a:before,.weglot-flags.flag-3.lb>span:before{background-position:-1945px 0 !important}.weglot-flags.flag-3.mk>a:before,.weglot-flags.flag-3.mk>span:before{background-position:-2208px 0 !important}.weglot-flags.flag-3.mg>a:before,.weglot-flags.flag-3.mg>span:before{background-position:-5064px 0 !important}.weglot-flags.flag-3.ms>a:before,.weglot-flags.flag-3.ms>span:before{background-position:-864px 0 !important}.weglot-flags.flag-3.ml>a:before,.weglot-flags.flag-3.ml>span:before{background-position:-2304px 0 !important}.weglot-flags.flag-3.mt>a:before,.weglot-flags.flag-3.mt>span:before{background-position:-4920px 0 !important}.weglot-flags.flag-3.mi>a:before,.weglot-flags.flag-3.mi>span:before{background-position:-2113px 0 !important}.weglot-flags.flag-3.mr>a:before,.weglot-flags.flag-3.mr>span:before{background-position:-2304px 0 !important}.weglot-flags.flag-3.mn>a:before,.weglot-flags.flag-3.mn>span:before{background-position:-24px 0 !important}.weglot-flags.flag-3.ne>a:before,.weglot-flags.flag-3.ne>span:before{background-position:-5642px 0 !important}.weglot-flags.flag-3.no>a:before,.weglot-flags.flag-3.no>span:before{background-position:-984px 0 !important}.weglot-flags.flag-3.ps>a:before,.weglot-flags.flag-3.ps>span:before{background-position:-4753px 0 !important}.weglot-flags.flag-3.fa>a:before,.weglot-flags.flag-3.fa>span:before{background-position:-816px 0 !important}.weglot-flags.flag-3.pl>a:before,.weglot-flags.flag-3.pl>span:before{background-position:-4944px 0 !important}.weglot-flags.flag-3.pt>a:before,.weglot-flags.flag-3.pt>span:before{background-position:-3504px 0 !important}.weglot-flags.flag-3.pa>a:before,.weglot-flags.flag-3.pa>span:before{background-position:-2304px 0 !important}.weglot-flags.flag-3.ro>a:before,.weglot-flags.flag-3.ro>span:before{background-position:-3744px 0 !important}.weglot-flags.flag-3.ru>a:before,.weglot-flags.flag-3.ru>span:before{background-position:-2664px 0 !important}.weglot-flags.flag-3.sm>a:before,.weglot-flags.flag-3.sm>span:before{background-position:-1248px 0 !important}.weglot-flags.flag-3.gd>a:before,.weglot-flags.flag-3.gd>span:before{background-position:-3841px 0 !important}.weglot-flags.flag-3.sr>a:before,.weglot-flags.flag-3.sr>span:before{background-position:-3312px 0 !important}.weglot-flags.flag-3.sn>a:before,.weglot-flags.flag-3.sn>span:before{background-position:-5521px 0 !important}.weglot-flags.flag-3.sd>a:before,.weglot-flags.flag-3.sd>span:before{background-position:-1993px 0 !important}.weglot-flags.flag-3.si>a:before,.weglot-flags.flag-3.si>span:before{background-position:-2833px 0 !important}.weglot-flags.flag-3.sk>a:before,.weglot-flags.flag-3.sk>span:before{background-position:-552px 0 !important}.weglot-flags.flag-3.sl>a:before,.weglot-flags.flag-3.sl>span:before{background-position:-936px 0 !important}.weglot-flags.flag-3.so>a:before,.weglot-flags.flag-3.so>span:before{background-position:-4032px 0 !important}.weglot-flags.flag-3.st>a:before,.weglot-flags.flag-3.st>span:before{background-position:-3961px 0 !important}.weglot-flags.flag-3.es>a:before,.weglot-flags.flag-3.es>span:before{background-position:-3576px 0 !important}.weglot-flags.flag-3.su>a:before,.weglot-flags.flag-3.su>span:before{background-position:-3985px 0 !important}.weglot-flags.flag-3.sw>a:before,.weglot-flags.flag-3.sw>span:before{background-position:-912px 0 !important}.weglot-flags.flag-3.sv>a:before,.weglot-flags.flag-3.sv>span:before{background-position:-264px 0 !important}.weglot-flags.flag-3.tl>a:before,.weglot-flags.flag-3.tl>span:before{background-position:-5232px 0 !important}.weglot-flags.flag-3.ty>a:before,.weglot-flags.flag-3.ty>span:before{background-position:-1512px 0 !important}.weglot-flags.flag-3.tg>a:before,.weglot-flags.flag-3.tg>span:before{background-position:-3720px 0 !important}.weglot-flags.flag-3.ta>a:before,.weglot-flags.flag-3.ta>span:before{background-position:-2304px 0 !important}.weglot-flags.flag-3.tt>a:before,.weglot-flags.flag-3.tt>span:before{background-position:-2664px 0 !important}.weglot-flags.flag-3.te>a:before,.weglot-flags.flag-3.te>span:before{background-position:-2304px 0 !important}.weglot-flags.flag-3.th>a:before,.weglot-flags.flag-3.th>span:before{background-position:-4848px 0 !important}.weglot-flags.flag-3.to>a:before,.weglot-flags.flag-3.to>span:before{background-position:-1680px 0 !important}.weglot-flags.flag-3.tr>a:before,.weglot-flags.flag-3.tr>span:before{background-position:-432px 0 !important}.weglot-flags.flag-3.uk>a:before,.weglot-flags.flag-3.uk>span:before{background-position:-5736px 0 !important}.weglot-flags.flag-3.ur>a:before,.weglot-flags.flag-3.ur>span:before{background-position:-1992px 0 !important}.weglot-flags.flag-3.uz>a:before,.weglot-flags.flag-3.uz>span:before{background-position:-2160px 0 !important}.weglot-flags.flag-3.vi>a:before,.weglot-flags.flag-3.vi>span:before{background-position:-3384px 0 !important}.weglot-flags.flag-3.cy>a:before,.weglot-flags.flag-3.cy>span:before{background-position:-5040px 0 !important}.weglot-flags.flag-3.fy>a:before,.weglot-flags.flag-3.fy>span:before{background-position:-3360px 0 !important}.weglot-flags.flag-3.xh>a:before,.weglot-flags.flag-3.xh>span:before{background-position:-5496px 0 !important}.weglot-flags.flag-3.yi>a:before,.weglot-flags.flag-3.yi>span:before{background-position:-1608px 0 !important}.weglot-flags.flag-3.yo>a:before,.weglot-flags.flag-3.yo>span:before{background-position:-3457px 0 !important}.weglot-flags.flag-3.zu>a:before,.weglot-flags.flag-3.zu>span:before{background-position:-5496px 0 !important}body div[id^="mega-menu-wrap"] #mega-menu-primary li.mega-menu-item.weglot-flags a.mega-menu-link:before{background-image:url("../images/rect_mate.png") !important;background-size:auto 20px !important;border-radius:0px !important;width:30px !important;height:20px !important;content:"";vertical-align:middle;margin-right:10px;display:inline-block;overflow:hidden}body div[id^="mega-menu-wrap"] #mega-menu-primary li.mega-menu-item.weglot-flags.flag-1 .mega-menu-link:before{background-image:url("../images/rect_bright.png") !important}body div[id^="mega-menu-wrap"] #mega-menu-primary li.mega-menu-item.weglot-flags.flag-2 .mega-menu-link:before{background-image:url("../images/square_flag.png") !important;width:24px !important;height:24px !important;background-size:auto 24px !important}body div[id^="mega-menu-wrap"] #mega-menu-primary li.mega-menu-item.weglot-flags.flag-3 .mega-menu-link:before{background-image:url("../images/circular_flag.png") !important;width:24px !important;height:24px !important;background-size:auto 24px !important}#wp-admin-bar-weglot>.ab-item{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZyBmaWxsPSIjYTBhNWFhIj48cGF0aCBkPSJNMjEuNzM5IDkyLjU2NWw1MS44MjggMTI5LjczMiAyMy42Ni02MC4yNzkgMjQuMTQ0IDYwLjI3OUwxNzMuMiA5Mi41NjVoLTI4LjAwN2wtMjMuODIyIDU4Ljc1LTIzLjkwMi01OC43NS0yMy45MDIgNTguNzUtMjMuOTAyLTU4Ljc1SDIxLjczOXoiLz48cGF0aCBkPSJNMjEwLjAwNiA5Mi43MWMtMTcuODY2IDAtMzMuMTU3IDYuMzU4LTQ1Ljg3MyAxOS4wNzQtMTIuNzE1IDEyLjcxNi0xOC45OTMgMjguMDA2LTE4Ljk5MyA0NS43OTIgMCAxNy44NjcgNi4yNzggMzMuMTU4IDE4Ljk5MyA0NS44NzMgMTIuNzE2IDEyLjcxNiAyOC4wMDcgMTguOTkzIDQ1Ljg3MyAxOC45OTMgMTcuNzg2IDAgMzMuMDc3LTYuMjc3IDQ1Ljc5My0xOC45OTMgMTIuNzE1LTEyLjcxNSAxOS4wNzMtMjguMDA2IDE5LjA3My00NS44NzMgMC00LjUwNy0uNDgzLTguODUyLTEuMjg4LTEyLjk1N2gtNjMuNTc4djI1LjkxNGgzNi42OTljLTIuNzM3IDcuNTY1LTcuNDg1IDEzLjg0My0xNC4wODQgMTguNjcxLTYuNjggNC44My0xNC4yNDUgNy4yNDQtMjIuNjE1IDcuMjQ0LTEwLjc4NCAwLTE5Ljk1OC0zLjc4My0yNy41MjMtMTEuMzQ4LTcuNTY2LTcuNTY1LTExLjM0OC0xNi43NC0xMS4zNDgtMjcuNTI0IDAtMTAuNjIzIDMuNzgyLTE5Ljc5OCAxMS4zNDgtMjcuNDQzIDcuNTY1LTcuNjQ1IDE2Ljc0LTExLjUwOCAyNy41MjMtMTEuNTA4IDEwLjYyMyAwIDE5Ljc5OCAzLjg2MyAyNy41MjQgMTEuNDI4bDE4LjM1LTE4LjM1YTY3Ljk2MyA2Ny45NjMgMCAwMC0yMC43NjQtMTMuODQyYy03Ljg4Ny0zLjM4LTE2LjI1Ny01LjE1LTI1LjExLTUuMTV6Ii8+PC9nPjwvc3ZnPg==") !important;-webkit-background-size:22px auto !important;background-size:22px auto !important;background-repeat:no-repeat !important;background-position:4px 5px !important;padding-left:30px !important}li.weglot-hide,.weglot-hide{display:none !important}.country-selector{z-index:9999;text-align:left;position:relative;display:inline-block;width:auto}.country-selector a{padding:0 10px;outline:none;text-decoration:none;float:none !important;white-space:nowrap;font-weight:normal;cursor:pointer;color:black;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.country-selector a:focus{outline:none}.country-selector ul{padding:0px;z-index:1010;list-style:none;margin:0}.country-selector li{margin:0px;padding:0px}.country-selector.weglot-dropdown{background-color:white}.country-selector.weglot-dropdown a,.country-selector.weglot-dropdown span{display:block;height:37px;line-height:36px;font-size:13px;padding:0 10px;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box;font-weight:normal}.country-selector.weglot-dropdown a:hover,.country-selector.weglot-dropdown span:hover{cursor:pointer}.country-selector.weglot-dropdown .wgcurrent{border:1px solid #e0e0e0;list-style:none;display:block;margin:0}.country-selector.weglot-dropdown .wgcurrent a,.country-selector.weglot-dropdown .wgcurrent span{padding-right:60px}.country-selector.weglot-dropdown .wgcurrent:after{display:inline-block;position:absolute;top:17px;right:8px;width:13px;height:7px;-ms-interpolation-mode:nearest-neighbor;image-rendering:-webkit-optimize-contrast;image-rendering:-moz-crisp-edges;image-rendering:-o-pixelated;image-rendering:pixelated;background:url("../images/wgarrowdown.png") no-repeat;content:"";-webkit-transition:all 200ms;-o-transition:all 200ms;transition:all 200ms;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}.country-selector.weglot-dropdown ul{position:absolute;min-width:100%;border:1px solid #ebeef0;background:white;left:0;top:initial;-webkit-box-sizing:border-box;box-sizing:border-box;display:none;padding:0}.country-selector.weglot-dropdown input:checked ~ ul{display:block}.country-selector.weglot-dropdown input:checked ~ .wgcurrent:after{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}.country-selector.weglot-dropdown li{width:100%}.country-selector.weglot-dropdown.weglot-invert ul{bottom:38px}.country-selector.weglot-dropdown.weglot-invert input:checked ~ .wgcurrent:after{-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg)}.country-selector.weglot-default{position:fixed;bottom:0px;right:40px}.country-selector.weglot-inline a:hover{text-decoration:underline;color:#00a0d2}.country-selector.weglot-inline .wgcurrent a{text-decoration:underline}.country-selector.weglot-inline label{margin-bottom:0;display:inline-block;vertical-align:middle}.country-selector.weglot-inline ul{display:inline-block;vertical-align:middle}.country-selector.weglot-inline li{line-height:1 !important;display:inline-block;margin:2px 0px;vertical-align:middle}.country-selector.weglot-inline.weglot-default{bottom:5px}.country-selector input{display:none !important}.navbar .navbar-nav li.weglot-flags a.weglot-lang:before{position:static;-webkit-transform:none;-ms-transform:none;transform:none;-webkit-transition:none;-o-transition:none;transition:none}.js .main-navigation .country-selector ul{display:none}html[dir="rtl"] .weglot-flags a:before,html[dir="rtl"] .weglot-flags span:before{margin-right:0;margin-left:10px}.weglot-flags>a:before,.weglot-flags>span.wglanguage-name:before{background-image:url("../images/rect_mate.png");-webkit-background-size:auto 20px !important;background-size:auto 20px !important;border-radius:0px !important;width:30px !important;height:20px !important;content:"";vertical-align:middle;margin-right:10px;display:inline-block;overflow:hidden}.weglot-flags.flag-1>a:before,.weglot-flags.flag-1>span:before{background-image:url("../images/rect_bright.png")}.weglot-flags.flag-2>a:before,.weglot-flags.flag-2>span:before{background-image:url("../images/square_flag.png");width:24px !important;height:24px !important;-webkit-background-size:auto 24px !important;background-size:auto 24px !important}.weglot-flags.flag-3 a:before,.weglot-flags.flag-3 span:before{background-image:url("../images/circular_flag.png");width:24px !important;height:24px !important;-webkit-background-size:auto 24px !important;background-size:auto 24px !important}.weglot-flags>a span:before{background-image:none !important;display:none !important}.weglot-flags>span a:before{background-image:none !important;display:none !important}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
dist/front-amp-css.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(e){var t={};function r(n){if(t[n])return t[n].exports;var o=t[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,r),o.l=!0,o.exports}r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)r.d(n,o,function(t){return e[t]}.bind(null,o));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="/dist/",r(r.s=
|
1 |
+
!function(e){var t={};function r(n){if(t[n])return t[n].exports;var o=t[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,r),o.l=!0,o.exports}r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)r.d(n,o,function(t){return e[t]}.bind(null,o));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="/dist/",r(r.s=13)}({13:function(e,t){}});
|
dist/front-css.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(e){var t={};function r(n){if(t[n])return t[n].exports;var o=t[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,r),o.l=!0,o.exports}r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)r.d(n,o,function(t){return e[t]}.bind(null,o));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="/dist/",r(r.s=
|
1 |
+
!function(e){var t={};function r(n){if(t[n])return t[n].exports;var o=t[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,r),o.l=!0,o.exports}r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)r.d(n,o,function(t){return e[t]}.bind(null,o));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="/dist/",r(r.s=5)}({5:function(e,t){}});
|
dist/front-js.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(e){var t={};function o(n){if(t[n])return t[n].exports;var r=t[n]={i:n,l:!1,exports:{}};return e[n].call(r.exports,r,r.exports,o),r.l=!0,r.exports}o.m=e,o.c=t,o.d=function(e,t,n){o.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(e,t){if(1&t&&(e=o(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(o.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)o.d(n,r,function(t){return e[t]}.bind(null,r));return n},o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,"a",t),t},o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o.p="/dist/",o(o.s=
|
1 |
+
!function(e){var t={};function o(n){if(t[n])return t[n].exports;var r=t[n]={i:n,l:!1,exports:{}};return e[n].call(r.exports,r,r.exports,o),r.l=!0,r.exports}o.m=e,o.c=t,o.d=function(e,t,n){o.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(e,t){if(1&t&&(e=o(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(o.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)o.d(n,r,function(t){return e[t]}.bind(null,r));return n},o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,"a",t),t},o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o.p="/dist/",o(o.s=0)}([function(e,t){document.addEventListener("DOMContentLoaded",(function(e){const t=document.querySelector(".country-selector");if(!t)return;const o=function(e){let t=0,o=0;do{t+=e.offsetTop||0,o+=e.offsetLeft||0,e=e.offsetParent}while(e);return{top:t,left:o}}(t).top,n=document.body,r=document.documentElement,u=Math.max(n.scrollHeight,n.offsetHeight,r.clientHeight,r.scrollHeight,r.offsetHeight),i=window.getComputedStyle(t).getPropertyValue("position");window.getComputedStyle(t).getPropertyValue("bottom"),window.getComputedStyle(t).getPropertyValue("top");return("fixed"!==i&&o>u/2||"fixed"===i&&o>100)&&(t.className+=" weglot-invert"),!1}))}]);
|
dist/nav-js.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(e){var t={};function n(i){if(t[i])return t[i].exports;var r=t[i]={i:i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,n),r.l=!0,r.exports}n.m=e,n.c=t,n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)n.d(i,r,function(t){return e[t]}.bind(null,r));return i},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/dist/",n(n.s=
|
1 |
+
!function(e){var t={};function n(i){if(t[i])return t[i].exports;var r=t[i]={i:i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,n),r.l=!0,r.exports}n.m=e,n.c=t,n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)n.d(i,r,function(t){return e[t]}.bind(null,r));return i},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/dist/",n(n.s=3)}({3:function(e,t){jQuery(document).ready((function(e){e("#update-nav-menu").bind("click",(function(t){t.target&&t.target.className&&-1!=t.target.className.indexOf("item-edit")&&e("input[value='#weglot_switcher'][type=text]").parents(".menu-item-settings").each((function(){const t=e(this).attr("id").substring(19);e(this).children("p:not( .field-move )").remove(),e(this).append(e("<input>").attr({type:"hidden",id:"edit-menu-item-title-"+t,name:"menu-item-title["+t+"]",value:weglot_data.title})),e(this).append(e("<input>").attr({type:"hidden",id:"edit-menu-item-url-"+t,name:"menu-item-url["+t+"]",value:"#weglot_switcher"})),e(this).append(e("<input>").attr({type:"hidden",id:"edit-menu-item-weglot-detect-"+t,name:"menu-item-weglot-detect["+t+"]",value:1})),e.each(weglot_data.list_options,(n,i)=>{const r=e("<p>").attr("class","description"),o=e("<label>").attr("for",`edit-menu-item-${i.key}-${t}`).text(" "+i.title);e(this).prepend(r),r.append(o);const u=e("<input>").attr({type:"checkbox",id:`edit-menu-item-${i.key}-${t}`,name:`menu-item-weglot-${i.key}[${t}]`,value:1});weglot_data.options&&weglot_data.options["menu-item-"+t]&&1===weglot_data.options["menu-item-"+t][i.key]&&u.prop("checked",!0),o.prepend(u)})}))}))}))}});
|
languages/weglot-de_DE.mo
CHANGED
File without changes
|
languages/weglot-de_DE.po
CHANGED
File without changes
|
languages/weglot-en_GB.mo
CHANGED
File without changes
|
languages/weglot-en_GB.po
CHANGED
File without changes
|
languages/weglot-es_ES.mo
CHANGED
File without changes
|
languages/weglot-es_ES.po
CHANGED
File without changes
|
languages/weglot-fr_FR.mo
CHANGED
File without changes
|
languages/weglot-fr_FR.po
CHANGED
File without changes
|
languages/weglot-it_IT.mo
CHANGED
File without changes
|
languages/weglot-it_IT.po
CHANGED
File without changes
|
languages/weglot-nl_NL.mo
CHANGED
File without changes
|
languages/weglot-nl_NL.po
CHANGED
File without changes
|
languages/weglot-pt_BR.mo
CHANGED
File without changes
|
languages/weglot-pt_BR.po
CHANGED
File without changes
|
languages/weglot-ru_RU.mo
CHANGED
File without changes
|
languages/weglot-ru_RU.po
CHANGED
File without changes
|
languages/weglot.pot
CHANGED
File without changes
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== WordPress Translation Plugin – Weglot Translate ===
|
2 |
-
Contributors: remyb92, gmulti, wysija, wpr0ck
|
3 |
Tags: translate, multilingual, language, translation, localization
|
4 |
Requires at least: 4.5
|
5 |
-
Tested up to: 5.
|
6 |
-
Requires PHP: 5.
|
7 |
-
Stable tag: 3.3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -183,6 +183,11 @@ See changelog for upgrade changes.
|
|
183 |
|
184 |
== Changelog ==
|
185 |
|
|
|
|
|
|
|
|
|
|
|
186 |
= 3.3.1 (01/02/2021) =
|
187 |
* Small fixes following major release
|
188 |
|
1 |
=== WordPress Translation Plugin – Weglot Translate ===
|
2 |
+
Contributors: remyb92, gmulti, wysija, wpr0ck, glx77
|
3 |
Tags: translate, multilingual, language, translation, localization
|
4 |
Requires at least: 4.5
|
5 |
+
Tested up to: 5.6
|
6 |
+
Requires PHP: 5.6
|
7 |
+
Stable tag: 3.3.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
183 |
|
184 |
== Changelog ==
|
185 |
|
186 |
+
= 3.3.2 (15/02/2021) =
|
187 |
+
* Update settings dropdown
|
188 |
+
* Fix rare bug when root equal slug page
|
189 |
+
|
190 |
+
|
191 |
= 3.3.1 (01/02/2021) =
|
192 |
* Small fixes following major release
|
193 |
|
src/actions/admin/class-customize-menu-weglot.php
CHANGED
@@ -59,6 +59,7 @@ class Customize_Menu_Weglot implements Hooks_Interface_Weglot {
|
|
59 |
* @return void
|
60 |
*/
|
61 |
public function custom_wp_update_nav_menu_item( $menu_id = 0, $menu_item_db_id = 0 ) {
|
|
|
62 |
if ( empty( $_POST['menu-item-url'][ $menu_item_db_id ] ) || '#weglot_switcher' !== $_POST[ 'menu-item-url' ][ $menu_item_db_id ] ) { //phpcs:ignore
|
63 |
return;
|
64 |
}
|
59 |
* @return void
|
60 |
*/
|
61 |
public function custom_wp_update_nav_menu_item( $menu_id = 0, $menu_item_db_id = 0 ) {
|
62 |
+
|
63 |
if ( empty( $_POST['menu-item-url'][ $menu_item_db_id ] ) || '#weglot_switcher' !== $_POST[ 'menu-item-url' ][ $menu_item_db_id ] ) { //phpcs:ignore
|
64 |
return;
|
65 |
}
|
src/actions/admin/class-metabox-url-translate-weglot.php
ADDED
@@ -0,0 +1,73 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace WeglotWP\Actions\Admin;
|
4 |
+
|
5 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
6 |
+
exit;
|
7 |
+
}
|
8 |
+
|
9 |
+
use WeglotWP\Models\Hooks_Interface_Weglot;
|
10 |
+
use WeglotWP\Helpers\Helper_Post_Meta_Weglot;
|
11 |
+
|
12 |
+
/**
|
13 |
+
*
|
14 |
+
* @since 2.1.0
|
15 |
+
*/
|
16 |
+
class Metabox_Url_Translate_Weglot implements Hooks_Interface_Weglot {
|
17 |
+
|
18 |
+
/**
|
19 |
+
* @since 2.1.0
|
20 |
+
*/
|
21 |
+
public function __construct() {
|
22 |
+
}
|
23 |
+
|
24 |
+
/**
|
25 |
+
* @see Hooks_Interface_Weglot
|
26 |
+
*
|
27 |
+
* @since 2.1.0
|
28 |
+
* @return void
|
29 |
+
*/
|
30 |
+
public function hooks() {
|
31 |
+
add_action( 'add_meta_boxes', array( $this, 'add_meta_boxes_url_translate' ) );
|
32 |
+
}
|
33 |
+
|
34 |
+
/**
|
35 |
+
* @since 2.1.0
|
36 |
+
* @return void
|
37 |
+
*/
|
38 |
+
public function add_meta_boxes_url_translate() {
|
39 |
+
global $post;
|
40 |
+
if ( ! $post ) {
|
41 |
+
return;
|
42 |
+
}
|
43 |
+
|
44 |
+
$post_type = get_post_type();
|
45 |
+
|
46 |
+
$exclude_post_type_metabox = apply_filters(
|
47 |
+
'weglot_url_translate_metabox_post_type_exclude',
|
48 |
+
array(
|
49 |
+
'attachment',
|
50 |
+
'shop_order',
|
51 |
+
'shop_coupon',
|
52 |
+
)
|
53 |
+
);
|
54 |
+
|
55 |
+
if ( in_array( $post_type, $exclude_post_type_metabox ) ) { //phpcs:ignore
|
56 |
+
return;
|
57 |
+
}
|
58 |
+
|
59 |
+
add_meta_box( 'weglot-url-translate', __( 'Weglot URL Translate', 'weglot' ), array( $this, 'weglot_url_translate_box' ) );
|
60 |
+
}
|
61 |
+
|
62 |
+
/**
|
63 |
+
* @since 2.1.0
|
64 |
+
* @return void
|
65 |
+
* @param mixed $post
|
66 |
+
*/
|
67 |
+
public function weglot_url_translate_box( $post ) {
|
68 |
+
if ( ! $post ) {
|
69 |
+
return;
|
70 |
+
}
|
71 |
+
echo sprintf( esc_html__( 'The translation URL feature is now available in your Weglot account (Requires Advanced plan minimum) : %1$sTranslate URL slugs%2$s.', 'weglot' ), '<a target="_blank" href="https://dashboard.weglot.com/translations/slugs/">', '</a>' );
|
72 |
+
}
|
73 |
+
}
|
src/actions/admin/class-options-weglot.php
CHANGED
@@ -70,6 +70,7 @@ class Options_Weglot implements Hooks_Interface_Weglot {
|
|
70 |
* @return void
|
71 |
*/
|
72 |
public function weglot_save_settings() {
|
|
|
73 |
$redirect_url = admin_url( 'admin.php?page=' . Helper_Pages_Weglot::SETTINGS );
|
74 |
if ( ! isset( $_GET['tab'] ) || ! isset( $_GET['_wpnonce'] ) ) { //phpcs:ignore
|
75 |
wp_redirect( $redirect_url );
|
@@ -84,6 +85,7 @@ class Options_Weglot implements Hooks_Interface_Weglot {
|
|
84 |
$tab = $_GET[ 'tab' ]; //phpcs:ignore
|
85 |
$options = $_POST[ WEGLOT_SLUG ]; //phpcs:ignore
|
86 |
$options_bdd = $this->option_services->get_options_bdd_v3();
|
|
|
87 |
switch ( $tab ) {
|
88 |
case Helper_Tabs_Admin_Weglot::SETTINGS:
|
89 |
$has_first_settings = $this->option_services->get_has_first_settings();
|
@@ -116,6 +118,21 @@ class Options_Weglot implements Hooks_Interface_Weglot {
|
|
116 |
|
117 |
update_option( sprintf( '%s-%s', WEGLOT_SLUG, 'api_key_private' ), $options['api_key_private'] );
|
118 |
update_option( sprintf( '%s-%s', WEGLOT_SLUG, 'api_key' ), $response['result']['api_key'] );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
119 |
}
|
120 |
break;
|
121 |
case Helper_Tabs_Admin_Weglot::SUPPORT:
|
70 |
* @return void
|
71 |
*/
|
72 |
public function weglot_save_settings() {
|
73 |
+
|
74 |
$redirect_url = admin_url( 'admin.php?page=' . Helper_Pages_Weglot::SETTINGS );
|
75 |
if ( ! isset( $_GET['tab'] ) || ! isset( $_GET['_wpnonce'] ) ) { //phpcs:ignore
|
76 |
wp_redirect( $redirect_url );
|
85 |
$tab = $_GET[ 'tab' ]; //phpcs:ignore
|
86 |
$options = $_POST[ WEGLOT_SLUG ]; //phpcs:ignore
|
87 |
$options_bdd = $this->option_services->get_options_bdd_v3();
|
88 |
+
|
89 |
switch ( $tab ) {
|
90 |
case Helper_Tabs_Admin_Weglot::SETTINGS:
|
91 |
$has_first_settings = $this->option_services->get_has_first_settings();
|
118 |
|
119 |
update_option( sprintf( '%s-%s', WEGLOT_SLUG, 'api_key_private' ), $options['api_key_private'] );
|
120 |
update_option( sprintf( '%s-%s', WEGLOT_SLUG, 'api_key' ), $response['result']['api_key'] );
|
121 |
+
|
122 |
+
//get menu options
|
123 |
+
$options_menu = $this->option_services->get_option( 'menu_switcher' );
|
124 |
+
if(!empty($options_menu)){
|
125 |
+
foreach ($options_menu as $key => $menu){
|
126 |
+
if($options['custom_settings']['button_style']['is_dropdown'] == true){
|
127 |
+
$options_menu[$key]['dropdown'] = 1;
|
128 |
+
}else{
|
129 |
+
$options_menu[$key]['dropdown'] = 0;
|
130 |
+
}
|
131 |
+
}
|
132 |
+
}
|
133 |
+
|
134 |
+
delete_transient( 'weglot_cache_cdn' );
|
135 |
+
$this->option_services->set_option_by_key( 'menu_switcher', $options_menu );
|
136 |
}
|
137 |
break;
|
138 |
case Helper_Tabs_Admin_Weglot::SUPPORT:
|
src/actions/front/class-translate-page-weglot.php
CHANGED
@@ -226,6 +226,12 @@ class Translate_Page_Weglot implements Hooks_Interface_Weglot {
|
|
226 |
if ( $original_language === $this->current_language ) {
|
227 |
return;
|
228 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
229 |
$_SERVER['REQUEST_URI'] = $this->request_url_services->get_weglot_url()->getPathPrefix() .
|
230 |
$this->request_url_services->get_weglot_url()->getPathAndQuery();
|
231 |
}
|
226 |
if ( $original_language === $this->current_language ) {
|
227 |
return;
|
228 |
}
|
229 |
+
|
230 |
+
//If we are not in the original language, but the URL is not available in the current language, we redirect to original
|
231 |
+
if ( ! $this->request_url_services->get_weglot_url()->getForLanguage($this->current_language) ) {
|
232 |
+
wp_redirect( $this->request_url_services->get_weglot_url()->getForLanguage($this->language_services->get_original_language()) );
|
233 |
+
}
|
234 |
+
|
235 |
$_SERVER['REQUEST_URI'] = $this->request_url_services->get_weglot_url()->getPathPrefix() .
|
236 |
$this->request_url_services->get_weglot_url()->getPathAndQuery();
|
237 |
}
|
src/helpers/class-helper-menu-options-weglot.php
CHANGED
@@ -35,10 +35,6 @@ abstract class Helper_Menu_Options_Weglot {
|
|
35 |
'key' => self::HIDE_CURRENT,
|
36 |
'title' => __( 'Hide the current language', 'weglot' ),
|
37 |
),
|
38 |
-
array(
|
39 |
-
'key' => self::DROPDOWN,
|
40 |
-
'title' => __( "Show as dropdown (By default it's a list)", 'weglot' ),
|
41 |
-
),
|
42 |
)
|
43 |
);
|
44 |
}
|
35 |
'key' => self::HIDE_CURRENT,
|
36 |
'title' => __( 'Hide the current language', 'weglot' ),
|
37 |
),
|
|
|
|
|
|
|
|
|
38 |
)
|
39 |
);
|
40 |
}
|
src/services/class-button-service-weglot.php
CHANGED
@@ -74,6 +74,7 @@ class Button_Service_Weglot {
|
|
74 |
$name = ( $this->option_services->get_option( 'is_fullname' ) ) ? $language_entry->getLocalName() : strtoupper( $language_entry->getExternalCode() );
|
75 |
} else {
|
76 |
$name = '';
|
|
|
77 |
}
|
78 |
|
79 |
return apply_filters( 'weglot_get_name_with_language_entry', $name, $language_entry );
|
@@ -124,7 +125,7 @@ class Button_Service_Weglot {
|
|
124 |
$name = $this->get_name_with_language_entry( $current_language );
|
125 |
|
126 |
$uniq_id = 'wg' . uniqid( strtotime( 'now' ) ) . wp_rand( 1, 1000 );
|
127 |
-
$button_html .= sprintf( '<input id="%s" class="weglot_choice" type="checkbox" name="menu"/><label for="%s" class="wgcurrent wg-li weglot-lang weglot-language %s" data-code-language="%s"><span>%s</span></label>', esc_attr( $uniq_id ), esc_attr( $uniq_id ), esc_attr( $flag_class . $current_language->getInternalCode() ), esc_attr( $current_language->getInternalCode() ), esc_html( $name ) );
|
128 |
|
129 |
$button_html .= '<ul>';
|
130 |
|
74 |
$name = ( $this->option_services->get_option( 'is_fullname' ) ) ? $language_entry->getLocalName() : strtoupper( $language_entry->getExternalCode() );
|
75 |
} else {
|
76 |
$name = '';
|
77 |
+
remove_filter( 'the_title', 'twenty_twenty_one_post_title' );
|
78 |
}
|
79 |
|
80 |
return apply_filters( 'weglot_get_name_with_language_entry', $name, $language_entry );
|
125 |
$name = $this->get_name_with_language_entry( $current_language );
|
126 |
|
127 |
$uniq_id = 'wg' . uniqid( strtotime( 'now' ) ) . wp_rand( 1, 1000 );
|
128 |
+
$button_html .= sprintf( '<input id="%s" class="weglot_choice" type="checkbox" name="menu"/><label for="%s" class="wgcurrent wg-li weglot-lang weglot-language %s" data-code-language="%s"><span class="wglanguage-name">%s</span></label>', esc_attr( $uniq_id ), esc_attr( $uniq_id ), esc_attr( $flag_class . $current_language->getInternalCode() ), esc_attr( $current_language->getInternalCode() ), esc_html( $name ) );
|
129 |
|
130 |
$button_html .= '<ul>';
|
131 |
|
src/services/class-option-service-weglot.php
CHANGED
@@ -632,7 +632,9 @@ class Option_Service_Weglot {
|
|
632 |
*/
|
633 |
public function set_options( $options ) {
|
634 |
$key = sprintf( '%s-%s', WEGLOT_SLUG, 'v3' );
|
|
|
635 |
update_option( $key, $options );
|
|
|
636 |
wp_cache_delete( $key );
|
637 |
|
638 |
return $this;
|
@@ -653,8 +655,11 @@ class Option_Service_Weglot {
|
|
653 |
* @return Option_Service_Weglot
|
654 |
*/
|
655 |
public function set_option_by_key( $key, $value ) {
|
|
|
656 |
$options = $this->get_options_bdd_v3();
|
|
|
657 |
$options[ $key ] = $value;
|
|
|
658 |
$this->set_options( $options );
|
659 |
return $this;
|
660 |
}
|
632 |
*/
|
633 |
public function set_options( $options ) {
|
634 |
$key = sprintf( '%s-%s', WEGLOT_SLUG, 'v3' );
|
635 |
+
|
636 |
update_option( $key, $options );
|
637 |
+
|
638 |
wp_cache_delete( $key );
|
639 |
|
640 |
return $this;
|
655 |
* @return Option_Service_Weglot
|
656 |
*/
|
657 |
public function set_option_by_key( $key, $value ) {
|
658 |
+
|
659 |
$options = $this->get_options_bdd_v3();
|
660 |
+
|
661 |
$options[ $key ] = $value;
|
662 |
+
|
663 |
$this->set_options( $options );
|
664 |
return $this;
|
665 |
}
|
src/services/class-redirect-service-weglot.php
CHANGED
@@ -112,7 +112,9 @@ class Redirect_Service_Weglot {
|
|
112 |
&& $this->language_services->get_original_language() === $this->request_url_services->get_current_language()
|
113 |
&& $this->option_services->get_option( 'autoswitch_fallback' ) !== null
|
114 |
) {
|
115 |
-
$
|
|
|
|
|
116 |
header( "Location: $url_auto_redirect", true, 302 );
|
117 |
exit();
|
118 |
}
|
112 |
&& $this->language_services->get_original_language() === $this->request_url_services->get_current_language()
|
113 |
&& $this->option_services->get_option( 'autoswitch_fallback' ) !== null
|
114 |
) {
|
115 |
+
$fallback_language = $this->language_services->get_language_from_internal( $this->option_services->get_option( 'autoswitch_fallback' ) );
|
116 |
+
$url_auto_redirect = apply_filters( 'weglot_url_auto_redirect', $this->request_url_services->get_weglot_url()->getForLanguage( $fallback_language ));
|
117 |
+
|
118 |
header( "Location: $url_auto_redirect", true, 302 );
|
119 |
exit();
|
120 |
}
|
src/services/class-request-url-service-weglot.php
CHANGED
@@ -176,7 +176,7 @@ class Request_Url_Service_Weglot {
|
|
176 |
$weglot_url = $this->create_url_object( $url );
|
177 |
}
|
178 |
|
179 |
-
if ( empty( $weglot_url->availableInLanguages() )
|
180 |
return apply_filters( 'weglot_is_eligible_url', false, $weglot_url );
|
181 |
}
|
182 |
return apply_filters( 'weglot_is_eligible_url', true, $url );
|
176 |
$weglot_url = $this->create_url_object( $url );
|
177 |
}
|
178 |
|
179 |
+
if ( empty( $weglot_url->availableInLanguages() ) ) {
|
180 |
return apply_filters( 'weglot_is_eligible_url', false, $weglot_url );
|
181 |
}
|
182 |
return apply_filters( 'weglot_is_eligible_url', true, $url );
|
src/third/yoast/class-redirect-handler-weglot.php
CHANGED
@@ -111,9 +111,7 @@ class Redirect_Handler_Weglot extends \WPSEO_Redirect_Handler {
|
|
111 |
$eligible_url .= '/';
|
112 |
}
|
113 |
|
114 |
-
|
115 |
-
$redirect_url['url'] = sprintf( '%s/%s', $code_language[0], $redirect_url['url'] );
|
116 |
-
}
|
117 |
}
|
118 |
}
|
119 |
}
|
111 |
$eligible_url .= '/';
|
112 |
}
|
113 |
|
114 |
+
$redirect_url['url'] = sprintf( '%s/%s', $code_language[0], $redirect_url['url'] );
|
|
|
|
|
115 |
}
|
116 |
}
|
117 |
}
|
vendor/autoload.php
CHANGED
@@ -4,4 +4,4 @@
|
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
-
return
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
+
return ComposerAutoloaderInit4536f09b11a80a179734040cf8a5bdaa::getLoader();
|
vendor/composer/InstalledVersions.php
CHANGED
@@ -29,7 +29,7 @@ private static $installed = array (
|
|
29 |
'aliases' =>
|
30 |
array (
|
31 |
),
|
32 |
-
'reference' => '
|
33 |
'name' => 'weglot/translate-wordpress',
|
34 |
),
|
35 |
'versions' =>
|
@@ -54,12 +54,12 @@ private static $installed = array (
|
|
54 |
),
|
55 |
'weglot/simplehtmldom' =>
|
56 |
array (
|
57 |
-
'pretty_version' => '0.
|
58 |
-
'version' => '0.
|
59 |
'aliases' =>
|
60 |
array (
|
61 |
),
|
62 |
-
'reference' => '
|
63 |
),
|
64 |
'weglot/translate-wordpress' =>
|
65 |
array (
|
@@ -68,25 +68,25 @@ private static $installed = array (
|
|
68 |
'aliases' =>
|
69 |
array (
|
70 |
),
|
71 |
-
'reference' => '
|
72 |
),
|
73 |
'weglot/translation-definitions' =>
|
74 |
array (
|
75 |
-
'pretty_version' => 'v2.3.
|
76 |
-
'version' => '2.3.
|
77 |
'aliases' =>
|
78 |
array (
|
79 |
),
|
80 |
-
'reference' => '
|
81 |
),
|
82 |
'weglot/weglot-php' =>
|
83 |
array (
|
84 |
-
'pretty_version' => '1.1.
|
85 |
-
'version' => '1.1.
|
86 |
'aliases' =>
|
87 |
array (
|
88 |
),
|
89 |
-
'reference' => '
|
90 |
),
|
91 |
),
|
92 |
);
|
29 |
'aliases' =>
|
30 |
array (
|
31 |
),
|
32 |
+
'reference' => 'c5085d2cb66e2219671d37ae0aadd02cfd609c1c',
|
33 |
'name' => 'weglot/translate-wordpress',
|
34 |
),
|
35 |
'versions' =>
|
54 |
),
|
55 |
'weglot/simplehtmldom' =>
|
56 |
array (
|
57 |
+
'pretty_version' => '0.6',
|
58 |
+
'version' => '0.6.0.0',
|
59 |
'aliases' =>
|
60 |
array (
|
61 |
),
|
62 |
+
'reference' => 'd84e80a2b8d2ecf81784356467aab70e8b37b117',
|
63 |
),
|
64 |
'weglot/translate-wordpress' =>
|
65 |
array (
|
68 |
'aliases' =>
|
69 |
array (
|
70 |
),
|
71 |
+
'reference' => 'c5085d2cb66e2219671d37ae0aadd02cfd609c1c',
|
72 |
),
|
73 |
'weglot/translation-definitions' =>
|
74 |
array (
|
75 |
+
'pretty_version' => 'v2.3.3',
|
76 |
+
'version' => '2.3.3.0',
|
77 |
'aliases' =>
|
78 |
array (
|
79 |
),
|
80 |
+
'reference' => 'c477a56818c0ba2259c8e2d44e582b64394110f7',
|
81 |
),
|
82 |
'weglot/weglot-php' =>
|
83 |
array (
|
84 |
+
'pretty_version' => '1.1.5',
|
85 |
+
'version' => '1.1.5.0',
|
86 |
'aliases' =>
|
87 |
array (
|
88 |
),
|
89 |
+
'reference' => '7a1576e19ab25e16509cffe8b9cfaed258ac90cc',
|
90 |
),
|
91 |
),
|
92 |
);
|
vendor/composer/autoload_real.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
-
class
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
@@ -24,15 +24,15 @@ class ComposerAutoloaderInit5b4fed4d41063bcd672b0df22fbd5f1e
|
|
24 |
|
25 |
require __DIR__ . '/platform_check.php';
|
26 |
|
27 |
-
spl_autoload_register(array('
|
28 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
29 |
-
spl_autoload_unregister(array('
|
30 |
|
31 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
32 |
if ($useStaticLoader) {
|
33 |
require __DIR__ . '/autoload_static.php';
|
34 |
|
35 |
-
call_user_func(\Composer\Autoload\
|
36 |
} else {
|
37 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
38 |
foreach ($map as $namespace => $path) {
|
@@ -53,19 +53,19 @@ class ComposerAutoloaderInit5b4fed4d41063bcd672b0df22fbd5f1e
|
|
53 |
$loader->register(true);
|
54 |
|
55 |
if ($useStaticLoader) {
|
56 |
-
$includeFiles = Composer\Autoload\
|
57 |
} else {
|
58 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
59 |
}
|
60 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
61 |
-
|
62 |
}
|
63 |
|
64 |
return $loader;
|
65 |
}
|
66 |
}
|
67 |
|
68 |
-
function
|
69 |
{
|
70 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
71 |
require $file;
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
+
class ComposerAutoloaderInit4536f09b11a80a179734040cf8a5bdaa
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
24 |
|
25 |
require __DIR__ . '/platform_check.php';
|
26 |
|
27 |
+
spl_autoload_register(array('ComposerAutoloaderInit4536f09b11a80a179734040cf8a5bdaa', 'loadClassLoader'), true, true);
|
28 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
29 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit4536f09b11a80a179734040cf8a5bdaa', 'loadClassLoader'));
|
30 |
|
31 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
32 |
if ($useStaticLoader) {
|
33 |
require __DIR__ . '/autoload_static.php';
|
34 |
|
35 |
+
call_user_func(\Composer\Autoload\ComposerStaticInit4536f09b11a80a179734040cf8a5bdaa::getInitializer($loader));
|
36 |
} else {
|
37 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
38 |
foreach ($map as $namespace => $path) {
|
53 |
$loader->register(true);
|
54 |
|
55 |
if ($useStaticLoader) {
|
56 |
+
$includeFiles = Composer\Autoload\ComposerStaticInit4536f09b11a80a179734040cf8a5bdaa::$files;
|
57 |
} else {
|
58 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
59 |
}
|
60 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
61 |
+
composerRequire4536f09b11a80a179734040cf8a5bdaa($fileIdentifier, $file);
|
62 |
}
|
63 |
|
64 |
return $loader;
|
65 |
}
|
66 |
}
|
67 |
|
68 |
+
function composerRequire4536f09b11a80a179734040cf8a5bdaa($fileIdentifier, $file)
|
69 |
{
|
70 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
71 |
require $file;
|
vendor/composer/autoload_static.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
-
class
|
8 |
{
|
9 |
public static $files = array (
|
10 |
'6c200413eed8aeea54dbaf934a31b127' => __DIR__ . '/..' . '/weglot/simplehtmldom/src/simple_html_dom.php',
|
@@ -58,10 +58,10 @@ class ComposerStaticInit5b4fed4d41063bcd672b0df22fbd5f1e
|
|
58 |
public static function getInitializer(ClassLoader $loader)
|
59 |
{
|
60 |
return \Closure::bind(function () use ($loader) {
|
61 |
-
$loader->prefixLengthsPsr4 =
|
62 |
-
$loader->prefixDirsPsr4 =
|
63 |
-
$loader->prefixesPsr0 =
|
64 |
-
$loader->classMap =
|
65 |
|
66 |
}, null, ClassLoader::class);
|
67 |
}
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
+
class ComposerStaticInit4536f09b11a80a179734040cf8a5bdaa
|
8 |
{
|
9 |
public static $files = array (
|
10 |
'6c200413eed8aeea54dbaf934a31b127' => __DIR__ . '/..' . '/weglot/simplehtmldom/src/simple_html_dom.php',
|
58 |
public static function getInitializer(ClassLoader $loader)
|
59 |
{
|
60 |
return \Closure::bind(function () use ($loader) {
|
61 |
+
$loader->prefixLengthsPsr4 = ComposerStaticInit4536f09b11a80a179734040cf8a5bdaa::$prefixLengthsPsr4;
|
62 |
+
$loader->prefixDirsPsr4 = ComposerStaticInit4536f09b11a80a179734040cf8a5bdaa::$prefixDirsPsr4;
|
63 |
+
$loader->prefixesPsr0 = ComposerStaticInit4536f09b11a80a179734040cf8a5bdaa::$prefixesPsr0;
|
64 |
+
$loader->classMap = ComposerStaticInit4536f09b11a80a179734040cf8a5bdaa::$classMap;
|
65 |
|
66 |
}, null, ClassLoader::class);
|
67 |
}
|
vendor/composer/installed.json
CHANGED
@@ -96,23 +96,23 @@
|
|
96 |
},
|
97 |
{
|
98 |
"name": "weglot/simplehtmldom",
|
99 |
-
"version": "0.
|
100 |
-
"version_normalized": "0.
|
101 |
"source": {
|
102 |
"type": "git",
|
103 |
"url": "https://github.com/weglot/simple_html_dom.git",
|
104 |
-
"reference": "
|
105 |
},
|
106 |
"dist": {
|
107 |
"type": "zip",
|
108 |
-
"url": "https://api.github.com/repos/weglot/simple_html_dom/zipball/
|
109 |
-
"reference": "
|
110 |
"shasum": ""
|
111 |
},
|
112 |
"require": {
|
113 |
"php": ">=5.3.0"
|
114 |
},
|
115 |
-
"time": "
|
116 |
"type": "library",
|
117 |
"installation-source": "dist",
|
118 |
"autoload": {
|
@@ -141,29 +141,29 @@
|
|
141 |
"html"
|
142 |
],
|
143 |
"support": {
|
144 |
-
"source": "https://github.com/weglot/simple_html_dom/tree/
|
145 |
},
|
146 |
"install-path": "../weglot/simplehtmldom"
|
147 |
},
|
148 |
{
|
149 |
"name": "weglot/translation-definitions",
|
150 |
-
"version": "v2.3.
|
151 |
-
"version_normalized": "2.3.
|
152 |
"source": {
|
153 |
"type": "git",
|
154 |
"url": "https://github.com/weglot/weglot-translation-definitions.git",
|
155 |
-
"reference": "
|
156 |
},
|
157 |
"dist": {
|
158 |
"type": "zip",
|
159 |
-
"url": "https://api.github.com/repos/weglot/weglot-translation-definitions/zipball/
|
160 |
-
"reference": "
|
161 |
"shasum": ""
|
162 |
},
|
163 |
"require": {
|
164 |
"php": ">=5"
|
165 |
},
|
166 |
-
"time": "
|
167 |
"type": "library",
|
168 |
"installation-source": "dist",
|
169 |
"autoload": {
|
@@ -184,36 +184,36 @@
|
|
184 |
"description": "Weglot's shared definitions",
|
185 |
"support": {
|
186 |
"issues": "https://github.com/weglot/weglot-translation-definitions/issues",
|
187 |
-
"source": "https://github.com/weglot/weglot-translation-definitions/tree/v2.3.
|
188 |
},
|
189 |
"install-path": "../weglot/translation-definitions"
|
190 |
},
|
191 |
{
|
192 |
"name": "weglot/weglot-php",
|
193 |
-
"version": "1.1.
|
194 |
-
"version_normalized": "1.1.
|
195 |
"source": {
|
196 |
"type": "git",
|
197 |
"url": "https://github.com/weglot/weglot-php.git",
|
198 |
-
"reference": "
|
199 |
},
|
200 |
"dist": {
|
201 |
"type": "zip",
|
202 |
-
"url": "https://api.github.com/repos/weglot/weglot-php/zipball/
|
203 |
-
"reference": "
|
204 |
"shasum": ""
|
205 |
},
|
206 |
"require": {
|
207 |
"php": ">=5.4",
|
208 |
"psr/cache": "^1.0",
|
209 |
-
"weglot/simplehtmldom": "^0.
|
210 |
"weglot/translation-definitions": "^2.0"
|
211 |
},
|
212 |
"require-dev": {
|
213 |
"codeception/codeception": "^2.4",
|
214 |
"vlucas/phpdotenv": "^2.4"
|
215 |
},
|
216 |
-
"time": "2021-02-
|
217 |
"type": "library",
|
218 |
"installation-source": "dist",
|
219 |
"autoload": {
|
96 |
},
|
97 |
{
|
98 |
"name": "weglot/simplehtmldom",
|
99 |
+
"version": "0.6",
|
100 |
+
"version_normalized": "0.6.0.0",
|
101 |
"source": {
|
102 |
"type": "git",
|
103 |
"url": "https://github.com/weglot/simple_html_dom.git",
|
104 |
+
"reference": "d84e80a2b8d2ecf81784356467aab70e8b37b117"
|
105 |
},
|
106 |
"dist": {
|
107 |
"type": "zip",
|
108 |
+
"url": "https://api.github.com/repos/weglot/simple_html_dom/zipball/d84e80a2b8d2ecf81784356467aab70e8b37b117",
|
109 |
+
"reference": "d84e80a2b8d2ecf81784356467aab70e8b37b117",
|
110 |
"shasum": ""
|
111 |
},
|
112 |
"require": {
|
113 |
"php": ">=5.3.0"
|
114 |
},
|
115 |
+
"time": "2021-02-11T16:16:15+00:00",
|
116 |
"type": "library",
|
117 |
"installation-source": "dist",
|
118 |
"autoload": {
|
141 |
"html"
|
142 |
],
|
143 |
"support": {
|
144 |
+
"source": "https://github.com/weglot/simple_html_dom/tree/0.6"
|
145 |
},
|
146 |
"install-path": "../weglot/simplehtmldom"
|
147 |
},
|
148 |
{
|
149 |
"name": "weglot/translation-definitions",
|
150 |
+
"version": "v2.3.3",
|
151 |
+
"version_normalized": "2.3.3.0",
|
152 |
"source": {
|
153 |
"type": "git",
|
154 |
"url": "https://github.com/weglot/weglot-translation-definitions.git",
|
155 |
+
"reference": "c477a56818c0ba2259c8e2d44e582b64394110f7"
|
156 |
},
|
157 |
"dist": {
|
158 |
"type": "zip",
|
159 |
+
"url": "https://api.github.com/repos/weglot/weglot-translation-definitions/zipball/c477a56818c0ba2259c8e2d44e582b64394110f7",
|
160 |
+
"reference": "c477a56818c0ba2259c8e2d44e582b64394110f7",
|
161 |
"shasum": ""
|
162 |
},
|
163 |
"require": {
|
164 |
"php": ">=5"
|
165 |
},
|
166 |
+
"time": "2021-02-11T17:21:51+00:00",
|
167 |
"type": "library",
|
168 |
"installation-source": "dist",
|
169 |
"autoload": {
|
184 |
"description": "Weglot's shared definitions",
|
185 |
"support": {
|
186 |
"issues": "https://github.com/weglot/weglot-translation-definitions/issues",
|
187 |
+
"source": "https://github.com/weglot/weglot-translation-definitions/tree/v2.3.3"
|
188 |
},
|
189 |
"install-path": "../weglot/translation-definitions"
|
190 |
},
|
191 |
{
|
192 |
"name": "weglot/weglot-php",
|
193 |
+
"version": "1.1.5",
|
194 |
+
"version_normalized": "1.1.5.0",
|
195 |
"source": {
|
196 |
"type": "git",
|
197 |
"url": "https://github.com/weglot/weglot-php.git",
|
198 |
+
"reference": "7a1576e19ab25e16509cffe8b9cfaed258ac90cc"
|
199 |
},
|
200 |
"dist": {
|
201 |
"type": "zip",
|
202 |
+
"url": "https://api.github.com/repos/weglot/weglot-php/zipball/7a1576e19ab25e16509cffe8b9cfaed258ac90cc",
|
203 |
+
"reference": "7a1576e19ab25e16509cffe8b9cfaed258ac90cc",
|
204 |
"shasum": ""
|
205 |
},
|
206 |
"require": {
|
207 |
"php": ">=5.4",
|
208 |
"psr/cache": "^1.0",
|
209 |
+
"weglot/simplehtmldom": "^0.6",
|
210 |
"weglot/translation-definitions": "^2.0"
|
211 |
},
|
212 |
"require-dev": {
|
213 |
"codeception/codeception": "^2.4",
|
214 |
"vlucas/phpdotenv": "^2.4"
|
215 |
},
|
216 |
+
"time": "2021-02-16T09:15:45+00:00",
|
217 |
"type": "library",
|
218 |
"installation-source": "dist",
|
219 |
"autoload": {
|
vendor/composer/installed.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
'aliases' =>
|
7 |
array (
|
8 |
),
|
9 |
-
'reference' => '
|
10 |
'name' => 'weglot/translate-wordpress',
|
11 |
),
|
12 |
'versions' =>
|
@@ -31,12 +31,12 @@
|
|
31 |
),
|
32 |
'weglot/simplehtmldom' =>
|
33 |
array (
|
34 |
-
'pretty_version' => '0.
|
35 |
-
'version' => '0.
|
36 |
'aliases' =>
|
37 |
array (
|
38 |
),
|
39 |
-
'reference' => '
|
40 |
),
|
41 |
'weglot/translate-wordpress' =>
|
42 |
array (
|
@@ -45,25 +45,25 @@
|
|
45 |
'aliases' =>
|
46 |
array (
|
47 |
),
|
48 |
-
'reference' => '
|
49 |
),
|
50 |
'weglot/translation-definitions' =>
|
51 |
array (
|
52 |
-
'pretty_version' => 'v2.3.
|
53 |
-
'version' => '2.3.
|
54 |
'aliases' =>
|
55 |
array (
|
56 |
),
|
57 |
-
'reference' => '
|
58 |
),
|
59 |
'weglot/weglot-php' =>
|
60 |
array (
|
61 |
-
'pretty_version' => '1.1.
|
62 |
-
'version' => '1.1.
|
63 |
'aliases' =>
|
64 |
array (
|
65 |
),
|
66 |
-
'reference' => '
|
67 |
),
|
68 |
),
|
69 |
);
|
6 |
'aliases' =>
|
7 |
array (
|
8 |
),
|
9 |
+
'reference' => 'c5085d2cb66e2219671d37ae0aadd02cfd609c1c',
|
10 |
'name' => 'weglot/translate-wordpress',
|
11 |
),
|
12 |
'versions' =>
|
31 |
),
|
32 |
'weglot/simplehtmldom' =>
|
33 |
array (
|
34 |
+
'pretty_version' => '0.6',
|
35 |
+
'version' => '0.6.0.0',
|
36 |
'aliases' =>
|
37 |
array (
|
38 |
),
|
39 |
+
'reference' => 'd84e80a2b8d2ecf81784356467aab70e8b37b117',
|
40 |
),
|
41 |
'weglot/translate-wordpress' =>
|
42 |
array (
|
45 |
'aliases' =>
|
46 |
array (
|
47 |
),
|
48 |
+
'reference' => 'c5085d2cb66e2219671d37ae0aadd02cfd609c1c',
|
49 |
),
|
50 |
'weglot/translation-definitions' =>
|
51 |
array (
|
52 |
+
'pretty_version' => 'v2.3.3',
|
53 |
+
'version' => '2.3.3.0',
|
54 |
'aliases' =>
|
55 |
array (
|
56 |
),
|
57 |
+
'reference' => 'c477a56818c0ba2259c8e2d44e582b64394110f7',
|
58 |
),
|
59 |
'weglot/weglot-php' =>
|
60 |
array (
|
61 |
+
'pretty_version' => '1.1.5',
|
62 |
+
'version' => '1.1.5.0',
|
63 |
'aliases' =>
|
64 |
array (
|
65 |
),
|
66 |
+
'reference' => '7a1576e19ab25e16509cffe8b9cfaed258ac90cc',
|
67 |
),
|
68 |
),
|
69 |
);
|
vendor/weglot/simplehtmldom/src/simple_html_dom.php
CHANGED
@@ -476,10 +476,14 @@ class simple_html_dom_node
|
|
476 |
if ($val===true) {
|
477 |
$ret .= $key;
|
478 |
} else {
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
|
|
|
|
|
|
|
|
483 |
}
|
484 |
$ret .= $key.$this->_[WG_HDOM_INFO_SPACE][$i][1].'='.$this->_[WG_HDOM_INFO_SPACE][$i][2].$quote.$val.$quote;
|
485 |
}
|
476 |
if ($val===true) {
|
477 |
$ret .= $key;
|
478 |
} else {
|
479 |
+
if(strpos($key, 'wg-') !== false) {
|
480 |
+
$quote = '"';
|
481 |
+
} else {
|
482 |
+
switch ($this->_[WG_HDOM_INFO_QUOTE][$i]) {
|
483 |
+
case WG_HDOM_QUOTE_DOUBLE: $quote = '"'; break;
|
484 |
+
case WG_HDOM_QUOTE_SINGLE: $quote = '\''; break;
|
485 |
+
default: $quote = '';
|
486 |
+
}
|
487 |
}
|
488 |
$ret .= $key.$this->_[WG_HDOM_INFO_SPACE][$i][1].'='.$this->_[WG_HDOM_INFO_SPACE][$i][2].$quote.$val.$quote;
|
489 |
}
|
vendor/weglot/translation-definitions/data/cases/cases-v3.json
CHANGED
@@ -285,7 +285,7 @@
|
|
285 |
"expected": [
|
286 |
{
|
287 |
"t": 1,
|
288 |
-
"w": "Hello, <a wg-1
|
289 |
}
|
290 |
]
|
291 |
},
|
@@ -299,7 +299,7 @@
|
|
299 |
},
|
300 |
{
|
301 |
"t": 1,
|
302 |
-
"w": "Hello, <a wg-1
|
303 |
}
|
304 |
]
|
305 |
},
|
@@ -317,7 +317,7 @@
|
|
317 |
},
|
318 |
{
|
319 |
"t": 1,
|
320 |
-
"w": "Hello, <b wg-1=\"\"><a wg-2
|
321 |
}
|
322 |
]
|
323 |
},
|
285 |
"expected": [
|
286 |
{
|
287 |
"t": 1,
|
288 |
+
"w": "Hello, <a wg-1=\"\">this is</a> a test!"
|
289 |
}
|
290 |
]
|
291 |
},
|
299 |
},
|
300 |
{
|
301 |
"t": 1,
|
302 |
+
"w": "Hello, <a wg-1=\"\">this is</a> a test!"
|
303 |
}
|
304 |
]
|
305 |
},
|
317 |
},
|
318 |
{
|
319 |
"t": 1,
|
320 |
+
"w": "Hello, <b wg-1=\"\"><a wg-2=\"\">this is</a> a <a wg-3=\"\">link</a></b> and a test!"
|
321 |
}
|
322 |
]
|
323 |
},
|
vendor/weglot/weglot-php/README.md
CHANGED
@@ -14,7 +14,7 @@
|
|
14 |
This library allows you to quickly and easily use the Weglot API via PHP. It handle all communication with Weglot API and gives you a [fully functional Parser](#getting-started) to handle HTML pages easily.
|
15 |
|
16 |
## Requirements
|
17 |
-
- PHP version 5.
|
18 |
- Weglot API Key, starting at [free level](https://dashboard.weglot.com/register?origin=9)
|
19 |
|
20 |
## Installation
|
@@ -236,7 +236,7 @@ Full test
|
|
236 |
## About
|
237 |
`weglot-php` is guided and supported by the Weglot Developer Team.
|
238 |
|
239 |
-
`weglot-php` is maintained and funded by Weglot SAS.
|
240 |
The names and logos for `weglot-php` are trademarks of Weglot SAS.
|
241 |
|
242 |
## License
|
14 |
This library allows you to quickly and easily use the Weglot API via PHP. It handle all communication with Weglot API and gives you a [fully functional Parser](#getting-started) to handle HTML pages easily.
|
15 |
|
16 |
## Requirements
|
17 |
+
- PHP version 5.6 and later
|
18 |
- Weglot API Key, starting at [free level](https://dashboard.weglot.com/register?origin=9)
|
19 |
|
20 |
## Installation
|
236 |
## About
|
237 |
`weglot-php` is guided and supported by the Weglot Developer Team.
|
238 |
|
239 |
+
`weglot-php` is maintained and funded by Weglot SAS.
|
240 |
The names and logos for `weglot-php` are trademarks of Weglot SAS.
|
241 |
|
242 |
## License
|
vendor/weglot/weglot-php/composer.json
CHANGED
@@ -41,7 +41,7 @@
|
|
41 |
],
|
42 |
"require": {
|
43 |
"php": ">=5.4",
|
44 |
-
"weglot/simplehtmldom": "^0.
|
45 |
"psr/cache": "^1.0",
|
46 |
"weglot/translation-definitions": "^2.0"
|
47 |
},
|
41 |
],
|
42 |
"require": {
|
43 |
"php": ">=5.4",
|
44 |
+
"weglot/simplehtmldom": "^0.6",
|
45 |
"psr/cache": "^1.0",
|
46 |
"weglot/translation-definitions": "^2.0"
|
47 |
},
|
vendor/weglot/weglot-php/src/Util/Url.php
CHANGED
@@ -247,7 +247,7 @@ class Url
|
|
247 |
$escapedPathPrefix = Text::escapeForRegex($this->pathPrefix);
|
248 |
$languages = implode('|', $this->getDestinationLanguagesExternal());
|
249 |
|
250 |
-
$urlNoPrefix = preg_replace('#' . $escapedPathPrefix . '#i', '', $this->getUrl());
|
251 |
|
252 |
$uriPath = parse_url($urlNoPrefix, PHP_URL_PATH);
|
253 |
$uriSegments = explode('/', $uriPath);
|
@@ -337,16 +337,26 @@ class Url
|
|
337 |
|
338 |
foreach ($this->excludedUrls as $excludedUrl) {
|
339 |
if( $excludedUrl[1] === null || ( is_array($excludedUrl[1]) && in_array($language, $excludedUrl[1]) ) ) {
|
340 |
-
if( preg_match('#' . $excludedUrl[0] . '#', $this->getPath()) != 0
|
|
|
341 |
continue 2;
|
342 |
}
|
343 |
}
|
344 |
|
345 |
$translatedPath = $this->getPath();
|
346 |
if(isset($this->customUrls[$language->getInternalCode()])) {
|
347 |
-
|
348 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
349 |
}
|
|
|
350 |
}
|
351 |
$url = $this->getHost() . $this->getPathPrefix() . '/' . $language->getExternalCode() . $translatedPath;
|
352 |
if (!is_null($this->getQuery())) {
|
247 |
$escapedPathPrefix = Text::escapeForRegex($this->pathPrefix);
|
248 |
$languages = implode('|', $this->getDestinationLanguagesExternal());
|
249 |
|
250 |
+
$urlNoPrefix = preg_replace('#' . $escapedPathPrefix . '#i', '', $this->getUrl(), 1);
|
251 |
|
252 |
$uriPath = parse_url($urlNoPrefix, PHP_URL_PATH);
|
253 |
$uriSegments = explode('/', $uriPath);
|
337 |
|
338 |
foreach ($this->excludedUrls as $excludedUrl) {
|
339 |
if( $excludedUrl[1] === null || ( is_array($excludedUrl[1]) && in_array($language, $excludedUrl[1]) ) ) {
|
340 |
+
if( preg_match('#' . $excludedUrl[0] . '#', $this->getPath()) != 0
|
341 |
+
|| preg_match('#' . $excludedUrl[0] . '#', rtrim($this->getPath() , "/")) != 0 )
|
342 |
continue 2;
|
343 |
}
|
344 |
}
|
345 |
|
346 |
$translatedPath = $this->getPath();
|
347 |
if(isset($this->customUrls[$language->getInternalCode()])) {
|
348 |
+
$slugs = explode('/', $this->path);
|
349 |
+
foreach ($slugs as $k => $slug) {
|
350 |
+
if(empty($slug))
|
351 |
+
continue;
|
352 |
+
|
353 |
+
foreach( $this->customUrls[$language->getInternalCode()] as $translatedURL => $originalURL ) {
|
354 |
+
if($slug === $originalURL) {
|
355 |
+
$slugs[$k] = $translatedURL;
|
356 |
+
}
|
357 |
+
}
|
358 |
}
|
359 |
+
$translatedPath = implode('/' , $slugs);
|
360 |
}
|
361 |
$url = $this->getHost() . $this->getPathPrefix() . '/' . $language->getExternalCode() . $translatedPath;
|
362 |
if (!is_null($this->getQuery())) {
|
weglot-functions.php
CHANGED
@@ -167,7 +167,13 @@ function weglot_create_url_object( $url ) {
|
|
167 |
return weglot_get_request_url_service()->create_url_object( $url );
|
168 |
}
|
169 |
|
|
|
|
|
|
|
170 |
|
|
|
|
|
|
|
171 |
/**
|
172 |
* @since 2.4.0
|
173 |
* @return string
|
167 |
return weglot_get_request_url_service()->create_url_object( $url );
|
168 |
}
|
169 |
|
170 |
+
function weglot_get_full_url_no_language() {
|
171 |
+
return weglot_create_url_object( weglot_get_request_url_service()->get_full_url() )->getForLanguage( weglot_get_service('Language_Service_Weglot')->get_original_language() );
|
172 |
+
}
|
173 |
|
174 |
+
function weglot_get_postid_from_url() {
|
175 |
+
return url_to_postid( weglot_get_full_url_no_language() ); //phpcs:ignore
|
176 |
+
}
|
177 |
/**
|
178 |
* @since 2.4.0
|
179 |
* @return string
|
weglot.php
CHANGED
@@ -7,7 +7,7 @@ Author: Weglot Translate team
|
|
7 |
Author URI: https://weglot.com/
|
8 |
Text Domain: weglot
|
9 |
Domain Path: /languages/
|
10 |
-
Version: 3.3.
|
11 |
*/
|
12 |
|
13 |
/**
|
@@ -22,8 +22,8 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
22 |
define( 'WEGLOT_NAME', 'Weglot' );
|
23 |
define( 'WEGLOT_SLUG', 'weglot-translate' );
|
24 |
define( 'WEGLOT_OPTION_GROUP', 'group-weglot-translate' );
|
25 |
-
define( 'WEGLOT_VERSION', '3.3.
|
26 |
-
define( 'WEGLOT_PHP_MIN', '5.
|
27 |
define( 'WEGLOT_BNAME', plugin_basename( __FILE__ ) );
|
28 |
define( 'WEGLOT_DIR', __DIR__ );
|
29 |
define( 'WEGLOT_DIR_LANGUAGES', WEGLOT_DIR . '/languages' );
|
7 |
Author URI: https://weglot.com/
|
8 |
Text Domain: weglot
|
9 |
Domain Path: /languages/
|
10 |
+
Version: 3.3.2
|
11 |
*/
|
12 |
|
13 |
/**
|
22 |
define( 'WEGLOT_NAME', 'Weglot' );
|
23 |
define( 'WEGLOT_SLUG', 'weglot-translate' );
|
24 |
define( 'WEGLOT_OPTION_GROUP', 'group-weglot-translate' );
|
25 |
+
define( 'WEGLOT_VERSION', '3.3.2' );
|
26 |
+
define( 'WEGLOT_PHP_MIN', '5.6' );
|
27 |
define( 'WEGLOT_BNAME', plugin_basename( __FILE__ ) );
|
28 |
define( 'WEGLOT_DIR', __DIR__ );
|
29 |
define( 'WEGLOT_DIR_LANGUAGES', WEGLOT_DIR . '/languages' );
|