Google Maps Widget – Ultimate Google Maps Plugin - Version 0.71

Version Description

  • 2013/09/17
  • few more preparations for translation
  • Swedish translation coming in a few days
Download this release

Release Info

Developer WebFactory
Plugin Icon 128x128 Google Maps Widget – Ultimate Google Maps Plugin
Version 0.71
Comparing to
See all releases

Code changes from version 0.70 to 0.71

gmw-widget.php CHANGED
@@ -92,83 +92,83 @@ class GoogleMapsWidget extends WP_Widget {
92
  $lightbox_skins[] = array('val' => 'black-square', 'label' => __('Black with square corners', 'google-maps-widget'));
93
 
94
 
95
- echo '<p><label for="' . $this->get_field_id('title') . '">' . __('Title:', 'google-maps-widget') . '</label><input class="widefat" id="' . $this->get_field_id('title') . '" name="' . $this->get_field_name('title') . '" type="text" value="' . esc_attr($title) . '" /></p>';
96
- echo '<p><label for="' . $this->get_field_id('address') . '">' . __('Address:', 'google-maps-widget') . '</label><input class="widefat" id="' . $this->get_field_id('address') . '" name="' . $this->get_field_name('address') . '" type="text" value="' . esc_attr($address) . '" /></p>';
97
 
98
  echo '<div class="gmw-tabs" id="tab-' . $this->id . '"><ul><li><a href="#gmw-thumb">' . __('Thumbnail map', 'google-maps-widget') . '</a></li><li><a href="#gmw-lightbox">' . __('Lightbox map', 'google-maps-widget') . '</a></li></ul>';
99
  echo '<div id="gmw-thumb">';
100
 
101
- echo '<p><label class="gmw-label" for="' . $this->get_field_id('thumb_width') . '">' . __('Map Size:', 'google-maps-widget') . '</label>';
102
  echo '<input class="small-text" id="' . $this->get_field_id('thumb_width') . '" name="' . $this->get_field_name('thumb_width') . '" type="text" value="' . esc_attr($thumb_width) . '" /> x ';
103
  echo '<input class="small-text" id="' . $this->get_field_id('thumb_height') . '" name="' . $this->get_field_name('thumb_height') . '" type="text" value="' . esc_attr($thumb_height) . '" />';
104
  echo ' px</p>';
105
 
106
- echo '<p><label class="gmw-label" for="' . $this->get_field_id('thumb_type') . '">' . __('Map Type:', 'google-maps-widget') . '</label>';
107
  echo '<select id="' . $this->get_field_id('thumb_type') . '" name="' . $this->get_field_name('thumb_type') . '">';
108
  GMW::create_select_options($map_types_thumb, $thumb_type);
109
  echo '</select></p>';
110
 
111
- echo '<p><label class="gmw-label" for="' . $this->get_field_id('thumb_pin_color') . '">' . __('Pin Color:', 'google-maps-widget') . '</label>';
112
  echo '<select id="' . $this->get_field_id('thumb_pin_color') . '" name="' . $this->get_field_name('thumb_pin_color') . '">';
113
  GMW::create_select_options($pin_colors, $thumb_pin_color);
114
  echo '</select></p>';
115
 
116
- echo '<p><label class="gmw-label" for="' . $this->get_field_id('thumb_pin_size') . '">' . __('Pin Size:', 'google-maps-widget') . '</label>';
117
  echo '<select id="' . $this->get_field_id('thumb_pin_size') . '" name="' . $this->get_field_name('thumb_pin_size') . '">';
118
  GMW::create_select_options($pin_sizes, $thumb_pin_size);
119
  echo '</select></p>';
120
 
121
- echo '<p><label class="gmw-label" for="' . $this->get_field_id('thumb_zoom') . '">' . __('Zoom Level:', 'google-maps-widget') . '</label>';
122
  echo '<select id="' . $this->get_field_id('thumb_zoom') . '" name="' . $this->get_field_name('thumb_zoom') . '">';
123
  GMW::create_select_options($zoom_levels, $thumb_zoom);
124
  echo '</select></p>';
125
 
126
- echo '<p><label for="' . $this->get_field_id('thumb_header') . '">' . __('Text Above Map:', 'google-maps-widget') . '</label>';
127
  echo '<textarea class="widefat" rows="3" cols="20" id="' . $this->get_field_id('thumb_header') . '" name="' . $this->get_field_name('thumb_header') . '">'. $thumb_header . '</textarea></p>';
128
 
129
- echo '<p><label for="' . $this->get_field_id('thumb_footer') . '">' . __('Text Below Map:', 'google-maps-widget') . '</label>';
130
  echo '<textarea class="widefat" rows="3" cols="20" id="' . $this->get_field_id('thumb_footer') . '" name="' . $this->get_field_name('thumb_footer') . '">'. $thumb_footer . '</textarea></p>';
131
 
132
  echo '</div>'; // thumbnail tab
133
  echo '<div id="gmw-lightbox">';
134
 
135
- echo '<p><label class="gmw-label" for="' . $this->get_field_id('lightbox_width') . '">' . __('Map Size:', 'google-maps-widget') . '</label>';
136
  echo '<input class="small-text" id="' . $this->get_field_id('lightbox_width') . '" name="' . $this->get_field_name('lightbox_width') . '" type="text" value="' . esc_attr($lightbox_width) . '" /> x ';
137
  echo '<input class="small-text" id="' . $this->get_field_id('lightbox_height') . '" name="' . $this->get_field_name('lightbox_height') . '" type="text" value="' . esc_attr($lightbox_height) . '" />';
138
  echo ' px</p>';
139
 
140
- echo '<p><label class="gmw-label" for="' . $this->get_field_id('lightbox_type') . '">' . __('Map Type:', 'google-maps-widget') . '</label>';
141
  echo '<select id="' . $this->get_field_id('lightbox_type') . '" name="' . $this->get_field_name('lightbox_type') . '">';
142
  GMW::create_select_options($map_types_lightbox, $lightbox_type);
143
  echo '</select></p>';
144
 
145
- echo '<p><label class="gmw-label" for="' . $this->get_field_id('lightbox_zoom') . '">' . __('Zoom Level:', 'google-maps-widget') . '</label>';
146
  echo '<select id="' . $this->get_field_id('lightbox_zoom') . '" name="' . $this->get_field_name('lightbox_zoom') . '">';
147
  GMW::create_select_options($zoom_levels, $lightbox_zoom);
148
  echo '</select></p>';
149
 
150
- echo '<p><label class="gmw-label" for="' . $this->get_field_id('lightbox_skin') . '">' . __('Skin:', 'google-maps-widget') . '</label>';
151
  echo '<select id="' . $this->get_field_id('lightbox_skin') . '" name="' . $this->get_field_name('lightbox_skin') . '">';
152
  GMW::create_select_options($lightbox_skins, $lightbox_skin);
153
  echo '</select></p>';
154
 
155
- echo '<p><label for="' . $this->get_field_id('lightbox_bubble') . '">' . __('Show Address Bubble:', 'google-maps-widget') . '&nbsp;</label>';
156
  echo '<input ' . checked('1', $lightbox_bubble, false) . ' value="1" type="checkbox" id="' . $this->get_field_id('lightbox_bubble') . '" name="' . $this->get_field_name('lightbox_bubble') . '">';
157
  echo '</p>';
158
 
159
- echo '<p><label for="' . $this->get_field_id('lightbox_title') . '">' . __('Show Title Below Lightbox:', 'google-maps-widget') . '&nbsp;</label>';
160
  echo '<input ' . checked('1', $lightbox_title, false) . ' value="1" type="checkbox" id="' . $this->get_field_id('lightbox_title') . '" name="' . $this->get_field_name('lightbox_title') . '">';
161
  echo '</p>';
162
 
163
- echo '<p><label for="' . $this->get_field_id('lightbox_header') . '">' . __('Header Text:', 'google-maps-widget') . '</label>';
164
  echo '<textarea class="widefat" rows="3" cols="20" id="' . $this->get_field_id('lightbox_header') . '" name="' . $this->get_field_name('lightbox_header') . '">'. $lightbox_header . '</textarea></p>';
165
 
166
- echo '<p><label for="' . $this->get_field_id('lightbox_footer') . '">' . __('Footer Text:', 'google-maps-widget') . '</label>';
167
  echo '<textarea class="widefat" rows="3" cols="20" id="' . $this->get_field_id('lightbox_footer') . '" name="' . $this->get_field_name('lightbox_footer') . '">'. $lightbox_footer . '</textarea></p>';
168
 
169
  echo '</div>'; // lightbox tab
170
  echo '</div>'; // tabs
171
- echo '<p><i>' . __('If you like the plugin give us a shout <a title="WebFactory on Twitter" target="_blank" href="http://twitter.com/WebFactoryLtd">@WebFactoryLtd</a>. Thanks!', 'google-maps-widget') . '</i></p>';
172
  }
