├── css └── admin.css ├── images ├── background.png ├── icon-small.png ├── icon.png ├── mt-sample-background.jpg ├── star.png ├── support.png ├── themes.png ├── translate.png └── worker.png ├── includes ├── admin.php ├── fonts │ └── googlefonts.json ├── functions.php └── update.php ├── js ├── init.js ├── init.min.js ├── select2 │ ├── dist │ │ ├── css │ │ │ ├── select2.css │ │ │ └── select2.min.css │ │ └── js │ │ │ ├── i18n │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── dsb.js │ │ │ ├── el.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hsb.js │ │ │ ├── hu.js │ │ │ ├── hy.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── ps.js │ │ │ ├── pt-BR.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sr-Cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tk.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-CN.js │ │ │ └── zh-TW.js │ │ │ ├── select2.full.js │ │ │ ├── select2.full.min.js │ │ │ ├── select2.js │ │ │ └── select2.min.js │ ├── select2.css │ ├── select2.full.js │ ├── select2.full.min.js │ ├── select2.js │ ├── select2.min.css │ └── select2.min.js ├── uploads_.js └── uploads_.min.js ├── languages ├── maintenance-ar.mo ├── maintenance-ar.po ├── maintenance-cs_CZ.mo ├── maintenance-cs_CZ.po ├── maintenance-de_DE.mo ├── maintenance-de_DE.po ├── maintenance-es_ES.mo ├── maintenance-es_ES.po ├── maintenance-fa-IR.mo ├── maintenance-fa-IR.po ├── maintenance-fi.mo ├── maintenance-fi.po ├── maintenance-fr_FR.mo ├── maintenance-fr_FR.po ├── maintenance-hu_HU.mo ├── maintenance-hu_HU.po ├── maintenance-it_IT.mo ├── maintenance-it_IT.po ├── maintenance-ja.mo ├── maintenance-ja.po ├── maintenance-nl_NL.mo ├── maintenance-nl_NL.po ├── maintenance-pl_PL.mo ├── maintenance-pl_PL.po ├── maintenance-pt_BR.mo ├── maintenance-pt_BR.po ├── maintenance-pt_PT.mo ├── maintenance-pt_PT.po ├── maintenance-ru_RU.mo ├── maintenance-ru_RU.po ├── maintenance-sv_SE.mo ├── maintenance-sv_SE.po ├── maintenance-tr_TR.mo ├── maintenance-tr_TR.po ├── maintenance-uk.mo ├── maintenance-uk.po ├── maintenance-zh_CN.mo └── maintenance-zh_CN.po ├── load ├── all.css ├── css │ ├── fonts.css │ └── style.css ├── fonts │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff2 │ ├── foundation-icons.eot │ ├── foundation-icons.svg │ ├── foundation-icons.ttf │ └── foundation-icons.woff ├── functions.php ├── index.php ├── js │ ├── jquery.backstretch.min.js │ ├── jquery.blur.min.js │ ├── jquery.frontend.ie.js │ ├── jquery.frontend.js │ ├── jquery.frontend.min.js │ └── jquery.placeholder.js └── style.css ├── maintenance.php ├── readme.txt ├── screenshot-1.png └── uninstall.php /images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/images/background.png -------------------------------------------------------------------------------- /images/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/images/icon-small.png -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/images/icon.png -------------------------------------------------------------------------------- /images/mt-sample-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/images/mt-sample-background.jpg -------------------------------------------------------------------------------- /images/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/images/star.png -------------------------------------------------------------------------------- /images/support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/images/support.png -------------------------------------------------------------------------------- /images/themes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/images/themes.png -------------------------------------------------------------------------------- /images/translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/images/translate.png -------------------------------------------------------------------------------- /images/worker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/images/worker.png -------------------------------------------------------------------------------- /includes/admin.php: -------------------------------------------------------------------------------- 1 | options_page = add_menu_page( __( 'Maintenance', 'maintenance' ), __( 'Maintenance', 'maintenance' ), 'manage_options', 'maintenance', 'mtnc_manage_options', MTNC_URI . '/images/icon-small.png' ); 8 | 9 | add_action( 'admin_init', 'mtnc_register_settings' ); 10 | add_action( "admin_head-{$mtnc_variable->options_page}", 'mtnc_metaboxes_scripts' ); 11 | add_action( "admin_print_styles-{$mtnc_variable->options_page}", 'mtnc_admin_print_custom_styles' ); 12 | add_action( "load-{$mtnc_variable->options_page}", 'mtnc_page_add_meta_boxes' ); 13 | add_action( 'admin_enqueue_scripts', 'mtnc_load_later_scripts', 1 ); 14 | add_action( 'admin_enqueue_scripts', 'mtnc_codemirror_enqueue_scripts' ); 15 | } 16 | 17 | function mtnc_page_add_meta_boxes() { 18 | global $mtnc_variable; 19 | do_action( 'add_mt_meta_boxes', $mtnc_variable->options_page ); 20 | 21 | } 22 | 23 | function mtnc_register_settings() { 24 | global $mtnc; 25 | if ( ! empty( $_POST['lib_options'] ) && check_admin_referer( 'mtnc_edit_post', 'mtnc_nonce' ) ) { 26 | if ( ! isset( $_POST['lib_options']['state'] ) ) { 27 | $_POST['lib_options']['state'] = 0; 28 | } else { 29 | $_POST['lib_options']['state'] = 1; 30 | } 31 | 32 | if ( isset( $_POST['lib_options']['htmlcss'] ) ) { 33 | $_POST['lib_options']['htmlcss'] = wp_kses_stripslashes( $_POST['lib_options']['htmlcss'] ); // Allowed all tags as for WYSIWYG post content 34 | } 35 | 36 | if ( isset( $_POST['lib_options'] ) ) { 37 | $lib_options = sanitize_post( wp_unslash( $_POST['lib_options'] ), 'db' ); 38 | update_option( 'maintenance_options', $lib_options ); 39 | MTNC::mtnc_clear_cache(); 40 | } 41 | } 42 | 43 | } 44 | 45 | function mtnc_admin_print_custom_styles() { 46 | if ( function_exists( 'wp_enqueue_media' ) ) { 47 | wp_enqueue_media(); 48 | } else { 49 | wp_enqueue_script( 'media-upload' ); 50 | wp_enqueue_script( 'thickbox' ); 51 | wp_enqueue_style( 'thickbox' ); 52 | } 53 | 54 | wp_enqueue_script( 'common' ); 55 | wp_enqueue_script( 'wp-lists' ); 56 | wp_enqueue_script( 'postbox' ); 57 | 58 | wp_enqueue_style( 'arvo', '//fonts.googleapis.com/css?family=Open+Sans:400,300,600,700|Arvo:400,400italic,700,700italic' ); 59 | wp_enqueue_style( 'wp-color-picker' ); 60 | 61 | wp_enqueue_script( 'uplaods_', MTNC_URI . 'js/uploads_.min.js', 'jquery', filemtime( MTNC_DIR . 'js/uploads_.min.js' ), '' ); 62 | wp_register_script( 'mtnc', MTNC_URI . 'js/init.js', array( 'wp-color-picker' ), filemtime( MTNC_DIR . 'js/init.js' ), true ); 63 | wp_localize_script( 'mtnc', 'mtnc', array( 'path' => MTNC_URI ) ); 64 | wp_enqueue_script( 'mtnc' ); 65 | wp_enqueue_style( 'mtnc', MTNC_URI . 'css/admin.css', '', filemtime( MTNC_DIR . 'css/admin.css' ) ); 66 | } 67 | 68 | function mtnc_codemirror_enqueue_scripts( $hook ) { 69 | if ( 'toplevel_page_maintenance' !== $hook ) { 70 | return; 71 | } 72 | $cm_settings['codeEditor'] = wp_enqueue_code_editor( array( 'type' => 'text/css' ) ); 73 | wp_localize_script( 'jquery', 'cm_settings', $cm_settings ); 74 | 75 | wp_enqueue_script( 'wp-theme-plugin-editor' ); 76 | wp_enqueue_style( 'wp-codemirror' ); 77 | } 78 | 79 | function mtnc_load_later_scripts() { 80 | // fix a bug with WooCommerce 3.2.2 . 81 | global $current_screen; 82 | if ( ! empty( $current_screen->id ) && $current_screen->id === 'toplevel_page_maintenance' ) { 83 | wp_deregister_script( 'select2' ); 84 | wp_deregister_style( 'select2' ); 85 | wp_dequeue_script( 'select2' ); 86 | wp_dequeue_style( 'select2' ); 87 | wp_enqueue_script( 'select2', MTNC_URI . 'js/select2/select2.min.js', 'jquery', filemtime( MTNC_DIR . 'js/select2/select2.min.js' ), '' ); 88 | wp_enqueue_style( 'select2', MTNC_URI . 'js/select2/select2.css', '', filemtime( MTNC_DIR . 'js/select2/select2.css' ) ); 89 | } 90 | } 91 | 92 | function mtnc_manage_options() { 93 | mtnc_generate_plugin_page(); 94 | } 95 | 96 | function mtnc_generate_plugin_page() { 97 | global $mtnc_variable; 98 | $mt_option = mtnc_get_plugin_options( true ); 99 | ?> 100 |
101 |
102 | 103 | 104 | 105 |
106 |

/>

107 | 108 |
109 |
110 |
111 |
112 |
113 | 114 | options_page, 'normal', null ); ?> 115 | options_page, 'advanced', null ); ?> 116 | 117 |
118 | 119 |
120 | options_page, 'side', null ); ?> 121 |
122 | 123 |
124 | 125 |
126 |
127 |
128 | $value ) { 30 | if ( ! isset( $settings[ $key ] ) ) { 31 | $settings[ $key ] = $value; 32 | } 33 | } 34 | update_option( 'maintenance_options', $options ); 35 | } 36 | -------------------------------------------------------------------------------- /js/init.js: -------------------------------------------------------------------------------- 1 | jQuery(window).ready(function(){ 2 | jQuery.fn.tzCheckbox = function(options){ 3 | options = jQuery.extend({ 4 | labels : ['ON','OFF'] 5 | },options); 6 | 7 | return this.each(function(){ 8 | var originalCheckBox = jQuery(this), 9 | labels = []; 10 | if(originalCheckBox.data('on')){ 11 | labels[0] = originalCheckBox.data('on'); 12 | labels[1] = originalCheckBox.data('off'); 13 | } 14 | else labels = options.labels; 15 | var checkBox = jQuery(''); 16 | checkBox.addClass(this.checked?' tzCheckBox checked':'tzCheckBox'); 17 | checkBox.prepend(''+labels[this.checked?0:1]+ ''); 18 | checkBox.insertAfter(originalCheckBox.hide()); 19 | 20 | checkBox.click(function(){ 21 | checkBox.toggleClass('checked'); 22 | var isChecked = checkBox.hasClass('checked'); 23 | originalCheckBox.attr('checked',isChecked); 24 | checkBox.find('.tzCBContent').html(labels[isChecked?0:1]); 25 | }); 26 | 27 | originalCheckBox.bind('change',function(){ 28 | checkBox.click(); 29 | }); 30 | }); 31 | }; 32 | 33 | jQuery('#state').tzCheckbox({labels:['On','Off']}); 34 | var vColorPickerOptions = { 35 | defaultColor: false, 36 | change: function(event, ui){}, 37 | clear: function() {}, 38 | hide: true, 39 | palettes: true 40 | }; 41 | 42 | jQuery('#body_bg_color, #font_color, #body_bg_blur_color, #controls_bg_color').wpColorPicker(vColorPickerOptions); 43 | 44 | if (jQuery('.select2_customize, .multiple-select-mt').length > 0) { 45 | jQuery('.select2_customize, .multiple-select-mt').select2({}); 46 | } 47 | 48 | if (jQuery('#503_enabled').length > 0) { 49 | if (jQuery('#503_enabled').prop("checked")) { 50 | jQuery('#gg_analytics_id').prop('disabled', true); 51 | } else { 52 | jQuery('#gg_analytics_id').prop('disabled', false); 53 | } 54 | } 55 | 56 | jQuery('#503_enabled').on('change', function() { 57 | if (jQuery(this).prop("checked")) { 58 | jQuery('#gg_analytics_id').prop('disabled', true); 59 | } else { 60 | jQuery('#gg_analytics_id').prop('disabled', false); 61 | } 62 | 63 | }); 64 | 65 | wp.codeEditor.initialize( jQuery( '#custom_css' ), cm_settings ); 66 | 67 | var t=null,t=jQuery.getJSON(mtnc.path+"includes/fonts/googlefonts.json");jQuery("#body_font_family").on("change",function(){var e=jQuery(this).val();n(e)});var n=function(e){jQuery("#body_font_subset").html(""),jQuery("#s2id_body_font_subset .select2-choice .select2-chosen").empty(),font=JSON.parse(t.responseText);for(var n in font)if(n==e)for(var o=0;o"+font[n].variants[o]+"")} 68 | }); 69 | 70 | -------------------------------------------------------------------------------- /js/init.min.js: -------------------------------------------------------------------------------- 1 | jQuery(window).ready(function(){jQuery.fn.tzCheckbox=function(options){options=jQuery.extend({labels:["ON","OFF"]},options);return this.each(function(){var originalCheckBox=jQuery(this),labels=[];if(originalCheckBox.data("on")){labels[0]=originalCheckBox.data("on");labels[1]=originalCheckBox.data("off")}else labels=options.labels;var checkBox=jQuery("");checkBox.addClass(this.checked?" tzCheckBox checked":"tzCheckBox");checkBox.prepend(''+labels[this.checked?0:1]+'');checkBox.insertAfter(originalCheckBox.hide());checkBox.click(function(){checkBox.toggleClass("checked");var isChecked=checkBox.hasClass("checked");originalCheckBox.attr("checked",isChecked);checkBox.find(".tzCBContent").html(labels[isChecked?0:1])});originalCheckBox.bind("change",function(){checkBox.click()})})};jQuery("#state").tzCheckbox({labels:["On","Off"]});var vColorPickerOptions={defaultColor:false,change:function(event,ui){},clear:function(){},hide:true,palettes:true};jQuery("#body_bg_color, #font_color, #body_bg_blur_color, #controls_bg_color").wpColorPicker(vColorPickerOptions);if(jQuery(".select2_customize, .multiple-select-mt").length>0){jQuery(".select2_customize, .multiple-select-mt").select2({})}if(jQuery("#503_enabled").length>0){if(jQuery("#503_enabled").prop("checked")){jQuery("#gg_analytics_id").prop("disabled",true)}else{jQuery("#gg_analytics_id").prop("disabled",false)}}jQuery("#503_enabled").on("change",function(){if(jQuery(this).prop("checked")){jQuery("#gg_analytics_id").prop("disabled",true)}else{jQuery("#gg_analytics_id").prop("disabled",false)}});wp.codeEditor.initialize(jQuery("#custom_css"),cm_settings);var t=null,t=jQuery.getJSON(mtnc.path+"includes/fonts/googlefonts.json");jQuery("#body_font_family").on("change",function(){var e=jQuery(this).val();n(e)});var n=function(e){jQuery("#body_font_subset").html(""),jQuery("#s2id_body_font_subset .select2-choice .select2-chosen").empty(),font=JSON.parse(t.responseText);for(var n in font)if(n==e)for(var o=0;o"+font[n].variants[o]+"")}}); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/af.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/af",[],function(){return{errorLoading:function(){return"Die resultate kon nie gelaai word nie."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Verwyders asseblief "+t+" character";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Voer asseblief "+t+" of meer karakters";return n},loadingMore:function(){return"Meer resultate word gelaai…"},maximumSelected:function(e){var t="Kies asseblief net "+e.maximum+" item";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"Geen resultate gevind"},searching:function(){return"Besig…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/ar.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ar",[],function(){return{errorLoading:function(){return"لا يمكن تحميل النتائج"},inputTooLong:function(e){var t=e.input.length-e.maximum;return"الرجاء حذف "+t+" عناصر"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"الرجاء إضافة "+t+" عناصر"},loadingMore:function(){return"جاري تحميل نتائج إضافية..."},maximumSelected:function(e){return"تستطيع إختيار "+e.maximum+" بنود فقط"},noResults:function(){return"لم يتم العثور على أي نتائج"},searching:function(){return"جاري البحث…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/az.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/az",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return t+" simvol silin"},inputTooShort:function(e){var t=e.minimum-e.input.length;return t+" simvol daxil edin"},loadingMore:function(){return"Daha çox nəticə yüklənir…"},maximumSelected:function(e){return"Sadəcə "+e.maximum+" element seçə bilərsiniz"},noResults:function(){return"Nəticə tapılmadı"},searching:function(){return"Axtarılır…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/bg.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/bg",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Моля въведете с "+t+" по-малко символ";return t>1&&(n+="a"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Моля въведете още "+t+" символ";return t>1&&(n+="a"),n},loadingMore:function(){return"Зареждат се още…"},maximumSelected:function(e){var t="Можете да направите до "+e.maximum+" ";return e.maximum>1?t+="избора":t+="избор",t},noResults:function(){return"Няма намерени съвпадения"},searching:function(){return"Търсене…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/bs.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/bs",[],function(){function e(e,t,n,r){return e%10==1&&e%100!=11?t:e%10>=2&&e%10<=4&&(e%100<12||e%100>14)?n:r}return{errorLoading:function(){return"Preuzimanje nije uspijelo."},inputTooLong:function(t){var n=t.input.length-t.maximum,r="Obrišite "+n+" simbol";return r+=e(n,"","a","a"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Ukucajte bar još "+n+" simbol";return r+=e(n,"","a","a"),r},loadingMore:function(){return"Preuzimanje još rezultata…"},maximumSelected:function(t){var n="Možete izabrati samo "+t.maximum+" stavk";return n+=e(t.maximum,"u","e","i"),n},noResults:function(){return"Ništa nije pronađeno"},searching:function(){return"Pretraga…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/ca.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ca",[],function(){return{errorLoading:function(){return"La càrrega ha fallat"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Si us plau, elimina "+t+" car";return t==1?n+="àcter":n+="àcters",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Si us plau, introdueix "+t+" car";return t==1?n+="àcter":n+="àcters",n},loadingMore:function(){return"Carregant més resultats…"},maximumSelected:function(e){var t="Només es pot seleccionar "+e.maximum+" element";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No s'han trobat resultats"},searching:function(){return"Cercant…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/cs.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/cs",[],function(){function e(e,t){switch(e){case 2:return t?"dva":"dvě";case 3:return"tři";case 4:return"čtyři"}return""}return{errorLoading:function(){return"Výsledky nemohly být načteny."},inputTooLong:function(t){var n=t.input.length-t.maximum;return n==1?"Prosím, zadejte o jeden znak méně.":n<=4?"Prosím, zadejte o "+e(n,!0)+" znaky méně.":"Prosím, zadejte o "+n+" znaků méně."},inputTooShort:function(t){var n=t.minimum-t.input.length;return n==1?"Prosím, zadejte ještě jeden znak.":n<=4?"Prosím, zadejte ještě další "+e(n,!0)+" znaky.":"Prosím, zadejte ještě dalších "+n+" znaků."},loadingMore:function(){return"Načítají se další výsledky…"},maximumSelected:function(t){var n=t.maximum;return n==1?"Můžete zvolit jen jednu položku.":n<=4?"Můžete zvolit maximálně "+e(n,!1)+" položky.":"Můžete zvolit maximálně "+n+" položek."},noResults:function(){return"Nenalezeny žádné položky."},searching:function(){return"Vyhledávání…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/da.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/da",[],function(){return{errorLoading:function(){return"Resultaterne kunne ikke indlæses."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Angiv venligst "+t+" tegn mindre"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Angiv venligst "+t+" tegn mere"},loadingMore:function(){return"Indlæser flere resultater…"},maximumSelected:function(e){var t="Du kan kun vælge "+e.maximum+" emne";return e.maximum!=1&&(t+="r"),t},noResults:function(){return"Ingen resultater fundet"},searching:function(){return"Søger…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/de.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/de",[],function(){return{errorLoading:function(){return"Die Ergebnisse konnten nicht geladen werden."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Bitte "+t+" Zeichen weniger eingeben"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Bitte "+t+" Zeichen mehr eingeben"},loadingMore:function(){return"Lade mehr Ergebnisse…"},maximumSelected:function(e){var t="Sie können nur "+e.maximum+" Eintr";return e.maximum===1?t+="ag":t+="äge",t+=" auswählen",t},noResults:function(){return"Keine Übereinstimmungen gefunden"},searching:function(){return"Suche…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/dsb.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/dsb",[],function(){var e=["znamuško","znamušce","znamuška","znamuškow"],t=["zapisk","zapiska","zapiski","zapiskow"],n=function(t,n){if(t===1)return n[0];if(t===2)return n[1];if(t>2&&t<=4)return n[2];if(t>=5)return n[3]};return{errorLoading:function(){return"Wuslědki njejsu se dali zacytaś."},inputTooLong:function(t){var r=t.input.length-t.maximum;return"Pšosym lašuj "+r+" "+n(r,e)},inputTooShort:function(t){var r=t.minimum-t.input.length;return"Pšosym zapódaj nanejmjenjej "+r+" "+n(r,e)},loadingMore:function(){return"Dalšne wuslědki se zacytaju…"},maximumSelected:function(e){return"Móžoš jano "+e.maximum+" "+n(e.maximum,t)+"wubraś."},noResults:function(){return"Žedne wuslědki namakane"},searching:function(){return"Pyta se…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/el.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/el",[],function(){return{errorLoading:function(){return"Τα αποτελέσματα δεν μπόρεσαν να φορτώσουν."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Παρακαλώ διαγράψτε "+t+" χαρακτήρ";return t==1&&(n+="α"),t!=1&&(n+="ες"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Παρακαλώ συμπληρώστε "+t+" ή περισσότερους χαρακτήρες";return n},loadingMore:function(){return"Φόρτωση περισσότερων αποτελεσμάτων…"},maximumSelected:function(e){var t="Μπορείτε να επιλέξετε μόνο "+e.maximum+" επιλογ";return e.maximum==1&&(t+="ή"),e.maximum!=1&&(t+="ές"),t},noResults:function(){return"Δεν βρέθηκαν αποτελέσματα"},searching:function(){return"Αναζήτηση…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/en.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/en",[],function(){return{errorLoading:function(){return"The results could not be loaded."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Please delete "+t+" character";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Please enter "+t+" or more characters";return n},loadingMore:function(){return"Loading more results…"},maximumSelected:function(e){var t="You can only select "+e.maximum+" item";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No results found"},searching:function(){return"Searching…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/es.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/es",[],function(){return{errorLoading:function(){return"No se pudieron cargar los resultados"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Por favor, elimine "+t+" car";return t==1?n+="ácter":n+="acteres",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Por favor, introduzca "+t+" car";return t==1?n+="ácter":n+="acteres",n},loadingMore:function(){return"Cargando más resultados…"},maximumSelected:function(e){var t="Sólo puede seleccionar "+e.maximum+" elemento";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No se encontraron resultados"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/et.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/et",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Sisesta "+t+" täht";return t!=1&&(n+="e"),n+=" vähem",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Sisesta "+t+" täht";return t!=1&&(n+="e"),n+=" rohkem",n},loadingMore:function(){return"Laen tulemusi…"},maximumSelected:function(e){var t="Saad vaid "+e.maximum+" tulemus";return e.maximum==1?t+="e":t+="t",t+=" valida",t},noResults:function(){return"Tulemused puuduvad"},searching:function(){return"Otsin…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/eu.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/eu",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Idatzi ";return t==1?n+="karaktere bat":n+=t+" karaktere",n+=" gutxiago",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Idatzi ";return t==1?n+="karaktere bat":n+=t+" karaktere",n+=" gehiago",n},loadingMore:function(){return"Emaitza gehiago kargatzen…"},maximumSelected:function(e){return e.maximum===1?"Elementu bakarra hauta dezakezu":e.maximum+" elementu hauta ditzakezu soilik"},noResults:function(){return"Ez da bat datorrenik aurkitu"},searching:function(){return"Bilatzen…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/fa.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fa",[],function(){return{errorLoading:function(){return"امکان بارگذاری نتایج وجود ندارد."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="لطفاً "+t+" کاراکتر را حذف نمایید";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="لطفاً تعداد "+t+" کاراکتر یا بیشتر وارد نمایید";return n},loadingMore:function(){return"در حال بارگذاری نتایج بیشتر..."},maximumSelected:function(e){var t="شما تنها می‌توانید "+e.maximum+" آیتم را انتخاب نمایید";return t},noResults:function(){return"هیچ نتیجه‌ای یافت نشد"},searching:function(){return"در حال جستجو..."}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/fi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fi",[],function(){return{errorLoading:function(){return"Tuloksia ei saatu ladattua."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Ole hyvä ja anna "+t+" merkkiä vähemmän"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Ole hyvä ja anna "+t+" merkkiä lisää"},loadingMore:function(){return"Ladataan lisää tuloksia…"},maximumSelected:function(e){return"Voit valita ainoastaan "+e.maximum+" kpl"},noResults:function(){return"Ei tuloksia"},searching:function(){return"Haetaan…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/fr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fr",[],function(){return{errorLoading:function(){return"Les résultats ne peuvent pas être chargés."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Supprimez "+t+" caractère"+(t>1?"s":"")},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Saisissez au moins "+t+" caractère"+(t>1?"s":"")},loadingMore:function(){return"Chargement de résultats supplémentaires…"},maximumSelected:function(e){return"Vous pouvez seulement sélectionner "+e.maximum+" élément"+(e.maximum>1?"s":"")},noResults:function(){return"Aucun résultat trouvé"},searching:function(){return"Recherche en cours…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/gl.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/gl",[],function(){return{errorLoading:function(){return"Non foi posíbel cargar os resultados."},inputTooLong:function(e){var t=e.input.length-e.maximum;return t===1?"Elimine un carácter":"Elimine "+t+" caracteres"},inputTooShort:function(e){var t=e.minimum-e.input.length;return t===1?"Engada un carácter":"Engada "+t+" caracteres"},loadingMore:function(){return"Cargando máis resultados…"},maximumSelected:function(e){return e.maximum===1?"Só pode seleccionar un elemento":"Só pode seleccionar "+e.maximum+" elementos"},noResults:function(){return"Non se atoparon resultados"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/he.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/he",[],function(){return{errorLoading:function(){return"שגיאה בטעינת התוצאות"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="נא למחוק ";return t===1?n+="תו אחד":n+=t+" תווים",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="נא להכניס ";return t===1?n+="תו אחד":n+=t+" תווים",n+=" או יותר",n},loadingMore:function(){return"טוען תוצאות נוספות…"},maximumSelected:function(e){var t="באפשרותך לבחור עד ";return e.maximum===1?t+="פריט אחד":t+=e.maximum+" פריטים",t},noResults:function(){return"לא נמצאו תוצאות"},searching:function(){return"מחפש…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/hi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hi",[],function(){return{errorLoading:function(){return"परिणामों को लोड नहीं किया जा सका।"},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" अक्षर को हटा दें";return t>1&&(n=t+" अक्षरों को हटा दें "),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="कृपया "+t+" या अधिक अक्षर दर्ज करें";return n},loadingMore:function(){return"अधिक परिणाम लोड हो रहे है..."},maximumSelected:function(e){var t="आप केवल "+e.maximum+" आइटम का चयन कर सकते हैं";return t},noResults:function(){return"कोई परिणाम नहीं मिला"},searching:function(){return"खोज रहा है..."}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/hr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hr",[],function(){function e(e){var t=" "+e+" znak";return e%10<5&&e%10>0&&(e%100<5||e%100>19)?e%10>1&&(t+="a"):t+="ova",t}return{errorLoading:function(){return"Preuzimanje nije uspjelo."},inputTooLong:function(t){var n=t.input.length-t.maximum;return"Unesite "+e(n)},inputTooShort:function(t){var n=t.minimum-t.input.length;return"Unesite još "+e(n)},loadingMore:function(){return"Učitavanje rezultata…"},maximumSelected:function(e){return"Maksimalan broj odabranih stavki je "+e.maximum},noResults:function(){return"Nema rezultata"},searching:function(){return"Pretraga…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/hsb.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hsb",[],function(){var e=["znamješko","znamješce","znamješka","znamješkow"],t=["zapisk","zapiskaj","zapiski","zapiskow"],n=function(t,n){if(t===1)return n[0];if(t===2)return n[1];if(t>2&&t<=4)return n[2];if(t>=5)return n[3]};return{errorLoading:function(){return"Wuslědki njedachu so začitać."},inputTooLong:function(t){var r=t.input.length-t.maximum;return"Prošu zhašej "+r+" "+n(r,e)},inputTooShort:function(t){var r=t.minimum-t.input.length;return"Prošu zapodaj znajmjeńša "+r+" "+n(r,e)},loadingMore:function(){return"Dalše wuslědki so začitaja…"},maximumSelected:function(e){return"Móžeš jenož "+e.maximum+" "+n(e.maximum,t)+"wubrać"},noResults:function(){return"Žane wuslědki namakane"},searching:function(){return"Pyta so…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/hu.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hu",[],function(){return{errorLoading:function(){return"Az eredmények betöltése nem sikerült."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Túl hosszú. "+t+" karakterrel több, mint kellene."},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Túl rövid. Még "+t+" karakter hiányzik."},loadingMore:function(){return"Töltés…"},maximumSelected:function(e){return"Csak "+e.maximum+" elemet lehet kiválasztani."},noResults:function(){return"Nincs találat."},searching:function(){return"Keresés…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/hy.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hy",[],function(){return{errorLoading:function(){return"Արդյունքները հնարավոր չէ բեռնել։"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Խնդրում ենք հեռացնել "+t+" նշան";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Խնդրում ենք մուտքագրել "+t+" կամ ավել նշաններ";return n},loadingMore:function(){return"Բեռնվում են նոր արդյունքներ․․․"},maximumSelected:function(e){var t="Դուք կարող եք ընտրել առավելագույնը "+e.maximum+" կետ";return t},noResults:function(){return"Արդյունքներ չեն գտնվել"},searching:function(){return"Որոնում․․․"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/id.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/id",[],function(){return{errorLoading:function(){return"Data tidak boleh diambil."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Hapuskan "+t+" huruf"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Masukkan "+t+" huruf lagi"},loadingMore:function(){return"Mengambil data…"},maximumSelected:function(e){return"Anda hanya dapat memilih "+e.maximum+" pilihan"},noResults:function(){return"Tidak ada data yang sesuai"},searching:function(){return"Mencari…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/is.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/is",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vinsamlegast styttið texta um "+t+" staf";return t<=1?n:n+"i"},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vinsamlegast skrifið "+t+" staf";return t>1&&(n+="i"),n+=" í viðbót",n},loadingMore:function(){return"Sæki fleiri niðurstöður…"},maximumSelected:function(e){return"Þú getur aðeins valið "+e.maximum+" atriði"},noResults:function(){return"Ekkert fannst"},searching:function(){return"Leita…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/it.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/it",[],function(){return{errorLoading:function(){return"I risultati non possono essere caricati."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Per favore cancella "+t+" caratter";return t!==1?n+="i":n+="e",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Per favore inserisci "+t+" o più caratteri";return n},loadingMore:function(){return"Caricando più risultati…"},maximumSelected:function(e){var t="Puoi selezionare solo "+e.maximum+" element";return e.maximum!==1?t+="i":t+="o",t},noResults:function(){return"Nessun risultato trovato"},searching:function(){return"Sto cercando…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/ja.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ja",[],function(){return{errorLoading:function(){return"結果が読み込まれませんでした"},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" 文字を削除してください";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="少なくとも "+t+" 文字を入力してください";return n},loadingMore:function(){return"読み込み中…"},maximumSelected:function(e){var t=e.maximum+" 件しか選択できません";return t},noResults:function(){return"対象が見つかりません"},searching:function(){return"検索しています…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/km.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/km",[],function(){return{errorLoading:function(){return"មិនអាចទាញយកទិន្នន័យ"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="សូមលុបចេញ "+t+" អក្សរ";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="សូមបញ្ចូល"+t+" អក្សរ រឺ ច្រើនជាងនេះ";return n},loadingMore:function(){return"កំពុងទាញយកទិន្នន័យបន្ថែម..."},maximumSelected:function(e){var t="អ្នកអាចជ្រើសរើសបានតែ "+e.maximum+" ជម្រើសប៉ុណ្ណោះ";return t},noResults:function(){return"មិនមានលទ្ធផល"},searching:function(){return"កំពុងស្វែងរក..."}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/ko.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ko",[],function(){return{errorLoading:function(){return"결과를 불러올 수 없습니다."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="너무 깁니다. "+t+" 글자 지워주세요.";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="너무 짧습니다. "+t+" 글자 더 입력해주세요.";return n},loadingMore:function(){return"불러오는 중…"},maximumSelected:function(e){var t="최대 "+e.maximum+"개까지만 선택 가능합니다.";return t},noResults:function(){return"결과가 없습니다."},searching:function(){return"검색 중…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/lt.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/lt",[],function(){function e(e,t,n,r){return e%10===1&&(e%100<11||e%100>19)?t:e%10>=2&&e%10<=9&&(e%100<11||e%100>19)?n:r}return{inputTooLong:function(t){var n=t.input.length-t.maximum,r="Pašalinkite "+n+" simbol";return r+=e(n,"į","ius","ių"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Įrašykite dar "+n+" simbol";return r+=e(n,"į","ius","ių"),r},loadingMore:function(){return"Kraunama daugiau rezultatų…"},maximumSelected:function(t){var n="Jūs galite pasirinkti tik "+t.maximum+" element";return n+=e(t.maximum,"ą","us","ų"),n},noResults:function(){return"Atitikmenų nerasta"},searching:function(){return"Ieškoma…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/lv.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/lv",[],function(){function e(e,t,n,r){return e===11?t:e%10===1?n:r}return{inputTooLong:function(t){var n=t.input.length-t.maximum,r="Lūdzu ievadiet par "+n;return r+=" simbol"+e(n,"iem","u","iem"),r+" mazāk"},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Lūdzu ievadiet vēl "+n;return r+=" simbol"+e(n,"us","u","us"),r},loadingMore:function(){return"Datu ielāde…"},maximumSelected:function(t){var n="Jūs varat izvēlēties ne vairāk kā "+t.maximum;return n+=" element"+e(t.maximum,"us","u","us"),n},noResults:function(){return"Sakritību nav"},searching:function(){return"Meklēšana…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/mk.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/mk",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Ве молиме внесете "+e.maximum+" помалку карактер";return e.maximum!==1&&(n+="и"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Ве молиме внесете уште "+e.maximum+" карактер";return e.maximum!==1&&(n+="и"),n},loadingMore:function(){return"Вчитување резултати…"},maximumSelected:function(e){var t="Можете да изберете само "+e.maximum+" ставк";return e.maximum===1?t+="а":t+="и",t},noResults:function(){return"Нема пронајдено совпаѓања"},searching:function(){return"Пребарување…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/ms.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ms",[],function(){return{errorLoading:function(){return"Keputusan tidak berjaya dimuatkan."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Sila hapuskan "+t+" aksara"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Sila masukkan "+t+" atau lebih aksara"},loadingMore:function(){return"Sedang memuatkan keputusan…"},maximumSelected:function(e){return"Anda hanya boleh memilih "+e.maximum+" pilihan"},noResults:function(){return"Tiada padanan yang ditemui"},searching:function(){return"Mencari…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/nb.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/nb",[],function(){return{errorLoading:function(){return"Kunne ikke hente resultater."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Vennligst fjern "+t+" tegn"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Vennligst skriv inn "+t+" tegn til"},loadingMore:function(){return"Laster flere resultater…"},maximumSelected:function(e){return"Du kan velge maks "+e.maximum+" elementer"},noResults:function(){return"Ingen treff"},searching:function(){return"Søker…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/nl.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/nl",[],function(){return{errorLoading:function(){return"De resultaten konden niet worden geladen."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Gelieve "+t+" karakters te verwijderen";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Gelieve "+t+" of meer karakters in te voeren";return n},loadingMore:function(){return"Meer resultaten laden…"},maximumSelected:function(e){var t=e.maximum==1?"kan":"kunnen",n="Er "+t+" maar "+e.maximum+" item";return e.maximum!=1&&(n+="s"),n+=" worden geselecteerd",n},noResults:function(){return"Geen resultaten gevonden…"},searching:function(){return"Zoeken…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/pl.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pl",[],function(){var e=["znak","znaki","znaków"],t=["element","elementy","elementów"],n=function(t,n){if(t===1)return n[0];if(t>1&&t<=4)return n[1];if(t>=5)return n[2]};return{errorLoading:function(){return"Nie można załadować wyników."},inputTooLong:function(t){var r=t.input.length-t.maximum;return"Usuń "+r+" "+n(r,e)},inputTooShort:function(t){var r=t.minimum-t.input.length;return"Podaj przynajmniej "+r+" "+n(r,e)},loadingMore:function(){return"Trwa ładowanie…"},maximumSelected:function(e){return"Możesz zaznaczyć tylko "+e.maximum+" "+n(e.maximum,t)},noResults:function(){return"Brak wyników"},searching:function(){return"Trwa wyszukiwanie…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/ps.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ps",[],function(){return{errorLoading:function(){return"پايلي نه سي ترلاسه کېدای"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="د مهربانۍ لمخي "+t+" توری ړنګ کړئ";return t!=1&&(n=n.replace("توری","توري")),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="لږ تر لږه "+t+" يا ډېر توري وليکئ";return n},loadingMore:function(){return"نوري پايلي ترلاسه کيږي..."},maximumSelected:function(e){var t="تاسو يوازي "+e.maximum+" قلم په نښه کولای سی";return e.maximum!=1&&(t=t.replace("قلم","قلمونه")),t},noResults:function(){return"پايلي و نه موندل سوې"},searching:function(){return"لټول کيږي..."}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/pt-BR.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pt-BR",[],function(){return{errorLoading:function(){return"Os resultados não puderam ser carregados."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Apague "+t+" caracter";return t!=1&&(n+="es"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Digite "+t+" ou mais caracteres";return n},loadingMore:function(){return"Carregando mais resultados…"},maximumSelected:function(e){var t="Você só pode selecionar "+e.maximum+" ite";return e.maximum==1?t+="m":t+="ns",t},noResults:function(){return"Nenhum resultado encontrado"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/pt.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pt",[],function(){return{errorLoading:function(){return"Os resultados não puderam ser carregados."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Por favor apague "+t+" ";return n+=t!=1?"caracteres":"caractere",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Introduza "+t+" ou mais caracteres";return n},loadingMore:function(){return"A carregar mais resultados…"},maximumSelected:function(e){var t="Apenas pode seleccionar "+e.maximum+" ";return t+=e.maximum!=1?"itens":"item",t},noResults:function(){return"Sem resultados"},searching:function(){return"A procurar…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/ro.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ro",[],function(){return{errorLoading:function(){return"Rezultatele nu au putut fi incărcate."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vă rugăm să ștergeți"+t+" caracter";return t!==1&&(n+="e"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vă rugăm să introduceți "+t+" sau mai multe caractere";return n},loadingMore:function(){return"Se încarcă mai multe rezultate…"},maximumSelected:function(e){var t="Aveți voie să selectați cel mult "+e.maximum;return t+=" element",e.maximum!==1&&(t+="e"),t},noResults:function(){return"Nu au fost găsite rezultate"},searching:function(){return"Căutare…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/ru.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ru",[],function(){function e(e,t,n,r){return e%10<5&&e%10>0&&e%100<5||e%100>20?e%10>1?n:t:r}return{errorLoading:function(){return"Невозможно загрузить результаты"},inputTooLong:function(t){var n=t.input.length-t.maximum,r="Пожалуйста, введите на "+n+" символ";return r+=e(n,"","a","ов"),r+=" меньше",r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Пожалуйста, введите еще хотя бы "+n+" символ";return r+=e(n,"","a","ов"),r},loadingMore:function(){return"Загрузка данных…"},maximumSelected:function(t){var n="Вы можете выбрать не более "+t.maximum+" элемент";return n+=e(t.maximum,"","a","ов"),n},noResults:function(){return"Совпадений не найдено"},searching:function(){return"Поиск…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/sk.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sk",[],function(){var e={2:function(e){return e?"dva":"dve"},3:function(){return"tri"},4:function(){return"štyri"}};return{errorLoading:function(){return"Výsledky sa nepodarilo načítať."},inputTooLong:function(t){var n=t.input.length-t.maximum;return n==1?"Prosím, zadajte o jeden znak menej":n>=2&&n<=4?"Prosím, zadajte o "+e[n](!0)+" znaky menej":"Prosím, zadajte o "+n+" znakov menej"},inputTooShort:function(t){var n=t.minimum-t.input.length;return n==1?"Prosím, zadajte ešte jeden znak":n<=4?"Prosím, zadajte ešte ďalšie "+e[n](!0)+" znaky":"Prosím, zadajte ešte ďalších "+n+" znakov"},loadingMore:function(){return"Načítanie ďalších výsledkov…"},maximumSelected:function(t){return t.maximum==1?"Môžete zvoliť len jednu položku":t.maximum>=2&&t.maximum<=4?"Môžete zvoliť najviac "+e[t.maximum](!1)+" položky":"Môžete zvoliť najviac "+t.maximum+" položiek"},noResults:function(){return"Nenašli sa žiadne položky"},searching:function(){return"Vyhľadávanie…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/sl.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sl",[],function(){return{errorLoading:function(){return"Zadetkov iskanja ni bilo mogoče naložiti."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Prosim zbrišite "+t+" znak";return t==2?n+="a":t!=1&&(n+="e"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Prosim vpišite še "+t+" znak";return t==2?n+="a":t!=1&&(n+="e"),n},loadingMore:function(){return"Nalagam več zadetkov…"},maximumSelected:function(e){var t="Označite lahko največ "+e.maximum+" predmet";return e.maximum==2?t+="a":e.maximum!=1&&(t+="e"),t},noResults:function(){return"Ni zadetkov."},searching:function(){return"Iščem…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/sr-Cyrl.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sr-Cyrl",[],function(){function e(e,t,n,r){return e%10==1&&e%100!=11?t:e%10>=2&&e%10<=4&&(e%100<12||e%100>14)?n:r}return{errorLoading:function(){return"Преузимање није успело."},inputTooLong:function(t){var n=t.input.length-t.maximum,r="Обришите "+n+" симбол";return r+=e(n,"","а","а"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Укуцајте бар још "+n+" симбол";return r+=e(n,"","а","а"),r},loadingMore:function(){return"Преузимање још резултата…"},maximumSelected:function(t){var n="Можете изабрати само "+t.maximum+" ставк";return n+=e(t.maximum,"у","е","и"),n},noResults:function(){return"Ништа није пронађено"},searching:function(){return"Претрага…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/sr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sr",[],function(){function e(e,t,n,r){return e%10==1&&e%100!=11?t:e%10>=2&&e%10<=4&&(e%100<12||e%100>14)?n:r}return{errorLoading:function(){return"Preuzimanje nije uspelo."},inputTooLong:function(t){var n=t.input.length-t.maximum,r="Obrišite "+n+" simbol";return r+=e(n,"","a","a"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Ukucajte bar još "+n+" simbol";return r+=e(n,"","a","a"),r},loadingMore:function(){return"Preuzimanje još rezultata…"},maximumSelected:function(t){var n="Možete izabrati samo "+t.maximum+" stavk";return n+=e(t.maximum,"u","e","i"),n},noResults:function(){return"Ništa nije pronađeno"},searching:function(){return"Pretraga…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/sv.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sv",[],function(){return{errorLoading:function(){return"Resultat kunde inte laddas."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vänligen sudda ut "+t+" tecken";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vänligen skriv in "+t+" eller fler tecken";return n},loadingMore:function(){return"Laddar fler resultat…"},maximumSelected:function(e){var t="Du kan max välja "+e.maximum+" element";return t},noResults:function(){return"Inga träffar"},searching:function(){return"Söker…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/th.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/th",[],function(){return{errorLoading:function(){return"ไม่สามารถค้นข้อมูลได้"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="โปรดลบออก "+t+" ตัวอักษร";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="โปรดพิมพ์เพิ่มอีก "+t+" ตัวอักษร";return n},loadingMore:function(){return"กำลังค้นข้อมูลเพิ่ม…"},maximumSelected:function(e){var t="คุณสามารถเลือกได้ไม่เกิน "+e.maximum+" รายการ";return t},noResults:function(){return"ไม่พบข้อมูล"},searching:function(){return"กำลังค้นข้อมูล…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/tk.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/tk",[],function(){return{errorLoading:function(){return"Netije ýüklenmedi."},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" harp bozuň.";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Ýene-de iň az "+t+" harp ýazyň.";return n},loadingMore:function(){return"Köpräk netije görkezilýär…"},maximumSelected:function(e){var t="Diňe "+e.maximum+" sanysyny saýlaň.";return t},noResults:function(){return"Netije tapylmady."},searching:function(){return"Gözlenýär…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/tr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/tr",[],function(){return{errorLoading:function(){return"Sonuç yüklenemedi"},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" karakter daha girmelisiniz";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="En az "+t+" karakter daha girmelisiniz";return n},loadingMore:function(){return"Daha fazla…"},maximumSelected:function(e){var t="Sadece "+e.maximum+" seçim yapabilirsiniz";return t},noResults:function(){return"Sonuç bulunamadı"},searching:function(){return"Aranıyor…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/uk.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/uk",[],function(){function e(e,t,n,r){return e%100>10&&e%100<15?r:e%10===1?t:e%10>1&&e%10<5?n:r}return{errorLoading:function(){return"Неможливо завантажити результати"},inputTooLong:function(t){var n=t.input.length-t.maximum;return"Будь ласка, видаліть "+n+" "+e(t.maximum,"літеру","літери","літер")},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Будь ласка, введіть "+t+" або більше літер"},loadingMore:function(){return"Завантаження інших результатів…"},maximumSelected:function(t){return"Ви можете вибрати лише "+t.maximum+" "+e(t.maximum,"пункт","пункти","пунктів")},noResults:function(){return"Нічого не знайдено"},searching:function(){return"Пошук…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/vi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/vi",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vui lòng nhập ít hơn "+t+" ký tự";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vui lòng nhập nhiều hơn "+t+" ký tự";return n},loadingMore:function(){return"Đang lấy thêm kết quả…"},maximumSelected:function(e){var t="Chỉ có thể chọn được "+e.maximum+" lựa chọn";return t},noResults:function(){return"Không tìm thấy kết quả"},searching:function(){return"Đang tìm…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/zh-CN.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-CN",[],function(){return{errorLoading:function(){return"无法载入结果。"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="请删除"+t+"个字符";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="请再输入至少"+t+"个字符";return n},loadingMore:function(){return"载入更多结果…"},maximumSelected:function(e){var t="最多只能选择"+e.maximum+"个项目";return t},noResults:function(){return"未找到结果"},searching:function(){return"搜索中…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/select2/dist/js/i18n/zh-TW.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-TW",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="請刪掉"+t+"個字元";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="請再輸入"+t+"個字元";return n},loadingMore:function(){return"載入中…"},maximumSelected:function(e){var t="你只能選擇最多"+e.maximum+"項";return t},noResults:function(){return"沒有找到相符的項目"},searching:function(){return"搜尋中…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /js/uploads_.js: -------------------------------------------------------------------------------- 1 | function uploads_multimedia_init (title, btnName, editing, multiple) { 2 | var outArray = []; 3 | var file_frame; 4 | if (file_frame) { 5 | file_frame.open(); 6 | return; 7 | } 8 | 9 | file_frame = wp.media.editor.send.attachment = wp.media({ 10 | title: title, 11 | button: { 12 | text: btnName 13 | }, 14 | editing: editing, 15 | multiple: multiple, 16 | }); 17 | return file_frame; 18 | } 19 | 20 | jQuery(document).ready(function() { 21 | jQuery('.upload_btn').live('click', function( event ) { 22 | event.preventDefault(); 23 | var vLinkElem = jQuery(this); 24 | var customData = vLinkElem.data('imagetype'); 25 | var customClass = ''; 26 | 27 | var file_frame = uploads_multimedia_init('Upload Image', 'Select Image', true, false); 28 | file_frame.on( 'select', function() { 29 | var selection = file_frame.state().get('selection'); 30 | selection.map( function( attachment ) { 31 | attachment = attachment.toJSON(); 32 | var image_url = attachment.url, 33 | image_id = attachment.id; 34 | 35 | vLinkElem.parent().find('.boxes').css('background-image', 'url(' + image_url + ')'); 36 | vLinkElem.parent().find('.boxes').append(''); 37 | vLinkElem.parent().parent().find('input[type="hidden"]').val(image_id); 38 | }); 39 | 40 | }); 41 | 42 | file_frame.open(); 43 | return false; 44 | }); 45 | 46 | jQuery('.delete-img').live('click', function( event ) { 47 | event.preventDefault(); 48 | var vLinkElem = jQuery(this); 49 | vLinkElem.parent().css('background-image', 'none'); 50 | vLinkElem.parent().parent().parent().find('input[type="hidden"]').val(''); 51 | vLinkElem.remove(); 52 | return false; 53 | }); 54 | 55 | }); -------------------------------------------------------------------------------- /js/uploads_.min.js: -------------------------------------------------------------------------------- 1 | function uploads_multimedia_init(e,f,b,a){var c=[];var d;if(d){d.open();return}d=wp.media.editor.send.attachment=wp.media({title:e,button:{text:f},editing:b,multiple:a});return d}jQuery(document).ready(function(){jQuery(".upload_btn").live("click",function(c){c.preventDefault();var e=jQuery(this);var d=e.data("imagetype");var b="";var a=uploads_multimedia_init("Upload Image","Select Image",true,false);a.on("select",function(){var f=a.state().get("selection");f.map(function(h){h=h.toJSON();var i=h.url,g=h.id;e.parent().find(".boxes").css("background-image","url("+i+")");e.parent().find(".boxes").append('');e.parent().parent().find('input[type="hidden"]').val(g)})});a.open();return false});jQuery(".delete-img").live("click",function(a){a.preventDefault();var b=jQuery(this);b.parent().css("background-image","none");b.parent().parent().parent().find('input[type="hidden"]').val("");b.remove();return false})}); -------------------------------------------------------------------------------- /languages/maintenance-ar.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/languages/maintenance-ar.mo -------------------------------------------------------------------------------- /languages/maintenance-ar.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: maintenance\n" 4 | "POT-Creation-Date: 2019-08-27 13:20+0300\n" 5 | "PO-Revision-Date: 2019-08-27 13:20+0300\n" 6 | "Last-Translator: \n" 7 | "Language-Team: fruitfulcode\n" 8 | "Language: ar\n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "X-Generator: Poedit 2.2.3\n" 13 | "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" 14 | "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" 15 | "_nx_noop:3c,1,2;__ngettext_noop:1,2\n" 16 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 17 | "X-Poedit-Basepath: ..\n" 18 | "X-Poedit-SearchPath-0: .\n" 19 | "X-Poedit-SearchPathExcluded-0: *.js\n" 20 | 21 | #: includes/admin.php:7 includes/admin.php:106 includes/functions.php:688 22 | #: includes/functions.php:692 23 | msgid "Maintenance" 24 | msgstr "صيانة" 25 | 26 | #: includes/admin.php:106 includes/admin.php:124 27 | msgid "Save changes" 28 | msgstr "حفظ التغيرات" 29 | 30 | #: includes/functions.php:199 31 | msgid "Standard Fonts" 32 | msgstr "مستوى الخطوط" 33 | 34 | #: includes/functions.php:206 35 | msgid "Google Web Fonts" 36 | msgstr "" 37 | 38 | #: includes/functions.php:256 39 | msgid "General Settings" 40 | msgstr "الإعدادات العامة" 41 | 42 | #: includes/functions.php:257 43 | msgid "Custom CSS" 44 | msgstr " حسب الطلب CSS" 45 | 46 | #: includes/functions.php:258 47 | msgid "Exclude pages from maintenance mode" 48 | msgstr "استبعاد صفحات من وضع الصيانة" 49 | 50 | #: includes/functions.php:264 51 | msgid "Pro version" 52 | msgstr "نسخة للمحترفين" 53 | 54 | #: includes/functions.php:271 55 | msgid "Fruitful Code projects" 56 | msgstr "مشاريع كود مثمرة" 57 | 58 | #: includes/functions.php:277 59 | msgid "Support" 60 | msgstr "الدعم" 61 | 62 | #: includes/functions.php:283 63 | msgid "Translation" 64 | msgstr "ترجمة" 65 | 66 | #: includes/functions.php:318 67 | msgid "Page title" 68 | msgstr "عنوان الصفحة" 69 | 70 | #: includes/functions.php:319 71 | msgid "Headline" 72 | msgstr "عنوان رئيسي" 73 | 74 | #: includes/functions.php:320 75 | msgid "Description" 76 | msgstr "وصف" 77 | 78 | #: includes/functions.php:321 79 | msgid "Footer Text" 80 | msgstr "نص تذييل" 81 | 82 | #: includes/functions.php:322 83 | msgid "Set Logo width" 84 | msgstr "مجموعة عرض الشعار" 85 | 86 | #: includes/functions.php:323 87 | msgid "Set Logo height" 88 | msgstr "مجموعة ارتفاع الشعار" 89 | 90 | #: includes/functions.php:324 91 | msgid "Logo" 92 | msgstr "شعار" 93 | 94 | #: includes/functions.php:324 95 | msgid "Upload Logo" 96 | msgstr "تحميل الشعار" 97 | 98 | #: includes/functions.php:325 99 | msgid "Retina logo" 100 | msgstr "شبكية العين شعار" 101 | 102 | #: includes/functions.php:325 103 | msgid "Upload Retina Logo" 104 | msgstr "تحميل الشبكية شعار" 105 | 106 | #: includes/functions.php:327 107 | #, fuzzy 108 | #| msgid "Background image" 109 | msgid "Background image (portrait mode)" 110 | msgstr "الصورة الخلفية" 111 | 112 | #: includes/functions.php:327 113 | msgid "Upload image for portrait device orientation" 114 | msgstr "" 115 | 116 | #: includes/functions.php:328 117 | #, fuzzy 118 | #| msgid "Background image" 119 | msgid "Page preloader image" 120 | msgstr "الصورة الخلفية" 121 | 122 | #: includes/functions.php:328 123 | #, fuzzy 124 | #| msgid "Upload Background" 125 | msgid "Upload preloader" 126 | msgstr "تحميل خلفية" 127 | 128 | #: includes/functions.php:332 129 | msgid "503" 130 | msgstr "503" 131 | 132 | #: includes/functions.php:332 133 | msgid "Service temporarily unavailable, Google analytics will be disable." 134 | msgstr "الخدمة غير متوفرة مؤقتا، سيتم تعطيل تحليلات جوجل." 135 | 136 | #: includes/functions.php:339 137 | msgid "Google Analytics ID" 138 | msgstr "Google Analytics ID" 139 | 140 | #: includes/functions.php:339 141 | msgid "UA-XXXXX-X" 142 | msgstr "UA-XXXXX-X" 143 | 144 | #: includes/functions.php:340 145 | msgid "Set blur intensity" 146 | msgstr "تعيين كثافة طمس" 147 | 148 | #: includes/functions.php:348 149 | msgid "Apply background blur" 150 | msgstr "تطبيق طمس الخلفية" 151 | 152 | #: includes/functions.php:349 153 | msgid "Enable frontend login" 154 | msgstr "تمكين تسجيل الدخول الواجهة" 155 | 156 | #: includes/functions.php:362 157 | msgid "CSS Code" 158 | msgstr "كود CSS" 159 | 160 | #: includes/functions.php:382 161 | msgid "Select the page to be displayed:" 162 | msgstr "حدد الصفحة للظهور:" 163 | 164 | #: includes/functions.php:445 165 | msgid "Background image" 166 | msgstr "الصورة الخلفية" 167 | 168 | #: includes/functions.php:445 169 | msgid "Upload Background" 170 | msgstr "تحميل خلفية" 171 | 172 | #: includes/functions.php:451 173 | msgid "Background color" 174 | msgstr "لون الخلفية" 175 | 176 | #: includes/functions.php:452 177 | msgid "Font color" 178 | msgstr "لون الخط" 179 | 180 | #: includes/functions.php:453 181 | #, fuzzy 182 | #| msgid "Background color" 183 | msgid "Login block background color" 184 | msgstr "لون الخلفية" 185 | 186 | #: includes/functions.php:460 187 | msgid "Font family" 188 | msgstr "خط العائلة" 189 | 190 | #: includes/functions.php:466 191 | msgid "Subsets" 192 | msgstr "فرعية" 193 | 194 | #: includes/functions.php:474 195 | msgid "Have any questions?" 196 | msgstr "لديك أي أسئلة؟" 197 | 198 | #: includes/functions.php:476 199 | #, php-format 200 | msgid "" 201 | "You may find answers to your questions at support forum
You may
contact us with customization requests and " 205 | "suggestions.
Please visit our website to learn about us and our services " 206 | "%2$s" 207 | msgstr "" 208 | "قد تجد إجابات على أسئلتك في منتدى الدعم
يمكنك
اتصل بنا مع طلبات التخصيص والاقتراحات.
يرجى " 212 | "زيارة موقعنا على الانترنت لمعرفة المزيد عن لنا وخدماتنا %2$s" 214 | 215 | #: includes/functions.php:487 216 | msgid "This plugin is translation friendly" 217 | msgstr "هذا هو البرنامج المساعد الترجمة دية" 218 | 219 | #: includes/functions.php:489 220 | #, php-format 221 | msgid "" 222 | "Want to improve translation or make one for your native language? %2$s" 224 | msgstr "" 225 | "ترغب في تحسين الترجمة أو جعل واحدة لغتك الأم؟ %2$s" 227 | 228 | #: includes/functions.php:491 229 | msgid "Follow this tutorial" 230 | msgstr "اتبع هذا البرنامج التعليمي" 231 | 232 | #: includes/functions.php:500 233 | msgid "Premium WordPress themes" 234 | msgstr "قسط المواضيع وورد" 235 | 236 | #: includes/functions.php:506 237 | msgid "ANAGLYPH - One page / Multi Page WordPress Theme" 238 | msgstr "ANAGLYPH - صفحة واحدة / متعدد صفحة وورد موضوع" 239 | 240 | #: includes/functions.php:511 241 | msgid "Love.ly - Simple & Elegant WordPress theme" 242 | msgstr "Love.ly - موضوع بسيط وأنيق وورد" 243 | 244 | #: includes/functions.php:517 245 | msgid "Zoner - Real Estate WordPress theme" 246 | msgstr "Zoner - عقارات وورد موضوع" 247 | 248 | #: includes/functions.php:529 249 | msgid "Extended functionality" 250 | msgstr "وظائف الموسعة" 251 | 252 | #: includes/functions.php:531 253 | #, php-format 254 | msgid "" 255 | "Purchase PRO version with " 257 | "extended functionality. %1$s If you like our plugin please rate it, leave feedbacks." 261 | msgstr "" 262 | "شراء محترف نسخة مع " 264 | "وظائف الموسعة. %1$s إذا كنت ترغب المساعد لدينا من فضلك قيمه , ترك الاصداء ." 268 | 269 | #: includes/functions.php:537 270 | msgid "Demo website" 271 | msgstr "الموقع التجريبي" 272 | 273 | #: includes/functions.php:688 includes/functions.php:695 274 | msgid " is " 275 | msgstr "" 276 | 277 | #: includes/functions.php:768 278 | msgid "Website is under construction" 279 | msgstr "الموقع قيد الإنشاء" 280 | 281 | #: includes/functions.php:769 282 | msgid "Maintenance mode is on" 283 | msgstr "وضع الصيانة على" 284 | 285 | #: includes/functions.php:770 286 | msgid "Website will be available soon" 287 | msgstr "سيكون الموقع متاحا في وقت قريب" 288 | 289 | #: load/functions.php:47 290 | msgid "Permission access denied!" 291 | msgstr "وصول تم رفض الإذن!" 292 | 293 | #: load/functions.php:61 294 | msgid "Login is incorrect!" 295 | msgstr "" 296 | 297 | #: load/functions.php:66 298 | #, fuzzy 299 | #| msgid "You entered your password are incorrect!" 300 | msgid "Password is incorrect!" 301 | msgstr "لقد أدخلت كلمة المرور غير صحيحة!" 302 | 303 | #: load/functions.php:69 304 | #, fuzzy 305 | #| msgid "You entered your login and password are incorrect!" 306 | msgid "Login and password are incorrect!" 307 | msgstr "لقد أدخلت اسم المستخدم وكلمة المرور غير صحيحة!" 308 | 309 | #: load/functions.php:149 310 | msgid "Please verify that you are not a robot." 311 | msgstr "" 312 | 313 | #: load/functions.php:374 314 | msgid "User Login" 315 | msgstr "دخول المستخدم" 316 | 317 | #: load/functions.php:376 318 | msgid "Username" 319 | msgstr "اسم المستخدم" 320 | 321 | #: load/functions.php:377 322 | msgid "Password" 323 | msgstr "كلمه السر" 324 | 325 | #: load/functions.php:378 326 | msgid "Lost Password" 327 | msgstr "كلمة مرور مفقودة" 328 | 329 | #: load/functions.php:379 330 | msgid "Login" 331 | msgstr "تسجيل الدخول" 332 | 333 | #~ msgid "Show admin bar" 334 | #~ msgstr "عرض شريط المشرف" 335 | 336 | #~ msgid "You entered your login are incorrect!" 337 | #~ msgstr "لقد أدخلت تسجيل الدخول الخاصة بك غير صحيحة!" 338 | 339 | #~ msgid "Not available object." 340 | #~ msgstr "كائن غير متوفر." 341 | 342 | #~ msgid "Exclude pages" 343 | #~ msgstr "Vyloučit stránky z režimu údržby" 344 | 345 | #~ msgid "Choose Logo width" 346 | #~ msgstr "اختيار عرض الشعار" 347 | 348 | #~ msgid "Choose Logo height" 349 | #~ msgstr "اختيار ارتفاع الشعار" 350 | 351 | #~ msgid "Blur intensity" 352 | #~ msgstr "كثافة طمس" 353 | 354 | #~ msgid "Enable login" 355 | #~ msgstr "تمكين تسجيل الدخول" 356 | 357 | #~ msgid "Put Login On" 358 | #~ msgstr "وضع الدخول في" 359 | 360 | #~ msgid "Logo width" 361 | #~ msgstr "عرض الشعار" 362 | 363 | #~ msgid "Logo height" 364 | #~ msgstr "ارتفاع الشعار" 365 | 366 | #~ msgid "Admin bar" 367 | #~ msgstr "شريط المشرف" 368 | 369 | #~ msgid "Background blur" 370 | #~ msgstr "طمس الخلفية" 371 | 372 | #~ msgid "Apply a blur" 373 | #~ msgstr "تطبيق طمس" 374 | 375 | #~ msgid "Login On / Off" 376 | #~ msgstr "تسجيل الدخول تشغيل / إيقاف" 377 | 378 | #~ msgid "Service temporarily unavailable, Google analytics will be disable" 379 | #~ msgstr "الخدمة غير متوفرة مؤقتا، سيتم تعطيل تحليلات جوجل" 380 | 381 | #~ msgid "Sign In" 382 | #~ msgstr "تسجيل الدخول" 383 | 384 | #~ msgid "maintenance" 385 | #~ msgstr "صيانة" 386 | 387 | #~ msgid "Contact support" 388 | #~ msgstr "اتصل بالدعم" 389 | 390 | #~ msgid "" 391 | #~ "If you faced with any problems, have a question or suggestion you always " 392 | #~ "can contact us with any request on our website %2$s" 394 | #~ msgstr "" 395 | #~ "إذا كنت تواجه أي مشاكل، لديك سؤال أو اقتراح يمكنك دائما الاتصال بنا مع أي " 396 | #~ "طلب على موقعنا على الانترنت %2$s" 397 | 398 | #~ msgid "" 399 | #~ "If you like our plugin please rate it, %1$s leave feedback or purchase extended " 401 | #~ "version %1$s with more other features." 402 | #~ msgstr "" 403 | #~ "إذا كنت ترغب المساعد لدينا يرجى معدل لها اترك تقييم للخدمة أو شراء نسخة " 405 | #~ "موسعة %1$s مع المزيد من الميزات الأخرى." 406 | 407 | #~ msgid "Purchase" 408 | #~ msgstr "شراء" 409 | 410 | #~ msgid "We have time until launch" 411 | #~ msgstr "لدينا الوقت حتى إطلاق" 412 | 413 | #~ msgid "Be first of your friends who will know when the website goes live." 414 | #~ msgstr "كن أول من أصدقائك الذين سوف نعرف متى يذهب الموقع مباشرة." 415 | 416 | #~ msgid "Check out our extended version of plugin with new features" 417 | #~ msgstr "تحقق من نسخة موسعة لدينا من البرنامج المساعد مع ميزات جديدة" 418 | 419 | #~ msgid "Your session has expired." 420 | #~ msgstr "انتهت جلسة العمل الخاصة بك." 421 | 422 | #~ msgid "Customer login" 423 | #~ msgstr "تسجيل الدخول العملاء" 424 | 425 | #~ msgid "Please login to see website" 426 | #~ msgstr "الرجاء الدخول لمعرفة الموقع" 427 | 428 | #~ msgid "User roles" 429 | #~ msgstr "أدوار المستخدمين" 430 | 431 | #~ msgid "Choose users access permissions in maintenance mode." 432 | #~ msgstr "اختيار أذونات للمستخدمين الوصول في وضع الصيانة." 433 | -------------------------------------------------------------------------------- /languages/maintenance-cs_CZ.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/languages/maintenance-cs_CZ.mo -------------------------------------------------------------------------------- /languages/maintenance-cs_CZ.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: Maintenance\n" 4 | "POT-Creation-Date: 2019-08-27 13:21+0300\n" 5 | "PO-Revision-Date: 2019-08-27 13:21+0300\n" 6 | "Last-Translator: Petr Rohan \n" 7 | "Language-Team: Petr Rohan \n" 8 | "Language: cs_CZ\n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "X-Generator: Poedit 2.2.3\n" 13 | "X-Poedit-Basepath: ..\n" 14 | "X-Poedit-SourceCharset: UTF-8\n" 15 | "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" 16 | "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" 17 | "_nx_noop:3c,1,2;__ngettext_noop:1,2\n" 18 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 19 | "X-Poedit-SearchPath-0: .\n" 20 | "X-Poedit-SearchPathExcluded-0: *.js\n" 21 | 22 | #: includes/admin.php:7 includes/admin.php:106 includes/functions.php:688 23 | #: includes/functions.php:692 24 | msgid "Maintenance" 25 | msgstr "Maintenance" 26 | 27 | #: includes/admin.php:106 includes/admin.php:124 28 | msgid "Save changes" 29 | msgstr "Uložit změny" 30 | 31 | #: includes/functions.php:199 32 | msgid "Standard Fonts" 33 | msgstr "Standardní Fonty" 34 | 35 | #: includes/functions.php:206 36 | msgid "Google Web Fonts" 37 | msgstr "Google Web Fonts" 38 | 39 | #: includes/functions.php:256 40 | msgid "General Settings" 41 | msgstr "Základní nastavení" 42 | 43 | #: includes/functions.php:257 44 | msgid "Custom CSS" 45 | msgstr "Vlastní CSS" 46 | 47 | #: includes/functions.php:258 48 | msgid "Exclude pages from maintenance mode" 49 | msgstr "Vyloučit stránky z režimu údržby" 50 | 51 | #: includes/functions.php:264 52 | msgid "Pro version" 53 | msgstr "Verze PRO" 54 | 55 | #: includes/functions.php:271 56 | msgid "Fruitful Code projects" 57 | msgstr "Fruitful Code projects" 58 | 59 | #: includes/functions.php:277 60 | msgid "Support" 61 | msgstr "Podpora" 62 | 63 | #: includes/functions.php:283 64 | msgid "Translation" 65 | msgstr "Překlad" 66 | 67 | #: includes/functions.php:318 68 | msgid "Page title" 69 | msgstr "Titulek" 70 | 71 | #: includes/functions.php:319 72 | msgid "Headline" 73 | msgstr "Hlavní nadpis" 74 | 75 | #: includes/functions.php:320 76 | msgid "Description" 77 | msgstr "Popis" 78 | 79 | #: includes/functions.php:321 80 | msgid "Footer Text" 81 | msgstr "Text patičky" 82 | 83 | #: includes/functions.php:322 84 | msgid "Set Logo width" 85 | msgstr "Set šířka Logo" 86 | 87 | #: includes/functions.php:323 88 | msgid "Set Logo height" 89 | msgstr "Set výška Logo" 90 | 91 | #: includes/functions.php:324 92 | msgid "Logo" 93 | msgstr "Logo" 94 | 95 | #: includes/functions.php:324 96 | msgid "Upload Logo" 97 | msgstr "Uživatelské logo" 98 | 99 | #: includes/functions.php:325 100 | msgid "Retina logo" 101 | msgstr "Retina logo" 102 | 103 | #: includes/functions.php:325 104 | msgid "Upload Retina Logo" 105 | msgstr "Uživatelské Retina logo" 106 | 107 | #: includes/functions.php:327 108 | #, fuzzy 109 | #| msgid "Background image" 110 | msgid "Background image (portrait mode)" 111 | msgstr "Obrázek na pozadí" 112 | 113 | #: includes/functions.php:327 114 | msgid "Upload image for portrait device orientation" 115 | msgstr "" 116 | 117 | #: includes/functions.php:328 118 | #, fuzzy 119 | #| msgid "Background image" 120 | msgid "Page preloader image" 121 | msgstr "Obrázek na pozadí" 122 | 123 | #: includes/functions.php:328 124 | #, fuzzy 125 | #| msgid "Upload Background" 126 | msgid "Upload preloader" 127 | msgstr "Nahrát obrázek na pozadí" 128 | 129 | #: includes/functions.php:332 130 | msgid "503" 131 | msgstr "503" 132 | 133 | #: includes/functions.php:332 134 | msgid "Service temporarily unavailable, Google analytics will be disable." 135 | msgstr "Služba je dočasně nedostupná, Google analytics bude zakázán." 136 | 137 | #: includes/functions.php:339 138 | msgid "Google Analytics ID" 139 | msgstr "Google Analytics ID" 140 | 141 | #: includes/functions.php:339 142 | msgid "UA-XXXXX-X" 143 | msgstr "UA-XXXXX-X" 144 | 145 | #: includes/functions.php:340 146 | msgid "Set blur intensity" 147 | msgstr "Nastavit intenzitu rozostření" 148 | 149 | #: includes/functions.php:348 150 | msgid "Apply background blur" 151 | msgstr "Použít rozostření pozadí" 152 | 153 | #: includes/functions.php:349 154 | msgid "Enable frontend login" 155 | msgstr "Aktivovat frontend login" 156 | 157 | #: includes/functions.php:362 158 | msgid "CSS Code" 159 | msgstr "CSS kód" 160 | 161 | #: includes/functions.php:382 162 | msgid "Select the page to be displayed:" 163 | msgstr "Vyberte stránky, které se zobrazí normálně:" 164 | 165 | #: includes/functions.php:445 166 | msgid "Background image" 167 | msgstr "Obrázek na pozadí" 168 | 169 | #: includes/functions.php:445 170 | msgid "Upload Background" 171 | msgstr "Nahrát obrázek na pozadí" 172 | 173 | #: includes/functions.php:451 174 | msgid "Background color" 175 | msgstr "Barva pozadí" 176 | 177 | #: includes/functions.php:452 178 | msgid "Font color" 179 | msgstr "Barva písma" 180 | 181 | #: includes/functions.php:453 182 | #, fuzzy 183 | #| msgid "Background color" 184 | msgid "Login block background color" 185 | msgstr "Barva pozadí" 186 | 187 | #: includes/functions.php:460 188 | msgid "Font family" 189 | msgstr "Typ písma" 190 | 191 | #: includes/functions.php:466 192 | msgid "Subsets" 193 | msgstr "podmnožiny" 194 | 195 | #: includes/functions.php:474 196 | msgid "Have any questions?" 197 | msgstr "Máte nějaké dotazy?" 198 | 199 | #: includes/functions.php:476 200 | #, php-format 201 | msgid "" 202 | "You may find answers to your questions at support forum
You may
contact us with customization requests and " 206 | "suggestions.
Please visit our website to learn about us and our services " 207 | "%2$s" 208 | msgstr "" 209 | "Můžete najít odpovědi na své otázky na fórum podpory
Můžeš
nás kontaktovat s žádostí o přizpůsobení a " 213 | "návrhy.
Prosím navštivte naše webové stránky dozvědět se o nás a našich " 214 | "službách %2$s" 215 | 216 | #: includes/functions.php:487 217 | msgid "This plugin is translation friendly" 218 | msgstr "Tento plugin je překlad přátelský" 219 | 220 | #: includes/functions.php:489 221 | #, php-format 222 | msgid "" 223 | "Want to improve translation or make one for your native language? %2$s" 225 | msgstr "" 226 | "Chcete zlepšit překladu nebo provést jednu pro svého rodného jazyka? %2$s" 228 | 229 | #: includes/functions.php:491 230 | msgid "Follow this tutorial" 231 | msgstr "Postupujte podle tohoto návodu" 232 | 233 | #: includes/functions.php:500 234 | msgid "Premium WordPress themes" 235 | msgstr "Premium WordPress témata" 236 | 237 | #: includes/functions.php:506 238 | msgid "ANAGLYPH - One page / Multi Page WordPress Theme" 239 | msgstr "ANAGLYF - Jednostránková / Multistránková WordPress šablona" 240 | 241 | #: includes/functions.php:511 242 | msgid "Love.ly - Simple & Elegant WordPress theme" 243 | msgstr "Love.ly - Jednoduchá & elegantní WordPress šablona" 244 | 245 | #: includes/functions.php:517 246 | msgid "Zoner - Real Estate WordPress theme" 247 | msgstr "Zoner - Real Estate WordPress téma" 248 | 249 | #: includes/functions.php:529 250 | msgid "Extended functionality" 251 | msgstr "Rozšířené funkcionality" 252 | 253 | #: includes/functions.php:531 254 | #, php-format 255 | msgid "" 256 | "Purchase PRO version with " 258 | "extended functionality. %1$s If you like our plugin please rate it, leave feedbacks." 262 | msgstr "" 263 | "Nákup PRO verze s " 265 | "rozšířenou funkcionalitou. %1$s Pokud se vám líbí náš plugin prosím ohodnoť to , opustí zpětných vazeb ." 269 | 270 | #: includes/functions.php:537 271 | msgid "Demo website" 272 | msgstr "Demo stránky" 273 | 274 | #: includes/functions.php:688 includes/functions.php:695 275 | msgid " is " 276 | msgstr "" 277 | 278 | #: includes/functions.php:768 279 | msgid "Website is under construction" 280 | msgstr "Stránky jsou ve výstavbě" 281 | 282 | #: includes/functions.php:769 283 | msgid "Maintenance mode is on" 284 | msgstr "Maintenance je zapnutý" 285 | 286 | #: includes/functions.php:770 287 | msgid "Website will be available soon" 288 | msgstr "Webové stránky budou brzy k dispozici" 289 | 290 | #: load/functions.php:47 291 | msgid "Permission access denied!" 292 | msgstr "Přístup do této části webu nemáte povolen." 293 | 294 | #: load/functions.php:61 295 | msgid "Login is incorrect!" 296 | msgstr "" 297 | 298 | #: load/functions.php:66 299 | #, fuzzy 300 | #| msgid "You entered your password are incorrect!" 301 | msgid "Password is incorrect!" 302 | msgstr "Heslo je nesprávné." 303 | 304 | #: load/functions.php:69 305 | #, fuzzy 306 | #| msgid "You entered your login and password are incorrect!" 307 | msgid "Login and password are incorrect!" 308 | msgstr "Vaše přihlašovací jméno, nebo heslo jsou zadány chybně!" 309 | 310 | #: load/functions.php:149 311 | msgid "Please verify that you are not a robot." 312 | msgstr "" 313 | 314 | #: load/functions.php:374 315 | msgid "User Login" 316 | msgstr "Přihlásit" 317 | 318 | #: load/functions.php:376 319 | msgid "Username" 320 | msgstr "Uživatelské jméno" 321 | 322 | #: load/functions.php:377 323 | msgid "Password" 324 | msgstr "Heslo" 325 | 326 | #: load/functions.php:378 327 | msgid "Lost Password" 328 | msgstr "Reset hesla" 329 | 330 | #: load/functions.php:379 331 | msgid "Login" 332 | msgstr "Přihlásit" 333 | 334 | #~ msgid "Show admin bar" 335 | #~ msgstr "Zobrazit admin panel" 336 | 337 | #~ msgid "You entered your login are incorrect!" 338 | #~ msgstr "Vaše přihlašovací údaje nejsou správné." 339 | 340 | #~ msgid "Not available object." 341 | #~ msgstr "Objekt, není k dispozici." 342 | 343 | #~ msgid "Exclude pages" 344 | #~ msgstr "Stránky s vyjímkou" 345 | 346 | #~ msgid "Choose Logo width" 347 | #~ msgstr "Vyberte si šířku Logo" 348 | 349 | #~ msgid "Choose Logo height" 350 | #~ msgstr "Vyberte si výšku Logo" 351 | 352 | #~ msgid "Blur intensity" 353 | #~ msgstr "Intenzita rozostření" 354 | 355 | #~ msgid "Enable login" 356 | #~ msgstr "povolit přihlášení" 357 | 358 | #~ msgid "Put Login On" 359 | #~ msgstr "Put přihlášení na" 360 | 361 | #~ msgid "Logo width" 362 | #~ msgstr "šířka logo" 363 | 364 | #~ msgid "Logo height" 365 | #~ msgstr "výška logo" 366 | 367 | #~ msgid "Admin bar" 368 | #~ msgstr "Admin panel" 369 | 370 | #~ msgid "Background blur" 371 | #~ msgstr "Rozostření pozadí" 372 | 373 | #~ msgid "Apply a blur" 374 | #~ msgstr "Aplikovat rozostření" 375 | 376 | #~ msgid "Login On / Off" 377 | #~ msgstr "Přihlášení zap/vyp" 378 | 379 | #~ msgid "Service temporarily unavailable, Google analytics will be disable" 380 | #~ msgstr "Služba je dočasně nedostupná, Google analytics budou vypnuty" 381 | 382 | #~ msgid "Sign In" 383 | #~ msgstr "Přihlásit se" 384 | -------------------------------------------------------------------------------- /languages/maintenance-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/languages/maintenance-de_DE.mo -------------------------------------------------------------------------------- /languages/maintenance-es_ES.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/languages/maintenance-es_ES.mo -------------------------------------------------------------------------------- /languages/maintenance-fa-IR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/languages/maintenance-fa-IR.mo -------------------------------------------------------------------------------- /languages/maintenance-fa-IR.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: maintenance\n" 4 | "POT-Creation-Date: 2019-08-27 13:21+0300\n" 5 | "PO-Revision-Date: 2019-08-27 13:21+0300\n" 6 | "Last-Translator: René Maurer \n" 7 | "Language-Team: EWORX.IR \n" 8 | "Language: fa\n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "X-Generator: Poedit 2.2.3\n" 13 | "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" 14 | "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" 15 | "_nx_noop:3c,1,2;__ngettext_noop:1,2\n" 16 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 17 | "X-Poedit-Basepath: ..\n" 18 | "X-Poedit-SearchPath-0: .\n" 19 | "X-Poedit-SearchPathExcluded-0: *.js\n" 20 | 21 | #: includes/admin.php:7 includes/admin.php:106 includes/functions.php:688 22 | #: includes/functions.php:692 23 | msgid "Maintenance" 24 | msgstr "تعمیر و نگهداری" 25 | 26 | #: includes/admin.php:106 includes/admin.php:124 27 | msgid "Save changes" 28 | msgstr "ذخیره تغییرات" 29 | 30 | #: includes/functions.php:199 31 | msgid "Standard Fonts" 32 | msgstr "فونت های استاندارد" 33 | 34 | #: includes/functions.php:206 35 | msgid "Google Web Fonts" 36 | msgstr "فونت وب گوگل" 37 | 38 | #: includes/functions.php:256 39 | msgid "General Settings" 40 | msgstr "تنظیمات عمومی" 41 | 42 | #: includes/functions.php:257 43 | msgid "Custom CSS" 44 | msgstr "CSS سفارشی" 45 | 46 | #: includes/functions.php:258 47 | msgid "Exclude pages from maintenance mode" 48 | msgstr "حذف صفحات از حالت تعمیر و نگهداری" 49 | 50 | #: includes/functions.php:264 51 | msgid "Pro version" 52 | msgstr "نسخه حرفه ای" 53 | 54 | #: includes/functions.php:271 55 | msgid "Fruitful Code projects" 56 | msgstr " Fruitful Code پروژه ها" 57 | 58 | #: includes/functions.php:277 59 | msgid "Support" 60 | msgstr "پشتیبانی" 61 | 62 | #: includes/functions.php:283 63 | msgid "Translation" 64 | msgstr "ترجمه" 65 | 66 | #: includes/functions.php:318 67 | msgid "Page title" 68 | msgstr "عنوان صفحه" 69 | 70 | #: includes/functions.php:319 71 | msgid "Headline" 72 | msgstr "عنوان" 73 | 74 | #: includes/functions.php:320 75 | msgid "Description" 76 | msgstr "توضیحات" 77 | 78 | #: includes/functions.php:321 79 | msgid "Footer Text" 80 | msgstr "پاورقی متن" 81 | 82 | #: includes/functions.php:322 83 | msgid "Set Logo width" 84 | msgstr "تنظیم عرض لوگو" 85 | 86 | #: includes/functions.php:323 87 | msgid "Set Logo height" 88 | msgstr "تنظیم ارتفاع لوگو" 89 | 90 | #: includes/functions.php:324 91 | msgid "Logo" 92 | msgstr "لوگو" 93 | 94 | #: includes/functions.php:324 95 | msgid "Upload Logo" 96 | msgstr "لوگو خود را بارگذاری کنید." 97 | 98 | #: includes/functions.php:325 99 | msgid "Retina logo" 100 | msgstr "آرم شبکیه چشم" 101 | 102 | #: includes/functions.php:325 103 | msgid "Upload Retina Logo" 104 | msgstr "لوگو بارگذاری شبکیه چشم" 105 | 106 | #: includes/functions.php:327 107 | #, fuzzy 108 | #| msgid "Background image" 109 | msgid "Background image (portrait mode)" 110 | msgstr "تصویر پس زمینه" 111 | 112 | #: includes/functions.php:327 113 | msgid "Upload image for portrait device orientation" 114 | msgstr "" 115 | 116 | #: includes/functions.php:328 117 | #, fuzzy 118 | #| msgid "Background image" 119 | msgid "Page preloader image" 120 | msgstr "تصویر پس زمینه" 121 | 122 | #: includes/functions.php:328 123 | #, fuzzy 124 | #| msgid "Upload Background" 125 | msgid "Upload preloader" 126 | msgstr "بارگذاری تصویر پس‌زمینه" 127 | 128 | #: includes/functions.php:332 129 | msgid "503" 130 | msgstr "" 131 | 132 | #: includes/functions.php:332 133 | msgid "Service temporarily unavailable, Google analytics will be disable." 134 | msgstr "خدمات موقتا در دسترس، تجزیه و تحلیل گوگل غیرفعال خواهد شد." 135 | 136 | #: includes/functions.php:339 137 | msgid "Google Analytics ID" 138 | msgstr "ID گوگل آنالیتیک" 139 | 140 | #: includes/functions.php:339 141 | msgid "UA-XXXXX-X" 142 | msgstr "" 143 | 144 | #: includes/functions.php:340 145 | msgid "Set blur intensity" 146 | msgstr "شدت تاری تنظیم" 147 | 148 | #: includes/functions.php:348 149 | msgid "Apply background blur" 150 | msgstr "درخواست تاری پس زمینه" 151 | 152 | #: includes/functions.php:349 153 | msgid "Enable frontend login" 154 | msgstr "فعال کردن ورود ظاهر" 155 | 156 | #: includes/functions.php:362 157 | msgid "CSS Code" 158 | msgstr "کد CSS" 159 | 160 | #: includes/functions.php:382 161 | msgid "Select the page to be displayed:" 162 | msgstr "صفحه نمایش داده می شود را انتخاب کنید:" 163 | 164 | #: includes/functions.php:445 165 | msgid "Background image" 166 | msgstr "تصویر پس زمینه" 167 | 168 | #: includes/functions.php:445 169 | msgid "Upload Background" 170 | msgstr "بارگذاری تصویر پس‌زمینه" 171 | 172 | #: includes/functions.php:451 173 | msgid "Background color" 174 | msgstr "رنگ پس زمینه" 175 | 176 | #: includes/functions.php:452 177 | msgid "Font color" 178 | msgstr "رنگ فونت" 179 | 180 | #: includes/functions.php:453 181 | #, fuzzy 182 | #| msgid "Background color" 183 | msgid "Login block background color" 184 | msgstr "رنگ پس زمینه" 185 | 186 | #: includes/functions.php:460 187 | msgid "Font family" 188 | msgstr "خانواده فونت" 189 | 190 | #: includes/functions.php:466 191 | msgid "Subsets" 192 | msgstr "زیر مجموعه" 193 | 194 | #: includes/functions.php:474 195 | msgid "Have any questions?" 196 | msgstr "سوال یا مشکلی دارید؟" 197 | 198 | #: includes/functions.php:476 199 | #, php-format 200 | msgid "" 201 | "You may find answers to your questions at support forum
You may
contact us with customization requests and " 205 | "suggestions.
Please visit our website to learn about us and our services " 206 | "%2$s" 207 | msgstr "" 208 | 209 | #: includes/functions.php:487 210 | msgid "This plugin is translation friendly" 211 | msgstr "این افزونه ترجمه پسند" 212 | 213 | #: includes/functions.php:489 214 | #, php-format 215 | msgid "" 216 | "Want to improve translation or make one for your native language? %2$s" 218 | msgstr "" 219 | "می خواهید برای بهبود ترجمه و یا یکی برای زبان مادری خود را؟ %2$s" 221 | 222 | #: includes/functions.php:491 223 | msgid "Follow this tutorial" 224 | msgstr "به دنبال این آموزش" 225 | 226 | #: includes/functions.php:500 227 | msgid "Premium WordPress themes" 228 | msgstr "حق بیمه وردپرس تم" 229 | 230 | #: includes/functions.php:506 231 | msgid "ANAGLYPH - One page / Multi Page WordPress Theme" 232 | msgstr "" 233 | 234 | #: includes/functions.php:511 235 | msgid "Love.ly - Simple & Elegant WordPress theme" 236 | msgstr "" 237 | 238 | #: includes/functions.php:517 239 | msgid "Zoner - Real Estate WordPress theme" 240 | msgstr "" 241 | 242 | #: includes/functions.php:529 243 | msgid "Extended functionality" 244 | msgstr "کارکرد با قابلیت بیشتر" 245 | 246 | #: includes/functions.php:531 247 | #, php-format 248 | msgid "" 249 | "Purchase PRO version with " 251 | "extended functionality. %1$s If you like our plugin please rate it, leave feedbacks." 255 | msgstr "" 256 | 257 | #: includes/functions.php:537 258 | msgid "Demo website" 259 | msgstr "وب سایت آزمایشی" 260 | 261 | #: includes/functions.php:688 includes/functions.php:695 262 | msgid " is " 263 | msgstr "" 264 | 265 | #: includes/functions.php:768 266 | msgid "Website is under construction" 267 | msgstr "وب سایت در دست ساخت است" 268 | 269 | #: includes/functions.php:769 270 | msgid "Maintenance mode is on" 271 | msgstr "حالت تعمیر و نگهداری روشن است" 272 | 273 | #: includes/functions.php:770 274 | msgid "Website will be available soon" 275 | msgstr "وب سایت به زودی در دسترس خواهد" 276 | 277 | #: load/functions.php:47 278 | msgid "Permission access denied!" 279 | msgstr "اجازه دسترسی رد شد!" 280 | 281 | #: load/functions.php:61 282 | msgid "Login is incorrect!" 283 | msgstr "" 284 | 285 | #: load/functions.php:66 286 | #, fuzzy 287 | #| msgid "You entered your password are incorrect!" 288 | msgid "Password is incorrect!" 289 | msgstr "رمز عبور اشتباه است!" 290 | 291 | #: load/functions.php:69 292 | #, fuzzy 293 | #| msgid "You entered your login and password are incorrect!" 294 | msgid "Login and password are incorrect!" 295 | msgstr "نام کاربری یا رمز عبور اشتباه است!" 296 | 297 | #: load/functions.php:149 298 | msgid "Please verify that you are not a robot." 299 | msgstr "" 300 | 301 | #: load/functions.php:374 302 | msgid "User Login" 303 | msgstr "ورود کاربر" 304 | 305 | #: load/functions.php:376 306 | msgid "Username" 307 | msgstr "نام کاربری" 308 | 309 | #: load/functions.php:377 310 | msgid "Password" 311 | msgstr "کلمه عبور" 312 | 313 | #: load/functions.php:378 314 | msgid "Lost Password" 315 | msgstr "رمز فراموش شده" 316 | 317 | #: load/functions.php:379 318 | msgid "Login" 319 | msgstr "ورود" 320 | 321 | #~ msgid "Show admin bar" 322 | #~ msgstr "نمایش نوار مدیریت" 323 | 324 | #~ msgid "You entered your login are incorrect!" 325 | #~ msgstr "نام کاربری اشتباه است!" 326 | 327 | #~ msgid "Not available object." 328 | #~ msgstr "شی در دسترس نیست." 329 | 330 | #~ msgid "Exclude pages" 331 | #~ msgstr "به غیر از صفحات" 332 | 333 | #~ msgid "Choose Logo width" 334 | #~ msgstr "انتخاب لوگوی عرض" 335 | 336 | #~ msgid "Choose Logo height" 337 | #~ msgstr "انتخاب ارتفاع آرم" 338 | 339 | #~ msgid "Blur intensity" 340 | #~ msgstr "شدت محو کردن پس‌زمینه" 341 | 342 | #~ msgid "Enable login" 343 | #~ msgstr "فعال کردن ورود" 344 | 345 | #~ msgid "Put Login On" 346 | #~ msgstr "قرار دادن ورود به" 347 | 348 | #~ msgid "Logo width" 349 | #~ msgstr "عرض آرم" 350 | 351 | #~ msgid "Logo height" 352 | #~ msgstr "ارتفاع آرم" 353 | 354 | #~ msgid "Admin bar" 355 | #~ msgstr "منوی ادمین" 356 | 357 | #~ msgid "Background blur" 358 | #~ msgstr "تاری پس‌زمینه" 359 | 360 | #~ msgid "Apply a blur" 361 | #~ msgstr "اعمال تاری" 362 | 363 | #~ msgid "Login On / Off" 364 | #~ msgstr "ورود به سیستم روشن / خاموش" 365 | 366 | #~ msgid "Service temporarily unavailable, Google analytics will be disable" 367 | #~ msgstr "خدمات موقتا در دسترس، تجزیه و تحلیل گوگل غیرفعال خواهد شد" 368 | 369 | #~ msgid "Sign In" 370 | #~ msgstr "ورود" 371 | 372 | #~ msgid "maintenance" 373 | #~ msgstr "تعمیر و نگهداری" 374 | 375 | #~ msgid "Contact support" 376 | #~ msgstr "با پشتیبانی تماس بگیرید" 377 | 378 | #~ msgid "Purchase" 379 | #~ msgstr "خرید" 380 | 381 | #~ msgid "We have time until launch" 382 | #~ msgstr "برای ارائه به زمان نیاز داریم" 383 | 384 | #~ msgid "Be first of your friends who will know when the website goes live." 385 | #~ msgstr "اولین کسی باشید که از آماده بودن وبسایت مطلع میشود." 386 | 387 | #~ msgid "Check out our extended version of plugin with new features" 388 | #~ msgstr "نسخه توسعه یافته از افزونه با ویژگی های جدید را بررسی کنید" 389 | 390 | #~ msgid "Your session has expired." 391 | #~ msgstr "جلسه شما منقضی شده است." 392 | 393 | #~ msgid "Customer login" 394 | #~ msgstr "ورود مشتری" 395 | 396 | #~ msgid "Please login to see website" 397 | #~ msgstr "لطفا برای مشاهده وبسایت وارد شوید" 398 | 399 | #~ msgid "User roles" 400 | #~ msgstr "نقش کاربران" 401 | 402 | # not really sur about « We have time until launch » Because I can’t find it on the demo version… 403 | #~ msgid "Choose users access permissions in maintenance mode." 404 | #~ msgstr "مجوزهای دسترسی کاربران را در حالت نگهداری را انتخاب کنید." 405 | -------------------------------------------------------------------------------- /languages/maintenance-fi.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/languages/maintenance-fi.mo -------------------------------------------------------------------------------- /languages/maintenance-fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/languages/maintenance-fr_FR.mo -------------------------------------------------------------------------------- /languages/maintenance-hu_HU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/languages/maintenance-hu_HU.mo -------------------------------------------------------------------------------- /languages/maintenance-it_IT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/languages/maintenance-it_IT.mo -------------------------------------------------------------------------------- /languages/maintenance-ja.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/languages/maintenance-ja.mo -------------------------------------------------------------------------------- /languages/maintenance-ja.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: Maintenance\n" 4 | "POT-Creation-Date: 2019-08-27 13:23+0300\n" 5 | "PO-Revision-Date: 2019-08-27 13:23+0300\n" 6 | "Last-Translator: DEWEY Inc. \n" 7 | "Language-Team: DEWEY Inc. \n" 8 | "Language: ja_JP\n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "X-Generator: Poedit 2.2.3\n" 13 | "X-Poedit-Basepath: ..\n" 14 | "X-Poedit-WPHeader: maintenance.php\n" 15 | "Plural-Forms: nplurals=1; plural=0;\n" 16 | "X-Poedit-SourceCharset: UTF-8\n" 17 | "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" 18 | "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" 19 | "_nx_noop:3c,1,2;__ngettext_noop:1,2\n" 20 | "X-Poedit-SearchPath-0: .\n" 21 | "X-Poedit-SearchPathExcluded-0: *.js\n" 22 | 23 | #. Plugin Name of the plugin/theme 24 | #: includes/admin.php:7 includes/admin.php:106 includes/functions.php:688 25 | #: includes/functions.php:692 26 | msgid "Maintenance" 27 | msgstr "" 28 | 29 | #: includes/admin.php:106 includes/admin.php:124 30 | msgid "Save changes" 31 | msgstr "変更を保存" 32 | 33 | #: includes/functions.php:199 34 | msgid "Standard Fonts" 35 | msgstr "標準フォント" 36 | 37 | #: includes/functions.php:206 38 | msgid "Google Web Fonts" 39 | msgstr "Google Web フォント" 40 | 41 | #: includes/functions.php:256 42 | msgid "General Settings" 43 | msgstr "基本設定" 44 | 45 | #: includes/functions.php:257 46 | msgid "Custom CSS" 47 | msgstr "カスタムCSS" 48 | 49 | #: includes/functions.php:258 50 | msgid "Exclude pages from maintenance mode" 51 | msgstr "メンテナンスモードからページを除外" 52 | 53 | #: includes/functions.php:264 54 | msgid "Pro version" 55 | msgstr "プロ版" 56 | 57 | #: includes/functions.php:271 58 | msgid "Fruitful Code projects" 59 | msgstr "Fruitfulコードプロジェクト" 60 | 61 | #: includes/functions.php:277 62 | msgid "Support" 63 | msgstr "サポート" 64 | 65 | #: includes/functions.php:283 66 | msgid "Translation" 67 | msgstr "翻訳" 68 | 69 | #: includes/functions.php:318 70 | msgid "Page title" 71 | msgstr "ページタイトル" 72 | 73 | #: includes/functions.php:319 74 | msgid "Headline" 75 | msgstr "見出し" 76 | 77 | #: includes/functions.php:320 78 | msgid "Description" 79 | msgstr "説明" 80 | 81 | #: includes/functions.php:321 82 | msgid "Footer Text" 83 | msgstr "フッターテキスト" 84 | 85 | #: includes/functions.php:322 86 | msgid "Set Logo width" 87 | msgstr "ロゴの幅設定" 88 | 89 | #: includes/functions.php:323 90 | msgid "Set Logo height" 91 | msgstr "ロゴの高さ設定" 92 | 93 | #: includes/functions.php:324 94 | msgid "Logo" 95 | msgstr "ロゴ" 96 | 97 | #: includes/functions.php:324 98 | msgid "Upload Logo" 99 | msgstr "ロゴをアップロード" 100 | 101 | #: includes/functions.php:325 102 | msgid "Retina logo" 103 | msgstr "Retina ロゴ" 104 | 105 | #: includes/functions.php:325 106 | msgid "Upload Retina Logo" 107 | msgstr "Retina対応のロゴをアップロード" 108 | 109 | #: includes/functions.php:327 110 | #, fuzzy 111 | #| msgid "Background image" 112 | msgid "Background image (portrait mode)" 113 | msgstr "背景画像" 114 | 115 | #: includes/functions.php:327 116 | msgid "Upload image for portrait device orientation" 117 | msgstr "" 118 | 119 | #: includes/functions.php:328 120 | #, fuzzy 121 | #| msgid "Background image" 122 | msgid "Page preloader image" 123 | msgstr "背景画像" 124 | 125 | #: includes/functions.php:328 126 | #, fuzzy 127 | #| msgid "Upload Background" 128 | msgid "Upload preloader" 129 | msgstr "背景画像をアップロード" 130 | 131 | #: includes/functions.php:332 132 | msgid "503" 133 | msgstr "503" 134 | 135 | #: includes/functions.php:332 136 | msgid "Service temporarily unavailable, Google analytics will be disable." 137 | msgstr "サービスが一時的に利用できません。Google analyticsは無効になります。" 138 | 139 | #: includes/functions.php:339 140 | msgid "Google Analytics ID" 141 | msgstr "Google アナリティクスID" 142 | 143 | #: includes/functions.php:339 144 | msgid "UA-XXXXX-X" 145 | msgstr "UA-XXXXX-X" 146 | 147 | #: includes/functions.php:340 148 | msgid "Set blur intensity" 149 | msgstr "ぼかし強度設定" 150 | 151 | #: includes/functions.php:348 152 | msgid "Apply background blur" 153 | msgstr "背景にぼかしを適用します。" 154 | 155 | #: includes/functions.php:349 156 | msgid "Enable frontend login" 157 | msgstr "フロントエンドのログインを有効にします" 158 | 159 | #: includes/functions.php:362 160 | msgid "CSS Code" 161 | msgstr "CSSコード" 162 | 163 | #: includes/functions.php:382 164 | msgid "Select the page to be displayed:" 165 | msgstr "表示するページを選択します。" 166 | 167 | #: includes/functions.php:445 168 | msgid "Background image" 169 | msgstr "背景画像" 170 | 171 | #: includes/functions.php:445 172 | msgid "Upload Background" 173 | msgstr "背景画像をアップロード" 174 | 175 | #: includes/functions.php:451 176 | msgid "Background color" 177 | msgstr "背景色" 178 | 179 | #: includes/functions.php:452 180 | msgid "Font color" 181 | msgstr "フォントの色" 182 | 183 | #: includes/functions.php:453 184 | #, fuzzy 185 | #| msgid "Background color" 186 | msgid "Login block background color" 187 | msgstr "背景色" 188 | 189 | #: includes/functions.php:460 190 | msgid "Font family" 191 | msgstr "フォントの種類" 192 | 193 | #: includes/functions.php:466 194 | msgid "Subsets" 195 | msgstr "サブセット" 196 | 197 | #: includes/functions.php:474 198 | msgid "Have any questions?" 199 | msgstr "ご質問がありますか?" 200 | 201 | #: includes/functions.php:476 202 | #, php-format 203 | msgid "" 204 | "You may find answers to your questions at support forum
You may
contact us with customization requests and " 208 | "suggestions.
Please visit our website to learn about us and our services " 209 | "%2$s" 210 | msgstr "" 211 | "こちらでよくある質問を見ることができますサポートフォーラム
それでも解決しない場合は
お問い合わせからご希望や提案をお" 215 | "願いします。(英語)
私たちのサービスを知っていただくために、ぜひ私達の" 216 | "ウェブサイトをご覧ください%2$s" 217 | 218 | #: includes/functions.php:487 219 | msgid "This plugin is translation friendly" 220 | msgstr "このプラグインは、翻訳フレンドリーです" 221 | 222 | #: includes/functions.php:489 223 | #, php-format 224 | msgid "" 225 | "Want to improve translation or make one for your native language? %2$s" 227 | msgstr "" 228 | "翻訳を作成または改善したりしてみませんか? " 229 | "%2$s" 230 | 231 | #: includes/functions.php:491 232 | msgid "Follow this tutorial" 233 | msgstr "こちらのチュートリアルからお願いします" 234 | 235 | #: includes/functions.php:500 236 | msgid "Premium WordPress themes" 237 | msgstr "プレミアムWordpressのテーマ" 238 | 239 | #: includes/functions.php:506 240 | msgid "ANAGLYPH - One page / Multi Page WordPress Theme" 241 | msgstr "アナグリフ - 1ページ/マルチページWordPressのテーマ" 242 | 243 | #: includes/functions.php:511 244 | msgid "Love.ly - Simple & Elegant WordPress theme" 245 | msgstr "Love.ly - シンプル&エレガントなWordPressのテーマ" 246 | 247 | #: includes/functions.php:517 248 | msgid "Zoner - Real Estate WordPress theme" 249 | msgstr "Zonerの - 不動産WordPressのテーマ" 250 | 251 | #: includes/functions.php:529 252 | msgid "Extended functionality" 253 | msgstr "拡張された機能" 254 | 255 | #: includes/functions.php:531 256 | #, php-format 257 | msgid "" 258 | "Purchase PRO version with " 260 | "extended functionality. %1$s If you like our plugin please rate it, leave feedbacks." 264 | msgstr "" 265 | "購入PRO拡張機能とバージョ" 267 | "ンを。あなたは私たちのプラグインがお願いした場合は%1$sがそれを評価しフィードバックを残します 。" 271 | 272 | #: includes/functions.php:537 273 | msgid "Demo website" 274 | msgstr "デモサイト" 275 | 276 | #: includes/functions.php:688 includes/functions.php:695 277 | msgid " is " 278 | msgstr "が" 279 | 280 | #: includes/functions.php:768 281 | msgid "Website is under construction" 282 | msgstr "ウェブサイトは工事中です" 283 | 284 | #: includes/functions.php:769 285 | msgid "Maintenance mode is on" 286 | msgstr "メンテナンスモードがオンになっています" 287 | 288 | #: includes/functions.php:770 289 | msgid "Website will be available soon" 290 | msgstr "ウェブサイトは、すぐに利用できるようになります" 291 | 292 | #: load/functions.php:47 293 | msgid "Permission access denied!" 294 | msgstr "アクセスが拒否されました!" 295 | 296 | #: load/functions.php:61 297 | msgid "Login is incorrect!" 298 | msgstr "" 299 | 300 | #: load/functions.php:66 301 | #, fuzzy 302 | #| msgid "You entered your password are incorrect!" 303 | msgid "Password is incorrect!" 304 | msgstr "パスワードが間違っています!" 305 | 306 | #: load/functions.php:69 307 | #, fuzzy 308 | #| msgid "You entered your login and password are incorrect!" 309 | msgid "Login and password are incorrect!" 310 | msgstr "ログイン名とパスワードが正しくありません!" 311 | 312 | #: load/functions.php:149 313 | msgid "Please verify that you are not a robot." 314 | msgstr "ロボットではないことを確認してください。" 315 | 316 | #: load/functions.php:374 317 | msgid "User Login" 318 | msgstr "ユーザーログイン" 319 | 320 | #: load/functions.php:376 321 | msgid "Username" 322 | msgstr "ユーザー名" 323 | 324 | #: load/functions.php:377 325 | msgid "Password" 326 | msgstr "パスワード" 327 | 328 | #: load/functions.php:378 329 | msgid "Lost Password" 330 | msgstr "パスワード紛失" 331 | 332 | #: load/functions.php:379 333 | msgid "Login" 334 | msgstr "ログイン" 335 | 336 | #. Plugin URI of the plugin/theme 337 | msgid "http://wordpress.org/plugins/maintenance/" 338 | msgstr "" 339 | 340 | #. Description of the plugin/theme 341 | msgid "" 342 | "Take your website for maintenance away from public view. Use maintenance " 343 | "plugin if your website is in development or you need to change a few things, " 344 | "run an upgrade. Make it only accessible by login and password. Plugin has a " 345 | "options to add a logo, background, headline, message, colors, login, etc. " 346 | "Extended PRO with more features version is available for purchase." 347 | msgstr "" 348 | 349 | #. Author of the plugin/theme 350 | msgid "fruitfulcode" 351 | msgstr "" 352 | 353 | #. Author URI of the plugin/theme 354 | msgid "https://fruitfulcode.com" 355 | msgstr "" 356 | 357 | #~ msgid "Show admin bar" 358 | #~ msgstr "管理メニューバーへ表示" 359 | 360 | #~ msgid "You entered your login are incorrect!" 361 | #~ msgstr "ログイン情報が正しくありません!" 362 | -------------------------------------------------------------------------------- /languages/maintenance-nl_NL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/languages/maintenance-nl_NL.mo -------------------------------------------------------------------------------- /languages/maintenance-pl_PL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/languages/maintenance-pl_PL.mo -------------------------------------------------------------------------------- /languages/maintenance-pl_PL.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: Maintenance\n" 4 | "POT-Creation-Date: 2019-08-27 13:24+0300\n" 5 | "PO-Revision-Date: 2019-08-27 13:24+0300\n" 6 | "Last-Translator: Pedro Mendonça \n" 7 | "Language-Team: Pedro Mendonça \n" 8 | "Language: pl_PL\n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "X-Generator: Poedit 2.2.3\n" 13 | "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" 14 | "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;" 15 | "esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" 16 | "X-Poedit-Basepath: ..\n" 17 | "X-Poedit-SourceCharset: UTF-8\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | "X-Poedit-WPHeader: maintenance.php\n" 20 | "X-Poedit-SearchPath-0: .\n" 21 | 22 | #. Plugin Name of the plugin/theme 23 | #: includes/admin.php:7 includes/admin.php:106 includes/functions.php:688 24 | #: includes/functions.php:692 25 | msgid "Maintenance" 26 | msgstr "Maintenance" 27 | 28 | #: includes/admin.php:106 includes/admin.php:124 29 | msgid "Save changes" 30 | msgstr "Zapisz zmiany" 31 | 32 | #: includes/functions.php:199 33 | msgid "Standard Fonts" 34 | msgstr "Standardowe czcionki" 35 | 36 | #: includes/functions.php:206 37 | msgid "Google Web Fonts" 38 | msgstr "Czcionki Google Web" 39 | 40 | #: includes/functions.php:256 41 | msgid "General Settings" 42 | msgstr "Ustawienia" 43 | 44 | #: includes/functions.php:257 45 | msgid "Custom CSS" 46 | msgstr "Własny CSS" 47 | 48 | #: includes/functions.php:258 49 | msgid "Exclude pages from maintenance mode" 50 | msgstr "Wykluczanie stron z trybu konserwacji" 51 | 52 | #: includes/functions.php:264 53 | msgid "Pro version" 54 | msgstr "Wersja Pro" 55 | 56 | #: includes/functions.php:271 57 | msgid "Fruitful Code projects" 58 | msgstr "Projekty Fruitful Code" 59 | 60 | #: includes/functions.php:277 61 | msgid "Support" 62 | msgstr "Wsparcie" 63 | 64 | #: includes/functions.php:283 65 | msgid "Translation" 66 | msgstr "" 67 | 68 | #: includes/functions.php:318 69 | msgid "Page title" 70 | msgstr "Tytuł strony" 71 | 72 | #: includes/functions.php:319 73 | msgid "Headline" 74 | msgstr "Nagłówek" 75 | 76 | #: includes/functions.php:320 77 | msgid "Description" 78 | msgstr "Opis" 79 | 80 | #: includes/functions.php:321 81 | msgid "Footer Text" 82 | msgstr "Tekst w stopce" 83 | 84 | #: includes/functions.php:322 85 | msgid "Set Logo width" 86 | msgstr "Szerokość logo" 87 | 88 | #: includes/functions.php:323 89 | msgid "Set Logo height" 90 | msgstr "Wysokość loga" 91 | 92 | #: includes/functions.php:324 93 | msgid "Logo" 94 | msgstr "Logo" 95 | 96 | #: includes/functions.php:324 97 | msgid "Upload Logo" 98 | msgstr "Wgraj logotyp" 99 | 100 | #: includes/functions.php:325 101 | msgid "Retina logo" 102 | msgstr "Logo dla wyświetlaczy retina" 103 | 104 | #: includes/functions.php:325 105 | msgid "Upload Retina Logo" 106 | msgstr "Prześlij logo dla wyświetlaczy retina" 107 | 108 | #: includes/functions.php:327 109 | #, fuzzy 110 | #| msgid "Background image" 111 | msgid "Background image (portrait mode)" 112 | msgstr "Obrazek tła" 113 | 114 | #: includes/functions.php:327 115 | msgid "Upload image for portrait device orientation" 116 | msgstr "" 117 | 118 | #: includes/functions.php:328 119 | #, fuzzy 120 | #| msgid "Background image" 121 | msgid "Page preloader image" 122 | msgstr "Obrazek tła" 123 | 124 | #: includes/functions.php:328 125 | #, fuzzy 126 | #| msgid "Upload Background" 127 | msgid "Upload preloader" 128 | msgstr "Wgraj tło" 129 | 130 | #: includes/functions.php:332 131 | msgid "503" 132 | msgstr "503" 133 | 134 | #: includes/functions.php:332 135 | msgid "Service temporarily unavailable, Google analytics will be disable." 136 | msgstr "" 137 | 138 | #: includes/functions.php:339 139 | msgid "Google Analytics ID" 140 | msgstr "Identyfikator Google Analytics" 141 | 142 | #: includes/functions.php:339 143 | msgid "UA-XXXXX-X" 144 | msgstr "UA-XXXXX-X" 145 | 146 | #: includes/functions.php:340 147 | msgid "Set blur intensity" 148 | msgstr "" 149 | 150 | #: includes/functions.php:348 151 | msgid "Apply background blur" 152 | msgstr "" 153 | 154 | #: includes/functions.php:349 155 | msgid "Enable frontend login" 156 | msgstr "" 157 | 158 | #: includes/functions.php:362 159 | msgid "CSS Code" 160 | msgstr "Kod CSS" 161 | 162 | #: includes/functions.php:382 163 | msgid "Select the page to be displayed:" 164 | msgstr "Wybierz stronę, która ma być wyświetlana:" 165 | 166 | #: includes/functions.php:445 167 | msgid "Background image" 168 | msgstr "Obrazek tła" 169 | 170 | #: includes/functions.php:445 171 | msgid "Upload Background" 172 | msgstr "Wgraj tło" 173 | 174 | #: includes/functions.php:451 175 | msgid "Background color" 176 | msgstr "Kolor tła" 177 | 178 | #: includes/functions.php:452 179 | msgid "Font color" 180 | msgstr "Kolor czcionki" 181 | 182 | #: includes/functions.php:453 183 | #, fuzzy 184 | #| msgid "Background color" 185 | msgid "Login block background color" 186 | msgstr "Kolor tła" 187 | 188 | #: includes/functions.php:460 189 | msgid "Font family" 190 | msgstr "Rodzina czcionek" 191 | 192 | #: includes/functions.php:466 193 | msgid "Subsets" 194 | msgstr "" 195 | 196 | #: includes/functions.php:474 197 | msgid "Have any questions?" 198 | msgstr "Masz jakieś pytania?" 199 | 200 | #: includes/functions.php:476 201 | #, php-format 202 | msgid "" 203 | "You may find answers to your questions at support forum
You may
contact us with customization requests and " 207 | "suggestions.
Please visit our website to learn about us and our services " 208 | "%2$s" 209 | msgstr "" 210 | 211 | #: includes/functions.php:487 212 | msgid "This plugin is translation friendly" 213 | msgstr "Wtyczka ta jest przyjazna tłumaczenie" 214 | 215 | #: includes/functions.php:489 216 | #, php-format 217 | msgid "" 218 | "Want to improve translation or make one for your native language? %2$s" 220 | msgstr "" 221 | 222 | #: includes/functions.php:491 223 | msgid "Follow this tutorial" 224 | msgstr "Śledź ten tutorial" 225 | 226 | #: includes/functions.php:500 227 | msgid "Premium WordPress themes" 228 | msgstr "Motywy premium WordPressa" 229 | 230 | #: includes/functions.php:506 231 | msgid "ANAGLYPH - One page / Multi Page WordPress Theme" 232 | msgstr "ANAGLYPH - Jedno- / wielostronny motyw WordPressa" 233 | 234 | #: includes/functions.php:511 235 | msgid "Love.ly - Simple & Elegant WordPress theme" 236 | msgstr "Love.ly - Prosty i elegancki motyw WordPressa" 237 | 238 | #: includes/functions.php:517 239 | msgid "Zoner - Real Estate WordPress theme" 240 | msgstr "Zoner - Motyw WordPressa dla witryn o nieruchomościach" 241 | 242 | #: includes/functions.php:529 243 | msgid "Extended functionality" 244 | msgstr "Rozszerzona funkcjonalność" 245 | 246 | #: includes/functions.php:531 247 | #, php-format 248 | msgid "" 249 | "Purchase PRO version with " 251 | "extended functionality. %1$s If you like our plugin please rate it, leave feedbacks." 255 | msgstr "" 256 | "Zakup wersję PRO wtyczki z " 258 | "większymi możliwościami. %1$s Jeśli nasza wtyczka Ci się podoba, prosimy o " 259 | "ocenienie jej lub pozostawienie komentarza." 262 | 263 | #: includes/functions.php:537 264 | msgid "Demo website" 265 | msgstr "Demo" 266 | 267 | #: includes/functions.php:688 includes/functions.php:695 268 | msgid " is " 269 | msgstr "" 270 | 271 | #: includes/functions.php:768 272 | msgid "Website is under construction" 273 | msgstr "Witryna jest w trakcie budowy" 274 | 275 | #: includes/functions.php:769 276 | msgid "Maintenance mode is on" 277 | msgstr "Tryb konserwacji jest włączony" 278 | 279 | #: includes/functions.php:770 280 | msgid "Website will be available soon" 281 | msgstr "Witryna będzie dostępna niebawem" 282 | 283 | #: load/functions.php:47 284 | msgid "Permission access denied!" 285 | msgstr "Brak uprawnień dostępu!" 286 | 287 | #: load/functions.php:61 288 | msgid "Login is incorrect!" 289 | msgstr "" 290 | 291 | #: load/functions.php:66 292 | #, fuzzy 293 | #| msgid "You entered your password are incorrect!" 294 | msgid "Password is incorrect!" 295 | msgstr "Wprowadzone hasło nie jest poprawne!" 296 | 297 | #: load/functions.php:69 298 | #, fuzzy 299 | #| msgid "You entered your login and password are incorrect!" 300 | msgid "Login and password are incorrect!" 301 | msgstr "Wprowadzona nazwa użytkownika i hasło nie są poprawne!" 302 | 303 | #: load/functions.php:149 304 | msgid "Please verify that you are not a robot." 305 | msgstr "" 306 | 307 | #: load/functions.php:374 308 | msgid "User Login" 309 | msgstr "Logowanie użytkowników" 310 | 311 | #: load/functions.php:376 312 | msgid "Username" 313 | msgstr "Nazwa użytkownika" 314 | 315 | #: load/functions.php:377 316 | msgid "Password" 317 | msgstr "Hasło" 318 | 319 | #: load/functions.php:378 320 | msgid "Lost Password" 321 | msgstr "Nie pamiętam hasła" 322 | 323 | #: load/functions.php:379 324 | msgid "Login" 325 | msgstr "Login" 326 | 327 | #. Plugin URI of the plugin/theme 328 | msgid "http://wordpress.org/plugins/maintenance/" 329 | msgstr "http://wordpress.org/plugins/maintenance/" 330 | 331 | #. Description of the plugin/theme 332 | msgid "" 333 | "Take your website for maintenance away from public view. Use maintenance " 334 | "plugin if your website is in development or you need to change a few things, " 335 | "run an upgrade. Make it only accessible by login and password. Plugin has a " 336 | "options to add a logo, background, headline, message, colors, login, etc. " 337 | "Extended PRO with more features version is available for purchase." 338 | msgstr "" 339 | "Włącz tryb konserwacji witryny, ukrywając ją przed widokiem publicznym. " 340 | "Używaj tej wtyczki konserwacyjnej, jeśli Twoja witryna jest w trakcie " 341 | "pierwotnej budowy lub późniejszej przebudowy, bądź też podczas wykonywania " 342 | "jej usprawnień. Dostęp będą miały tylko osoby posiadające nazwę użytkownika " 343 | "i hasło. Wtyczka pozwala na wgranie własnego logotypu, tła, ustawienie " 344 | "nagłówka, wiadomości, kolorów, zezwolenia na logowanie itp... Dostępna jest " 345 | "także wersja płatna PRO, rozszerzona o wiele nowych funkcjonalności." 346 | 347 | #. Author of the plugin/theme 348 | msgid "fruitfulcode" 349 | msgstr "fruitfulcode" 350 | 351 | #. Author URI of the plugin/theme 352 | #, fuzzy 353 | #| msgid "http://fruitfulcode.com" 354 | msgid "https://fruitfulcode.com" 355 | msgstr "http://fruitfulcode.com" 356 | 357 | #~ msgid "Show admin bar" 358 | #~ msgstr "Pokaż pasek administratora" 359 | 360 | #~ msgid "You entered your login are incorrect!" 361 | #~ msgstr "Wprowadzona nazwa użytkownika nie jest poprawna!" 362 | 363 | #~ msgid "" 364 | #~ "You may find answers to your questions at support forum
You may
contact us with customization requests " 368 | #~ "and suggestions.
Please visit our website to learn about us and our " 369 | #~ "services %2$s" 370 | #~ msgstr "" 371 | #~ "Odpowiedzi na swoje pytania możesz znaleźć na naszym forum pomocy
Możesz
skontaktować się w sprawie zleceń " 375 | #~ "dostosowania wtyczki do swoich wymagań lub mając inne sugestie.
" 376 | #~ "Zachęcamy do odwiedzenia naszej witryny w celu poznania naszego zespołu i " 377 | #~ "świadczonych usług: %2$s" 378 | 379 | #~ msgid "Not available object." 380 | #~ msgstr "Brak dostępnego obiektu." 381 | 382 | #~ msgid "Login On / Off" 383 | #~ msgstr "Włączanie lub wyłączanie logowania" 384 | 385 | #~ msgid "Apply a blur" 386 | #~ msgstr "Rozmyj obrazek" 387 | 388 | #~ msgid "Background blur" 389 | #~ msgstr "Rozmycie tła" 390 | 391 | #~ msgid "Blur intensity" 392 | #~ msgstr "Intensywność rozmycia" 393 | 394 | #~ msgid "Service temporarily unavailable" 395 | #~ msgstr "Serwis jest czasowo niedostępny" 396 | 397 | #~ msgid "Admin bar" 398 | #~ msgstr "Pasek administratora" 399 | 400 | #~ msgid "Exclude pages" 401 | #~ msgstr "Wykluczanie stron" 402 | -------------------------------------------------------------------------------- /languages/maintenance-pt_BR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/languages/maintenance-pt_BR.mo -------------------------------------------------------------------------------- /languages/maintenance-pt_PT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/languages/maintenance-pt_PT.mo -------------------------------------------------------------------------------- /languages/maintenance-pt_PT.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: Maintenance\n" 4 | "POT-Creation-Date: 2019-08-27 13:24+0300\n" 5 | "PO-Revision-Date: 2019-08-27 13:24+0300\n" 6 | "Last-Translator: Pedro Mendonça \n" 7 | "Language-Team: Pedro Mendonça \n" 8 | "Language: pt_PT\n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "X-Generator: Poedit 2.2.3\n" 13 | "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" 14 | "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" 15 | "_nx_noop:3c,1,2;__ngettext_noop:1,2\n" 16 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 17 | "X-Poedit-Basepath: ..\n" 18 | "X-Poedit-SearchPath-0: .\n" 19 | "X-Poedit-SearchPathExcluded-0: *.js\n" 20 | 21 | #: includes/admin.php:7 includes/admin.php:106 includes/functions.php:688 22 | #: includes/functions.php:692 23 | msgid "Maintenance" 24 | msgstr "Manutenção" 25 | 26 | #: includes/admin.php:106 includes/admin.php:124 27 | msgid "Save changes" 28 | msgstr "Guardar alterações" 29 | 30 | #: includes/functions.php:199 31 | msgid "Standard Fonts" 32 | msgstr "Fontes padrão" 33 | 34 | #: includes/functions.php:206 35 | msgid "Google Web Fonts" 36 | msgstr "Fontes web do Google" 37 | 38 | #: includes/functions.php:256 39 | msgid "General Settings" 40 | msgstr "Definições gerais" 41 | 42 | #: includes/functions.php:257 43 | msgid "Custom CSS" 44 | msgstr "CSS personalizado" 45 | 46 | #: includes/functions.php:258 47 | msgid "Exclude pages from maintenance mode" 48 | msgstr "Excluir páginas do modo de manutenção" 49 | 50 | #: includes/functions.php:264 51 | msgid "Pro version" 52 | msgstr "Versão Pro" 53 | 54 | #: includes/functions.php:271 55 | msgid "Fruitful Code projects" 56 | msgstr "Projectos da Fruitful Code" 57 | 58 | #: includes/functions.php:277 59 | msgid "Support" 60 | msgstr "Suporte" 61 | 62 | #: includes/functions.php:283 63 | msgid "Translation" 64 | msgstr "Tradução" 65 | 66 | #: includes/functions.php:318 67 | msgid "Page title" 68 | msgstr "Título da página" 69 | 70 | #: includes/functions.php:319 71 | msgid "Headline" 72 | msgstr "Cabeçalho" 73 | 74 | #: includes/functions.php:320 75 | msgid "Description" 76 | msgstr "Descrição" 77 | 78 | #: includes/functions.php:321 79 | msgid "Footer Text" 80 | msgstr "Texto do rodapé" 81 | 82 | #: includes/functions.php:322 83 | msgid "Set Logo width" 84 | msgstr "Definir largura do logótipo" 85 | 86 | #: includes/functions.php:323 87 | msgid "Set Logo height" 88 | msgstr "Definir altura do logótipo" 89 | 90 | #: includes/functions.php:324 91 | msgid "Logo" 92 | msgstr "Logótipo" 93 | 94 | #: includes/functions.php:324 95 | msgid "Upload Logo" 96 | msgstr "Carregar logótipo" 97 | 98 | #: includes/functions.php:325 99 | msgid "Retina logo" 100 | msgstr "Logótipo Retina" 101 | 102 | #: includes/functions.php:325 103 | msgid "Upload Retina Logo" 104 | msgstr "Carregar logótipo Retina" 105 | 106 | #: includes/functions.php:327 107 | #, fuzzy 108 | #| msgid "Background image" 109 | msgid "Background image (portrait mode)" 110 | msgstr "Imagem de fundo" 111 | 112 | #: includes/functions.php:327 113 | msgid "Upload image for portrait device orientation" 114 | msgstr "" 115 | 116 | #: includes/functions.php:328 117 | #, fuzzy 118 | #| msgid "Background image" 119 | msgid "Page preloader image" 120 | msgstr "Imagem de fundo" 121 | 122 | #: includes/functions.php:328 123 | #, fuzzy 124 | #| msgid "Upload Background" 125 | msgid "Upload preloader" 126 | msgstr "Carregar fundo" 127 | 128 | #: includes/functions.php:332 129 | msgid "503" 130 | msgstr "503" 131 | 132 | #: includes/functions.php:332 133 | msgid "Service temporarily unavailable, Google analytics will be disable." 134 | msgstr "" 135 | "Serviço temporariamente indisponível, o Google Analytics será desactivado." 136 | 137 | #: includes/functions.php:339 138 | msgid "Google Analytics ID" 139 | msgstr "ID do Google Analytics" 140 | 141 | #: includes/functions.php:339 142 | msgid "UA-XXXXX-X" 143 | msgstr "UA-XXXXX-X" 144 | 145 | #: includes/functions.php:340 146 | msgid "Set blur intensity" 147 | msgstr "Definir intensidade do desfoque" 148 | 149 | #: includes/functions.php:348 150 | msgid "Apply background blur" 151 | msgstr "Desfocar fundo" 152 | 153 | #: includes/functions.php:349 154 | msgid "Enable frontend login" 155 | msgstr "Permitir iniciar sessão na frente do site" 156 | 157 | #: includes/functions.php:362 158 | msgid "CSS Code" 159 | msgstr "Código CSS" 160 | 161 | #: includes/functions.php:382 162 | msgid "Select the page to be displayed:" 163 | msgstr "Seleccione a página a ser mostrada:" 164 | 165 | #: includes/functions.php:445 166 | msgid "Background image" 167 | msgstr "Imagem de fundo" 168 | 169 | #: includes/functions.php:445 170 | msgid "Upload Background" 171 | msgstr "Carregar fundo" 172 | 173 | #: includes/functions.php:451 174 | msgid "Background color" 175 | msgstr "Cor de fundo" 176 | 177 | #: includes/functions.php:452 178 | msgid "Font color" 179 | msgstr "Cor da fonte" 180 | 181 | #: includes/functions.php:453 182 | #, fuzzy 183 | #| msgid "Background color" 184 | msgid "Login block background color" 185 | msgstr "Cor de fundo" 186 | 187 | #: includes/functions.php:460 188 | msgid "Font family" 189 | msgstr "Família da fonte" 190 | 191 | #: includes/functions.php:466 192 | msgid "Subsets" 193 | msgstr "Subconjuntos" 194 | 195 | #: includes/functions.php:474 196 | msgid "Have any questions?" 197 | msgstr "Tem algumas dúvidas?" 198 | 199 | #: includes/functions.php:476 200 | #, php-format 201 | msgid "" 202 | "You may find answers to your questions at support forum
You may
contact us with customization requests and " 206 | "suggestions.
Please visit our website to learn about us and our services " 207 | "%2$s" 208 | msgstr "" 209 | "Poderá encontrar respostas às suas dúvidas no fórum de " 211 | "suporte.
Pode contactar-nos para pedidos de personalização " 213 | "e sugestões.
Por favor, visite o nosso site para nos conhecer e aos " 214 | "nossos serviços em %2$s." 215 | 216 | #: includes/functions.php:487 217 | msgid "This plugin is translation friendly" 218 | msgstr "Este plugin pode ser traduzido" 219 | 220 | #: includes/functions.php:489 221 | #, php-format 222 | msgid "" 223 | "Want to improve translation or make one for your native language? %2$s" 225 | msgstr "" 226 | "Quer melhorar a tradução ou fazer uma nova para o seu idioma nativo? %2$s" 228 | 229 | #: includes/functions.php:491 230 | msgid "Follow this tutorial" 231 | msgstr "Siga este tutorial" 232 | 233 | #: includes/functions.php:500 234 | msgid "Premium WordPress themes" 235 | msgstr "Temas WordPress Premium" 236 | 237 | #: includes/functions.php:506 238 | msgid "ANAGLYPH - One page / Multi Page WordPress Theme" 239 | msgstr "ANAGLYPH - Tema WordPress para página única / múltiplas páginas" 240 | 241 | #: includes/functions.php:511 242 | msgid "Love.ly - Simple & Elegant WordPress theme" 243 | msgstr "Love.ly - Tema WordPress simples e elegante" 244 | 245 | #: includes/functions.php:517 246 | msgid "Zoner - Real Estate WordPress theme" 247 | msgstr "Zoner - Tema WordPress para imobiliária" 248 | 249 | #: includes/functions.php:529 250 | msgid "Extended functionality" 251 | msgstr "Funcionalidades adicionais" 252 | 253 | #: includes/functions.php:531 254 | #, php-format 255 | msgid "" 256 | "Purchase PRO version with " 258 | "extended functionality. %1$s If you like our plugin please rate it, leave feedbacks." 262 | msgstr "" 263 | "Compre a versão PRO com " 265 | "funcionalidades adicionais. %1$s Se gostar do nosso plugin, por favor avalie-o, deixe feedbacks." 269 | 270 | #: includes/functions.php:537 271 | msgid "Demo website" 272 | msgstr "Site de demonstração" 273 | 274 | #: includes/functions.php:688 includes/functions.php:695 275 | msgid " is " 276 | msgstr " está " 277 | 278 | #: includes/functions.php:768 279 | msgid "Website is under construction" 280 | msgstr "O site está em construção" 281 | 282 | #: includes/functions.php:769 283 | msgid "Maintenance mode is on" 284 | msgstr "Modo de manutenção activo" 285 | 286 | #: includes/functions.php:770 287 | msgid "Website will be available soon" 288 | msgstr "O site estará disponível em breve" 289 | 290 | #: load/functions.php:47 291 | msgid "Permission access denied!" 292 | msgstr "Acesso negado!" 293 | 294 | #: load/functions.php:61 295 | msgid "Login is incorrect!" 296 | msgstr "" 297 | 298 | #: load/functions.php:66 299 | #, fuzzy 300 | #| msgid "You entered your password are incorrect!" 301 | msgid "Password is incorrect!" 302 | msgstr "A senha que introduziu está incorrecta!" 303 | 304 | #: load/functions.php:69 305 | #, fuzzy 306 | #| msgid "You entered your login and password are incorrect!" 307 | msgid "Login and password are incorrect!" 308 | msgstr "O nome de utilizador e senha que introduziu estão incorrectos!" 309 | 310 | #: load/functions.php:149 311 | msgid "Please verify that you are not a robot." 312 | msgstr "" 313 | 314 | #: load/functions.php:374 315 | msgid "User Login" 316 | msgstr "Iniciar sessão" 317 | 318 | #: load/functions.php:376 319 | msgid "Username" 320 | msgstr "Nome de utilizador" 321 | 322 | #: load/functions.php:377 323 | msgid "Password" 324 | msgstr "Senha" 325 | 326 | #: load/functions.php:378 327 | msgid "Lost Password" 328 | msgstr "Senha perdida" 329 | 330 | #: load/functions.php:379 331 | msgid "Login" 332 | msgstr "Entrar" 333 | 334 | #~ msgid "Show admin bar" 335 | #~ msgstr "Mostrar barra de administração" 336 | 337 | #~ msgid "You entered your login are incorrect!" 338 | #~ msgstr "O nome de utilizador que introduziu está incorrecto!" 339 | 340 | #~ msgid "http://wordpress.org/plugins/maintenance/" 341 | #~ msgstr "http://wordpress.org/plugins/maintenance/" 342 | 343 | #~ msgid "" 344 | #~ "Take your website for maintenance away from public view. Use maintenance " 345 | #~ "plugin if your website is in development or you need to change a few " 346 | #~ "things, run an upgrade. Make it only accessible by login and password. " 347 | #~ "Plugin has a options to add a logo, background, headline, message, " 348 | #~ "colors, login, etc. Extended PRO with more features version is available " 349 | #~ "for purchase." 350 | #~ msgstr "" 351 | #~ "Faça a manutenção do seu site longe da vista do público. Utilize um " 352 | #~ "plugin de manutenção se o seu site estiver em desenvolvimento, se " 353 | #~ "precisar de alterar algumas coisas, ou executar uma actualização. Torne-o " 354 | #~ "acessível através de iniciar sessão com nome de utilizador e senha. O " 355 | #~ "plugin tem opções para adicionar logótipo, fundo, cabeçalho, mensagem, " 356 | #~ "cores, início de sessão, etc. Está disponível para compra uma versão Pro " 357 | #~ "com recursos adicionais." 358 | 359 | #~ msgid "fruitfulcode" 360 | #~ msgstr "fruitfulcode" 361 | 362 | #~ msgid "http://fruitfulcode.com" 363 | #~ msgstr "http://fruitfulcode.com" 364 | 365 | #~ msgid "Not available object." 366 | #~ msgstr "Objecto não disponível." 367 | 368 | #~ msgid "Exclude pages" 369 | #~ msgstr "Excluir páginas" 370 | 371 | #~ msgid "Logo width" 372 | #~ msgstr "Largura do logótipo" 373 | 374 | #~ msgid "Logo height" 375 | #~ msgstr "Altura do logótipo" 376 | 377 | #~ msgid "Admin bar" 378 | #~ msgstr "Barra de administração" 379 | 380 | #~ msgid "Blur intensity" 381 | #~ msgstr "Intensidade do desfoque" 382 | 383 | #~ msgid "Background blur" 384 | #~ msgstr "Fundo desfocado" 385 | 386 | #~ msgid "Apply a blur" 387 | #~ msgstr "Desfocar" 388 | 389 | #~ msgid "Login On / Off" 390 | #~ msgstr "Iniciar / terminar sessão" 391 | -------------------------------------------------------------------------------- /languages/maintenance-ru_RU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/languages/maintenance-ru_RU.mo -------------------------------------------------------------------------------- /languages/maintenance-sv_SE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/languages/maintenance-sv_SE.mo -------------------------------------------------------------------------------- /languages/maintenance-sv_SE.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: Maintenance\n" 4 | "POT-Creation-Date: 2019-08-27 13:24+0300\n" 5 | "PO-Revision-Date: 2019-08-27 13:24+0300\n" 6 | "Last-Translator: Erik Betshammar \n" 7 | "Language-Team: Kozley Bloodchaser \n" 8 | "Language: sv_SE\n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "X-Generator: Poedit 2.2.3\n" 13 | "X-Poedit-Basepath: ..\n" 14 | "X-Poedit-WPHeader: maintenance.php\n" 15 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 16 | "X-Poedit-SourceCharset: UTF-8\n" 17 | "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" 18 | "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" 19 | "_nx_noop:3c,1,2;__ngettext_noop:1,2\n" 20 | "X-Poedit-SearchPath-0: .\n" 21 | "X-Poedit-SearchPathExcluded-0: *.js\n" 22 | 23 | #. Plugin Name of the plugin/theme 24 | #: includes/admin.php:7 includes/admin.php:106 includes/functions.php:688 25 | #: includes/functions.php:692 26 | msgid "Maintenance" 27 | msgstr "Underhåll" 28 | 29 | #: includes/admin.php:106 includes/admin.php:124 30 | msgid "Save changes" 31 | msgstr "Spara ändringar" 32 | 33 | #: includes/functions.php:199 34 | msgid "Standard Fonts" 35 | msgstr "Standardtypsnitt" 36 | 37 | #: includes/functions.php:206 38 | msgid "Google Web Fonts" 39 | msgstr "Google Webbtypsnitt" 40 | 41 | #: includes/functions.php:256 42 | msgid "General Settings" 43 | msgstr "Allmänna inställningar" 44 | 45 | #: includes/functions.php:257 46 | msgid "Custom CSS" 47 | msgstr "Anpassad CSS" 48 | 49 | #: includes/functions.php:258 50 | msgid "Exclude pages from maintenance mode" 51 | msgstr "Uteslut sidor från underhållsläge" 52 | 53 | #: includes/functions.php:264 54 | msgid "Pro version" 55 | msgstr "Pro version" 56 | 57 | #: includes/functions.php:271 58 | msgid "Fruitful Code projects" 59 | msgstr "Fruitful Code projects" 60 | 61 | #: includes/functions.php:277 62 | msgid "Support" 63 | msgstr "Kundtjänst" 64 | 65 | #: includes/functions.php:283 66 | msgid "Translation" 67 | msgstr "Översättning" 68 | 69 | #: includes/functions.php:318 70 | msgid "Page title" 71 | msgstr "Sidans rubrik" 72 | 73 | #: includes/functions.php:319 74 | msgid "Headline" 75 | msgstr "Rubrik" 76 | 77 | #: includes/functions.php:320 78 | msgid "Description" 79 | msgstr "Beskrivning" 80 | 81 | #: includes/functions.php:321 82 | msgid "Footer Text" 83 | msgstr "Sidfotstext" 84 | 85 | #: includes/functions.php:322 86 | msgid "Set Logo width" 87 | msgstr "Sätt logotypens bredd" 88 | 89 | #: includes/functions.php:323 90 | msgid "Set Logo height" 91 | msgstr "Sätt logotypens höjd" 92 | 93 | #: includes/functions.php:324 94 | msgid "Logo" 95 | msgstr "Logotyp" 96 | 97 | #: includes/functions.php:324 98 | msgid "Upload Logo" 99 | msgstr "Ladda upp logotyp" 100 | 101 | #: includes/functions.php:325 102 | msgid "Retina logo" 103 | msgstr "Högupplöst logotyp (Retina)" 104 | 105 | #: includes/functions.php:325 106 | msgid "Upload Retina Logo" 107 | msgstr "Ladda upp högupplöst logotyp (Retina)" 108 | 109 | #: includes/functions.php:327 110 | #, fuzzy 111 | #| msgid "Background image" 112 | msgid "Background image (portrait mode)" 113 | msgstr "Bakgrundsbild" 114 | 115 | #: includes/functions.php:327 116 | msgid "Upload image for portrait device orientation" 117 | msgstr "" 118 | 119 | #: includes/functions.php:328 120 | #, fuzzy 121 | #| msgid "Background image" 122 | msgid "Page preloader image" 123 | msgstr "Bakgrundsbild" 124 | 125 | #: includes/functions.php:328 126 | #, fuzzy 127 | #| msgid "Upload Background" 128 | msgid "Upload preloader" 129 | msgstr "Ladda upp bakgrundbild" 130 | 131 | #: includes/functions.php:332 132 | msgid "503" 133 | msgstr "503" 134 | 135 | #: includes/functions.php:332 136 | msgid "Service temporarily unavailable, Google analytics will be disable." 137 | msgstr "" 138 | "När du anger kod 503, Service temporarily unavailable , kommer Google " 139 | "Analytics att inaktiveras." 140 | 141 | #: includes/functions.php:339 142 | msgid "Google Analytics ID" 143 | msgstr "Google Analytics ID" 144 | 145 | #: includes/functions.php:339 146 | msgid "UA-XXXXX-X" 147 | msgstr "UA-XXXXX-X" 148 | 149 | #: includes/functions.php:340 150 | msgid "Set blur intensity" 151 | msgstr "Ställ in oskärpans intensitet" 152 | 153 | #: includes/functions.php:348 154 | msgid "Apply background blur" 155 | msgstr "Tillämpa bakgrundsoskärpa" 156 | 157 | #: includes/functions.php:349 158 | msgid "Enable frontend login" 159 | msgstr "Aktivera front-end inloggning" 160 | 161 | #: includes/functions.php:362 162 | msgid "CSS Code" 163 | msgstr "CSS Kod" 164 | 165 | #: includes/functions.php:382 166 | msgid "Select the page to be displayed:" 167 | msgstr "Välj sidan som ska visas:" 168 | 169 | #: includes/functions.php:445 170 | msgid "Background image" 171 | msgstr "Bakgrundsbild" 172 | 173 | #: includes/functions.php:445 174 | msgid "Upload Background" 175 | msgstr "Ladda upp bakgrundbild" 176 | 177 | #: includes/functions.php:451 178 | msgid "Background color" 179 | msgstr "Bakgrundsfärg" 180 | 181 | #: includes/functions.php:452 182 | msgid "Font color" 183 | msgstr "Teckenfärg" 184 | 185 | #: includes/functions.php:453 186 | #, fuzzy 187 | #| msgid "Background color" 188 | msgid "Login block background color" 189 | msgstr "Bakgrundsfärg" 190 | 191 | #: includes/functions.php:460 192 | msgid "Font family" 193 | msgstr "Typsnittsfamilj" 194 | 195 | #: includes/functions.php:466 196 | msgid "Subsets" 197 | msgstr "Typsnittets undergrupp" 198 | 199 | #: includes/functions.php:474 200 | msgid "Have any questions?" 201 | msgstr "Några frågor?" 202 | 203 | #: includes/functions.php:476 204 | #, php-format 205 | msgid "" 206 | "You may find answers to your questions at support forum
You may
contact us with customization requests and " 210 | "suggestions.
Please visit our website to learn about us and our services " 211 | "%2$s" 212 | msgstr "" 213 | "Du kan hitta svar på dina frågor på supportforum
Du kan kontakta oss med anpassnings önskemål och förslag.
Besök " 217 | "gärna vår hemsida för att läsa om oss och våra tjänster %2$s" 219 | 220 | #: includes/functions.php:487 221 | msgid "This plugin is translation friendly" 222 | msgstr "Detta tillägg är översättningsvänligt" 223 | 224 | #: includes/functions.php:489 225 | #, php-format 226 | msgid "" 227 | "Want to improve translation or make one for your native language? %2$s" 229 | msgstr "" 230 | "Vill du förbättra översättningen eller göra en för ditt modersmål? %2$s" 232 | 233 | #: includes/functions.php:491 234 | msgid "Follow this tutorial" 235 | msgstr "Följa denna handledning" 236 | 237 | #: includes/functions.php:500 238 | msgid "Premium WordPress themes" 239 | msgstr "Premium WordPressteman" 240 | 241 | #: includes/functions.php:506 242 | msgid "ANAGLYPH - One page / Multi Page WordPress Theme" 243 | msgstr "ANAGLYPH - One page / Multi Page WordPress Theme" 244 | 245 | #: includes/functions.php:511 246 | msgid "Love.ly - Simple & Elegant WordPress theme" 247 | msgstr "Love.ly - Simple & Elegant WordPress theme" 248 | 249 | #: includes/functions.php:517 250 | msgid "Zoner - Real Estate WordPress theme" 251 | msgstr "Zoner - Real Estate WordPress theme" 252 | 253 | #: includes/functions.php:529 254 | msgid "Extended functionality" 255 | msgstr "Utökad funktionalitet" 256 | 257 | #: includes/functions.php:531 258 | #, php-format 259 | msgid "" 260 | "Purchase PRO version with " 262 | "extended functionality. %1$s If you like our plugin please rate it, leave feedbacks." 266 | msgstr "" 267 | "Köp PRO-versionen med " 269 | "utökad funktionalitet. %1$s om du gillar vårt tillägg vänligen betygsätt det och lämna feedback." 273 | 274 | #: includes/functions.php:537 275 | msgid "Demo website" 276 | msgstr "Demo webbplats" 277 | 278 | #: includes/functions.php:688 includes/functions.php:695 279 | msgid " is " 280 | msgstr " är " 281 | 282 | #: includes/functions.php:768 283 | msgid "Website is under construction" 284 | msgstr "Webbplats är under uppbyggnad" 285 | 286 | #: includes/functions.php:769 287 | msgid "Maintenance mode is on" 288 | msgstr "Underhållsläge är på" 289 | 290 | #: includes/functions.php:770 291 | msgid "Website will be available soon" 292 | msgstr "Webbplatsen kommer snart vara tillgänglig" 293 | 294 | #: load/functions.php:47 295 | msgid "Permission access denied!" 296 | msgstr "Åtkomst nekad!" 297 | 298 | #: load/functions.php:61 299 | msgid "Login is incorrect!" 300 | msgstr "" 301 | 302 | #: load/functions.php:66 303 | #, fuzzy 304 | #| msgid "You entered your password are incorrect!" 305 | msgid "Password is incorrect!" 306 | msgstr "Dina angivna inloggningsuppgifter är felaktiga!" 307 | 308 | #: load/functions.php:69 309 | #, fuzzy 310 | #| msgid "You entered your login and password are incorrect!" 311 | msgid "Login and password are incorrect!" 312 | msgstr "Dina angivna inloggningsuppgifter är felaktiga!" 313 | 314 | #: load/functions.php:149 315 | msgid "Please verify that you are not a robot." 316 | msgstr "Verifiera att du inte är en robot." 317 | 318 | #: load/functions.php:374 319 | msgid "User Login" 320 | msgstr "Inloggning" 321 | 322 | #: load/functions.php:376 323 | msgid "Username" 324 | msgstr "Användarnamn" 325 | 326 | #: load/functions.php:377 327 | msgid "Password" 328 | msgstr "Lösenord" 329 | 330 | #: load/functions.php:378 331 | msgid "Lost Password" 332 | msgstr "Glömt lösenordet" 333 | 334 | #: load/functions.php:379 335 | msgid "Login" 336 | msgstr "Logga in" 337 | 338 | #. Plugin URI of the plugin/theme 339 | msgid "http://wordpress.org/plugins/maintenance/" 340 | msgstr "http://wordpress.org/plugins/maintenance/" 341 | 342 | #. Description of the plugin/theme 343 | msgid "" 344 | "Take your website for maintenance away from public view. Use maintenance " 345 | "plugin if your website is in development or you need to change a few things, " 346 | "run an upgrade. Make it only accessible by login and password. Plugin has a " 347 | "options to add a logo, background, headline, message, colors, login, etc. " 348 | "Extended PRO with more features version is available for purchase." 349 | msgstr "" 350 | "Ta din webbplats för underhåll borta från offentligheten. Använd tillägget " 351 | "Underhåll om din webbplats är under utveckling eller om du behöver ändra " 352 | "några saker eller köra en uppgradering. Gör den enbart tillgänglig med login " 353 | "och lösenord. Tilläget erbjuder möjligheten att lägga till en logotyp, " 354 | "bakgrund, rubrik, meddelande, färger, inloggning, etc. Utökad PRO-version " 355 | "med fler funktioner finns att köpa." 356 | 357 | #. Author of the plugin/theme 358 | msgid "fruitfulcode" 359 | msgstr "fruitfulcode" 360 | 361 | #. Author URI of the plugin/theme 362 | #, fuzzy 363 | #| msgid "http://fruitfulcode.com" 364 | msgid "https://fruitfulcode.com" 365 | msgstr "http://fruitfulcode.com" 366 | 367 | #~ msgid "Show admin bar" 368 | #~ msgstr "Visa adminmeny" 369 | 370 | #~ msgid "You entered your login are incorrect!" 371 | #~ msgstr "Dina angivna inloggningsuppgifter är felaktiga!" 372 | 373 | #~ msgid "Not available object." 374 | #~ msgstr "Inte tillgängliga objekt." 375 | 376 | #~ msgid "Sending ..." 377 | #~ msgstr "Skickar…" 378 | -------------------------------------------------------------------------------- /languages/maintenance-tr_TR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/languages/maintenance-tr_TR.mo -------------------------------------------------------------------------------- /languages/maintenance-uk.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/languages/maintenance-uk.mo -------------------------------------------------------------------------------- /languages/maintenance-zh_CN.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/languages/maintenance-zh_CN.mo -------------------------------------------------------------------------------- /languages/maintenance-zh_CN.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: maintenance\n" 4 | "POT-Creation-Date: 2019-08-27 13:24+0300\n" 5 | "PO-Revision-Date: 2019-08-27 13:24+0300\n" 6 | "Last-Translator: 0xJacky \n" 7 | "Language-Team: fruitfulcode\n" 8 | "Language: zh_CN\n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "X-Generator: Poedit 2.2.3\n" 13 | "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" 14 | "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" 15 | "_nx_noop:3c,1,2;__ngettext_noop:1,2\n" 16 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 17 | "X-Poedit-Basepath: ..\n" 18 | "X-Poedit-SearchPath-0: .\n" 19 | "X-Poedit-SearchPathExcluded-0: *.js\n" 20 | 21 | #: includes/admin.php:7 includes/admin.php:106 includes/functions.php:688 22 | #: includes/functions.php:692 23 | msgid "Maintenance" 24 | msgstr "维护模式" 25 | 26 | #: includes/admin.php:106 includes/admin.php:124 27 | msgid "Save changes" 28 | msgstr "保存更改" 29 | 30 | #: includes/functions.php:199 31 | msgid "Standard Fonts" 32 | msgstr "标准字体" 33 | 34 | #: includes/functions.php:206 35 | msgid "Google Web Fonts" 36 | msgstr "谷歌字体" 37 | 38 | #: includes/functions.php:256 39 | msgid "General Settings" 40 | msgstr "常规设置" 41 | 42 | #: includes/functions.php:257 43 | msgid "Custom CSS" 44 | msgstr "自定义CSS" 45 | 46 | #: includes/functions.php:258 47 | msgid "Exclude pages from maintenance mode" 48 | msgstr "禁用维护模式的页面" 49 | 50 | #: includes/functions.php:264 51 | msgid "Pro version" 52 | msgstr "专业版" 53 | 54 | #: includes/functions.php:271 55 | msgid "Fruitful Code projects" 56 | msgstr "Fruitful 代码项目" 57 | 58 | #: includes/functions.php:277 59 | msgid "Support" 60 | msgstr "支持" 61 | 62 | #: includes/functions.php:283 63 | msgid "Translation" 64 | msgstr "翻译" 65 | 66 | #: includes/functions.php:318 67 | msgid "Page title" 68 | msgstr "页面标题" 69 | 70 | #: includes/functions.php:319 71 | msgid "Headline" 72 | msgstr "头条新闻" 73 | 74 | #: includes/functions.php:320 75 | msgid "Description" 76 | msgstr "描述" 77 | 78 | #: includes/functions.php:321 79 | msgid "Footer Text" 80 | msgstr "页脚文本" 81 | 82 | #: includes/functions.php:322 83 | msgid "Set Logo width" 84 | msgstr "设置 Logo 宽度" 85 | 86 | #: includes/functions.php:323 87 | msgid "Set Logo height" 88 | msgstr "设置 Logo 高度" 89 | 90 | #: includes/functions.php:324 91 | msgid "Logo" 92 | msgstr "Logo" 93 | 94 | #: includes/functions.php:324 95 | msgid "Upload Logo" 96 | msgstr "上传 Logo" 97 | 98 | #: includes/functions.php:325 99 | msgid "Retina logo" 100 | msgstr "超清 Logo" 101 | 102 | #: includes/functions.php:325 103 | msgid "Upload Retina Logo" 104 | msgstr "上传超清 Logo" 105 | 106 | #: includes/functions.php:327 107 | #, fuzzy 108 | #| msgid "Background image" 109 | msgid "Background image (portrait mode)" 110 | msgstr "背景图片" 111 | 112 | #: includes/functions.php:327 113 | msgid "Upload image for portrait device orientation" 114 | msgstr "" 115 | 116 | #: includes/functions.php:328 117 | #, fuzzy 118 | #| msgid "Background image" 119 | msgid "Page preloader image" 120 | msgstr "背景图片" 121 | 122 | #: includes/functions.php:328 123 | #, fuzzy 124 | #| msgid "Upload Background" 125 | msgid "Upload preloader" 126 | msgstr "上传背景图片" 127 | 128 | #: includes/functions.php:332 129 | msgid "503" 130 | msgstr "503" 131 | 132 | #: includes/functions.php:332 133 | msgid "Service temporarily unavailable, Google analytics will be disable." 134 | msgstr "服务暂时不可用时,Google analytics 将被禁用。" 135 | 136 | #: includes/functions.php:339 137 | msgid "Google Analytics ID" 138 | msgstr "Google Analytics ID" 139 | 140 | #: includes/functions.php:339 141 | msgid "UA-XXXXX-X" 142 | msgstr "UA-XXXXX-X" 143 | 144 | #: includes/functions.php:340 145 | msgid "Set blur intensity" 146 | msgstr "设置模糊度" 147 | 148 | #: includes/functions.php:348 149 | msgid "Apply background blur" 150 | msgstr "启用背景虚化" 151 | 152 | #: includes/functions.php:349 153 | msgid "Enable frontend login" 154 | msgstr "启用前端登录" 155 | 156 | #: includes/functions.php:362 157 | msgid "CSS Code" 158 | msgstr "CSS代码" 159 | 160 | #: includes/functions.php:382 161 | msgid "Select the page to be displayed:" 162 | msgstr "请选择要禁用维护模式的页面:" 163 | 164 | #: includes/functions.php:445 165 | msgid "Background image" 166 | msgstr "背景图片" 167 | 168 | #: includes/functions.php:445 169 | msgid "Upload Background" 170 | msgstr "上传背景图片" 171 | 172 | #: includes/functions.php:451 173 | msgid "Background color" 174 | msgstr "背景颜色" 175 | 176 | #: includes/functions.php:452 177 | msgid "Font color" 178 | msgstr "字体颜色" 179 | 180 | #: includes/functions.php:453 181 | #, fuzzy 182 | #| msgid "Background color" 183 | msgid "Login block background color" 184 | msgstr "背景颜色" 185 | 186 | #: includes/functions.php:460 187 | msgid "Font family" 188 | msgstr "字体系列" 189 | 190 | #: includes/functions.php:466 191 | msgid "Subsets" 192 | msgstr "字体子集" 193 | 194 | #: includes/functions.php:474 195 | msgid "Have any questions?" 196 | msgstr "遇到了什么问题?" 197 | 198 | #: includes/functions.php:476 199 | #, php-format 200 | msgid "" 201 | "You may find answers to your questions at support forum
You may
contact us with customization requests and " 205 | "suggestions.
Please visit our website to learn about us and our services " 206 | "%2$s" 207 | msgstr "" 208 | "您可以在找到 支持论坛 问题的答案
您可以 联" 211 | "系我们 来提要求和建议。
请访问我们的网站,来了解我们和我们的服务 %2$s" 213 | 214 | #: includes/functions.php:487 215 | msgid "This plugin is translation friendly" 216 | msgstr "插件翻译" 217 | 218 | #: includes/functions.php:489 219 | #, php-format 220 | msgid "" 221 | "Want to improve translation or make one for your native language? %2$s" 223 | msgstr "" 224 | "想要优化翻译或者想要把插件翻译为您的自己的母语? %2$s" 226 | 227 | #: includes/functions.php:491 228 | msgid "Follow this tutorial" 229 | msgstr "请按照本教程" 230 | 231 | #: includes/functions.php:500 232 | msgid "Premium WordPress themes" 233 | msgstr "更多 WordPress 主题" 234 | 235 | #: includes/functions.php:506 236 | msgid "ANAGLYPH - One page / Multi Page WordPress Theme" 237 | msgstr "ANAGLYPH - 单页/多页的 WordPress 主题" 238 | 239 | #: includes/functions.php:511 240 | msgid "Love.ly - Simple & Elegant WordPress theme" 241 | msgstr "Love.ly - 简单优雅与 WordPress 主题" 242 | 243 | #: includes/functions.php:517 244 | msgid "Zoner - Real Estate WordPress theme" 245 | msgstr "Zoner - 适合房地产商 WordPress 主题" 246 | 247 | #: includes/functions.php:529 248 | msgid "Extended functionality" 249 | msgstr "扩展功能" 250 | 251 | #: includes/functions.php:531 252 | #, php-format 253 | msgid "" 254 | "Purchase PRO version with " 256 | "extended functionality. %1$s If you like our plugin please rate it, leave feedbacks." 260 | msgstr "" 261 | "请购买 专业版 以获得扩展功" 263 | "能。%1$s 如果你喜欢我们的插件,请给我们 好评, 或" 265 | "者给我们 留言反" 266 | "馈。" 267 | 268 | #: includes/functions.php:537 269 | msgid "Demo website" 270 | msgstr "演示网站" 271 | 272 | #: includes/functions.php:688 includes/functions.php:695 273 | msgid " is " 274 | msgstr "" 275 | 276 | #: includes/functions.php:768 277 | msgid "Website is under construction" 278 | msgstr "网站正在建设中" 279 | 280 | #: includes/functions.php:769 281 | msgid "Maintenance mode is on" 282 | msgstr "维护模式已开启" 283 | 284 | #: includes/functions.php:770 285 | msgid "Website will be available soon" 286 | msgstr "网站即将上线" 287 | 288 | #: load/functions.php:47 289 | msgid "Permission access denied!" 290 | msgstr "拒绝访问!" 291 | 292 | #: load/functions.php:61 293 | msgid "Login is incorrect!" 294 | msgstr "" 295 | 296 | #: load/functions.php:66 297 | #, fuzzy 298 | #| msgid "You entered your password are incorrect!" 299 | msgid "Password is incorrect!" 300 | msgstr "您输入的密码错误!" 301 | 302 | #: load/functions.php:69 303 | #, fuzzy 304 | #| msgid "You entered your login and password are incorrect!" 305 | msgid "Login and password are incorrect!" 306 | msgstr "您输入的用户名或密码错误!" 307 | 308 | #: load/functions.php:149 309 | msgid "Please verify that you are not a robot." 310 | msgstr "" 311 | 312 | #: load/functions.php:374 313 | msgid "User Login" 314 | msgstr "用户登录" 315 | 316 | #: load/functions.php:376 317 | msgid "Username" 318 | msgstr "用户名" 319 | 320 | #: load/functions.php:377 321 | msgid "Password" 322 | msgstr "密码" 323 | 324 | #: load/functions.php:378 325 | msgid "Lost Password" 326 | msgstr "忘记密码" 327 | 328 | #: load/functions.php:379 329 | msgid "Login" 330 | msgstr "登录" 331 | 332 | #~ msgid "Show admin bar" 333 | #~ msgstr "显示管理栏" 334 | 335 | #~ msgid "You entered your login are incorrect!" 336 | #~ msgstr "您输入的用户名错误!" 337 | 338 | #~ msgid "Not available object." 339 | #~ msgstr "没有可供选择的对象。" 340 | 341 | #~ msgid "Exclude pages" 342 | #~ msgstr "排除网页" 343 | 344 | #~ msgid "Choose Logo width" 345 | #~ msgstr "Vyberte si šířku Logo" 346 | 347 | #~ msgid "Choose Logo height" 348 | #~ msgstr "Vyberte si výšku Logo" 349 | 350 | #~ msgid "Blur intensity" 351 | #~ msgstr "模糊强度" 352 | 353 | #~ msgid "Enable login" 354 | #~ msgstr "povolit přihlášení" 355 | 356 | #~ msgid "Put Login On" 357 | #~ msgstr "Put přihlášení na" 358 | 359 | #~ msgid "Logo width" 360 | #~ msgstr "徽标宽度" 361 | 362 | #~ msgid "Logo height" 363 | #~ msgstr "徽标高度" 364 | 365 | #~ msgid "Admin bar" 366 | #~ msgstr "管理栏" 367 | 368 | #~ msgid "Background blur" 369 | #~ msgstr "背景虚化" 370 | 371 | #~ msgid "Apply a blur" 372 | #~ msgstr "应用模糊" 373 | 374 | #~ msgid "Login On / Off" 375 | #~ msgstr "登录开/关" 376 | 377 | #~ msgid "Service temporarily unavailable, Google analytics will be disable" 378 | #~ msgstr "服务暂时不可用,谷歌Analytics(分析)将被禁用" 379 | 380 | #~ msgid "Sign In" 381 | #~ msgstr "签到" 382 | 383 | #~ msgid "" 384 | #~ "You may find answers to your questions at support forum
You may
contact us with customization requests " 388 | #~ "and suggestions.
Please visit our website to learn about us and our " 389 | #~ "services %2$s" 390 | #~ msgstr "" 391 | #~ "您可以在找到问题的答案 支持论坛
你可以 联系我们" 394 | #~ " 与定制要求和建议。
请访问我们的网站,了解我们和我们的服务 %2$s" 396 | 397 | #~ msgid "Contact support" 398 | #~ msgstr "联系支持" 399 | 400 | #~ msgid "" 401 | #~ "If you faced with any problems, have a question or suggestion you always " 402 | #~ "can contact us with any request on our website %2$s" 404 | #~ msgstr "" 405 | #~ "如果您遇到任何问题,有问题或建议,你总是可以在我们的网站的任何请求与我们联" 406 | #~ "系 %2$s" 407 | 408 | #~ msgid "" 409 | #~ "If you like our plugin please rate it, %1$s leave feedback or purchase extended " 411 | #~ "version %1$s with more other features." 412 | #~ msgstr "" 413 | #~ "如果你喜欢我们的插件请率, %1$s 留下反馈 或购买扩展版 %1$s 与多个其它特征。" 415 | 416 | #~ msgid "Purchase" 417 | #~ msgstr "采购" 418 | 419 | #~ msgid "We have time until launch" 420 | #~ msgstr "我们有时间,直到推出" 421 | 422 | #~ msgid "Be first of your friends who will know when the website goes live." 423 | #~ msgstr "首先是你的朋友当网站正式上线谁知道。" 424 | 425 | #~ msgid "Check out our extended version of plugin with new features" 426 | #~ msgstr "看看我们的新功能插件扩展版" 427 | 428 | #~ msgid "Your session has expired." 429 | #~ msgstr "您的会话已过期。" 430 | 431 | #~ msgid "Please login to see website" 432 | #~ msgstr "请登录网站看" 433 | 434 | #~ msgid "User roles" 435 | #~ msgstr "用户角色" 436 | 437 | #~ msgid "Choose users access permissions in maintenance mode." 438 | #~ msgstr "选择在维护模式下用户的访问权限。" 439 | -------------------------------------------------------------------------------- /load/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/load/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /load/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/load/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /load/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/load/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /load/fonts/foundation-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/load/fonts/foundation-icons.eot -------------------------------------------------------------------------------- /load/fonts/foundation-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/load/fonts/foundation-icons.ttf -------------------------------------------------------------------------------- /load/fonts/foundation-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/load/fonts/foundation-icons.woff -------------------------------------------------------------------------------- /load/index.php: -------------------------------------------------------------------------------- 1 | 36 | 37 | > 38 | 39 | 40 | 41 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 57 | 58 | 59 | 60 | 61 | 64 | 65 | 66 | 67 | 68 | 74 | '; 77 | } elseif ( ! empty( $google_fonts[0] ) ) { 78 | echo ''; 79 | } 80 | ?> 81 | 82 | 83 | > 84 | 85 | 86 |
87 | 88 |
89 |
90 |
91 | 92 |
93 |
94 |
95 |
96 | 97 |
98 |
99 |
100 |
101 |
102 | 103 |
104 |
105 | 106 | 107 | 113 | 114 | 117 | 118 | 119 | 120 | 121 | 122 |
123 | 124 | 125 | 126 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | -------------------------------------------------------------------------------- /load/js/jquery.backstretch.min.js: -------------------------------------------------------------------------------- 1 | (function($,window,undefined){$.fn.backstretch=function(images,options){if(images===undefined||images.length===0)$.error("No images were supplied for Backstretch");if($(window).scrollTop()===0)window.scrollTo(0,0);return this.each(function(){var $this=$(this),obj=$this.data("backstretch");if(obj){options=$.extend(obj.options,options);obj.destroy(true)}obj=new Backstretch(this,images,options);$this.data("backstretch",obj)})};$.backstretch=function(images,options){return $("body").backstretch(images, 2 | options).data("backstretch")};$.expr[":"].backstretch=function(elem){return $(elem).data("backstretch")!==undefined};$.fn.backstretch.defaults={centeredX:true,centeredY:true,duration:5E3,fade:0};var styles={wrap:{left:0,top:0,overflow:"hidden",margin:0,padding:0,height:"100%",width:"100%",zIndex:-999999},img:{position:"absolute",display:"none",margin:0,padding:0,border:"none",width:"auto",height:"auto",maxWidth:"none",zIndex:-999999}};var Backstretch=function(container,images,options){this.options= 3 | $.extend({},$.fn.backstretch.defaults,options||{});this.images=$.isArray(images)?images:[images];$.each(this.images,function(){$("")[0].src=this});this.isBody=container===document.body;this.$container=$(container);this.$root=this.isBody?supportsFixedPosition?$(window):$(document):this.$container;var $existing=this.$container.children(".backstretch").first();this.$wrap=$existing.length?$existing:$('
').css(styles.wrap).appendTo(this.$container);if(!this.isBody){var position= 4 | this.$container.css("position"),zIndex=this.$container.css("zIndex");this.$container.css({position:position==="static"?"relative":position,zIndex:zIndex==="auto"?0:zIndex,background:"none"});this.$wrap.css({zIndex:-999998})}this.$wrap.css({position:this.isBody&&supportsFixedPosition?"fixed":"absolute"});this.index=0;this.show(this.index);$(window).on("resize.backstretch",$.proxy(this.resize,this)).on("orientationchange.backstretch",$.proxy(function(){if(this.isBody&&window.pageYOffset===0){window.scrollTo(0, 5 | 1);this.resize()}},this))};Backstretch.prototype={resize:function(){try{var bgCSS={left:0,top:0},rootWidth=this.isBody?this.$root.width():this.$root.innerWidth(),bgWidth=rootWidth,rootHeight=this.isBody?window.innerHeight?window.innerHeight:this.$root.height():this.$root.innerHeight(),bgHeight=bgWidth/this.$img.data("ratio"),bgOffset;if(bgHeight>=rootHeight){bgOffset=(bgHeight-rootHeight)/2;if(this.options.centeredY)bgCSS.top="-"+bgOffset+"px"}else{bgHeight=rootHeight;bgWidth=bgHeight*this.$img.data("ratio"); 6 | bgOffset=(bgWidth-rootWidth)/2;if(this.options.centeredX)bgCSS.left="-"+bgOffset+"px"}this.$wrap.css({width:rootWidth,height:rootHeight}).find("img:not(.deleteable)").css({width:bgWidth,height:bgHeight}).css(bgCSS)}catch(err){}return this},show:function(index){if(Math.abs(index)>this.images.length-1)return;else this.index=index;var self=this,oldImage=self.$wrap.find("img").addClass("deleteable"),evt=$.Event("backstretch.show",{relatedTarget:self.$container[0]});clearInterval(self.interval);self.$img= 7 | $("").css(styles.img).bind("load",function(e){var imgWidth=this.width||$(e.target).width(),imgHeight=this.height||$(e.target).height();$(this).data("ratio",imgWidth/imgHeight);$(this).fadeIn(self.options.speed||self.options.fade,function(){oldImage.remove();if(!self.paused)self.cycle();self.$container.trigger(evt,self)});self.resize()}).appendTo(self.$wrap);self.$img.attr("src",self.images[index]);return self},next:function(){return this.show(this.index1){clearInterval(this.interval);this.interval=setInterval($.proxy(function(){if(!this.paused)this.next()},this),this.options.duration)}return this},destroy:function(preserveBackground){$(window).off("resize.backstretch orientationchange.backstretch");clearInterval(this.interval); 9 | if(!preserveBackground)this.$wrap.remove();this.$container.removeData("backstretch")}};var supportsFixedPosition=function(){var ua=navigator.userAgent,platform=navigator.platform,wkmatch=ua.match(/AppleWebKit\/([0-9]+)/),wkversion=!!wkmatch&&wkmatch[1],ffmatch=ua.match(/Fennec\/([0-9]+)/),ffversion=!!ffmatch&&ffmatch[1],operammobilematch=ua.match(/Opera Mobi\/([0-9]+)/),omversion=!!operammobilematch&&operammobilematch[1],iematch=ua.match(/MSIE ([0-9]+)/),ieversion=!!iematch&&iematch[1];return!((platform.indexOf("iPhone")> 10 | -1||(platform.indexOf("iPad")>-1||platform.indexOf("iPod")>-1))&&(wkversion&&wkversion<534)||(window.operamini&&{}.toString.call(window.operamini)==="[object OperaMini]"||(operammobilematch&&omversion<7458||(ua.indexOf("Android")>-1&&(wkversion&&wkversion<533)||(ffversion&&ffversion<6||("palmGetResource"in window&&(wkversion&&wkversion<534)||(ua.indexOf("MeeGo")>-1&&ua.indexOf("NokiaBrowser/8.5.0")>-1||ieversion&&ieversion<=6)))))))}()})(jQuery,window); -------------------------------------------------------------------------------- /load/js/jquery.blur.min.js: -------------------------------------------------------------------------------- 1 | (function(window,document,$){var cache={filterId:0};var Vague=function(elm,customOptions){var defaultOptions={intensity:5},options=$.extend(defaultOptions,customOptions);this.$elm=elm instanceof $?elm:$(elm);var blurred=false;var browserPrefixes=" -webkit- -moz- -o- -ms- ".split(" ");var cssPrefixString={};var cssPrefix=function(property){if(cssPrefixString[property]||cssPrefixString[property]==="")return cssPrefixString[property]+property;var e=document.createElement("div");var prefixes=["","Moz", 2 | "Webkit","O","ms","Khtml"];for(var i in prefixes)if(typeof e.style[prefixes[i]+property]!=="undefined"){cssPrefixString[property]=prefixes[i];return prefixes[i]+property}return property.toLowerCase()};var cssfilters=function(){var el=document.createElement("div");el.style.cssText=browserPrefixes.join("filter"+":blur(2px); ");return!!el.style.length&&(document.documentMode===undefined||document.documentMode>9)}();var svgfilters=function(){var result=false;try{result=typeof SVGFEColorMatrixElement!== 3 | undefined&&SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_SATURATE==2}catch(e){}return result}();var appendSVGFilter=function(){var filterMarkup=""+""+""+""+"";$("body").append(filterMarkup)};this.init=function(){if(svgfilters)appendSVGFilter();this.$elm.data("vague-filter-id",cache.filterId);cache.filterId++};this.blur=function(){var filterValue,filterId=this.$elm.data("vague-filter-id"), 4 | cssProp={};if(cssfilters)filterValue="blur("+options.intensity+"px)";else if(svgfilters)filterValue="url(#blur-effect-id-"+filterId+")";else filterValue="progid:DXImageTransform.Microsoft.Blur(pixelradius="+options.intensity+")";cssProp[cssPrefix("Filter")]=filterValue;this.$elm.css(cssProp);blurred=true};this.unblur=function(){var cssProp={};cssProp[cssPrefix("Filter")]="none";this.$elm.css(cssProp);blurred=false};this.toggleblur=function(){if(blurred)this.unblur();else this.blur()};this.destroy= 5 | function(){if(svgfilters)$("filter#blur-effect-id-"+this.$elm.data("vague-filter-id")).parent().remove();this.unblur()};return this.init()};$.fn.Vague=function(options){return new Vague(this,options)};window.Vague=Vague})(window,document,jQuery); -------------------------------------------------------------------------------- /load/js/jquery.frontend.ie.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function() { 2 | jQuery('input[placeholder], textarea[placeholder]').placeholder(); 3 | }); -------------------------------------------------------------------------------- /load/js/jquery.frontend.js: -------------------------------------------------------------------------------- 1 | /** 2 |  * jQuery.browser.mobile (http://detectmobilebrowser.com/) 3 |  * jQuery.browser.mobile will be true if the browser is a mobile device 4 |  **/ 5 | 6 | jQuery(document).ready(function() { 7 | jQuery(window).resize(); 8 | jQuery('.main-container > div:not(".preloader")').each(function() { 9 | jQuery(this).css({'visibility': 'visible'}); 10 | }); 11 | if (jQuery('#btn-open-login-form').length > 0) { 12 | jQuery('#btn-open-login-form').on('click', function() { 13 | jQuery('body').toggleClass('open-login-form'); 14 | 15 | if (jQuery(this).find('i').hasClass('fi-lock')) { 16 | jQuery(this).find('i').removeClass(); 17 | jQuery(this).find('i').addClass('fi-unlock'); 18 | } else { 19 | jQuery(this).find('i').removeClass(); 20 | jQuery(this).find('i').addClass('fi-lock'); 21 | } 22 | 23 | }); 24 | } 25 | }); 26 | 27 | jQuery(window).load(function() { 28 | jQuery('#content').center(); 29 | 30 | jQuery('.main-container > div:not(".preloader")').each(function() { 31 | jQuery(this).css({'visibility': 'visible'}); 32 | }); 33 | 34 | setTimeout( function() { jQuery('.main-container > .preloader').fadeOut(300, function() { 35 | jQuery('.login-form-container').fadeIn(600); 36 | }); }, 1000); 37 | }); 38 | 39 | jQuery(window).resize(function() { 40 | jQuery('#content').center(); 41 | var window_w = jQuery('.logotype').width(); 42 | jQuery('.logo').css("max-width", window_w + "px" ); 43 | jQuery('.logo-retina').css("max-width", window_w + "px" ); 44 | }); 45 | 46 | jQuery.fn.center = function () { 47 | var window_h = Math.max(0, ((jQuery(window).height() - jQuery(this).outerHeight()) / 2 ) + jQuery(window).scrollTop()); 48 | var content_h = jQuery('.logotype').height(); 49 | if ( window_h > content_h ) { 50 | this.css("position","absolute"); 51 | this.css("top", window_h + "px"); 52 | 53 | } else { 54 | this.css("position","relative"); 55 | this.css("top","0"); 56 | 57 | } 58 | return this; 59 | } 60 | 61 | 62 | 63 | -------------------------------------------------------------------------------- /load/js/jquery.frontend.min.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function(){jQuery(window).resize();jQuery('.main-container > div:not(".preloader")').each(function(){jQuery(this).css({visibility:"visible"})});if(jQuery("#btn-open-login-form").length>0){jQuery("#btn-open-login-form").on("click",function(){jQuery("body").toggleClass("open-login-form");if(jQuery(this).find("i").hasClass("fi-lock")){jQuery(this).find("i").removeClass();jQuery(this).find("i").addClass("fi-unlock")}else{jQuery(this).find("i").removeClass();jQuery(this).find("i").addClass("fi-lock")}})}});jQuery(window).load(function(){jQuery("#content").center();jQuery('.main-container > div:not(".preloader")').each(function(){jQuery(this).css({visibility:"visible"})});setTimeout(function(){jQuery(".main-container > .preloader").fadeOut(300,function(){jQuery(".login-form-container").fadeIn(600)})},1e3)});jQuery(window).resize(function(){jQuery("#content").center();var window_w=jQuery(".logotype").width();jQuery(".logo").css("max-width",window_w+"px");jQuery(".logo-retina").css("max-width",window_w+"px")});jQuery.fn.center=function(){var window_h=Math.max(0,(jQuery(window).height()-jQuery(this).outerHeight())/2+jQuery(window).scrollTop());var content_h=jQuery(".logotype").height();if(window_h>content_h){this.css("position","absolute");this.css("top",window_h+"px")}else{this.css("position","relative");this.css("top","0")}return this}; -------------------------------------------------------------------------------- /load/js/jquery.placeholder.js: -------------------------------------------------------------------------------- 1 | !function(a){function b(b){this.input=b,"password"==b.attr("type")&&this.handlePassword(),a(b[0].form).submit(function(){b.hasClass("placeholder")&&b[0].value==b.attr("placeholder")&&(b[0].value="")})}b.prototype={show:function(a){if(""===this.input[0].value||a&&this.valueIsPlaceholder()){if(this.isPassword)try{this.input[0].setAttribute("type","text")}catch(a){this.input.before(this.fakePassword.show()).hide()}this.input.addClass("placeholder"),this.input[0].value=this.input.attr("placeholder")}},hide:function(){if(this.valueIsPlaceholder()&&this.input.hasClass("placeholder")&&(this.input.removeClass("placeholder"),this.input[0].value="",this.isPassword)){try{this.input[0].setAttribute("type","password")}catch(a){}this.input.show(),this.input[0].focus()}},valueIsPlaceholder:function(){return this.input[0].value==this.input.attr("placeholder")},handlePassword:function(){var b=this.input;if(b.attr("realType","password"),this.isPassword=!0,a.browser.msie&&b[0].outerHTML){var c=a(b[0].outerHTML.replace(/type=(['"])?password\1/gi,"type=$1text$1"));this.fakePassword=c.val(b.attr("placeholder")).addClass("placeholder").focus(function(){b.trigger("focus"),a(this).hide()}),a(b[0].form).submit(function(){c.remove(),b.show()})}}};var c=!!("placeholder"in document.createElement("input"));a.fn.placeholder=function(){return c?this:this.each(function(){var c=a(this),d=new b(c);d.show(!0),c.focus(function(){d.hide()}),c.blur(function(){d.show(!1)}),a.browser.msie&&(a(window).load(function(){c.val()&&c.removeClass("placeholder"),d.show(!0)}),c.focus(function(){if(""==this.value){var a=this.createTextRange();a.collapse(!0),a.moveStart("character",0),a.select()}}))})}}(jQuery); -------------------------------------------------------------------------------- /load/style.css: -------------------------------------------------------------------------------- 1 | :before,:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}*{margin:0;padding:0;border:0;outline:none}[class*="fi-"]{display:inline;width:auto;height:auto;line-height:inherit;vertical-align:baseline;background-image:none;background-position:0 0;background-repeat:repeat}[class*="fi-"]:before{font-weight:400;font-style:normal;text-decoration:inherit}html{height:100%}body{height:100%;box-sizing:border-box;min-height:100%;min-width:100%;position:relative;z-index:1;margin:0;padding:0;overflow:hidden}input:-webkit-autofill{-webkit-box-shadow:0 0 0 50px #292b2c inset;-webkit-text-fill-color:#fff}input:-webkit-autofill:focus{-webkit-box-shadow:0 0 0 50px #48494a inset;-webkit-text-fill-color:#fff}body > #wrapper{height:100%;min-height:100%;width:100%;display:inline-block}body > .main-container{height:100%;min-height:100%;min-width:100%;transition:all .6s ease-in-out;-webkit-transition:all .6s ease-in-out;-moz-transition:all .6s ease-in-out;-o-transition:all .6s ease-in-out;z-index:0;overflow:hidden;position:initial!important;overflow-y:auto}body > .login-form-container{background:none repeat scroll 0 0 rgba(0,0,0,0.8);display:none;height:100%;min-height:100%;min-width:308px;max-width:308px;width:100%;position:fixed;right:-308px;top:0;z-index:0;transition:all .6s ease-in-out;-webkit-transition:all .6s ease-in-out;-moz-transition:all .6s ease-in-out;-o-transition:all .6s ease-in-out;z-index:999;outline:1px solid transparent}body.open-login-form > .login-form-container{right:0}body.open-login-form > .main-container{-webkit-perspective:1000px;perspective:1000px;-ms-transform-origin:0 50%;-o-transform-origin:0 50%;-moz-transform-origin:0 50%;-webkit-transform-origin:0 50%;transform-origin:0 50%;-ms-transform:perspective(1920px) rotate3d(0,1,0,9deg);-webkit-transform:perspective(1920px) rotate3d(0,1,0,9deg);transform:perspective(1920px) rotate3d(0,1,0,9deg);-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;backface-visibility:hidden}.btn-open-login-form{background:none repeat scroll 0 0 rgba(0,0,0,0.8);font-size:36px;left:-54px;padding:4px 14px 8px 15px;position:absolute;display:inline-block;top:23%;-webkit-border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-topleft:4px;-moz-border-radius-bottomleft:4px;border-top-left-radius:4px;border-bottom-left-radius:4px;cursor:pointer}body.error .btn-open-login-form{color:red}.center{clear:both;content:"";display:block;margin:0 auto;max-width:1020px;width:100%;padding:0 10px;box-sizing:border-box;text-align:center}.logotype{max-width:100%}#wrapper{width:100%;height:90%;position:relative;display:inline-block}header{position:relative;display:inline-block;width:100%}.site-content{position:relative;display:inline-block;width:100%;left:0;top:0;color:#fff}.site-content .font-center{text-align:center}.site-content h2,.site-content h3{width:100%;display:block}.site-content h2.heading{font-size:45px;font-weight:lighter}.site-content .description h3{font-size:28px;font-weight:lighter;text-align:center}.site-content .description p{font-size:14px;margin:0;line-height:normal}.site-content .description ul,.site-content .description ol{margin:5px 0}.site-content .description p{margin-bottom:10px}.site-content .description blockquote{font-size:18px;font-style:italic;margin:.25em 0;padding:1.5em 40px 0;line-height:1.45;position:relative;text-align:left;display:block}.site-content .description blockquote:before{display:block;font-family:Georgia,serif;content:"\201C";font-size:80px;position:absolute;left:-5px;top:-5px;opacity:.85}.site-content .description blockquote cite{font-size:14px;display:block;margin-top:5px;opacity:.85}.site-content .description blockquote cite:before{content:"\2014 \2009"}.site-content p{font-size:16px;margin:0 0 15px;line-height:24px}footer{position:relative;top:0;display:inline-block;width:100%;color:#fff}footer .center{padding:0}.company-name{width:100%;display:block;text-decoration:none;font-family:inherit;font-weight:700;color:inherit;font-size:16px;text-align:center;margin:20px 0}.logo,.logo-retina{font-family:inherit;font-weight:400;text-decoration:none;margin-left:auto;margin-right:auto;display:block}.logo-box{padding:50px 0 30px}.logo-box-retina{display:none}.logo.istext{max-width:100%;padding:30px 60px}.site-title{font-family:inherit;font-weight:lighter;text-align:center;padding:0 0 20px;vertical-align:middle}.login-form{display:inline-block;margin:25px 0 0;padding:20px;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=50);filter:alpha(opacity=50);-moz-opacity:.5;-khtml-opacity:.5;opacity:.5;-webkit-transition:opacity .3s ease-in-out;-moz-transition:opacity .3s ease-in-out;-ms-transition:opacity .3s ease-in-out;-o-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out}.login-form input[type="text"],.login-form input[type="password"]{color:inherit;background-color:rgba(113,113,113,0.6);background-position:14px center;background-repeat:no-repeat;float:left;font-family:inherit;font-size:20px;font-weight:400;margin:0 0 10px;padding:5px 16px 5px 40px;width:100%;display:block;line-height:28px;outline:none;max-width:210px}.wpcf7 input,.wpcf7 textarea{color:inherit;background-color:rgba(113,113,113,0.6);padding:10px 0}.wpcf7 .screen-reader-response{padding:10px 5px}.wpcf7 .screen-reader-response ul{font-size:14px;padding:0 0 0 20px}.wpcf7 .wpcf7-not-valid-tip{padding-left:10px;font-size:11px}.ie8 .login-form input[type="text"],.ie8 .login-form input[type="password"],.ie7 .login-form input[type="text"],.ie7 .login-form input[type="password"]{background-color:#717171}.login-form .licon,.login-form .picon{position:relative;display:inline-block}.ie7 .login-form .licon,.ie7 .login-form .picon{margin:8px 0 0}.login-form .licon:before,.login-form .picon:before{position:absolute;font-weight:400;font-style:normal;font-size:24px;color:inherit;display:inline-block;top:7px;left:12px}.login-form .licon:before{content:"\f1fe";font-family:"foundation-icons"}.ie7 .login-form .licon:before{*zoom:expression(this.runtimeStyle['zoom'] = "1",this.innerHTML = "")}.login-form .picon:before{content:"\f16a";font-family:"foundation-icons"}.login-form .licon.error:before,.login-form .picon.error:before{content:"\f217";font-family:"foundation-icons";color:red}.login-form a.lost-pass{float:left;display:inline-block;text-decoration:none}.login-form a.lost-pass:hover{text-decoration:underline}.login-form label{color:inherit;float:left;font-family:inherit;font-size:25px;padding:0 0 10px;width:100%}.login-form input[type="submit"]{color:inherit;font-size:20px;font-family:inherit;background:none;font-weight:700;float:left;cursor:pointer;border:2px solid #fff;padding:5px 10px;font-weight:bold;margin:10px 0 0;padding:5px 10px;text-align:center;float:right;display:inline-block}input[type="submit"]{border:2px solid #fff;padding:5px 10px;font-weight:700;margin:10px 0 0;padding:5px 10px;color:inherit;font-size:20px;font-family:inherit;background:none;cursor:pointer}.login-form:hover{-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);filter:alpha(opacity=100);-moz-opacity:1;-khtml-opacity:1;opacity:1}.preloader{display:block;height:100%;position:absolute;width:100%;z-index:99999991}.preloader i{font-size:56px;background:none repeat scroll 0 0 rgba(0,0,0,0);display:inline-block;left:50%;top:50%;margin:-25px 0 0 -25px;position:absolute;color:inherit;-webkit-animation-name:spin;-webkit-animation-duration:2200ms;-webkit-animation-iteration-count:infinite;-webkit-animation-timing-function:linear;-moz-animation-name:spin;-moz-animation-duration:2200ms;-moz-animation-iteration-count:infinite;-moz-animation-timing-function:linear;-ms-animation-name:spin;-ms-animation-duration:2200ms;-ms-animation-iteration-count:infinite;-ms-animation-timing-function:linear;animation-name:spin;animation-duration:2200ms;animation-iteration-count:infinite;animation-timing-function:linear}.wpcf7{max-width:400px;margin:0 auto}.wpcf7 input,.wpcf7 textarea{width:100%;padding:10px}@-ms-keyframes spin{from{-ms-transform:rotate(0deg)}to{-ms-transform:rotate(360deg)}}@-moz-keyframes spin{from{-moz-transform:rotate(0deg)}to{-moz-transform:rotate(360deg)}}@-webkit-keyframes spin{from{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(360deg)}}@keyframes spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}::-webkit-input-placeholder{font-size:20px;color:inherit;font-family:inherit;opacity:1}:-moz-placeholder{font-size:20px;color:inherit;font-family:inherit;opacity:1}::-moz-placeholder{font-size:20px;color:inherit;font-family:inherit;opacity:1}:-ms-input-placeholder{font-size:20px;color:inherit;font-family:inherit;opacity:1}#vague-svg-blur{width:0;height:0;display:inline}@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape){body.open-login-form > .main-container{-ms-transform-origin:0 50%;-o-transform-origin:0 50%;-moz-transform-origin:0 50%;-webkit-transform-origin:0 50%;transform-origin:0 50%;-ms-transform:rotateY(0deg);-webkit-transform:rotateY(0deg);transform:rotateY(0deg)}body > .main-container{overflow-y:scroll!important}.center{max-width:1004px}}@media screen and (max-width: 1366px){body.open-login-form > .main-container{-ms-transform-origin:0 50%;-o-transform-origin:0 50%;-moz-transform-origin:0 50%;-webkit-transform-origin:0 50%;transform-origin:0 50%;-ms-transform:rotateY(0deg);-webkit-transform:rotateY(0deg);transform:rotateY(0deg)}}@media screen and (min-width: 320px) and (max-width: 640px) and (orientation: landscape){#countdown .box-digits{padding:30px 16px}#countdown .digits{height:120px;min-width:80px}#mailchimp-box{margin:40px 0 0}footer .social{text-align:center}}@media screen and (max-width: 480px){body > .main-container{overflow-y:scroll!important}body > .login-form-container{background:none repeat scroll 0 0 rgba(0,0,0,1)}.center{max-width:460px}.site-content h2.heading{font-size:24px}.site-content .description h3{font-size:18px}.btn-open-login-form{top:10%;font-size:21px;left:-44px}body > .login-form-container{min-width:266px;max-width:266px;right:-266px}.login-form input[type="text"],.login-form input[type="password"]{max-width:170px}footer .social{text-align:center}footer{padding:0 0 20px}}@media screen and (max-width: 360px){.center{max-width:340px}}@media screen and (max-width: 320px){.center{max-width:300px}.site-content h2.heading{font-size:24px}.site-content .description h3{font-size:18px}.btn-open-login-form{top:10%;font-size:21px;left:-44px}body > .login-form-container{min-width:266px;max-width:266px;right:-266px}.login-form input[type="text"],.login-form input[type="password"]{max-width:170px}}@media only screen and (-webkit-min-device-pixel-ratio: 2),only screen and ( min--moz-device-pixel-ratio: 2),only screen and ( -o-min-device-pixel-ratio: 21),only screen and ( min-device-pixel-ratio: 2),only screen and ( min-resolution: 192dpi),only screen and ( min-resolution: 2dppx){.logo-box{display:none}.logo-box-retina{display:block;width:100%;margin:50px auto 10px}}@media (-webkit-min-device-pixel-ratio: 3),(min-resolution: 288dpi){.logo-box{display:none}.logo-box-retina{display:block;width:100%;margin:50px auto 10px}} -------------------------------------------------------------------------------- /maintenance.php: -------------------------------------------------------------------------------- 1 | Features 20 |
    21 |
  • Html/CSS layout without images (retina ready)
  • 22 |
  • Fullscreen background (Backstretch)
  • 23 |
  • Blur background effect
  • 24 |
  • Upload own logo and retina
  • 25 |
  • Configurable colors: fonts, icons, background
  • 26 |
  • Add your title, headline, text
  • 27 |
  • User login with validation
  • 28 |
  • Admin bar: show/hide
  • 29 |
  • 503 error on/off
  • 30 |
  • Google analytics field
  • 31 |
  • Login on/off
  • 32 |
  • Exclude pages in Maintenance mode
  • 33 | 34 |
35 | 36 | 37 | View demo 38 | 39 | 40 |

Maintenance PRO

41 | Required Free version. All features from FREE version included + 42 | 43 |
    44 |
  • Unique scheduler countdown
  • 45 |
  • User permissions
  • 46 |
  • Fullscreen background gallery
  • 47 |
  • Gallery patterns overlays
  • 48 |
  • Background gallery with overlay
  • 49 |
  • Background video from media gallery
  • 50 |
  • Background video from Youtube/Vimeo
  • 51 |
  • Additional HTML area
  • 52 |
  • Social media profiles (Foundation icons)
  • 53 |
  • Email newsletter subscribe form (MailChimp and Campaign Monitor integration)
  • 54 |
55 | 56 | Get additional functionality 57 | 58 |

Translation

59 | 60 |
    61 |
  • Russian (ru_RU)
  • 62 |
  • Brazilian Portuguese (pt_BR)
  • 63 |
  • German (de_DE)
  • 64 |
  • Spanish (es_ES)
  • 65 |
  • Farsi Persian (fa_IR)
  • 66 |
  • Turkish (tr_TR)
  • 67 |
  • French (fr_FR)
  • 68 |
  • Chinese (zh_CN)
  • 69 |
  • Czech (cs_CZ)
  • 70 |
  • Ukrainian (uk_UA)
  • 71 |
  • Finnish (fi_FI)
  • 72 |
  • Italian (it_IT)
  • 73 |
  • Arabic (Ar)
  • 74 |
  • Dutch (nl_NL)
  • 75 |
76 | 77 |

If you would like to create translation to your native language, you can send the text of PO and MO files to the Fruitful Code and we'll add it to the next plugin update.

You can download the latest version of the program for work with PO and MO files Poedit.

78 | 79 |

Technical support

80 | If you have any questions or recommendations regarding the functionality of our plugins (existing options, new options, current issues), please feel free to contact us. 81 | 82 |

How to thank a developers

83 |
    84 |
  1. If you like our plugin and want to say us thank you, please leave us review
  2. 85 |
  3. Make review in your blog or journal with URL link to official plugin page and plugin demo
  4. 86 |
  5. Recommend "Maintenance plugin" to your friends
  6. 87 |
  7. Each purchasing of PRO version make us more happy
  8. 88 |
89 | 90 | Thanks for using. 91 | 92 | == Installation == 93 | 94 | 1. Upload the «Maintenance» folder to the /wp-content/plugins/ directory 95 | 2. Activate the plugin through the 'Plugins' menu in WordPress 96 | 3. Go to Dashboard > Maintenance 97 | 98 | == Screenshots == 99 | 1. Maintenance options page 100 | 101 | == Frequently Asked Questions == 102 | 103 | = I have activated plugin and don’t see any changes, looks like plugin is not working. = 104 | 105 | Try to check in different browser. If you a logged as wordpress user you see website in normal mode. 106 | 107 | = Will my site remain visible to search engines while maintenance mode is on? = 108 | 109 | The site will not be visible to search engines. "503 Service Temporarily Unavailable" can be changed in plugin options. 110 | 111 | = Where can I find out the username and password to get to the site? = 112 | 113 | You can use your administrator access or create new user in wordpress dashboard 114 | http://yousite.com/wp-admin/users.php 115 | 116 | = If I incorrectly write a login and password I will see the error on the page wp-login? = 117 | No, it will be display error on current maintenance page, without redirect to wp-login page 118 | 119 | = I haven’t found an answer to my question, what should I do? = 120 | You can check support forum or send email to us 121 | 122 | == Change log == 123 | = 3.7.1 = 124 | - Bug fix: Restored admin bar notification 125 | - Bug fix: Preview mode 126 | - Update: Translations 127 | 128 | = 3.7.0 = 129 | - Improvement: Code optimization 130 | 131 | = 3.6.4 = 132 | - Improvement: Code optimization 133 | - Update: Removed 'Show admin bar' option 134 | - Update: Removed statistic 135 | - Update: Removed subscription 136 | - Update: Translations 137 | 138 | = 3.6.3 = 139 | - Bug fix: Deactivated statistics 140 | 141 | = 3.6.2 = 142 | - New: Added option to switch sound on video 143 | - New: Added child theme support 144 | - New: Added statistics 145 | - Update: Updated translations 146 | - Bug fix: background color for login form 147 | 148 | = 3.6.1 = 149 | - Improvement: setting max width logo size 150 | - Bug fix: Change template_include hook priority 151 | - Bug fix: Fix container height 152 | - Bug fix: logo size cropping 153 | - Bug fix: fonts subsets fix 154 | 155 | = 3.6 = 156 | - Update: Optimized js libs 157 | - Update: Replaced some features by new css and html5 capabilities 158 | - Update: Refreshed google fonts 159 | - New: Change preloader icon in admin panel 160 | - New: Uploading image for portrait device orientation 161 | - New: Add authorization error text to login panel 162 | - New: Select login panel bg color 163 | - New: Add some css effects 164 | 165 | = 3.5.1 = 166 | - Bugfix: Js cache with server options 167 | - Bugfix: bg default color 168 | - Optimization: Fonts load 169 | - Optimization: PageSpeed 90/96 170 | 171 | = 3.5 = 172 | * Optimization: Plugin speed optimization 173 | * Bugfix: Clear js cache 174 | 175 | = 3.4.2 = 176 | * Optimization: Plugin speed optimization (Google PageSpeed 95) 177 | * Tested up to: Wordpress 4.8 178 | 179 | = 3.4.1 = 180 | * Bug fix: Return original template if mode is off 181 | 182 | = 3.4 = 183 | * Improvements: WP Hide & Security plugin compatible 184 | * Bug fix: Update localization files 185 | * Bug fix: Subset fonts 186 | * Bug fix: Permission access by user role 187 | * Bug fix: Remove deprecated function getimagesize 188 | 189 | = 3.3 = 190 | * New: Add og meta content 191 | * New: Default site title 192 | * Update: WordPress 4.7.1 193 | * Bug fix: Add function not filter to add paragraph 194 | 195 | = 3.2 = 196 | * New: Hungarian translation 197 | * New: Persian translation 198 | * New: Swedish translation 199 | * Updated: German translation 200 | * Updated: Russian translation 201 | * Updated: Google Analytics script 202 | * Improvements: Get icons from CDN's 203 | * Improvements: Description tinymce textarea 204 | * Bug fix: Exclude pages - display only !empty post types 205 | * Bug fix: function wpcf7_ajax_loader() 206 | 207 | = 3.1.1 = 208 | * Improvements: Google fonts - Add font: Martel Sans 209 | * Updated: Chinese(zh_CN) translation 210 | * Bug fix: Relative reference for google fonts 211 | * Bug fix: Meta title output 212 | * Bug fix: Meta description output 213 | 214 | = 3.1 = 215 | * New: Meta description 216 | * Improvements: Descriptions for fields 217 | * Improvements: Added check for ssl 218 | * Improvements: link from footer removed 219 | * Bug fix: Plugin Inspector call this UNSAFE 220 | * Bug fix: changed call to the function mt_clear_cache 221 | * Bug fix: Grammatical mistakes 222 | * Bug fix: Standart background image loading, after update to WordPress 4.6 223 | * Bug fix: Subsets problem with js 224 | * Bug fix: Bugfix googlefonts.json missed problem 225 | * Update: Translation files 226 | 227 | = 3.0 = 228 | * New: Additional Save changes button 229 | * Update: Translation files 230 | * Update: Core for maintenance PRO 231 | * Bug fix: Lost password link 232 | 233 | = 2.7.1 = 234 | * Update: Language files 235 | * Bug fix: Default values and checkbox changes in preferences 236 | * Bug fix: Lost password link if WooCommerce exist 237 | 238 | = 2.7 = 239 | * New: Google fonts subsets 240 | * New: WP Super Cache support 241 | * New: WP Total Cache support 242 | * New: Retina logo 243 | * New: Logo width and height fields 244 | * New: uninstal.php 245 | * Update: WordPress 4.4.2 support 246 | * Improvements: Responsive version 247 | * Improvements: Time format 248 | * Bug fix: Maintenance not working on French Language 249 | 250 | 251 | = 2.6 = 252 | * Update: WordPress 4.4 support 253 | * Update: translation files 254 | * New: Meta fields for sharing 255 | * Bug fix: callback function to uninstall hook 256 | * Bug fix: save content and settings if plugin disabled 257 | * Bug fix: if footer text is empty not showing text 258 | 259 | = 2.5 = 260 | * New: French translation 261 | * Update: WordPress 4.3 support 262 | * Bug fix: Footer and social media icons for mobiles 263 | * Bug fix: Exclude pages now by post id 264 | * Bug fix: Check exclude pages with empty reading options 265 | 266 | = 2.4 = 267 | * New option: Footer text 268 | * Improvements: Exclude / Include pages 269 | * Improvements: CSS optimization 270 | * Translation updates 271 | 272 | = 2.3 = 273 | * New: Enable maintenance mode for specific pages 274 | * Bug fix: Lost password 275 | * Bug fix: password format with symbols 276 | * Improvements: CSS optimization 277 | 278 | = 2.2.1 = 279 | * New: default background image 280 | * Improvements: blur off by default 281 | * Bug fix: Label styles 282 | 283 | = 2.2 = 284 | * New options: Custom css 285 | * New options: Font family 286 | * New login form 287 | * Improvements: Responsive version 288 | * Bug fix: PHP 5.2 support 289 | 290 | = 2.1.2 = 291 | * New translation Deutch (de_DE) 292 | * New translation Finnish (fi_FI) 293 | * Bug fix: Google analytics field. 294 | 295 | = 2.1.1 = 296 | * Content alignment fix 297 | * Added scroll for extra height 298 | * Translation updates 299 | 300 | = 2.1 = 301 | * New option Login on/off 302 | * New option Google Analytics field 303 | * Responsive bug fix 304 | 305 | = 2.0.1 = 306 | * New translation Brazilian Portuguese 307 | * Bug fix in title 308 | * Bug fix blur background image scroll 309 | 310 | 311 | = 2.0 = 312 | * New features 313 | * New PRO version 314 | * New design 315 | * New dashboard 316 | * Core plugin changes 317 | * Backstretch fullscreen background 318 | * Blur background effect 319 | * 503 error switcher 320 | 321 | = 1.2.3 = 322 | * Wordpress 3.6 support 323 | * Bug fix 324 | * Warning Messages, open_basedir conflict - resolved. 325 | 326 | = 1.2.2 = 327 | * Re-directed user to the root of the doman (not to subdirectory). 328 | * Bugfix, Notice in dasboard with debug mode. 329 | 330 | = 1.2.1 = 331 | * Admin bar bug fix 332 | * Css fix 333 | 334 | = 1.2 = 335 | * Translation ready 336 | * Add Russian language 337 | * Add option for display admin bar 338 | * Css fixes for WP 3.5 339 | 340 | = 1.1.1 = 341 | *Css fixes 342 | 343 | = 1.1 = 344 | * Any logo images will be in center of page 345 | * Lastpass fields corrected width 346 | * Bug fixes 347 | 348 | = 1.0 = 349 | * initial release 350 | 351 | == Upgrade Notice == 352 | -------------------------------------------------------------------------------- /screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fruitfulcode/Maintenance/f917b3741a7947ed8ea5842a97d3862a203a1397/screenshot-1.png -------------------------------------------------------------------------------- /uninstall.php: -------------------------------------------------------------------------------- 1 |