Version Description
- 2015-06-01 - Low priority =
- French translation bug fixed
Download this release
Release Info
Developer | WPGMaps |
Plugin | WP Google Maps |
Version | 6.1.9 |
Comparing to | |
See all releases |
Code changes from version 6.1.8 to 6.1.9
- languages/wp-google-maps-fr_FR.mo +0 -0
- languages/wp-google-maps-fr_FR.po +2 -2
- readme.txt +3 -0
- wpGoogleMaps.php +6 -3
languages/wp-google-maps-fr_FR.mo
CHANGED
Binary file
|
languages/wp-google-maps-fr_FR.po
CHANGED
@@ -5,7 +5,7 @@ msgid ""
|
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: wpgm_fr\n"
|
7 |
"POT-Creation-Date: 2015-01-23 23:21+0200\n"
|
8 |
-
"PO-Revision-Date: 2015-
|
9 |
"Last-Translator: antoine <antoine.levillain@gmail.com>\n"
|
10 |
"Language-Team: French <>\n"
|
11 |
"Language: fr_FR\n"
|
@@ -958,7 +958,7 @@ msgstr "miles de distance"
|
|
958 |
#: C:\wamp\www\wp-plugins\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2540
|
959 |
#: C:\wamp\www\wp-plugins\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2542
|
960 |
msgid "Please fill out both the 'from' and 'to' fields"
|
961 |
-
msgstr "Veuillez remplir les champs
|
962 |
|
963 |
#: C:\wamp\www\wp-plugins\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2544
|
964 |
msgid "Getting your current location address..."
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: wpgm_fr\n"
|
7 |
"POT-Creation-Date: 2015-01-23 23:21+0200\n"
|
8 |
+
"PO-Revision-Date: 2015-05-28 08:55+0200\n"
|
9 |
"Last-Translator: antoine <antoine.levillain@gmail.com>\n"
|
10 |
"Language-Team: French <>\n"
|
11 |
"Language: fr_FR\n"
|
958 |
#: C:\wamp\www\wp-plugins\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2540
|
959 |
#: C:\wamp\www\wp-plugins\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2542
|
960 |
msgid "Please fill out both the 'from' and 'to' fields"
|
961 |
+
msgstr "Veuillez remplir les champs \"de\" et \"à\""
|
962 |
|
963 |
#: C:\wamp\www\wp-plugins\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2544
|
964 |
msgid "Getting your current location address..."
|
readme.txt
CHANGED
@@ -177,6 +177,9 @@ Please upgrade your version of WP Google Maps to version 6.0.27 as it includes m
|
|
177 |
|
178 |
== Changelog ==
|
179 |
|
|
|
|
|
|
|
180 |
= 6.1.8 - 2015-05-27 - Low priority =
|
181 |
* Greek translation added - Thank you Konstantinos Koukoulakis
|
182 |
* Added the Google Maps autocomplete functionality to the "add marker" section of the map editor
|
177 |
|
178 |
== Changelog ==
|
179 |
|
180 |
+
= 6.1.9 - 2015-06-01 - Low priority =
|
181 |
+
* French translation bug fixed
|
182 |
+
|
183 |
= 6.1.8 - 2015-05-27 - Low priority =
|
184 |
* Greek translation added - Thank you Konstantinos Koukoulakis
|
185 |
* Added the Google Maps autocomplete functionality to the "add marker" section of the map editor
|
wpGoogleMaps.php
CHANGED
@@ -3,12 +3,15 @@
|
|
3 |
Plugin Name: WP Google Maps
|
4 |
Plugin URI: http://www.wpgmaps.com
|
5 |
Description: The easiest to use Google Maps plugin! Create custom Google Maps with high quality markers containing locations, descriptions, images and links. Add your customized map to your WordPress posts and/or pages quickly and easily with the supplied shortcode. No fuss.
|
6 |
-
Version: 6.1.
|
7 |
Author: WP Google Maps
|
8 |
Author URI: http://www.wpgmaps.com
|
9 |
*/
|
10 |
|
11 |
/*
|
|
|
|
|
|
|
12 |
* 6.1.8 - 2015-05-27 - Low priority
|
13 |
* Greek translation added - Thank you Konstantinos Koukoulakis
|
14 |
* Added the Google Maps autocomplete functionality to the "add marker" section of the map editor
|
@@ -155,8 +158,8 @@ $wpgmza_tblname_poly = $wpdb->prefix . "wpgmza_polygon";
|
|
155 |
$wpgmza_tblname_polylines = $wpdb->prefix . "wpgmza_polylines";
|
156 |
$wpgmza_tblname_categories = $wpdb->prefix. "wpgmza_categories";
|
157 |
$wpgmza_tblname_category_maps = $wpdb->prefix. "wpgmza_category_maps";
|
158 |
-
$wpgmza_version = "6.1.
|
159 |
-
$wpgmza_p_version = "6.1.
|
160 |
$wpgmza_t = "basic";
|
161 |
define("WPGMAPS", $wpgmza_version);
|
162 |
define("WPGMAPS_DIR",plugin_dir_url(__FILE__));
|
3 |
Plugin Name: WP Google Maps
|
4 |
Plugin URI: http://www.wpgmaps.com
|
5 |
Description: The easiest to use Google Maps plugin! Create custom Google Maps with high quality markers containing locations, descriptions, images and links. Add your customized map to your WordPress posts and/or pages quickly and easily with the supplied shortcode. No fuss.
|
6 |
+
Version: 6.1.9
|
7 |
Author: WP Google Maps
|
8 |
Author URI: http://www.wpgmaps.com
|
9 |
*/
|
10 |
|
11 |
/*
|
12 |
+
* 6.1.9 - 2015
|
13 |
+
* Fixed french translation bug
|
14 |
+
*
|
15 |
* 6.1.8 - 2015-05-27 - Low priority
|
16 |
* Greek translation added - Thank you Konstantinos Koukoulakis
|
17 |
* Added the Google Maps autocomplete functionality to the "add marker" section of the map editor
|
158 |
$wpgmza_tblname_polylines = $wpdb->prefix . "wpgmza_polylines";
|
159 |
$wpgmza_tblname_categories = $wpdb->prefix. "wpgmza_categories";
|
160 |
$wpgmza_tblname_category_maps = $wpdb->prefix. "wpgmza_category_maps";
|
161 |
+
$wpgmza_version = "6.1.9";
|
162 |
+
$wpgmza_p_version = "6.1.9";
|
163 |
$wpgmza_t = "basic";
|
164 |
define("WPGMAPS", $wpgmza_version);
|
165 |
define("WPGMAPS_DIR",plugin_dir_url(__FILE__));
|