173
 
174
  function update($new_instance, $old_instance) {
92
  $lightbox_skins[] = array('val' => 'black-square', 'label' => __('Black with square corners', 'google-maps-widget'));
93
 
94
 
95
+ echo '<p><label for="' . $this->get_field_id('title') . '">' . __('Title', 'google-maps-widget') . ':</label><input class="widefat" id="' . $this->get_field_id('title') . '" name="' . $this->get_field_name('title') . '" type="text" value="' . esc_attr($title) . '" /></p>';
96
+ echo '<p><label for="' . $this->get_field_id('address') . '">' . __('Address', 'google-maps-widget') . ':</label><input class="widefat" id="' . $this->get_field_id('address') . '" name="' . $this->get_field_name('address') . '" type="text" value="' . esc_attr($address) . '" /></p>';
97
 
98
  echo '<div class="gmw-tabs" id="tab-' . $this->id . '"><ul><li><a href="#gmw-thumb">' . __('Thumbnail map', 'google-maps-widget') . '</a></li><li><a href="#gmw-lightbox">' . __('Lightbox map', 'google-maps-widget') . '</a></li></ul>';
99
  echo '<div id="gmw-thumb">';
100
 
101
+ echo '<p><label class="gmw-label" for="' . $this->get_field_id('thumb_width') . '">' . __('Map Size', 'google-maps-widget') . ':</label>';
102
  echo '<input class="small-text" id="' . $this->get_field_id('thumb_width') . '" name="' . $this->get_field_name('thumb_width') . '" type="text" value="' . esc_attr($thumb_width) . '" /> x ';
103
  echo '<input class="small-text" id="' . $this->get_field_id('thumb_height') . '" name="' . $this->get_field_name('thumb_height') . '" type="text" value="' . esc_attr($thumb_height) . '" />';
104
  echo ' px</p>';
105
 
106
+ echo '<p><label class="gmw-label" for="' . $this->get_field_id('thumb_type') . '">' . __('Map Type', 'google-maps-widget') . ':</label>';
107
  echo '<select id="' . $this->get_field_id('thumb_type') . '" name="' . $this->get_field_name('thumb_type') . '">';
108
  GMW::create_select_options($map_types_thumb, $thumb_type);
109
  echo '</select></p>';
110
 
111
+ echo '<p><label class="gmw-label" for="' . $this->get_field_id('thumb_pin_color') . '">' . __('Pin Color', 'google-maps-widget') . ':</label>';
112
  echo '<select id="' . $this->get_field_id('thumb_pin_color') . '" name="' . $this->get_field_name('thumb_pin_color') . '">';
113
  GMW::create_select_options($pin_colors, $thumb_pin_color);
114
  echo '</select></p>';
115
 
116
+ echo '<p><label class="gmw-label" for="' . $this->get_field_id('thumb_pin_size') . '">' . __('Pin Size', 'google-maps-widget') . ':</label>';
117
  echo '<select id="' . $this->get_field_id('thumb_pin_size') . '" name="' . $this->get_field_name('thumb_pin_size') . '">';
118
  GMW::create_select_options($pin_sizes, $thumb_pin_size);
119
  echo '</select></p>';
120
 
121
+ echo '<p><label class="gmw-label" for="' . $this->get_field_id('thumb_zoom') . '">' . __('Zoom Level', 'google-maps-widget') . ':</label>';
122
  echo '<select id="' . $this->get_field_id('thumb_zoom') . '" name="' . $this->get_field_name('thumb_zoom') . '">';
123
  GMW::create_select_options($zoom_levels, $thumb_zoom);
124
  echo '</select></p>';
125
 
126
+ echo '<p><label for="' . $this->get_field_id('thumb_header') . '">' . __('Text Above Map', 'google-maps-widget') . ':</label>';
127
  echo '<textarea class="widefat" rows="3" cols="20" id="' . $this->get_field_id('thumb_header') . '" name="' . $this->get_field_name('thumb_header') . '">'. $thumb_header . '</textarea></p>';
128
 
129
+ echo '<p><label for="' . $this->get_field_id('thumb_footer') . '">' . __('Text Below Map', 'google-maps-widget') . ':</label>';
130
  echo '<textarea class="widefat" rows="3" cols="20" id="' . $this->get_field_id('thumb_footer') . '" name="' . $this->get_field_name('thumb_footer') . '">'. $thumb_footer . '</textarea></p>';
131
 
132
  echo '</div>'; // thumbnail tab
133
  echo '<div id="gmw-lightbox">';
134
 
135
+ echo '<p><label class="gmw-label" for="' . $this->get_field_id('lightbox_width') . '">' . __('Map Size', 'google-maps-widget') . ':</label>';
136
  echo '<input class="small-text" id="' . $this->get_field_id('lightbox_width') . '" name="' . $this->get_field_name('lightbox_width') . '" type="text" value="' . esc_attr($lightbox_width) . '" /> x ';
137
  echo '<input class="small-text" id="' . $this->get_field_id('lightbox_height') . '" name="' . $this->get_field_name('lightbox_height') . '" type="text" value="' . esc_attr($lightbox_height) . '" />';
138
  echo ' px</p>';
139
 
140
+ echo '<p><label class="gmw-label" for="' . $this->get_field_id('lightbox_type') . '">' . __('Map Type', 'google-maps-widget') . ':</label>';
141
  echo '<select id="' . $this->get_field_id('lightbox_type') . '" name="' . $this->get_field_name('lightbox_type') . '">';
142
  GMW::create_select_options($map_types_lightbox, $lightbox_type);
143
  echo '</select></p>';
144
 
145
+ echo '<p><label class="gmw-label" for="' . $this->get_field_id('lightbox_zoom') . '">' . __('Zoom Level', 'google-maps-widget') . ':</label>';
146
  echo '<select id="' . $this->get_field_id('lightbox_zoom') . '" name="' . $this->get_field_name('lightbox_zoom') . '">';
147
  GMW::create_select_options($zoom_levels, $lightbox_zoom);
148
  echo '</select></p>';
149
 
150
+ echo '<p><label class="gmw-label" for="' . $this->get_field_id('lightbox_skin') . '">' . __('Skin', 'google-maps-widget') . ':</label>';
151
  echo '<select id="' . $this->get_field_id('lightbox_skin') . '" name="' . $this->get_field_name('lightbox_skin') . '">';
152
  GMW::create_select_options($lightbox_skins, $lightbox_skin);
153
  echo '</select></p>';
154
 
155
+ echo '<p><label for="' . $this->get_field_id('lightbox_bubble') . '">' . __('Show Address Bubble', 'google-maps-widget') . ':&nbsp;</label>';
156
  echo '<input ' . checked('1', $lightbox_bubble, false) . ' value="1" type="checkbox" id="' . $this->get_field_id('lightbox_bubble') . '" name="' . $this->get_field_name('lightbox_bubble') . '">';
157
  echo '</p>';
158
 
159
+ echo '<p><label for="' . $this->get_field_id('lightbox_title') . '">' . __('Show Title Below Lightbox', 'google-maps-widget') . ':&nbsp;</label>';
160
  echo '<input ' . checked('1', $lightbox_title, false) . ' value="1" type="checkbox" id="' . $this->get_field_id('lightbox_title') . '" name="' . $this->get_field_name('lightbox_title') . '">';
161
  echo '</p>';
162
 
163
+ echo '<p><label for="' . $this->get_field_id('lightbox_header') . '">' . __('Header Text', 'google-maps-widget') . ':</label>';
164
  echo '<textarea class="widefat" rows="3" cols="20" id="' . $this->get_field_id('lightbox_header') . '" name="' . $this->get_field_name('lightbox_header') . '">'. $lightbox_header . '</textarea></p>';
165
 
166
+ echo '<p><label for="' . $this->get_field_id('lightbox_footer') . '">' . __('Footer Text', 'google-maps-widget') . ':</label>';
167
  echo '<textarea class="widefat" rows="3" cols="20" id="' . $this->get_field_id('lightbox_footer') . '" name="' . $this->get_field_name('lightbox_footer') . '">'. $lightbox_footer . '</textarea></p>';
168
 
169
  echo '</div>'; // lightbox tab
170
  echo '</div>'; // tabs
171
+ echo '<p><i>' . __('If you like the plugin give us a shout. Thanks!', 'google-maps-widget') . '<a title="WebFactory on Twitter" target="_blank" href="http://twitter.com/WebFactoryLtd">@WebFactoryLtd</a></i></p>';
172
  }
