Version Description
Download this release
Release Info
Developer | micropat |
Plugin | AddToAny Share Buttons |
Version | 0.9.9.6.2 |
Comparing to | |
See all releases |
Code changes from version 0.9.9.6.1 to 0.9.9.6.2
- README.txt +8 -1
- add-to-any.php +17 -12
- languages/add-to-any-pt_PT.mo +0 -0
- languages/add-to-any-pt_PT.po +274 -283
README.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: micropat
|
|
3 |
Tags: sharing, share, sharethis, bookmarking, social, social bookmarking, social bookmarks, bookmark, bookmarks, save, Post, posts, page, pages, images, image, admin, statistics, stats, links, plugin, widget, e-mail, email, seo, button, delicious, google buzz, buzz, google, digg, reddit, facebook, myspace, twitter, stumbleupon, technorati, icon, icons, wpmu, addtoany, add, any
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 3.0
|
6 |
-
Stable tag: 0.9.9.6.
|
7 |
|
8 |
Help people share, bookmark, and email your posts & pages using any service, such as Facebook, Twitter, Google Buzz, Digg and many more.
|
9 |
|
@@ -171,6 +171,13 @@ Please read <a href="http://www.addtoany.com/buttons/customize/show_over_embeds"
|
|
171 |
|
172 |
== Changelog ==
|
173 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
174 |
= .9.9.6.1 =
|
175 |
* Fix critical bug introduced in last release that caused an empty shared item to be used on non-single post pages
|
176 |
* Thanks to <a href="http://www.macmanx.com/">James</a> for the report!
|
3 |
Tags: sharing, share, sharethis, bookmarking, social, social bookmarking, social bookmarks, bookmark, bookmarks, save, Post, posts, page, pages, images, image, admin, statistics, stats, links, plugin, widget, e-mail, email, seo, button, delicious, google buzz, buzz, google, digg, reddit, facebook, myspace, twitter, stumbleupon, technorati, icon, icons, wpmu, addtoany, add, any
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 3.0
|
6 |
+
Stable tag: 0.9.9.6.2
|
7 |
|
8 |
Help people share, bookmark, and email your posts & pages using any service, such as Facebook, Twitter, Google Buzz, Digg and many more.
|
9 |
|
171 |
|
172 |
== Changelog ==
|
173 |
|
174 |
+
= .9.9.6.2 =
|
175 |
+
* Remove stylesheet on other admin pages
|
176 |
+
* Fix RTL support in admin
|
177 |
+
* Fix minor bug where Add/Remove Services button reappears after choosing a standalone service in admin
|
178 |
+
* Remove jQuery UI Sortable on other admin pages
|
179 |
+
* Portuguese translation updated (by <a href="http://jorgesilva.me/">Jorge</a>
|
180 |
+
|
181 |
= .9.9.6.1 =
|
182 |
* Fix critical bug introduced in last release that caused an empty shared item to be used on non-single post pages
|
183 |
* Thanks to <a href="http://www.macmanx.com/">James</a> for the report!
|
add-to-any.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: AddToAny: Share/Bookmark/Email Button
|
4 |
Plugin URI: http://www.addtoany.com/
|
5 |
Description: Help people share, bookmark, and email your posts & pages using any service, such as Facebook, Twitter, Google Buzz, Digg and many more. [<a href="options-general.php?page=add-to-any.php">Settings</a>]
|
6 |
-
Version: .9.9.6.
|
7 |
Author: AddToAny
|
8 |
Author URI: http://www.addtoany.com/
|
9 |
*/
|
@@ -484,7 +484,7 @@ ul.addtoany_list a:hover img,ul.addtoany_list a.addtoany_share_save img{filter:a
|
|
484 |
}
|
485 |
|
486 |
// Use stylesheet?
|
487 |
-
if (get_option('A2A_SHARE_SAVE_inline_css') != '-1') {
|
488 |
if (function_exists('wp_enqueue_style')) {
|
489 |
// WP version 2.1+ only
|
490 |
wp_enqueue_style('A2A_SHARE_SAVE', $A2A_SHARE_SAVE_plugin_url_path . '/addtoany.min.css', false, '1.0');
|
@@ -899,8 +899,6 @@ function A2A_SHARE_SAVE_admin_head() {
|
|
899 |
.fadeIn('fast');
|
900 |
|
901 |
jQuery(this).attr( 'id', 'old_'+jQuery(this).attr('id') );
|
902 |
-
|
903 |
-
jQuery('#addtoany_services_sortable li:last').fadeTo('fast', 1);
|
904 |
};
|
905 |
|
906 |
// Service click again = move back to selectable list
|
@@ -992,16 +990,16 @@ function A2A_SHARE_SAVE_admin_head() {
|
|
992 |
#addtoany_template_button_code, #addtoany_css_code{display:none;}
|
993 |
</style>
|
994 |
<?php
|
|
|
995 |
}
|
996 |
}
|
997 |
|
998 |
add_filter('admin_head', 'A2A_SHARE_SAVE_admin_head');
|
999 |
|
1000 |
function A2A_SHARE_SAVE_add_menu_link() {
|
1001 |
-
global $wp_version;
|
1002 |
|
1003 |
if( current_user_can('manage_options') ) {
|
1004 |
-
add_options_page(
|
1005 |
'AddToAny: '. __("Share/Save", "add-to-any"). " " . __("Settings")
|
1006 |
, __("Share/Save Buttons", "add-to-any")
|
1007 |
, 'activate_plugins'
|
@@ -1009,17 +1007,24 @@ function A2A_SHARE_SAVE_add_menu_link() {
|
|
1009 |
, 'A2A_SHARE_SAVE_options_page'
|
1010 |
);
|
1011 |
|
1012 |
-
|
1013 |
-
|
1014 |
-
|
1015 |
-
|
1016 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1017 |
}
|
1018 |
}
|
1019 |
|
1020 |
add_filter('admin_menu', 'A2A_SHARE_SAVE_add_menu_link');
|
1021 |
|
1022 |
-
// Place in Settings
|
1023 |
function A2A_SHARE_SAVE_actlinks( $links, $file ){
|
1024 |
//Static so we don't call plugin_basename on every plugin row.
|
1025 |
static $this_plugin;
|
3 |
Plugin Name: AddToAny: Share/Bookmark/Email Button
|
4 |
Plugin URI: http://www.addtoany.com/
|
5 |
Description: Help people share, bookmark, and email your posts & pages using any service, such as Facebook, Twitter, Google Buzz, Digg and many more. [<a href="options-general.php?page=add-to-any.php">Settings</a>]
|
6 |
+
Version: .9.9.6.2
|
7 |
Author: AddToAny
|
8 |
Author URI: http://www.addtoany.com/
|
9 |
*/
|
484 |
}
|
485 |
|
486 |
// Use stylesheet?
|
487 |
+
if (get_option('A2A_SHARE_SAVE_inline_css') != '-1' && ! is_admin()) {
|
488 |
if (function_exists('wp_enqueue_style')) {
|
489 |
// WP version 2.1+ only
|
490 |
wp_enqueue_style('A2A_SHARE_SAVE', $A2A_SHARE_SAVE_plugin_url_path . '/addtoany.min.css', false, '1.0');
|
899 |
.fadeIn('fast');
|
900 |
|
901 |
jQuery(this).attr( 'id', 'old_'+jQuery(this).attr('id') );
|
|
|
|
|
902 |
};
|
903 |
|
904 |
// Service click again = move back to selectable list
|
990 |
#addtoany_template_button_code, #addtoany_css_code{display:none;}
|
991 |
</style>
|
992 |
<?php
|
993 |
+
|
994 |
}
|
995 |
}
|
996 |
|
997 |
add_filter('admin_head', 'A2A_SHARE_SAVE_admin_head');
|
998 |
|
999 |
function A2A_SHARE_SAVE_add_menu_link() {
|
|
|
1000 |
|
1001 |
if( current_user_can('manage_options') ) {
|
1002 |
+
$page = add_options_page(
|
1003 |
'AddToAny: '. __("Share/Save", "add-to-any"). " " . __("Settings")
|
1004 |
, __("Share/Save Buttons", "add-to-any")
|
1005 |
, 'activate_plugins'
|
1007 |
, 'A2A_SHARE_SAVE_options_page'
|
1008 |
);
|
1009 |
|
1010 |
+
/* Using registered $page handle to hook script load, to only load in AddToAny admin */
|
1011 |
+
add_filter('admin_print_scripts-' . $page, 'A2A_SHARE_SAVE_scripts');
|
1012 |
+
}
|
1013 |
+
}
|
1014 |
+
|
1015 |
+
function A2A_SHARE_SAVE_scripts() {
|
1016 |
+
global $wp_version;
|
1017 |
+
|
1018 |
+
// Load jQuery UI Sortable
|
1019 |
+
// Must be on WP 2.6+
|
1020 |
+
if ($wp_version >= "2.6") {
|
1021 |
+
wp_enqueue_script('jquery-ui-sortable');
|
1022 |
}
|
1023 |
}
|
1024 |
|
1025 |
add_filter('admin_menu', 'A2A_SHARE_SAVE_add_menu_link');
|
1026 |
|
1027 |
+
// Place in Option List on Settings > Plugins page
|
1028 |
function A2A_SHARE_SAVE_actlinks( $links, $file ){
|
1029 |
//Static so we don't call plugin_basename on every plugin row.
|
1030 |
static $this_plugin;
|
languages/add-to-any-pt_PT.mo
CHANGED
Binary file
|
languages/add-to-any-pt_PT.po
CHANGED
@@ -1,283 +1,274 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: add-to-any\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2010-
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator:
|
8 |
-
"Language-Team:
|
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: ../\n"
|
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 |
-
|
61 |
-
|
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 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
#: add-to-any.php:
|
97 |
-
#: add-to-any.php:
|
98 |
-
#: add-to-any.php:
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
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 |
-
|
248 |
-
|
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 |
-
|
275 |
-
#~ "when displayed"
|
276 |
-
#~ msgstr ""
|
277 |
-
#~ "Ocultar objetos embebidos (Flash, video, etc) que interajam com o menu "
|
278 |
-
#~ "quando visualizado"
|
279 |
-
|
280 |
-
#, fuzzy
|
281 |
-
#~ msgid "Services"
|
282 |
-
#~ msgstr "Procurar serviço(s)"
|
283 |
-
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: add-to-any\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2010-08-06 22:47-0000\n"
|
6 |
+
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Jorge Silva <jncs12@gmail.com>\n"
|
8 |
+
"Language-Team: Jorge Silva <jncs12@gmail.com>\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: ../\n"
|
14 |
+
"X-Poedit-Language: Portuguese\n"
|
15 |
+
"X-Poedit-Country: PORTUGAL\n"
|
16 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
+
"X-Poedit-SearchPath-0: .\n"
|
18 |
+
|
19 |
+
#: add-to-any.php:281
|
20 |
+
msgid "Share"
|
21 |
+
msgstr "Partilhar"
|
22 |
+
|
23 |
+
#: add-to-any.php:282
|
24 |
+
msgid "Save"
|
25 |
+
msgstr "Guardar"
|
26 |
+
|
27 |
+
#: add-to-any.php:283
|
28 |
+
msgid "Subscribe"
|
29 |
+
msgstr "Subscrever"
|
30 |
+
|
31 |
+
#: add-to-any.php:284
|
32 |
+
msgid "E-mail"
|
33 |
+
msgstr "Email"
|
34 |
+
|
35 |
+
#: add-to-any.php:285
|
36 |
+
msgid "Bookmark"
|
37 |
+
msgstr "Marcador"
|
38 |
+
|
39 |
+
#: add-to-any.php:286
|
40 |
+
msgid "Show all"
|
41 |
+
msgstr "Mostrar tudo"
|
42 |
+
|
43 |
+
#: add-to-any.php:287
|
44 |
+
msgid "Show less"
|
45 |
+
msgstr "Mostrar menos"
|
46 |
+
|
47 |
+
#: add-to-any.php:288
|
48 |
+
msgid "Find service(s)"
|
49 |
+
msgstr "Procurar serviço(s)"
|
50 |
+
|
51 |
+
#: add-to-any.php:289
|
52 |
+
msgid "Instantly find any service to add to"
|
53 |
+
msgstr "Encontrar rapidamente qualquer serviço para"
|
54 |
+
|
55 |
+
#: add-to-any.php:290
|
56 |
+
msgid "Powered by"
|
57 |
+
msgstr "Serviço fornecido por"
|
58 |
+
|
59 |
+
#: add-to-any.php:291
|
60 |
+
msgid "Share via e-mail"
|
61 |
+
msgstr "Partilhar por email"
|
62 |
+
|
63 |
+
#: add-to-any.php:292
|
64 |
+
msgid "Subscribe via e-mail"
|
65 |
+
msgstr "Subscrever por email"
|
66 |
+
|
67 |
+
#: add-to-any.php:293
|
68 |
+
msgid "Bookmark in your browser"
|
69 |
+
msgstr "Adicionar marcador"
|
70 |
+
|
71 |
+
#: add-to-any.php:294
|
72 |
+
msgid "Press Ctrl+D or ⌘+D to bookmark this page"
|
73 |
+
msgstr "Pressione Ctrl+D ou ⌘+D para adicionar esta página aos marcadores"
|
74 |
+
|
75 |
+
#: add-to-any.php:295
|
76 |
+
msgid "Add to your favorites"
|
77 |
+
msgstr "Adicionar aos favoritos"
|
78 |
+
|
79 |
+
#: add-to-any.php:296
|
80 |
+
msgid "Send from any e-mail address or e-mail program"
|
81 |
+
msgstr "Enviar de qualquer email ou programa de email"
|
82 |
+
|
83 |
+
#: add-to-any.php:297
|
84 |
+
msgid "E-mail program"
|
85 |
+
msgstr "Programa de email"
|
86 |
+
|
87 |
+
#: add-to-any.php:322
|
88 |
+
msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code><?php wp_footer(); ?></code> just before the <code></body></code> line of your theme's <code>footer.php</code> file."
|
89 |
+
msgstr "O seu tema precisa de ser corrigido. Para coriigir o seu tema, utilize <a href=\"theme-editor.php\">Theme Editor</a> para inserir <code><?php wp_footer(); ?></code> mesmo antes da linha <code></body></code> do ficheiro <code>footer.php</code> do tema."
|
90 |
+
|
91 |
+
#: add-to-any.php:513
|
92 |
+
#, php-format
|
93 |
+
msgid "Unable to create directory %s. Is its parent directory writable by the server?"
|
94 |
+
msgstr "Impossível criar o directório %s. O directório ascendente tem permissões de escrita?"
|
95 |
+
|
96 |
+
#: add-to-any.php:593
|
97 |
+
#: add-to-any.php:666
|
98 |
+
#: add-to-any.php:670
|
99 |
+
#: add-to-any.php:674
|
100 |
+
#: add-to-any.php:678
|
101 |
+
#: add-to-any.php:710
|
102 |
+
msgid "Share/Bookmark"
|
103 |
+
msgstr "Marcador"
|
104 |
+
|
105 |
+
#: add-to-any.php:607
|
106 |
+
msgid "Settings saved."
|
107 |
+
msgstr "Configurações guardadas."
|
108 |
+
|
109 |
+
#: add-to-any.php:620
|
110 |
+
msgid "AddToAny: Share/Save "
|
111 |
+
msgstr "AddToAny: "
|
112 |
+
|
113 |
+
#: add-to-any.php:620
|
114 |
+
#: add-to-any.php:1005
|
115 |
+
#: add-to-any.php:1029
|
116 |
+
msgid "Settings"
|
117 |
+
msgstr "Configurações"
|
118 |
+
|
119 |
+
#: add-to-any.php:629
|
120 |
+
msgid "Standalone Services"
|
121 |
+
msgstr "Serviços Isolados"
|
122 |
+
|
123 |
+
#: add-to-any.php:634
|
124 |
+
msgid "Choose the services you want below. Click a chosen service again to remove. Reorder services by dragging and dropping as they appear above."
|
125 |
+
msgstr "Escolha os serviços que deseja. Clique novamente num serviço já escolhido para o remover. Reordene os serviços fazendo drag'n'drop conforme aparecem por cima."
|
126 |
+
|
127 |
+
#: add-to-any.php:661
|
128 |
+
msgid "Button"
|
129 |
+
msgstr "Botão"
|
130 |
+
|
131 |
+
#: add-to-any.php:700
|
132 |
+
msgid "Image URL"
|
133 |
+
msgstr "URL da imagem"
|
134 |
+
|
135 |
+
#: add-to-any.php:707
|
136 |
+
msgid "Text only"
|
137 |
+
msgstr "Apenas texto"
|
138 |
+
|
139 |
+
#: add-to-any.php:715
|
140 |
+
msgid "Placement"
|
141 |
+
msgstr "Posicionamento"
|
142 |
+
|
143 |
+
#: add-to-any.php:724
|
144 |
+
msgid "Display Share/Save button at the bottom of posts"
|
145 |
+
msgstr "Mostrar o botão Partilhar/Guardar no fim de cada post"
|
146 |
+
|
147 |
+
#: add-to-any.php:731
|
148 |
+
msgid "Display Share/Save button at the bottom of posts on the front page"
|
149 |
+
msgstr "Mostrar o botão Partilhar/Guardar no fim dos posts na página principal"
|
150 |
+
|
151 |
+
#: add-to-any.php:738
|
152 |
+
msgid "Display Share/Save button at the bottom of posts in the feed"
|
153 |
+
msgstr "Mostrar o botão Partilhar/Guardar no fim dos posts do feed RSS"
|
154 |
+
|
155 |
+
#: add-to-any.php:742
|
156 |
+
msgid "Display Share/Save button at the bottom of pages"
|
157 |
+
msgstr "Mostrar o botão Partilhar/Guardar no fim das páginas"
|
158 |
+
|
159 |
+
#: add-to-any.php:746
|
160 |
+
msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
|
161 |
+
msgstr "Se estiver desactivado, assegure-se que coloca o código seguinte em <a href=\"theme-editor.php\">Modelos das suas páginas</a> (dentro de <code>index.php</code>, <code>single.php</code>, e/ou <code>page.php</code>)"
|
162 |
+
|
163 |
+
#: add-to-any.php:755
|
164 |
+
msgid "Menu Style"
|
165 |
+
msgstr "Estilo de Menu"
|
166 |
+
|
167 |
+
#: add-to-any.php:757
|
168 |
+
msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
|
169 |
+
msgstr "Usar o Personalizador de Estilo do AddToAny. Pode personalizar as cores do seu menu Partilhar/Guardar! Quando finalizar, assegure-se que cola o código gerado na caixa <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Opções Adicionais</a> em baixo."
|
170 |
+
|
171 |
+
#: add-to-any.php:759
|
172 |
+
msgid "Open the AddToAny Menu Styler in a new window"
|
173 |
+
msgstr "Abrir o Menu de Personalização de Estilos AddToAny numa nova janela"
|
174 |
+
|
175 |
+
#: add-to-any.php:761
|
176 |
+
msgid "Open Menu Styler"
|
177 |
+
msgstr "Abrir o Menu de Personalização de Estilos"
|
178 |
+
|
179 |
+
#: add-to-any.php:766
|
180 |
+
msgid "Menu Options"
|
181 |
+
msgstr "Opções do Menu"
|
182 |
+
|
183 |
+
#: add-to-any.php:771
|
184 |
+
msgid "Show the title of the post (or page) within the menu"
|
185 |
+
msgstr "Mostrar o título do post (ou da página) dentro do menu"
|
186 |
+
|
187 |
+
#: add-to-any.php:778
|
188 |
+
msgid "Only show the menu when the user clicks the Share/Save button"
|
189 |
+
msgstr "Mostrar apenas o menu quando o utilizador fizer um clique no botão Partilhar/Guardar"
|
190 |
+
|
191 |
+
#: add-to-any.php:784
|
192 |
+
msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
|
193 |
+
msgstr "Abrir o menu de addtoany.com num novo separador ou janela se o utilizador fizer um clique no botão Partilhar/Guardar"
|
194 |
+
|
195 |
+
#: add-to-any.php:789
|
196 |
+
msgid "Additional Options"
|
197 |
+
msgstr "Opções Adicionais"
|
198 |
+
|
199 |
+
#: add-to-any.php:793
|
200 |
+
msgid "Paste the code from AddToAny's Menu Styler in the box below!"
|
201 |
+
msgstr "Cole o código do Menu de Personalização de Estilos do AddToAny na caixa a seguir!"
|
202 |
+
|
203 |
+
#: add-to-any.php:797
|
204 |
+
msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
|
205 |
+
msgstr "Em baixo pode inserir varáveis especiais de JavaScript para aplicar a cada menu Partilhar/Guardar."
|
206 |
+
|
207 |
+
#: add-to-any.php:798
|
208 |
+
msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
|
209 |
+
msgstr "Utilizadores avançados podem querer explorar o <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">API do JavaScript</a> do AddToAny."
|
210 |
+
|
211 |
+
#: add-to-any.php:804
|
212 |
+
msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
|
213 |
+
msgstr "<strong>Nota</strong>: Se está a adicionar novo código, tenha cuidado para não sobrescrever (apagar) acidentalmente qualquer código existente.</label>"
|
214 |
+
|
215 |
+
#: add-to-any.php:809
|
216 |
+
msgid "Advanced Options"
|
217 |
+
msgstr "Opções Avançadas"
|
218 |
+
|
219 |
+
#: add-to-any.php:814
|
220 |
+
msgid "Use CSS stylesheet"
|
221 |
+
msgstr "Usar a folha de estilos CSS"
|
222 |
+
|
223 |
+
#: add-to-any.php:819
|
224 |
+
msgid "Cache AddToAny locally with daily cache updates"
|
225 |
+
msgstr "Fazer cópia local do serviço AddToAny com actualizações diárias"
|
226 |
+
|
227 |
+
#: add-to-any.php:823
|
228 |
+
msgid "If unchecked, be sure to place the CSS in your theme's stylesheet:"
|
229 |
+
msgstr "Se não estiver activado, assegure-se que coloca o CSS nas folhas de estilo do seu tema:"
|
230 |
+
|
231 |
+
#: add-to-any.php:828
|
232 |
+
msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
|
233 |
+
msgstr "Utiliza apenas esta opção para sites com visitantes habituais. Uma vez que muitos visitantes terão já uma cópia local do serviço AddToAny no seu navegador, esta opção fará com que o carregamento so seu site seja mais lenta. Assegure-se que coloca cabeçalhos de expiração da cache para ficheiros de imagem no seu directório <code>uploads/addtoany</code>."
|
234 |
+
|
235 |
+
#: add-to-any.php:835
|
236 |
+
msgid "Save Changes"
|
237 |
+
msgstr "Guardar alterações"
|
238 |
+
|
239 |
+
#: add-to-any.php:840
|
240 |
+
msgid "Like this plugin?"
|
241 |
+
msgstr "Gosta deste plugin?"
|
242 |
+
|
243 |
+
#: add-to-any.php:841
|
244 |
+
msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
|
245 |
+
msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Atribua-lhe uma boa pontuação</a> no WordPress.org."
|
246 |
+
|
247 |
+
#: add-to-any.php:842
|
248 |
+
msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
|
249 |
+
msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Partilhar</a> com os amigos."
|
250 |
+
|
251 |
+
#: add-to-any.php:844
|
252 |
+
msgid "Need support?"
|
253 |
+
msgstr "Precisa de ajuda?"
|
254 |
+
|
255 |
+
#: add-to-any.php:845
|
256 |
+
msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
|
257 |
+
msgstr "Consulte a página de <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ's</a>."
|
258 |
+
|
259 |
+
#: add-to-any.php:846
|
260 |
+
msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
|
261 |
+
msgstr "Procurar nos <a href=\"http://wordpress.org/tags/add-to-any\">fóruns</a> de ajuda."
|
262 |
+
|
263 |
+
#: add-to-any.php:953
|
264 |
+
msgid "Add/Remove Services"
|
265 |
+
msgstr "Adicionar/Remover Serviços"
|
266 |
+
|
267 |
+
#: add-to-any.php:1005
|
268 |
+
msgid "Share/Save"
|
269 |
+
msgstr "Partilhar/Guardar"
|
270 |
+
|
271 |
+
#: add-to-any.php:1006
|
272 |
+
msgid "Share/Save Buttons"
|
273 |
+
msgstr "AddToAny"
|
274 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|