Version Description
- French language added.
- Special characters bugs fixed.
Download this release
Release Info
Developer | alaingg |
Plugin | Google Map Shortcode |
Version | 2.2.3 |
Comparing to | |
See all releases |
Code changes from version 2.2.2 to 2.2.3
- google-map-shortcode.php +4 -3
- include/class.gmshc_point.php +1 -1
- include/class.gmshc_post_points.php +1 -1
- include/functions.php +10 -8
- languages/google-map-sc-fr_FR.mo +0 -0
- languages/google-map-sc-fr_FR.po +584 -0
- readme.txt +8 -3
- styles/gmshc-admin-styles.css +9 -2
google-map-shortcode.php
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
/*
|
3 |
Plugin Name: Google Map Shortcode
|
4 |
Plugin URI: http://web-argument.com/google-map-shortcode-wordpress-plugin/
|
5 |
-
Description: Include Google
|
6 |
-
Version: 2.2.
|
7 |
Author: Alain Gonzalez
|
8 |
Author URI: http://web-argument.com/
|
9 |
*/
|
@@ -26,7 +26,7 @@ Author URI: http://web-argument.com/
|
|
26 |
|
27 |
define('GMSC_PLUGIN_DIR', WP_PLUGIN_DIR."/".dirname(plugin_basename(__FILE__)));
|
28 |
define('GMSC_PLUGIN_URL', WP_PLUGIN_URL."/".dirname(plugin_basename(__FILE__)));
|
29 |
-
define('GMSHC_VERSION_CURRENT','2.2.
|
30 |
define('GMSHC_VERSION_CHECK','2.2');
|
31 |
|
32 |
require(GMSC_PLUGIN_DIR."/include/functions.php");
|
@@ -150,6 +150,7 @@ add_shortcode('google-map-sc', 'gmshc_sc');
|
|
150 |
|
151 |
function gmshc_sc($atts) {
|
152 |
|
|
|
153 |
$options = get_gmshc_options();
|
154 |
|
155 |
$width = $options['width'];
|
2 |
/*
|
3 |
Plugin Name: Google Map Shortcode
|
4 |
Plugin URI: http://web-argument.com/google-map-shortcode-wordpress-plugin/
|
5 |
+
Description: Include Google Maps in your blogs with just one click.
|
6 |
+
Version: 2.2.3
|
7 |
Author: Alain Gonzalez
|
8 |
Author URI: http://web-argument.com/
|
9 |
*/
|
26 |
|
27 |
define('GMSC_PLUGIN_DIR', WP_PLUGIN_DIR."/".dirname(plugin_basename(__FILE__)));
|
28 |
define('GMSC_PLUGIN_URL', WP_PLUGIN_URL."/".dirname(plugin_basename(__FILE__)));
|
29 |
+
define('GMSHC_VERSION_CURRENT','2.2.3');
|
30 |
define('GMSHC_VERSION_CHECK','2.2');
|
31 |
|
32 |
require(GMSC_PLUGIN_DIR."/include/functions.php");
|
150 |
|
151 |
function gmshc_sc($atts) {
|
152 |
|
153 |
+
global $post;
|
154 |
$options = get_gmshc_options();
|
155 |
|
156 |
$width = $options['width'];
|
include/class.gmshc_point.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Google Map Shortcode
|
4 |
-
* Version: 2.2.
|
5 |
* Author: Alain Gonzalez
|
6 |
* Plugin URI: http://web-argument.com/google-map-shortcode-wordpress-plugin/
|
7 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
* Google Map Shortcode
|
4 |
+
* Version: 2.2.3
|
5 |
* Author: Alain Gonzalez
|
6 |
* Plugin URI: http://web-argument.com/google-map-shortcode-wordpress-plugin/
|
7 |
*/
|
include/class.gmshc_post_points.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Google Map Shortcode
|
4 |
-
* Version: 2.2.
|
5 |
* Author: Alain Gonzalez
|
6 |
* Plugin URI: http://web-argument.com/google-map-shortcode-wordpress-plugin/
|
7 |
*/
|
1 |
<?php
|
2 |
/**
|
3 |
* Google Map Shortcode
|
4 |
+
* Version: 2.2.3
|
5 |
* Author: Alain Gonzalez
|
6 |
* Plugin URI: http://web-argument.com/google-map-shortcode-wordpress-plugin/
|
7 |
*/
|
include/functions.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Google Map Shortcode
|
4 |
-
* Version: 2.2.
|
5 |
* Author: Alain Gonzalez
|
6 |
* Plugin URI: http://web-argument.com/google-map-shortcode-wordpress-plugin/
|
7 |
*/
|
@@ -127,9 +127,9 @@ function gmshc_get_windowhtml(&$point) {
|
|
127 |
|
128 |
function gmshc_stripslashes_deep($value)
|
129 |
{
|
130 |
-
$value = is_array($value) ?
|
131 |
-
array_map('
|
132 |
-
|
133 |
|
134 |
return $value;
|
135 |
}
|
@@ -246,7 +246,7 @@ function gmshc_deploy_icons(){
|
|
246 |
</div>
|
247 |
<?php } ?>
|
248 |
</div>
|
249 |
-
<div id="icon_credit"><?php _e("Powered
|
250 |
<?php
|
251 |
}
|
252 |
|
@@ -271,7 +271,8 @@ function gmshc_get_points($post_id) {
|
|
271 |
} else {
|
272 |
|
273 |
/** checking for old custom fields **/
|
274 |
-
$post_data_address = get_post_meta($post_id,'google-map-sc-address');
|
|
|
275 |
|
276 |
if (count($post_data_address) > 0) {
|
277 |
$options = get_gmshc_options();
|
@@ -279,7 +280,7 @@ function gmshc_get_points($post_id) {
|
|
279 |
$post_title = get_the_title($post_id);
|
280 |
foreach ($post_data_address as $point_address){
|
281 |
$point_obj = new GMSHC_Point();
|
282 |
-
if ($point_obj -> create_point($point_address,"",$post_title,"",$default_icon,"",$post_id)){
|
283 |
|
284 |
array_push($post_points,$point_obj);
|
285 |
}
|
@@ -290,7 +291,8 @@ function gmshc_get_points($post_id) {
|
|
290 |
|
291 |
}
|
292 |
|
293 |
-
return $post_points;
|
|
|
294 |
}
|
295 |
|
296 |
|
1 |
<?php
|
2 |
/**
|
3 |
* Google Map Shortcode
|
4 |
+
* Version: 2.2.3
|
5 |
* Author: Alain Gonzalez
|
6 |
* Plugin URI: http://web-argument.com/google-map-shortcode-wordpress-plugin/
|
7 |
*/
|
127 |
|
128 |
function gmshc_stripslashes_deep($value)
|
129 |
{
|
130 |
+
$value = is_array($value) ?
|
131 |
+
array_map('gmshc_stripslashes_deep', $value) :
|
132 |
+
gmshc_clean_string($value);
|
133 |
|
134 |
return $value;
|
135 |
}
|
246 |
</div>
|
247 |
<?php } ?>
|
248 |
</div>
|
249 |
+
<div id="icon_credit"><span><?php _e("Powered by","google-map-sc"); ?></span><a href="http://mapicons.nicolasmollet.com" target="_blank"><img src="<?php echo GMSC_PLUGIN_URL ?>/images/miclogo-88x31.gif" /></a></div>
|
250 |
<?php
|
251 |
}
|
252 |
|
271 |
} else {
|
272 |
|
273 |
/** checking for old custom fields **/
|
274 |
+
$post_data_address = get_post_meta($post_id,'google-map-sc-address');
|
275 |
+
|
276 |
|
277 |
if (count($post_data_address) > 0) {
|
278 |
$options = get_gmshc_options();
|
280 |
$post_title = get_the_title($post_id);
|
281 |
foreach ($post_data_address as $point_address){
|
282 |
$point_obj = new GMSHC_Point();
|
283 |
+
if ($point_obj -> create_point(gmshc_clean_string($point_address),"",$post_title,"",$default_icon,"",$post_id,true)){
|
284 |
|
285 |
array_push($post_points,$point_obj);
|
286 |
}
|
291 |
|
292 |
}
|
293 |
|
294 |
+
return $post_points;
|
295 |
+
|
296 |
}
|
297 |
|
298 |
|
languages/google-map-sc-fr_FR.mo
ADDED
Binary file
|
languages/google-map-sc-fr_FR.po
ADDED
@@ -0,0 +1,584 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: google_map_sc\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-08-23 13:39-0500\n"
|
6 |
+
"PO-Revision-Date: 2011-08-30 21:36+0100\n"
|
7 |
+
"Last-Translator: Nicolas Mollet <nico.mollet@gmail.com>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
+
"X-Poedit-Basepath: C:\\server\\www\\myserver.dev\\public_html\\wp31\\wp-content\\plugins\\\n"
|
14 |
+
"X-Poedit-SearchPath-0: google-map-shortcode\n"
|
15 |
+
|
16 |
+
#: google-map-shortcode/google-map-shortcode.php:227
|
17 |
+
msgid "There is not points to locate on the map"
|
18 |
+
msgstr "Il n'y a pas de point à localiser sur la carte"
|
19 |
+
|
20 |
+
#: google-map-shortcode/google-map-shortcode.php:245
|
21 |
+
#: google-map-shortcode/google-map-shortcode.php:900
|
22 |
+
msgid "Google Map Shortcode"
|
23 |
+
msgstr "Google map Shortcode"
|
24 |
+
|
25 |
+
#: google-map-shortcode/google-map-shortcode.php:301
|
26 |
+
msgid "The Address can't be located."
|
27 |
+
msgstr "L'adresse ne peut pas être localisée."
|
28 |
+
|
29 |
+
#: google-map-shortcode/google-map-shortcode.php:307
|
30 |
+
msgid "The Point was updated."
|
31 |
+
msgstr "Le point a été mise à jour."
|
32 |
+
|
33 |
+
#: google-map-shortcode/google-map-shortcode.php:308
|
34 |
+
msgid "The Points can't be updated."
|
35 |
+
msgstr "Le point ne peut pas être mise à jour."
|
36 |
+
|
37 |
+
#: google-map-shortcode/google-map-shortcode.php:313
|
38 |
+
msgid "The Point was deleted."
|
39 |
+
msgstr "Le point a été supprimé"
|
40 |
+
|
41 |
+
#: google-map-shortcode/google-map-shortcode.php:339
|
42 |
+
msgid "Add New Point"
|
43 |
+
msgstr "Ajouter un point"
|
44 |
+
|
45 |
+
#: google-map-shortcode/google-map-shortcode.php:344
|
46 |
+
msgid "Title"
|
47 |
+
msgstr "Titre"
|
48 |
+
|
49 |
+
#: google-map-shortcode/google-map-shortcode.php:352
|
50 |
+
msgid "Description"
|
51 |
+
msgstr "Description"
|
52 |
+
|
53 |
+
#: google-map-shortcode/google-map-shortcode.php:360
|
54 |
+
msgid "Full Address"
|
55 |
+
msgstr "Adresse complète"
|
56 |
+
|
57 |
+
#: google-map-shortcode/google-map-shortcode.php:378
|
58 |
+
msgid "Select the thumbnail by clicking on the images"
|
59 |
+
msgstr "Choisir une vignette en cliquant sur les images"
|
60 |
+
|
61 |
+
#: google-map-shortcode/google-map-shortcode.php:390
|
62 |
+
msgid "Thumbnail: "
|
63 |
+
msgstr "Vignette :"
|
64 |
+
|
65 |
+
#: google-map-shortcode/google-map-shortcode.php:390
|
66 |
+
msgid "If you want to attach an image to the point you need to upload it first to the post gallery"
|
67 |
+
msgstr "Si vous voulez attacher une une image au point, vous devez charger une image à la galerie de l'article"
|
68 |
+
|
69 |
+
#: google-map-shortcode/google-map-shortcode.php:393
|
70 |
+
msgid "Upload Images"
|
71 |
+
msgstr "Envoyer des images"
|
72 |
+
|
73 |
+
#: google-map-shortcode/google-map-shortcode.php:393
|
74 |
+
#: google-map-shortcode/google-map-shortcode.php:471
|
75 |
+
msgid "Add Point"
|
76 |
+
msgstr "Ajouter un point"
|
77 |
+
|
78 |
+
#: google-map-shortcode/google-map-shortcode.php:399
|
79 |
+
msgid "Map Configuration"
|
80 |
+
msgstr "Configuration de la carte"
|
81 |
+
|
82 |
+
#: google-map-shortcode/google-map-shortcode.php:403
|
83 |
+
#: google-map-shortcode/google-map-shortcode.php:669
|
84 |
+
msgid "Width"
|
85 |
+
msgstr "Largeur"
|
86 |
+
|
87 |
+
#: google-map-shortcode/google-map-shortcode.php:407
|
88 |
+
#: google-map-shortcode/google-map-shortcode.php:673
|
89 |
+
msgid "Height"
|
90 |
+
msgstr "Hauteur"
|
91 |
+
|
92 |
+
#: google-map-shortcode/google-map-shortcode.php:411
|
93 |
+
#: google-map-shortcode/google-map-shortcode.php:677
|
94 |
+
msgid "Margin"
|
95 |
+
msgstr "Marges"
|
96 |
+
|
97 |
+
#: google-map-shortcode/google-map-shortcode.php:415
|
98 |
+
#: google-map-shortcode/google-map-shortcode.php:681
|
99 |
+
msgid "Align"
|
100 |
+
msgstr "Alignement"
|
101 |
+
|
102 |
+
#: google-map-shortcode/google-map-shortcode.php:417
|
103 |
+
#: google-map-shortcode/google-map-shortcode.php:683
|
104 |
+
msgid "left"
|
105 |
+
msgstr "gauche"
|
106 |
+
|
107 |
+
#: google-map-shortcode/google-map-shortcode.php:418
|
108 |
+
#: google-map-shortcode/google-map-shortcode.php:684
|
109 |
+
msgid "center"
|
110 |
+
msgstr "centré"
|
111 |
+
|
112 |
+
#: google-map-shortcode/google-map-shortcode.php:419
|
113 |
+
#: google-map-shortcode/google-map-shortcode.php:685
|
114 |
+
msgid "right"
|
115 |
+
msgstr "droite"
|
116 |
+
|
117 |
+
#: google-map-shortcode/google-map-shortcode.php:422
|
118 |
+
#: google-map-shortcode/google-map-shortcode.php:688
|
119 |
+
msgid "Zoom"
|
120 |
+
msgstr "Zoomer"
|
121 |
+
|
122 |
+
#: google-map-shortcode/google-map-shortcode.php:431
|
123 |
+
msgid "Maps Type"
|
124 |
+
msgstr "Types de carte"
|
125 |
+
|
126 |
+
#: google-map-shortcode/google-map-shortcode.php:434
|
127 |
+
#: google-map-shortcode/google-map-shortcode.php:700
|
128 |
+
msgid "ROADMAP - Displays a normal street map"
|
129 |
+
msgstr "ROADMAP - Affiche une carte des rues/routes"
|
130 |
+
|
131 |
+
#: google-map-shortcode/google-map-shortcode.php:435
|
132 |
+
#: google-map-shortcode/google-map-shortcode.php:701
|
133 |
+
msgid "SATELLITE - Displays satellite images"
|
134 |
+
msgstr "SATELLITE - Affiche les images satellite"
|
135 |
+
|
136 |
+
#: google-map-shortcode/google-map-shortcode.php:436
|
137 |
+
#: google-map-shortcode/google-map-shortcode.php:702
|
138 |
+
msgid "TERRAIN - Displays maps with physical features such as terrain and vegetation"
|
139 |
+
msgstr "TERRAIN - Affiche les données géographiques (nivellement, végétation)"
|
140 |
+
|
141 |
+
#: google-map-shortcode/google-map-shortcode.php:437
|
142 |
+
#: google-map-shortcode/google-map-shortcode.php:703
|
143 |
+
msgid "HYBRID - Displays a transparent layer of major streets on satellite images"
|
144 |
+
msgstr "HYBRID - Affiche un calque transparent des rues principales, sur des images satellite"
|
145 |
+
|
146 |
+
#: google-map-shortcode/google-map-shortcode.php:442
|
147 |
+
msgid "Focus"
|
148 |
+
msgstr "Focus"
|
149 |
+
|
150 |
+
#: google-map-shortcode/google-map-shortcode.php:445
|
151 |
+
msgid "None"
|
152 |
+
msgstr "Aucun"
|
153 |
+
|
154 |
+
#: google-map-shortcode/google-map-shortcode.php:447
|
155 |
+
msgid "All"
|
156 |
+
msgstr "Tout"
|
157 |
+
|
158 |
+
#: google-map-shortcode/google-map-shortcode.php:454
|
159 |
+
msgid "Select the point to be focused after loading the map"
|
160 |
+
msgstr "Sélectionner le point à mettre en avant après le chargement de la carte"
|
161 |
+
|
162 |
+
#: google-map-shortcode/google-map-shortcode.php:458
|
163 |
+
#: google-map-shortcode/google-map-shortcode.php:783
|
164 |
+
msgid "Focus Type"
|
165 |
+
msgstr "Type de focus"
|
166 |
+
|
167 |
+
#: google-map-shortcode/google-map-shortcode.php:461
|
168 |
+
#: google-map-shortcode/google-map-shortcode.php:786
|
169 |
+
msgid "Open Markers"
|
170 |
+
msgstr "Ouvrir les marqueurs"
|
171 |
+
|
172 |
+
#: google-map-shortcode/google-map-shortcode.php:462
|
173 |
+
#: google-map-shortcode/google-map-shortcode.php:787
|
174 |
+
msgid "Center Markers"
|
175 |
+
msgstr "Centrer les marqueurs"
|
176 |
+
|
177 |
+
#: google-map-shortcode/google-map-shortcode.php:472
|
178 |
+
#: google-map-shortcode/google-map-shortcode.php:531
|
179 |
+
msgid "Insert Map"
|
180 |
+
msgstr "Insérer la carte"
|
181 |
+
|
182 |
+
#: google-map-shortcode/google-map-shortcode.php:473
|
183 |
+
msgid " Points Added"
|
184 |
+
msgstr "Points ajoutés"
|
185 |
+
|
186 |
+
#: google-map-shortcode/google-map-shortcode.php:485
|
187 |
+
msgid "Marker"
|
188 |
+
msgstr "Marqueur"
|
189 |
+
|
190 |
+
#: google-map-shortcode/google-map-shortcode.php:486
|
191 |
+
#: google-map-shortcode/google-map-shortcode.php:505
|
192 |
+
msgid "Thumbnail"
|
193 |
+
msgstr "Vignette"
|
194 |
+
|
195 |
+
#: google-map-shortcode/google-map-shortcode.php:487
|
196 |
+
msgid "Title/Description"
|
197 |
+
msgstr "Titre/Description"
|
198 |
+
|
199 |
+
#: google-map-shortcode/google-map-shortcode.php:488
|
200 |
+
msgid "Address/LtLg"
|
201 |
+
msgstr "Adresse/Longitude/Latitude"
|
202 |
+
|
203 |
+
#: google-map-shortcode/google-map-shortcode.php:499
|
204 |
+
msgid "Icon"
|
205 |
+
msgstr "Icône"
|
206 |
+
|
207 |
+
#: google-map-shortcode/google-map-shortcode.php:519
|
208 |
+
msgid "Update"
|
209 |
+
msgstr "Mettre à jour"
|
210 |
+
|
211 |
+
#: google-map-shortcode/google-map-shortcode.php:520
|
212 |
+
msgid "You will not be able to roll back deletion. Are you sure?"
|
213 |
+
msgstr "La suppression est définitive. Confirmer la suppression ?"
|
214 |
+
|
215 |
+
#: google-map-shortcode/google-map-shortcode.php:520
|
216 |
+
msgid "Delete"
|
217 |
+
msgstr "Supprimer"
|
218 |
+
|
219 |
+
#: google-map-shortcode/google-map-shortcode.php:531
|
220 |
+
msgid "Show Map"
|
221 |
+
msgstr "Afficher la carte"
|
222 |
+
|
223 |
+
#: google-map-shortcode/google-map-shortcode.php:531
|
224 |
+
msgid "Hide Map"
|
225 |
+
msgstr "Cacher la carte"
|
226 |
+
|
227 |
+
#: google-map-shortcode/google-map-shortcode.php:577
|
228 |
+
msgid "Google Map Shortcode Settings"
|
229 |
+
msgstr "Paramètres Google Map Shortcode"
|
230 |
+
|
231 |
+
#: google-map-shortcode/google-map-shortcode.php:629
|
232 |
+
#, php-format
|
233 |
+
msgid "Could not write file %1$s (%2$s)"
|
234 |
+
msgstr "Impossible d'écrire le fichier %1$s (%2$s)"
|
235 |
+
|
236 |
+
#: google-map-shortcode/google-map-shortcode.php:638
|
237 |
+
msgid "Please upload a valid file"
|
238 |
+
msgstr "S'il vous plait, envoyez un fichier valide"
|
239 |
+
|
240 |
+
#: google-map-shortcode/google-map-shortcode.php:663
|
241 |
+
msgid "Maps Default Configuration"
|
242 |
+
msgstr "Configuration par défaut des cartes"
|
243 |
+
|
244 |
+
#: google-map-shortcode/google-map-shortcode.php:665
|
245 |
+
msgid "The shortcode attributes overwrites these options."
|
246 |
+
msgstr "Les attributs du shortcode écrasent ces options."
|
247 |
+
|
248 |
+
#: google-map-shortcode/google-map-shortcode.php:697
|
249 |
+
msgid "Maps Default Type"
|
250 |
+
msgstr "Type de carte par défaut"
|
251 |
+
|
252 |
+
#: google-map-shortcode/google-map-shortcode.php:708
|
253 |
+
msgid "Select Language"
|
254 |
+
msgstr "Choisir la langue"
|
255 |
+
|
256 |
+
#: google-map-shortcode/google-map-shortcode.php:712
|
257 |
+
msgid "ARABIC"
|
258 |
+
msgstr ""
|
259 |
+
|
260 |
+
#: google-map-shortcode/google-map-shortcode.php:713
|
261 |
+
#: google-map-shortcode/google-map-shortcode.php:725
|
262 |
+
msgid "BASQUE"
|
263 |
+
msgstr ""
|
264 |
+
|
265 |
+
#: google-map-shortcode/google-map-shortcode.php:714
|
266 |
+
msgid "BULGARIAN"
|
267 |
+
msgstr ""
|
268 |
+
|
269 |
+
#: google-map-shortcode/google-map-shortcode.php:715
|
270 |
+
msgid "BENGALI"
|
271 |
+
msgstr ""
|
272 |
+
|
273 |
+
#: google-map-shortcode/google-map-shortcode.php:716
|
274 |
+
msgid "CATALAN"
|
275 |
+
msgstr ""
|
276 |
+
|
277 |
+
#: google-map-shortcode/google-map-shortcode.php:717
|
278 |
+
msgid "CZECH"
|
279 |
+
msgstr ""
|
280 |
+
|
281 |
+
#: google-map-shortcode/google-map-shortcode.php:718
|
282 |
+
msgid "DANISH"
|
283 |
+
msgstr ""
|
284 |
+
|
285 |
+
#: google-map-shortcode/google-map-shortcode.php:719
|
286 |
+
msgid "GERMAN"
|
287 |
+
msgstr ""
|
288 |
+
|
289 |
+
#: google-map-shortcode/google-map-shortcode.php:720
|
290 |
+
msgid "GREEK"
|
291 |
+
msgstr ""
|
292 |
+
|
293 |
+
#: google-map-shortcode/google-map-shortcode.php:721
|
294 |
+
msgid "ENGLISH"
|
295 |
+
msgstr ""
|
296 |
+
|
297 |
+
#: google-map-shortcode/google-map-shortcode.php:722
|
298 |
+
msgid "ENGLISH (AUSTRALIAN)"
|
299 |
+
msgstr ""
|
300 |
+
|
301 |
+
#: google-map-shortcode/google-map-shortcode.php:723
|
302 |
+
msgid "ENGLISH (GREAT BRITAIN)"
|
303 |
+
msgstr ""
|
304 |
+
|
305 |
+
#: google-map-shortcode/google-map-shortcode.php:724
|
306 |
+
msgid "SPANISH"
|
307 |
+
msgstr ""
|
308 |
+
|
309 |
+
#: google-map-shortcode/google-map-shortcode.php:726
|
310 |
+
msgid "FARSI"
|
311 |
+
msgstr ""
|
312 |
+
|
313 |
+
#: google-map-shortcode/google-map-shortcode.php:727
|
314 |
+
msgid "FINNISH"
|
315 |
+
msgstr ""
|
316 |
+
|
317 |
+
#: google-map-shortcode/google-map-shortcode.php:728
|
318 |
+
msgid "FILIPINO"
|
319 |
+
msgstr ""
|
320 |
+
|
321 |
+
#: google-map-shortcode/google-map-shortcode.php:729
|
322 |
+
msgid "FRENCH"
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: google-map-shortcode/google-map-shortcode.php:730
|
326 |
+
msgid "GALICIAN"
|
327 |
+
msgstr ""
|
328 |
+
|
329 |
+
#: google-map-shortcode/google-map-shortcode.php:731
|
330 |
+
msgid "GUJARATI"
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
+
#: google-map-shortcode/google-map-shortcode.php:732
|
334 |
+
msgid "HINDI"
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
+
#: google-map-shortcode/google-map-shortcode.php:733
|
338 |
+
msgid "CROATIAN"
|
339 |
+
msgstr ""
|
340 |
+
|
341 |
+
#: google-map-shortcode/google-map-shortcode.php:734
|
342 |
+
msgid "HUNGARIAN"
|
343 |
+
msgstr ""
|
344 |
+
|
345 |
+
#: google-map-shortcode/google-map-shortcode.php:735
|
346 |
+
msgid "INDONESIAN"
|
347 |
+
msgstr ""
|
348 |
+
|
349 |
+
#: google-map-shortcode/google-map-shortcode.php:736
|
350 |
+
msgid "ITALIAN"
|
351 |
+
msgstr ""
|
352 |
+
|
353 |
+
#: google-map-shortcode/google-map-shortcode.php:737
|
354 |
+
msgid "HEBREW"
|
355 |
+
msgstr ""
|
356 |
+
|
357 |
+
#: google-map-shortcode/google-map-shortcode.php:738
|
358 |
+
msgid "JAPANESE"
|
359 |
+
msgstr ""
|
360 |
+
|
361 |
+
#: google-map-shortcode/google-map-shortcode.php:739
|
362 |
+
msgid "KANNADA"
|
363 |
+
msgstr ""
|
364 |
+
|
365 |
+
#: google-map-shortcode/google-map-shortcode.php:740
|
366 |
+
msgid "KOREAN"
|
367 |
+
msgstr ""
|
368 |
+
|
369 |
+
#: google-map-shortcode/google-map-shortcode.php:741
|
370 |
+
msgid "LITHUANIAN"
|
371 |
+
msgstr ""
|
372 |
+
|
373 |
+
#: google-map-shortcode/google-map-shortcode.php:742
|
374 |
+
msgid "LATVIAN"
|
375 |
+
msgstr ""
|
376 |
+
|
377 |
+
#: google-map-shortcode/google-map-shortcode.php:743
|
378 |
+
msgid "MALAYALAM"
|
379 |
+
msgstr ""
|
380 |
+
|
381 |
+
#: google-map-shortcode/google-map-shortcode.php:744
|
382 |
+
msgid "MARATHI"
|
383 |
+
msgstr ""
|
384 |
+
|
385 |
+
#: google-map-shortcode/google-map-shortcode.php:745
|
386 |
+
msgid "DUTCH"
|
387 |
+
msgstr ""
|
388 |
+
|
389 |
+
#: google-map-shortcode/google-map-shortcode.php:746
|
390 |
+
msgid "NORWEGIAN"
|
391 |
+
msgstr ""
|
392 |
+
|
393 |
+
#: google-map-shortcode/google-map-shortcode.php:747
|
394 |
+
msgid "ORIYA"
|
395 |
+
msgstr ""
|
396 |
+
|
397 |
+
#: google-map-shortcode/google-map-shortcode.php:748
|
398 |
+
msgid "POLISH"
|
399 |
+
msgstr ""
|
400 |
+
|
401 |
+
#: google-map-shortcode/google-map-shortcode.php:749
|
402 |
+
msgid "PORTUGUESE"
|
403 |
+
msgstr ""
|
404 |
+
|
405 |
+
#: google-map-shortcode/google-map-shortcode.php:750
|
406 |
+
msgid "PORTUGUESE (BRAZIL)"
|
407 |
+
msgstr ""
|
408 |
+
|
409 |
+
#: google-map-shortcode/google-map-shortcode.php:751
|
410 |
+
msgid "PORTUGUESE (PORTUGAL)"
|
411 |
+
msgstr ""
|
412 |
+
|
413 |
+
#: google-map-shortcode/google-map-shortcode.php:752
|
414 |
+
msgid "ROMANIAN"
|
415 |
+
msgstr ""
|
416 |
+
|
417 |
+
#: google-map-shortcode/google-map-shortcode.php:753
|
418 |
+
msgid "RUSSIAN"
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: google-map-shortcode/google-map-shortcode.php:754
|
422 |
+
msgid "SLOVAK"
|
423 |
+
msgstr ""
|
424 |
+
|
425 |
+
#: google-map-shortcode/google-map-shortcode.php:755
|
426 |
+
msgid "SLOVENIAN"
|
427 |
+
msgstr ""
|
428 |
+
|
429 |
+
#: google-map-shortcode/google-map-shortcode.php:756
|
430 |
+
msgid "SERBIAN"
|
431 |
+
msgstr ""
|
432 |
+
|
433 |
+
#: google-map-shortcode/google-map-shortcode.php:757
|
434 |
+
msgid "SWEDISH"
|
435 |
+
msgstr ""
|
436 |
+
|
437 |
+
#: google-map-shortcode/google-map-shortcode.php:758
|
438 |
+
msgid "TAGALOG"
|
439 |
+
msgstr ""
|
440 |
+
|
441 |
+
#: google-map-shortcode/google-map-shortcode.php:759
|
442 |
+
msgid "TAMIL"
|
443 |
+
msgstr ""
|
444 |
+
|
445 |
+
#: google-map-shortcode/google-map-shortcode.php:760
|
446 |
+
msgid "TELUGU"
|
447 |
+
msgstr ""
|
448 |
+
|
449 |
+
#: google-map-shortcode/google-map-shortcode.php:761
|
450 |
+
msgid "THAI"
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: google-map-shortcode/google-map-shortcode.php:762
|
454 |
+
msgid "TURKISH"
|
455 |
+
msgstr ""
|
456 |
+
|
457 |
+
#: google-map-shortcode/google-map-shortcode.php:763
|
458 |
+
msgid "UKRAINIAN"
|
459 |
+
msgstr ""
|
460 |
+
|
461 |
+
#: google-map-shortcode/google-map-shortcode.php:764
|
462 |
+
msgid "VIETNAMESE"
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
#: google-map-shortcode/google-map-shortcode.php:765
|
466 |
+
msgid "CHINESE (SIMPLIFIED)"
|
467 |
+
msgstr ""
|
468 |
+
|
469 |
+
#: google-map-shortcode/google-map-shortcode.php:766
|
470 |
+
msgid "CHINESE (TRADITIONAL)"
|
471 |
+
msgstr ""
|
472 |
+
|
473 |
+
#: google-map-shortcode/google-map-shortcode.php:778
|
474 |
+
msgid "Circle"
|
475 |
+
msgstr "Cercle"
|
476 |
+
|
477 |
+
#: google-map-shortcode/google-map-shortcode.php:780
|
478 |
+
msgid " Check if you want to focus all the map's points automatically with an interval of <br /><br />"
|
479 |
+
msgstr "Cocher si vous voulez mettre en avant tous les points de la carte automatiquement avec une intervalle de <br/><br/>"
|
480 |
+
|
481 |
+
#: google-map-shortcode/google-map-shortcode.php:780
|
482 |
+
msgid "milliseconds."
|
483 |
+
msgstr "millisecondes."
|
484 |
+
|
485 |
+
#: google-map-shortcode/google-map-shortcode.php:792
|
486 |
+
msgid "Animation"
|
487 |
+
msgstr "Animation"
|
488 |
+
|
489 |
+
#: google-map-shortcode/google-map-shortcode.php:793
|
490 |
+
msgid " Check if you want to animate the markes."
|
491 |
+
msgstr "Cocher si vous voulez animer les marqueurs"
|
492 |
+
|
493 |
+
#: google-map-shortcode/google-map-shortcode.php:801
|
494 |
+
msgid "Markers"
|
495 |
+
msgstr "Marqueurs"
|
496 |
+
|
497 |
+
#: google-map-shortcode/google-map-shortcode.php:813
|
498 |
+
msgid "To include new icons just specify the file location:"
|
499 |
+
msgstr "Pour inclure de nouvelles icônes, indiquez l'emplacement des fichiers :"
|
500 |
+
|
501 |
+
#: google-map-shortcode/google-map-shortcode.php:823
|
502 |
+
msgid "Info Windows"
|
503 |
+
msgstr "Fenêtre d'informations"
|
504 |
+
|
505 |
+
#: google-map-shortcode/google-map-shortcode.php:825
|
506 |
+
msgid "This is the html of the Info Window opened from the markers."
|
507 |
+
msgstr "C'est le HTML de la fenêtre d'informations ouverte à partir des marqueurs"
|
508 |
+
|
509 |
+
#: google-map-shortcode/google-map-shortcode.php:829
|
510 |
+
msgid "Previews"
|
511 |
+
msgstr "Prévisualiser"
|
512 |
+
|
513 |
+
#: google-map-shortcode/google-map-shortcode.php:835
|
514 |
+
msgid "Custom Html"
|
515 |
+
msgstr "HTML personalisé"
|
516 |
+
|
517 |
+
#: google-map-shortcode/google-map-shortcode.php:847
|
518 |
+
msgid "The following tags can be used."
|
519 |
+
msgstr "Les balises suivantes peuvent être utilisées"
|
520 |
+
|
521 |
+
#: google-map-shortcode/google-map-shortcode.php:851
|
522 |
+
msgid "Custom title of the point"
|
523 |
+
msgstr "Titre personnalisé du point"
|
524 |
+
|
525 |
+
#: google-map-shortcode/google-map-shortcode.php:855
|
526 |
+
msgid "Permanet Link of the post where the point is attached"
|
527 |
+
msgstr "Lien permanent de l'article, où le point est attaché"
|
528 |
+
|
529 |
+
#: google-map-shortcode/google-map-shortcode.php:859
|
530 |
+
msgid "Thubnail attached to the point"
|
531 |
+
msgstr "Vignette attachée au point"
|
532 |
+
|
533 |
+
#: google-map-shortcode/google-map-shortcode.php:863
|
534 |
+
msgid "Description of the point"
|
535 |
+
msgstr "Description du point"
|
536 |
+
|
537 |
+
#: google-map-shortcode/google-map-shortcode.php:867
|
538 |
+
msgid "Excerpt of the post where the point is attached"
|
539 |
+
msgstr "Extrait de l'article où le point est attaché"
|
540 |
+
|
541 |
+
#: google-map-shortcode/google-map-shortcode.php:871
|
542 |
+
msgid "The address of this point"
|
543 |
+
msgstr "L'adresse du point"
|
544 |
+
|
545 |
+
#: google-map-shortcode/google-map-shortcode.php:875
|
546 |
+
msgid "Open this point on Google Map"
|
547 |
+
msgstr "Ouvrir ce point sur Google Maps"
|
548 |
+
|
549 |
+
#: google-map-shortcode/google-map-shortcode.php:879
|
550 |
+
msgid "Info Html width"
|
551 |
+
msgstr "Largeur de la fenêtre d'informations"
|
552 |
+
|
553 |
+
#: google-map-shortcode/google-map-shortcode.php:885
|
554 |
+
msgid "Restore Default"
|
555 |
+
msgstr "Revenir à la configuration par défaut"
|
556 |
+
|
557 |
+
#: google-map-shortcode/google-map-shortcode.php:909
|
558 |
+
msgid "Plugin Page"
|
559 |
+
msgstr "URL du plugin"
|
560 |
+
|
561 |
+
#: google-map-shortcode/google-map-shortcode.php:910
|
562 |
+
msgid "How To Use"
|
563 |
+
msgstr "Comment utiliser"
|
564 |
+
|
565 |
+
#: google-map-shortcode/google-map-shortcode.php:911
|
566 |
+
msgid "Shortcode Reference"
|
567 |
+
msgstr "Manuel d'utilisation du shortcode"
|
568 |
+
|
569 |
+
#: google-map-shortcode/google-map-shortcode.php:912
|
570 |
+
msgid "Examples"
|
571 |
+
msgstr "Exemples"
|
572 |
+
|
573 |
+
#: google-map-shortcode/google-map-shortcode.php:913
|
574 |
+
msgid "Donate"
|
575 |
+
msgstr "Faire une donation"
|
576 |
+
|
577 |
+
#: google-map-shortcode/include/functions.php:240
|
578 |
+
msgid "Select the marker by clicking on the images"
|
579 |
+
msgstr "Sélectionner le marqueur en cliquant sur les images"
|
580 |
+
|
581 |
+
#: google-map-shortcode/include/functions.php:353
|
582 |
+
msgid "The Point can't be added, <strong>php_curl.dll</strong> is not installed on your server and <strong>allow_url_fopen</strong> is disabled."
|
583 |
+
msgstr "Le point ne peut pas être ajouté, <strong>php_curl.dll</strong> n'est pas installé sur votre serveur et <strong>allow_url_fopen</strong> est désactivé."
|
584 |
+
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=suppo
|
|
4 |
Tags: google maps, shortcode, map, maps, categories, widget, post map, point, marker, list, location, address, images, geocoder, google maps, animation
|
5 |
Requires at least: 2.5
|
6 |
Tested up to: 3.2.1
|
7 |
-
Stable tag: 2.2.
|
8 |
|
9 |
Real Friendly integration of Google Map instances into your blogs. The plugin allows to display multiple maps on your pages.
|
10 |
== Description ==
|
@@ -29,8 +29,9 @@ Special Features:
|
|
29 |
|
30 |
Plugin Languages:
|
31 |
|
32 |
-
* English
|
33 |
-
*
|
|
|
34 |
|
35 |
Please contact me [alaingoga at gmail] in order to include your language within the plugin package.
|
36 |
|
@@ -61,6 +62,10 @@ Yes, you can use different laguages address.
|
|
61 |
|
62 |
== Changelog ==
|
63 |
|
|
|
|
|
|
|
|
|
64 |
= 2.2.2 =
|
65 |
* Internationalization added.
|
66 |
* Special characters bugs fixed.
|
4 |
Tags: google maps, shortcode, map, maps, categories, widget, post map, point, marker, list, location, address, images, geocoder, google maps, animation
|
5 |
Requires at least: 2.5
|
6 |
Tested up to: 3.2.1
|
7 |
+
Stable tag: 2.2.3
|
8 |
|
9 |
Real Friendly integration of Google Map instances into your blogs. The plugin allows to display multiple maps on your pages.
|
10 |
== Description ==
|
29 |
|
30 |
Plugin Languages:
|
31 |
|
32 |
+
* English - default
|
33 |
+
* French - Thanks to [Nicolas Mollet](http://mapicons.nicolasmollet.com)
|
34 |
+
* Spanish - Thanks to [Alain Gonzalez](http://web-argument.com)
|
35 |
|
36 |
Please contact me [alaingoga at gmail] in order to include your language within the plugin package.
|
37 |
|
62 |
|
63 |
== Changelog ==
|
64 |
|
65 |
+
= 2.2.3 =
|
66 |
+
* French language added.
|
67 |
+
* Special characters bugs fixed.
|
68 |
+
|
69 |
= 2.2.2 =
|
70 |
* Internationalization added.
|
71 |
* Special characters bugs fixed.
|
styles/gmshc-admin-styles.css
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
/**
|
2 |
* Google Map Shortcode
|
3 |
-
* Version: 2.2.
|
4 |
* Author: Alain Gonzalez
|
5 |
* Plugin URI: http://web-argument.com/google-map-shortcode-wordpress-plugin/
|
6 |
*/
|
@@ -90,6 +90,13 @@ body#media-upload ul#sidemenu {
|
|
90 |
#icon_credit {
|
91 |
clear: both;
|
92 |
overflow: hidden;
|
93 |
-
margin-left:
|
94 |
padding-top: 10px;
|
95 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
/**
|
2 |
* Google Map Shortcode
|
3 |
+
* Version: 2.2.3
|
4 |
* Author: Alain Gonzalez
|
5 |
* Plugin URI: http://web-argument.com/google-map-shortcode-wordpress-plugin/
|
6 |
*/
|
90 |
#icon_credit {
|
91 |
clear: both;
|
92 |
overflow: hidden;
|
93 |
+
margin-left: 422px;
|
94 |
padding-top: 10px;
|
95 |
}
|
96 |
+
|
97 |
+
#icon_credit span{
|
98 |
+
display: block;
|
99 |
+
float: left;
|
100 |
+
font-style: italic;
|
101 |
+
padding: 12px 5px 0;
|
102 |
+
}
|