173
 
174
  function update($new_instance, $old_instance) {
google-maps-widget.php CHANGED
@@ -4,13 +4,13 @@ Plugin Name: Google Maps Widget
4
  Plugin URI: http://www.googlemapswidget.com/
5
  Description: Display a single-image super-fast loading Google map in a widget. A larger, full featured map is available on click in a lightbox.
6
  Author: Web factory Ltd
7
- Version: 0.70
8
  Author URI: http://www.webfactoryltd.com/
9
 
10
  Copyright 2013 Web factory Ltd (email : info@webfactoryltd.com)
11
 
12
  This program is free software; you can redistribute it and/or modify
13
- it under the terms of the GNU General Public License, version 2, as
14
  published by the Free Software Foundation.
15
 
16
  This program is distributed in the hope that it will be useful,
@@ -29,7 +29,7 @@ if (!function_exists('add_action')) {
29
  }
30
 
31
 
32
- define('GMW_VER', '0.70');
33
  require_once 'gmw-widget.php';
34
 
35
 
@@ -51,7 +51,7 @@ class GMW {
51
  add_action('wp_enqueue_scripts', array(__CLASS__, 'enqueue_scripts'));
52
  add_action('wp_footer', array(__CLASS__, 'dialogs_markup'));
53
  }
54
-
55
  load_plugin_textdomain('google-maps-widget', false, basename(dirname(__FILE__)) . '/lang');
56
  } // init
