AddToAny Share Buttons - Version 0.9.9.6.2

Version Description

Download this release

Release Info

Developer micropat
Plugin Icon 128x128 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 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.1
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.1
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
- // Load jQuery UI Sortable
1013
- // Must be on WP 2.6+
1014
- if ($wp_version >= "2.6") {
1015
- wp_enqueue_script('jquery-ui-sortable');
1016
- }
 
 
 
 
 
 
 
1017
  }
1018
  }
1019
 
1020
  add_filter('admin_menu', 'A2A_SHARE_SAVE_add_menu_link');
1021
 
1022
- // Place in Settings Option List
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-07-20 01:02-0800\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Pat <no@no.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: ../\n"
14
- "X-Poedit-SearchPath-0: .\n"
15
-
16
- #: add-to-any.php:258
17
- msgid "Share"
18
- msgstr "Partilhar"
19
-
20
- #: add-to-any.php:259
21
- msgid "Save"
22
- msgstr "Guardar"
23
-
24
- #: add-to-any.php:260
25
- msgid "Subscribe"
26
- msgstr "Subscrever"
27
-
28
- #: add-to-any.php:261
29
- msgid "E-mail"
30
- msgstr "E-mail"
31
-
32
- #: add-to-any.php:262
33
- msgid "Bookmark"
34
- msgstr "Marcador"
35
-
36
- #: add-to-any.php:263
37
- msgid "Show all"
38
- msgstr "Mostrar tudo"
39
-
40
- #: add-to-any.php:264
41
- msgid "Show less"
42
- msgstr "Mostrar menos"
43
-
44
- #: add-to-any.php:265
45
- msgid "Find service(s)"
46
- msgstr "Procurar serviço(s)"
47
-
48
- #: add-to-any.php:266
49
- msgid "Instantly find any service to add to"
50
- msgstr "Encontrar rapidamente qualquer serviço para"
51
-
52
- #: add-to-any.php:267
53
- msgid "Powered by"
54
- msgstr "Serviço fornecido por"
55
-
56
- #: add-to-any.php:268
57
- msgid "Share via e-mail"
58
- msgstr "Partilhar por e-mail"
59
-
60
- #: add-to-any.php:269
61
- msgid "Subscribe via e-mail"
62
- msgstr "Subscrever por e-mail"
63
-
64
- #: add-to-any.php:270
65
- msgid "Bookmark in your browser"
66
- msgstr "Adicionar marcador"
67
-
68
- #: add-to-any.php:271
69
- msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
- msgstr "Pressione Ctrl+D ou &#8984;+D para adicionar esta página aos marcadores"
71
-
72
- #: add-to-any.php:272
73
- msgid "Add to your favorites"
74
- msgstr "Adicionar a favoritos"
75
-
76
- #: add-to-any.php:273
77
- msgid "Send from any e-mail address or e-mail program"
78
- msgstr "Enviar de qualquer e-mail ou programa de e-mail"
79
-
80
- #: add-to-any.php:274
81
- msgid "E-mail program"
82
- msgstr "Programa de e-mail"
83
-
84
- #: add-to-any.php:299
85
- msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
86
- 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>&lt;?php wp_footer(); ?&gt;</code> mesmo antes da linha <code>&lt;/body&gt;</code> do ficheiro <code>footer.php</code> do tema."
87
-
88
- #: add-to-any.php:490
89
- #, php-format
90
- msgid "Unable to create directory %s. Is its parent directory writable by the server?"
91
- msgstr ""
92
-
93
- #: add-to-any.php:566
94
- #: add-to-any.php:639
95
- #: add-to-any.php:643
96
- #: add-to-any.php:647
97
- #: add-to-any.php:651
98
- #: add-to-any.php:683
99
- msgid "Share/Bookmark"
100
- msgstr "Marcador"
101
-
102
- #: add-to-any.php:580
103
- msgid "Settings saved."
104
- msgstr "Configuração guardada."
105
-
106
- #: add-to-any.php:593
107
- msgid "AddToAny: Share/Save "
108
- msgstr "AddToAny: Partilhar/Guardar "
109
-
110
- #: add-to-any.php:593
111
- #: add-to-any.php:978
112
- #: add-to-any.php:1002
113
- msgid "Settings"
114
- msgstr "Configurações"
115
-
116
- #: add-to-any.php:602
117
- msgid "Standalone Services"
118
- msgstr "Serviços Isolados"
119
-
120
- #: add-to-any.php:607
121
- msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
122
- msgstr "Escolha os serviços que deseja. &nbsp;Clique novamente num serviço já escolhido para o remover. &nbsp;Reordene os serviços fazendo drag'n'drop conforme aparecem por cima."
123
-
124
- #: add-to-any.php:634
125
- msgid "Button"
126
- msgstr "Botão"
127
-
128
- #: add-to-any.php:673
129
- msgid "Image URL"
130
- msgstr "URL da imagem"
131
-
132
- #: add-to-any.php:680
133
- msgid "Text only"
134
- msgstr "Apenas texto"
135
-
136
- #: add-to-any.php:688
137
- msgid "Placement"
138
- msgstr "Posicionamento"
139
-
140
- #: add-to-any.php:697
141
- msgid "Display Share/Save button at the bottom of posts"
142
- msgstr "Mostrar o botão Partilhar/Guardar no fim de cada post"
143
-
144
- #: add-to-any.php:704
145
- msgid "Display Share/Save button at the bottom of posts on the front page"
146
- msgstr "Mostrar o botão Partilhar/Guardar no fim dos posts na página principal"
147
-
148
- #: add-to-any.php:711
149
- msgid "Display Share/Save button at the bottom of posts in the feed"
150
- msgstr "Mostrar o botão Partilhar/Guardar no fim dos posts do feed RSS"
151
-
152
- #: add-to-any.php:715
153
- msgid "Display Share/Save button at the bottom of pages"
154
- msgstr "Mostrar o botão Partilhar/Guardar no fim das páginas"
155
-
156
- #: add-to-any.php:719
157
- 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>)"
158
- 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>)"
159
-
160
- #: add-to-any.php:728
161
- msgid "Menu Style"
162
- msgstr "Estilo de Menu"
163
-
164
- #: add-to-any.php:730
165
- 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."
166
- 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."
167
-
168
- #: add-to-any.php:732
169
- msgid "Open the AddToAny Menu Styler in a new window"
170
- msgstr "Abrir o Menu de Personalização de Estilos AddToAny numa nova janela"
171
-
172
- #: add-to-any.php:734
173
- msgid "Open Menu Styler"
174
- msgstr "Abrir o Menu de Personalização de Estilos"
175
-
176
- #: add-to-any.php:739
177
- msgid "Menu Options"
178
- msgstr "Opções de Menu"
179
-
180
- #: add-to-any.php:744
181
- msgid "Show the title of the post (or page) within the menu"
182
- msgstr "Mostrar o título do post (ou da página) dentro do menu"
183
-
184
- #: add-to-any.php:751
185
- msgid "Only show the menu when the user clicks the Share/Save button"
186
- msgstr "Mostrar apenas o menu quando o utilizador fizer um clique no botão Partilhar/Guardar"
187
-
188
- #: add-to-any.php:757
189
- msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
190
- msgstr "Abrir o menu de addtoany.com num novo separador ou janela se o utilizador fizer um clique no botão Partilhar/Guardar"
191
-
192
- #: add-to-any.php:762
193
- msgid "Additional Options"
194
- msgstr "Opções Adicionais"
195
-
196
- #: add-to-any.php:766
197
- msgid "Paste the code from AddToAny's Menu Styler in the box below!"
198
- msgstr "Cole o código do Menu de Personalização de Estilos do AddToAny na caixa a seguir!"
199
-
200
- #: add-to-any.php:770
201
- msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
202
- msgstr "Em baixo pode inserir varáveis especiais de JavaScript para aplicar a cada menu Partilhar/Guardar."
203
-
204
- #: add-to-any.php:771
205
- msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
206
- msgstr "Utilizadores avançados podem querer explorar o <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">API do JavaScript</a> do AddToAny."
207
-
208
- #: add-to-any.php:777
209
- msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
210
- msgstr "<strong>Nota</strong>: Se está a adicionar novo código, tenha cuidado para não sobrescrever (apagar) acidentalmente qualquer código existente.</label>"
211
-
212
- #: add-to-any.php:782
213
- #, fuzzy
214
- msgid "Advanced Options"
215
- msgstr "Opções Adicionais"
216
-
217
- #: add-to-any.php:787
218
- msgid "Use CSS stylesheet"
219
- msgstr ""
220
-
221
- #: add-to-any.php:792
222
- msgid "Cache AddToAny locally with daily cache updates"
223
- msgstr ""
224
-
225
- #: add-to-any.php:796
226
- msgid "If unchecked, be sure to place the CSS in your theme's stylesheet:"
227
- msgstr ""
228
-
229
- #: add-to-any.php:801
230
- 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."
231
- msgstr ""
232
-
233
- #: add-to-any.php:808
234
- msgid "Save Changes"
235
- msgstr "Guardar alterações"
236
-
237
- #: add-to-any.php:813
238
- msgid "Like this plugin?"
239
- msgstr "Gosta deste plugin?"
240
-
241
- #: add-to-any.php:814
242
- msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
243
- msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Atribua-lhe uma boa pontuação</a> no WordPress.org."
244
-
245
- #: add-to-any.php:815
246
- msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
247
- msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Partilhar</a> com os amigos."
248
-
249
- #: add-to-any.php:817
250
- msgid "Need support?"
251
- msgstr "Precisa de ajuda?"
252
-
253
- #: add-to-any.php:818
254
- msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
255
- msgstr "Consulte a página de <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ's</a>."
256
-
257
- #: add-to-any.php:819
258
- msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
259
- msgstr "Procurar nos <a href=\"http://wordpress.org/tags/add-to-any\">fóruns</a> de ajuda."
260
-
261
- #: add-to-any.php:926
262
- msgid "Add/Remove Services"
263
- msgstr "Adicionar/Remover Serviços"
264
-
265
- #: add-to-any.php:978
266
- msgid "Share/Save"
267
- msgstr "Partilhar/Guardar"
268
-
269
- #: add-to-any.php:979
270
- msgid "Share/Save Buttons"
271
- msgstr "Botões Partilhar/Guardar"
272
-
273
- #~ msgid ""
274
- #~ "Hide embedded objects (Flash, video, etc.) that intersect with the menu "
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 &#8984;+D to bookmark this page"
73
+ msgstr "Pressione Ctrl+D ou &#8984;+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>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</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>&lt;?php wp_footer(); ?&gt;</code> mesmo antes da linha <code>&lt;/body&gt;</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. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
125
+ msgstr "Escolha os serviços que deseja. &nbsp;Clique novamente num serviço já escolhido para o remover. &nbsp;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&amp;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&amp;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
+