Version Description
- 2016/02/19
- few minor bug fixes
- added google maps API key tester
Download this release
Release Info
| Developer | WebFactory |
| Plugin | |
| Version | 3.05 |
| Comparing to | |
| See all releases | |
Code changes from version 3.04 to 3.05
- css/gmw-admin.css +6 -0
- gmw-tracking.php +2 -2
- gmw-widget.php +3 -7
- google-maps-widget.php +47 -13
- js/gmw-admin.js +27 -0
- lang/google-maps-widget.pot +783 -180
- readme.txt +12 -6
css/gmw-admin.css
CHANGED
|
@@ -278,6 +278,12 @@ body.widgets-php .select2-container--default .select2-results__option[aria-disab
|
|
| 278 |
background-size: 20px 20px;
|
| 279 |
}
|
| 280 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 281 |
.gmw_disabled {
|
| 282 |
pointer-events: none;
|
| 283 |
opacity: .65;
|
| 278 |
background-size: 20px 20px;
|
| 279 |
}
|
| 280 |
|
| 281 |
+
a.button.button-secondary.gmw_spinner {
|
| 282 |
+
background: url(../images/spinner.gif) no-repeat center center;
|
| 283 |
+
-webkit-background-size: 20px 20px;
|
| 284 |
+
background-size: 20px 20px;
|
| 285 |
+
}
|
| 286 |
+
|
| 287 |
.gmw_disabled {
|
| 288 |
pointer-events: none;
|
| 289 |
opacity: .65;
|
gmw-tracking.php
CHANGED
|
@@ -78,7 +78,7 @@ class GMW_tracking {
|
|
| 78 |
$optout_url = add_query_arg('gmw_tracking', 'opt_out');
|
| 79 |
|
| 80 |
echo '<div class="updated"><p>';
|
| 81 |
-
echo __('Please help us improve <strong>Google Maps Widget</strong> by allowing tracking of anonymous usage data. Absolutely <strong>no sensitive data is tracked</strong> (<a href="http://www.
|
| 82 |
echo '<br /><a href="' . esc_url($optin_url) . '" style="vertical-align: baseline; margin-top: 15px;" class="button-primary">' . __('Allow', 'google-maps-widget') . '</a>';
|
| 83 |
echo ' <a href="' . esc_url($optout_url) . '" class="">' . __('Do not allow tracking', 'google-maps-widget') . '</a>';
|
| 84 |
echo '</p></div>';
|
|
@@ -97,7 +97,7 @@ class GMW_tracking {
|
|
| 97 |
}
|
| 98 |
|
| 99 |
$data = self::prepare_data();
|
| 100 |
-
$request = wp_remote_post('http://www.
|
| 101 |
'method' => 'POST',
|
| 102 |
'timeout' => 10,
|
| 103 |
'redirection' => 3,
|
| 78 |
$optout_url = add_query_arg('gmw_tracking', 'opt_out');
|
| 79 |
|
| 80 |
echo '<div class="updated"><p>';
|
| 81 |
+
echo __('Please help us improve <strong>Google Maps Widget</strong> by allowing tracking of anonymous usage data. Absolutely <strong>no sensitive data is tracked</strong> (<a href="http://www.gmapswidget.com/plugin-tracking-info/" target="_blank">complete disclosure & details of our tracking policy</a>).', 'google-maps-widget');
|
| 82 |
echo '<br /><a href="' . esc_url($optin_url) . '" style="vertical-align: baseline; margin-top: 15px;" class="button-primary">' . __('Allow', 'google-maps-widget') . '</a>';
|
| 83 |
echo ' <a href="' . esc_url($optout_url) . '" class="">' . __('Do not allow tracking', 'google-maps-widget') . '</a>';
|
| 84 |
echo '</p></div>';
|
| 97 |
}
|
| 98 |
|
| 99 |
$data = self::prepare_data();
|
| 100 |
+
$request = wp_remote_post('http://www.gmapswidget.com/tracking.php', array(
|
| 101 |
'method' => 'POST',
|
| 102 |
'timeout' => 10,
|
| 103 |
'redirection' => 3,
|
gmw-widget.php
CHANGED
|
@@ -28,7 +28,7 @@ class GoogleMapsWidget extends WP_Widget {
|
|
| 28 |
'thumb_type' => 'roadmap',
|
| 29 |
'thumb_zoom' => '13',
|
| 30 |
'thumb_header' => '',
|
| 31 |
-
'thumb_footer' => '
|
| 32 |
'thumb_color_scheme' => 'new',
|
| 33 |
'thumb_link_type' => 'lightbox',
|
| 34 |
'thumb_link' => '',
|
|
@@ -689,12 +689,8 @@ class GoogleMapsWidget extends WP_Widget {
|
|
| 689 |
|
| 690 |
// if not empty, add footer text
|
| 691 |
if (!empty($instance['thumb_footer'])) {
|
| 692 |
-
|
| 693 |
-
|
| 694 |
-
} else {
|
| 695 |
-
$tmp = str_ireplace(array('{address}'), array($instance['address']), $instance['thumb_footer']);
|
| 696 |
-
$widget_content .= wpautop(do_shortcode($tmp));
|
| 697 |
-
}
|
| 698 |
}
|
| 699 |
|
| 700 |
$out .= apply_filters('gmw_widget_content', $widget_content, $instance);
|
| 28 |
'thumb_type' => 'roadmap',
|
| 29 |
'thumb_zoom' => '13',
|
| 30 |
'thumb_header' => '',
|
| 31 |
+
'thumb_footer' => '',
|
| 32 |
'thumb_color_scheme' => 'new',
|
| 33 |
'thumb_link_type' => 'lightbox',
|
| 34 |
'thumb_link' => '',
|
| 689 |
|
| 690 |
// if not empty, add footer text
|
| 691 |
if (!empty($instance['thumb_footer'])) {
|
| 692 |
+
$tmp = str_ireplace(array('{address}'), array($instance['address']), $instance['thumb_footer']);
|
| 693 |
+
$widget_content .= wpautop(do_shortcode($tmp));
|
|
|
|
|
|
|
|
|
|
|
|
|
| 694 |
}
|
| 695 |
|
| 696 |
$out .= apply_filters('gmw_widget_content', $widget_content, $instance);
|
google-maps-widget.php
CHANGED
|
@@ -1,10 +1,10 @@
|
|
| 1 |
<?php
|
| 2 |
/*
|
| 3 |
Plugin Name: Google Maps Widget
|
| 4 |
-
Plugin URI: http://www.
|
| 5 |
Description: Display a single-image super-fast loading Google map in a widget. A larger, full featured map is available as an image replacement or in a lightbox. Includes shortcode support and numerous options.
|
| 6 |
Author: Web factory Ltd
|
| 7 |
-
Version: 3.
|
| 8 |
Author URI: http://www.webfactoryltd.com/
|
| 9 |
Text Domain: google-maps-widget
|
| 10 |
Domain Path: lang
|
|
@@ -46,7 +46,7 @@ if (file_exists(GMW_PLUGIN_DIR . 'gmw-pro-license.php')) {
|
|
| 46 |
|
| 47 |
|
| 48 |
class GMW {
|
| 49 |
-
static $version = '3.
|
| 50 |
static $options = 'gmw_options';
|
| 51 |
|
| 52 |
|
|
@@ -75,6 +75,7 @@ class GMW {
|
|
| 75 |
|
| 76 |
// register AJAX endpoints
|
| 77 |
add_action('wp_ajax_gmw_activate', array('GMW', 'activate_license_key_ajax'));
|
|
|
|
| 78 |
|
| 79 |
// custom admin actions
|
| 80 |
add_action('admin_action_gmw_dismiss_notice', array('GMW', 'dismiss_notice'));
|
|
@@ -238,7 +239,7 @@ class GMW {
|
|
| 238 |
}
|
| 239 |
if (empty($options) || !isset($options['sc_map']) || !isset($options['track_ga'])) {
|
| 240 |
$options = array_merge(GMW::default_options(), $options);
|
| 241 |
-
update_option(GMW::$options, $options);
|
| 242 |
}
|
| 243 |
|
| 244 |
return $options;
|
|
@@ -274,7 +275,7 @@ class GMW {
|
|
| 274 |
|
| 275 |
// add links to plugin's description in plugins table
|
| 276 |
static function plugin_meta_links($links, $file) {
|
| 277 |
-
$documentation_link = '<a target="_blank" href="http://www.
|
| 278 |
if (GMW::is_activated()) {
|
| 279 |
$support_link = '<a target="_blank" href="mailto:gmw@webfactoryltd.com?subject=GMW%20support" title="' . __('Problems? We are here to help!', 'google-maps-widget') . '">' . __('Support', 'google-maps-widget') . '</a>';
|
| 280 |
} else {
|
|
@@ -331,6 +332,38 @@ class GMW {
|
|
| 331 |
|
| 332 |
return false;
|
| 333 |
} // get_api_key
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 334 |
|
| 335 |
|
| 336 |
// build a complete URL for the iframe map
|
|
@@ -340,7 +373,7 @@ class GMW {
|
|
| 340 |
if ($widget['lightbox_mode'] == 'place') {
|
| 341 |
$map_params['q'] = $widget['address'];
|
| 342 |
$map_params['attribution_source'] = get_bloginfo('name')? get_bloginfo('name'): 'Google Maps Widget';
|
| 343 |
-
$map_params['attribution_web_url'] =
|
| 344 |
$map_params['attribution_ios_deep_link_id'] = 'comgooglemaps://?daddr=' . $widget['address'];
|
| 345 |
$map_params['maptype'] = $widget['lightbox_map_type'];
|
| 346 |
$map_params['zoom'] = $widget['lightbox_zoom'];
|
|
@@ -705,6 +738,7 @@ class GMW {
|
|
| 705 |
$js_localize = array('activate_ok' => __('Superb! PRO features are active ;)', 'google-maps-widget'),
|
| 706 |
'dialog_map_title' => __('Pick an address by drag & dropping the pin', 'google-maps-widget'),
|
| 707 |
'undocumented_error' => __('An undocumented error has occured. Please refresh the page and try again.', 'google-maps-widget'),
|
|
|
|
| 708 |
'dialog_promo_title' => '<img alt="' . __('Google Maps Widget PRO', 'google-maps-widget') . '" title="' . __('Google Maps Widget PRO', 'google-maps-widget') . '" src="' . plugins_url('/images/gmw-logo-pro-dialog.png', __FILE__) . '">',
|
| 709 |
'dialog_pins_title' => __('Pins Library', 'google-maps-widget'),
|
| 710 |
'plugin_name' => GMW::is_activated()? __('Google Maps Widget PRO', 'google-maps-widget'): __('Google Maps Widget', 'google-maps-widget'),
|
|
@@ -747,7 +781,7 @@ class GMW {
|
|
| 747 |
if (isset($options['license_active']) && $options['license_active'] === true &&
|
| 748 |
isset($options['license_expires']) && $options['license_expires'] >= date('Y-m-d')) {
|
| 749 |
|
| 750 |
-
if (mt_rand(0,
|
| 751 |
$tmp = GMW::validate_activation_code($options['activation_code']);
|
| 752 |
if ($tmp['success']) {
|
| 753 |
$update['license_type'] = $tmp['license_type'];
|
|
@@ -794,7 +828,7 @@ class GMW {
|
|
| 794 |
<li>Export & import feature</li>
|
| 795 |
<li style="display: none;">Extra skins and icons</li>
|
| 796 |
</ul>
|
| 797 |
-
<a href="http://www.
|
| 798 |
</div>';
|
| 799 |
$out .= '<div class="gmw-right-box gmw-content-box gmw-content-box-alternate">
|
| 800 |
<h3>Donate</h3>
|
|
@@ -807,7 +841,7 @@ class GMW {
|
|
| 807 |
<li class="gmw-not-available">Export & import feature</li>
|
| 808 |
<li style="display: none;" class="gmw-not-available">Extra skins and icons</li>
|
| 809 |
</ul>
|
| 810 |
-
<a href="http://www.
|
| 811 |
</div>';
|
| 812 |
$out .= '<p class="clear center gmw-footer-intro">Already have a license key? <a href="#" class="gmw_goto_activation">Enter it here</a></p>';
|
| 813 |
$out .= '</div></div>'; // dialog intro
|
|
@@ -920,7 +954,7 @@ class GMW {
|
|
| 920 |
} else {
|
| 921 |
echo '<h1><img alt="' . __('Google Maps Widget', 'google-maps-widget') . '" title="' . __('Google Maps Widget', 'google-maps-widget') . '" height="55" src="' . plugins_url('/images/gmw-logo.png', __FILE__) . '"></h1>';
|
| 922 |
}
|
| 923 |
-
|
| 924 |
echo '<form method="post" action="options.php" enctype="multipart/form-data">';
|
| 925 |
settings_fields(GMW::$options);
|
| 926 |
|
|
@@ -934,7 +968,7 @@ class GMW {
|
|
| 934 |
echo '<table class="form-table">';
|
| 935 |
echo '<tr>
|
| 936 |
<th scope="row"><label for="api_key">' . __('Google Maps API Key', 'google-maps-widget') . '</label></th>
|
| 937 |
-
<td><input name="' . GMW::$options . '[api_key]" type="text" id="api_key" value="' . esc_attr($options['api_key']) . '" class="regular-text" placeholder="Google Maps API key" oninput="setCustomValidity(\'\')" oninvalid="this.setCustomValidity(\'Please use Google Developers Console to generate an API key and enter it here. It is completely free.\')">
|
| 938 |
<p class="description">New Google Maps usage policy dictates that everyone using the maps should register for a free API key.<br>
|
| 939 |
Please create a key for "Google Static Maps API" and "Google Maps Embed API" using the <a href="https://console.developers.google.com/project" target="blank">Google Developers Console</a>.<br>
|
| 940 |
Or use <a href="https://console.developers.google.com/flows/enableapi?apiid=maps_embed_backend&keyType=CLIENT_SIDE&reusekey=true" target="_blank">wizard step #1</a> - login, click next a few times & copy the key. Then use <a href="https://console.developers.google.com/flows/enableapi?apiid=static_maps_backend&keyType=CLIENT_SIDE&reusekey=true" target="_blank">wizard step #2</a> and select the same "My Project".</p></td>
|
|
@@ -1058,7 +1092,7 @@ class GMW {
|
|
| 1058 |
static function validate_activation_code($code) {
|
| 1059 |
$out = array('success' => false, 'license_active' => false, 'activation_code' => $code, 'error' => '', 'license_type' => '', 'license_expires' => '1900-01-01');
|
| 1060 |
|
| 1061 |
-
$url = add_query_arg(array('code' => $code, 'domain' => get_home_url()), 'http://www.
|
| 1062 |
$response = wp_remote_get(esc_url_raw($url), array('sslverify' => false));
|
| 1063 |
|
| 1064 |
if (!is_wp_error($response) && wp_remote_retrieve_body($response)) {
|
|
@@ -1196,7 +1230,7 @@ class GMW {
|
|
| 1196 |
$options = GMW::get_options();
|
| 1197 |
|
| 1198 |
// pro was active with old key, recheck
|
| 1199 |
-
if (!empty($options['activation_code']) && $options['license_active'] === '') {
|
| 1200 |
$tmp = GMW::validate_activation_code($options['activation_code']);
|
| 1201 |
if ($tmp['success']) {
|
| 1202 |
$update['license_type'] = $tmp['license_type'];
|
| 1 |
<?php
|
| 2 |
/*
|
| 3 |
Plugin Name: Google Maps Widget
|
| 4 |
+
Plugin URI: http://www.gmapswidget.com/
|
| 5 |
Description: Display a single-image super-fast loading Google map in a widget. A larger, full featured map is available as an image replacement or in a lightbox. Includes shortcode support and numerous options.
|
| 6 |
Author: Web factory Ltd
|
| 7 |
+
Version: 3.05
|
| 8 |
Author URI: http://www.webfactoryltd.com/
|
| 9 |
Text Domain: google-maps-widget
|
| 10 |
Domain Path: lang
|
| 46 |
|
| 47 |
|
| 48 |
class GMW {
|
| 49 |
+
static $version = '3.05';
|
| 50 |
static $options = 'gmw_options';
|
| 51 |
|
| 52 |
|
| 75 |
|
| 76 |
// register AJAX endpoints
|
| 77 |
add_action('wp_ajax_gmw_activate', array('GMW', 'activate_license_key_ajax'));
|
| 78 |
+
add_action('wp_ajax_gmw_test_api_key', array('GMW', 'test_api_key_ajax'));
|
| 79 |
|
| 80 |
// custom admin actions
|
| 81 |
add_action('admin_action_gmw_dismiss_notice', array('GMW', 'dismiss_notice'));
|
| 239 |
}
|
| 240 |
if (empty($options) || !isset($options['sc_map']) || !isset($options['track_ga'])) {
|
| 241 |
$options = array_merge(GMW::default_options(), $options);
|
| 242 |
+
update_option(GMW::$options, $options, true);
|
| 243 |
}
|
| 244 |
|
| 245 |
return $options;
|
| 275 |
|
| 276 |
// add links to plugin's description in plugins table
|
| 277 |
static function plugin_meta_links($links, $file) {
|
| 278 |
+
$documentation_link = '<a target="_blank" href="http://www.gmapswidget.com/documentation/" title="' . __('View Google Maps Widget documentation', 'google-maps-widget') . '">'. __('Documentation', 'google-maps-widget') . '</a>';
|
| 279 |
if (GMW::is_activated()) {
|
| 280 |
$support_link = '<a target="_blank" href="mailto:gmw@webfactoryltd.com?subject=GMW%20support" title="' . __('Problems? We are here to help!', 'google-maps-widget') . '">' . __('Support', 'google-maps-widget') . '</a>';
|
| 281 |
} else {
|
| 332 |
|
| 333 |
return false;
|
| 334 |
} // get_api_key
|
| 335 |
+
|
| 336 |
+
|
| 337 |
+
// checkes if API key is active for all needed API services
|
| 338 |
+
static function test_api_key_ajax() {
|
| 339 |
+
$msg = '';
|
| 340 |
+
$error = false;
|
| 341 |
+
$api_key = trim(@$_GET['api_key']);
|
| 342 |
+
|
| 343 |
+
$test = wp_remote_get('https://maps.googleapis.com/maps/api/staticmap?center=new+york+usa&size=100x100&key=' . $api_key);
|
| 344 |
+
if (wp_remote_retrieve_response_message($test) == 'OK') {
|
| 345 |
+
$msg .= 'Google Static Maps API test - OK' . "\n";
|
| 346 |
+
} else {
|
| 347 |
+
$msg .= 'Google Static Maps API test - FAILED' . "\n";
|
| 348 |
+
$error = true;
|
| 349 |
+
}
|
| 350 |
+
|
| 351 |
+
$test = wp_remote_get('https://www.google.com/maps/embed/v1/place?q=new+york+usa&key=' . $api_key);
|
| 352 |
+
if (wp_remote_retrieve_response_message($test) == 'OK') {
|
| 353 |
+
$msg .= 'Google Embed Maps API test - OK' . "\n\n";
|
| 354 |
+
} else {
|
| 355 |
+
$msg .= 'Google Embed Maps API test - FAILED' . "\n\n";
|
| 356 |
+
$error = true;
|
| 357 |
+
}
|
| 358 |
+
|
| 359 |
+
if ($error) {
|
| 360 |
+
$msg .= 'Something is not right. Please read the instruction below on how to generate the API key and double-check everything.';
|
| 361 |
+
} else {
|
| 362 |
+
$msg = 'The API key is OK! Don\'t forget to save it ;)';
|
| 363 |
+
}
|
| 364 |
+
|
| 365 |
+
wp_send_json_success($msg);
|
| 366 |
+
} // test_api_key
|
| 367 |
|
| 368 |
|
| 369 |
// build a complete URL for the iframe map
|
| 373 |
if ($widget['lightbox_mode'] == 'place') {
|
| 374 |
$map_params['q'] = $widget['address'];
|
| 375 |
$map_params['attribution_source'] = get_bloginfo('name')? get_bloginfo('name'): 'Google Maps Widget';
|
| 376 |
+
$map_params['attribution_web_url'] = get_home_url();
|
| 377 |
$map_params['attribution_ios_deep_link_id'] = 'comgooglemaps://?daddr=' . $widget['address'];
|
| 378 |
$map_params['maptype'] = $widget['lightbox_map_type'];
|
| 379 |
$map_params['zoom'] = $widget['lightbox_zoom'];
|
| 738 |
$js_localize = array('activate_ok' => __('Superb! PRO features are active ;)', 'google-maps-widget'),
|
| 739 |
'dialog_map_title' => __('Pick an address by drag & dropping the pin', 'google-maps-widget'),
|
| 740 |
'undocumented_error' => __('An undocumented error has occured. Please refresh the page and try again.', 'google-maps-widget'),
|
| 741 |
+
'bad_api_key' => __('The API key format does not look right. Please double-check it.', 'google-maps-widget'),
|
| 742 |
'dialog_promo_title' => '<img alt="' . __('Google Maps Widget PRO', 'google-maps-widget') . '" title="' . __('Google Maps Widget PRO', 'google-maps-widget') . '" src="' . plugins_url('/images/gmw-logo-pro-dialog.png', __FILE__) . '">',
|
| 743 |
'dialog_pins_title' => __('Pins Library', 'google-maps-widget'),
|
| 744 |
'plugin_name' => GMW::is_activated()? __('Google Maps Widget PRO', 'google-maps-widget'): __('Google Maps Widget', 'google-maps-widget'),
|
| 781 |
if (isset($options['license_active']) && $options['license_active'] === true &&
|
| 782 |
isset($options['license_expires']) && $options['license_expires'] >= date('Y-m-d')) {
|
| 783 |
|
| 784 |
+
if (mt_rand(0, 1000) == 1000 && is_admin()) {
|
| 785 |
$tmp = GMW::validate_activation_code($options['activation_code']);
|
| 786 |
if ($tmp['success']) {
|
| 787 |
$update['license_type'] = $tmp['license_type'];
|
| 828 |
<li>Export & import feature</li>
|
| 829 |
<li style="display: none;">Extra skins and icons</li>
|
| 830 |
</ul>
|
| 831 |
+
<a href="http://www.gmapswidget.com/buy/?p=pro&r=GMW+v' . GMW::$version . '" data-noprevent="1" class="gmw_goto_activation button-primary" target="_blank">BUY NOW</a>
|
| 832 |
</div>';
|
| 833 |
$out .= '<div class="gmw-right-box gmw-content-box gmw-content-box-alternate">
|
| 834 |
<h3>Donate</h3>
|
| 841 |
<li class="gmw-not-available">Export & import feature</li>
|
| 842 |
<li style="display: none;" class="gmw-not-available">Extra skins and icons</li>
|
| 843 |
</ul>
|
| 844 |
+
<a href="http://www.gmapswidget.com/buy/?p=donate&r=GMW+v' . GMW::$version . '" data-noprevent="1" class="gmw_goto_activation button-secondary" target="_blank">Donate</a>
|
| 845 |
</div>';
|
| 846 |
$out .= '<p class="clear center gmw-footer-intro">Already have a license key? <a href="#" class="gmw_goto_activation">Enter it here</a></p>';
|
| 847 |
$out .= '</div></div>'; // dialog intro
|
| 954 |
} else {
|
| 955 |
echo '<h1><img alt="' . __('Google Maps Widget', 'google-maps-widget') . '" title="' . __('Google Maps Widget', 'google-maps-widget') . '" height="55" src="' . plugins_url('/images/gmw-logo.png', __FILE__) . '"></h1>';
|
| 956 |
}
|
| 957 |
+
|
| 958 |
echo '<form method="post" action="options.php" enctype="multipart/form-data">';
|
| 959 |
settings_fields(GMW::$options);
|
| 960 |
|
| 968 |
echo '<table class="form-table">';
|
| 969 |
echo '<tr>
|
| 970 |
<th scope="row"><label for="api_key">' . __('Google Maps API Key', 'google-maps-widget') . '</label></th>
|
| 971 |
+
<td><input name="' . GMW::$options . '[api_key]" type="text" id="api_key" value="' . esc_attr($options['api_key']) . '" class="regular-text" placeholder="Google Maps API key" oninput="setCustomValidity(\'\')" oninvalid="this.setCustomValidity(\'Please use Google Developers Console to generate an API key and enter it here. It is completely free.\')"> <a href="#" class="button button-secondary gmw-test-api-key">Test API key</a>
|
| 972 |
<p class="description">New Google Maps usage policy dictates that everyone using the maps should register for a free API key.<br>
|
| 973 |
Please create a key for "Google Static Maps API" and "Google Maps Embed API" using the <a href="https://console.developers.google.com/project" target="blank">Google Developers Console</a>.<br>
|
| 974 |
Or use <a href="https://console.developers.google.com/flows/enableapi?apiid=maps_embed_backend&keyType=CLIENT_SIDE&reusekey=true" target="_blank">wizard step #1</a> - login, click next a few times & copy the key. Then use <a href="https://console.developers.google.com/flows/enableapi?apiid=static_maps_backend&keyType=CLIENT_SIDE&reusekey=true" target="_blank">wizard step #2</a> and select the same "My Project".</p></td>
|
| 1092 |
static function validate_activation_code($code) {
|
| 1093 |
$out = array('success' => false, 'license_active' => false, 'activation_code' => $code, 'error' => '', 'license_type' => '', 'license_expires' => '1900-01-01');
|
| 1094 |
|
| 1095 |
+
$url = add_query_arg(array('code' => $code, 'domain' => get_home_url()), 'http://www.gmapswidget.com/verify_license.php');
|
| 1096 |
$response = wp_remote_get(esc_url_raw($url), array('sslverify' => false));
|
| 1097 |
|
| 1098 |
if (!is_wp_error($response) && wp_remote_retrieve_body($response)) {
|
| 1230 |
$options = GMW::get_options();
|
| 1231 |
|
| 1232 |
// pro was active with old key, recheck
|
| 1233 |
+
if (!empty($options['activation_code']) && strlen($options['activation_code']) == 6 && $options['license_active'] === '') {
|
| 1234 |
$tmp = GMW::validate_activation_code($options['activation_code']);
|
| 1235 |
if ($tmp['success']) {
|
| 1236 |
$update['license_type'] = $tmp['license_type'];
|
js/gmw-admin.js
CHANGED
|
@@ -609,4 +609,31 @@ jQuery(function($) {
|
|
| 609 |
|
| 610 |
return false;
|
| 611 |
}); // move pin in dialog
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 612 |
}); // onload
|
| 609 |
|
| 610 |
return false;
|
| 611 |
}); // move pin in dialog
|
| 612 |
+
|
| 613 |
+
|
| 614 |
+
// test API key
|
| 615 |
+
$('.gmw-test-api-key').on('click', function(e) {
|
| 616 |
+
e.preventDefault();
|
| 617 |
+
var button = this;
|
| 618 |
+
|
| 619 |
+
api_key = $('#api_key').val();
|
| 620 |
+
if (api_key.length < 30) {
|
| 621 |
+
alert(gmw.bad_api_key);
|
| 622 |
+
return false;
|
| 623 |
+
}
|
| 624 |
+
|
| 625 |
+
$(button).addClass('gmw_spinner').addClass('gmw_disabled');
|
| 626 |
+
|
| 627 |
+
$.get(ajaxurl, {'action': 'gmw_test_api_key', 'api_key': api_key},
|
| 628 |
+
function(response) {
|
| 629 |
+
alert(response.data);
|
| 630 |
+
}
|
| 631 |
+
).fail(function(response) {
|
| 632 |
+
alert(gmw.undocumented_error);
|
| 633 |
+
}).always(function(response) {
|
| 634 |
+
$(button).removeClass('gmw_spinner').removeClass('gmw_disabled');
|
| 635 |
+
});
|
| 636 |
+
|
| 637 |
+
return false;
|
| 638 |
+
}); // test api key
|
| 639 |
}); // onload
|
lang/google-maps-widget.pot
CHANGED
|
@@ -1,441 +1,1044 @@
|
|
| 1 |
-
# Copyright (C)
|
| 2 |
# This file is distributed under the same license as the Google Maps Widget package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
-
"Project-Id-Version: Google Maps Widget
|
| 6 |
-
"Report-Msgid-Bugs-To:
|
| 7 |
"widget\n"
|
| 8 |
-
"POT-Creation-Date:
|
| 9 |
"MIME-Version: 1.0\n"
|
| 10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 11 |
"Content-Transfer-Encoding: 8bit\n"
|
| 12 |
-
"PO-Revision-Date:
|
| 13 |
-
"Last-Translator:
|
| 14 |
-
"Language-Team:
|
| 15 |
|
| 16 |
-
#: gmw-
|
| 17 |
-
msgid ""
|
| 18 |
-
"Please help us improve <strong>Google Maps Widget</strong> by allowing us to "
|
| 19 |
-
"track anonymous usage data. Absolutely <strong>no sensitive data is tracked</"
|
| 20 |
-
"strong> (<a href=\"http://www.googlemapswidget.com/plugin-tracking-info/\" "
|
| 21 |
-
"target=\"_blank\">complete disclosure & details of our tracking policy</"
|
| 22 |
-
"a>)."
|
| 23 |
msgstr ""
|
| 24 |
|
| 25 |
-
#: gmw-
|
| 26 |
-
msgid "
|
| 27 |
msgstr ""
|
| 28 |
|
| 29 |
-
#: gmw-
|
| 30 |
-
msgid "
|
| 31 |
msgstr ""
|
| 32 |
|
| 33 |
-
#: gmw-
|
| 34 |
msgid ""
|
| 35 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
msgstr ""
|
| 37 |
|
| 38 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39 |
#. Plugin Name of the plugin/theme
|
| 40 |
-
#: gmw-widget.php:
|
|
|
|
| 41 |
msgid "Google Maps Widget"
|
| 42 |
msgstr ""
|
| 43 |
|
| 44 |
-
#: gmw-widget.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 45 |
msgid "Map"
|
| 46 |
msgstr ""
|
| 47 |
|
| 48 |
-
#: gmw-widget.php:
|
| 49 |
msgid "New York, USA"
|
| 50 |
msgstr ""
|
| 51 |
|
| 52 |
-
#: gmw-widget.php:
|
| 53 |
msgid "Road (default)"
|
| 54 |
msgstr ""
|
| 55 |
|
| 56 |
-
#: gmw-widget.php:
|
| 57 |
msgid "Satellite"
|
| 58 |
msgstr ""
|
| 59 |
|
| 60 |
-
#: gmw-widget.php:
|
| 61 |
msgid "Terrain"
|
| 62 |
msgstr ""
|
| 63 |
|
| 64 |
-
#: gmw-widget.php:
|
| 65 |
msgid "Hybrid"
|
| 66 |
msgstr ""
|
| 67 |
|
| 68 |
-
#: gmw-widget.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 69 |
msgid "Black"
|
| 70 |
msgstr ""
|
| 71 |
|
| 72 |
-
#: gmw-widget.php:
|
| 73 |
msgid "Brown"
|
| 74 |
msgstr ""
|
| 75 |
|
| 76 |
-
#: gmw-widget.php:
|
| 77 |
msgid "Green"
|
| 78 |
msgstr ""
|
| 79 |
|
| 80 |
-
#: gmw-widget.php:
|
| 81 |
msgid "Purple"
|
| 82 |
msgstr ""
|
| 83 |
|
| 84 |
-
#: gmw-widget.php:
|
| 85 |
msgid "Yellow"
|
| 86 |
msgstr ""
|
| 87 |
|
| 88 |
-
#: gmw-widget.php:
|
| 89 |
msgid "Blue"
|
| 90 |
msgstr ""
|
| 91 |
|
| 92 |
-
#: gmw-widget.php:
|
| 93 |
msgid "Gray"
|
| 94 |
msgstr ""
|
| 95 |
|
| 96 |
-
#: gmw-widget.php:
|
| 97 |
msgid "Orange"
|
| 98 |
msgstr ""
|
| 99 |
|
| 100 |
-
#: gmw-widget.php:
|
| 101 |
msgid "Red (default)"
|
| 102 |
msgstr ""
|
| 103 |
|
| 104 |
-
#: gmw-widget.php:
|
| 105 |
msgid "White"
|
| 106 |
msgstr ""
|
| 107 |
|
| 108 |
-
#: gmw-widget.php:
|
| 109 |
-
msgid "
|
| 110 |
msgstr ""
|
| 111 |
|
| 112 |
-
#: gmw-widget.php:
|
| 113 |
-
msgid "
|
| 114 |
msgstr ""
|
| 115 |
|
| 116 |
-
#: gmw-widget.php:
|
| 117 |
-
msgid "
|
| 118 |
msgstr ""
|
| 119 |
|
| 120 |
-
#: gmw-widget.php:
|
| 121 |
-
msgid "
|
| 122 |
msgstr ""
|
| 123 |
|
| 124 |
-
#: gmw-widget.php:
|
| 125 |
-
msgid "
|
| 126 |
msgstr ""
|
| 127 |
|
| 128 |
-
#: gmw-widget.php:
|
| 129 |
-
msgid "
|
| 130 |
msgstr ""
|
| 131 |
|
| 132 |
-
#: gmw-widget.php:
|
| 133 |
-
msgid "
|
| 134 |
msgstr ""
|
| 135 |
|
| 136 |
-
#: gmw-widget.php:
|
| 137 |
-
msgid "
|
| 138 |
msgstr ""
|
| 139 |
|
| 140 |
-
#: gmw-widget.php:
|
| 141 |
-
msgid "
|
| 142 |
msgstr ""
|
| 143 |
|
| 144 |
-
#: gmw-widget.php:
|
| 145 |
-
msgid "
|
| 146 |
msgstr ""
|
| 147 |
|
| 148 |
-
#: gmw-widget.php:
|
| 149 |
-
msgid "
|
| 150 |
msgstr ""
|
| 151 |
|
| 152 |
-
#: gmw-widget.php:
|
| 153 |
-
msgid "
|
| 154 |
msgstr ""
|
| 155 |
|
| 156 |
-
#: gmw-widget.php:
|
| 157 |
-
msgid "
|
| 158 |
msgstr ""
|
| 159 |
|
| 160 |
-
#: gmw-widget.php:
|
| 161 |
-
msgid "
|
| 162 |
msgstr ""
|
| 163 |
|
| 164 |
-
#: gmw-widget.php:
|
| 165 |
-
msgid "
|
| 166 |
msgstr ""
|
| 167 |
|
| 168 |
-
#: gmw-widget.php:
|
| 169 |
-
msgid "
|
| 170 |
msgstr ""
|
| 171 |
|
| 172 |
-
#: gmw-widget.php:
|
| 173 |
-
msgid "
|
| 174 |
msgstr ""
|
| 175 |
|
| 176 |
-
#: gmw-widget.php:
|
| 177 |
-
msgid "
|
| 178 |
msgstr ""
|
| 179 |
|
| 180 |
-
#: gmw-widget.php:
|
| 181 |
msgid "Apple"
|
| 182 |
msgstr ""
|
| 183 |
|
| 184 |
-
#: gmw-widget.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 185 |
msgid "Paper"
|
| 186 |
msgstr ""
|
| 187 |
|
| 188 |
-
#: gmw-widget.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 189 |
msgid "Rounded"
|
| 190 |
msgstr ""
|
| 191 |
|
| 192 |
-
#: gmw-widget.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 193 |
msgid "Title"
|
| 194 |
msgstr ""
|
| 195 |
|
| 196 |
-
#: gmw-widget.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 197 |
msgid "Address"
|
| 198 |
msgstr ""
|
| 199 |
|
| 200 |
-
#: gmw-widget.php:
|
| 201 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
| 202 |
msgstr ""
|
| 203 |
|
| 204 |
-
#: gmw-widget.php:
|
| 205 |
-
msgid "
|
| 206 |
msgstr ""
|
| 207 |
|
| 208 |
-
#: gmw-widget.php:
|
| 209 |
msgid "Shortcode"
|
| 210 |
msgstr ""
|
| 211 |
|
| 212 |
-
#: gmw-widget.php:
|
| 213 |
msgid "Info & Support"
|
| 214 |
msgstr ""
|
| 215 |
|
| 216 |
-
#: gmw-widget.php:
|
| 217 |
msgid "Map Size"
|
| 218 |
msgstr ""
|
| 219 |
|
| 220 |
-
#: gmw-widget.php:
|
| 221 |
msgid "Map Type"
|
| 222 |
msgstr ""
|
| 223 |
|
| 224 |
-
#: gmw-widget.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 225 |
msgid "Pin Type"
|
| 226 |
msgstr ""
|
| 227 |
|
| 228 |
-
#: gmw-widget.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 229 |
msgid "Pin Color"
|
| 230 |
msgstr ""
|
| 231 |
|
| 232 |
-
#: gmw-widget.php:
|
| 233 |
msgid "Pin Size"
|
| 234 |
msgstr ""
|
| 235 |
|
| 236 |
-
#: gmw-widget.php:
|
| 237 |
-
msgid "Pin
|
| 238 |
msgstr ""
|
| 239 |
|
| 240 |
-
#: gmw-widget.php:
|
| 241 |
-
msgid "
|
| 242 |
msgstr ""
|
| 243 |
|
| 244 |
-
#: gmw-widget.php:
|
| 245 |
msgid "Link To"
|
| 246 |
msgstr ""
|
| 247 |
|
| 248 |
-
#: gmw-widget.php:
|
| 249 |
-
msgid "
|
| 250 |
msgstr ""
|
| 251 |
|
| 252 |
-
#: gmw-widget.php:
|
| 253 |
-
msgid "
|
| 254 |
msgstr ""
|
| 255 |
|
| 256 |
-
#: gmw-widget.php:
|
| 257 |
msgid "Text Above Map"
|
| 258 |
msgstr ""
|
| 259 |
|
| 260 |
-
#: gmw-widget.php:
|
| 261 |
msgid "Text Below Map"
|
| 262 |
msgstr ""
|
| 263 |
|
| 264 |
-
#: gmw-widget.php:
|
| 265 |
-
msgid "Lightbox
|
| 266 |
msgstr ""
|
| 267 |
|
| 268 |
-
#: gmw-widget.php:
|
| 269 |
-
msgid "
|
| 270 |
msgstr ""
|
| 271 |
|
| 272 |
-
#: gmw-widget.php:
|
| 273 |
-
msgid "
|
| 274 |
msgstr ""
|
| 275 |
|
| 276 |
-
#: gmw-widget.php:
|
| 277 |
-
msgid "
|
| 278 |
msgstr ""
|
| 279 |
|
| 280 |
-
#: gmw-widget.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 281 |
msgid "Header Text"
|
| 282 |
msgstr ""
|
| 283 |
|
| 284 |
-
#: gmw-widget.php:
|
| 285 |
msgid "Footer Text"
|
| 286 |
msgstr ""
|
| 287 |
|
| 288 |
-
#: gmw-widget.php:
|
| 289 |
msgid "Please save the widget so that the shortcode can be generated."
|
| 290 |
msgstr ""
|
| 291 |
|
| 292 |
-
#: gmw-widget.php:
|
| 293 |
msgid ""
|
| 294 |
"Use the above shortcode to display this Google Maps Widget instance in any "
|
| 295 |
"page or post. <br>Please note that your theme might style the widget in the "
|
| 296 |
-
"post as if it is placed in a sidebar. In that case use the <code>
|
| 297 |
"shortcode-widget</code> class to target the shortcode and make necessary "
|
| 298 |
"changes via CSS."
|
| 299 |
msgstr ""
|
| 300 |
|
| 301 |
-
#: gmw-widget.php:
|
|
|
|
| 302 |
msgid "Support"
|
| 303 |
msgstr ""
|
| 304 |
|
| 305 |
-
#: gmw-widget.php:
|
| 306 |
-
msgid "
|
| 307 |
msgstr ""
|
| 308 |
|
| 309 |
-
#: gmw-widget.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 310 |
msgid ""
|
| 311 |
-
"
|
| 312 |
-
"
|
| 313 |
-
"
|
| 314 |
-
"<i>activate by subscribing</i> features will be available soon!"
|
| 315 |
msgstr ""
|
| 316 |
|
| 317 |
-
#: gmw-widget.php:
|
| 318 |
-
msgid "
|
|
|
|
|
|
|
| 319 |
msgstr ""
|
| 320 |
|
| 321 |
-
#: gmw-widget.php:
|
| 322 |
msgid ""
|
| 323 |
-
"
|
| 324 |
-
"
|
| 325 |
msgstr ""
|
| 326 |
|
| 327 |
-
#: gmw-widget.php:
|
| 328 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 329 |
msgstr ""
|
| 330 |
|
| 331 |
-
#:
|
| 332 |
msgid ""
|
| 333 |
-
"
|
| 334 |
-
"
|
| 335 |
-
"
|
| 336 |
msgstr ""
|
| 337 |
|
| 338 |
-
#:
|
| 339 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 340 |
msgstr ""
|
| 341 |
|
| 342 |
-
#: google-maps-widget.php:
|
| 343 |
-
msgid "
|
| 344 |
msgstr ""
|
| 345 |
|
| 346 |
-
#: google-maps-widget.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 347 |
msgid "Widgets"
|
| 348 |
msgstr ""
|
| 349 |
|
| 350 |
-
#: google-maps-widget.php:
|
| 351 |
msgid "View Google Maps Widget documentation"
|
| 352 |
msgstr ""
|
| 353 |
|
| 354 |
-
#: google-maps-widget.php:
|
| 355 |
msgid "Documentation"
|
| 356 |
msgstr ""
|
| 357 |
|
| 358 |
-
#: google-maps-widget.php:
|
| 359 |
msgid "Problems? We are here to help!"
|
| 360 |
msgstr ""
|
| 361 |
|
| 362 |
-
#: google-maps-widget.php:
|
| 363 |
msgid "If you like it, please review the plugin"
|
| 364 |
msgstr ""
|
| 365 |
|
| 366 |
-
#: google-maps-widget.php:
|
| 367 |
msgid "Review the plugin"
|
| 368 |
msgstr ""
|
| 369 |
|
| 370 |
-
#: google-maps-widget.php:
|
| 371 |
-
msgid "
|
| 372 |
-
msgstr ""
|
| 373 |
-
|
| 374 |
-
#: google-maps-widget.php:115
|
| 375 |
-
msgid "Donate"
|
| 376 |
msgstr ""
|
| 377 |
|
| 378 |
-
#: google-maps-widget.php:
|
| 379 |
msgid ""
|
| 380 |
-
"Google Maps Widget <b>requires WordPress version 3.
|
| 381 |
"function properly. You are using WordPress version %s. Please <a href=\"%s"
|
| 382 |
"\">update it</a>."
|
| 383 |
msgstr ""
|
| 384 |
|
| 385 |
-
#: google-maps-widget.php:
|
| 386 |
msgid "Google Maps Widget shortcode is not active!"
|
| 387 |
msgstr ""
|
| 388 |
|
| 389 |
-
#: google-maps-widget.php:
|
| 390 |
msgid ""
|
| 391 |
-
" Shortcode <i>[
|
| 392 |
-
"deactivate that theme or plugin
|
|
|
|
| 393 |
msgstr ""
|
| 394 |
|
| 395 |
-
#: google-maps-widget.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 396 |
msgid ""
|
| 397 |
-
"<b>Google Maps Widget</b> has
|
| 398 |
-
"
|
| 399 |
msgstr ""
|
| 400 |
|
| 401 |
-
#: google-maps-widget.php:
|
| 402 |
-
msgid "
|
| 403 |
msgstr ""
|
| 404 |
|
| 405 |
-
#: google-maps-widget.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 406 |
msgid "Dismiss notice"
|
| 407 |
msgstr ""
|
| 408 |
|
| 409 |
-
#: google-maps-widget.php:
|
| 410 |
-
msgid "
|
| 411 |
msgstr ""
|
| 412 |
|
| 413 |
-
#: google-maps-widget.php:
|
| 414 |
-
msgid ""
|
| 415 |
-
"You are already subscribed to our list. One activation code is valid for all "
|
| 416 |
-
"sites so just use the code you already have."
|
| 417 |
msgstr ""
|
| 418 |
|
| 419 |
-
#: google-maps-widget.php:
|
| 420 |
-
msgid "
|
|
|
|
| 421 |
msgstr ""
|
| 422 |
|
| 423 |
-
#: google-maps-widget.php:
|
| 424 |
-
|
|
|
|
| 425 |
msgstr ""
|
| 426 |
|
| 427 |
-
#: google-maps-widget.php:
|
| 428 |
-
msgid "
|
| 429 |
msgstr ""
|
| 430 |
|
| 431 |
-
#: google-maps-widget.php:
|
| 432 |
msgid ""
|
| 433 |
-
"
|
| 434 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 435 |
msgstr ""
|
| 436 |
|
| 437 |
-
#: google-maps-widget.php:
|
| 438 |
-
msgid "
|
| 439 |
msgstr ""
|
| 440 |
|
| 441 |
#. Plugin URI of the plugin/theme
|
|
@@ -445,8 +1048,8 @@ msgstr ""
|
|
| 445 |
#. Description of the plugin/theme
|
| 446 |
msgid ""
|
| 447 |
"Display a single-image super-fast loading Google map in a widget. A larger, "
|
| 448 |
-
"full featured map is available
|
| 449 |
-
"support and numerous options."
|
| 450 |
msgstr ""
|
| 451 |
|
| 452 |
#. Author of the plugin/theme
|
| 1 |
+
# Copyright (C) 2016 Google Maps Widget
|
| 2 |
# This file is distributed under the same license as the Google Maps Widget package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
+
"Project-Id-Version: Google Maps Widget 3.04\n"
|
| 6 |
+
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/google-maps-"
|
| 7 |
"widget\n"
|
| 8 |
+
"POT-Creation-Date: 2016-02-17 16:09:47+00:00\n"
|
| 9 |
"MIME-Version: 1.0\n"
|
| 10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 11 |
"Content-Transfer-Encoding: 8bit\n"
|
| 12 |
+
"PO-Revision-Date: 2016-MO-DA HO:MI+ZONE\n"
|
| 13 |
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
| 14 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
| 15 |
|
| 16 |
+
#: gmw-export-import.php:128
|
| 17 |
+
msgid "Sidebar does not exist in theme (using Inactive)"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
msgstr ""
|
| 19 |
|
| 20 |
+
#: gmw-export-import.php:157
|
| 21 |
+
msgid "Widget already exists"
|
| 22 |
msgstr ""
|
| 23 |
|
| 24 |
+
#: gmw-export-import.php:208
|
| 25 |
+
msgid "No Title"
|
| 26 |
msgstr ""
|
| 27 |
|
| 28 |
+
#: gmw-tracking.php:81
|
| 29 |
msgid ""
|
| 30 |
+
"Please help us improve <strong>Google Maps Widget</strong> by allowing "
|
| 31 |
+
"tracking of anonymous usage data. Absolutely <strong>no sensitive data is "
|
| 32 |
+
"tracked</strong> (<a href=\"http://www.googlemapswidget.com/plugin-tracking-"
|
| 33 |
+
"info/\" target=\"_blank\">complete disclosure & details of our tracking "
|
| 34 |
+
"policy</a>)."
|
| 35 |
+
msgstr ""
|
| 36 |
+
|
| 37 |
+
#: gmw-tracking.php:82
|
| 38 |
+
msgid "Allow"
|
| 39 |
msgstr ""
|
| 40 |
|
| 41 |
+
#: gmw-tracking.php:83
|
| 42 |
+
msgid "Do not allow tracking"
|
| 43 |
+
msgstr ""
|
| 44 |
+
|
| 45 |
+
#. #-#-#-#-# plugin.pot (Google Maps Widget 3.04) #-#-#-#-#
|
| 46 |
#. Plugin Name of the plugin/theme
|
| 47 |
+
#: gmw-widget.php:57 google-maps-widget.php:488 google-maps-widget.php:710
|
| 48 |
+
#: google-maps-widget.php:921
|
| 49 |
msgid "Google Maps Widget"
|
| 50 |
msgstr ""
|
| 51 |
|
| 52 |
+
#: gmw-widget.php:62
|
| 53 |
+
msgid ""
|
| 54 |
+
"Displays a map image thumbnail with a larger map available in a lightbox."
|
| 55 |
+
msgstr ""
|
| 56 |
+
|
| 57 |
+
#: gmw-widget.php:66
|
| 58 |
msgid "Map"
|
| 59 |
msgstr ""
|
| 60 |
|
| 61 |
+
#: gmw-widget.php:67
|
| 62 |
msgid "New York, USA"
|
| 63 |
msgstr ""
|
| 64 |
|
| 65 |
+
#: gmw-widget.php:81 gmw-widget.php:86
|
| 66 |
msgid "Road (default)"
|
| 67 |
msgstr ""
|
| 68 |
|
| 69 |
+
#: gmw-widget.php:82 gmw-widget.php:87
|
| 70 |
msgid "Satellite"
|
| 71 |
msgstr ""
|
| 72 |
|
| 73 |
+
#: gmw-widget.php:83
|
| 74 |
msgid "Terrain"
|
| 75 |
msgstr ""
|
| 76 |
|
| 77 |
+
#: gmw-widget.php:84
|
| 78 |
msgid "Hybrid"
|
| 79 |
msgstr ""
|
| 80 |
|
| 81 |
+
#: gmw-widget.php:89
|
| 82 |
+
msgid "Place (default)"
|
| 83 |
+
msgstr ""
|
| 84 |
+
|
| 85 |
+
#: gmw-widget.php:91
|
| 86 |
+
msgid "Tiny"
|
| 87 |
+
msgstr ""
|
| 88 |
+
|
| 89 |
+
#: gmw-widget.php:92
|
| 90 |
+
msgid "Small"
|
| 91 |
+
msgstr ""
|
| 92 |
+
|
| 93 |
+
#: gmw-widget.php:93
|
| 94 |
+
msgid "Medium"
|
| 95 |
+
msgstr ""
|
| 96 |
+
|
| 97 |
+
#: gmw-widget.php:94
|
| 98 |
+
msgid "Large (default)"
|
| 99 |
+
msgstr ""
|
| 100 |
+
|
| 101 |
+
#: gmw-widget.php:96
|
| 102 |
msgid "Black"
|
| 103 |
msgstr ""
|
| 104 |
|
| 105 |
+
#: gmw-widget.php:97
|
| 106 |
msgid "Brown"
|
| 107 |
msgstr ""
|
| 108 |
|
| 109 |
+
#: gmw-widget.php:98
|
| 110 |
msgid "Green"
|
| 111 |
msgstr ""
|
| 112 |
|
| 113 |
+
#: gmw-widget.php:99
|
| 114 |
msgid "Purple"
|
| 115 |
msgstr ""
|
| 116 |
|
| 117 |
+
#: gmw-widget.php:100
|
| 118 |
msgid "Yellow"
|
| 119 |
msgstr ""
|
| 120 |
|
| 121 |
+
#: gmw-widget.php:101 gmw-widget.php:149 gmw-widget.php:235
|
| 122 |
msgid "Blue"
|
| 123 |
msgstr ""
|
| 124 |
|
| 125 |
+
#: gmw-widget.php:102 gmw-widget.php:152
|
| 126 |
msgid "Gray"
|
| 127 |
msgstr ""
|
| 128 |
|
| 129 |
+
#: gmw-widget.php:103
|
| 130 |
msgid "Orange"
|
| 131 |
msgstr ""
|
| 132 |
|
| 133 |
+
#: gmw-widget.php:104
|
| 134 |
msgid "Red (default)"
|
| 135 |
msgstr ""
|
| 136 |
|
| 137 |
+
#: gmw-widget.php:105
|
| 138 |
msgid "White"
|
| 139 |
msgstr ""
|
| 140 |
|
| 141 |
+
#: gmw-widget.php:107
|
| 142 |
+
msgid "A (default)"
|
| 143 |
msgstr ""
|
| 144 |
|
| 145 |
+
#: gmw-widget.php:109
|
| 146 |
+
msgid "0 - entire world"
|
| 147 |
msgstr ""
|
| 148 |
|
| 149 |
+
#: gmw-widget.php:119
|
| 150 |
+
msgid "Custom size (default)"
|
| 151 |
msgstr ""
|
| 152 |
|
| 153 |
+
#: gmw-widget.php:121
|
| 154 |
+
msgid "Light (default)"
|
| 155 |
msgstr ""
|
| 156 |
|
| 157 |
+
#: gmw-widget.php:122
|
| 158 |
+
msgid "Dark"
|
| 159 |
msgstr ""
|
| 160 |
|
| 161 |
+
#: gmw-widget.php:124
|
| 162 |
+
msgid "Predefined by Google (default)"
|
| 163 |
msgstr ""
|
| 164 |
|
| 165 |
+
#: gmw-widget.php:125
|
| 166 |
+
msgid "Custom image"
|
| 167 |
msgstr ""
|
| 168 |
|
| 169 |
+
#: gmw-widget.php:127 gmw-widget.php:167 gmw-widget.php:276
|
| 170 |
+
msgid "Interactive map in lightbox (default)"
|
| 171 |
msgstr ""
|
| 172 |
|
| 173 |
+
#: gmw-widget.php:128 gmw-widget.php:170 gmw-widget.php:279 gmw-widget.php:394
|
| 174 |
+
msgid "Custom URL"
|
| 175 |
msgstr ""
|
| 176 |
|
| 177 |
+
#: gmw-widget.php:129 gmw-widget.php:172 gmw-widget.php:281
|
| 178 |
+
msgid "Disable link"
|
| 179 |
msgstr ""
|
| 180 |
|
| 181 |
+
#: gmw-widget.php:131
|
| 182 |
+
msgid "Default"
|
| 183 |
msgstr ""
|
| 184 |
|
| 185 |
+
#: gmw-widget.php:132
|
| 186 |
+
msgid "Refreshed by Google"
|
| 187 |
msgstr ""
|
| 188 |
|
| 189 |
+
#: gmw-widget.php:134
|
| 190 |
+
msgid "PNG 8-bit (default)"
|
| 191 |
msgstr ""
|
| 192 |
|
| 193 |
+
#: gmw-widget.php:140
|
| 194 |
+
msgid "Show map title"
|
| 195 |
msgstr ""
|
| 196 |
|
| 197 |
+
#: gmw-widget.php:141
|
| 198 |
+
msgid "Close on overlay click"
|
| 199 |
msgstr ""
|
| 200 |
|
| 201 |
+
#: gmw-widget.php:143
|
| 202 |
+
msgid "Detect automatically"
|
| 203 |
msgstr ""
|
| 204 |
|
| 205 |
+
#: gmw-widget.php:144
|
| 206 |
+
msgid "Metric"
|
| 207 |
msgstr ""
|
| 208 |
|
| 209 |
+
#: gmw-widget.php:145
|
| 210 |
+
msgid "Imperial"
|
| 211 |
msgstr ""
|
| 212 |
|
| 213 |
+
#: gmw-widget.php:148
|
| 214 |
msgid "Apple"
|
| 215 |
msgstr ""
|
| 216 |
|
| 217 |
+
#: gmw-widget.php:150
|
| 218 |
+
msgid "Bright"
|
| 219 |
+
msgstr ""
|
| 220 |
+
|
| 221 |
+
#: gmw-widget.php:151
|
| 222 |
+
msgid "Gowalla"
|
| 223 |
+
msgstr ""
|
| 224 |
+
|
| 225 |
+
#: gmw-widget.php:153
|
| 226 |
+
msgid "Gray #2"
|
| 227 |
+
msgstr ""
|
| 228 |
+
|
| 229 |
+
#: gmw-widget.php:154
|
| 230 |
+
msgid "Light"
|
| 231 |
+
msgstr ""
|
| 232 |
+
|
| 233 |
+
#: gmw-widget.php:155
|
| 234 |
+
msgid "Mapbox"
|
| 235 |
+
msgstr ""
|
| 236 |
+
|
| 237 |
+
#: gmw-widget.php:156
|
| 238 |
+
msgid "Midnight"
|
| 239 |
+
msgstr ""
|
| 240 |
+
|
| 241 |
+
#: gmw-widget.php:157
|
| 242 |
+
msgid "Pale"
|
| 243 |
+
msgstr ""
|
| 244 |
+
|
| 245 |
+
#: gmw-widget.php:158
|
| 246 |
msgid "Paper"
|
| 247 |
msgstr ""
|
| 248 |
|
| 249 |
+
#: gmw-widget.php:160
|
| 250 |
+
msgid "GMW pins library"
|
| 251 |
+
msgstr ""
|
| 252 |
+
|
| 253 |
+
#: gmw-widget.php:162
|
| 254 |
+
msgid "PNG 32-bit"
|
| 255 |
+
msgstr ""
|
| 256 |
+
|
| 257 |
+
#: gmw-widget.php:163
|
| 258 |
+
msgid "GIF"
|
| 259 |
+
msgstr ""
|
| 260 |
+
|
| 261 |
+
#: gmw-widget.php:164
|
| 262 |
+
msgid "JPEG"
|
| 263 |
+
msgstr ""
|
| 264 |
+
|
| 265 |
+
#: gmw-widget.php:165
|
| 266 |
+
msgid "Non-progressive JPEG"
|
| 267 |
+
msgstr ""
|
| 268 |
+
|
| 269 |
+
#: gmw-widget.php:168 gmw-widget.php:277
|
| 270 |
+
msgid "Replace thumb map with an interactive map"
|
| 271 |
+
msgstr ""
|
| 272 |
+
|
| 273 |
+
#: gmw-widget.php:169 gmw-widget.php:278
|
| 274 |
+
msgid "Interactive map in a new window"
|
| 275 |
+
msgstr ""
|
| 276 |
+
|
| 277 |
+
#: gmw-widget.php:171 gmw-widget.php:280
|
| 278 |
+
msgid "Custom URL in a new window"
|
| 279 |
+
msgstr ""
|
| 280 |
+
|
| 281 |
+
#: gmw-widget.php:174
|
| 282 |
+
msgid "Automatic (based on user's browser settings)"
|
| 283 |
+
msgstr ""
|
| 284 |
+
|
| 285 |
+
#: gmw-widget.php:175
|
| 286 |
+
msgid "Arabic"
|
| 287 |
+
msgstr ""
|
| 288 |
+
|
| 289 |
+
#: gmw-widget.php:176
|
| 290 |
+
msgid "Basque"
|
| 291 |
+
msgstr ""
|
| 292 |
+
|
| 293 |
+
#: gmw-widget.php:177
|
| 294 |
+
msgid "Bengali"
|
| 295 |
+
msgstr ""
|
| 296 |
+
|
| 297 |
+
#: gmw-widget.php:178
|
| 298 |
+
msgid "Bulgarian"
|
| 299 |
+
msgstr ""
|
| 300 |
+
|
| 301 |
+
#: gmw-widget.php:179
|
| 302 |
+
msgid "Catalan"
|
| 303 |
+
msgstr ""
|
| 304 |
+
|
| 305 |
+
#: gmw-widget.php:180
|
| 306 |
+
msgid "Chinese (Simplified)"
|
| 307 |
+
msgstr ""
|
| 308 |
+
|
| 309 |
+
#: gmw-widget.php:181
|
| 310 |
+
msgid "Chinese (Traditional)"
|
| 311 |
+
msgstr ""
|
| 312 |
+
|
| 313 |
+
#: gmw-widget.php:182
|
| 314 |
+
msgid "Croatian"
|
| 315 |
+
msgstr ""
|
| 316 |
+
|
| 317 |
+
#: gmw-widget.php:183
|
| 318 |
+
msgid "Czech"
|
| 319 |
+
msgstr ""
|
| 320 |
+
|
| 321 |
+
#: gmw-widget.php:184
|
| 322 |
+
msgid "Danish"
|
| 323 |
+
msgstr ""
|
| 324 |
+
|
| 325 |
+
#: gmw-widget.php:185
|
| 326 |
+
msgid "Dutch"
|
| 327 |
+
msgstr ""
|
| 328 |
+
|
| 329 |
+
#: gmw-widget.php:186
|
| 330 |
+
msgid "English (Australian)"
|
| 331 |
+
msgstr ""
|
| 332 |
+
|
| 333 |
+
#: gmw-widget.php:187
|
| 334 |
+
msgid "English (Great Britain)"
|
| 335 |
+
msgstr ""
|
| 336 |
+
|
| 337 |
+
#: gmw-widget.php:188
|
| 338 |
+
msgid "Farsi"
|
| 339 |
+
msgstr ""
|
| 340 |
+
|
| 341 |
+
#: gmw-widget.php:189
|
| 342 |
+
msgid "Filipino"
|
| 343 |
+
msgstr ""
|
| 344 |
+
|
| 345 |
+
#: gmw-widget.php:190
|
| 346 |
+
msgid "Finnish"
|
| 347 |
+
msgstr ""
|
| 348 |
+
|
| 349 |
+
#: gmw-widget.php:191
|
| 350 |
+
msgid "French"
|
| 351 |
+
msgstr ""
|
| 352 |
+
|
| 353 |
+
#: gmw-widget.php:192
|
| 354 |
+
msgid "Galician"
|
| 355 |
+
msgstr ""
|
| 356 |
+
|
| 357 |
+
#: gmw-widget.php:193
|
| 358 |
+
msgid "German"
|
| 359 |
+
msgstr ""
|
| 360 |
+
|
| 361 |
+
#: gmw-widget.php:194
|
| 362 |
+
msgid "Greek"
|
| 363 |
+
msgstr ""
|
| 364 |
+
|
| 365 |
+
#: gmw-widget.php:195
|
| 366 |
+
msgid "Gujarati"
|
| 367 |
+
msgstr ""
|
| 368 |
+
|
| 369 |
+
#: gmw-widget.php:196
|
| 370 |
+
msgid "Hebrew"
|
| 371 |
+
msgstr ""
|
| 372 |
+
|
| 373 |
+
#: gmw-widget.php:197
|
| 374 |
+
msgid "Hindi"
|
| 375 |
+
msgstr ""
|
| 376 |
+
|
| 377 |
+
#: gmw-widget.php:198
|
| 378 |
+
msgid "Hungarian"
|
| 379 |
+
msgstr ""
|
| 380 |
+
|
| 381 |
+
#: gmw-widget.php:199
|
| 382 |
+
msgid "Indonesian"
|
| 383 |
+
msgstr ""
|
| 384 |
+
|
| 385 |
+
#: gmw-widget.php:200
|
| 386 |
+
msgid "Italian"
|
| 387 |
+
msgstr ""
|
| 388 |
+
|
| 389 |
+
#: gmw-widget.php:201
|
| 390 |
+
msgid "Japanese"
|
| 391 |
+
msgstr ""
|
| 392 |
+
|
| 393 |
+
#: gmw-widget.php:202
|
| 394 |
+
msgid "Kannada"
|
| 395 |
+
msgstr ""
|
| 396 |
+
|
| 397 |
+
#: gmw-widget.php:203
|
| 398 |
+
msgid "Korean"
|
| 399 |
+
msgstr ""
|
| 400 |
+
|
| 401 |
+
#: gmw-widget.php:204
|
| 402 |
+
msgid "Latvian"
|
| 403 |
+
msgstr ""
|
| 404 |
+
|
| 405 |
+
#: gmw-widget.php:205
|
| 406 |
+
msgid "Lithuanian"
|
| 407 |
+
msgstr ""
|
| 408 |
+
|
| 409 |
+
#: gmw-widget.php:206
|
| 410 |
+
msgid "Malayalam"
|
| 411 |
+
msgstr ""
|
| 412 |
+
|
| 413 |
+
#: gmw-widget.php:207
|
| 414 |
+
msgid "Marathi"
|
| 415 |
+
msgstr ""
|
| 416 |
+
|
| 417 |
+
#: gmw-widget.php:208
|
| 418 |
+
msgid "Norwegian"
|
| 419 |
+
msgstr ""
|
| 420 |
+
|
| 421 |
+
#: gmw-widget.php:209
|
| 422 |
+
msgid "Polish"
|
| 423 |
+
msgstr ""
|
| 424 |
+
|
| 425 |
+
#: gmw-widget.php:210
|
| 426 |
+
msgid "Portuguese"
|
| 427 |
+
msgstr ""
|
| 428 |
+
|
| 429 |
+
#: gmw-widget.php:211
|
| 430 |
+
msgid "Portuguese (Brazil)"
|
| 431 |
+
msgstr ""
|
| 432 |
+
|
| 433 |
+
#: gmw-widget.php:212
|
| 434 |
+
msgid "Portuguese (Portugal)"
|
| 435 |
+
msgstr ""
|
| 436 |
+
|
| 437 |
+
#: gmw-widget.php:213
|
| 438 |
+
msgid "Romanian"
|
| 439 |
+
msgstr ""
|
| 440 |
+
|
| 441 |
+
#: gmw-widget.php:214
|
| 442 |
+
msgid "Russian"
|
| 443 |
+
msgstr ""
|
| 444 |
+
|
| 445 |
+
#: gmw-widget.php:215
|
| 446 |
+
msgid "Serbian"
|
| 447 |
+
msgstr ""
|
| 448 |
+
|
| 449 |
+
#: gmw-widget.php:216
|
| 450 |
+
msgid "Slovak"
|
| 451 |
+
msgstr ""
|
| 452 |
+
|
| 453 |
+
#: gmw-widget.php:217
|
| 454 |
+
msgid "Slovenian"
|
| 455 |
+
msgstr ""
|
| 456 |
+
|
| 457 |
+
#: gmw-widget.php:218
|
| 458 |
+
msgid "Spanish"
|
| 459 |
+
msgstr ""
|
| 460 |
+
|
| 461 |
+
#: gmw-widget.php:219
|
| 462 |
+
msgid "Swedish"
|
| 463 |
+
msgstr ""
|
| 464 |
+
|
| 465 |
+
#: gmw-widget.php:220
|
| 466 |
+
msgid "Tagalog"
|
| 467 |
+
msgstr ""
|
| 468 |
+
|
| 469 |
+
#: gmw-widget.php:221
|
| 470 |
+
msgid "Tamil"
|
| 471 |
+
msgstr ""
|
| 472 |
+
|
| 473 |
+
#: gmw-widget.php:222
|
| 474 |
+
msgid "Telugu"
|
| 475 |
+
msgstr ""
|
| 476 |
+
|
| 477 |
+
#: gmw-widget.php:223
|
| 478 |
+
msgid "Thai"
|
| 479 |
+
msgstr ""
|
| 480 |
+
|
| 481 |
+
#: gmw-widget.php:224
|
| 482 |
+
msgid "Turkish"
|
| 483 |
+
msgstr ""
|
| 484 |
+
|
| 485 |
+
#: gmw-widget.php:225
|
| 486 |
+
msgid "Ukrainian"
|
| 487 |
+
msgstr ""
|
| 488 |
+
|
| 489 |
+
#: gmw-widget.php:226
|
| 490 |
+
msgid "Vietnamese"
|
| 491 |
+
msgstr ""
|
| 492 |
+
|
| 493 |
+
#: gmw-widget.php:229
|
| 494 |
+
msgid "Dark rim"
|
| 495 |
+
msgstr ""
|
| 496 |
+
|
| 497 |
+
#: gmw-widget.php:230
|
| 498 |
+
msgid "Fancy"
|
| 499 |
+
msgstr ""
|
| 500 |
+
|
| 501 |
+
#: gmw-widget.php:231
|
| 502 |
+
msgid "Gray squared"
|
| 503 |
+
msgstr ""
|
| 504 |
+
|
| 505 |
+
#: gmw-widget.php:232
|
| 506 |
+
msgid "Minimalistic"
|
| 507 |
+
msgstr ""
|
| 508 |
+
|
| 509 |
+
#: gmw-widget.php:233
|
| 510 |
+
msgid "Minimalistic #2"
|
| 511 |
+
msgstr ""
|
| 512 |
+
|
| 513 |
+
#: gmw-widget.php:234
|
| 514 |
+
msgid "Simple"
|
| 515 |
+
msgstr ""
|
| 516 |
+
|
| 517 |
+
#: gmw-widget.php:236
|
| 518 |
+
msgid "Polaroid"
|
| 519 |
+
msgstr ""
|
| 520 |
+
|
| 521 |
+
#: gmw-widget.php:237
|
| 522 |
msgid "Rounded"
|
| 523 |
msgstr ""
|
| 524 |
|
| 525 |
+
#: gmw-widget.php:238
|
| 526 |
+
msgid "Tablet"
|
| 527 |
+
msgstr ""
|
| 528 |
+
|
| 529 |
+
#: gmw-widget.php:239
|
| 530 |
+
msgid "Gears"
|
| 531 |
+
msgstr ""
|
| 532 |
+
|
| 533 |
+
#: gmw-widget.php:240
|
| 534 |
+
msgid "Painting"
|
| 535 |
+
msgstr ""
|
| 536 |
+
|
| 537 |
+
#: gmw-widget.php:241
|
| 538 |
+
msgid "Rounded white"
|
| 539 |
+
msgstr ""
|
| 540 |
+
|
| 541 |
+
#: gmw-widget.php:242
|
| 542 |
+
msgid "Shadow"
|
| 543 |
+
msgstr ""
|
| 544 |
+
|
| 545 |
+
#: gmw-widget.php:243
|
| 546 |
+
msgid "Cartoonish"
|
| 547 |
+
msgstr ""
|
| 548 |
+
|
| 549 |
+
#: gmw-widget.php:244
|
| 550 |
+
msgid "Squared black"
|
| 551 |
+
msgstr ""
|
| 552 |
+
|
| 553 |
+
#: gmw-widget.php:245
|
| 554 |
+
msgid "Squared white"
|
| 555 |
+
msgstr ""
|
| 556 |
+
|
| 557 |
+
#: gmw-widget.php:246
|
| 558 |
+
msgid "Vintage"
|
| 559 |
+
msgstr ""
|
| 560 |
+
|
| 561 |
+
#: gmw-widget.php:247
|
| 562 |
+
msgid "Wood"
|
| 563 |
+
msgstr ""
|
| 564 |
+
|
| 565 |
+
#: gmw-widget.php:249 gmw-widget.php:285
|
| 566 |
+
msgid "Directions"
|
| 567 |
+
msgstr ""
|
| 568 |
+
|
| 569 |
+
#: gmw-widget.php:250 gmw-widget.php:286
|
| 570 |
+
msgid "Search"
|
| 571 |
+
msgstr ""
|
| 572 |
+
|
| 573 |
+
#: gmw-widget.php:251 gmw-widget.php:287
|
| 574 |
+
msgid "View (clean map, no markers)"
|
| 575 |
+
msgstr ""
|
| 576 |
+
|
| 577 |
+
#: gmw-widget.php:252 gmw-widget.php:288
|
| 578 |
+
msgid "Street View"
|
| 579 |
+
msgstr ""
|
| 580 |
+
|
| 581 |
+
#: gmw-widget.php:254
|
| 582 |
+
msgid "Dot"
|
| 583 |
+
msgstr ""
|
| 584 |
+
|
| 585 |
+
#: gmw-widget.php:262 gmw-widget.php:292
|
| 586 |
+
msgid "Fullscreen"
|
| 587 |
+
msgstr ""
|
| 588 |
+
|
| 589 |
+
#: gmw-widget.php:264 gmw-widget.php:295
|
| 590 |
+
msgid "Close on Esc key"
|
| 591 |
+
msgstr ""
|
| 592 |
+
|
| 593 |
+
#: gmw-widget.php:265 gmw-widget.php:294
|
| 594 |
+
msgid "Show close button"
|
| 595 |
+
msgstr ""
|
| 596 |
+
|
| 597 |
+
#: gmw-widget.php:267
|
| 598 |
+
msgid "Add 11 additional color schemes"
|
| 599 |
+
msgstr ""
|
| 600 |
+
|
| 601 |
+
#: gmw-widget.php:269
|
| 602 |
+
msgid "GMW pins library (700+ pins)"
|
| 603 |
+
msgstr ""
|
| 604 |
+
|
| 605 |
+
#: gmw-widget.php:271
|
| 606 |
+
msgid "Add 4 more image formats"
|
| 607 |
+
msgstr ""
|
| 608 |
+
|
| 609 |
+
#: gmw-widget.php:273
|
| 610 |
+
msgid "Add auto-detection and 50 more languages"
|
| 611 |
+
msgstr ""
|
| 612 |
+
|
| 613 |
+
#: gmw-widget.php:283
|
| 614 |
+
msgid "Add 17 more skins"
|
| 615 |
+
msgstr ""
|
| 616 |
+
|
| 617 |
+
#: gmw-widget.php:290
|
| 618 |
+
msgid "Choose a custom label by going PRO"
|
| 619 |
+
msgstr ""
|
| 620 |
+
|
| 621 |
+
#: gmw-widget.php:297
|
| 622 |
+
msgid "PRO offers unlimited color choices"
|
| 623 |
+
msgstr ""
|
| 624 |
+
|
| 625 |
+
#: gmw-widget.php:308
|
| 626 |
msgid "Title"
|
| 627 |
msgstr ""
|
| 628 |
|
| 629 |
+
#: gmw-widget.php:309
|
| 630 |
+
msgid "Map title"
|
| 631 |
+
msgstr ""
|
| 632 |
+
|
| 633 |
+
#: gmw-widget.php:311
|
| 634 |
msgid "Address"
|
| 635 |
msgstr ""
|
| 636 |
|
| 637 |
+
#: gmw-widget.php:313
|
| 638 |
+
msgid "Address / location to show"
|
| 639 |
+
msgstr ""
|
| 640 |
+
|
| 641 |
+
#: gmw-widget.php:324
|
| 642 |
+
msgid "Thumbnail Map"
|
| 643 |
msgstr ""
|
| 644 |
|
| 645 |
+
#: gmw-widget.php:325
|
| 646 |
+
msgid "Interactive Map"
|
| 647 |
msgstr ""
|
| 648 |
|
| 649 |
+
#: gmw-widget.php:326
|
| 650 |
msgid "Shortcode"
|
| 651 |
msgstr ""
|
| 652 |
|
| 653 |
+
#: gmw-widget.php:327
|
| 654 |
msgid "Info & Support"
|
| 655 |
msgstr ""
|
| 656 |
|
| 657 |
+
#: gmw-widget.php:332
|
| 658 |
msgid "Map Size"
|
| 659 |
msgstr ""
|
| 660 |
|
| 661 |
+
#: gmw-widget.php:337 gmw-widget.php:460
|
| 662 |
msgid "Map Type"
|
| 663 |
msgstr ""
|
| 664 |
|
| 665 |
+
#: gmw-widget.php:342
|
| 666 |
+
msgid "Color Scheme"
|
| 667 |
+
msgstr ""
|
| 668 |
+
|
| 669 |
+
#: gmw-widget.php:347 gmw-widget.php:465
|
| 670 |
+
msgid "Zoom Level"
|
| 671 |
+
msgstr ""
|
| 672 |
+
|
| 673 |
+
#: gmw-widget.php:352
|
| 674 |
msgid "Pin Type"
|
| 675 |
msgstr ""
|
| 676 |
|
| 677 |
+
#: gmw-widget.php:359
|
| 678 |
+
msgid "Pin Image"
|
| 679 |
+
msgstr ""
|
| 680 |
+
|
| 681 |
+
#: gmw-widget.php:365 gmw-widget.php:368
|
| 682 |
msgid "Pin Color"
|
| 683 |
msgstr ""
|
| 684 |
|
| 685 |
+
#: gmw-widget.php:375
|
| 686 |
msgid "Pin Size"
|
| 687 |
msgstr ""
|
| 688 |
|
| 689 |
+
#: gmw-widget.php:380
|
| 690 |
+
msgid "Pin Label"
|
| 691 |
msgstr ""
|
| 692 |
|
| 693 |
+
#: gmw-widget.php:385
|
| 694 |
+
msgid "Pin Image URL"
|
| 695 |
msgstr ""
|
| 696 |
|
| 697 |
+
#: gmw-widget.php:389
|
| 698 |
msgid "Link To"
|
| 699 |
msgstr ""
|
| 700 |
|
| 701 |
+
#: gmw-widget.php:398
|
| 702 |
+
msgid "Image Format"
|
| 703 |
msgstr ""
|
| 704 |
|
| 705 |
+
#: gmw-widget.php:403 gmw-widget.php:481
|
| 706 |
+
msgid "Map Language"
|
| 707 |
msgstr ""
|
| 708 |
|
| 709 |
+
#: gmw-widget.php:408
|
| 710 |
msgid "Text Above Map"
|
| 711 |
msgstr ""
|
| 712 |
|
| 713 |
+
#: gmw-widget.php:412
|
| 714 |
msgid "Text Below Map"
|
| 715 |
msgstr ""
|
| 716 |
|
| 717 |
+
#: gmw-widget.php:421
|
| 718 |
+
msgid "Lightbox Size"
|
| 719 |
msgstr ""
|
| 720 |
|
| 721 |
+
#: gmw-widget.php:429
|
| 722 |
+
msgid "Map Mode"
|
| 723 |
msgstr ""
|
| 724 |
|
| 725 |
+
#: gmw-widget.php:438
|
| 726 |
+
msgid "Search Query"
|
| 727 |
msgstr ""
|
| 728 |
|
| 729 |
+
#: gmw-widget.php:439
|
| 730 |
+
msgid "Pizza"
|
| 731 |
msgstr ""
|
| 732 |
|
| 733 |
+
#: gmw-widget.php:443
|
| 734 |
+
msgid "Start Address"
|
| 735 |
+
msgstr ""
|
| 736 |
+
|
| 737 |
+
#: gmw-widget.php:450
|
| 738 |
+
msgid "Distance Units"
|
| 739 |
+
msgstr ""
|
| 740 |
+
|
| 741 |
+
#: gmw-widget.php:455
|
| 742 |
+
msgid "Streetview"
|
| 743 |
+
msgstr ""
|
| 744 |
+
|
| 745 |
+
#: gmw-widget.php:470
|
| 746 |
+
msgid "Lightbox Skin"
|
| 747 |
+
msgstr ""
|
| 748 |
+
|
| 749 |
+
#: gmw-widget.php:475
|
| 750 |
+
msgid "Lightbox Features"
|
| 751 |
+
msgstr ""
|
| 752 |
+
|
| 753 |
+
#: gmw-widget.php:477
|
| 754 |
+
msgid "Click to choose features"
|
| 755 |
+
msgstr ""
|
| 756 |
+
|
| 757 |
+
#: gmw-widget.php:486
|
| 758 |
msgid "Header Text"
|
| 759 |
msgstr ""
|
| 760 |
|
| 761 |
+
#: gmw-widget.php:490
|
| 762 |
msgid "Footer Text"
|
| 763 |
msgstr ""
|
| 764 |
|
| 765 |
+
#: gmw-widget.php:503
|
| 766 |
msgid "Please save the widget so that the shortcode can be generated."
|
| 767 |
msgstr ""
|
| 768 |
|
| 769 |
+
#: gmw-widget.php:506
|
| 770 |
msgid ""
|
| 771 |
"Use the above shortcode to display this Google Maps Widget instance in any "
|
| 772 |
"page or post. <br>Please note that your theme might style the widget in the "
|
| 773 |
+
"post as if it is placed in a sidebar. In that case use the <code>div.gmw-"
|
| 774 |
"shortcode-widget</code> class to target the shortcode and make necessary "
|
| 775 |
"changes via CSS."
|
| 776 |
msgstr ""
|
| 777 |
|
| 778 |
+
#: gmw-widget.php:517 gmw-widget.php:525 google-maps-widget.php:279
|
| 779 |
+
#: google-maps-widget.php:281
|
| 780 |
msgid "Support"
|
| 781 |
msgstr ""
|
| 782 |
|
| 783 |
+
#: gmw-widget.php:521 google-maps-widget.php:930
|
| 784 |
+
msgid "License"
|
| 785 |
msgstr ""
|
| 786 |
|
| 787 |
+
#: gmw-widget.php:529
|
| 788 |
+
msgid "Activate <span class=\"gmw-pro-red\">PRO</span> features"
|
| 789 |
+
msgstr ""
|
| 790 |
+
|
| 791 |
+
#: gmw-widget.php:534
|
| 792 |
+
msgid "Rate the plugin & spread the word"
|
| 793 |
+
msgstr ""
|
| 794 |
+
|
| 795 |
+
#: gmw-widget.php:541
|
| 796 |
msgid ""
|
| 797 |
+
"Upgrade to Google Maps Widget <span class=\"gmw-pro-red\">PRO</span> to get "
|
| 798 |
+
"more than 50 extra options available immeditely. <a class=\"open_promo_dialog"
|
| 799 |
+
"\" href=\"#\">Upgrade now</a>."
|
|
|
|
| 800 |
msgstr ""
|
| 801 |
|
| 802 |
+
#: gmw-widget.php:543
|
| 803 |
+
msgid ""
|
| 804 |
+
"Additional options are available in <a href=\"%s\" title=\"Settings"
|
| 805 |
+
"\">settings</a>. "
|
| 806 |
msgstr ""
|
| 807 |
|
| 808 |
+
#: gmw-widget.php:543
|
| 809 |
msgid ""
|
| 810 |
+
"If you experience any problems or need help, please contact <a href=\"mailto:"
|
| 811 |
+
"gmw@webfactoryltd.com?subject=GMW%20support\">support</a>."
|
| 812 |
msgstr ""
|
| 813 |
|
| 814 |
+
#: gmw-widget.php:656 gmw-widget.php:657
|
| 815 |
+
msgid "Click to open a larger map"
|
| 816 |
+
msgstr ""
|
| 817 |
+
|
| 818 |
+
#: gmw-widget.php:660
|
| 819 |
+
msgid "Click to open the interactive map"
|
| 820 |
+
msgstr ""
|
| 821 |
+
|
| 822 |
+
#: gmw-widget.php:661
|
| 823 |
+
msgid "Click to open an interactive map"
|
| 824 |
+
msgstr ""
|
| 825 |
+
|
| 826 |
+
#: gmw-widget.php:669
|
| 827 |
+
msgid "Click to open the interactive map in a new window"
|
| 828 |
+
msgstr ""
|
| 829 |
+
|
| 830 |
+
#: google-maps-widget.php:118
|
| 831 |
+
msgid "Google Maps Widget PRO hidden sidebar"
|
| 832 |
+
msgstr ""
|
| 833 |
+
|
| 834 |
+
#: google-maps-widget.php:120
|
| 835 |
+
msgid ""
|
| 836 |
+
"Widgets in this area will never be shown anywhere in the theme. Area only "
|
| 837 |
+
"helps you to build maps that are displayed with shortcodes."
|
| 838 |
+
msgstr ""
|
| 839 |
+
|
| 840 |
+
#: google-maps-widget.php:156
|
| 841 |
+
msgid "License key saved and activated!"
|
| 842 |
msgstr ""
|
| 843 |
|
| 844 |
+
#: google-maps-widget.php:192
|
| 845 |
msgid ""
|
| 846 |
+
"Google Maps API key is not valid. Access <a href=\"https://console."
|
| 847 |
+
"developers.google.com/project\">Google Developers Console</a> to generate a "
|
| 848 |
+
"key for free."
|
| 849 |
msgstr ""
|
| 850 |
|
| 851 |
+
#: google-maps-widget.php:197
|
| 852 |
+
msgid ""
|
| 853 |
+
"Map Shortcode is not valid. Please enter a valid shortcode name, eg: <i>gmw</"
|
| 854 |
+
"i>."
|
| 855 |
+
msgstr ""
|
| 856 |
+
|
| 857 |
+
#: google-maps-widget.php:265
|
| 858 |
+
msgid "Settings for Google Maps Widget"
|
| 859 |
msgstr ""
|
| 860 |
|
| 861 |
+
#: google-maps-widget.php:265 google-maps-widget.php:928
|
| 862 |
+
msgid "Settings"
|
| 863 |
msgstr ""
|
| 864 |
|
| 865 |
+
#: google-maps-widget.php:266
|
| 866 |
+
msgid "Configure Google Maps Widget for your theme"
|
| 867 |
+
msgstr ""
|
| 868 |
+
|
| 869 |
+
#: google-maps-widget.php:266
|
| 870 |
msgid "Widgets"
|
| 871 |
msgstr ""
|
| 872 |
|
| 873 |
+
#: google-maps-widget.php:277
|
| 874 |
msgid "View Google Maps Widget documentation"
|
| 875 |
msgstr ""
|
| 876 |
|
| 877 |
+
#: google-maps-widget.php:277
|
| 878 |
msgid "Documentation"
|
| 879 |
msgstr ""
|
| 880 |
|
| 881 |
+
#: google-maps-widget.php:279 google-maps-widget.php:281
|
| 882 |
msgid "Problems? We are here to help!"
|
| 883 |
msgstr ""
|
| 884 |
|
| 885 |
+
#: google-maps-widget.php:283
|
| 886 |
msgid "If you like it, please review the plugin"
|
| 887 |
msgstr ""
|
| 888 |
|
| 889 |
+
#: google-maps-widget.php:283
|
| 890 |
msgid "Review the plugin"
|
| 891 |
msgstr ""
|
| 892 |
|
| 893 |
+
#: google-maps-widget.php:284 google-maps-widget.php:629
|
| 894 |
+
msgid "Activate PRO features"
|
|
|
|
|
|
|
|
|
|
|
|
|
| 895 |
msgstr ""
|
| 896 |
|
| 897 |
+
#: google-maps-widget.php:312
|
| 898 |
msgid ""
|
| 899 |
+
"Google Maps Widget <b>requires WordPress version 3.8</b> or higher to "
|
| 900 |
"function properly. You are using WordPress version %s. Please <a href=\"%s"
|
| 901 |
"\">update it</a>."
|
| 902 |
msgstr ""
|
| 903 |
|
| 904 |
+
#: google-maps-widget.php:518
|
| 905 |
msgid "Google Maps Widget shortcode is not active!"
|
| 906 |
msgstr ""
|
| 907 |
|
| 908 |
+
#: google-maps-widget.php:518
|
| 909 |
msgid ""
|
| 910 |
+
" Shortcode <i>[%s]</i> is already in use by another plugin or theme. Please "
|
| 911 |
+
"deactivate that theme or plugin, or <a href=\"%s\">change</a> the GMW "
|
| 912 |
+
"shortcode."
|
| 913 |
msgstr ""
|
| 914 |
|
| 915 |
+
#: google-maps-widget.php:616
|
| 916 |
+
msgid "Pay what you think is fair"
|
| 917 |
+
msgstr ""
|
| 918 |
+
|
| 919 |
+
#: google-maps-widget.php:617
|
| 920 |
+
msgid "I will pay the full price later"
|
| 921 |
+
msgstr ""
|
| 922 |
+
|
| 923 |
+
#: google-maps-widget.php:627
|
| 924 |
msgid ""
|
| 925 |
+
"<b>Google Maps Widget</b> has more than 50 <b style=\"color: #d54e21;\">PRO</"
|
| 926 |
+
"b> features. Check them out and grab the limited time offer! Act now!"
|
| 927 |
msgstr ""
|
| 928 |
|
| 929 |
+
#: google-maps-widget.php:630
|
| 930 |
+
msgid "I will pay more later"
|
| 931 |
msgstr ""
|
| 932 |
|
| 933 |
+
#: google-maps-widget.php:640
|
| 934 |
+
msgid ""
|
| 935 |
+
"Hi! We saw you've been using <b>Google Maps Widget</b> for a few days and "
|
| 936 |
+
"wanted to ask for your help to make the plugin even better.<br>We just need "
|
| 937 |
+
"a minute of your time to rate the plugin. Thank you!"
|
| 938 |
+
msgstr ""
|
| 939 |
+
|
| 940 |
+
#: google-maps-widget.php:642
|
| 941 |
+
msgid "Help us out & rate the plugin"
|
| 942 |
+
msgstr ""
|
| 943 |
+
|
| 944 |
+
#: google-maps-widget.php:643
|
| 945 |
+
msgid "I already rated the plugin"
|
| 946 |
+
msgstr ""
|
| 947 |
+
|
| 948 |
+
#: google-maps-widget.php:661
|
| 949 |
+
msgid "Configure the API key"
|
| 950 |
+
msgstr ""
|
| 951 |
+
|
| 952 |
+
#: google-maps-widget.php:662
|
| 953 |
msgid "Dismiss notice"
|
| 954 |
msgstr ""
|
| 955 |
|
| 956 |
+
#: google-maps-widget.php:705
|
| 957 |
+
msgid "Superb! PRO features are active ;)"
|
| 958 |
msgstr ""
|
| 959 |
|
| 960 |
+
#: google-maps-widget.php:706
|
| 961 |
+
msgid "Pick an address by drag & dropping the pin"
|
|
|
|
|
|
|
| 962 |
msgstr ""
|
| 963 |
|
| 964 |
+
#: google-maps-widget.php:707
|
| 965 |
+
msgid ""
|
| 966 |
+
"An undocumented error has occured. Please refresh the page and try again."
|
| 967 |
msgstr ""
|
| 968 |
|
| 969 |
+
#: google-maps-widget.php:708 google-maps-widget.php:710
|
| 970 |
+
#: google-maps-widget.php:919
|
| 971 |
+
msgid "Google Maps Widget PRO"
|
| 972 |
msgstr ""
|
| 973 |
|
| 974 |
+
#: google-maps-widget.php:709
|
| 975 |
+
msgid "Pins Library"
|
| 976 |
msgstr ""
|
| 977 |
|
| 978 |
+
#: google-maps-widget.php:712
|
| 979 |
msgid ""
|
| 980 |
+
"Drag&drop address picking interface is a PRO feature. Interested in "
|
| 981 |
+
"switching to PRO?"
|
| 982 |
+
msgstr ""
|
| 983 |
+
|
| 984 |
+
#: google-maps-widget.php:929
|
| 985 |
+
msgid "Export & Import"
|
| 986 |
+
msgstr ""
|
| 987 |
+
|
| 988 |
+
#: google-maps-widget.php:936
|
| 989 |
+
msgid "Google Maps API Key"
|
| 990 |
+
msgstr ""
|
| 991 |
+
|
| 992 |
+
#: google-maps-widget.php:944
|
| 993 |
+
msgid "Map Shortcode"
|
| 994 |
+
msgstr ""
|
| 995 |
+
|
| 996 |
+
#: google-maps-widget.php:955
|
| 997 |
+
msgid "Track with Google Analytics"
|
| 998 |
+
msgstr ""
|
| 999 |
+
|
| 1000 |
+
#: google-maps-widget.php:959
|
| 1001 |
+
msgid "Include jQuery"
|
| 1002 |
+
msgstr ""
|
| 1003 |
+
|
| 1004 |
+
#: google-maps-widget.php:963
|
| 1005 |
+
msgid "Include Colorbox & Thumbnail CSS"
|
| 1006 |
+
msgstr ""
|
| 1007 |
+
|
| 1008 |
+
#: google-maps-widget.php:967
|
| 1009 |
+
msgid "Include Colorbox JS"
|
| 1010 |
+
msgstr ""
|
| 1011 |
+
|
| 1012 |
+
#: google-maps-widget.php:971
|
| 1013 |
+
msgid "Disable Admin Tooltips"
|
| 1014 |
+
msgstr ""
|
| 1015 |
+
|
| 1016 |
+
#: google-maps-widget.php:981
|
| 1017 |
+
msgid "Save Settings"
|
| 1018 |
+
msgstr ""
|
| 1019 |
+
|
| 1020 |
+
#: google-maps-widget.php:988
|
| 1021 |
+
msgid "Export widgets"
|
| 1022 |
+
msgstr ""
|
| 1023 |
+
|
| 1024 |
+
#: google-maps-widget.php:993
|
| 1025 |
+
msgid "Import widgets"
|
| 1026 |
+
msgstr ""
|
| 1027 |
+
|
| 1028 |
+
#: google-maps-widget.php:1011
|
| 1029 |
+
msgid "License Key"
|
| 1030 |
+
msgstr ""
|
| 1031 |
+
|
| 1032 |
+
#: google-maps-widget.php:1017 google-maps-widget.php:1024
|
| 1033 |
+
msgid "License Key Status"
|
| 1034 |
+
msgstr ""
|
| 1035 |
+
|
| 1036 |
+
#: google-maps-widget.php:1029
|
| 1037 |
+
msgid "Save and Validate License Key"
|
| 1038 |
msgstr ""
|
| 1039 |
|
| 1040 |
+
#: google-maps-widget.php:1042
|
| 1041 |
+
msgid "Please double-check the license key. The format is not valid."
|
| 1042 |
msgstr ""
|
| 1043 |
|
| 1044 |
#. Plugin URI of the plugin/theme
|
| 1048 |
#. Description of the plugin/theme
|
| 1049 |
msgid ""
|
| 1050 |
"Display a single-image super-fast loading Google map in a widget. A larger, "
|
| 1051 |
+
"full featured map is available as an image replacement or in a lightbox. "
|
| 1052 |
+
"Includes shortcode support and numerous options."
|
| 1053 |
msgstr ""
|
| 1054 |
|
| 1055 |
#. Author of the plugin/theme
|
readme.txt
CHANGED
|
@@ -1,18 +1,18 @@
|
|
| 1 |
=== Google Maps Widget ===
|
| 2 |
Contributors: WebFactory
|
| 3 |
-
Tags: address,
|
| 4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?business=gordan@webfactoryltd.com&cmd=_xclick¤cy_code=USD&amount=&item_name=Google%20Maps%20Widget%20Donation
|
| 5 |
License: GPLv2 or later
|
| 6 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 7 |
Requires at least: 3.8
|
| 8 |
Tested up to: 4.4
|
| 9 |
-
Stable tag: 3.
|
| 10 |
|
| 11 |
Displays a single image, super-fast loading Google map in a widget. A larger map with all interactive features is available on click in a lightbox.
|
| 12 |
|
| 13 |
== Description ==
|
| 14 |
|
| 15 |
-
Check out some examples on the <a href="http://www.
|
| 16 |
|
| 17 |
http://www.youtube.com/watch?v=y1siX9ha7Pw&hd=1
|
| 18 |
|
|
@@ -85,7 +85,7 @@ http://www.youtube.com/watch?v=y1siX9ha7Pw&hd=1
|
|
| 85 |
|
| 86 |
**License info**
|
| 87 |
|
| 88 |
-
* Parts of export & import code are based on <a href="https://wordpress.org/plugins/widget-importer-exporter/">Widget Importer & Exporter</a> plugin
|
| 89 |
* Most <a href="https://mapicons.mapsmarker.com/">icons</a> are created by Nicolas Mollet under the Creative Commons Attribution-Share Alike 3.0 Unported license
|
| 90 |
* <a href="https://select2.github.io/">Select2 v4</a>, licensed under MIT
|
| 91 |
* <a href="http://www.jacklmoore.com/colorbox">Colorbox 1.6</a>, licensed under MIT
|
|
@@ -142,9 +142,15 @@ Read the <a href="http://wordpress.org/support/plugin/google-maps-widget">suppor
|
|
| 142 |
|
| 143 |
== Changelog ==
|
| 144 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 145 |
= 3.04 =
|
| 146 |
* 2016/02/17
|
| 147 |
* added more detailed instructions on how to generate the API key
|
|
|
|
| 148 |
|
| 149 |
= 3.0 =
|
| 150 |
* 2016/02/16
|
|
@@ -337,7 +343,7 @@ Read the <a href="http://wordpress.org/support/plugin/google-maps-widget">suppor
|
|
| 337 |
|
| 338 |
= 1.35 =
|
| 339 |
* 2014/02/05
|
| 340 |
-
* added optional plugin usage tracking (<a href="http://www.
|
| 341 |
|
| 342 |
= 1.31 =
|
| 343 |
* 2014/02/03
|
|
@@ -411,7 +417,7 @@ Read the <a href="http://wordpress.org/support/plugin/google-maps-widget">suppor
|
|
| 411 |
* 2013/09/05
|
| 412 |
* prepared everything for translation, POT file is available and all strings are wrapped in <i>__()</i>
|
| 413 |
* protocols should now match http/https for both thumbnail and ligtbox map
|
| 414 |
-
* <a href="http://www.
|
| 415 |
|
| 416 |
= 0.65 =
|
| 417 |
* 2013/08/05
|
| 1 |
=== Google Maps Widget ===
|
| 2 |
Contributors: WebFactory
|
| 3 |
+
Tags: address, directions, gmaps, google maps shortcode, google maps, google maps directions, map, map shortcode, map widget, shortcode, streetview, widget
|
| 4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?business=gordan@webfactoryltd.com&cmd=_xclick¤cy_code=USD&amount=&item_name=Google%20Maps%20Widget%20Donation
|
| 5 |
License: GPLv2 or later
|
| 6 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 7 |
Requires at least: 3.8
|
| 8 |
Tested up to: 4.4
|
| 9 |
+
Stable tag: 3.05
|
| 10 |
|
| 11 |
Displays a single image, super-fast loading Google map in a widget. A larger map with all interactive features is available on click in a lightbox.
|
| 12 |
|
| 13 |
== Description ==
|
| 14 |
|
| 15 |
+
Check out some examples on the <a href="http://www.gmapswidget.com/">official plugin site</a>, view the [Google Maps Widget video](http://www.youtube.com/watch?v=y1siX9ha7Pw) or give us a shout on Twitter <a href="http://twitter.com/WebFactoryLtd">@WebFactoryLtd</a>.
|
| 16 |
|
| 17 |
http://www.youtube.com/watch?v=y1siX9ha7Pw&hd=1
|
| 18 |
|
| 85 |
|
| 86 |
**License info**
|
| 87 |
|
| 88 |
+
* Parts of export & import code are based on <a href="https://wordpress.org/plugins/widget-importer-exporter/">Widget Importer & Exporter</a> plugin by Steven Gliebe, licensed under GPLv2
|
| 89 |
* Most <a href="https://mapicons.mapsmarker.com/">icons</a> are created by Nicolas Mollet under the Creative Commons Attribution-Share Alike 3.0 Unported license
|
| 90 |
* <a href="https://select2.github.io/">Select2 v4</a>, licensed under MIT
|
| 91 |
* <a href="http://www.jacklmoore.com/colorbox">Colorbox 1.6</a>, licensed under MIT
|
| 142 |
|
| 143 |
== Changelog ==
|
| 144 |
|
| 145 |
+
= 3.05 =
|
| 146 |
+
* 2016/02/19
|
| 147 |
+
* few minor bug fixes
|
| 148 |
+
* added google maps API key tester
|
| 149 |
+
|
| 150 |
= 3.04 =
|
| 151 |
* 2016/02/17
|
| 152 |
* added more detailed instructions on how to generate the API key
|
| 153 |
+
* few minor bug fixes
|
| 154 |
|
| 155 |
= 3.0 =
|
| 156 |
* 2016/02/16
|
| 343 |
|
| 344 |
= 1.35 =
|
| 345 |
* 2014/02/05
|
| 346 |
+
* added optional plugin usage tracking (<a href="http://www.gmapswidget.com/plugin-tracking-info/">detailed info</a>)
|
| 347 |
|
| 348 |
= 1.31 =
|
| 349 |
* 2014/02/03
|
| 417 |
* 2013/09/05
|
| 418 |
* prepared everything for translation, POT file is available and all strings are wrapped in <i>__()</i>
|
| 419 |
* protocols should now match http/https for both thumbnail and ligtbox map
|
| 420 |
+
* <a href="http://www.gmapswidget.com/">www.gmapswidget.com</a> is up and running
|
| 421 |
|
| 422 |
= 0.65 =
|
| 423 |
* 2013/08/05
|