57
 
4
  Plugin URI: http://www.googlemapswidget.com/
5
  Description: Display a single-image super-fast loading Google map in a widget. A larger, full featured map is available on click in a lightbox.
6
  Author: Web factory Ltd
7
+ Version: 0.71
8
  Author URI: http://www.webfactoryltd.com/
9
 
10
  Copyright 2013 Web factory Ltd (email : info@webfactoryltd.com)
11
 
12
  This program is free software; you can redistribute it and/or modify
13
+ it under the terms of the GNU General Public License, version 2, as
14
  published by the Free Software Foundation.
15
 
16
  This program is distributed in the hope that it will be useful,
29
  }
30
 
31
 
32
+ define('GMW_VER', '0.71');
33
  require_once 'gmw-widget.php';
34
 
35
 
51
  add_action('wp_enqueue_scripts', array(__CLASS__, 'enqueue_scripts'));
52
  add_action('wp_footer', array(__CLASS__, 'dialogs_markup'));
53
  }
54
+
55
  load_plugin_textdomain('google-maps-widget', false, basename(dirname(__FILE__)) . '/lang');
56
  } // init
57
 
lang/google-maps-widget.mo DELETED
Binary file
lang/google-maps-widget.po DELETED
@@ -1,224 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Google Maps Widget\n"
4
- "POT-Creation-Date: 2013-09-05 23:53+0100\n"
5
- "PO-Revision-Date: 2013-09-05 23:53+0100\n"
6
- "Last-Translator: \n"
7
- "Language-Team: Web Factory Ltd <info@webfactoryltd.com>\n"
8
- "Language: eng\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.5.7\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
- "X-Poedit-Basepath: .\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Poedit-SearchPath-0: ./..\n"
17
-
18
- #: ../gmw-widget.php:11
19
- msgid ""
20
- "Displays a map image thumbnail with a larger map available in a lightbox."
21
- msgstr ""
22
-
23
- #: ../gmw-widget.php:13
24
- msgid "Google Maps Widget"
25
- msgstr ""
26
-
27
- #: ../gmw-widget.php:18
28
- msgid "Map"
29
- msgstr ""
30
-
31
- #: ../gmw-widget.php:19
32
- msgid "New York, USA"
33
- msgstr ""
34
-
35
- #: ../gmw-widget.php:58 ../gmw-widget.php:63
36
- msgid "Road (default)"
37
- msgstr ""
38
-
39
- #: ../gmw-widget.php:59 ../gmw-widget.php:64
40
- msgid "Satellite"
41
- msgstr ""
42
-
43
- #: ../gmw-widget.php:60 ../gmw-widget.php:65
44
- msgid "Terrain"
45
- msgstr ""
46
-
47
- #: ../gmw-widget.php:61 ../gmw-widget.php:66
48
- msgid "Hybrid"
49
- msgstr ""
50
-
51
- #: ../gmw-widget.php:68
52
- msgid "Black"
53
- msgstr ""
54
-
55
- #: ../gmw-widget.php:69
56
- msgid "Brown"
57
- msgstr ""
58
-
59
- #: ../gmw-widget.php:70
60
- msgid "Green"
61
- msgstr ""
62
-
63
- #: ../gmw-widget.php:71
64
- msgid "Purple"
65
- msgstr ""
66
-
67
- #: ../gmw-widget.php:72
68
- msgid "Yellow"
69
- msgstr ""
70
-
71
- #: ../gmw-widget.php:73
72
- msgid "Blue"
73
- msgstr ""
74
-
75
- #: ../gmw-widget.php:74
76
- msgid "Gray"
77
- msgstr ""
78
-
79
- #: ../gmw-widget.php:75
80
- msgid "Orange"
81
- msgstr ""
82
-
83
- #: ../gmw-widget.php:76
84
- msgid "Red (default)"
85
- msgstr ""
86
-
87
- #: ../gmw-widget.php:77
88
- msgid "White"
89
- msgstr ""
90
-
91
- #: ../gmw-widget.php:79
92
- msgid "Tiny"
93
- msgstr ""
94
-
95
- #: ../gmw-widget.php:80
96
- msgid "Small"
97
- msgstr ""
98
-
99
- #: ../gmw-widget.php:81
100
- msgid "Medium"
101
- msgstr ""
102
-
103
- #: ../gmw-widget.php:82
104
- msgid "Large (default)"
105
- msgstr ""
106
-
107
- #: ../gmw-widget.php:84
108
- msgid "0 - entire world"
109
- msgstr ""
110
-
111
- #: ../gmw-widget.php:89
112
- msgid "White with rounded corners (default)"
113
- msgstr ""
114
-
115
- #: ../gmw-widget.php:90
116
- msgid "Black with rounded corners"
117
- msgstr ""
118
-
119
- #: ../gmw-widget.php:91
120
- msgid "White with square corners"
121
- msgstr ""
122
-
123
- #: ../gmw-widget.php:92
124
- msgid "Black with square corners"
125
- msgstr ""
126
-
127
- #: ../gmw-widget.php:95
128
- msgid "Title:"
129
- msgstr ""
130
-
131
- #: ../gmw-widget.php:96
132
- msgid "Address:"
133
- msgstr ""
134
-
135
- #: ../gmw-widget.php:98
136
- msgid "Thumbnail map"
137
- msgstr ""
138
-
139
- #: ../gmw-widget.php:98
140
- msgid "Lightbox map"
141
- msgstr ""
142
-
143
- #: ../gmw-widget.php:101 ../gmw-widget.php:135
144
- msgid "Map Size:"
145
- msgstr ""
146
-
147
- #: ../gmw-widget.php:106 ../gmw-widget.php:140
148
- msgid "Map Type:"
149
- msgstr ""
150
-
151
- #: ../gmw-widget.php:111
152
- msgid "Pin Color:"
153
- msgstr ""
154
-
155
- #: ../gmw-widget.php:116
156
- msgid "Pin Size:"
157
- msgstr ""
158
-
159
- #: ../gmw-widget.php:121 ../gmw-widget.php:145
160
- msgid "Zoom Level:"
161
- msgstr ""
162
-
163
- #: ../gmw-widget.php:126
164
- msgid "Text Above Map:"
165
- msgstr ""
166
-
167
- #: ../gmw-widget.php:129
168
- msgid "Text Below Map:"
169
- msgstr ""
170
-
171
- #: ../gmw-widget.php:150
172
- msgid "Skin:"
173
- msgstr ""
174
-
175
- #: ../gmw-widget.php:155
176
- msgid "Show Address Bubble:"
177
- msgstr ""
178
-
179
- #: ../gmw-widget.php:159
180
- msgid "Show Title Below Lightbox:"
181
- msgstr ""
182
-
183
- #: ../gmw-widget.php:163
184
- msgid "Header Text:"
185
- msgstr ""
186
-
187
- #: ../gmw-widget.php:166
188
- msgid "Footer Text:"
189
- msgstr ""
190
-
191
- #: ../gmw-widget.php:171
192
- msgid ""
193
- "If you like the plugin give us a shout <a title=\"WebFactory on Twitter\" "
194
- "target=\"_blank\" href=\"http://twitter.com/WebFactoryLtd\">@WebFactoryLtd</"
195
- "a>. Thanks!"
196
- msgstr ""
197
-
198
- #: ../gmw-widget.php:236
199
- msgid "Click to open larger map"
200
- msgstr ""
201
-
202
- #: ../google-maps-widget.php:67
203
- msgid "Configure Google Maps Widget"
204
- msgstr ""
205
-
206
- #: ../google-maps-widget.php:67
207
- msgid "Widgets"
208
- msgstr ""
209
-
210
- #: ../google-maps-widget.php:76
211
- msgid "View Google Maps Widget documentation"
212
- msgstr ""
213
-
214
- #: ../google-maps-widget.php:76
215
- msgid "Documentation"
216
- msgstr ""
217
-
218
- #: ../google-maps-widget.php:77
219
- msgid "Problems? We are here to help!"
220
- msgstr ""
221
-
222
- #: ../google-maps-widget.php:77
223
- msgid "Support"
224
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/google-maps-widget.pot ADDED
@@ -0,0 +1,238 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2013 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 0.71\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/google-maps-widget\n"
7
+ "POT-Creation-Date: 2013-09-17 20:07:52+00:00\n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=UTF-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2013-MO-DA HO:MI+ZONE\n"
12
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
+ "Language-Team: LANGUAGE <LL@li.org>\n"
14
+
15
+ #: gmw-widget.php:11
16
+ msgid ""
17
+ "Displays a map image thumbnail with a larger map available in a lightbox."
18
+ msgstr ""
19
+
20
+ #. #-#-#-#-# plugin.pot (Google Maps Widget 0.71) #-#-#-#-#
21
+ #. Plugin Name of the plugin/theme
22
+ #: gmw-widget.php:13
23
+ msgid "Google Maps Widget"
24
+ msgstr ""
25
+
26
+ #: gmw-widget.php:18
27
+ msgid "Map"
28
+ msgstr ""
29
+
30
+ #: gmw-widget.php:19
31
+ msgid "New York, USA"
32
+ msgstr ""
33
+
34
+ #: gmw-widget.php:58 gmw-widget.php:63
35
+ msgid "Road (default)"
36
+ msgstr ""
37
+
38
+ #: gmw-widget.php:59 gmw-widget.php:64
39
+ msgid "Satellite"
40
+ msgstr ""
41
+
42
+ #: gmw-widget.php:60 gmw-widget.php:65
43
+ msgid "Terrain"
44
+ msgstr ""
45
+
46
+ #: gmw-widget.php:61 gmw-widget.php:66
47
+ msgid "Hybrid"
48
+ msgstr ""
49
+
50
+ #: gmw-widget.php:68
51
+ msgid "Black"
52
+ msgstr ""
53
+
54
+ #: gmw-widget.php:69
55
+ msgid "Brown"
56
+ msgstr ""
57
+
58
+ #: gmw-widget.php:70
59
+ msgid "Green"
60
+ msgstr ""
61
+
62
+ #: gmw-widget.php:71
63
+ msgid "Purple"
64
+ msgstr ""
65
+
66
+ #: gmw-widget.php:72
67
+ msgid "Yellow"
68
+ msgstr ""
69
+
70
+ #: gmw-widget.php:73
71
+ msgid "Blue"
72
+ msgstr ""
73
+
74
+ #: gmw-widget.php:74
75
+ msgid "Gray"
76
+ msgstr ""
77
+
78
+ #: gmw-widget.php:75
79
+ msgid "Orange"
80
+ msgstr ""
81
+
82
+ #: gmw-widget.php:76
83
+ msgid "Red (default)"
84
+ msgstr ""
85
+
86
+ #: gmw-widget.php:77
87
+ msgid "White"
88
+ msgstr ""
89
+
90
+ #: gmw-widget.php:79
91
+ msgid "Tiny"
92
+ msgstr ""
93
+
94
+ #: gmw-widget.php:80
95
+ msgid "Small"
96
+ msgstr ""
97
+
98
+ #: gmw-widget.php:81
99
+ msgid "Medium"
100
+ msgstr ""
101
+
102
+ #: gmw-widget.php:82
103
+ msgid "Large (default)"
104
+ msgstr ""
105
+
106
+ #: gmw-widget.php:84
107
+ msgid "0 - entire world"
108
+ msgstr ""
109
+
110
+ #: gmw-widget.php:89
111
+ msgid "White with rounded corners (default)"
112
+ msgstr ""
113
+
114
+ #: gmw-widget.php:90
115
+ msgid "Black with rounded corners"
116
+ msgstr ""
117
+
118
+ #: gmw-widget.php:91
119
+ msgid "White with square corners"
120
+ msgstr ""
121
+
122
+ #: gmw-widget.php:92
123
+ msgid "Black with square corners"
124
+ msgstr ""
125
+
126
+ #: gmw-widget.php:95
127
+ msgid "Title"
128
+ msgstr ""
129
+
130
+ #: gmw-widget.php:96
131
+ msgid "Address"
132
+ msgstr ""
133
+
134
+ #: gmw-widget.php:98
135
+ msgid "Thumbnail map"
136
+ msgstr ""
137
+
138
+ #: gmw-widget.php:98
139
+ msgid "Lightbox map"
140
+ msgstr ""
141
+
142
+ #: gmw-widget.php:101 gmw-widget.php:135
143
+ msgid "Map Size"
144
+ msgstr ""
145
+
146
+ #: gmw-widget.php:106 gmw-widget.php:140
147
+ msgid "Map Type"
148
+ msgstr ""
149
+
150
+ #: gmw-widget.php:111
151
+ msgid "Pin Color"
152
+ msgstr ""
153
+
154
+ #: gmw-widget.php:116
155
+ msgid "Pin Size"
156
+ msgstr ""
157
+
158
+ #: gmw-widget.php:121 gmw-widget.php:145
159
+ msgid "Zoom Level"
160
+ msgstr ""
161
+
162
+ #: gmw-widget.php:126
163
+ msgid "Text Above Map"
164
+ msgstr ""
165
+
166
+ #: gmw-widget.php:129
167
+ msgid "Text Below Map"
168
+ msgstr ""
169
+
170
+ #: gmw-widget.php:150
171
+ msgid "Skin"
172
+ msgstr ""
173
+
174
+ #: gmw-widget.php:155
175
+ msgid "Show Address Bubble"
176
+ msgstr ""
177
+
178
+ #: gmw-widget.php:159
179
+ msgid "Show Title Below Lightbox"
180
+ msgstr ""
181
+
182
+ #: gmw-widget.php:163
183
+ msgid "Header Text"
184
+ msgstr ""
185
+
186
+ #: gmw-widget.php:166
187
+ msgid "Footer Text"
188
+ msgstr ""
189
+
190
+ #: gmw-widget.php:171
191
+ msgid "If you like the plugin give us a shout. Thanks!"
192
+ msgstr ""
193
+
194
+ #: gmw-widget.php:236
195
+ msgid "Click to open larger map"
196
+ msgstr ""
197
+
198
+ #: google-maps-widget.php:67
199
+ msgid "Configure Google Maps Widget"
200
+ msgstr ""
201
+
202
+ #: google-maps-widget.php:67
203
+ msgid "Widgets"
204
+ msgstr ""
205
+
206
+ #: google-maps-widget.php:76
207
+ msgid "View Google Maps Widget documentation"
208
+ msgstr ""
209
+
210
+ #: google-maps-widget.php:76
211
+ msgid "Documentation"
212
+ msgstr ""
213
+
214
+ #: google-maps-widget.php:77
215
+ msgid "Problems? We are here to help!"
216
+ msgstr ""
217
+
218
+ #: google-maps-widget.php:77
219
+ msgid "Support"
220
+ msgstr ""
221
+
222
+ #. Plugin URI of the plugin/theme
223
+ msgid "http://www.googlemapswidget.com/"
224
+ msgstr ""
225
+
226
+ #. Description of the plugin/theme
227
+ msgid ""
228
+ "Display a single-image super-fast loading Google map in a widget. A larger, "
229
+ "full featured map is available on click in a lightbox."
230
+ msgstr ""
231
+
232
+ #. Author of the plugin/theme
233
+ msgid "Web factory Ltd"
234
+ msgstr ""
235
+
236
+ #. Author URI of the plugin/theme
237
+ msgid "http://www.webfactoryltd.com/"
238
+ msgstr ""
readme.txt CHANGED
@@ -6,7 +6,7 @@ License: GPLv2 or later
6
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
7
  Requires at least: 3.3
8
  Tested up to: 3.6
9
- Stable tag: 0.70
10
 
11
  Displays a single-image super-fast loading Google map in a widget. A larger map with all the usual features is available on click in a lightbox.
12
 
@@ -81,6 +81,10 @@ If you can figure it out open a thread in the support forums.
81
  4. Widget options - lightbox map
82
 
83
  == Changelog ==
 
 
 
 
84
 
85
  = 0.70 =
86
  * 2013/09/05
6
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
7
  Requires at least: 3.3
8
  Tested up to: 3.6
9
+ Stable tag: 0.71
10
 
11
  Displays a single-image super-fast loading Google map in a widget. A larger map with all the usual features is available on click in a lightbox.
12
 
81
  4. Widget options - lightbox map
82
 
83
  == Changelog ==
84
+ = 0.71 =
85
+ * 2013/09/17
86
+ * few more preparations for translation
87
+ * Swedish translation coming in a few days
88
 
89
  = 0.70 =
90
  * 2013/09/05