Plugin Directory

Changeset 2998366


Ignore:
Timestamp:
11/19/2023 04:31:33 PM (2 years ago)
Author:
belingo
Message:

Changed the method of connecting pop-up windows and selector, added the ability to change text in windows from the console

Location:
belingogeo/trunk
Files:
2 added
9 edited

Legend:

Unmodified
Added
Removed
  • belingogeo/trunk/belingoGeo.php

    r2979050 r2998366  
    5151    update_option('belingo_geo_url_type', 'subdirectory');
    5252    update_option('belingo_geo_sitemap_per_page', 1000);
     53    update_option('belingo_geo_basic_popup_window_header', __('Your delivery region', 'belingogeo'));
     54    update_option('belingo_geo_basic_popup_window_text1', __('Didn\'t find your city?', 'belingogeo'));
     55    update_option('belingo_geo_basic_popup_window_text2', __('We deliver worldwide', 'belingogeo'));
    5356
    5457    flush_rewrite_rules();
  • belingogeo/trunk/css/belingoGeo.css

    r2935660 r2998366  
    9393  margin:0px;
    9494  padding: 5px 4px 3px 5px;
    95   width: 10px;
     95  width: 20px;
    9696  height: auto;
    9797}
  • belingogeo/trunk/includes/admin/settings.php

    r2979666 r2998366  
    139139    register_setting( 'belingo_geo_excludes', 'belingo_geo_basic_enable_search_in_popup');
    140140    register_setting( 'belingo_geo_excludes', 'belingo_geo_basic_add_city_to_woo_page_title');
     141    register_setting( 'belingo_geo_excludes', 'belingo_geo_basic_popup_window_header');
     142    register_setting( 'belingo_geo_excludes', 'belingo_geo_basic_popup_window_text1');
     143    register_setting( 'belingo_geo_excludes', 'belingo_geo_basic_popup_window_text2');
     144    register_setting( 'belingo_geo_excludes', 'belingo_geo_basic_enable_windows_in_footer');
    141145    add_settings_section( 'belingo_geo_basic', __('Basic', 'belingogeo'), '', $settings_page );
    142146    add_settings_section( 'belingo_geo_excludes', __('Exceptions', 'belingogeo'), '', $settings_page );
     
    200204
    201205    add_settings_field(
     206        'belingo_geo_basic_popup_window_header',
     207        __('Popup title with cities', 'belingogeo'),
     208        'belingo_geo_display_settings',
     209        $settings_page,
     210        'belingo_geo_basic',
     211        array(
     212            'type'      => 'text',
     213            'option_name' => 'belingo_geo_basic_popup_window_header',
     214            'descr'     => __('Popup title with cities', 'belingogeo'),
     215            'post_type' => false
     216        )
     217    );
     218
     219    add_settings_field(
     220        'belingo_geo_basic_popup_window_text1',
     221        __('Additional text1 in the popup window', 'belingogeo'),
     222        'belingo_geo_display_settings',
     223        $settings_page,
     224        'belingo_geo_basic',
     225        array(
     226            'type'      => 'text',
     227            'option_name' => 'belingo_geo_basic_popup_window_text1',
     228            'descr'     => __('Additional text1 in the popup window', 'belingogeo'),
     229            'post_type' => false
     230        )
     231    );
     232
     233    add_settings_field(
     234        'belingo_geo_basic_popup_window_text2',
     235        __('Additional text2 in the popup window', 'belingogeo'),
     236        'belingo_geo_display_settings',
     237        $settings_page,
     238        'belingo_geo_basic',
     239        array(
     240            'type'      => 'text',
     241            'option_name' => 'belingo_geo_basic_popup_window_text2',
     242            'descr'     => __('Additional text2 in the popup window', 'belingogeo'),
     243            'post_type' => false
     244        )
     245    );
     246
     247    add_settings_field(
     248        'belingo_geo_basic_enable_windows_in_footer',
     249        __('Connect pop-ups in the site footer', 'belingogeo'),
     250        'belingo_geo_display_settings',
     251        $settings_page,
     252        'belingo_geo_basic',
     253        array(
     254            'type'      => 'checkbox',
     255            'option_name' => 'belingo_geo_basic_enable_windows_in_footer',
     256            'descr'     => __('Enables pop-up windows in the footer of the site, the option can not be enabled if you placed the shortcode manually', 'belingogeo'),
     257            'post_type' => false
     258        )
     259    );
     260
     261    add_settings_field(
    202262        'belingo_geo_sitemap_per_page',
    203263        __('Number of urls in the sitemap', 'belingogeo'),
  • belingogeo/trunk/includes/hooks.php

    r2979048 r2998366  
    5858    }
    5959    wp_enqueue_script('belingo-geo-scripts', BELINGO_GEO_PLUGIN_URL . '/js/belingoGeo.js', array('jquery'), BELINGO_GEO_VERSION, true);
     60
     61}
     62
     63add_action( 'wp_footer', 'belingogeo_footer_action' );
     64function belingogeo_footer_action(){
     65
     66    $belingo_geo_basic_enable_windows_in_footer = get_option('belingo_geo_basic_enable_windows_in_footer');
     67
     68    if($belingo_geo_basic_enable_windows_in_footer && $belingo_geo_basic_enable_windows_in_footer == 1) {
     69        echo do_shortcode('[belingogeo_popup_select_city]');
     70    }
    6071
    6172}
  • belingogeo/trunk/includes/shortcodes.php

    r2978322 r2998366  
    107107    $data = [];
    108108
    109     $args = [
    110         'posts_per_page' => -1,
    111         'orderby' => 'name',
    112         'order' => 'asc'
    113     ];
    114 
    115     $args = apply_filters('belingogeo_popup_cities_args', $args);
    116 
    117     $data['cities'] = belingoGeo_get_cities($args);
    118 
    119109    ob_start();
    120110    belingogeo_load_template('select_city.php', $data);
     111    $content = ob_get_contents();
     112    ob_end_clean();
     113    return $content;
     114
     115}
     116
     117add_shortcode("belingogeo_popup_select_city", "belingoGeo_popup_select_city_shortcode");
     118function belingoGeo_popup_select_city_shortcode($atts) {
     119
     120    $data = [];
     121
     122    $data['header'] = get_option('belingo_geo_basic_popup_window_header');
     123    $data['text1'] = get_option('belingo_geo_basic_popup_window_text1');
     124    $data['text2'] = get_option('belingo_geo_basic_popup_window_text2');
     125
     126    ob_start();
     127    belingogeo_load_template('popup_select_city.php', $data);
     128    $content = ob_get_contents();
     129    ob_end_clean();
     130    return $content;
     131
     132}
     133
     134add_shortcode("belingogeo_selector", "belingoGeo_selector_shortcode");
     135function belingoGeo_selector_shortcode($atts) {
     136
     137    $data = [];
     138
     139    ob_start();
     140    belingogeo_load_template('selector.php', $data);
    121141    $content = ob_get_contents();
    122142    ob_end_clean();
  • belingogeo/trunk/js/belingoGeo.js

    r2969851 r2998366  
    2323    }
    2424    jQuery.post(belingoGeo.ajaxurl, data, function(response) {
    25         jQuery('#geolocation__value').html(response);
     25        jQuery('.geolocation__value').html(response);
    2626    });
    2727
     
    3131    }
    3232    jQuery.post(belingoGeo.ajaxurl, data, function(question) {
    33         jQuery('#geolocationChangeCity').after(question);
     33        jQuery('.geolocation__link').after(question);
    3434    });
    3535
     
    6565    });
    6666
    67     jQuery(document).on('click','#geolocationChangeCity, .geolocationChangeCity', function() {
     67    jQuery(document).on('click','#geolocationChangeCity, .geolocationChangeCity, .geolocation__link', function() {
    6868        show_popup_window('#cityChange');
    6969        var data = {
  • belingogeo/trunk/languages/belingogeo-ru_RU.po

    r2979666 r2998366  
    33msgid ""
    44msgstr ""
    5 "PO-Revision-Date: 2023-10-16 16:47+0000\n"
     5"PO-Revision-Date: 2023-11-19 16:18+0000\n"
    66"MIME-Version: 1.0\n"
    77"Content-Type: text/plain; charset=UTF-8\n"
     
    5454msgstr "О плагине"
    5555
    56 #: includes/admin/settings.php:451
     56#: includes/admin/settings.php:511
    5757msgid "Add a city to the header of the WooCommerce category"
    5858msgstr "Добавить город в заголовок категории WooCommerce"
     
    6262msgstr "Добавить город"
    6363
    64 #: includes/admin/settings.php:349
     64#: includes/admin/settings.php:409
    6565msgid "Add city to breadcrumbs"
    6666msgstr "Добавить город в хлебные крошки"
     
    7777msgid "Additional points"
    7878msgstr "Дополнительные точки"
     79
     80#: includes/admin/settings.php:221 includes/admin/settings.php:228
     81msgid "Additional text1 in the popup window"
     82msgstr "Дополнительный текст1 во всплывающем окне"
     83
     84#: includes/admin/settings.php:235 includes/admin/settings.php:242
     85msgid "Additional text2 in the popup window"
     86msgstr "Дополнительный текст2 во всплывающем окне"
    7987
    8088#: includes/admin/functions.php:73 includes/admin/functions.php:455
     
    101109"рекомендуем разделить файл на несколько частей."
    102110
    103 #: includes/admin/settings.php:419 includes/admin/settings.php:426
     111#: includes/admin/settings.php:479 includes/admin/settings.php:486
    104112msgid "Automatic city detection on the WooCommerce checkout page"
    105113msgstr ""
    106114"Автоматическое определение города на странице оформления заказа WooCommerce"
    107115
    108 #: includes/admin/settings.php:141
     116#: includes/admin/settings.php:145
    109117msgid "Basic"
    110118msgstr "Общие"
     
    126134msgstr "Настройки плагина BelingoGeo"
    127135
    128 #: includes/admin/settings.php:370
     136#: includes/admin/settings.php:430
    129137msgid ""
    130138"By default, the plugin replaces links using internal functions that "
     
    136144"устранения можно попробовать использовать эту опцию"
    137145
    138 #: includes/admin/settings.php:246
     146#: includes/admin/settings.php:306
    139147msgid "Categories"
    140148msgstr "Рубрики"
     
    144152msgstr "Выбрать другой город"
    145153
    146 #: templates/select_city.php:22
     154#: templates/popup_select_city.php:11 templates/select_city.php:22
    147155msgid "Choose from the list:"
    148156msgstr "Выберите из списка:"
     
    157165msgstr "Город"
    158166
    159 #: includes/admin/settings.php:156
     167#: includes/admin/settings.php:160
    160168msgid ""
    161169"City in subdirectory (the link will look like this: example.com/samara/)"
     
    163171"Город в поддиректории (ссылка будет выглядеть так: example.com/samara/)"
    164172
    165 #: includes/admin/settings.php:161
     173#: includes/admin/settings.php:165
    166174msgid "City in subdomain (the link will look like this: samara.example.com)"
    167175msgstr "Город в субдомене (ссылка будет выглядеть так: samara.example.com)"
    168176
    169 #: templates/question_city.php:27 templates/select_city.php:37
     177#: includes/admin/settings.php:249
     178msgid "Connect pop-ups in the site footer"
     179msgstr "Подключить всплывающие окна в футере сайта"
     180
     181#: templates/popup_select_city.php:26 templates/select_city.php:37
     182#: templates/question_city.php:27
    170183msgid "Continue without the city"
    171184msgstr "Продолжить без города"
     
    175188msgstr "Дательный падеж"
    176189
    177 #: includes/admin/settings.php:174
     190#: includes/admin/settings.php:178
    178191msgid "Default city"
    179192msgstr "Город по умолчанию"
    180193
    181 #: includes/admin/settings.php:335
     194#: includes/admin/settings.php:395
    182195msgid "Definition of a city outside the list"
    183196msgstr "Определение города вне списка"
     
    187200msgstr "Описание всех настроек плагина BelingoGeo"
    188201
    189 #: templates/select_city.php:31
     202#: belingoGeo.php:54 templates/select_city.php:31
    190203msgid "Didn't find your city?"
    191204msgstr "Не нашли Ваш город?"
    192205
    193 #: includes/admin/settings.php:391
     206#: includes/admin/settings.php:451
    194207msgid "Disable forced slug generation for city"
    195208msgstr "Отключить принудительную генерацию ярлыка для города"
    196209
    197 #: includes/admin/settings.php:405
     210#: includes/admin/settings.php:465
    198211msgid "Disable forced slug generation for region"
    199212msgstr "Отключить принудительную генерацию ярлыка для региона"
    200213
    201 #: includes/admin/settings.php:321
     214#: includes/admin/settings.php:381
    202215msgid "Disable virtual URLs"
    203216msgstr "Отключить виртуальные URLs"
     
    211224msgstr "Изменить регион"
    212225
    213 #: includes/admin/settings.php:435
     226#: includes/admin/settings.php:495
    214227msgid "Enable city search by pop-up window"
    215228msgstr "Включить поиск города во всплывающем окне"
    216229
    217 #: includes/admin/settings.php:142
     230#: includes/admin/settings.php:256
     231msgid ""
     232"Enables pop-up windows in the footer of the site, the option can not be "
     233"enabled if you placed the shortcode manually"
     234msgstr ""
     235"Включает всплывающие окна в футере сайта. Эту опцию не нужно включать, если "
     236"вы разместили шорткод вручную."
     237
     238#: includes/admin/settings.php:146
    218239msgid "Exceptions"
    219240msgstr "Исключения"
    220241
    221 #: includes/admin/settings.php:217
     242#: includes/admin/settings.php:277
    222243msgid "Exclude anything that is not a registered entity"
    223244msgstr "Исключить все, что не является зарегистрированной сущностью"
    224245
    225 #: includes/hooks.php:187 includes/admin/settings.php:14
     246#: includes/hooks.php:198 includes/admin/settings.php:14
    226247#: includes/admin/settings.php:14 includes/admin/settings.php:52
    227248msgid "Export"
    228249msgstr "Экспорт"
    229250
    230 #: includes/admin/settings.php:363
     251#: includes/admin/settings.php:423
    231252msgid "Filter links by url"
    232253msgstr "Фильтровать ссылки по URL"
    233254
    234 #: templates/select_city.php:46
     255#: templates/select_city.php:46 templates/selector.php:3
    235256msgid "Finding..."
    236257msgstr "Определение..."
    237258
    238 #: includes/admin/settings.php:377
     259#: includes/admin/settings.php:437
    239260msgid "Forced confirmation of the city"
    240261msgstr "Принудительное подтверждение города"
    241262
    242 #: includes/admin/settings.php:384
     263#: includes/admin/settings.php:444
    243264msgid ""
    244265"Forced confirmation of the city without a pop-up window with the question: "
     
    273294msgstr "https://belingo.ru"
    274295
    275 #: includes/admin/settings.php:196
     296#: includes/admin/settings.php:200
    276297msgid ""
    277298"If no city is selected, and no default city is specified, you can specify "
     
    281302" который будет отображаться. По умолчанию: «Не найдено»."
    282303
    283 #: includes/admin/settings.php:189
     304#: includes/admin/settings.php:193
    284305msgid "If the city is not found"
    285306msgstr "Если город не найден"
    286307
    287 #: includes/admin/settings.php:342
     308#: includes/admin/settings.php:402
    288309msgid ""
    289310"If this option is enabled, the city will be determined anyway, even if it is "
     
    293314"его нет в списке. Виртуальные URL для такого города генерироваться не будут"
    294315
    295 #: includes/hooks.php:187 includes/admin/settings.php:13
     316#: includes/hooks.php:198 includes/admin/settings.php:13
    296317#: includes/admin/settings.php:13 includes/admin/settings.php:33
    297318msgid "Import"
     
    306327msgstr "Установка и настройка плагина belingoGeo"
    307328
    308 #: includes/admin/settings.php:146
     329#: includes/admin/settings.php:150
    309330msgid "Link type"
    310331msgstr "Тип ссылки"
     
    326347msgstr "Не найдено в корзине"
    327348
    328 #: includes/admin/settings.php:203
     349#: includes/admin/settings.php:263
    329350msgid "Number of urls in the sitemap"
    330351msgstr "Количество URL-адресов в карте сайта"
    331352
    332353#: includes/admin/settings.php:43 includes/admin/settings.php:56
    333 #: includes/admin/settings.php:520 includes/admin/settings.php:543
    334 #: includes/admin/settings.php:565
     354#: includes/admin/settings.php:580 includes/admin/settings.php:603
     355#: includes/admin/settings.php:625
    335356msgid "Only available for Pro version"
    336357msgstr "Доступно только для версии Pro"
    337358
    338 #: includes/admin/settings.php:356
     359#: includes/admin/settings.php:416
    339360msgid "Option to add the city to breadcrumbs on the website."
    340361msgstr "Возможность добавить город в хлебные крошки на сайте."
     
    344365msgstr "Другие наши плагины"
    345366
    346 #: includes/admin/settings.php:231
     367#: includes/admin/settings.php:291
    347368msgid "Pages"
    348369msgstr "Страницы"
    349370
    350 #: includes/admin/settings.php:238
     371#: includes/admin/settings.php:298
    351372msgid "Pages selected in this list will be excluded from the plugin"
    352373msgstr ""
     
    362383msgstr "Родительский регион:"
    363384
    364 #: includes/admin/settings.php:291
     385#: includes/admin/settings.php:207 includes/admin/settings.php:214
     386msgid "Popup title with cities"
     387msgstr "Заголовок в списке с городами"
     388
     389#: includes/admin/settings.php:351
    365390msgid "Post types"
    366391msgstr "Типы записей"
    367392
    368 #: includes/admin/settings.php:276
     393#: includes/admin/settings.php:336
    369394msgid "Posts"
    370395msgstr "Записи"
    371396
    372 #: includes/admin/settings.php:283
     397#: includes/admin/settings.php:343
    373398msgid "Posts selected in this list will be excluded from the plugin"
    374399msgstr ""
     
    384409msgstr "Регион"
    385410
    386 #: includes/admin/functions.php:34 includes/admin/functions.php:36
    387 #: includes/admin/settings.php:11 includes/admin/settings.php:11
     411#: includes/admin/settings.php:11 includes/admin/functions.php:34
     412#: includes/admin/functions.php:36
    388413msgid "Regions"
    389414msgstr "Регионы"
     
    413438msgstr "Поддержка"
    414439
    415 #: includes/admin/settings.php:261
     440#: includes/admin/settings.php:321
    416441msgid "Tags"
    417442msgstr "Метки"
    418443
    419 #: includes/admin/settings.php:306
     444#: includes/admin/settings.php:366
    420445msgid "Taxonomies"
    421446msgstr "Таксономии"
     
    426451msgstr "Телефон"
    427452
    428 #: includes/admin/settings.php:210
     453#: includes/admin/settings.php:270
    429454msgid "The number of URLs per page in the sitemap"
    430455msgstr "Количество URL-адресов на странице, в карте сайта"
    431456
    432 #: includes/admin/settings.php:442
     457#: includes/admin/settings.php:502
    433458msgid "The option displays a city search in a pop-up list of cities"
    434459msgstr "Опция отображает поиск города во всплывающем списке городов"
     
    454479"для поисковых систем."
    455480
    456 #: includes/admin/settings.php:398
     481#: includes/admin/settings.php:458
    457482msgid ""
    458483"The plugin automatically generates a slug for the city, this option disables "
     
    462487"автоматическую генерацию и вы можете вручную указать ярлык для города."
    463488
    464 #: includes/admin/settings.php:412
     489#: includes/admin/settings.php:472
    465490msgid ""
    466491"The plugin automatically generates a slug for the region, this option "
     
    471496"автоматическую генерацию и вы можете вручную указать ярлык для региона."
    472497
    473 #: includes/admin/settings.php:253
     498#: includes/admin/settings.php:313
    474499msgid ""
    475500"The selected headings will be excluded, urls with the city will not be "
     
    481506"исключены"
    482507
    483 #: includes/admin/settings.php:298
     508#: includes/admin/settings.php:358
    484509msgid ""
    485510"The selected post types will be excluded, URLs with the city will not be "
     
    490515"адреса с городом, а все записи указанного типа будут автоматически исключены."
    491516
    492 #: includes/admin/settings.php:268
     517#: includes/admin/settings.php:328
    493518msgid ""
    494519"The selected tags will be excluded, urls with the city will not be generated "
     
    498523"с городом"
    499524
    500 #: includes/admin/settings.php:313
     525#: includes/admin/settings.php:373
    501526msgid ""
    502527"The selected taxonomies will be excluded, urls with the city will not be "
     
    508533"исключены"
    509534
    510 #: includes/admin/settings.php:181
     535#: includes/admin/settings.php:185
    511536msgid ""
    512537"The string is displayed in the select_city shortcode if there is no selected "
     
    514539msgstr "Строка будет отображаться в шорткоде select_city, если город не выбран"
    515540
    516 #: includes/admin/settings.php:224
     541#: includes/admin/settings.php:284
    517542msgid ""
    518543"This option excludes all pages not related to WP_Post, WP_Term, WP_Post_Type "
     
    538563msgstr "Смотреть регионы"
    539564
    540 #: templates/select_city.php:33
     565#: belingoGeo.php:55 templates/select_city.php:33
    541566msgid "We deliver worldwide"
    542567msgstr "Мы доставляем по всему миру"
     
    546571msgstr "Да"
    547572
    548 #: includes/admin/settings.php:328
     573#: includes/admin/settings.php:388
    549574msgid "You can disable virtual URLs, the plugin will not generate them"
    550575msgstr "Можно отключить виртуальные URLs, плагин не будет их генерировать"
    551576
    552 #: includes/admin/settings.php:458
     577#: includes/admin/settings.php:518
    553578msgid ""
    554579"You can specify any shortcode, it will be added to the woocommerce category "
     
    562587msgstr "Ваш город"
    563588
    564 #: templates/select_city.php:14
     589#: belingoGeo.php:53 templates/select_city.php:14
    565590msgid "Your delivery region"
    566591msgstr "Ваш регион доставки"
  • belingogeo/trunk/languages/belingogeo.pot

    r2979666 r2998366  
    44"Project-Id-Version: Belingo.GeoCiy\n"
    55"Report-Msgid-Bugs-To: \n"
    6 "POT-Creation-Date: 2023-10-16 16:46+0000\n"
     6"POT-Creation-Date: 2023-11-19 16:15+0000\n"
    77"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    88"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    4949msgstr ""
    5050
    51 #: includes/admin/settings.php:451
     51#: includes/admin/settings.php:511
    5252msgid "Add a city to the header of the WooCommerce category"
    5353msgstr ""
     
    5757msgstr ""
    5858
    59 #: includes/admin/settings.php:349
     59#: includes/admin/settings.php:409
    6060msgid "Add city to breadcrumbs"
    6161msgstr ""
     
    7171#: includes/admin/functions.php:74
    7272msgid "Additional points"
     73msgstr ""
     74
     75#: includes/admin/settings.php:221 includes/admin/settings.php:228
     76msgid "Additional text1 in the popup window"
     77msgstr ""
     78
     79#: includes/admin/settings.php:235 includes/admin/settings.php:242
     80msgid "Additional text2 in the popup window"
    7381msgstr ""
    7482
     
    93101msgstr ""
    94102
    95 #: includes/admin/settings.php:419 includes/admin/settings.php:426
     103#: includes/admin/settings.php:479 includes/admin/settings.php:486
    96104msgid "Automatic city detection on the WooCommerce checkout page"
    97105msgstr ""
    98106
    99 #: includes/admin/settings.php:141
     107#: includes/admin/settings.php:145
    100108msgid "Basic"
    101109msgstr ""
     
    117125msgstr ""
    118126
    119 #: includes/admin/settings.php:370
     127#: includes/admin/settings.php:430
    120128msgid ""
    121129"By default, the plugin replaces links using internal functions that "
     
    124132msgstr ""
    125133
    126 #: includes/admin/settings.php:246
     134#: includes/admin/settings.php:306
    127135msgid "Categories"
    128136msgstr ""
     
    132140msgstr ""
    133141
    134 #: templates/select_city.php:22
     142#: templates/popup_select_city.php:11 templates/select_city.php:22
    135143msgid "Choose from the list:"
    136144msgstr ""
     
    145153msgstr ""
    146154
    147 #: includes/admin/settings.php:156
     155#: includes/admin/settings.php:160
    148156msgid ""
    149157"City in subdirectory (the link will look like this: example.com/samara/)"
    150158msgstr ""
    151159
    152 #: includes/admin/settings.php:161
     160#: includes/admin/settings.php:165
    153161msgid "City in subdomain (the link will look like this: samara.example.com)"
    154162msgstr ""
    155163
    156 #: templates/question_city.php:27 templates/select_city.php:37
     164#: includes/admin/settings.php:249
     165msgid "Connect pop-ups in the site footer"
     166msgstr ""
     167
     168#: templates/popup_select_city.php:26 templates/select_city.php:37
     169#: templates/question_city.php:27
    157170msgid "Continue without the city"
    158171msgstr ""
     
    162175msgstr ""
    163176
    164 #: includes/admin/settings.php:174
     177#: includes/admin/settings.php:178
    165178msgid "Default city"
    166179msgstr ""
    167180
    168 #: includes/admin/settings.php:335
     181#: includes/admin/settings.php:395
    169182msgid "Definition of a city outside the list"
    170183msgstr ""
     
    174187msgstr ""
    175188
    176 #: templates/select_city.php:31
     189#: belingoGeo.php:54 templates/select_city.php:31
    177190msgid "Didn't find your city?"
    178191msgstr ""
    179192
    180 #: includes/admin/settings.php:391
     193#: includes/admin/settings.php:451
    181194msgid "Disable forced slug generation for city"
    182195msgstr ""
    183196
    184 #: includes/admin/settings.php:405
     197#: includes/admin/settings.php:465
    185198msgid "Disable forced slug generation for region"
    186199msgstr ""
    187200
    188 #: includes/admin/settings.php:321
     201#: includes/admin/settings.php:381
    189202msgid "Disable virtual URLs"
    190203msgstr ""
     
    198211msgstr ""
    199212
    200 #: includes/admin/settings.php:435
     213#: includes/admin/settings.php:495
    201214msgid "Enable city search by pop-up window"
    202215msgstr ""
    203216
    204 #: includes/admin/settings.php:142
     217#: includes/admin/settings.php:256
     218msgid ""
     219"Enables pop-up windows in the footer of the site, the option can not be "
     220"enabled if you placed the shortcode manually"
     221msgstr ""
     222
     223#: includes/admin/settings.php:146
    205224msgid "Exceptions"
    206225msgstr ""
    207226
    208 #: includes/admin/settings.php:217
     227#: includes/admin/settings.php:277
    209228msgid "Exclude anything that is not a registered entity"
    210229msgstr ""
    211230
    212 #: includes/hooks.php:187 includes/admin/settings.php:14
     231#: includes/hooks.php:198 includes/admin/settings.php:14
    213232#: includes/admin/settings.php:14 includes/admin/settings.php:52
    214233msgid "Export"
    215234msgstr ""
    216235
    217 #: includes/admin/settings.php:363
     236#: includes/admin/settings.php:423
    218237msgid "Filter links by url"
    219238msgstr ""
    220239
    221 #: templates/select_city.php:46
     240#: templates/select_city.php:46 templates/selector.php:3
    222241msgid "Finding..."
    223242msgstr ""
    224243
    225 #: includes/admin/settings.php:377
     244#: includes/admin/settings.php:437
    226245msgid "Forced confirmation of the city"
    227246msgstr ""
    228247
    229 #: includes/admin/settings.php:384
     248#: includes/admin/settings.php:444
    230249msgid ""
    231250"Forced confirmation of the city without a pop-up window with the question: "
     
    258277msgstr ""
    259278
    260 #: includes/admin/settings.php:196
     279#: includes/admin/settings.php:200
    261280msgid ""
    262281"If no city is selected, and no default city is specified, you can specify "
     
    264283msgstr ""
    265284
    266 #: includes/admin/settings.php:189
     285#: includes/admin/settings.php:193
    267286msgid "If the city is not found"
    268287msgstr ""
    269288
    270 #: includes/admin/settings.php:342
     289#: includes/admin/settings.php:402
    271290msgid ""
    272291"If this option is enabled, the city will be determined anyway, even if it is "
     
    274293msgstr ""
    275294
    276 #: includes/hooks.php:187 includes/admin/settings.php:13
     295#: includes/hooks.php:198 includes/admin/settings.php:13
    277296#: includes/admin/settings.php:13 includes/admin/settings.php:33
    278297msgid "Import"
     
    287306msgstr ""
    288307
    289 #: includes/admin/settings.php:146
     308#: includes/admin/settings.php:150
    290309msgid "Link type"
    291310msgstr ""
     
    307326msgstr ""
    308327
    309 #: includes/admin/settings.php:203
     328#: includes/admin/settings.php:263
    310329msgid "Number of urls in the sitemap"
    311330msgstr ""
    312331
    313332#: includes/admin/settings.php:43 includes/admin/settings.php:56
    314 #: includes/admin/settings.php:520 includes/admin/settings.php:543
    315 #: includes/admin/settings.php:565
     333#: includes/admin/settings.php:580 includes/admin/settings.php:603
     334#: includes/admin/settings.php:625
    316335msgid "Only available for Pro version"
    317336msgstr ""
    318337
    319 #: includes/admin/settings.php:356
     338#: includes/admin/settings.php:416
    320339msgid "Option to add the city to breadcrumbs on the website."
    321340msgstr ""
     
    325344msgstr ""
    326345
    327 #: includes/admin/settings.php:231
     346#: includes/admin/settings.php:291
    328347msgid "Pages"
    329348msgstr ""
    330349
    331 #: includes/admin/settings.php:238
     350#: includes/admin/settings.php:298
    332351msgid "Pages selected in this list will be excluded from the plugin"
    333352msgstr ""
     
    341360msgstr ""
    342361
    343 #: includes/admin/settings.php:291
     362#: includes/admin/settings.php:207 includes/admin/settings.php:214
     363msgid "Popup title with cities"
     364msgstr ""
     365
     366#: includes/admin/settings.php:351
    344367msgid "Post types"
    345368msgstr ""
    346369
    347 #: includes/admin/settings.php:276
     370#: includes/admin/settings.php:336
    348371msgid "Posts"
    349372msgstr ""
    350373
    351 #: includes/admin/settings.php:283
     374#: includes/admin/settings.php:343
    352375msgid "Posts selected in this list will be excluded from the plugin"
    353376msgstr ""
     
    361384msgstr ""
    362385
    363 #: includes/admin/functions.php:34 includes/admin/functions.php:36
    364 #: includes/admin/settings.php:11 includes/admin/settings.php:11
     386#: includes/admin/settings.php:11 includes/admin/functions.php:34
     387#: includes/admin/functions.php:36
    365388msgid "Regions"
    366389msgstr ""
     
    390413msgstr ""
    391414
    392 #: includes/admin/settings.php:261
     415#: includes/admin/settings.php:321
    393416msgid "Tags"
    394417msgstr ""
    395418
    396 #: includes/admin/settings.php:306
     419#: includes/admin/settings.php:366
    397420msgid "Taxonomies"
    398421msgstr ""
     
    403426msgstr ""
    404427
    405 #: includes/admin/settings.php:210
     428#: includes/admin/settings.php:270
    406429msgid "The number of URLs per page in the sitemap"
    407430msgstr ""
    408431
    409 #: includes/admin/settings.php:442
     432#: includes/admin/settings.php:502
    410433msgid "The option displays a city search in a pop-up list of cities"
    411434msgstr ""
     
    425448msgstr ""
    426449
    427 #: includes/admin/settings.php:398
     450#: includes/admin/settings.php:458
    428451msgid ""
    429452"The plugin automatically generates a slug for the city, this option disables "
     
    431454msgstr ""
    432455
    433 #: includes/admin/settings.php:412
     456#: includes/admin/settings.php:472
    434457msgid ""
    435458"The plugin automatically generates a slug for the region, this option "
     
    438461msgstr ""
    439462
    440 #: includes/admin/settings.php:253
     463#: includes/admin/settings.php:313
    441464msgid ""
    442465"The selected headings will be excluded, urls with the city will not be "
     
    445468msgstr ""
    446469
    447 #: includes/admin/settings.php:298
     470#: includes/admin/settings.php:358
    448471msgid ""
    449472"The selected post types will be excluded, URLs with the city will not be "
     
    452475msgstr ""
    453476
    454 #: includes/admin/settings.php:268
     477#: includes/admin/settings.php:328
    455478msgid ""
    456479"The selected tags will be excluded, urls with the city will not be generated "
     
    458481msgstr ""
    459482
    460 #: includes/admin/settings.php:313
     483#: includes/admin/settings.php:373
    461484msgid ""
    462485"The selected taxonomies will be excluded, urls with the city will not be "
     
    465488msgstr ""
    466489
    467 #: includes/admin/settings.php:181
     490#: includes/admin/settings.php:185
    468491msgid ""
    469492"The string is displayed in the select_city shortcode if there is no selected "
     
    471494msgstr ""
    472495
    473 #: includes/admin/settings.php:224
     496#: includes/admin/settings.php:284
    474497msgid ""
    475498"This option excludes all pages not related to WP_Post, WP_Term, WP_Post_Type "
     
    493516msgstr ""
    494517
    495 #: templates/select_city.php:33
     518#: belingoGeo.php:55 templates/select_city.php:33
    496519msgid "We deliver worldwide"
    497520msgstr ""
     
    501524msgstr ""
    502525
    503 #: includes/admin/settings.php:328
     526#: includes/admin/settings.php:388
    504527msgid "You can disable virtual URLs, the plugin will not generate them"
    505528msgstr ""
    506529
    507 #: includes/admin/settings.php:458
     530#: includes/admin/settings.php:518
    508531msgid ""
    509532"You can specify any shortcode, it will be added to the woocommerce category "
     
    515538msgstr ""
    516539
    517 #: templates/select_city.php:14
     540#: belingoGeo.php:53 templates/select_city.php:14
    518541msgid "Your delivery region"
    519542msgstr ""
Note: See TracChangeset for help on using the changeset viewer.