Version Description
- Floating share buttons are now dislabed when "Show sharing buttons" is unchecked for a post/page
- French translation (by Jacques Soul)
Download this release
Release Info
Developer | micropat |
Plugin | AddToAny Share Buttons |
Version | 1.3.8 |
Comparing to | |
See all releases |
Code changes from version 1.3.7 to 1.3.8
- README.txt +6 -2
- add-to-any.php +14 -2
- languages/add-to-any-fr_FR.mo +0 -0
- languages/add-to-any-fr_FR.po +397 -307
README.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: micropat, addtoany
|
3 |
Tags: sharing, share, share this, bookmarking, social, share button, share buttons, share links, social share, social sharing, social bookmarking, social bookmarks, socialize, bookmark, bookmarks, save, Post, posts, page, pages, images, image, admin, statistics, stats, links, plugin, shortcode, sidebar, widget, responsive, email, e-mail, print, seo, button, delicious, google, tumblr, linkedin, digg, reddit, facebook, facebook share, facebook like, like, twitter, twitter button, twitter share, tweet, tweet button, +1, plus 1, google +1, google plus, google plus one, plus one, pinterest, pin, pin it, pinit, wanelo, buffer, stumbleupon, bitly, whatsapp, lockerz, addthis, sociable, sharedaddy, sharethis, shareaholic, icon, icons, vector, SVG, floating, floating buttons, wpmu, Add to Any, AddToAny
|
4 |
Requires at least: 2.8
|
5 |
-
Tested up to: 4.
|
6 |
-
Stable tag: 1.3.
|
7 |
|
8 |
Share buttons for WordPress including AddToAny's universal sharing button, Facebook, Twitter, Google+, Pinterest, WhatsApp and many more.
|
9 |
|
@@ -290,6 +290,10 @@ Upload the plugin directory (including all files and directories within) to the
|
|
290 |
|
291 |
== Changelog ==
|
292 |
|
|
|
|
|
|
|
|
|
293 |
= 1.3.7 =
|
294 |
* New <a href="https://www.addtoany.com/blog/new-universal-sharing-menu-design/">share menu</a> design for the universal share button!
|
295 |
* Floating share buttons code can be placed manually in theme files
|
2 |
Contributors: micropat, addtoany
|
3 |
Tags: sharing, share, share this, bookmarking, social, share button, share buttons, share links, social share, social sharing, social bookmarking, social bookmarks, socialize, bookmark, bookmarks, save, Post, posts, page, pages, images, image, admin, statistics, stats, links, plugin, shortcode, sidebar, widget, responsive, email, e-mail, print, seo, button, delicious, google, tumblr, linkedin, digg, reddit, facebook, facebook share, facebook like, like, twitter, twitter button, twitter share, tweet, tweet button, +1, plus 1, google +1, google plus, google plus one, plus one, pinterest, pin, pin it, pinit, wanelo, buffer, stumbleupon, bitly, whatsapp, lockerz, addthis, sociable, sharedaddy, sharethis, shareaholic, icon, icons, vector, SVG, floating, floating buttons, wpmu, Add to Any, AddToAny
|
4 |
Requires at least: 2.8
|
5 |
+
Tested up to: 4.1
|
6 |
+
Stable tag: 1.3.8
|
7 |
|
8 |
Share buttons for WordPress including AddToAny's universal sharing button, Facebook, Twitter, Google+, Pinterest, WhatsApp and many more.
|
9 |
|
290 |
|
291 |
== Changelog ==
|
292 |
|
293 |
+
= 1.3.8 =
|
294 |
+
* Floating share buttons are now dislabed when "Show sharing buttons" is unchecked for a post/page
|
295 |
+
* French translation (by Jacques Soulé)
|
296 |
+
|
297 |
= 1.3.7 =
|
298 |
* New <a href="https://www.addtoany.com/blog/new-universal-sharing-menu-design/">share menu</a> design for the universal share button!
|
299 |
* Floating share buttons code can be placed manually in theme files
|
add-to-any.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Share Buttons by AddToAny
|
4 |
Plugin URI: https://www.addtoany.com/
|
5 |
Description: Share buttons for your pages including AddToAny's universal sharing button, Facebook, Twitter, Google+, Pinterest, WhatsApp and many more. [<a href="options-general.php?page=add-to-any.php">Settings</a>]
|
6 |
-
Version: 1.3.
|
7 |
Author: AddToAny
|
8 |
Author URI: https://www.addtoany.com/
|
9 |
*/
|
@@ -534,11 +534,23 @@ function ADDTOANY_SHARE_SAVE_FLOATING( $args = array() ) {
|
|
534 |
$options = get_option( 'addtoany_options' );
|
535 |
|
536 |
$floating_html = '';
|
537 |
-
|
538 |
// Overridable by args below
|
539 |
$vertical_type = ( isset( $options['floating_vertical'] ) && 'none' != $options['floating_vertical'] ) ? $options['floating_vertical'] : false;
|
540 |
$horizontal_type = ( isset( $options['floating_horizontal'] ) && 'none' != $options['floating_horizontal'] ) ? $options['floating_horizontal'] : false;
|
541 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
542 |
// Args are just passed on to ADDTOANY_SHARE_SAVE_KIT for now
|
543 |
$defaults = array(
|
544 |
'linkname' => '',
|
3 |
Plugin Name: Share Buttons by AddToAny
|
4 |
Plugin URI: https://www.addtoany.com/
|
5 |
Description: Share buttons for your pages including AddToAny's universal sharing button, Facebook, Twitter, Google+, Pinterest, WhatsApp and many more. [<a href="options-general.php?page=add-to-any.php">Settings</a>]
|
6 |
+
Version: 1.3.8
|
7 |
Author: AddToAny
|
8 |
Author URI: https://www.addtoany.com/
|
9 |
*/
|
534 |
$options = get_option( 'addtoany_options' );
|
535 |
|
536 |
$floating_html = '';
|
537 |
+
|
538 |
// Overridable by args below
|
539 |
$vertical_type = ( isset( $options['floating_vertical'] ) && 'none' != $options['floating_vertical'] ) ? $options['floating_vertical'] : false;
|
540 |
$horizontal_type = ( isset( $options['floating_horizontal'] ) && 'none' != $options['floating_horizontal'] ) ? $options['floating_horizontal'] : false;
|
541 |
|
542 |
+
if ( is_singular() ) {
|
543 |
+
// Disabled for this singular post?
|
544 |
+
$sharing_disabled = get_post_meta( get_the_ID(), 'sharing_disabled', true );
|
545 |
+
$sharing_disabled = apply_filters( 'addtoany_sharing_disabled', $sharing_disabled );
|
546 |
+
|
547 |
+
if ( ! empty( $sharing_disabled ) ) {
|
548 |
+
// Overridable by args below
|
549 |
+
$vertical_type = false;
|
550 |
+
$horizontal_type = false;
|
551 |
+
}
|
552 |
+
}
|
553 |
+
|
554 |
// Args are just passed on to ADDTOANY_SHARE_SAVE_KIT for now
|
555 |
$defaults = array(
|
556 |
'linkname' => '',
|
languages/add-to-any-fr_FR.mo
CHANGED
Binary file
|
languages/add-to-any-fr_FR.po
CHANGED
@@ -1,307 +1,397 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: add-to-any\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2011-02-23 20:39-0800\n"
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator:
|
8 |
-
"Language-Team: \n"
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"X-Poedit-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
#: add-to-any.php:
|
61 |
-
msgid "
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
msgstr "
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
#: add-to-any.php:
|
99 |
-
msgid "
|
100 |
-
msgstr "
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
#: add-to-any.php:
|
125 |
-
msgid "
|
126 |
-
msgstr "
|
127 |
-
|
128 |
-
#: add-to-any.php:
|
129 |
-
msgid "
|
130 |
-
msgstr "
|
131 |
-
|
132 |
-
#: add-to-any.php:
|
133 |
-
msgid "
|
134 |
-
msgstr "
|
135 |
-
|
136 |
-
#: add-to-any.php:
|
137 |
-
msgid "
|
138 |
-
msgstr "
|
139 |
-
|
140 |
-
#: add-to-any.php:
|
141 |
-
msgid "
|
142 |
-
msgstr "
|
143 |
-
|
144 |
-
#: add-to-any.php:
|
145 |
-
msgid "
|
146 |
-
msgstr "
|
147 |
-
|
148 |
-
#: add-to-any.php:
|
149 |
-
msgid "
|
150 |
-
msgstr "
|
151 |
-
|
152 |
-
#: add-to-any.php:
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
msgid "
|
170 |
-
msgstr "
|
171 |
-
|
172 |
-
#: add-to-any.php:
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
#: add-to-any.php:
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
#: add-to-any.php:
|
194 |
-
msgid "
|
195 |
-
msgstr "
|
196 |
-
|
197 |
-
#: add-to-any.php:
|
198 |
-
msgid "
|
199 |
-
msgstr "
|
200 |
-
|
201 |
-
#: add-to-any.php:
|
202 |
-
msgid "
|
203 |
-
msgstr "
|
204 |
-
|
205 |
-
#: add-to-any.php:
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
msgstr "
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
msgid "
|
248 |
-
msgstr "
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
#: add-to-any.php:
|
275 |
-
msgid "
|
276 |
-
msgstr "
|
277 |
-
|
278 |
-
#: add-to-any.php:
|
279 |
-
msgid "
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: add-to-any\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-02-23 20:39-0800\n"
|
6 |
+
"PO-Revision-Date: Sat Sep 27 2014 09:46:21 GMT+0200 (CEST)\n"
|
7 |
+
"Last-Translator: Jacques SOULE <jsoule2010@gmail.com>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"Language: French\n"
|
10 |
+
"Plural-Forms: nplurals=2; plural=n > 1\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
16 |
+
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
17 |
+
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
18 |
+
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
19 |
+
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
20 |
+
"X-Poedit-Basepath: ../\n"
|
21 |
+
"X-Poedit-SearchPath-0: .\n"
|
22 |
+
"X-Loco-Target-Locale: fr_FR\n"
|
23 |
+
"X-Generator: Loco - https://localise.biz/"
|
24 |
+
|
25 |
+
#: add-to-any.php:917
|
26 |
+
#, fuzzy
|
27 |
+
msgid "Advanced Options"
|
28 |
+
msgstr "Options complémentaires"
|
29 |
+
|
30 |
+
#: add-to-any.php:520
|
31 |
+
#, php-format
|
32 |
+
msgid ""
|
33 |
+
"Unable to create directory %s. Is its parent directory writable by the "
|
34 |
+
"server?"
|
35 |
+
msgstr ""
|
36 |
+
"Impossible de créer la bibliothèque \n"
|
37 |
+
"%s. Est-ce que son répertoire parent est modifiable par le serveur?"
|
38 |
+
|
39 |
+
#: add-to-any.php:688
|
40 |
+
msgid "bottom"
|
41 |
+
msgstr "Bas"
|
42 |
+
|
43 |
+
#: add-to-any.php:692
|
44 |
+
msgid "top"
|
45 |
+
msgstr "Haut"
|
46 |
+
|
47 |
+
#: add-to-any.php:696
|
48 |
+
msgid "top & bottom"
|
49 |
+
msgstr ""
|
50 |
+
"Bouton haut\n"
|
51 |
+
" &"
|
52 |
+
|
53 |
+
#: add-to-any.php:839
|
54 |
+
#, php-format
|
55 |
+
msgid "Display at the %s of post excerpts"
|
56 |
+
msgstr ""
|
57 |
+
"Afficher à \n"
|
58 |
+
"%s de résumé d'articles"
|
59 |
+
|
60 |
+
#: add-to-any.php:912
|
61 |
+
msgid ""
|
62 |
+
"<strong>Note</strong>: If you're adding new code, be careful not to "
|
63 |
+
"accidentally overwrite any previous code.</label>"
|
64 |
+
msgstr ""
|
65 |
+
"<strong>Note</strong>: Si vous ajoutez un nouveau code, faites attention de "
|
66 |
+
"ne pas écraser accidentellement le code précédent.\n"
|
67 |
+
" </label>"
|
68 |
+
|
69 |
+
#: add-to-any.php:922
|
70 |
+
msgid "Use CSS stylesheet"
|
71 |
+
msgstr "utliliser la feuille CSS"
|
72 |
+
|
73 |
+
#: add-to-any.php:927
|
74 |
+
msgid "Cache AddToAny locally with daily cache updates"
|
75 |
+
msgstr ""
|
76 |
+
"Cache local \n"
|
77 |
+
"AddToAny avec les mise à jour journalières du cache"
|
78 |
+
|
79 |
+
#: add-to-any.php:931
|
80 |
+
msgid ""
|
81 |
+
"Only consider for sites with frequently returning visitors. Since many "
|
82 |
+
"visitors will have AddToAny cached in their browser already, serving "
|
83 |
+
"AddToAny locally from your site will be slower for those visitors. Be sure "
|
84 |
+
"to set far future cache/expires headers for image files in your "
|
85 |
+
"<code>uploads/addtoany</code> directory."
|
86 |
+
msgstr ""
|
87 |
+
"A considérer uniquement pour les sites fréquemment visités. Etant donné que "
|
88 |
+
"beaucoup de visiteurs auront déjà \n"
|
89 |
+
"AddToAny\n"
|
90 |
+
" en cache dans leur navigateur, offrir \n"
|
91 |
+
"AddToAny localement depuis votre site sera plus lent pour les visiteurs. "
|
92 |
+
"N'oubliez pas de mettre en place les en-têtes du cache/expiration pour les "
|
93 |
+
"fichiers image dans votre répertoire \n"
|
94 |
+
"<code> chargements/\n"
|
95 |
+
"addtoany</code>.\n"
|
96 |
+
" "
|
97 |
+
|
98 |
+
#: add-to-any.php:939
|
99 |
+
msgid "Are you sure you want to delete all AddToAny options?"
|
100 |
+
msgstr ""
|
101 |
+
"Voulez-vous vraiment supprimer toutes les options de \n"
|
102 |
+
"AddToAny?"
|
103 |
+
|
104 |
+
#: add-to-any.php:939
|
105 |
+
msgid "Reset"
|
106 |
+
msgstr "Réinitialiser"
|
107 |
+
|
108 |
+
#: add-to-any.php:322
|
109 |
+
msgid "Share"
|
110 |
+
msgstr "Partager"
|
111 |
+
|
112 |
+
#: add-to-any.php:323
|
113 |
+
msgid "Save"
|
114 |
+
msgstr "Enregistrer"
|
115 |
+
|
116 |
+
#: add-to-any.php:324
|
117 |
+
msgid "Subscribe"
|
118 |
+
msgstr "S'abonner"
|
119 |
+
|
120 |
+
#: add-to-any.php:325
|
121 |
+
msgid "E-mail"
|
122 |
+
msgstr "Courriel"
|
123 |
+
|
124 |
+
#: add-to-any.php:326
|
125 |
+
msgid "Bookmark"
|
126 |
+
msgstr "Signet"
|
127 |
+
|
128 |
+
#: add-to-any.php:327
|
129 |
+
msgid "Show all"
|
130 |
+
msgstr "Montrer tout"
|
131 |
+
|
132 |
+
#: add-to-any.php:328
|
133 |
+
msgid "Show less"
|
134 |
+
msgstr "Montrer moins"
|
135 |
+
|
136 |
+
#: add-to-any.php:329
|
137 |
+
msgid "Find service(s)"
|
138 |
+
msgstr "Trouver des service(s)"
|
139 |
+
|
140 |
+
#: add-to-any.php:330
|
141 |
+
msgid "Instantly find any service to add to"
|
142 |
+
msgstr "Trouver instantanément des services à ajouter à"
|
143 |
+
|
144 |
+
#: add-to-any.php:331
|
145 |
+
msgid "Powered by"
|
146 |
+
msgstr "Propulsé par"
|
147 |
+
|
148 |
+
#: add-to-any.php:332
|
149 |
+
msgid "Share via e-mail"
|
150 |
+
msgstr "Partager par l'entremise d'un courriel"
|
151 |
+
|
152 |
+
#: add-to-any.php:333
|
153 |
+
msgid "Subscribe via e-mail"
|
154 |
+
msgstr "S'abonner par l'entremise d'un courriel"
|
155 |
+
|
156 |
+
#: add-to-any.php:334
|
157 |
+
msgid "Bookmark in your browser"
|
158 |
+
msgstr "Ajouter un signet dans votre fureteur"
|
159 |
+
|
160 |
+
#: add-to-any.php:335
|
161 |
+
msgid "Press Ctrl+D or ⌘+D to bookmark this page"
|
162 |
+
msgstr "Appuyez Crtl+D ou ⌘+D pour créer un signet vers cette page"
|
163 |
+
|
164 |
+
#: add-to-any.php:336
|
165 |
+
msgid "Add to your favorites"
|
166 |
+
msgstr "Ajouter à vos favoris"
|
167 |
+
|
168 |
+
#: add-to-any.php:337
|
169 |
+
msgid "Send from any e-mail address or e-mail program"
|
170 |
+
msgstr "Envoyer depuis toutes adresses courriel ou tous programmes de messagerie"
|
171 |
+
|
172 |
+
#: add-to-any.php:338
|
173 |
+
msgid "E-mail program"
|
174 |
+
msgstr "Programme de messagerie"
|
175 |
+
|
176 |
+
#: add-to-any.php:363
|
177 |
+
msgid ""
|
178 |
+
"Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-"
|
179 |
+
"editor.php\">Theme Editor</a> to insert <code><?php wp_footer(); ?>"
|
180 |
+
"</code> just before the <code></body></code> line of your theme's "
|
181 |
+
"<code>footer.php</code> file."
|
182 |
+
msgstr ""
|
183 |
+
"Votre thème doit être corrigé. Pour ce faire, utilisez "
|
184 |
+
"<a href=\"theme-editor.php\">l'éditeur</a> pour ajouter <code><?php "
|
185 |
+
"wp_footer(); ?></code> juste avant la ligne <code></body></code> du "
|
186 |
+
"fichier <code>footer.php</code> de votre thème."
|
187 |
+
|
188 |
+
#: add-to-any.php:654
|
189 |
+
#: add-to-any.php:778
|
190 |
+
#: add-to-any.php:782
|
191 |
+
#: add-to-any.php:786
|
192 |
+
#: add-to-any.php:790
|
193 |
+
#: add-to-any.php:822
|
194 |
+
msgid "Share/Bookmark"
|
195 |
+
msgstr "Partager/Marquer"
|
196 |
+
|
197 |
+
#: add-to-any.php:667
|
198 |
+
msgid "Settings saved."
|
199 |
+
msgstr "Paramètres sauvegardés."
|
200 |
+
|
201 |
+
#: add-to-any.php:727
|
202 |
+
msgid "AddToAny: Share/Save "
|
203 |
+
msgstr "AjouterÀTout: Partager/Enregistrer "
|
204 |
+
|
205 |
+
#: add-to-any.php:727
|
206 |
+
#: add-to-any.php:1132
|
207 |
+
#: add-to-any.php:1163
|
208 |
+
msgid "Settings"
|
209 |
+
msgstr "Paramètres"
|
210 |
+
|
211 |
+
#: add-to-any.php:736
|
212 |
+
msgid "Standalone Services"
|
213 |
+
msgstr "Services indépendants"
|
214 |
+
|
215 |
+
#: add-to-any.php:741
|
216 |
+
msgid ""
|
217 |
+
"Choose the services you want below. Click a chosen service again to "
|
218 |
+
"remove. Reorder services by dragging and dropping as they appear above."
|
219 |
+
msgstr ""
|
220 |
+
"Choisissez les services que vous souhaitez ci-dessous. Cliquez sur un "
|
221 |
+
"service choisi pour le retirer. Réorganisez les services en les "
|
222 |
+
"faisant glisser comme ils apparaissent ci-dessus."
|
223 |
+
|
224 |
+
#: add-to-any.php:773
|
225 |
+
msgid "Button"
|
226 |
+
msgstr "Bouton"
|
227 |
+
|
228 |
+
#: add-to-any.php:812
|
229 |
+
msgid "Image URL"
|
230 |
+
msgstr "URL de l'image"
|
231 |
+
|
232 |
+
#: add-to-any.php:819
|
233 |
+
msgid "Text only"
|
234 |
+
msgstr "Texte seulement"
|
235 |
+
|
236 |
+
#: add-to-any.php:827
|
237 |
+
msgid "Placement"
|
238 |
+
msgstr "Positionnement"
|
239 |
+
|
240 |
+
#: add-to-any.php:832
|
241 |
+
#, php-format
|
242 |
+
msgid "Display at the %s of posts"
|
243 |
+
msgstr "Afficher le bouton Partager/Enregistrer à la fin des articles"
|
244 |
+
|
245 |
+
#: add-to-any.php:846
|
246 |
+
#, php-format
|
247 |
+
msgid "Display at the %s of posts on the front page"
|
248 |
+
msgstr ""
|
249 |
+
"Afficher le bouton Partager/Enregistrer à la fin des articles sur la "
|
250 |
+
"page principale"
|
251 |
+
|
252 |
+
#: add-to-any.php:854
|
253 |
+
#, php-format
|
254 |
+
msgid "Display at the %s of posts in the feed"
|
255 |
+
msgstr ""
|
256 |
+
"Afficher le bouton Partager/Enregistrer à la fin des articles dans le "
|
257 |
+
"flux"
|
258 |
+
|
259 |
+
#: add-to-any.php:858
|
260 |
+
#, php-format
|
261 |
+
msgid "Display at the %s of pages"
|
262 |
+
msgstr "Afficher le bouton Partager/Enregistrer à la fin des pages"
|
263 |
+
|
264 |
+
#: add-to-any.php:862
|
265 |
+
msgid ""
|
266 |
+
"If unchecked, be sure to place the following code in <a href=\"theme-editor."
|
267 |
+
"php\">your template pages</a> (within <code>index.php</code>, <code>single."
|
268 |
+
"php</code>, and/or <code>page.php</code>)"
|
269 |
+
msgstr ""
|
270 |
+
"Si décoché, n'oubliez pas de placer le code suivant dans vos "
|
271 |
+
"<a href=\"theme-editor.php\">pages modèles</a> (dans <code>index."
|
272 |
+
"php</code>, <code>single.php</code> et/ou <code><page.php</code>)"
|
273 |
+
|
274 |
+
#: add-to-any.php:871
|
275 |
+
msgid "Menu Style"
|
276 |
+
msgstr "Menu de styles"
|
277 |
+
|
278 |
+
#: add-to-any.php:873
|
279 |
+
msgid ""
|
280 |
+
"Using AddToAny's Menu Styler, you can customize the colors of your "
|
281 |
+
"Share/Save menu! When you're done, be sure to paste the generated code in "
|
282 |
+
"the <a href=\"#\" onclick=\"document."
|
283 |
+
"getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return "
|
284 |
+
"false\">Additional Options</a> box below."
|
285 |
+
msgstr ""
|
286 |
+
"En utilisant le menu de styles AddToAny, vous pouvez personnaliser les "
|
287 |
+
"couleurs de votre menu Partarger/Enregistrer. Lorsque vous aurez "
|
288 |
+
"terminé, assrez-vous de copier le code généré "
|
289 |
+
"dans la boîte d'<a href=\"#\" onclick=\"document."
|
290 |
+
"getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return "
|
291 |
+
"false\">Options Complémentaires</a> ci-dessous."
|
292 |
+
|
293 |
+
#: add-to-any.php:875
|
294 |
+
msgid "Open the AddToAny Menu Styler in a new window"
|
295 |
+
msgstr "Ouvrir le menu de styles AddToAny dans une nouvelle fen&ecire;tre"
|
296 |
+
|
297 |
+
#: add-to-any.php:877
|
298 |
+
msgid "Open Menu Styler"
|
299 |
+
msgstr "Ouvrir le menu de styles"
|
300 |
+
|
301 |
+
#: add-to-any.php:882
|
302 |
+
msgid "Menu Options"
|
303 |
+
msgstr "Menu d'options"
|
304 |
+
|
305 |
+
#: add-to-any.php:887
|
306 |
+
msgid "Only show the menu when the user clicks the Share/Save button"
|
307 |
+
msgstr ""
|
308 |
+
"Afficher le menu uniquement lorsqu'un utilisateur appuie sur le bouton "
|
309 |
+
"Partager/Enregistrer"
|
310 |
+
|
311 |
+
#: add-to-any.php:892
|
312 |
+
msgid "Show the title of the post (or page) within the menu"
|
313 |
+
msgstr "Afficher le titre des articles (ou des pages) dans le menu"
|
314 |
+
|
315 |
+
#: add-to-any.php:897
|
316 |
+
msgid "Additional Options"
|
317 |
+
msgstr "Options complémentaires"
|
318 |
+
|
319 |
+
#: add-to-any.php:901
|
320 |
+
msgid "Paste the code from AddToAny's Menu Styler in the box below!"
|
321 |
+
msgstr "Copier le code du menu de styles AddToAny dans la boîte ci-dessous!"
|
322 |
+
|
323 |
+
#: add-to-any.php:905
|
324 |
+
msgid ""
|
325 |
+
"Below you can set special JavaScript variables to apply to each Share/Save "
|
326 |
+
"menu."
|
327 |
+
msgstr ""
|
328 |
+
"Vous pouvez définir, ci-dessous, des variables JavaScript spé"
|
329 |
+
"ciales à appliquer à chaque menu Partager/Enregistrer."
|
330 |
+
|
331 |
+
#: add-to-any.php:906
|
332 |
+
msgid ""
|
333 |
+
"Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany."
|
334 |
+
"com/buttons/customize/\" target=\"_blank\">additional options</a>."
|
335 |
+
msgstr ""
|
336 |
+
"Les utilisateurs expérimentés peuvent vouloir explorer l'<a "
|
337 |
+
"href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">API "
|
338 |
+
"JavaScript</a> d'AddToAny."
|
339 |
+
|
340 |
+
#: add-to-any.php:938
|
341 |
+
msgid "Save Changes"
|
342 |
+
msgstr "Enregistrer les changements"
|
343 |
+
|
344 |
+
#: add-to-any.php:944
|
345 |
+
msgid "Like this plugin?"
|
346 |
+
msgstr "Aimez-vous ce plugiciel?"
|
347 |
+
|
348 |
+
#: add-to-any.php:945
|
349 |
+
msgid ""
|
350 |
+
"<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good "
|
351 |
+
"rating</a> on WordPress.org."
|
352 |
+
msgstr ""
|
353 |
+
"<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Donnez-lui une "
|
354 |
+
"bonne cote</a> sur WordPress.org."
|
355 |
+
|
356 |
+
#: add-to-any.php:946
|
357 |
+
#, c-format
|
358 |
+
msgid ""
|
359 |
+
"<a href=\"http://www.addtoany.com/share_save?"
|
360 |
+
"linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&"
|
361 |
+
"linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share "
|
362 |
+
"it</a> with your friends."
|
363 |
+
msgstr ""
|
364 |
+
"<a href=\"http://www.addtoany.com/share_save?"
|
365 |
+
"linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&"
|
366 |
+
"linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-"
|
367 |
+
"any%2F\">Partagez le</a> avec vos amis."
|
368 |
+
|
369 |
+
#: add-to-any.php:948
|
370 |
+
msgid "Need support?"
|
371 |
+
msgstr "Besoin d'aide?"
|
372 |
+
|
373 |
+
#: add-to-any.php:949
|
374 |
+
msgid ""
|
375 |
+
"See the <a href=\"http://wordpress.org/extend/plugins/add-to-"
|
376 |
+
"any/faq/\">FAQs</a>."
|
377 |
+
msgstr ""
|
378 |
+
"Consultez la <a href=\"http://wordpress.org/extend/plugins/add-to-"
|
379 |
+
"any/faq/\">FAQ</a>."
|
380 |
+
|
381 |
+
#: add-to-any.php:950
|
382 |
+
msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
|
383 |
+
msgstr ""
|
384 |
+
"Faites une recherche dans le <a href=\"http://wordpress.org/tags/add-to-"
|
385 |
+
"any\">forums d'aide</a>."
|
386 |
+
|
387 |
+
#: add-to-any.php:1075
|
388 |
+
msgid "Add/Remove Services"
|
389 |
+
msgstr "Ajoutez/Supprimer les services"
|
390 |
+
|
391 |
+
#: add-to-any.php:1132
|
392 |
+
msgid "Share/Save"
|
393 |
+
msgstr "Partager/Enregistrer"
|
394 |
+
|
395 |
+
#: add-to-any.php:1133
|
396 |
+
msgid "Share/Save Buttons"
|
397 |
+
msgstr "Boutons Ajouter/Enregistrer"
|