Changeset 2998366
- Timestamp:
- 11/19/2023 04:31:33 PM (2 years ago)
- Location:
- belingogeo/trunk
- Files:
-
- 2 added
- 9 edited
-
belingoGeo.php (modified) (1 diff)
-
css/belingoGeo.css (modified) (1 diff)
-
includes/admin/settings.php (modified) (2 diffs)
-
includes/hooks.php (modified) (1 diff)
-
includes/shortcodes.php (modified) (1 diff)
-
js/belingoGeo.js (modified) (3 diffs)
-
languages/belingogeo-ru_RU.mo (modified) (previous)
-
languages/belingogeo-ru_RU.po (modified) (34 diffs)
-
languages/belingogeo.pot (modified) (33 diffs)
-
templates/popup_select_city.php (added)
-
templates/selector.php (added)
Legend:
- Unmodified
- Added
- Removed
-
belingogeo/trunk/belingoGeo.php
r2979050 r2998366 51 51 update_option('belingo_geo_url_type', 'subdirectory'); 52 52 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')); 53 56 54 57 flush_rewrite_rules(); -
belingogeo/trunk/css/belingoGeo.css
r2935660 r2998366 93 93 margin:0px; 94 94 padding: 5px 4px 3px 5px; 95 width: 10px;95 width: 20px; 96 96 height: auto; 97 97 } -
belingogeo/trunk/includes/admin/settings.php
r2979666 r2998366 139 139 register_setting( 'belingo_geo_excludes', 'belingo_geo_basic_enable_search_in_popup'); 140 140 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'); 141 145 add_settings_section( 'belingo_geo_basic', __('Basic', 'belingogeo'), '', $settings_page ); 142 146 add_settings_section( 'belingo_geo_excludes', __('Exceptions', 'belingogeo'), '', $settings_page ); … … 200 204 201 205 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( 202 262 'belingo_geo_sitemap_per_page', 203 263 __('Number of urls in the sitemap', 'belingogeo'), -
belingogeo/trunk/includes/hooks.php
r2979048 r2998366 58 58 } 59 59 wp_enqueue_script('belingo-geo-scripts', BELINGO_GEO_PLUGIN_URL . '/js/belingoGeo.js', array('jquery'), BELINGO_GEO_VERSION, true); 60 61 } 62 63 add_action( 'wp_footer', 'belingogeo_footer_action' ); 64 function 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 } 60 71 61 72 } -
belingogeo/trunk/includes/shortcodes.php
r2978322 r2998366 107 107 $data = []; 108 108 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 119 109 ob_start(); 120 110 belingogeo_load_template('select_city.php', $data); 111 $content = ob_get_contents(); 112 ob_end_clean(); 113 return $content; 114 115 } 116 117 add_shortcode("belingogeo_popup_select_city", "belingoGeo_popup_select_city_shortcode"); 118 function 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 134 add_shortcode("belingogeo_selector", "belingoGeo_selector_shortcode"); 135 function belingoGeo_selector_shortcode($atts) { 136 137 $data = []; 138 139 ob_start(); 140 belingogeo_load_template('selector.php', $data); 121 141 $content = ob_get_contents(); 122 142 ob_end_clean(); -
belingogeo/trunk/js/belingoGeo.js
r2969851 r2998366 23 23 } 24 24 jQuery.post(belingoGeo.ajaxurl, data, function(response) { 25 jQuery(' #geolocation__value').html(response);25 jQuery('.geolocation__value').html(response); 26 26 }); 27 27 … … 31 31 } 32 32 jQuery.post(belingoGeo.ajaxurl, data, function(question) { 33 jQuery(' #geolocationChangeCity').after(question);33 jQuery('.geolocation__link').after(question); 34 34 }); 35 35 … … 65 65 }); 66 66 67 jQuery(document).on('click','#geolocationChangeCity, .geolocationChangeCity ', function() {67 jQuery(document).on('click','#geolocationChangeCity, .geolocationChangeCity, .geolocation__link', function() { 68 68 show_popup_window('#cityChange'); 69 69 var data = { -
belingogeo/trunk/languages/belingogeo-ru_RU.po
r2979666 r2998366 3 3 msgid "" 4 4 msgstr "" 5 "PO-Revision-Date: 2023-1 0-16 16:47+0000\n"5 "PO-Revision-Date: 2023-11-19 16:18+0000\n" 6 6 "MIME-Version: 1.0\n" 7 7 "Content-Type: text/plain; charset=UTF-8\n" … … 54 54 msgstr "О плагине" 55 55 56 #: includes/admin/settings.php: 45156 #: includes/admin/settings.php:511 57 57 msgid "Add a city to the header of the WooCommerce category" 58 58 msgstr "Добавить город в заголовок категории WooCommerce" … … 62 62 msgstr "Добавить город" 63 63 64 #: includes/admin/settings.php: 34964 #: includes/admin/settings.php:409 65 65 msgid "Add city to breadcrumbs" 66 66 msgstr "Добавить город в хлебные крошки" … … 77 77 msgid "Additional points" 78 78 msgstr "Дополнительные точки" 79 80 #: includes/admin/settings.php:221 includes/admin/settings.php:228 81 msgid "Additional text1 in the popup window" 82 msgstr "Дополнительный текст1 во всплывающем окне" 83 84 #: includes/admin/settings.php:235 includes/admin/settings.php:242 85 msgid "Additional text2 in the popup window" 86 msgstr "Дополнительный текст2 во всплывающем окне" 79 87 80 88 #: includes/admin/functions.php:73 includes/admin/functions.php:455 … … 101 109 "рекомендуем разделить файл на несколько частей." 102 110 103 #: includes/admin/settings.php:4 19 includes/admin/settings.php:426111 #: includes/admin/settings.php:479 includes/admin/settings.php:486 104 112 msgid "Automatic city detection on the WooCommerce checkout page" 105 113 msgstr "" 106 114 "Автоматическое определение города на странице оформления заказа WooCommerce" 107 115 108 #: includes/admin/settings.php:14 1116 #: includes/admin/settings.php:145 109 117 msgid "Basic" 110 118 msgstr "Общие" … … 126 134 msgstr "Настройки плагина BelingoGeo" 127 135 128 #: includes/admin/settings.php: 370136 #: includes/admin/settings.php:430 129 137 msgid "" 130 138 "By default, the plugin replaces links using internal functions that " … … 136 144 "устранения можно попробовать использовать эту опцию" 137 145 138 #: includes/admin/settings.php: 246146 #: includes/admin/settings.php:306 139 147 msgid "Categories" 140 148 msgstr "Рубрики" … … 144 152 msgstr "Выбрать другой город" 145 153 146 #: templates/ select_city.php:22154 #: templates/popup_select_city.php:11 templates/select_city.php:22 147 155 msgid "Choose from the list:" 148 156 msgstr "Выберите из списка:" … … 157 165 msgstr "Город" 158 166 159 #: includes/admin/settings.php:1 56167 #: includes/admin/settings.php:160 160 168 msgid "" 161 169 "City in subdirectory (the link will look like this: example.com/samara/)" … … 163 171 "Город в поддиректории (ссылка будет выглядеть так: example.com/samara/)" 164 172 165 #: includes/admin/settings.php:16 1173 #: includes/admin/settings.php:165 166 174 msgid "City in subdomain (the link will look like this: samara.example.com)" 167 175 msgstr "Город в субдомене (ссылка будет выглядеть так: samara.example.com)" 168 176 169 #: templates/question_city.php:27 templates/select_city.php:37 177 #: includes/admin/settings.php:249 178 msgid "Connect pop-ups in the site footer" 179 msgstr "Подключить всплывающие окна в футере сайта" 180 181 #: templates/popup_select_city.php:26 templates/select_city.php:37 182 #: templates/question_city.php:27 170 183 msgid "Continue without the city" 171 184 msgstr "Продолжить без города" … … 175 188 msgstr "Дательный падеж" 176 189 177 #: includes/admin/settings.php:17 4190 #: includes/admin/settings.php:178 178 191 msgid "Default city" 179 192 msgstr "Город по умолчанию" 180 193 181 #: includes/admin/settings.php:3 35194 #: includes/admin/settings.php:395 182 195 msgid "Definition of a city outside the list" 183 196 msgstr "Определение города вне списка" … … 187 200 msgstr "Описание всех настроек плагина BelingoGeo" 188 201 189 #: templates/select_city.php:31202 #: belingoGeo.php:54 templates/select_city.php:31 190 203 msgid "Didn't find your city?" 191 204 msgstr "Не нашли Ваш город?" 192 205 193 #: includes/admin/settings.php: 391206 #: includes/admin/settings.php:451 194 207 msgid "Disable forced slug generation for city" 195 208 msgstr "Отключить принудительную генерацию ярлыка для города" 196 209 197 #: includes/admin/settings.php:4 05210 #: includes/admin/settings.php:465 198 211 msgid "Disable forced slug generation for region" 199 212 msgstr "Отключить принудительную генерацию ярлыка для региона" 200 213 201 #: includes/admin/settings.php:3 21214 #: includes/admin/settings.php:381 202 215 msgid "Disable virtual URLs" 203 216 msgstr "Отключить виртуальные URLs" … … 211 224 msgstr "Изменить регион" 212 225 213 #: includes/admin/settings.php:4 35226 #: includes/admin/settings.php:495 214 227 msgid "Enable city search by pop-up window" 215 228 msgstr "Включить поиск города во всплывающем окне" 216 229 217 #: includes/admin/settings.php:142 230 #: includes/admin/settings.php:256 231 msgid "" 232 "Enables pop-up windows in the footer of the site, the option can not be " 233 "enabled if you placed the shortcode manually" 234 msgstr "" 235 "Включает всплывающие окна в футере сайта. Эту опцию не нужно включать, если " 236 "вы разместили шорткод вручную." 237 238 #: includes/admin/settings.php:146 218 239 msgid "Exceptions" 219 240 msgstr "Исключения" 220 241 221 #: includes/admin/settings.php:2 17242 #: includes/admin/settings.php:277 222 243 msgid "Exclude anything that is not a registered entity" 223 244 msgstr "Исключить все, что не является зарегистрированной сущностью" 224 245 225 #: includes/hooks.php:1 87includes/admin/settings.php:14246 #: includes/hooks.php:198 includes/admin/settings.php:14 226 247 #: includes/admin/settings.php:14 includes/admin/settings.php:52 227 248 msgid "Export" 228 249 msgstr "Экспорт" 229 250 230 #: includes/admin/settings.php: 363251 #: includes/admin/settings.php:423 231 252 msgid "Filter links by url" 232 253 msgstr "Фильтровать ссылки по URL" 233 254 234 #: templates/select_city.php:46 255 #: templates/select_city.php:46 templates/selector.php:3 235 256 msgid "Finding..." 236 257 msgstr "Определение..." 237 258 238 #: includes/admin/settings.php: 377259 #: includes/admin/settings.php:437 239 260 msgid "Forced confirmation of the city" 240 261 msgstr "Принудительное подтверждение города" 241 262 242 #: includes/admin/settings.php: 384263 #: includes/admin/settings.php:444 243 264 msgid "" 244 265 "Forced confirmation of the city without a pop-up window with the question: " … … 273 294 msgstr "https://belingo.ru" 274 295 275 #: includes/admin/settings.php: 196296 #: includes/admin/settings.php:200 276 297 msgid "" 277 298 "If no city is selected, and no default city is specified, you can specify " … … 281 302 " который будет отображаться. По умолчанию: «Не найдено»." 282 303 283 #: includes/admin/settings.php:1 89304 #: includes/admin/settings.php:193 284 305 msgid "If the city is not found" 285 306 msgstr "Если город не найден" 286 307 287 #: includes/admin/settings.php: 342308 #: includes/admin/settings.php:402 288 309 msgid "" 289 310 "If this option is enabled, the city will be determined anyway, even if it is " … … 293 314 "его нет в списке. Виртуальные URL для такого города генерироваться не будут" 294 315 295 #: includes/hooks.php:1 87includes/admin/settings.php:13316 #: includes/hooks.php:198 includes/admin/settings.php:13 296 317 #: includes/admin/settings.php:13 includes/admin/settings.php:33 297 318 msgid "Import" … … 306 327 msgstr "Установка и настройка плагина belingoGeo" 307 328 308 #: includes/admin/settings.php:1 46329 #: includes/admin/settings.php:150 309 330 msgid "Link type" 310 331 msgstr "Тип ссылки" … … 326 347 msgstr "Не найдено в корзине" 327 348 328 #: includes/admin/settings.php:2 03349 #: includes/admin/settings.php:263 329 350 msgid "Number of urls in the sitemap" 330 351 msgstr "Количество URL-адресов в карте сайта" 331 352 332 353 #: includes/admin/settings.php:43 includes/admin/settings.php:56 333 #: includes/admin/settings.php:5 20 includes/admin/settings.php:543334 #: includes/admin/settings.php: 565354 #: includes/admin/settings.php:580 includes/admin/settings.php:603 355 #: includes/admin/settings.php:625 335 356 msgid "Only available for Pro version" 336 357 msgstr "Доступно только для версии Pro" 337 358 338 #: includes/admin/settings.php: 356359 #: includes/admin/settings.php:416 339 360 msgid "Option to add the city to breadcrumbs on the website." 340 361 msgstr "Возможность добавить город в хлебные крошки на сайте." … … 344 365 msgstr "Другие наши плагины" 345 366 346 #: includes/admin/settings.php:2 31367 #: includes/admin/settings.php:291 347 368 msgid "Pages" 348 369 msgstr "Страницы" 349 370 350 #: includes/admin/settings.php:2 38371 #: includes/admin/settings.php:298 351 372 msgid "Pages selected in this list will be excluded from the plugin" 352 373 msgstr "" … … 362 383 msgstr "Родительский регион:" 363 384 364 #: includes/admin/settings.php:291 385 #: includes/admin/settings.php:207 includes/admin/settings.php:214 386 msgid "Popup title with cities" 387 msgstr "Заголовок в списке с городами" 388 389 #: includes/admin/settings.php:351 365 390 msgid "Post types" 366 391 msgstr "Типы записей" 367 392 368 #: includes/admin/settings.php: 276393 #: includes/admin/settings.php:336 369 394 msgid "Posts" 370 395 msgstr "Записи" 371 396 372 #: includes/admin/settings.php: 283397 #: includes/admin/settings.php:343 373 398 msgid "Posts selected in this list will be excluded from the plugin" 374 399 msgstr "" … … 384 409 msgstr "Регион" 385 410 386 #: includes/admin/ functions.php:34 includes/admin/functions.php:36387 #: includes/admin/ settings.php:11 includes/admin/settings.php:11411 #: includes/admin/settings.php:11 includes/admin/functions.php:34 412 #: includes/admin/functions.php:36 388 413 msgid "Regions" 389 414 msgstr "Регионы" … … 413 438 msgstr "Поддержка" 414 439 415 #: includes/admin/settings.php: 261440 #: includes/admin/settings.php:321 416 441 msgid "Tags" 417 442 msgstr "Метки" 418 443 419 #: includes/admin/settings.php:3 06444 #: includes/admin/settings.php:366 420 445 msgid "Taxonomies" 421 446 msgstr "Таксономии" … … 426 451 msgstr "Телефон" 427 452 428 #: includes/admin/settings.php:2 10453 #: includes/admin/settings.php:270 429 454 msgid "The number of URLs per page in the sitemap" 430 455 msgstr "Количество URL-адресов на странице, в карте сайта" 431 456 432 #: includes/admin/settings.php: 442457 #: includes/admin/settings.php:502 433 458 msgid "The option displays a city search in a pop-up list of cities" 434 459 msgstr "Опция отображает поиск города во всплывающем списке городов" … … 454 479 "для поисковых систем." 455 480 456 #: includes/admin/settings.php: 398481 #: includes/admin/settings.php:458 457 482 msgid "" 458 483 "The plugin automatically generates a slug for the city, this option disables " … … 462 487 "автоматическую генерацию и вы можете вручную указать ярлык для города." 463 488 464 #: includes/admin/settings.php:4 12489 #: includes/admin/settings.php:472 465 490 msgid "" 466 491 "The plugin automatically generates a slug for the region, this option " … … 471 496 "автоматическую генерацию и вы можете вручную указать ярлык для региона." 472 497 473 #: includes/admin/settings.php: 253498 #: includes/admin/settings.php:313 474 499 msgid "" 475 500 "The selected headings will be excluded, urls with the city will not be " … … 481 506 "исключены" 482 507 483 #: includes/admin/settings.php: 298508 #: includes/admin/settings.php:358 484 509 msgid "" 485 510 "The selected post types will be excluded, URLs with the city will not be " … … 490 515 "адреса с городом, а все записи указанного типа будут автоматически исключены." 491 516 492 #: includes/admin/settings.php: 268517 #: includes/admin/settings.php:328 493 518 msgid "" 494 519 "The selected tags will be excluded, urls with the city will not be generated " … … 498 523 "с городом" 499 524 500 #: includes/admin/settings.php:3 13525 #: includes/admin/settings.php:373 501 526 msgid "" 502 527 "The selected taxonomies will be excluded, urls with the city will not be " … … 508 533 "исключены" 509 534 510 #: includes/admin/settings.php:18 1535 #: includes/admin/settings.php:185 511 536 msgid "" 512 537 "The string is displayed in the select_city shortcode if there is no selected " … … 514 539 msgstr "Строка будет отображаться в шорткоде select_city, если город не выбран" 515 540 516 #: includes/admin/settings.php:2 24541 #: includes/admin/settings.php:284 517 542 msgid "" 518 543 "This option excludes all pages not related to WP_Post, WP_Term, WP_Post_Type " … … 538 563 msgstr "Смотреть регионы" 539 564 540 #: templates/select_city.php:33565 #: belingoGeo.php:55 templates/select_city.php:33 541 566 msgid "We deliver worldwide" 542 567 msgstr "Мы доставляем по всему миру" … … 546 571 msgstr "Да" 547 572 548 #: includes/admin/settings.php:3 28573 #: includes/admin/settings.php:388 549 574 msgid "You can disable virtual URLs, the plugin will not generate them" 550 575 msgstr "Можно отключить виртуальные URLs, плагин не будет их генерировать" 551 576 552 #: includes/admin/settings.php: 458577 #: includes/admin/settings.php:518 553 578 msgid "" 554 579 "You can specify any shortcode, it will be added to the woocommerce category " … … 562 587 msgstr "Ваш город" 563 588 564 #: templates/select_city.php:14589 #: belingoGeo.php:53 templates/select_city.php:14 565 590 msgid "Your delivery region" 566 591 msgstr "Ваш регион доставки" -
belingogeo/trunk/languages/belingogeo.pot
r2979666 r2998366 4 4 "Project-Id-Version: Belingo.GeoCiy\n" 5 5 "Report-Msgid-Bugs-To: \n" 6 "POT-Creation-Date: 2023-1 0-16 16:46+0000\n"6 "POT-Creation-Date: 2023-11-19 16:15+0000\n" 7 7 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 8 8 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 49 49 msgstr "" 50 50 51 #: includes/admin/settings.php: 45151 #: includes/admin/settings.php:511 52 52 msgid "Add a city to the header of the WooCommerce category" 53 53 msgstr "" … … 57 57 msgstr "" 58 58 59 #: includes/admin/settings.php: 34959 #: includes/admin/settings.php:409 60 60 msgid "Add city to breadcrumbs" 61 61 msgstr "" … … 71 71 #: includes/admin/functions.php:74 72 72 msgid "Additional points" 73 msgstr "" 74 75 #: includes/admin/settings.php:221 includes/admin/settings.php:228 76 msgid "Additional text1 in the popup window" 77 msgstr "" 78 79 #: includes/admin/settings.php:235 includes/admin/settings.php:242 80 msgid "Additional text2 in the popup window" 73 81 msgstr "" 74 82 … … 93 101 msgstr "" 94 102 95 #: includes/admin/settings.php:4 19 includes/admin/settings.php:426103 #: includes/admin/settings.php:479 includes/admin/settings.php:486 96 104 msgid "Automatic city detection on the WooCommerce checkout page" 97 105 msgstr "" 98 106 99 #: includes/admin/settings.php:14 1107 #: includes/admin/settings.php:145 100 108 msgid "Basic" 101 109 msgstr "" … … 117 125 msgstr "" 118 126 119 #: includes/admin/settings.php: 370127 #: includes/admin/settings.php:430 120 128 msgid "" 121 129 "By default, the plugin replaces links using internal functions that " … … 124 132 msgstr "" 125 133 126 #: includes/admin/settings.php: 246134 #: includes/admin/settings.php:306 127 135 msgid "Categories" 128 136 msgstr "" … … 132 140 msgstr "" 133 141 134 #: templates/ select_city.php:22142 #: templates/popup_select_city.php:11 templates/select_city.php:22 135 143 msgid "Choose from the list:" 136 144 msgstr "" … … 145 153 msgstr "" 146 154 147 #: includes/admin/settings.php:1 56155 #: includes/admin/settings.php:160 148 156 msgid "" 149 157 "City in subdirectory (the link will look like this: example.com/samara/)" 150 158 msgstr "" 151 159 152 #: includes/admin/settings.php:16 1160 #: includes/admin/settings.php:165 153 161 msgid "City in subdomain (the link will look like this: samara.example.com)" 154 162 msgstr "" 155 163 156 #: templates/question_city.php:27 templates/select_city.php:37 164 #: includes/admin/settings.php:249 165 msgid "Connect pop-ups in the site footer" 166 msgstr "" 167 168 #: templates/popup_select_city.php:26 templates/select_city.php:37 169 #: templates/question_city.php:27 157 170 msgid "Continue without the city" 158 171 msgstr "" … … 162 175 msgstr "" 163 176 164 #: includes/admin/settings.php:17 4177 #: includes/admin/settings.php:178 165 178 msgid "Default city" 166 179 msgstr "" 167 180 168 #: includes/admin/settings.php:3 35181 #: includes/admin/settings.php:395 169 182 msgid "Definition of a city outside the list" 170 183 msgstr "" … … 174 187 msgstr "" 175 188 176 #: templates/select_city.php:31189 #: belingoGeo.php:54 templates/select_city.php:31 177 190 msgid "Didn't find your city?" 178 191 msgstr "" 179 192 180 #: includes/admin/settings.php: 391193 #: includes/admin/settings.php:451 181 194 msgid "Disable forced slug generation for city" 182 195 msgstr "" 183 196 184 #: includes/admin/settings.php:4 05197 #: includes/admin/settings.php:465 185 198 msgid "Disable forced slug generation for region" 186 199 msgstr "" 187 200 188 #: includes/admin/settings.php:3 21201 #: includes/admin/settings.php:381 189 202 msgid "Disable virtual URLs" 190 203 msgstr "" … … 198 211 msgstr "" 199 212 200 #: includes/admin/settings.php:4 35213 #: includes/admin/settings.php:495 201 214 msgid "Enable city search by pop-up window" 202 215 msgstr "" 203 216 204 #: includes/admin/settings.php:142 217 #: includes/admin/settings.php:256 218 msgid "" 219 "Enables pop-up windows in the footer of the site, the option can not be " 220 "enabled if you placed the shortcode manually" 221 msgstr "" 222 223 #: includes/admin/settings.php:146 205 224 msgid "Exceptions" 206 225 msgstr "" 207 226 208 #: includes/admin/settings.php:2 17227 #: includes/admin/settings.php:277 209 228 msgid "Exclude anything that is not a registered entity" 210 229 msgstr "" 211 230 212 #: includes/hooks.php:1 87includes/admin/settings.php:14231 #: includes/hooks.php:198 includes/admin/settings.php:14 213 232 #: includes/admin/settings.php:14 includes/admin/settings.php:52 214 233 msgid "Export" 215 234 msgstr "" 216 235 217 #: includes/admin/settings.php: 363236 #: includes/admin/settings.php:423 218 237 msgid "Filter links by url" 219 238 msgstr "" 220 239 221 #: templates/select_city.php:46 240 #: templates/select_city.php:46 templates/selector.php:3 222 241 msgid "Finding..." 223 242 msgstr "" 224 243 225 #: includes/admin/settings.php: 377244 #: includes/admin/settings.php:437 226 245 msgid "Forced confirmation of the city" 227 246 msgstr "" 228 247 229 #: includes/admin/settings.php: 384248 #: includes/admin/settings.php:444 230 249 msgid "" 231 250 "Forced confirmation of the city without a pop-up window with the question: " … … 258 277 msgstr "" 259 278 260 #: includes/admin/settings.php: 196279 #: includes/admin/settings.php:200 261 280 msgid "" 262 281 "If no city is selected, and no default city is specified, you can specify " … … 264 283 msgstr "" 265 284 266 #: includes/admin/settings.php:1 89285 #: includes/admin/settings.php:193 267 286 msgid "If the city is not found" 268 287 msgstr "" 269 288 270 #: includes/admin/settings.php: 342289 #: includes/admin/settings.php:402 271 290 msgid "" 272 291 "If this option is enabled, the city will be determined anyway, even if it is " … … 274 293 msgstr "" 275 294 276 #: includes/hooks.php:1 87includes/admin/settings.php:13295 #: includes/hooks.php:198 includes/admin/settings.php:13 277 296 #: includes/admin/settings.php:13 includes/admin/settings.php:33 278 297 msgid "Import" … … 287 306 msgstr "" 288 307 289 #: includes/admin/settings.php:1 46308 #: includes/admin/settings.php:150 290 309 msgid "Link type" 291 310 msgstr "" … … 307 326 msgstr "" 308 327 309 #: includes/admin/settings.php:2 03328 #: includes/admin/settings.php:263 310 329 msgid "Number of urls in the sitemap" 311 330 msgstr "" 312 331 313 332 #: includes/admin/settings.php:43 includes/admin/settings.php:56 314 #: includes/admin/settings.php:5 20 includes/admin/settings.php:543315 #: includes/admin/settings.php: 565333 #: includes/admin/settings.php:580 includes/admin/settings.php:603 334 #: includes/admin/settings.php:625 316 335 msgid "Only available for Pro version" 317 336 msgstr "" 318 337 319 #: includes/admin/settings.php: 356338 #: includes/admin/settings.php:416 320 339 msgid "Option to add the city to breadcrumbs on the website." 321 340 msgstr "" … … 325 344 msgstr "" 326 345 327 #: includes/admin/settings.php:2 31346 #: includes/admin/settings.php:291 328 347 msgid "Pages" 329 348 msgstr "" 330 349 331 #: includes/admin/settings.php:2 38350 #: includes/admin/settings.php:298 332 351 msgid "Pages selected in this list will be excluded from the plugin" 333 352 msgstr "" … … 341 360 msgstr "" 342 361 343 #: includes/admin/settings.php:291 362 #: includes/admin/settings.php:207 includes/admin/settings.php:214 363 msgid "Popup title with cities" 364 msgstr "" 365 366 #: includes/admin/settings.php:351 344 367 msgid "Post types" 345 368 msgstr "" 346 369 347 #: includes/admin/settings.php: 276370 #: includes/admin/settings.php:336 348 371 msgid "Posts" 349 372 msgstr "" 350 373 351 #: includes/admin/settings.php: 283374 #: includes/admin/settings.php:343 352 375 msgid "Posts selected in this list will be excluded from the plugin" 353 376 msgstr "" … … 361 384 msgstr "" 362 385 363 #: includes/admin/ functions.php:34 includes/admin/functions.php:36364 #: includes/admin/ settings.php:11 includes/admin/settings.php:11386 #: includes/admin/settings.php:11 includes/admin/functions.php:34 387 #: includes/admin/functions.php:36 365 388 msgid "Regions" 366 389 msgstr "" … … 390 413 msgstr "" 391 414 392 #: includes/admin/settings.php: 261415 #: includes/admin/settings.php:321 393 416 msgid "Tags" 394 417 msgstr "" 395 418 396 #: includes/admin/settings.php:3 06419 #: includes/admin/settings.php:366 397 420 msgid "Taxonomies" 398 421 msgstr "" … … 403 426 msgstr "" 404 427 405 #: includes/admin/settings.php:2 10428 #: includes/admin/settings.php:270 406 429 msgid "The number of URLs per page in the sitemap" 407 430 msgstr "" 408 431 409 #: includes/admin/settings.php: 442432 #: includes/admin/settings.php:502 410 433 msgid "The option displays a city search in a pop-up list of cities" 411 434 msgstr "" … … 425 448 msgstr "" 426 449 427 #: includes/admin/settings.php: 398450 #: includes/admin/settings.php:458 428 451 msgid "" 429 452 "The plugin automatically generates a slug for the city, this option disables " … … 431 454 msgstr "" 432 455 433 #: includes/admin/settings.php:4 12456 #: includes/admin/settings.php:472 434 457 msgid "" 435 458 "The plugin automatically generates a slug for the region, this option " … … 438 461 msgstr "" 439 462 440 #: includes/admin/settings.php: 253463 #: includes/admin/settings.php:313 441 464 msgid "" 442 465 "The selected headings will be excluded, urls with the city will not be " … … 445 468 msgstr "" 446 469 447 #: includes/admin/settings.php: 298470 #: includes/admin/settings.php:358 448 471 msgid "" 449 472 "The selected post types will be excluded, URLs with the city will not be " … … 452 475 msgstr "" 453 476 454 #: includes/admin/settings.php: 268477 #: includes/admin/settings.php:328 455 478 msgid "" 456 479 "The selected tags will be excluded, urls with the city will not be generated " … … 458 481 msgstr "" 459 482 460 #: includes/admin/settings.php:3 13483 #: includes/admin/settings.php:373 461 484 msgid "" 462 485 "The selected taxonomies will be excluded, urls with the city will not be " … … 465 488 msgstr "" 466 489 467 #: includes/admin/settings.php:18 1490 #: includes/admin/settings.php:185 468 491 msgid "" 469 492 "The string is displayed in the select_city shortcode if there is no selected " … … 471 494 msgstr "" 472 495 473 #: includes/admin/settings.php:2 24496 #: includes/admin/settings.php:284 474 497 msgid "" 475 498 "This option excludes all pages not related to WP_Post, WP_Term, WP_Post_Type " … … 493 516 msgstr "" 494 517 495 #: templates/select_city.php:33518 #: belingoGeo.php:55 templates/select_city.php:33 496 519 msgid "We deliver worldwide" 497 520 msgstr "" … … 501 524 msgstr "" 502 525 503 #: includes/admin/settings.php:3 28526 #: includes/admin/settings.php:388 504 527 msgid "You can disable virtual URLs, the plugin will not generate them" 505 528 msgstr "" 506 529 507 #: includes/admin/settings.php: 458530 #: includes/admin/settings.php:518 508 531 msgid "" 509 532 "You can specify any shortcode, it will be added to the woocommerce category " … … 515 538 msgstr "" 516 539 517 #: templates/select_city.php:14540 #: belingoGeo.php:53 templates/select_city.php:14 518 541 msgid "Your delivery region" 519 542 msgstr ""
Note: See TracChangeset
for help on using the changeset viewer.