AddToAny Share Buttons - Version 0.9.9.3.3

Version Description

Download this release

Release Info

Developer micropat
Plugin Icon 128x128 AddToAny Share Buttons
Version 0.9.9.3.3
Comparing to
See all releases

Code changes from version 0.9.9.3.2 to 0.9.9.3.3

README.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: micropat
3
  Donate link: http://www.addtoany.com/contact/
4
  Tags: bookmarking, social, social bookmarking, social bookmarks, bookmark, bookmarks, sharing, share, sharethis, saving, save, Post, posts, page, pages, images, image, admin, statistics, stats, links, plugin, widget, e-mail, email, seo, button, delicious, google, digg, reddit, facebook, myspace, twitter, stumbleupon, technorati, wpmu, addtoany, add, any
5
  Requires at least: 2.0
6
- Tested up to: 2.8.1
7
- Stable tag: 0.9.9.3.2
8
 
9
  Help readers share, save, bookmark, and email your posts and pages using any service, such as Facebook, Twitter, Digg, Delicious and over 100 more.
10
 
@@ -106,6 +106,13 @@ This is done to overcome browser limitations that prevent the drop-down menu fro
106
 
107
  == Changelog ==
108
 
 
 
 
 
 
 
 
109
  = .9.9.3.2 =
110
  * Clarified button placement and theme editing
111
  * Arabic translation
3
  Donate link: http://www.addtoany.com/contact/
4
  Tags: bookmarking, social, social bookmarking, social bookmarks, bookmark, bookmarks, sharing, share, sharethis, saving, save, Post, posts, page, pages, images, image, admin, statistics, stats, links, plugin, widget, e-mail, email, seo, button, delicious, google, digg, reddit, facebook, myspace, twitter, stumbleupon, technorati, wpmu, addtoany, add, any
5
  Requires at least: 2.0
6
+ Tested up to: 2.8.2
7
+ Stable tag: 0.9.9.3.3
8
 
9
  Help readers share, save, bookmark, and email your posts and pages using any service, such as Facebook, Twitter, Digg, Delicious and over 100 more.
10
 
106
 
107
  == Changelog ==
108
 
109
+ = .9.9.3.3 =
110
+ * Left-padding for icon+text link changed from 39px to 30px
111
+ * Text-index for parent UL reset
112
+ * Output buffering replaced
113
+ * Fixed admin action link
114
+ * Russian translation (by Elvis)
115
+
116
  = .9.9.3.2 =
117
  * Clarified button placement and theme editing
118
  * Arabic translation
add-to-any.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Add to Any: Share/Bookmark/Email Button
4
  Plugin URI: http://www.addtoany.com/
5
  Description: Help readers share, save, bookmark, and email your posts and pages using any service. [<a href="options-general.php?page=add-to-any.php">Settings</a>]
6
- Version: .9.9.3.2
7
  Author: Add to Any
8
  Author URI: http://www.addtoany.com/contact/
9
  */
@@ -46,7 +46,7 @@ include_once('services.php');
46
 
47
  function ADDTOANY_SHARE_SAVE_ICONS( $args = false ) {
48
  if( $args )
49
- extract( $args ); // output_buffering, html_wrap_open, html_wrap_close
50
  extract(A2A_SHARE_SAVE_link_vars()); // linkname_enc, etc.
51
 
52
  global $A2A_SHARE_SAVE_plugin_url_path, $A2A_SHARE_SAVE_services;
@@ -76,15 +76,10 @@ function ADDTOANY_SHARE_SAVE_ICONS( $args = false ) {
76
  $ind_html .= apply_filters('addtoany_link', $link);
77
  }
78
 
79
- if($output_buffering) ob_start();
80
-
81
- echo $ind_html;
82
-
83
- if($output_buffering) {
84
- $button = ob_get_contents();
85
- ob_end_clean();
86
  return $ind_html;
87
- }
 
88
  }
89
 
90
  function ADDTOANY_SHARE_SAVE_BUTTON( $args = false ) {
@@ -92,9 +87,7 @@ function ADDTOANY_SHARE_SAVE_BUTTON( $args = false ) {
92
  global $A2A_SHARE_SAVE_plugin_url_path, $A2A_SHARE_SAVE_services;
93
 
94
  if( $args )
95
- extract( $args ); // output_buffering, html_wrap_open, html_wrap_close
96
-
97
- if($output_buffering) ob_start();
98
 
99
  extract(A2A_SHARE_SAVE_link_vars()); // linkname_enc, etc.
100
 
@@ -124,7 +117,7 @@ function ADDTOANY_SHARE_SAVE_BUTTON( $args = false ) {
124
  if( !is_feed() ) {
125
  $style_bg = 'background:url('.$A2A_SHARE_SAVE_plugin_url_path.'/'.$button_fname.') no-repeat scroll 9px 0px'; // padding-left:9 (9=other icons padding)
126
  $style_bg = ';' . $style_bg . ' !important;';
127
- $style = ' style="'.$style_bg.'padding:0 0 0 39px;display:inline-block;height:16px;line-height:16px;vertical-align:middle;"'; // padding-left:30+9 (9=other icons padding)
128
  }
129
  $button = stripslashes(get_option('A2A_SHARE_SAVE_button_text'));
130
  } else if( $button_text ) {
@@ -132,7 +125,7 @@ function ADDTOANY_SHARE_SAVE_BUTTON( $args = false ) {
132
  } else
133
  $button = '<img src="'.$button_src.'"'.$button_width.$button_height.' alt="Share/Save/Bookmark"/>';
134
 
135
- echo $html_wrap_open.'<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?'
136
  .'linkurl='.$linkurl_enc
137
  .'&amp;linkname='.$linkname_enc
138
  .'"' . $style . $button_target
@@ -163,11 +156,10 @@ function ADDTOANY_SHARE_SAVE_BUTTON( $args = false ) {
163
 
164
  }
165
 
166
- if($output_buffering) {
167
- $button = ob_get_contents();
168
- ob_end_clean();
169
- return $button;
170
- }
171
  }
172
 
173
  if (!function_exists('A2A_menu_javascript')) {
@@ -257,13 +249,13 @@ function A2A_SHARE_SAVE_to_bottom_of_content($content) {
257
  return $content;
258
 
259
  $icons_args = array(
260
- "output_buffering" => true,
261
  "html_wrap_open" => ($is_feed) ? "" : "<li>",
262
  "html_wrap_close" => ($is_feed) ? " " : "</li>",
263
  );
264
 
265
  $A2A_SHARE_SAVE_options = array(
266
- "output_buffering" => true,
267
  "html_wrap_open" => ($is_feed) ? "" : "<li>",
268
  "html_wrap_close" => ($is_feed) ? "" : "</li>",
269
  );
@@ -288,12 +280,13 @@ function A2A_SHARE_SAVE_button_css() {
288
  list-style-type:none;
289
  margin:0 !important;
290
  padding:0 !important;
 
291
  }
292
  ul.addtoany_list li{
293
  background:none !important;
294
  border:0;
295
  display:inline !important;
296
- line-height:32px;<?php // For vertical space in the event of wrapping ?>
297
  list-style-type:none;
298
  margin:0 !important;
299
  padding:0 !important;
@@ -319,7 +312,7 @@ function A2A_SHARE_SAVE_button_css() {
319
  -moz-opacity:1;
320
  filter:alpha(opacity=100);
321
  }
322
- a.addtoany_share_save img{border:0;width:auto;height:auto;}<?php // Must declare after "ul.addtoany_list img" ?>
323
  </style>
324
  <?php
325
  }
@@ -750,15 +743,20 @@ function A2A_SHARE_SAVE_add_menu_link() {
750
 
751
  add_action('admin_menu', 'A2A_SHARE_SAVE_add_menu_link');
752
 
753
-
754
- function A2A_SHARE_SAVE_actlinks( $links ) {
755
- // Add a link to this plugin's settings page
756
- $settings_link = '<a href="options-general.php?page=add-to-any.php">Settings</a>';
757
- array_unshift( $links, $settings_link );
758
- return $links;
 
 
 
 
 
759
  }
760
 
761
- add_filter("plugin_action_links_$A2A_SHARE_SAVE_plugin_basename", 'A2A_SHARE_SAVE_actlinks' );
762
 
763
 
764
  ?>
3
  Plugin Name: Add to Any: Share/Bookmark/Email Button
4
  Plugin URI: http://www.addtoany.com/
5
  Description: Help readers share, save, bookmark, and email your posts and pages using any service. [<a href="options-general.php?page=add-to-any.php">Settings</a>]
6
+ Version: .9.9.3.3
7
  Author: Add to Any
8
  Author URI: http://www.addtoany.com/contact/
9
  */
46
 
47
  function ADDTOANY_SHARE_SAVE_ICONS( $args = false ) {
48
  if( $args )
49
+ extract( $args ); // output_later, html_wrap_open, html_wrap_close
50
  extract(A2A_SHARE_SAVE_link_vars()); // linkname_enc, etc.
51
 
52
  global $A2A_SHARE_SAVE_plugin_url_path, $A2A_SHARE_SAVE_services;
76
  $ind_html .= apply_filters('addtoany_link', $link);
77
  }
78
 
79
+ if($output_later)
 
 
 
 
 
 
80
  return $ind_html;
81
+ else
82
+ echo $ind_html;
83
  }
84
 
85
  function ADDTOANY_SHARE_SAVE_BUTTON( $args = false ) {
87
  global $A2A_SHARE_SAVE_plugin_url_path, $A2A_SHARE_SAVE_services;
88
 
89
  if( $args )
90
+ extract( $args ); // output_later, html_wrap_open, html_wrap_close
 
 
91
 
92
  extract(A2A_SHARE_SAVE_link_vars()); // linkname_enc, etc.
93
 
117
  if( !is_feed() ) {
118
  $style_bg = 'background:url('.$A2A_SHARE_SAVE_plugin_url_path.'/'.$button_fname.') no-repeat scroll 9px 0px'; // padding-left:9 (9=other icons padding)
119
  $style_bg = ';' . $style_bg . ' !important;';
120
+ $style = ' style="'.$style_bg.'padding:0 0 0 30px;display:inline-block;height:16px;line-height:16px;vertical-align:middle;"'; // padding-left:30+9 (9=other icons padding)
121
  }
122
  $button = stripslashes(get_option('A2A_SHARE_SAVE_button_text'));
123
  } else if( $button_text ) {
125
  } else
126
  $button = '<img src="'.$button_src.'"'.$button_width.$button_height.' alt="Share/Save/Bookmark"/>';
127
 
128
+ $button_html = $html_wrap_open.'<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?'
129
  .'linkurl='.$linkurl_enc
130
  .'&amp;linkname='.$linkname_enc
131
  .'"' . $style . $button_target
156
 
157
  }
158
 
159
+ if($output_later)
160
+ return $button_html;
161
+ else
162
+ echo $button_html;
 
163
  }
164
 
165
  if (!function_exists('A2A_menu_javascript')) {
249
  return $content;
250
 
251
  $icons_args = array(
252
+ "output_later" => true,
253
  "html_wrap_open" => ($is_feed) ? "" : "<li>",
254
  "html_wrap_close" => ($is_feed) ? " " : "</li>",
255
  );
256
 
257
  $A2A_SHARE_SAVE_options = array(
258
+ "output_later" => true,
259
  "html_wrap_open" => ($is_feed) ? "" : "<li>",
260
  "html_wrap_close" => ($is_feed) ? "" : "</li>",
261
  );
280
  list-style-type:none;
281
  margin:0 !important;
282
  padding:0 !important;
283
+ text-indent:0 !important;
284
  }
285
  ul.addtoany_list li{
286
  background:none !important;
287
  border:0;
288
  display:inline !important;
289
+ line-height:32px;<?php /* For vertical space in the event of wrapping*/ ?>
290
  list-style-type:none;
291
  margin:0 !important;
292
  padding:0 !important;
312
  -moz-opacity:1;
313
  filter:alpha(opacity=100);
314
  }
315
+ a.addtoany_share_save img{border:0;width:auto;height:auto;}<?php /* Must declare after "ul.addtoany_list img" */ ?>
316
  </style>
317
  <?php
318
  }
743
 
744
  add_action('admin_menu', 'A2A_SHARE_SAVE_add_menu_link');
745
 
746
+ // Place in Settings Option List
747
+ function A2A_SHARE_SAVE_actlinks( $links, $file ){
748
+ //Static so we don't call plugin_basename on every plugin row.
749
+ static $this_plugin;
750
+ if ( ! $this_plugin ) $this_plugin = plugin_basename(__FILE__);
751
+
752
+ if ( $file == $this_plugin ){
753
+ $settings_link = '<a href="options-general.php?page=add-to-any.php">' . __('Settings') . '</a>';
754
+ array_unshift( $links, $settings_link ); // before other links
755
+ }
756
+ return $links;
757
  }
758
 
759
+ add_filter("plugin_action_links", 'A2A_SHARE_SAVE_actlinks', 10, 2);
760
 
761
 
762
  ?>
languages/add-to-any-be.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-07-14 21:23-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: Marcis Gasuns <mrilyuha@gmail.com>\n"
@@ -15,231 +15,232 @@ msgstr ""
15
  "X-Poedit-Country: BELARUS\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: add-to-any.php:185
19
  msgid "Share"
20
  msgstr "Падзяліць"
21
 
22
- #: add-to-any.php:186
23
  msgid "Save"
24
  msgstr "Захаваць"
25
 
26
- #: add-to-any.php:187
27
  msgid "Subscribe"
28
  msgstr "Падпісацца"
29
 
30
- #: add-to-any.php:188
31
  msgid "E-mail"
32
  msgstr "Электоронная пошта"
33
 
34
- #: add-to-any.php:189
35
  msgid "Bookmark"
36
  msgstr "Закладка"
37
 
38
- #: add-to-any.php:190
39
  msgid "Show all"
40
  msgstr "Паказаць усё"
41
 
42
- #: add-to-any.php:191
43
  msgid "Show less"
44
  msgstr "Паказаць менш"
45
 
46
- #: add-to-any.php:192
47
  msgid "Find service(s)"
48
  msgstr "Знайсці паслугу(і)"
49
 
50
- #: add-to-any.php:193
51
  msgid "Instantly find any service to add to"
52
  msgstr "Імгненна знайсці яку-небудзь паслугу, каб дадаць да"
53
 
54
- #: add-to-any.php:194
55
  msgid "Powered by"
56
  msgstr "Кіруецца"
57
 
58
- #: add-to-any.php:195
59
  msgid "Share via e-mail"
60
  msgstr "Адправіць па электроннай пошце"
61
 
62
- #: add-to-any.php:196
63
  msgid "Subscribe via e-mail"
64
  msgstr "Падпісацца па электроннай пошце"
65
 
66
- #: add-to-any.php:197
67
  msgid "Bookmark in your browser"
68
  msgstr "Закладка ў вашым браузеры"
69
 
70
- #: add-to-any.php:198
71
  #, fuzzy
72
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
73
  msgstr "Націсніце Ctrl+D ці Cmd+D, каб стварыць закладку гэтай старонкі"
74
 
75
- #: add-to-any.php:199
76
  msgid "Add to your favorites"
77
  msgstr "Дадаць у выбранае"
78
 
79
- #: add-to-any.php:200
80
  msgid "Send from any e-mail address or e-mail program"
81
  msgstr "Адправіць з любога пошатовага адрасу ці з паштовай праграмы"
82
 
83
- #: add-to-any.php:201
84
  msgid "E-mail program"
85
  msgstr "Паштовая праграма"
86
 
87
- #: add-to-any.php:226
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 "Ваша тэма павінна быць выпраўленая. Каб выправіць вашу тэму, выкарыстайце <a href=\"theme-editor.php\"> Тэма рэдактар </ A>, каб уставіць <code> <? PHP wp_footer ();?> </ Code> незадоўга да <code> </ BODY> </ Code> лінію вашай тэмы <code> footer.php </ cod> файл."
90
 
91
- #: add-to-any.php:375
92
  msgid "Settings saved."
93
  msgstr "Наладкі захаваны"
94
 
95
- #: add-to-any.php:386
96
  msgid "Add to Any: Share/Save "
97
  msgstr "Дадаць у любое: падзяліць/захаваць"
98
 
99
- #: add-to-any.php:386
100
- #: add-to-any.php:739
 
101
  msgid "Settings"
102
  msgstr "Наладкі"
103
 
104
- #: add-to-any.php:396
105
  #, fuzzy
106
  msgid "Standalone Services"
107
  msgstr "Дадаць/Выдаліць паслугі"
108
 
109
- #: add-to-any.php:401
110
  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."
111
  msgstr ""
112
 
113
- #: add-to-any.php:420
114
  msgid "Button"
115
  msgstr "Клавіша"
116
 
117
- #: add-to-any.php:459
118
  msgid "Image URL"
119
  msgstr "URL de l'imatge"
120
 
121
- #: add-to-any.php:466
122
  msgid "Text only"
123
  msgstr "Толькт тэкст"
124
 
125
- #: add-to-any.php:474
126
  msgid "Placement"
127
  msgstr "Размяшчэнне"
128
 
129
- #: add-to-any.php:483
130
  msgid "Display Share/Save button at the bottom of posts"
131
  msgstr "Паказаць клавішу Адкрыць / Захаваць унізе запісаў"
132
 
133
- #: add-to-any.php:490
134
  msgid "Display Share/Save button at the bottom of posts on the front page"
135
  msgstr "Паказаць клавішу Адкрыць/Захаваць унізе запісаў на тытульнай старонцы"
136
 
137
- #: add-to-any.php:497
138
  msgid "Display Share/Save button at the bottom of posts in the feed"
139
  msgstr ""
140
 
141
- #: add-to-any.php:501
142
  msgid "Display Share/Save button at the bottom of pages"
143
  msgstr "Паказаць клавішу Адкрыць/Захаваць унізе старонак"
144
 
145
- #: add-to-any.php:505
146
  #, fuzzy
147
  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>)"
148
  msgstr "Калі яе не спыніць, то не забудзьцеся змясціць наступны код у <a href=\"theme-editor.php\"> шаблон старонкі </ A> (у <code> index.php </code>, <code> сінгл. PHP </cod> і / або <code> page.php </ code>) \t\t \t"
149
 
150
- #: add-to-any.php:514
151
  msgid "Menu Style"
152
  msgstr "Стыль меню"
153
 
154
- #: add-to-any.php:516
155
  msgid "Using Add to Any'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."
156
  msgstr "Выкарыстанне Дадаць у любое меню Styler, вы можаце наладзіць колеры вашага Адкрыць / Захаваць мяню! Калі вы скончыце, не забудзьцеся ўставіць генераваны код у <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\"> Дадатковыя параметры </ A> ніжэй."
157
 
158
- #: add-to-any.php:518
159
  msgid "Open the Add to Any Menu Styler in a new window"
160
  msgstr "Адкрыць Дадаць у меню Styler у новым акне"
161
 
162
- #: add-to-any.php:520
163
  msgid "Open Menu Styler"
164
  msgstr "Адкрыць меню Styler"
165
 
166
- #: add-to-any.php:525
167
  msgid "Menu Options"
168
  msgstr "Меню опцый"
169
 
170
- #: add-to-any.php:530
171
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
172
  msgstr "Схаваць убудаваыях аб'екты (Flash, відэа і г.д.), якія перасякаюцца з меню пры адлюстраванні"
173
 
174
- #: add-to-any.php:535
175
  msgid "Show the title of the post (or page) within the menu"
176
  msgstr "Паказаць назву запісу(альбо старонкі) без меню"
177
 
178
- #: add-to-any.php:542
179
  msgid "Only show the menu when the user clicks the Share/Save button"
180
  msgstr " Паказваць толькі меню, калі карыстальнік клікае клавішу Адкрыць/Захаваць"
181
 
182
- #: add-to-any.php:548
183
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
184
  msgstr "Адкрыць меню addtoany.com старонкі ў новую ўкладку або акно, калі карыстальнік націскае кнопку Адкрыць/ Захаваць \t\t \t"
185
 
186
- #: add-to-any.php:553
187
  msgid "Additional Options"
188
  msgstr "Дадатковыя Опцыі"
189
 
190
- #: add-to-any.php:557
191
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
192
  msgstr "Уставіць код з Дадаць у любое меню Styler у поле ніжэй!"
193
 
194
- #: add-to-any.php:561
195
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
196
  msgstr "Ніжэй вы можаце ўсталяваць адмысловы JavaScript, які будзе ўжывацца да кожнага Адкрыць / Захаваць меню."
197
 
198
- #: add-to-any.php:562
199
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
200
  msgstr "Дасведчаныя карыстальнікі, магчыма, пажадаюць вывучыць Дадаць у <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\"> JavaScript API </ A>."
201
 
202
- #: add-to-any.php:568
203
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
204
  msgstr "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label><strong>Заўвага</strong> : Калі Вы дадаеце новы код, будзьце ўважлівыя і не перапішыце выпадкова любы папярэдні код."
205
 
206
- #: add-to-any.php:575
207
  msgid "Save Changes"
208
  msgstr "Захаваць змены"
209
 
210
- #: add-to-any.php:580
211
  msgid "Like this plugin?"
212
  msgstr "Як і гэты плагін?"
213
 
214
- #: add-to-any.php:581
215
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
216
  msgstr ""
217
 
218
- #: add-to-any.php:582
219
  msgid "<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\">Share it</a> with your friends."
220
  msgstr ""
221
 
222
- #: add-to-any.php:584
223
  msgid "Need support?"
224
  msgstr "Патрэбна падтрымка?"
225
 
226
- #: add-to-any.php:585
227
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
228
  msgstr "Паглядзіце <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
229
 
230
- #: add-to-any.php:586
231
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
232
  msgstr "Пошук <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
233
 
234
- #: add-to-any.php:693
235
  msgid "Add/Remove Services"
236
  msgstr "Дадаць/Выдаліць паслугі"
237
 
238
- #: add-to-any.php:739
239
  msgid "Share/Save"
240
  msgstr "Адкрыць/Захаваць"
241
 
242
- #: add-to-any.php:740
243
  msgid "Share/Save Buttons"
244
  msgstr "Кнопка Адкрыць/Захаваць"
245
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-07-23 18:16-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: Marcis Gasuns <mrilyuha@gmail.com>\n"
15
  "X-Poedit-Country: BELARUS\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: add-to-any.php:177
19
  msgid "Share"
20
  msgstr "Падзяліць"
21
 
22
+ #: add-to-any.php:178
23
  msgid "Save"
24
  msgstr "Захаваць"
25
 
26
+ #: add-to-any.php:179
27
  msgid "Subscribe"
28
  msgstr "Падпісацца"
29
 
30
+ #: add-to-any.php:180
31
  msgid "E-mail"
32
  msgstr "Электоронная пошта"
33
 
34
+ #: add-to-any.php:181
35
  msgid "Bookmark"
36
  msgstr "Закладка"
37
 
38
+ #: add-to-any.php:182
39
  msgid "Show all"
40
  msgstr "Паказаць усё"
41
 
42
+ #: add-to-any.php:183
43
  msgid "Show less"
44
  msgstr "Паказаць менш"
45
 
46
+ #: add-to-any.php:184
47
  msgid "Find service(s)"
48
  msgstr "Знайсці паслугу(і)"
49
 
50
+ #: add-to-any.php:185
51
  msgid "Instantly find any service to add to"
52
  msgstr "Імгненна знайсці яку-небудзь паслугу, каб дадаць да"
53
 
54
+ #: add-to-any.php:186
55
  msgid "Powered by"
56
  msgstr "Кіруецца"
57
 
58
+ #: add-to-any.php:187
59
  msgid "Share via e-mail"
60
  msgstr "Адправіць па электроннай пошце"
61
 
62
+ #: add-to-any.php:188
63
  msgid "Subscribe via e-mail"
64
  msgstr "Падпісацца па электроннай пошце"
65
 
66
+ #: add-to-any.php:189
67
  msgid "Bookmark in your browser"
68
  msgstr "Закладка ў вашым браузеры"
69
 
70
+ #: add-to-any.php:190
71
  #, fuzzy
72
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
73
  msgstr "Націсніце Ctrl+D ці Cmd+D, каб стварыць закладку гэтай старонкі"
74
 
75
+ #: add-to-any.php:191
76
  msgid "Add to your favorites"
77
  msgstr "Дадаць у выбранае"
78
 
79
+ #: add-to-any.php:192
80
  msgid "Send from any e-mail address or e-mail program"
81
  msgstr "Адправіць з любога пошатовага адрасу ці з паштовай праграмы"
82
 
83
+ #: add-to-any.php:193
84
  msgid "E-mail program"
85
  msgstr "Паштовая праграма"
86
 
87
+ #: add-to-any.php:218
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 "Ваша тэма павінна быць выпраўленая. Каб выправіць вашу тэму, выкарыстайце <a href=\"theme-editor.php\"> Тэма рэдактар </ A>, каб уставіць <code> <? PHP wp_footer ();?> </ Code> незадоўга да <code> </ BODY> </ Code> лінію вашай тэмы <code> footer.php </ cod> файл."
90
 
91
+ #: add-to-any.php:368
92
  msgid "Settings saved."
93
  msgstr "Наладкі захаваны"
94
 
95
+ #: add-to-any.php:379
96
  msgid "Add to Any: Share/Save "
97
  msgstr "Дадаць у любое: падзяліць/захаваць"
98
 
99
+ #: add-to-any.php:379
100
+ #: add-to-any.php:732
101
+ #: add-to-any.php:753
102
  msgid "Settings"
103
  msgstr "Наладкі"
104
 
105
+ #: add-to-any.php:389
106
  #, fuzzy
107
  msgid "Standalone Services"
108
  msgstr "Дадаць/Выдаліць паслугі"
109
 
110
+ #: add-to-any.php:394
111
  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."
112
  msgstr ""
113
 
114
+ #: add-to-any.php:413
115
  msgid "Button"
116
  msgstr "Клавіша"
117
 
118
+ #: add-to-any.php:452
119
  msgid "Image URL"
120
  msgstr "URL de l'imatge"
121
 
122
+ #: add-to-any.php:459
123
  msgid "Text only"
124
  msgstr "Толькт тэкст"
125
 
126
+ #: add-to-any.php:467
127
  msgid "Placement"
128
  msgstr "Размяшчэнне"
129
 
130
+ #: add-to-any.php:476
131
  msgid "Display Share/Save button at the bottom of posts"
132
  msgstr "Паказаць клавішу Адкрыць / Захаваць унізе запісаў"
133
 
134
+ #: add-to-any.php:483
135
  msgid "Display Share/Save button at the bottom of posts on the front page"
136
  msgstr "Паказаць клавішу Адкрыць/Захаваць унізе запісаў на тытульнай старонцы"
137
 
138
+ #: add-to-any.php:490
139
  msgid "Display Share/Save button at the bottom of posts in the feed"
140
  msgstr ""
141
 
142
+ #: add-to-any.php:494
143
  msgid "Display Share/Save button at the bottom of pages"
144
  msgstr "Паказаць клавішу Адкрыць/Захаваць унізе старонак"
145
 
146
+ #: add-to-any.php:498
147
  #, fuzzy
148
  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>)"
149
  msgstr "Калі яе не спыніць, то не забудзьцеся змясціць наступны код у <a href=\"theme-editor.php\"> шаблон старонкі </ A> (у <code> index.php </code>, <code> сінгл. PHP </cod> і / або <code> page.php </ code>) \t\t \t"
150
 
151
+ #: add-to-any.php:507
152
  msgid "Menu Style"
153
  msgstr "Стыль меню"
154
 
155
+ #: add-to-any.php:509
156
  msgid "Using Add to Any'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."
157
  msgstr "Выкарыстанне Дадаць у любое меню Styler, вы можаце наладзіць колеры вашага Адкрыць / Захаваць мяню! Калі вы скончыце, не забудзьцеся ўставіць генераваны код у <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\"> Дадатковыя параметры </ A> ніжэй."
158
 
159
+ #: add-to-any.php:511
160
  msgid "Open the Add to Any Menu Styler in a new window"
161
  msgstr "Адкрыць Дадаць у меню Styler у новым акне"
162
 
163
+ #: add-to-any.php:513
164
  msgid "Open Menu Styler"
165
  msgstr "Адкрыць меню Styler"
166
 
167
+ #: add-to-any.php:518
168
  msgid "Menu Options"
169
  msgstr "Меню опцый"
170
 
171
+ #: add-to-any.php:523
172
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
173
  msgstr "Схаваць убудаваыях аб'екты (Flash, відэа і г.д.), якія перасякаюцца з меню пры адлюстраванні"
174
 
175
+ #: add-to-any.php:528
176
  msgid "Show the title of the post (or page) within the menu"
177
  msgstr "Паказаць назву запісу(альбо старонкі) без меню"
178
 
179
+ #: add-to-any.php:535
180
  msgid "Only show the menu when the user clicks the Share/Save button"
181
  msgstr " Паказваць толькі меню, калі карыстальнік клікае клавішу Адкрыць/Захаваць"
182
 
183
+ #: add-to-any.php:541
184
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
185
  msgstr "Адкрыць меню addtoany.com старонкі ў новую ўкладку або акно, калі карыстальнік націскае кнопку Адкрыць/ Захаваць \t\t \t"
186
 
187
+ #: add-to-any.php:546
188
  msgid "Additional Options"
189
  msgstr "Дадатковыя Опцыі"
190
 
191
+ #: add-to-any.php:550
192
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
193
  msgstr "Уставіць код з Дадаць у любое меню Styler у поле ніжэй!"
194
 
195
+ #: add-to-any.php:554
196
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
197
  msgstr "Ніжэй вы можаце ўсталяваць адмысловы JavaScript, які будзе ўжывацца да кожнага Адкрыць / Захаваць меню."
198
 
199
+ #: add-to-any.php:555
200
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
201
  msgstr "Дасведчаныя карыстальнікі, магчыма, пажадаюць вывучыць Дадаць у <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\"> JavaScript API </ A>."
202
 
203
+ #: add-to-any.php:561
204
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
205
  msgstr "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label><strong>Заўвага</strong> : Калі Вы дадаеце новы код, будзьце ўважлівыя і не перапішыце выпадкова любы папярэдні код."
206
 
207
+ #: add-to-any.php:568
208
  msgid "Save Changes"
209
  msgstr "Захаваць змены"
210
 
211
+ #: add-to-any.php:573
212
  msgid "Like this plugin?"
213
  msgstr "Як і гэты плагін?"
214
 
215
+ #: add-to-any.php:574
216
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
217
  msgstr ""
218
 
219
+ #: add-to-any.php:575
220
  msgid "<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\">Share it</a> with your friends."
221
  msgstr ""
222
 
223
+ #: add-to-any.php:577
224
  msgid "Need support?"
225
  msgstr "Патрэбна падтрымка?"
226
 
227
+ #: add-to-any.php:578
228
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
229
  msgstr "Паглядзіце <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
230
 
231
+ #: add-to-any.php:579
232
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
233
  msgstr "Пошук <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
234
 
235
+ #: add-to-any.php:686
236
  msgid "Add/Remove Services"
237
  msgstr "Дадаць/Выдаліць паслугі"
238
 
239
+ #: add-to-any.php:732
240
  msgid "Share/Save"
241
  msgstr "Адкрыць/Захаваць"
242
 
243
+ #: add-to-any.php:733
244
  msgid "Share/Save Buttons"
245
  msgstr "Кнопка Адкрыць/Захаваць"
246
 
languages/add-to-any-ca.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-07-14 21:23-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Robert Antoni Buj Gelonch <rbuj@wanadoo.es>\n"
8
  "Language-Team: <robert.buj@gmail.com>\n"
@@ -15,231 +15,232 @@ msgstr ""
15
  "X-Poedit-Country: SPAIN\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: add-to-any.php:185
19
  msgid "Share"
20
  msgstr "Compartir"
21
 
22
- #: add-to-any.php:186
23
  msgid "Save"
24
  msgstr "Desar"
25
 
26
- #: add-to-any.php:187
27
  msgid "Subscribe"
28
  msgstr "Subscriures"
29
 
30
- #: add-to-any.php:188
31
  msgid "E-mail"
32
  msgstr "Correu electrònic"
33
 
34
- #: add-to-any.php:189
35
  msgid "Bookmark"
36
  msgstr "Preferit"
37
 
38
- #: add-to-any.php:190
39
  msgid "Show all"
40
  msgstr "Mostrar tots"
41
 
42
- #: add-to-any.php:191
43
  msgid "Show less"
44
  msgstr "Mostrar menys"
45
 
46
- #: add-to-any.php:192
47
  msgid "Find service(s)"
48
  msgstr "Buscar servei(s)"
49
 
50
- #: add-to-any.php:193
51
  msgid "Instantly find any service to add to"
52
  msgstr "Trobar instantàniament qualsevol servei per a afegir a"
53
 
54
- #: add-to-any.php:194
55
  msgid "Powered by"
56
  msgstr "Potenciat per"
57
 
58
- #: add-to-any.php:195
59
  msgid "Share via e-mail"
60
  msgstr "Compartir per correu electrònic"
61
 
62
- #: add-to-any.php:196
63
  msgid "Subscribe via e-mail"
64
  msgstr "Subscriure per correu electrònic"
65
 
66
- #: add-to-any.php:197
67
  msgid "Bookmark in your browser"
68
  msgstr "Afegir l'adreça d'interès al vostre navegador"
69
 
70
- #: add-to-any.php:198
71
  #, fuzzy
72
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
73
  msgstr "Pressioneu Ctrl+D o Cmd+D per afegir a preferits aquesta pàgina"
74
 
75
- #: add-to-any.php:199
76
  msgid "Add to your favorites"
77
  msgstr "Afegir als vostres favorits"
78
 
79
- #: add-to-any.php:200
80
  msgid "Send from any e-mail address or e-mail program"
81
  msgstr "Enviar des de qualsevol adreça de correu electrònic o programa de correu electrònic"
82
 
83
- #: add-to-any.php:201
84
  msgid "E-mail program"
85
  msgstr "Programa de correu electrònic"
86
 
87
- #: add-to-any.php:226
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 "El vostre tema ha de ser corretgit. per corretgir-lo, utilitzeu l'<a href=\"theme-editor.php\">Editor de tema</a> per afegir <code>&lt;?php wp_footer(); ?&gt;</code> justament abans de la línia <code>&lt;/body&gt;</code> del vostre tema al fitxer <code>footer.php</code>."
90
 
91
- #: add-to-any.php:375
92
  msgid "Settings saved."
93
  msgstr "Preferències desades."
94
 
95
- #: add-to-any.php:386
96
  msgid "Add to Any: Share/Save "
97
  msgstr "Add to Any: Compartir/Desar "
98
 
99
- #: add-to-any.php:386
100
- #: add-to-any.php:739
 
101
  msgid "Settings"
102
  msgstr "Preferències"
103
 
104
- #: add-to-any.php:396
105
  #, fuzzy
106
  msgid "Standalone Services"
107
  msgstr "Serveis Compartir/Desar"
108
 
109
- #: add-to-any.php:401
110
  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."
111
  msgstr "Seleccioneu els serveis que voleu a continuació. &nbsp;Cliqueu a un servei de nou per eliminar-lo. &nbsp;Reordeneu els serveis arrossegant-los i deixant-los en l'ordre que dessitgeu."
112
 
113
- #: add-to-any.php:420
114
  msgid "Button"
115
  msgstr "Botó"
116
 
117
- #: add-to-any.php:459
118
  msgid "Image URL"
119
  msgstr "URL de l'imatge"
120
 
121
- #: add-to-any.php:466
122
  msgid "Text only"
123
  msgstr "Només text"
124
 
125
- #: add-to-any.php:474
126
  msgid "Placement"
127
  msgstr "Emplaçament"
128
 
129
- #: add-to-any.php:483
130
  msgid "Display Share/Save button at the bottom of posts"
131
  msgstr "Mostar el botó de Compartir/Desar sota tots els escrits"
132
 
133
- #: add-to-any.php:490
134
  msgid "Display Share/Save button at the bottom of posts on the front page"
135
  msgstr "Mostar el botó de Compartir/Desar a la pàgina principal"
136
 
137
- #: add-to-any.php:497
138
  msgid "Display Share/Save button at the bottom of posts in the feed"
139
  msgstr "Mostar el botó de Compartir/Desar sota tots els escrits al feed"
140
 
141
- #: add-to-any.php:501
142
  msgid "Display Share/Save button at the bottom of pages"
143
  msgstr "Mostar el botó de Compartir/Desar sota les pàgines"
144
 
145
- #: add-to-any.php:505
146
  #, fuzzy
147
  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>)"
148
  msgstr "Si no està habilitat s'ha d'afegir el següent codi a <a href=\"theme-editor.php\">les vostres pàgines de plantilla</a> (dins de <code>index.php</code>, <code>single.php</code>, i/o <code>page.php</code>)"
149
 
150
- #: add-to-any.php:514
151
  msgid "Menu Style"
152
  msgstr "Estil del menú"
153
 
154
- #: add-to-any.php:516
155
  msgid "Using Add to Any'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."
156
  msgstr "Utilitzant el personalitzador d'estil de Add to Any, vosté pot personalitzar els colors del vostre menú Compartir/Desar! Quan hageu acabat, heu de copiar el codi generat al recuadre d'<a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">opcions adicionals</a> de sota."
157
 
158
- #: add-to-any.php:518
159
  msgid "Open the Add to Any Menu Styler in a new window"
160
  msgstr "Obrir el personalitzador d'estil de Add to Any a una nova finestra"
161
 
162
- #: add-to-any.php:520
163
  msgid "Open Menu Styler"
164
  msgstr "Obrir el personalitzador d'estils"
165
 
166
- #: add-to-any.php:525
167
  msgid "Menu Options"
168
  msgstr "Opcions del menú"
169
 
170
- #: add-to-any.php:530
171
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
172
  msgstr "Amagar objectes incrustats (Flash, vídeo, etc) que interseccionin amb el menú quan aquest aparegui"
173
 
174
- #: add-to-any.php:535
175
  msgid "Show the title of the post (or page) within the menu"
176
  msgstr "Mostrar el títul de l'entrada (o de la pàgina) dins del menú"
177
 
178
- #: add-to-any.php:542
179
  msgid "Only show the menu when the user clicks the Share/Save button"
180
  msgstr "Mostrar el menú solament quan un usuari cliqui sobre el botó Compartir/Desar"
181
 
182
- #: add-to-any.php:548
183
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
184
  msgstr "Obrir el menú de addtoany.com en una nova pestanya o finestra si l'usuari clica al botó Compartir/Desar"
185
 
186
- #: add-to-any.php:553
187
  msgid "Additional Options"
188
  msgstr "Opcions adicionals"
189
 
190
- #: add-to-any.php:557
191
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
192
  msgstr "Pegueu el codi del personalitzador d'estil al següent recuadre!"
193
 
194
- #: add-to-any.php:561
195
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
196
  msgstr "A continuació, podeu establir variables especials de JavaScript per aplicar a cada menú Compartir/Desar."
197
 
198
- #: add-to-any.php:562
199
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
200
  msgstr "Els usuaris avançats poden preferir explorar l'<a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">API JavaScript</a> de Add to Any."
201
 
202
- #: add-to-any.php:568
203
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
204
  msgstr "<strong>Nota</strong>: Si heu d'afegir un nou codi, tingueu cura de no sobreescriure accidentalment qualsevol codi anterior.</label>"
205
 
206
- #: add-to-any.php:575
207
  msgid "Save Changes"
208
  msgstr "Desar els canvis"
209
 
210
- #: add-to-any.php:580
211
  msgid "Like this plugin?"
212
  msgstr "Com aquesta extensió?"
213
 
214
- #: add-to-any.php:581
215
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
216
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Doneu-li una bona qualificació</a> a WordPress.org."
217
 
218
- #: add-to-any.php:582
219
  msgid "<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\">Share it</a> with your friends."
220
  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\">Compartiu-lo</a> amb els vostres amics."
221
 
222
- #: add-to-any.php:584
223
  msgid "Need support?"
224
  msgstr "Necessiteu suport?"
225
 
226
- #: add-to-any.php:585
227
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
228
  msgstr "Vegeu les <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">Preguntes més freqüents</a>."
229
 
230
- #: add-to-any.php:586
231
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
232
  msgstr "Cercar als <a href=\"http://wordpress.org/tags/add-to-any\">fòrums de suport</a>."
233
 
234
- #: add-to-any.php:693
235
  msgid "Add/Remove Services"
236
  msgstr "Serveis Compartir/Desar"
237
 
238
- #: add-to-any.php:739
239
  msgid "Share/Save"
240
  msgstr "Compartir/Desar"
241
 
242
- #: add-to-any.php:740
243
  msgid "Share/Save Buttons"
244
  msgstr "Botons de Compartir/Desar"
245
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-07-23 18:16-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Robert Antoni Buj Gelonch <rbuj@wanadoo.es>\n"
8
  "Language-Team: <robert.buj@gmail.com>\n"
15
  "X-Poedit-Country: SPAIN\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: add-to-any.php:177
19
  msgid "Share"
20
  msgstr "Compartir"
21
 
22
+ #: add-to-any.php:178
23
  msgid "Save"
24
  msgstr "Desar"
25
 
26
+ #: add-to-any.php:179
27
  msgid "Subscribe"
28
  msgstr "Subscriures"
29
 
30
+ #: add-to-any.php:180
31
  msgid "E-mail"
32
  msgstr "Correu electrònic"
33
 
34
+ #: add-to-any.php:181
35
  msgid "Bookmark"
36
  msgstr "Preferit"
37
 
38
+ #: add-to-any.php:182
39
  msgid "Show all"
40
  msgstr "Mostrar tots"
41
 
42
+ #: add-to-any.php:183
43
  msgid "Show less"
44
  msgstr "Mostrar menys"
45
 
46
+ #: add-to-any.php:184
47
  msgid "Find service(s)"
48
  msgstr "Buscar servei(s)"
49
 
50
+ #: add-to-any.php:185
51
  msgid "Instantly find any service to add to"
52
  msgstr "Trobar instantàniament qualsevol servei per a afegir a"
53
 
54
+ #: add-to-any.php:186
55
  msgid "Powered by"
56
  msgstr "Potenciat per"
57
 
58
+ #: add-to-any.php:187
59
  msgid "Share via e-mail"
60
  msgstr "Compartir per correu electrònic"
61
 
62
+ #: add-to-any.php:188
63
  msgid "Subscribe via e-mail"
64
  msgstr "Subscriure per correu electrònic"
65
 
66
+ #: add-to-any.php:189
67
  msgid "Bookmark in your browser"
68
  msgstr "Afegir l'adreça d'interès al vostre navegador"
69
 
70
+ #: add-to-any.php:190
71
  #, fuzzy
72
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
73
  msgstr "Pressioneu Ctrl+D o Cmd+D per afegir a preferits aquesta pàgina"
74
 
75
+ #: add-to-any.php:191
76
  msgid "Add to your favorites"
77
  msgstr "Afegir als vostres favorits"
78
 
79
+ #: add-to-any.php:192
80
  msgid "Send from any e-mail address or e-mail program"
81
  msgstr "Enviar des de qualsevol adreça de correu electrònic o programa de correu electrònic"
82
 
83
+ #: add-to-any.php:193
84
  msgid "E-mail program"
85
  msgstr "Programa de correu electrònic"
86
 
87
+ #: add-to-any.php:218
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 "El vostre tema ha de ser corretgit. per corretgir-lo, utilitzeu l'<a href=\"theme-editor.php\">Editor de tema</a> per afegir <code>&lt;?php wp_footer(); ?&gt;</code> justament abans de la línia <code>&lt;/body&gt;</code> del vostre tema al fitxer <code>footer.php</code>."
90
 
91
+ #: add-to-any.php:368
92
  msgid "Settings saved."
93
  msgstr "Preferències desades."
94
 
95
+ #: add-to-any.php:379
96
  msgid "Add to Any: Share/Save "
97
  msgstr "Add to Any: Compartir/Desar "
98
 
99
+ #: add-to-any.php:379
100
+ #: add-to-any.php:732
101
+ #: add-to-any.php:753
102
  msgid "Settings"
103
  msgstr "Preferències"
104
 
105
+ #: add-to-any.php:389
106
  #, fuzzy
107
  msgid "Standalone Services"
108
  msgstr "Serveis Compartir/Desar"
109
 
110
+ #: add-to-any.php:394
111
  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."
112
  msgstr "Seleccioneu els serveis que voleu a continuació. &nbsp;Cliqueu a un servei de nou per eliminar-lo. &nbsp;Reordeneu els serveis arrossegant-los i deixant-los en l'ordre que dessitgeu."
113
 
114
+ #: add-to-any.php:413
115
  msgid "Button"
116
  msgstr "Botó"
117
 
118
+ #: add-to-any.php:452
119
  msgid "Image URL"
120
  msgstr "URL de l'imatge"
121
 
122
+ #: add-to-any.php:459
123
  msgid "Text only"
124
  msgstr "Només text"
125
 
126
+ #: add-to-any.php:467
127
  msgid "Placement"
128
  msgstr "Emplaçament"
129
 
130
+ #: add-to-any.php:476
131
  msgid "Display Share/Save button at the bottom of posts"
132
  msgstr "Mostar el botó de Compartir/Desar sota tots els escrits"
133
 
134
+ #: add-to-any.php:483
135
  msgid "Display Share/Save button at the bottom of posts on the front page"
136
  msgstr "Mostar el botó de Compartir/Desar a la pàgina principal"
137
 
138
+ #: add-to-any.php:490
139
  msgid "Display Share/Save button at the bottom of posts in the feed"
140
  msgstr "Mostar el botó de Compartir/Desar sota tots els escrits al feed"
141
 
142
+ #: add-to-any.php:494
143
  msgid "Display Share/Save button at the bottom of pages"
144
  msgstr "Mostar el botó de Compartir/Desar sota les pàgines"
145
 
146
+ #: add-to-any.php:498
147
  #, fuzzy
148
  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>)"
149
  msgstr "Si no està habilitat s'ha d'afegir el següent codi a <a href=\"theme-editor.php\">les vostres pàgines de plantilla</a> (dins de <code>index.php</code>, <code>single.php</code>, i/o <code>page.php</code>)"
150
 
151
+ #: add-to-any.php:507
152
  msgid "Menu Style"
153
  msgstr "Estil del menú"
154
 
155
+ #: add-to-any.php:509
156
  msgid "Using Add to Any'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."
157
  msgstr "Utilitzant el personalitzador d'estil de Add to Any, vosté pot personalitzar els colors del vostre menú Compartir/Desar! Quan hageu acabat, heu de copiar el codi generat al recuadre d'<a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">opcions adicionals</a> de sota."
158
 
159
+ #: add-to-any.php:511
160
  msgid "Open the Add to Any Menu Styler in a new window"
161
  msgstr "Obrir el personalitzador d'estil de Add to Any a una nova finestra"
162
 
163
+ #: add-to-any.php:513
164
  msgid "Open Menu Styler"
165
  msgstr "Obrir el personalitzador d'estils"
166
 
167
+ #: add-to-any.php:518
168
  msgid "Menu Options"
169
  msgstr "Opcions del menú"
170
 
171
+ #: add-to-any.php:523
172
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
173
  msgstr "Amagar objectes incrustats (Flash, vídeo, etc) que interseccionin amb el menú quan aquest aparegui"
174
 
175
+ #: add-to-any.php:528
176
  msgid "Show the title of the post (or page) within the menu"
177
  msgstr "Mostrar el títul de l'entrada (o de la pàgina) dins del menú"
178
 
179
+ #: add-to-any.php:535
180
  msgid "Only show the menu when the user clicks the Share/Save button"
181
  msgstr "Mostrar el menú solament quan un usuari cliqui sobre el botó Compartir/Desar"
182
 
183
+ #: add-to-any.php:541
184
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
185
  msgstr "Obrir el menú de addtoany.com en una nova pestanya o finestra si l'usuari clica al botó Compartir/Desar"
186
 
187
+ #: add-to-any.php:546
188
  msgid "Additional Options"
189
  msgstr "Opcions adicionals"
190
 
191
+ #: add-to-any.php:550
192
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
193
  msgstr "Pegueu el codi del personalitzador d'estil al següent recuadre!"
194
 
195
+ #: add-to-any.php:554
196
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
197
  msgstr "A continuació, podeu establir variables especials de JavaScript per aplicar a cada menú Compartir/Desar."
198
 
199
+ #: add-to-any.php:555
200
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
201
  msgstr "Els usuaris avançats poden preferir explorar l'<a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">API JavaScript</a> de Add to Any."
202
 
203
+ #: add-to-any.php:561
204
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
205
  msgstr "<strong>Nota</strong>: Si heu d'afegir un nou codi, tingueu cura de no sobreescriure accidentalment qualsevol codi anterior.</label>"
206
 
207
+ #: add-to-any.php:568
208
  msgid "Save Changes"
209
  msgstr "Desar els canvis"
210
 
211
+ #: add-to-any.php:573
212
  msgid "Like this plugin?"
213
  msgstr "Com aquesta extensió?"
214
 
215
+ #: add-to-any.php:574
216
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
217
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Doneu-li una bona qualificació</a> a WordPress.org."
218
 
219
+ #: add-to-any.php:575
220
  msgid "<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\">Share it</a> with your friends."
221
  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\">Compartiu-lo</a> amb els vostres amics."
222
 
223
+ #: add-to-any.php:577
224
  msgid "Need support?"
225
  msgstr "Necessiteu suport?"
226
 
227
+ #: add-to-any.php:578
228
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
229
  msgstr "Vegeu les <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">Preguntes més freqüents</a>."
230
 
231
+ #: add-to-any.php:579
232
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
233
  msgstr "Cercar als <a href=\"http://wordpress.org/tags/add-to-any\">fòrums de suport</a>."
234
 
235
+ #: add-to-any.php:686
236
  msgid "Add/Remove Services"
237
  msgstr "Serveis Compartir/Desar"
238
 
239
+ #: add-to-any.php:732
240
  msgid "Share/Save"
241
  msgstr "Compartir/Desar"
242
 
243
+ #: add-to-any.php:733
244
  msgid "Share/Save Buttons"
245
  msgstr "Botons de Compartir/Desar"
246
 
languages/add-to-any-da_DK.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Add to Any Share/Save/Bookmark .9.8.9.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-07-14 21:23-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: Team Blogos <wordpress@blogos.dk>\n"
@@ -17,231 +17,232 @@ msgstr ""
17
  "X-Poedit-SourceCharset: utf-8\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: add-to-any.php:185
21
  msgid "Share"
22
  msgstr "Del"
23
 
24
- #: add-to-any.php:186
25
  msgid "Save"
26
  msgstr "Gem"
27
 
28
- #: add-to-any.php:187
29
  msgid "Subscribe"
30
  msgstr "Subskribér"
31
 
32
- #: add-to-any.php:188
33
  msgid "E-mail"
34
  msgstr "E-mail"
35
 
36
- #: add-to-any.php:189
37
  msgid "Bookmark"
38
  msgstr "Bogmærk"
39
 
40
- #: add-to-any.php:190
41
  msgid "Show all"
42
  msgstr "Vis alle"
43
 
44
- #: add-to-any.php:191
45
  msgid "Show less"
46
  msgstr "Vis mindre"
47
 
48
- #: add-to-any.php:192
49
  msgid "Find service(s)"
50
  msgstr "Find service(s)"
51
 
52
- #: add-to-any.php:193
53
  msgid "Instantly find any service to add to"
54
  msgstr "Find øjeblikkelig alle services at tilføje til"
55
 
56
- #: add-to-any.php:194
57
  msgid "Powered by"
58
  msgstr "Kører på"
59
 
60
- #: add-to-any.php:195
61
  msgid "Share via e-mail"
62
  msgstr "Del via e-mail"
63
 
64
- #: add-to-any.php:196
65
  msgid "Subscribe via e-mail"
66
  msgstr "Subskribér via e-mail"
67
 
68
- #: add-to-any.php:197
69
  msgid "Bookmark in your browser"
70
  msgstr "Bogmærk i din browswer"
71
 
72
- #: add-to-any.php:198
73
  #, fuzzy
74
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
75
  msgstr "Press Ctrl-D eller Cmd-D for at bogmærke denne side"
76
 
77
- #: add-to-any.php:199
78
  msgid "Add to your favorites"
79
  msgstr "Tilføj til dine favoritter"
80
 
81
- #: add-to-any.php:200
82
  msgid "Send from any e-mail address or e-mail program"
83
  msgstr "Send fra enhver e-mail-adreses eller e-mail-program"
84
 
85
- #: add-to-any.php:201
86
  msgid "E-mail program"
87
  msgstr "E-mail-program"
88
 
89
- #: add-to-any.php:226
90
  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."
91
  msgstr "Dit tema skal repareres. For at gøre det skal du bruge <a href=\"theme-editor.php\">temaeditoren</a> til at indsætte koden <code>&lt;?php wp_footer(); ?&gt;</code> lige før <code>&lt;/body&gt;</code>-linjen i dit temas <code>footer.php</code>-fil."
92
 
93
- #: add-to-any.php:375
94
  msgid "Settings saved."
95
  msgstr "Indstillinger gemt"
96
 
97
- #: add-to-any.php:386
98
  msgid "Add to Any: Share/Save "
99
  msgstr "Tilføj til enhver: Del/gem"
100
 
101
- #: add-to-any.php:386
102
- #: add-to-any.php:739
 
103
  msgid "Settings"
104
  msgstr "Indstillinger"
105
 
106
- #: add-to-any.php:396
107
  #, fuzzy
108
  msgid "Standalone Services"
109
  msgstr "Tilføj/fjern tjenesteudbydere"
110
 
111
- #: add-to-any.php:401
112
  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."
113
  msgstr "Vælg de tjenesteudbydere, du ønsker. Klik på en tjenesteudbyder, du har valgt, for at fjerne den igen. Du kan ændre rækkefølgen ved at trække og slippe, sådan som du ser dem ovenfor (når de er valgt)."
114
 
115
- #: add-to-any.php:420
116
  msgid "Button"
117
  msgstr "Knap"
118
 
119
- #: add-to-any.php:459
120
  msgid "Image URL"
121
  msgstr "Billed-URL"
122
 
123
- #: add-to-any.php:466
124
  msgid "Text only"
125
  msgstr "Kun tekst"
126
 
127
- #: add-to-any.php:474
128
  msgid "Placement"
129
  msgstr "Placering"
130
 
131
- #: add-to-any.php:483
132
  msgid "Display Share/Save button at the bottom of posts"
133
  msgstr "Vis Del-/Gem-knap i bunden af indlæg"
134
 
135
- #: add-to-any.php:490
136
  msgid "Display Share/Save button at the bottom of posts on the front page"
137
  msgstr "Vis Del-/Gem-knap i bunden af indlæg på forsiden"
138
 
139
- #: add-to-any.php:497
140
  msgid "Display Share/Save button at the bottom of posts in the feed"
141
  msgstr "Vis Del-/Gem-knap i bunden af indlæg i feeds"
142
 
143
- #: add-to-any.php:501
144
  msgid "Display Share/Save button at the bottom of pages"
145
  msgstr "Vis Del-/Gem-knap i bunden af sider"
146
 
147
- #: add-to-any.php:505
148
  #, fuzzy
149
  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>)"
150
  msgstr "Hvis du ikke vælger dette, skal du sørge for at placere den følgende kode i <a href=\"theme-editor.php\">dine skabelonsider</a> (i <code>index.php</code>, <code>single.php</code>, og/eller <code>page.php</code>)"
151
 
152
- #: add-to-any.php:514
153
  msgid "Menu Style"
154
  msgstr "Menutypografi"
155
 
156
- #: add-to-any.php:516
157
  msgid "Using Add to Any'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."
158
  msgstr "Ved at bruge Add to Any's menutypograf, kan du tilpasse farverne på din Del-/Gem-menu! Når du er færdig, skal du sørge for at indsætte den genererede kode i <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Yderligere indstillinger</a>-boksen nedenfor."
159
 
160
- #: add-to-any.php:518
161
  msgid "Open the Add to Any Menu Styler in a new window"
162
  msgstr "Åben Add to Any's menutypograf i et nyt vindue"
163
 
164
- #: add-to-any.php:520
165
  msgid "Open Menu Styler"
166
  msgstr "Åben menutypografen"
167
 
168
- #: add-to-any.php:525
169
  msgid "Menu Options"
170
  msgstr "Menuvalgmuligheder"
171
 
172
- #: add-to-any.php:530
173
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
174
  msgstr "Skjul indlejrede objekter (flash, video, osv.) som kan påvirke menuen, når den vises"
175
 
176
- #: add-to-any.php:535
177
  msgid "Show the title of the post (or page) within the menu"
178
  msgstr "Vis titlen på indlægget (eller siden) i menuen"
179
 
180
- #: add-to-any.php:542
181
  msgid "Only show the menu when the user clicks the Share/Save button"
182
  msgstr "Vis kun menuen når bruger klikker på Del-/Gem-knappen"
183
 
184
- #: add-to-any.php:548
185
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
186
  msgstr "Åben menusiden på addtoany.com i en ny fane eller vindue hvis brugeren klikker på Del-/Gem-knappen"
187
 
188
- #: add-to-any.php:553
189
  msgid "Additional Options"
190
  msgstr "Yderligere indstillinger"
191
 
192
- #: add-to-any.php:557
193
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
194
  msgstr "Indsæt koden fra Add to Any's menutypograf i boksen nedenfor!"
195
 
196
- #: add-to-any.php:561
197
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
198
  msgstr "Nedenfor kan du angive specielle JavaScript-variabler, som skal bruges på din Del-/Gem-menu."
199
 
200
- #: add-to-any.php:562
201
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
202
  msgstr "Avancerede brugere kan se nærmere på Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
203
 
204
- #: add-to-any.php:568
205
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
206
  msgstr "<strong>Bemærk</strong>: Hvis du tilføjer ny kode, så vær forsigtig, så du ikke ved et uheld overskriver eksisterende kode."
207
 
208
- #: add-to-any.php:575
209
  msgid "Save Changes"
210
  msgstr "Gem ændringer"
211
 
212
- #: add-to-any.php:580
213
  msgid "Like this plugin?"
214
  msgstr "Kan du lide dette plugin?"
215
 
216
- #: add-to-any.php:581
217
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
218
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Giv det en god bedømmelse </a>på WordPress.org."
219
 
220
- #: add-to-any.php:582
221
  msgid "<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\">Share it</a> with your friends."
222
  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\">Del det</a> med dine venner."
223
 
224
- #: add-to-any.php:584
225
  msgid "Need support?"
226
  msgstr "Har du brug for support?"
227
 
228
- #: add-to-any.php:585
229
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
230
  msgstr "Se vores <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ (Ofte Stillede Spørgsmål)</a>."
231
 
232
- #: add-to-any.php:586
233
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
234
  msgstr "Søg på <a href=\"http://wordpress.org/tags/add-to-any\">supportforummerne</a>."
235
 
236
- #: add-to-any.php:693
237
  msgid "Add/Remove Services"
238
  msgstr "Tilføj/fjern tjenesteudbydere"
239
 
240
- #: add-to-any.php:739
241
  msgid "Share/Save"
242
  msgstr "Del/Gem"
243
 
244
- #: add-to-any.php:740
245
  msgid "Share/Save Buttons"
246
  msgstr "Del-/Gem-knapper"
247
 
2
  msgstr ""
3
  "Project-Id-Version: Add to Any Share/Save/Bookmark .9.8.9.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-07-23 18:16-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: Team Blogos <wordpress@blogos.dk>\n"
17
  "X-Poedit-SourceCharset: utf-8\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: add-to-any.php:177
21
  msgid "Share"
22
  msgstr "Del"
23
 
24
+ #: add-to-any.php:178
25
  msgid "Save"
26
  msgstr "Gem"
27
 
28
+ #: add-to-any.php:179
29
  msgid "Subscribe"
30
  msgstr "Subskribér"
31
 
32
+ #: add-to-any.php:180
33
  msgid "E-mail"
34
  msgstr "E-mail"
35
 
36
+ #: add-to-any.php:181
37
  msgid "Bookmark"
38
  msgstr "Bogmærk"
39
 
40
+ #: add-to-any.php:182
41
  msgid "Show all"
42
  msgstr "Vis alle"
43
 
44
+ #: add-to-any.php:183
45
  msgid "Show less"
46
  msgstr "Vis mindre"
47
 
48
+ #: add-to-any.php:184
49
  msgid "Find service(s)"
50
  msgstr "Find service(s)"
51
 
52
+ #: add-to-any.php:185
53
  msgid "Instantly find any service to add to"
54
  msgstr "Find øjeblikkelig alle services at tilføje til"
55
 
56
+ #: add-to-any.php:186
57
  msgid "Powered by"
58
  msgstr "Kører på"
59
 
60
+ #: add-to-any.php:187
61
  msgid "Share via e-mail"
62
  msgstr "Del via e-mail"
63
 
64
+ #: add-to-any.php:188
65
  msgid "Subscribe via e-mail"
66
  msgstr "Subskribér via e-mail"
67
 
68
+ #: add-to-any.php:189
69
  msgid "Bookmark in your browser"
70
  msgstr "Bogmærk i din browswer"
71
 
72
+ #: add-to-any.php:190
73
  #, fuzzy
74
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
75
  msgstr "Press Ctrl-D eller Cmd-D for at bogmærke denne side"
76
 
77
+ #: add-to-any.php:191
78
  msgid "Add to your favorites"
79
  msgstr "Tilføj til dine favoritter"
80
 
81
+ #: add-to-any.php:192
82
  msgid "Send from any e-mail address or e-mail program"
83
  msgstr "Send fra enhver e-mail-adreses eller e-mail-program"
84
 
85
+ #: add-to-any.php:193
86
  msgid "E-mail program"
87
  msgstr "E-mail-program"
88
 
89
+ #: add-to-any.php:218
90
  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."
91
  msgstr "Dit tema skal repareres. For at gøre det skal du bruge <a href=\"theme-editor.php\">temaeditoren</a> til at indsætte koden <code>&lt;?php wp_footer(); ?&gt;</code> lige før <code>&lt;/body&gt;</code>-linjen i dit temas <code>footer.php</code>-fil."
92
 
93
+ #: add-to-any.php:368
94
  msgid "Settings saved."
95
  msgstr "Indstillinger gemt"
96
 
97
+ #: add-to-any.php:379
98
  msgid "Add to Any: Share/Save "
99
  msgstr "Tilføj til enhver: Del/gem"
100
 
101
+ #: add-to-any.php:379
102
+ #: add-to-any.php:732
103
+ #: add-to-any.php:753
104
  msgid "Settings"
105
  msgstr "Indstillinger"
106
 
107
+ #: add-to-any.php:389
108
  #, fuzzy
109
  msgid "Standalone Services"
110
  msgstr "Tilføj/fjern tjenesteudbydere"
111
 
112
+ #: add-to-any.php:394
113
  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."
114
  msgstr "Vælg de tjenesteudbydere, du ønsker. Klik på en tjenesteudbyder, du har valgt, for at fjerne den igen. Du kan ændre rækkefølgen ved at trække og slippe, sådan som du ser dem ovenfor (når de er valgt)."
115
 
116
+ #: add-to-any.php:413
117
  msgid "Button"
118
  msgstr "Knap"
119
 
120
+ #: add-to-any.php:452
121
  msgid "Image URL"
122
  msgstr "Billed-URL"
123
 
124
+ #: add-to-any.php:459
125
  msgid "Text only"
126
  msgstr "Kun tekst"
127
 
128
+ #: add-to-any.php:467
129
  msgid "Placement"
130
  msgstr "Placering"
131
 
132
+ #: add-to-any.php:476
133
  msgid "Display Share/Save button at the bottom of posts"
134
  msgstr "Vis Del-/Gem-knap i bunden af indlæg"
135
 
136
+ #: add-to-any.php:483
137
  msgid "Display Share/Save button at the bottom of posts on the front page"
138
  msgstr "Vis Del-/Gem-knap i bunden af indlæg på forsiden"
139
 
140
+ #: add-to-any.php:490
141
  msgid "Display Share/Save button at the bottom of posts in the feed"
142
  msgstr "Vis Del-/Gem-knap i bunden af indlæg i feeds"
143
 
144
+ #: add-to-any.php:494
145
  msgid "Display Share/Save button at the bottom of pages"
146
  msgstr "Vis Del-/Gem-knap i bunden af sider"
147
 
148
+ #: add-to-any.php:498
149
  #, fuzzy
150
  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>)"
151
  msgstr "Hvis du ikke vælger dette, skal du sørge for at placere den følgende kode i <a href=\"theme-editor.php\">dine skabelonsider</a> (i <code>index.php</code>, <code>single.php</code>, og/eller <code>page.php</code>)"
152
 
153
+ #: add-to-any.php:507
154
  msgid "Menu Style"
155
  msgstr "Menutypografi"
156
 
157
+ #: add-to-any.php:509
158
  msgid "Using Add to Any'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."
159
  msgstr "Ved at bruge Add to Any's menutypograf, kan du tilpasse farverne på din Del-/Gem-menu! Når du er færdig, skal du sørge for at indsætte den genererede kode i <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Yderligere indstillinger</a>-boksen nedenfor."
160
 
161
+ #: add-to-any.php:511
162
  msgid "Open the Add to Any Menu Styler in a new window"
163
  msgstr "Åben Add to Any's menutypograf i et nyt vindue"
164
 
165
+ #: add-to-any.php:513
166
  msgid "Open Menu Styler"
167
  msgstr "Åben menutypografen"
168
 
169
+ #: add-to-any.php:518
170
  msgid "Menu Options"
171
  msgstr "Menuvalgmuligheder"
172
 
173
+ #: add-to-any.php:523
174
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
175
  msgstr "Skjul indlejrede objekter (flash, video, osv.) som kan påvirke menuen, når den vises"
176
 
177
+ #: add-to-any.php:528
178
  msgid "Show the title of the post (or page) within the menu"
179
  msgstr "Vis titlen på indlægget (eller siden) i menuen"
180
 
181
+ #: add-to-any.php:535
182
  msgid "Only show the menu when the user clicks the Share/Save button"
183
  msgstr "Vis kun menuen når bruger klikker på Del-/Gem-knappen"
184
 
185
+ #: add-to-any.php:541
186
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
187
  msgstr "Åben menusiden på addtoany.com i en ny fane eller vindue hvis brugeren klikker på Del-/Gem-knappen"
188
 
189
+ #: add-to-any.php:546
190
  msgid "Additional Options"
191
  msgstr "Yderligere indstillinger"
192
 
193
+ #: add-to-any.php:550
194
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
195
  msgstr "Indsæt koden fra Add to Any's menutypograf i boksen nedenfor!"
196
 
197
+ #: add-to-any.php:554
198
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
199
  msgstr "Nedenfor kan du angive specielle JavaScript-variabler, som skal bruges på din Del-/Gem-menu."
200
 
201
+ #: add-to-any.php:555
202
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
203
  msgstr "Avancerede brugere kan se nærmere på Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
204
 
205
+ #: add-to-any.php:561
206
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
207
  msgstr "<strong>Bemærk</strong>: Hvis du tilføjer ny kode, så vær forsigtig, så du ikke ved et uheld overskriver eksisterende kode."
208
 
209
+ #: add-to-any.php:568
210
  msgid "Save Changes"
211
  msgstr "Gem ændringer"
212
 
213
+ #: add-to-any.php:573
214
  msgid "Like this plugin?"
215
  msgstr "Kan du lide dette plugin?"
216
 
217
+ #: add-to-any.php:574
218
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
219
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Giv det en god bedømmelse </a>på WordPress.org."
220
 
221
+ #: add-to-any.php:575
222
  msgid "<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\">Share it</a> with your friends."
223
  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\">Del det</a> med dine venner."
224
 
225
+ #: add-to-any.php:577
226
  msgid "Need support?"
227
  msgstr "Har du brug for support?"
228
 
229
+ #: add-to-any.php:578
230
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
231
  msgstr "Se vores <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ (Ofte Stillede Spørgsmål)</a>."
232
 
233
+ #: add-to-any.php:579
234
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
235
  msgstr "Søg på <a href=\"http://wordpress.org/tags/add-to-any\">supportforummerne</a>."
236
 
237
+ #: add-to-any.php:686
238
  msgid "Add/Remove Services"
239
  msgstr "Tilføj/fjern tjenesteudbydere"
240
 
241
+ #: add-to-any.php:732
242
  msgid "Share/Save"
243
  msgstr "Del/Gem"
244
 
245
+ #: add-to-any.php:733
246
  msgid "Share/Save Buttons"
247
  msgstr "Del-/Gem-knapper"
248
 
languages/add-to-any-de.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-07-14 21:23-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: \n"
@@ -13,229 +13,230 @@ msgstr ""
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: add-to-any.php:185
17
  msgid "Share"
18
  msgstr ""
19
 
20
- #: add-to-any.php:186
21
  msgid "Save"
22
  msgstr ""
23
 
24
- #: add-to-any.php:187
25
  msgid "Subscribe"
26
  msgstr ""
27
 
28
- #: add-to-any.php:188
29
  msgid "E-mail"
30
  msgstr ""
31
 
32
- #: add-to-any.php:189
33
  msgid "Bookmark"
34
  msgstr ""
35
 
36
- #: add-to-any.php:190
37
  msgid "Show all"
38
  msgstr "Alle anzeigen"
39
 
40
- #: add-to-any.php:191
41
  msgid "Show less"
42
  msgstr ""
43
 
44
- #: add-to-any.php:192
45
  msgid "Find service(s)"
46
  msgstr "Dienst(e) suchen"
47
 
48
- #: add-to-any.php:193
49
  msgid "Instantly find any service to add to"
50
  msgstr ""
51
 
52
- #: add-to-any.php:194
53
  msgid "Powered by"
54
  msgstr ""
55
 
56
- #: add-to-any.php:195
57
  msgid "Share via e-mail"
58
  msgstr ""
59
 
60
- #: add-to-any.php:196
61
  msgid "Subscribe via e-mail"
62
  msgstr ""
63
 
64
- #: add-to-any.php:197
65
  msgid "Bookmark in your browser"
66
  msgstr ""
67
 
68
- #: add-to-any.php:198
69
  #, fuzzy
70
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
71
  msgstr "Seite mit Ctrl+D oder Cmd+D zu Lesezeichen hinzufügen"
72
 
73
- #: add-to-any.php:199
74
  msgid "Add to your favorites"
75
  msgstr ""
76
 
77
- #: add-to-any.php:200
78
  msgid "Send from any e-mail address or e-mail program"
79
  msgstr ""
80
 
81
- #: add-to-any.php:201
82
  msgid "E-mail program"
83
  msgstr ""
84
 
85
- #: add-to-any.php:226
86
  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."
87
  msgstr ""
88
 
89
- #: add-to-any.php:375
90
  msgid "Settings saved."
91
  msgstr ""
92
 
93
- #: add-to-any.php:386
94
  msgid "Add to Any: Share/Save "
95
  msgstr ""
96
 
97
- #: add-to-any.php:386
98
- #: add-to-any.php:739
 
99
  msgid "Settings"
100
  msgstr ""
101
 
102
- #: add-to-any.php:396
103
  msgid "Standalone Services"
104
  msgstr ""
105
 
106
- #: add-to-any.php:401
107
  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."
108
  msgstr ""
109
 
110
- #: add-to-any.php:420
111
  msgid "Button"
112
  msgstr ""
113
 
114
- #: add-to-any.php:459
115
  msgid "Image URL"
116
  msgstr ""
117
 
118
- #: add-to-any.php:466
119
  msgid "Text only"
120
  msgstr ""
121
 
122
- #: add-to-any.php:474
123
  msgid "Placement"
124
  msgstr ""
125
 
126
- #: add-to-any.php:483
127
  msgid "Display Share/Save button at the bottom of posts"
128
  msgstr ""
129
 
130
- #: add-to-any.php:490
131
  msgid "Display Share/Save button at the bottom of posts on the front page"
132
  msgstr ""
133
 
134
- #: add-to-any.php:497
135
  msgid "Display Share/Save button at the bottom of posts in the feed"
136
  msgstr ""
137
 
138
- #: add-to-any.php:501
139
  msgid "Display Share/Save button at the bottom of pages"
140
  msgstr ""
141
 
142
- #: add-to-any.php:505
143
  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>)"
144
  msgstr ""
145
 
146
- #: add-to-any.php:514
147
  msgid "Menu Style"
148
  msgstr ""
149
 
150
- #: add-to-any.php:516
151
  msgid "Using Add to Any'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."
152
  msgstr ""
153
 
154
- #: add-to-any.php:518
155
  msgid "Open the Add to Any Menu Styler in a new window"
156
  msgstr ""
157
 
158
- #: add-to-any.php:520
159
  msgid "Open Menu Styler"
160
  msgstr ""
161
 
162
- #: add-to-any.php:525
163
  msgid "Menu Options"
164
  msgstr ""
165
 
166
- #: add-to-any.php:530
167
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
168
  msgstr ""
169
 
170
- #: add-to-any.php:535
171
  msgid "Show the title of the post (or page) within the menu"
172
  msgstr ""
173
 
174
- #: add-to-any.php:542
175
  msgid "Only show the menu when the user clicks the Share/Save button"
176
  msgstr ""
177
 
178
- #: add-to-any.php:548
179
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
180
  msgstr ""
181
 
182
- #: add-to-any.php:553
183
  msgid "Additional Options"
184
  msgstr ""
185
 
186
- #: add-to-any.php:557
187
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
188
  msgstr ""
189
 
190
- #: add-to-any.php:561
191
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
192
  msgstr ""
193
 
194
- #: add-to-any.php:562
195
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
196
  msgstr ""
197
 
198
- #: add-to-any.php:568
199
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
200
  msgstr ""
201
 
202
- #: add-to-any.php:575
203
  msgid "Save Changes"
204
  msgstr ""
205
 
206
- #: add-to-any.php:580
207
  msgid "Like this plugin?"
208
  msgstr ""
209
 
210
- #: add-to-any.php:581
211
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
212
  msgstr ""
213
 
214
- #: add-to-any.php:582
215
  msgid "<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\">Share it</a> with your friends."
216
  msgstr ""
217
 
218
- #: add-to-any.php:584
219
  msgid "Need support?"
220
  msgstr ""
221
 
222
- #: add-to-any.php:585
223
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
224
  msgstr ""
225
 
226
- #: add-to-any.php:586
227
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
228
  msgstr ""
229
 
230
- #: add-to-any.php:693
231
  msgid "Add/Remove Services"
232
  msgstr ""
233
 
234
- #: add-to-any.php:739
235
  msgid "Share/Save"
236
  msgstr ""
237
 
238
- #: add-to-any.php:740
239
  msgid "Share/Save Buttons"
240
  msgstr ""
241
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-07-23 18:16-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: \n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
+ #: add-to-any.php:177
17
  msgid "Share"
18
  msgstr ""
19
 
20
+ #: add-to-any.php:178
21
  msgid "Save"
22
  msgstr ""
23
 
24
+ #: add-to-any.php:179
25
  msgid "Subscribe"
26
  msgstr ""
27
 
28
+ #: add-to-any.php:180
29
  msgid "E-mail"
30
  msgstr ""
31
 
32
+ #: add-to-any.php:181
33
  msgid "Bookmark"
34
  msgstr ""
35
 
36
+ #: add-to-any.php:182
37
  msgid "Show all"
38
  msgstr "Alle anzeigen"
39
 
40
+ #: add-to-any.php:183
41
  msgid "Show less"
42
  msgstr ""
43
 
44
+ #: add-to-any.php:184
45
  msgid "Find service(s)"
46
  msgstr "Dienst(e) suchen"
47
 
48
+ #: add-to-any.php:185
49
  msgid "Instantly find any service to add to"
50
  msgstr ""
51
 
52
+ #: add-to-any.php:186
53
  msgid "Powered by"
54
  msgstr ""
55
 
56
+ #: add-to-any.php:187
57
  msgid "Share via e-mail"
58
  msgstr ""
59
 
60
+ #: add-to-any.php:188
61
  msgid "Subscribe via e-mail"
62
  msgstr ""
63
 
64
+ #: add-to-any.php:189
65
  msgid "Bookmark in your browser"
66
  msgstr ""
67
 
68
+ #: add-to-any.php:190
69
  #, fuzzy
70
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
71
  msgstr "Seite mit Ctrl+D oder Cmd+D zu Lesezeichen hinzufügen"
72
 
73
+ #: add-to-any.php:191
74
  msgid "Add to your favorites"
75
  msgstr ""
76
 
77
+ #: add-to-any.php:192
78
  msgid "Send from any e-mail address or e-mail program"
79
  msgstr ""
80
 
81
+ #: add-to-any.php:193
82
  msgid "E-mail program"
83
  msgstr ""
84
 
85
+ #: add-to-any.php:218
86
  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."
87
  msgstr ""
88
 
89
+ #: add-to-any.php:368
90
  msgid "Settings saved."
91
  msgstr ""
92
 
93
+ #: add-to-any.php:379
94
  msgid "Add to Any: Share/Save "
95
  msgstr ""
96
 
97
+ #: add-to-any.php:379
98
+ #: add-to-any.php:732
99
+ #: add-to-any.php:753
100
  msgid "Settings"
101
  msgstr ""
102
 
103
+ #: add-to-any.php:389
104
  msgid "Standalone Services"
105
  msgstr ""
106
 
107
+ #: add-to-any.php:394
108
  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."
109
  msgstr ""
110
 
111
+ #: add-to-any.php:413
112
  msgid "Button"
113
  msgstr ""
114
 
115
+ #: add-to-any.php:452
116
  msgid "Image URL"
117
  msgstr ""
118
 
119
+ #: add-to-any.php:459
120
  msgid "Text only"
121
  msgstr ""
122
 
123
+ #: add-to-any.php:467
124
  msgid "Placement"
125
  msgstr ""
126
 
127
+ #: add-to-any.php:476
128
  msgid "Display Share/Save button at the bottom of posts"
129
  msgstr ""
130
 
131
+ #: add-to-any.php:483
132
  msgid "Display Share/Save button at the bottom of posts on the front page"
133
  msgstr ""
134
 
135
+ #: add-to-any.php:490
136
  msgid "Display Share/Save button at the bottom of posts in the feed"
137
  msgstr ""
138
 
139
+ #: add-to-any.php:494
140
  msgid "Display Share/Save button at the bottom of pages"
141
  msgstr ""
142
 
143
+ #: add-to-any.php:498
144
  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>)"
145
  msgstr ""
146
 
147
+ #: add-to-any.php:507
148
  msgid "Menu Style"
149
  msgstr ""
150
 
151
+ #: add-to-any.php:509
152
  msgid "Using Add to Any'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."
153
  msgstr ""
154
 
155
+ #: add-to-any.php:511
156
  msgid "Open the Add to Any Menu Styler in a new window"
157
  msgstr ""
158
 
159
+ #: add-to-any.php:513
160
  msgid "Open Menu Styler"
161
  msgstr ""
162
 
163
+ #: add-to-any.php:518
164
  msgid "Menu Options"
165
  msgstr ""
166
 
167
+ #: add-to-any.php:523
168
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
169
  msgstr ""
170
 
171
+ #: add-to-any.php:528
172
  msgid "Show the title of the post (or page) within the menu"
173
  msgstr ""
174
 
175
+ #: add-to-any.php:535
176
  msgid "Only show the menu when the user clicks the Share/Save button"
177
  msgstr ""
178
 
179
+ #: add-to-any.php:541
180
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
181
  msgstr ""
182
 
183
+ #: add-to-any.php:546
184
  msgid "Additional Options"
185
  msgstr ""
186
 
187
+ #: add-to-any.php:550
188
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
189
  msgstr ""
190
 
191
+ #: add-to-any.php:554
192
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
193
  msgstr ""
194
 
195
+ #: add-to-any.php:555
196
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
197
  msgstr ""
198
 
199
+ #: add-to-any.php:561
200
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
201
  msgstr ""
202
 
203
+ #: add-to-any.php:568
204
  msgid "Save Changes"
205
  msgstr ""
206
 
207
+ #: add-to-any.php:573
208
  msgid "Like this plugin?"
209
  msgstr ""
210
 
211
+ #: add-to-any.php:574
212
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
213
  msgstr ""
214
 
215
+ #: add-to-any.php:575
216
  msgid "<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\">Share it</a> with your friends."
217
  msgstr ""
218
 
219
+ #: add-to-any.php:577
220
  msgid "Need support?"
221
  msgstr ""
222
 
223
+ #: add-to-any.php:578
224
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
225
  msgstr ""
226
 
227
+ #: add-to-any.php:579
228
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
229
  msgstr ""
230
 
231
+ #: add-to-any.php:686
232
  msgid "Add/Remove Services"
233
  msgstr ""
234
 
235
+ #: add-to-any.php:732
236
  msgid "Share/Save"
237
  msgstr ""
238
 
239
+ #: add-to-any.php:733
240
  msgid "Share/Save Buttons"
241
  msgstr ""
242
 
languages/add-to-any-es_ES.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-07-14 21:23-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pablo Poo <pablo@poo.cl>\n"
8
  "Language-Team: \n"
@@ -13,231 +13,232 @@ msgstr ""
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: add-to-any.php:185
17
  msgid "Share"
18
  msgstr "Compartir"
19
 
20
- #: add-to-any.php:186
21
  msgid "Save"
22
  msgstr "Guardar"
23
 
24
- #: add-to-any.php:187
25
  msgid "Subscribe"
26
  msgstr "Suscribirse"
27
 
28
- #: add-to-any.php:188
29
  msgid "E-mail"
30
  msgstr "E-mail"
31
 
32
- #: add-to-any.php:189
33
  msgid "Bookmark"
34
  msgstr "Marcador"
35
 
36
- #: add-to-any.php:190
37
  msgid "Show all"
38
  msgstr "Mostrar todo"
39
 
40
- #: add-to-any.php:191
41
  msgid "Show less"
42
  msgstr "Mostrar menos"
43
 
44
- #: add-to-any.php:192
45
  msgid "Find service(s)"
46
  msgstr "Buscar servicios(s)"
47
 
48
- #: add-to-any.php:193
49
  msgid "Instantly find any service to add to"
50
  msgstr "Buscar servicio"
51
 
52
- #: add-to-any.php:194
53
  msgid "Powered by"
54
  msgstr "Servicio ofrecido por"
55
 
56
- #: add-to-any.php:195
57
  msgid "Share via e-mail"
58
  msgstr "Compartir por e-mail"
59
 
60
- #: add-to-any.php:196
61
  msgid "Subscribe via e-mail"
62
  msgstr "Suscribirse por e-mail"
63
 
64
- #: add-to-any.php:197
65
  msgid "Bookmark in your browser"
66
  msgstr "Agregar a marcadores de tu navegador"
67
 
68
- #: add-to-any.php:198
69
  #, fuzzy
70
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
71
  msgstr "Presione Ctrl+D o Cmd+D para marcar esta pagina"
72
 
73
- #: add-to-any.php:199
74
  msgid "Add to your favorites"
75
  msgstr "Agregar a favoritos"
76
 
77
- #: add-to-any.php:200
78
  msgid "Send from any e-mail address or e-mail program"
79
  msgstr "Enviar de cualquier dirección de e-mail o programa de e-mail"
80
 
81
- #: add-to-any.php:201
82
  msgid "E-mail program"
83
  msgstr "Programa de e-mail"
84
 
85
- #: add-to-any.php:226
86
  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."
87
  msgstr ""
88
 
89
- #: add-to-any.php:375
90
  msgid "Settings saved."
91
  msgstr "Configuración guardada."
92
 
93
- #: add-to-any.php:386
94
  msgid "Add to Any: Share/Save "
95
  msgstr "Add to Any: Compartir/Guardar "
96
 
97
- #: add-to-any.php:386
98
- #: add-to-any.php:739
 
99
  msgid "Settings"
100
  msgstr "Configuración"
101
 
102
- #: add-to-any.php:396
103
  msgid "Standalone Services"
104
  msgstr ""
105
 
106
- #: add-to-any.php:401
107
  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."
108
  msgstr ""
109
 
110
- #: add-to-any.php:420
111
  msgid "Button"
112
  msgstr "Botón"
113
 
114
- #: add-to-any.php:459
115
  msgid "Image URL"
116
  msgstr "URL de la imagen"
117
 
118
- #: add-to-any.php:466
119
  msgid "Text only"
120
  msgstr "Solo texto"
121
 
122
- #: add-to-any.php:474
123
  #, fuzzy
124
  msgid "Placement"
125
  msgstr "Ubicación del botón"
126
 
127
- #: add-to-any.php:483
128
  msgid "Display Share/Save button at the bottom of posts"
129
  msgstr "Mostrar el botón Compartir/Guardar al final de cada entrada"
130
 
131
- #: add-to-any.php:490
132
  msgid "Display Share/Save button at the bottom of posts on the front page"
133
  msgstr "Mostrar el botón Compartir/Guardar al final de las entradas en la pagina principal"
134
 
135
- #: add-to-any.php:497
136
  msgid "Display Share/Save button at the bottom of posts in the feed"
137
  msgstr "Mostrar el botón Compartir/Guardar al final de las entradas en el feed"
138
 
139
- #: add-to-any.php:501
140
  msgid "Display Share/Save button at the bottom of pages"
141
  msgstr "Mostrar el botón Compartir/Guardar al final de las paginas"
142
 
143
- #: add-to-any.php:505
144
  #, fuzzy
145
  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>)"
146
  msgstr "Si no está habilitado se debe agregar el siguiente código en <a href=\"theme-editor.php\">la plantilla de su tema</a>(dentro de <code>index.php</code>, <code>single.php</code>, y/o <code>page.php</code>)"
147
 
148
- #: add-to-any.php:514
149
  msgid "Menu Style"
150
  msgstr "Estilo del menú"
151
 
152
- #: add-to-any.php:516
153
  msgid "Using Add to Any'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."
154
  msgstr "Usar el personalizador de estilo de Add to Any, usted puede personalizar los colores de su menú Compartir/Guardar! Cuando finalice, debe copiar el código generado en el recuadro de <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">opciones adicionales</a> más abajo."
155
 
156
- #: add-to-any.php:518
157
  msgid "Open the Add to Any Menu Styler in a new window"
158
  msgstr "Abrir el personalizador de estilo de Add to Any en una nueva ventana"
159
 
160
- #: add-to-any.php:520
161
  msgid "Open Menu Styler"
162
  msgstr "Abrir el personalizador de estilos"
163
 
164
- #: add-to-any.php:525
165
  msgid "Menu Options"
166
  msgstr "Menú de opciones"
167
 
168
- #: add-to-any.php:530
169
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
170
  msgstr "Ocultar los objetos embebidos (Flash, video, etc) que intersectan con el manú cuando se muestra."
171
 
172
- #: add-to-any.php:535
173
  msgid "Show the title of the post (or page) within the menu"
174
  msgstr "Mostrar el título de la entrada (o de la pagina) dentro del menú"
175
 
176
- #: add-to-any.php:542
177
  msgid "Only show the menu when the user clicks the Share/Save button"
178
  msgstr "Mostrar el menú solo cuando un usuario haga click sobre el botón Compartir/Guardar"
179
 
180
- #: add-to-any.php:548
181
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
182
  msgstr "Abrir el menu de addtoany.com en una nueva pestaña o ventana si el usuario hace click en el botón Compartir/Guardar"
183
 
184
- #: add-to-any.php:553
185
  msgid "Additional Options"
186
  msgstr "Opciones adicionales"
187
 
188
- #: add-to-any.php:557
189
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
190
  msgstr "Pegue el código del personalizador de estilo en el siguiente recuadro"
191
 
192
- #: add-to-any.php:561
193
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
194
  msgstr "Abajo puede inicializar las variables JavaScript especiales para aplicar a cada menú Compartir/Guardar"
195
 
196
- #: add-to-any.php:562
197
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
198
  msgstr "Los usuarios avanzados podrían preferir explorar la <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">API JavaScript</a> de Add to Any."
199
 
200
- #: add-to-any.php:568
201
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
202
  msgstr "<strong>Nota</strong>: Si usted agrega código nuevo, sea cuidadoso de no sobreescribir accidentalmente cualquier código ingresado anteriormente.</label>"
203
 
204
- #: add-to-any.php:575
205
  msgid "Save Changes"
206
  msgstr "Guardar cambios"
207
 
208
- #: add-to-any.php:580
209
  msgid "Like this plugin?"
210
  msgstr ""
211
 
212
- #: add-to-any.php:581
213
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
214
  msgstr ""
215
 
216
- #: add-to-any.php:582
217
  msgid "<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\">Share it</a> with your friends."
218
  msgstr ""
219
 
220
- #: add-to-any.php:584
221
  msgid "Need support?"
222
  msgstr ""
223
 
224
- #: add-to-any.php:585
225
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
226
  msgstr ""
227
 
228
- #: add-to-any.php:586
229
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
230
  msgstr ""
231
 
232
- #: add-to-any.php:693
233
  msgid "Add/Remove Services"
234
  msgstr ""
235
 
236
- #: add-to-any.php:739
237
  msgid "Share/Save"
238
  msgstr "Compartir/Guardar"
239
 
240
- #: add-to-any.php:740
241
  msgid "Share/Save Buttons"
242
  msgstr "Botones Compartir/Guardar"
243
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-07-23 18:16-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pablo Poo <pablo@poo.cl>\n"
8
  "Language-Team: \n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
+ #: add-to-any.php:177
17
  msgid "Share"
18
  msgstr "Compartir"
19
 
20
+ #: add-to-any.php:178
21
  msgid "Save"
22
  msgstr "Guardar"
23
 
24
+ #: add-to-any.php:179
25
  msgid "Subscribe"
26
  msgstr "Suscribirse"
27
 
28
+ #: add-to-any.php:180
29
  msgid "E-mail"
30
  msgstr "E-mail"
31
 
32
+ #: add-to-any.php:181
33
  msgid "Bookmark"
34
  msgstr "Marcador"
35
 
36
+ #: add-to-any.php:182
37
  msgid "Show all"
38
  msgstr "Mostrar todo"
39
 
40
+ #: add-to-any.php:183
41
  msgid "Show less"
42
  msgstr "Mostrar menos"
43
 
44
+ #: add-to-any.php:184
45
  msgid "Find service(s)"
46
  msgstr "Buscar servicios(s)"
47
 
48
+ #: add-to-any.php:185
49
  msgid "Instantly find any service to add to"
50
  msgstr "Buscar servicio"
51
 
52
+ #: add-to-any.php:186
53
  msgid "Powered by"
54
  msgstr "Servicio ofrecido por"
55
 
56
+ #: add-to-any.php:187
57
  msgid "Share via e-mail"
58
  msgstr "Compartir por e-mail"
59
 
60
+ #: add-to-any.php:188
61
  msgid "Subscribe via e-mail"
62
  msgstr "Suscribirse por e-mail"
63
 
64
+ #: add-to-any.php:189
65
  msgid "Bookmark in your browser"
66
  msgstr "Agregar a marcadores de tu navegador"
67
 
68
+ #: add-to-any.php:190
69
  #, fuzzy
70
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
71
  msgstr "Presione Ctrl+D o Cmd+D para marcar esta pagina"
72
 
73
+ #: add-to-any.php:191
74
  msgid "Add to your favorites"
75
  msgstr "Agregar a favoritos"
76
 
77
+ #: add-to-any.php:192
78
  msgid "Send from any e-mail address or e-mail program"
79
  msgstr "Enviar de cualquier dirección de e-mail o programa de e-mail"
80
 
81
+ #: add-to-any.php:193
82
  msgid "E-mail program"
83
  msgstr "Programa de e-mail"
84
 
85
+ #: add-to-any.php:218
86
  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."
87
  msgstr ""
88
 
89
+ #: add-to-any.php:368
90
  msgid "Settings saved."
91
  msgstr "Configuración guardada."
92
 
93
+ #: add-to-any.php:379
94
  msgid "Add to Any: Share/Save "
95
  msgstr "Add to Any: Compartir/Guardar "
96
 
97
+ #: add-to-any.php:379
98
+ #: add-to-any.php:732
99
+ #: add-to-any.php:753
100
  msgid "Settings"
101
  msgstr "Configuración"
102
 
103
+ #: add-to-any.php:389
104
  msgid "Standalone Services"
105
  msgstr ""
106
 
107
+ #: add-to-any.php:394
108
  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."
109
  msgstr ""
110
 
111
+ #: add-to-any.php:413
112
  msgid "Button"
113
  msgstr "Botón"
114
 
115
+ #: add-to-any.php:452
116
  msgid "Image URL"
117
  msgstr "URL de la imagen"
118
 
119
+ #: add-to-any.php:459
120
  msgid "Text only"
121
  msgstr "Solo texto"
122
 
123
+ #: add-to-any.php:467
124
  #, fuzzy
125
  msgid "Placement"
126
  msgstr "Ubicación del botón"
127
 
128
+ #: add-to-any.php:476
129
  msgid "Display Share/Save button at the bottom of posts"
130
  msgstr "Mostrar el botón Compartir/Guardar al final de cada entrada"
131
 
132
+ #: add-to-any.php:483
133
  msgid "Display Share/Save button at the bottom of posts on the front page"
134
  msgstr "Mostrar el botón Compartir/Guardar al final de las entradas en la pagina principal"
135
 
136
+ #: add-to-any.php:490
137
  msgid "Display Share/Save button at the bottom of posts in the feed"
138
  msgstr "Mostrar el botón Compartir/Guardar al final de las entradas en el feed"
139
 
140
+ #: add-to-any.php:494
141
  msgid "Display Share/Save button at the bottom of pages"
142
  msgstr "Mostrar el botón Compartir/Guardar al final de las paginas"
143
 
144
+ #: add-to-any.php:498
145
  #, fuzzy
146
  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>)"
147
  msgstr "Si no está habilitado se debe agregar el siguiente código en <a href=\"theme-editor.php\">la plantilla de su tema</a>(dentro de <code>index.php</code>, <code>single.php</code>, y/o <code>page.php</code>)"
148
 
149
+ #: add-to-any.php:507
150
  msgid "Menu Style"
151
  msgstr "Estilo del menú"
152
 
153
+ #: add-to-any.php:509
154
  msgid "Using Add to Any'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."
155
  msgstr "Usar el personalizador de estilo de Add to Any, usted puede personalizar los colores de su menú Compartir/Guardar! Cuando finalice, debe copiar el código generado en el recuadro de <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">opciones adicionales</a> más abajo."
156
 
157
+ #: add-to-any.php:511
158
  msgid "Open the Add to Any Menu Styler in a new window"
159
  msgstr "Abrir el personalizador de estilo de Add to Any en una nueva ventana"
160
 
161
+ #: add-to-any.php:513
162
  msgid "Open Menu Styler"
163
  msgstr "Abrir el personalizador de estilos"
164
 
165
+ #: add-to-any.php:518
166
  msgid "Menu Options"
167
  msgstr "Menú de opciones"
168
 
169
+ #: add-to-any.php:523
170
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
171
  msgstr "Ocultar los objetos embebidos (Flash, video, etc) que intersectan con el manú cuando se muestra."
172
 
173
+ #: add-to-any.php:528
174
  msgid "Show the title of the post (or page) within the menu"
175
  msgstr "Mostrar el título de la entrada (o de la pagina) dentro del menú"
176
 
177
+ #: add-to-any.php:535
178
  msgid "Only show the menu when the user clicks the Share/Save button"
179
  msgstr "Mostrar el menú solo cuando un usuario haga click sobre el botón Compartir/Guardar"
180
 
181
+ #: add-to-any.php:541
182
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
183
  msgstr "Abrir el menu de addtoany.com en una nueva pestaña o ventana si el usuario hace click en el botón Compartir/Guardar"
184
 
185
+ #: add-to-any.php:546
186
  msgid "Additional Options"
187
  msgstr "Opciones adicionales"
188
 
189
+ #: add-to-any.php:550
190
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
191
  msgstr "Pegue el código del personalizador de estilo en el siguiente recuadro"
192
 
193
+ #: add-to-any.php:554
194
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
195
  msgstr "Abajo puede inicializar las variables JavaScript especiales para aplicar a cada menú Compartir/Guardar"
196
 
197
+ #: add-to-any.php:555
198
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
199
  msgstr "Los usuarios avanzados podrían preferir explorar la <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">API JavaScript</a> de Add to Any."
200
 
201
+ #: add-to-any.php:561
202
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
203
  msgstr "<strong>Nota</strong>: Si usted agrega código nuevo, sea cuidadoso de no sobreescribir accidentalmente cualquier código ingresado anteriormente.</label>"
204
 
205
+ #: add-to-any.php:568
206
  msgid "Save Changes"
207
  msgstr "Guardar cambios"
208
 
209
+ #: add-to-any.php:573
210
  msgid "Like this plugin?"
211
  msgstr ""
212
 
213
+ #: add-to-any.php:574
214
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
215
  msgstr ""
216
 
217
+ #: add-to-any.php:575
218
  msgid "<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\">Share it</a> with your friends."
219
  msgstr ""
220
 
221
+ #: add-to-any.php:577
222
  msgid "Need support?"
223
  msgstr ""
224
 
225
+ #: add-to-any.php:578
226
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
227
  msgstr ""
228
 
229
+ #: add-to-any.php:579
230
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
231
  msgstr ""
232
 
233
+ #: add-to-any.php:686
234
  msgid "Add/Remove Services"
235
  msgstr ""
236
 
237
+ #: add-to-any.php:732
238
  msgid "Share/Save"
239
  msgstr "Compartir/Guardar"
240
 
241
+ #: add-to-any.php:733
242
  msgid "Share/Save Buttons"
243
  msgstr "Botones Compartir/Guardar"
244
 
languages/add-to-any-it_IT.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-07-14 21:23-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: Gianni Diurno | http://gidibao.net/ <gidibao@gmail.com>\n"
@@ -15,230 +15,231 @@ msgstr ""
15
  "X-Poedit-Country: ITALY\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: add-to-any.php:185
19
  msgid "Share"
20
  msgstr "Condividi"
21
 
22
- #: add-to-any.php:186
23
  msgid "Save"
24
  msgstr "Salva"
25
 
26
- #: add-to-any.php:187
27
  msgid "Subscribe"
28
  msgstr "Abbonati"
29
 
30
- #: add-to-any.php:188
31
  msgid "E-mail"
32
  msgstr "E-mail"
33
 
34
- #: add-to-any.php:189
35
  msgid "Bookmark"
36
  msgstr "Segnalibro"
37
 
38
- #: add-to-any.php:190
39
  msgid "Show all"
40
  msgstr "espandi"
41
 
42
- #: add-to-any.php:191
43
  msgid "Show less"
44
  msgstr "comprimi"
45
 
46
- #: add-to-any.php:192
47
  msgid "Find service(s)"
48
  msgstr "Trova servizi"
49
 
50
- #: add-to-any.php:193
51
  msgid "Instantly find any service to add to"
52
  msgstr "Trova subito un servizio da aggiungere"
53
 
54
- #: add-to-any.php:194
55
  msgid "Powered by"
56
  msgstr "Fornito da"
57
 
58
- #: add-to-any.php:195
59
  msgid "Share via e-mail"
60
  msgstr "Condividi via email"
61
 
62
- #: add-to-any.php:196
63
  msgid "Subscribe via e-mail"
64
  msgstr "Abbonati via email"
65
 
66
- #: add-to-any.php:197
67
  msgid "Bookmark in your browser"
68
  msgstr "Aggiungi ai segnalibri"
69
 
70
- #: add-to-any.php:198
71
  #, fuzzy
72
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
73
  msgstr "Premi Ctrl+D o Cmd+D per aggiungere questa pagina alla lista dei segnalibri"
74
 
75
- #: add-to-any.php:199
76
  msgid "Add to your favorites"
77
  msgstr "Aggiungi ai favoriti"
78
 
79
- #: add-to-any.php:200
80
  msgid "Send from any e-mail address or e-mail program"
81
  msgstr "Invia da un indirizzo email o client di posta elettronica"
82
 
83
- #: add-to-any.php:201
84
  msgid "E-mail program"
85
  msgstr "Client di posta elettronica"
86
 
87
- #: add-to-any.php:226
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 "Il tuo tema deve essere aggiornato. Per apportare le modifiche necessarie, utilizza l'editor dei <a href=\"theme-editor.php\">temi</a> per inserire <code>&lt;?php wp_footer(); ?&gt;</code> subito prima del tag di chiusura <code>&lt;/body&gt;</code> presente nel file <code>footer.php</code>."
90
 
91
- #: add-to-any.php:375
92
  msgid "Settings saved."
93
  msgstr "Le impostazioni sono state salvate"
94
 
95
- #: add-to-any.php:386
96
  msgid "Add to Any: Share/Save "
97
  msgstr "Add to Any: Condividi/Salva "
98
 
99
- #: add-to-any.php:386
100
- #: add-to-any.php:739
 
101
  msgid "Settings"
102
  msgstr "Impostazioni"
103
 
104
- #: add-to-any.php:396
105
  msgid "Standalone Services"
106
  msgstr "Servizi indipendenti"
107
 
108
- #: add-to-any.php:401
109
  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."
110
  msgstr "Scegli qui sotto i servizi di tuo gradimento. &nbsp;Clicca su di un servizio attivo per rimuoverlo. &nbsp;Riordina i servizi via drag and drop."
111
 
112
- #: add-to-any.php:420
113
  msgid "Button"
114
  msgstr "Pulsante"
115
 
116
- #: add-to-any.php:459
117
  msgid "Image URL"
118
  msgstr "URL immagine"
119
 
120
- #: add-to-any.php:466
121
  msgid "Text only"
122
  msgstr "Solo testo"
123
 
124
- #: add-to-any.php:474
125
  msgid "Placement"
126
  msgstr "Posizione"
127
 
128
- #: add-to-any.php:483
129
  msgid "Display Share/Save button at the bottom of posts"
130
  msgstr "Mostra il pulsante Share/Save in coda agli articoli"
131
 
132
- #: add-to-any.php:490
133
  msgid "Display Share/Save button at the bottom of posts on the front page"
134
  msgstr "Mostra il pulsante Share/Save in coda agli articoli nella pagina principale"
135
 
136
- #: add-to-any.php:497
137
  msgid "Display Share/Save button at the bottom of posts in the feed"
138
  msgstr "Mostra il pulsante Share/Save in coda agli articoli del feed"
139
 
140
- #: add-to-any.php:501
141
  msgid "Display Share/Save button at the bottom of pages"
142
  msgstr "Mostra il pulsante Share/Save in coda alle pagine"
143
 
144
- #: add-to-any.php:505
145
  #, fuzzy
146
  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>)"
147
  msgstr "Se disattivata, dovrai inserire il codice qui sotto nelle <a href=\"theme-editor.php\">pagine del tuo tema</a> (in <code>index.php</code>, <code>single.php</code>, e/o <code>page.php</code>)"
148
 
149
- #: add-to-any.php:514
150
  msgid "Menu Style"
151
  msgstr "Stile menu"
152
 
153
- #: add-to-any.php:516
154
  msgid "Using Add to Any'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."
155
  msgstr "Utilizzando il Menu Styler di Add to Any potrai personalizzare i colori del menu Share/Save! Una volta apportata la modifica, incolla il codice così ottenuto nel riquadro delle <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Opzioni agggiuntive</a> qui sotto."
156
 
157
- #: add-to-any.php:518
158
  msgid "Open the Add to Any Menu Styler in a new window"
159
  msgstr "Apri in una nuova pagina per personalizzare il menu di Add to Any"
160
 
161
- #: add-to-any.php:520
162
  msgid "Open Menu Styler"
163
  msgstr "Stile menu"
164
 
165
- #: add-to-any.php:525
166
  msgid "Menu Options"
167
  msgstr "Opzioni menu"
168
 
169
- #: add-to-any.php:530
170
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
171
  msgstr "Nascondi gli oggetti incorporati (Flash, video, etc.) che possono interferire con la visualizzazione corretta del menu"
172
 
173
- #: add-to-any.php:535
174
  msgid "Show the title of the post (or page) within the menu"
175
  msgstr "Mostra nel menu il titolo dell'articolo (o pagina)"
176
 
177
- #: add-to-any.php:542
178
  msgid "Only show the menu when the user clicks the Share/Save button"
179
  msgstr "Mostra solamente il menu quando un utente clicca sul pulsante Share/Save"
180
 
181
- #: add-to-any.php:548
182
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
183
  msgstr "Apri in una nuova scheda o finestra la pagina menu di addtoany.com quando un utente clicca il pulsante Share/Save"
184
 
185
- #: add-to-any.php:553
186
  msgid "Additional Options"
187
  msgstr "Opzioni aggiuntive"
188
 
189
- #: add-to-any.php:557
190
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
191
  msgstr "Incolla nel riquadro qui sotto il nuovo codice personalizzato per il menu! "
192
 
193
- #: add-to-any.php:561
194
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
195
  msgstr "Qui sotto é possibile impostare delle variabili JavaScript particolari applicabili ad ogni menu Share/Save."
196
 
197
- #: add-to-any.php:562
198
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
199
  msgstr "Gli utenti più esperti possono prendere visione della <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a> di Add to Any."
200
 
201
- #: add-to-any.php:568
202
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
203
  msgstr "<strong>Nota</strong>: qualora stessi aggiungendo un nnuovo codice, fai attenzione a non sovrascrivere accidentalmente ogni codice precedente.</label>"
204
 
205
- #: add-to-any.php:575
206
  msgid "Save Changes"
207
  msgstr "Salva le modifiche"
208
 
209
- #: add-to-any.php:580
210
  msgid "Like this plugin?"
211
  msgstr "Ti é piaciuto questo plugin?"
212
 
213
- #: add-to-any.php:581
214
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
215
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Votalo</a> su WordPress.org."
216
 
217
- #: add-to-any.php:582
218
  msgid "<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\">Share it</a> with your friends."
219
  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\">Condividi</a> con i tuoi amici."
220
 
221
- #: add-to-any.php:584
222
  msgid "Need support?"
223
  msgstr "Serve aiuto?"
224
 
225
- #: add-to-any.php:585
226
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
227
  msgstr "Vedi la pagina dedicata alle <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ</a>."
228
 
229
- #: add-to-any.php:586
230
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
231
  msgstr "Effettua una ricerca nel <a href=\"http://wordpress.org/tags/add-to-any\">forum di supporto</a>."
232
 
233
- #: add-to-any.php:693
234
  msgid "Add/Remove Services"
235
  msgstr "Aggiungi/Rimuovi i sevizi"
236
 
237
- #: add-to-any.php:739
238
  msgid "Share/Save"
239
  msgstr "Condividi/Salva"
240
 
241
- #: add-to-any.php:740
242
  msgid "Share/Save Buttons"
243
  msgstr "Pulsanti Condividi/Salva"
244
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-07-23 18:16-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: Gianni Diurno | http://gidibao.net/ <gidibao@gmail.com>\n"
15
  "X-Poedit-Country: ITALY\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: add-to-any.php:177
19
  msgid "Share"
20
  msgstr "Condividi"
21
 
22
+ #: add-to-any.php:178
23
  msgid "Save"
24
  msgstr "Salva"
25
 
26
+ #: add-to-any.php:179
27
  msgid "Subscribe"
28
  msgstr "Abbonati"
29
 
30
+ #: add-to-any.php:180
31
  msgid "E-mail"
32
  msgstr "E-mail"
33
 
34
+ #: add-to-any.php:181
35
  msgid "Bookmark"
36
  msgstr "Segnalibro"
37
 
38
+ #: add-to-any.php:182
39
  msgid "Show all"
40
  msgstr "espandi"
41
 
42
+ #: add-to-any.php:183
43
  msgid "Show less"
44
  msgstr "comprimi"
45
 
46
+ #: add-to-any.php:184
47
  msgid "Find service(s)"
48
  msgstr "Trova servizi"
49
 
50
+ #: add-to-any.php:185
51
  msgid "Instantly find any service to add to"
52
  msgstr "Trova subito un servizio da aggiungere"
53
 
54
+ #: add-to-any.php:186
55
  msgid "Powered by"
56
  msgstr "Fornito da"
57
 
58
+ #: add-to-any.php:187
59
  msgid "Share via e-mail"
60
  msgstr "Condividi via email"
61
 
62
+ #: add-to-any.php:188
63
  msgid "Subscribe via e-mail"
64
  msgstr "Abbonati via email"
65
 
66
+ #: add-to-any.php:189
67
  msgid "Bookmark in your browser"
68
  msgstr "Aggiungi ai segnalibri"
69
 
70
+ #: add-to-any.php:190
71
  #, fuzzy
72
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
73
  msgstr "Premi Ctrl+D o Cmd+D per aggiungere questa pagina alla lista dei segnalibri"
74
 
75
+ #: add-to-any.php:191
76
  msgid "Add to your favorites"
77
  msgstr "Aggiungi ai favoriti"
78
 
79
+ #: add-to-any.php:192
80
  msgid "Send from any e-mail address or e-mail program"
81
  msgstr "Invia da un indirizzo email o client di posta elettronica"
82
 
83
+ #: add-to-any.php:193
84
  msgid "E-mail program"
85
  msgstr "Client di posta elettronica"
86
 
87
+ #: add-to-any.php:218
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 "Il tuo tema deve essere aggiornato. Per apportare le modifiche necessarie, utilizza l'editor dei <a href=\"theme-editor.php\">temi</a> per inserire <code>&lt;?php wp_footer(); ?&gt;</code> subito prima del tag di chiusura <code>&lt;/body&gt;</code> presente nel file <code>footer.php</code>."
90
 
91
+ #: add-to-any.php:368
92
  msgid "Settings saved."
93
  msgstr "Le impostazioni sono state salvate"
94
 
95
+ #: add-to-any.php:379
96
  msgid "Add to Any: Share/Save "
97
  msgstr "Add to Any: Condividi/Salva "
98
 
99
+ #: add-to-any.php:379
100
+ #: add-to-any.php:732
101
+ #: add-to-any.php:753
102
  msgid "Settings"
103
  msgstr "Impostazioni"
104
 
105
+ #: add-to-any.php:389
106
  msgid "Standalone Services"
107
  msgstr "Servizi indipendenti"
108
 
109
+ #: add-to-any.php:394
110
  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."
111
  msgstr "Scegli qui sotto i servizi di tuo gradimento. &nbsp;Clicca su di un servizio attivo per rimuoverlo. &nbsp;Riordina i servizi via drag and drop."
112
 
113
+ #: add-to-any.php:413
114
  msgid "Button"
115
  msgstr "Pulsante"
116
 
117
+ #: add-to-any.php:452
118
  msgid "Image URL"
119
  msgstr "URL immagine"
120
 
121
+ #: add-to-any.php:459
122
  msgid "Text only"
123
  msgstr "Solo testo"
124
 
125
+ #: add-to-any.php:467
126
  msgid "Placement"
127
  msgstr "Posizione"
128
 
129
+ #: add-to-any.php:476
130
  msgid "Display Share/Save button at the bottom of posts"
131
  msgstr "Mostra il pulsante Share/Save in coda agli articoli"
132
 
133
+ #: add-to-any.php:483
134
  msgid "Display Share/Save button at the bottom of posts on the front page"
135
  msgstr "Mostra il pulsante Share/Save in coda agli articoli nella pagina principale"
136
 
137
+ #: add-to-any.php:490
138
  msgid "Display Share/Save button at the bottom of posts in the feed"
139
  msgstr "Mostra il pulsante Share/Save in coda agli articoli del feed"
140
 
141
+ #: add-to-any.php:494
142
  msgid "Display Share/Save button at the bottom of pages"
143
  msgstr "Mostra il pulsante Share/Save in coda alle pagine"
144
 
145
+ #: add-to-any.php:498
146
  #, fuzzy
147
  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>)"
148
  msgstr "Se disattivata, dovrai inserire il codice qui sotto nelle <a href=\"theme-editor.php\">pagine del tuo tema</a> (in <code>index.php</code>, <code>single.php</code>, e/o <code>page.php</code>)"
149
 
150
+ #: add-to-any.php:507
151
  msgid "Menu Style"
152
  msgstr "Stile menu"
153
 
154
+ #: add-to-any.php:509
155
  msgid "Using Add to Any'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."
156
  msgstr "Utilizzando il Menu Styler di Add to Any potrai personalizzare i colori del menu Share/Save! Una volta apportata la modifica, incolla il codice così ottenuto nel riquadro delle <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Opzioni agggiuntive</a> qui sotto."
157
 
158
+ #: add-to-any.php:511
159
  msgid "Open the Add to Any Menu Styler in a new window"
160
  msgstr "Apri in una nuova pagina per personalizzare il menu di Add to Any"
161
 
162
+ #: add-to-any.php:513
163
  msgid "Open Menu Styler"
164
  msgstr "Stile menu"
165
 
166
+ #: add-to-any.php:518
167
  msgid "Menu Options"
168
  msgstr "Opzioni menu"
169
 
170
+ #: add-to-any.php:523
171
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
172
  msgstr "Nascondi gli oggetti incorporati (Flash, video, etc.) che possono interferire con la visualizzazione corretta del menu"
173
 
174
+ #: add-to-any.php:528
175
  msgid "Show the title of the post (or page) within the menu"
176
  msgstr "Mostra nel menu il titolo dell'articolo (o pagina)"
177
 
178
+ #: add-to-any.php:535
179
  msgid "Only show the menu when the user clicks the Share/Save button"
180
  msgstr "Mostra solamente il menu quando un utente clicca sul pulsante Share/Save"
181
 
182
+ #: add-to-any.php:541
183
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
184
  msgstr "Apri in una nuova scheda o finestra la pagina menu di addtoany.com quando un utente clicca il pulsante Share/Save"
185
 
186
+ #: add-to-any.php:546
187
  msgid "Additional Options"
188
  msgstr "Opzioni aggiuntive"
189
 
190
+ #: add-to-any.php:550
191
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
192
  msgstr "Incolla nel riquadro qui sotto il nuovo codice personalizzato per il menu! "
193
 
194
+ #: add-to-any.php:554
195
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
196
  msgstr "Qui sotto é possibile impostare delle variabili JavaScript particolari applicabili ad ogni menu Share/Save."
197
 
198
+ #: add-to-any.php:555
199
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
200
  msgstr "Gli utenti più esperti possono prendere visione della <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a> di Add to Any."
201
 
202
+ #: add-to-any.php:561
203
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
204
  msgstr "<strong>Nota</strong>: qualora stessi aggiungendo un nnuovo codice, fai attenzione a non sovrascrivere accidentalmente ogni codice precedente.</label>"
205
 
206
+ #: add-to-any.php:568
207
  msgid "Save Changes"
208
  msgstr "Salva le modifiche"
209
 
210
+ #: add-to-any.php:573
211
  msgid "Like this plugin?"
212
  msgstr "Ti é piaciuto questo plugin?"
213
 
214
+ #: add-to-any.php:574
215
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
216
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Votalo</a> su WordPress.org."
217
 
218
+ #: add-to-any.php:575
219
  msgid "<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\">Share it</a> with your friends."
220
  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\">Condividi</a> con i tuoi amici."
221
 
222
+ #: add-to-any.php:577
223
  msgid "Need support?"
224
  msgstr "Serve aiuto?"
225
 
226
+ #: add-to-any.php:578
227
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
228
  msgstr "Vedi la pagina dedicata alle <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ</a>."
229
 
230
+ #: add-to-any.php:579
231
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
232
  msgstr "Effettua una ricerca nel <a href=\"http://wordpress.org/tags/add-to-any\">forum di supporto</a>."
233
 
234
+ #: add-to-any.php:686
235
  msgid "Add/Remove Services"
236
  msgstr "Aggiungi/Rimuovi i sevizi"
237
 
238
+ #: add-to-any.php:732
239
  msgid "Share/Save"
240
  msgstr "Condividi/Salva"
241
 
242
+ #: add-to-any.php:733
243
  msgid "Share/Save Buttons"
244
  msgstr "Pulsanti Condividi/Salva"
245
 
languages/add-to-any-pt_PT.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-07-14 21:23-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Jorge Silva <jncs12@gmail.com>\n"
8
  "Language-Team: \n"
@@ -13,229 +13,230 @@ msgstr ""
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: add-to-any.php:185
17
  msgid "Share"
18
  msgstr "Partilhar"
19
 
20
- #: add-to-any.php:186
21
  msgid "Save"
22
  msgstr "Guardar"
23
 
24
- #: add-to-any.php:187
25
  msgid "Subscribe"
26
  msgstr "Subscrever"
27
 
28
- #: add-to-any.php:188
29
  msgid "E-mail"
30
  msgstr "E-mail"
31
 
32
- #: add-to-any.php:189
33
  msgid "Bookmark"
34
  msgstr "Marcador"
35
 
36
- #: add-to-any.php:190
37
  msgid "Show all"
38
  msgstr "Mostrar tudo"
39
 
40
- #: add-to-any.php:191
41
  msgid "Show less"
42
  msgstr "Mostrar menos"
43
 
44
- #: add-to-any.php:192
45
  msgid "Find service(s)"
46
  msgstr "Procurar serviço(s)"
47
 
48
- #: add-to-any.php:193
49
  msgid "Instantly find any service to add to"
50
  msgstr "Encontrar rapidamente qualquer serviço para"
51
 
52
- #: add-to-any.php:194
53
  msgid "Powered by"
54
  msgstr "Serviço fornecido por"
55
 
56
- #: add-to-any.php:195
57
  msgid "Share via e-mail"
58
  msgstr "Partilhar por e-mail"
59
 
60
- #: add-to-any.php:196
61
  msgid "Subscribe via e-mail"
62
  msgstr "Subscrever por e-mail"
63
 
64
- #: add-to-any.php:197
65
  msgid "Bookmark in your browser"
66
  msgstr "Adicionar marcador"
67
 
68
- #: add-to-any.php:198
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:199
73
  msgid "Add to your favorites"
74
  msgstr "Adicionar a favoritos"
75
 
76
- #: add-to-any.php:200
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:201
81
  msgid "E-mail program"
82
  msgstr "Programa de e-mail"
83
 
84
- #: add-to-any.php:226
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:375
89
  msgid "Settings saved."
90
  msgstr "Configuração guardada."
91
 
92
- #: add-to-any.php:386
93
  msgid "Add to Any: Share/Save "
94
  msgstr "Add to Any: Partilhar/Guardar "
95
 
96
- #: add-to-any.php:386
97
- #: add-to-any.php:739
 
98
  msgid "Settings"
99
  msgstr "Configurações"
100
 
101
- #: add-to-any.php:396
102
  msgid "Standalone Services"
103
  msgstr "Serviços Isolados"
104
 
105
- #: add-to-any.php:401
106
  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."
107
  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."
108
 
109
- #: add-to-any.php:420
110
  msgid "Button"
111
  msgstr "Botão"
112
 
113
- #: add-to-any.php:459
114
  msgid "Image URL"
115
  msgstr "URL da imagem"
116
 
117
- #: add-to-any.php:466
118
  msgid "Text only"
119
  msgstr "Apenas texto"
120
 
121
- #: add-to-any.php:474
122
  msgid "Placement"
123
  msgstr "Posicionamento"
124
 
125
- #: add-to-any.php:483
126
  msgid "Display Share/Save button at the bottom of posts"
127
  msgstr "Mostrar o botão Partilhar/Guardar no fim de cada post"
128
 
129
- #: add-to-any.php:490
130
  msgid "Display Share/Save button at the bottom of posts on the front page"
131
  msgstr "Mostrar o botão Partilhar/Guardar no fim dos posts na página principal"
132
 
133
- #: add-to-any.php:497
134
  msgid "Display Share/Save button at the bottom of posts in the feed"
135
  msgstr "Mostrar o botão Partilhar/Guardar no fim dos posts do feed RSS"
136
 
137
- #: add-to-any.php:501
138
  msgid "Display Share/Save button at the bottom of pages"
139
  msgstr "Mostrar o botão Partilhar/Guardar no fim das páginas"
140
 
141
- #: add-to-any.php:505
142
  #, fuzzy
143
  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>)"
144
  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>)"
145
 
146
- #: add-to-any.php:514
147
  msgid "Menu Style"
148
  msgstr "Estilo de Menu"
149
 
150
- #: add-to-any.php:516
151
  msgid "Using Add to Any'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."
152
  msgstr "Usar o Personalizador de Estilo do Add to Any. 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."
153
 
154
- #: add-to-any.php:518
155
  msgid "Open the Add to Any Menu Styler in a new window"
156
  msgstr "Abrir o Menu de Personalização de Estilos Add to Any numa nova janela"
157
 
158
- #: add-to-any.php:520
159
  msgid "Open Menu Styler"
160
  msgstr "Abrir o Menu de Personalização de Estilos"
161
 
162
- #: add-to-any.php:525
163
  msgid "Menu Options"
164
  msgstr "Opções de Menu"
165
 
166
- #: add-to-any.php:530
167
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
168
  msgstr "Ocultar objetos embebidos (Flash, video, etc) que interajam com o menu quando visualizado"
169
 
170
- #: add-to-any.php:535
171
  msgid "Show the title of the post (or page) within the menu"
172
  msgstr "Mostrar o título do post (ou da página) dentro do menu"
173
 
174
- #: add-to-any.php:542
175
  msgid "Only show the menu when the user clicks the Share/Save button"
176
  msgstr "Mostrar apenas o menu quando o utilizador fizer um clique no botão Partilhar/Guardar"
177
 
178
- #: add-to-any.php:548
179
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
180
  msgstr "Abrir o menu de addtoany.com num novo separador ou janela se o utilizador fizer um clique no botão Partilhar/Guardar"
181
 
182
- #: add-to-any.php:553
183
  msgid "Additional Options"
184
  msgstr "Opções Adicionais"
185
 
186
- #: add-to-any.php:557
187
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
188
  msgstr "Cole o código do Menu de Personalização de Estilos do Add to Any na caixa a seguir!"
189
 
190
- #: add-to-any.php:561
191
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
192
  msgstr "Em baixo pode inserir varáveis especiais de JavaScript para aplicar a cada menu Partilhar/Guardar."
193
 
194
- #: add-to-any.php:562
195
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
196
  msgstr "Utilizadores avançados podem querer explorar o <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">API do JavaScript</a> do Add to Any."
197
 
198
- #: add-to-any.php:568
199
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
200
  msgstr "<strong>Nota</strong>: Se está a adicionar novo código, tenha cuidado para não sobrescrever (apagar) acidentalmente qualquer código existente.</label>"
201
 
202
- #: add-to-any.php:575
203
  msgid "Save Changes"
204
  msgstr "Guardar alterações"
205
 
206
- #: add-to-any.php:580
207
  msgid "Like this plugin?"
208
  msgstr "Gosta deste plugin?"
209
 
210
- #: add-to-any.php:581
211
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
212
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Atribua-lhe uma boa pontuação</a> no WordPress.org."
213
 
214
- #: add-to-any.php:582
215
  msgid "<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\">Share it</a> with your friends."
216
  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."
217
 
218
- #: add-to-any.php:584
219
  msgid "Need support?"
220
  msgstr "Precisa de ajuda?"
221
 
222
- #: add-to-any.php:585
223
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
224
  msgstr "Consulte a página de <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ's</a>."
225
 
226
- #: add-to-any.php:586
227
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
228
  msgstr "Procurar nos <a href=\"http://wordpress.org/tags/add-to-any\">fóruns</a> de ajuda."
229
 
230
- #: add-to-any.php:693
231
  msgid "Add/Remove Services"
232
  msgstr "Adicionar/Remover Serviços"
233
 
234
- #: add-to-any.php:739
235
  msgid "Share/Save"
236
  msgstr "Partilhar/Guardar"
237
 
238
- #: add-to-any.php:740
239
  msgid "Share/Save Buttons"
240
  msgstr "Botões Partilhar/Guardar"
241
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-07-23 18:16-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Jorge Silva <jncs12@gmail.com>\n"
8
  "Language-Team: \n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
+ #: add-to-any.php:177
17
  msgid "Share"
18
  msgstr "Partilhar"
19
 
20
+ #: add-to-any.php:178
21
  msgid "Save"
22
  msgstr "Guardar"
23
 
24
+ #: add-to-any.php:179
25
  msgid "Subscribe"
26
  msgstr "Subscrever"
27
 
28
+ #: add-to-any.php:180
29
  msgid "E-mail"
30
  msgstr "E-mail"
31
 
32
+ #: add-to-any.php:181
33
  msgid "Bookmark"
34
  msgstr "Marcador"
35
 
36
+ #: add-to-any.php:182
37
  msgid "Show all"
38
  msgstr "Mostrar tudo"
39
 
40
+ #: add-to-any.php:183
41
  msgid "Show less"
42
  msgstr "Mostrar menos"
43
 
44
+ #: add-to-any.php:184
45
  msgid "Find service(s)"
46
  msgstr "Procurar serviço(s)"
47
 
48
+ #: add-to-any.php:185
49
  msgid "Instantly find any service to add to"
50
  msgstr "Encontrar rapidamente qualquer serviço para"
51
 
52
+ #: add-to-any.php:186
53
  msgid "Powered by"
54
  msgstr "Serviço fornecido por"
55
 
56
+ #: add-to-any.php:187
57
  msgid "Share via e-mail"
58
  msgstr "Partilhar por e-mail"
59
 
60
+ #: add-to-any.php:188
61
  msgid "Subscribe via e-mail"
62
  msgstr "Subscrever por e-mail"
63
 
64
+ #: add-to-any.php:189
65
  msgid "Bookmark in your browser"
66
  msgstr "Adicionar marcador"
67
 
68
+ #: add-to-any.php:190
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:191
73
  msgid "Add to your favorites"
74
  msgstr "Adicionar a favoritos"
75
 
76
+ #: add-to-any.php:192
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:193
81
  msgid "E-mail program"
82
  msgstr "Programa de e-mail"
83
 
84
+ #: add-to-any.php:218
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:368
89
  msgid "Settings saved."
90
  msgstr "Configuração guardada."
91
 
92
+ #: add-to-any.php:379
93
  msgid "Add to Any: Share/Save "
94
  msgstr "Add to Any: Partilhar/Guardar "
95
 
96
+ #: add-to-any.php:379
97
+ #: add-to-any.php:732
98
+ #: add-to-any.php:753
99
  msgid "Settings"
100
  msgstr "Configurações"
101
 
102
+ #: add-to-any.php:389
103
  msgid "Standalone Services"
104
  msgstr "Serviços Isolados"
105
 
106
+ #: add-to-any.php:394
107
  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."
108
  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."
109
 
110
+ #: add-to-any.php:413
111
  msgid "Button"
112
  msgstr "Botão"
113
 
114
+ #: add-to-any.php:452
115
  msgid "Image URL"
116
  msgstr "URL da imagem"
117
 
118
+ #: add-to-any.php:459
119
  msgid "Text only"
120
  msgstr "Apenas texto"
121
 
122
+ #: add-to-any.php:467
123
  msgid "Placement"
124
  msgstr "Posicionamento"
125
 
126
+ #: add-to-any.php:476
127
  msgid "Display Share/Save button at the bottom of posts"
128
  msgstr "Mostrar o botão Partilhar/Guardar no fim de cada post"
129
 
130
+ #: add-to-any.php:483
131
  msgid "Display Share/Save button at the bottom of posts on the front page"
132
  msgstr "Mostrar o botão Partilhar/Guardar no fim dos posts na página principal"
133
 
134
+ #: add-to-any.php:490
135
  msgid "Display Share/Save button at the bottom of posts in the feed"
136
  msgstr "Mostrar o botão Partilhar/Guardar no fim dos posts do feed RSS"
137
 
138
+ #: add-to-any.php:494
139
  msgid "Display Share/Save button at the bottom of pages"
140
  msgstr "Mostrar o botão Partilhar/Guardar no fim das páginas"
141
 
142
+ #: add-to-any.php:498
143
  #, fuzzy
144
  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>)"
145
  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>)"
146
 
147
+ #: add-to-any.php:507
148
  msgid "Menu Style"
149
  msgstr "Estilo de Menu"
150
 
151
+ #: add-to-any.php:509
152
  msgid "Using Add to Any'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."
153
  msgstr "Usar o Personalizador de Estilo do Add to Any. 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."
154
 
155
+ #: add-to-any.php:511
156
  msgid "Open the Add to Any Menu Styler in a new window"
157
  msgstr "Abrir o Menu de Personalização de Estilos Add to Any numa nova janela"
158
 
159
+ #: add-to-any.php:513
160
  msgid "Open Menu Styler"
161
  msgstr "Abrir o Menu de Personalização de Estilos"
162
 
163
+ #: add-to-any.php:518
164
  msgid "Menu Options"
165
  msgstr "Opções de Menu"
166
 
167
+ #: add-to-any.php:523
168
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
169
  msgstr "Ocultar objetos embebidos (Flash, video, etc) que interajam com o menu quando visualizado"
170
 
171
+ #: add-to-any.php:528
172
  msgid "Show the title of the post (or page) within the menu"
173
  msgstr "Mostrar o título do post (ou da página) dentro do menu"
174
 
175
+ #: add-to-any.php:535
176
  msgid "Only show the menu when the user clicks the Share/Save button"
177
  msgstr "Mostrar apenas o menu quando o utilizador fizer um clique no botão Partilhar/Guardar"
178
 
179
+ #: add-to-any.php:541
180
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
181
  msgstr "Abrir o menu de addtoany.com num novo separador ou janela se o utilizador fizer um clique no botão Partilhar/Guardar"
182
 
183
+ #: add-to-any.php:546
184
  msgid "Additional Options"
185
  msgstr "Opções Adicionais"
186
 
187
+ #: add-to-any.php:550
188
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
189
  msgstr "Cole o código do Menu de Personalização de Estilos do Add to Any na caixa a seguir!"
190
 
191
+ #: add-to-any.php:554
192
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
193
  msgstr "Em baixo pode inserir varáveis especiais de JavaScript para aplicar a cada menu Partilhar/Guardar."
194
 
195
+ #: add-to-any.php:555
196
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
197
  msgstr "Utilizadores avançados podem querer explorar o <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">API do JavaScript</a> do Add to Any."
198
 
199
+ #: add-to-any.php:561
200
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
201
  msgstr "<strong>Nota</strong>: Se está a adicionar novo código, tenha cuidado para não sobrescrever (apagar) acidentalmente qualquer código existente.</label>"
202
 
203
+ #: add-to-any.php:568
204
  msgid "Save Changes"
205
  msgstr "Guardar alterações"
206
 
207
+ #: add-to-any.php:573
208
  msgid "Like this plugin?"
209
  msgstr "Gosta deste plugin?"
210
 
211
+ #: add-to-any.php:574
212
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
213
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Atribua-lhe uma boa pontuação</a> no WordPress.org."
214
 
215
+ #: add-to-any.php:575
216
  msgid "<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\">Share it</a> with your friends."
217
  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."
218
 
219
+ #: add-to-any.php:577
220
  msgid "Need support?"
221
  msgstr "Precisa de ajuda?"
222
 
223
+ #: add-to-any.php:578
224
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
225
  msgstr "Consulte a página de <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ's</a>."
226
 
227
+ #: add-to-any.php:579
228
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
229
  msgstr "Procurar nos <a href=\"http://wordpress.org/tags/add-to-any\">fóruns</a> de ajuda."
230
 
231
+ #: add-to-any.php:686
232
  msgid "Add/Remove Services"
233
  msgstr "Adicionar/Remover Serviços"
234
 
235
+ #: add-to-any.php:732
236
  msgid "Share/Save"
237
  msgstr "Partilhar/Guardar"
238
 
239
+ #: add-to-any.php:733
240
  msgid "Share/Save Buttons"
241
  msgstr "Botões Partilhar/Guardar"
242
 
languages/add-to-any-zh_CN.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-07-14 21:23-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: \n"
@@ -16,232 +16,233 @@ msgstr ""
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: add-to-any.php:185
20
  msgid "Share"
21
  msgstr "分享"
22
 
23
- #: add-to-any.php:186
24
  msgid "Save"
25
  msgstr "收藏"
26
 
27
- #: add-to-any.php:187
28
  msgid "Subscribe"
29
  msgstr "订阅"
30
 
31
- #: add-to-any.php:188
32
  msgid "E-mail"
33
  msgstr "电子邮件"
34
 
35
- #: add-to-any.php:189
36
  msgid "Bookmark"
37
  msgstr "书签"
38
 
39
- #: add-to-any.php:190
40
  msgid "Show all"
41
  msgstr "显示全部服务"
42
 
43
- #: add-to-any.php:191
44
  msgid "Show less"
45
  msgstr "显示部分服务"
46
 
47
- #: add-to-any.php:192
48
  msgid "Find service(s)"
49
  msgstr "查找服务"
50
 
51
- #: add-to-any.php:193
52
  msgid "Instantly find any service to add to"
53
  msgstr "动态查找任何用以添加的服务"
54
 
55
- #: add-to-any.php:194
56
  msgid "Powered by"
57
  msgstr "Powered by"
58
 
59
- #: add-to-any.php:195
60
  msgid "Share via e-mail"
61
  msgstr "通过电子邮件分享"
62
 
63
- #: add-to-any.php:196
64
  msgid "Subscribe via e-mail"
65
  msgstr "通过电子邮件订阅"
66
 
67
- #: add-to-any.php:197
68
  msgid "Bookmark in your browser"
69
  msgstr "添加为浏览器书签"
70
 
71
- #: add-to-any.php:198
72
  #, fuzzy
73
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
74
  msgstr "按下 [Ctrl+D] 或 [Cmd+D] 将本页加为书签"
75
 
76
- #: add-to-any.php:199
77
  msgid "Add to your favorites"
78
  msgstr "添加至收藏夹"
79
 
80
- #: add-to-any.php:200
81
  msgid "Send from any e-mail address or e-mail program"
82
  msgstr "从任何电子邮件地址或电子邮件程序发送"
83
 
84
- #: add-to-any.php:201
85
  msgid "E-mail program"
86
  msgstr "电子邮件程序"
87
 
88
- #: add-to-any.php:226
89
  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."
90
  msgstr ""
91
 
92
- #: add-to-any.php:375
93
  msgid "Settings saved."
94
  msgstr "设置已保存"
95
 
96
- #: add-to-any.php:386
97
  msgid "Add to Any: Share/Save "
98
  msgstr "Add to Any: 分享/收藏"
99
 
100
- #: add-to-any.php:386
101
- #: add-to-any.php:739
 
102
  msgid "Settings"
103
  msgstr "设置"
104
 
105
- #: add-to-any.php:396
106
  msgid "Standalone Services"
107
  msgstr ""
108
 
109
- #: add-to-any.php:401
110
  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."
111
  msgstr ""
112
 
113
- #: add-to-any.php:420
114
  msgid "Button"
115
  msgstr "按钮"
116
 
117
- #: add-to-any.php:459
118
  msgid "Image URL"
119
  msgstr "图片 URL"
120
 
121
- #: add-to-any.php:466
122
  msgid "Text only"
123
  msgstr "仅用文字"
124
 
125
- #: add-to-any.php:474
126
  #, fuzzy
127
  msgid "Placement"
128
  msgstr "按钮位置"
129
 
130
- #: add-to-any.php:483
131
  msgid "Display Share/Save button at the bottom of posts"
132
  msgstr "在文章底部显示 分享/收藏 按钮"
133
 
134
- #: add-to-any.php:490
135
  msgid "Display Share/Save button at the bottom of posts on the front page"
136
  msgstr "在首页的文章底部显示 分享/收藏 按钮"
137
 
138
- #: add-to-any.php:497
139
  msgid "Display Share/Save button at the bottom of posts in the feed"
140
  msgstr "在 Feed 的文章底部显示 分享/收藏 按钮"
141
 
142
- #: add-to-any.php:501
143
  msgid "Display Share/Save button at the bottom of pages"
144
  msgstr "在页面底部显示 分享/收藏 按钮"
145
 
146
- #: add-to-any.php:505
147
  #, fuzzy
148
  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>)"
149
  msgstr "如果不选,请确定将以下代码置入于 <a href=\"theme-editor.php\">您的模板页面</a> 中 (包括 <code>index.php</code>,<code>single.php</code>,与/或 <code>page.php</code>)"
150
 
151
- #: add-to-any.php:514
152
  msgid "Menu Style"
153
  msgstr "菜单风格"
154
 
155
- #: add-to-any.php:516
156
  msgid "Using Add to Any'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."
157
  msgstr "使用 Add to Any 的菜单风格设置器,您可以自定义您的 分享/收藏 菜单的颜色!完成后,请将生成的代码粘贴于下方 <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">附加选项</a> 框内。"
158
 
159
- #: add-to-any.php:518
160
  msgid "Open the Add to Any Menu Styler in a new window"
161
  msgstr "在新窗口中打开 Add to Any 菜单风格设置器"
162
 
163
- #: add-to-any.php:520
164
  msgid "Open Menu Styler"
165
  msgstr "打开菜单风格设置器"
166
 
167
- #: add-to-any.php:525
168
  msgid "Menu Options"
169
  msgstr "菜单选项"
170
 
171
- #: add-to-any.php:530
172
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
173
  msgstr "菜单显示时隐藏与菜单相交的嵌入式对象(Flash,视频,等) "
174
 
175
- #: add-to-any.php:535
176
  msgid "Show the title of the post (or page) within the menu"
177
  msgstr "菜单中显示文章(或页面)的标题"
178
 
179
- #: add-to-any.php:542
180
  msgid "Only show the menu when the user clicks the Share/Save button"
181
  msgstr "仅当用户点击 分享/收藏 按钮时显示菜单"
182
 
183
- #: add-to-any.php:548
184
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
185
  msgstr "如用户点击 分享/收藏 按钮,在新标签页或新窗口中打开 addtoany.com 菜单页面"
186
 
187
- #: add-to-any.php:553
188
  msgid "Additional Options"
189
  msgstr "附加选项"
190
 
191
- #: add-to-any.php:557
192
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
193
  msgstr "粘贴 Add to Any 菜单风格设置器生成的代码于下方框内!"
194
 
195
- #: add-to-any.php:561
196
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
197
  msgstr "您可以设置特殊 JavaScript 变量以应用于全部 分享/收藏 菜单。"
198
 
199
- #: add-to-any.php:562
200
  #, fuzzy
201
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
202
  msgstr "高级用户可能希望尝试 Add to Any 的 <a href=\"http://www.addtoany.com/buttons/api/\">JavaScript API</a> 所生成的代码。"
203
 
204
- #: add-to-any.php:568
205
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
206
  msgstr "<strong>注意</strong>: 如果您打算添加新代码,请小心不要意外覆盖任何先前代码。</label>"
207
 
208
- #: add-to-any.php:575
209
  msgid "Save Changes"
210
  msgstr "保存更改"
211
 
212
- #: add-to-any.php:580
213
  msgid "Like this plugin?"
214
  msgstr ""
215
 
216
- #: add-to-any.php:581
217
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
218
  msgstr ""
219
 
220
- #: add-to-any.php:582
221
  msgid "<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\">Share it</a> with your friends."
222
  msgstr ""
223
 
224
- #: add-to-any.php:584
225
  msgid "Need support?"
226
  msgstr ""
227
 
228
- #: add-to-any.php:585
229
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
230
  msgstr ""
231
 
232
- #: add-to-any.php:586
233
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
234
  msgstr ""
235
 
236
- #: add-to-any.php:693
237
  msgid "Add/Remove Services"
238
  msgstr ""
239
 
240
- #: add-to-any.php:739
241
  msgid "Share/Save"
242
  msgstr "分享/收藏"
243
 
244
- #: add-to-any.php:740
245
  msgid "Share/Save Buttons"
246
  msgstr "分享/收藏 按钮"
247
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-07-23 18:16-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: \n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: add-to-any.php:177
20
  msgid "Share"
21
  msgstr "分享"
22
 
23
+ #: add-to-any.php:178
24
  msgid "Save"
25
  msgstr "收藏"
26
 
27
+ #: add-to-any.php:179
28
  msgid "Subscribe"
29
  msgstr "订阅"
30
 
31
+ #: add-to-any.php:180
32
  msgid "E-mail"
33
  msgstr "电子邮件"
34
 
35
+ #: add-to-any.php:181
36
  msgid "Bookmark"
37
  msgstr "书签"
38
 
39
+ #: add-to-any.php:182
40
  msgid "Show all"
41
  msgstr "显示全部服务"
42
 
43
+ #: add-to-any.php:183
44
  msgid "Show less"
45
  msgstr "显示部分服务"
46
 
47
+ #: add-to-any.php:184
48
  msgid "Find service(s)"
49
  msgstr "查找服务"
50
 
51
+ #: add-to-any.php:185
52
  msgid "Instantly find any service to add to"
53
  msgstr "动态查找任何用以添加的服务"
54
 
55
+ #: add-to-any.php:186
56
  msgid "Powered by"
57
  msgstr "Powered by"
58
 
59
+ #: add-to-any.php:187
60
  msgid "Share via e-mail"
61
  msgstr "通过电子邮件分享"
62
 
63
+ #: add-to-any.php:188
64
  msgid "Subscribe via e-mail"
65
  msgstr "通过电子邮件订阅"
66
 
67
+ #: add-to-any.php:189
68
  msgid "Bookmark in your browser"
69
  msgstr "添加为浏览器书签"
70
 
71
+ #: add-to-any.php:190
72
  #, fuzzy
73
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
74
  msgstr "按下 [Ctrl+D] 或 [Cmd+D] 将本页加为书签"
75
 
76
+ #: add-to-any.php:191
77
  msgid "Add to your favorites"
78
  msgstr "添加至收藏夹"
79
 
80
+ #: add-to-any.php:192
81
  msgid "Send from any e-mail address or e-mail program"
82
  msgstr "从任何电子邮件地址或电子邮件程序发送"
83
 
84
+ #: add-to-any.php:193
85
  msgid "E-mail program"
86
  msgstr "电子邮件程序"
87
 
88
+ #: add-to-any.php:218
89
  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."
90
  msgstr ""
91
 
92
+ #: add-to-any.php:368
93
  msgid "Settings saved."
94
  msgstr "设置已保存"
95
 
96
+ #: add-to-any.php:379
97
  msgid "Add to Any: Share/Save "
98
  msgstr "Add to Any: 分享/收藏"
99
 
100
+ #: add-to-any.php:379
101
+ #: add-to-any.php:732
102
+ #: add-to-any.php:753
103
  msgid "Settings"
104
  msgstr "设置"
105
 
106
+ #: add-to-any.php:389
107
  msgid "Standalone Services"
108
  msgstr ""
109
 
110
+ #: add-to-any.php:394
111
  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."
112
  msgstr ""
113
 
114
+ #: add-to-any.php:413
115
  msgid "Button"
116
  msgstr "按钮"
117
 
118
+ #: add-to-any.php:452
119
  msgid "Image URL"
120
  msgstr "图片 URL"
121
 
122
+ #: add-to-any.php:459
123
  msgid "Text only"
124
  msgstr "仅用文字"
125
 
126
+ #: add-to-any.php:467
127
  #, fuzzy
128
  msgid "Placement"
129
  msgstr "按钮位置"
130
 
131
+ #: add-to-any.php:476
132
  msgid "Display Share/Save button at the bottom of posts"
133
  msgstr "在文章底部显示 分享/收藏 按钮"
134
 
135
+ #: add-to-any.php:483
136
  msgid "Display Share/Save button at the bottom of posts on the front page"
137
  msgstr "在首页的文章底部显示 分享/收藏 按钮"
138
 
139
+ #: add-to-any.php:490
140
  msgid "Display Share/Save button at the bottom of posts in the feed"
141
  msgstr "在 Feed 的文章底部显示 分享/收藏 按钮"
142
 
143
+ #: add-to-any.php:494
144
  msgid "Display Share/Save button at the bottom of pages"
145
  msgstr "在页面底部显示 分享/收藏 按钮"
146
 
147
+ #: add-to-any.php:498
148
  #, fuzzy
149
  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>)"
150
  msgstr "如果不选,请确定将以下代码置入于 <a href=\"theme-editor.php\">您的模板页面</a> 中 (包括 <code>index.php</code>,<code>single.php</code>,与/或 <code>page.php</code>)"
151
 
152
+ #: add-to-any.php:507
153
  msgid "Menu Style"
154
  msgstr "菜单风格"
155
 
156
+ #: add-to-any.php:509
157
  msgid "Using Add to Any'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."
158
  msgstr "使用 Add to Any 的菜单风格设置器,您可以自定义您的 分享/收藏 菜单的颜色!完成后,请将生成的代码粘贴于下方 <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">附加选项</a> 框内。"
159
 
160
+ #: add-to-any.php:511
161
  msgid "Open the Add to Any Menu Styler in a new window"
162
  msgstr "在新窗口中打开 Add to Any 菜单风格设置器"
163
 
164
+ #: add-to-any.php:513
165
  msgid "Open Menu Styler"
166
  msgstr "打开菜单风格设置器"
167
 
168
+ #: add-to-any.php:518
169
  msgid "Menu Options"
170
  msgstr "菜单选项"
171
 
172
+ #: add-to-any.php:523
173
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
174
  msgstr "菜单显示时隐藏与菜单相交的嵌入式对象(Flash,视频,等) "
175
 
176
+ #: add-to-any.php:528
177
  msgid "Show the title of the post (or page) within the menu"
178
  msgstr "菜单中显示文章(或页面)的标题"
179
 
180
+ #: add-to-any.php:535
181
  msgid "Only show the menu when the user clicks the Share/Save button"
182
  msgstr "仅当用户点击 分享/收藏 按钮时显示菜单"
183
 
184
+ #: add-to-any.php:541
185
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
186
  msgstr "如用户点击 分享/收藏 按钮,在新标签页或新窗口中打开 addtoany.com 菜单页面"
187
 
188
+ #: add-to-any.php:546
189
  msgid "Additional Options"
190
  msgstr "附加选项"
191
 
192
+ #: add-to-any.php:550
193
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
194
  msgstr "粘贴 Add to Any 菜单风格设置器生成的代码于下方框内!"
195
 
196
+ #: add-to-any.php:554
197
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
198
  msgstr "您可以设置特殊 JavaScript 变量以应用于全部 分享/收藏 菜单。"
199
 
200
+ #: add-to-any.php:555
201
  #, fuzzy
202
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
203
  msgstr "高级用户可能希望尝试 Add to Any 的 <a href=\"http://www.addtoany.com/buttons/api/\">JavaScript API</a> 所生成的代码。"
204
 
205
+ #: add-to-any.php:561
206
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
207
  msgstr "<strong>注意</strong>: 如果您打算添加新代码,请小心不要意外覆盖任何先前代码。</label>"
208
 
209
+ #: add-to-any.php:568
210
  msgid "Save Changes"
211
  msgstr "保存更改"
212
 
213
+ #: add-to-any.php:573
214
  msgid "Like this plugin?"
215
  msgstr ""
216
 
217
+ #: add-to-any.php:574
218
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
219
  msgstr ""
220
 
221
+ #: add-to-any.php:575
222
  msgid "<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\">Share it</a> with your friends."
223
  msgstr ""
224
 
225
+ #: add-to-any.php:577
226
  msgid "Need support?"
227
  msgstr ""
228
 
229
+ #: add-to-any.php:578
230
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
231
  msgstr ""
232
 
233
+ #: add-to-any.php:579
234
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
235
  msgstr ""
236
 
237
+ #: add-to-any.php:686
238
  msgid "Add/Remove Services"
239
  msgstr ""
240
 
241
+ #: add-to-any.php:732
242
  msgid "Share/Save"
243
  msgstr "分享/收藏"
244
 
245
+ #: add-to-any.php:733
246
  msgid "Share/Save Buttons"
247
  msgstr "分享/收藏 按钮"
248
 
languages/add-to-any.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-07-14 21:23-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: \n"
@@ -13,228 +13,229 @@ msgstr ""
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: add-to-any.php:185
17
  msgid "Share"
18
  msgstr ""
19
 
20
- #: add-to-any.php:186
21
  msgid "Save"
22
  msgstr ""
23
 
24
- #: add-to-any.php:187
25
  msgid "Subscribe"
26
  msgstr ""
27
 
28
- #: add-to-any.php:188
29
  msgid "E-mail"
30
  msgstr ""
31
 
32
- #: add-to-any.php:189
33
  msgid "Bookmark"
34
  msgstr ""
35
 
36
- #: add-to-any.php:190
37
  msgid "Show all"
38
  msgstr ""
39
 
40
- #: add-to-any.php:191
41
  msgid "Show less"
42
  msgstr ""
43
 
44
- #: add-to-any.php:192
45
  msgid "Find service(s)"
46
  msgstr ""
47
 
48
- #: add-to-any.php:193
49
  msgid "Instantly find any service to add to"
50
  msgstr ""
51
 
52
- #: add-to-any.php:194
53
  msgid "Powered by"
54
  msgstr ""
55
 
56
- #: add-to-any.php:195
57
  msgid "Share via e-mail"
58
  msgstr ""
59
 
60
- #: add-to-any.php:196
61
  msgid "Subscribe via e-mail"
62
  msgstr ""
63
 
64
- #: add-to-any.php:197
65
  msgid "Bookmark in your browser"
66
  msgstr ""
67
 
68
- #: add-to-any.php:198
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr ""
71
 
72
- #: add-to-any.php:199
73
  msgid "Add to your favorites"
74
  msgstr ""
75
 
76
- #: add-to-any.php:200
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr ""
79
 
80
- #: add-to-any.php:201
81
  msgid "E-mail program"
82
  msgstr ""
83
 
84
- #: add-to-any.php:226
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 ""
87
 
88
- #: add-to-any.php:375
89
  msgid "Settings saved."
90
  msgstr ""
91
 
92
- #: add-to-any.php:386
93
  msgid "Add to Any: Share/Save "
94
  msgstr ""
95
 
96
- #: add-to-any.php:386
97
- #: add-to-any.php:739
 
98
  msgid "Settings"
99
  msgstr ""
100
 
101
- #: add-to-any.php:396
102
  msgid "Standalone Services"
103
  msgstr ""
104
 
105
- #: add-to-any.php:401
106
  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."
107
  msgstr ""
108
 
109
- #: add-to-any.php:420
110
  msgid "Button"
111
  msgstr ""
112
 
113
- #: add-to-any.php:459
114
  msgid "Image URL"
115
  msgstr ""
116
 
117
- #: add-to-any.php:466
118
  msgid "Text only"
119
  msgstr ""
120
 
121
- #: add-to-any.php:474
122
  msgid "Placement"
123
  msgstr ""
124
 
125
- #: add-to-any.php:483
126
  msgid "Display Share/Save button at the bottom of posts"
127
  msgstr ""
128
 
129
- #: add-to-any.php:490
130
  msgid "Display Share/Save button at the bottom of posts on the front page"
131
  msgstr ""
132
 
133
- #: add-to-any.php:497
134
  msgid "Display Share/Save button at the bottom of posts in the feed"
135
  msgstr ""
136
 
137
- #: add-to-any.php:501
138
  msgid "Display Share/Save button at the bottom of pages"
139
  msgstr ""
140
 
141
- #: add-to-any.php:505
142
  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>)"
143
  msgstr ""
144
 
145
- #: add-to-any.php:514
146
  msgid "Menu Style"
147
  msgstr ""
148
 
149
- #: add-to-any.php:516
150
  msgid "Using Add to Any'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."
151
  msgstr ""
152
 
153
- #: add-to-any.php:518
154
  msgid "Open the Add to Any Menu Styler in a new window"
155
  msgstr ""
156
 
157
- #: add-to-any.php:520
158
  msgid "Open Menu Styler"
159
  msgstr ""
160
 
161
- #: add-to-any.php:525
162
  msgid "Menu Options"
163
  msgstr ""
164
 
165
- #: add-to-any.php:530
166
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
167
  msgstr ""
168
 
169
- #: add-to-any.php:535
170
  msgid "Show the title of the post (or page) within the menu"
171
  msgstr ""
172
 
173
- #: add-to-any.php:542
174
  msgid "Only show the menu when the user clicks the Share/Save button"
175
  msgstr ""
176
 
177
- #: add-to-any.php:548
178
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
179
  msgstr ""
180
 
181
- #: add-to-any.php:553
182
  msgid "Additional Options"
183
  msgstr ""
184
 
185
- #: add-to-any.php:557
186
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
187
  msgstr ""
188
 
189
- #: add-to-any.php:561
190
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
191
  msgstr ""
192
 
193
- #: add-to-any.php:562
194
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
195
  msgstr ""
196
 
197
- #: add-to-any.php:568
198
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
199
  msgstr ""
200
 
201
- #: add-to-any.php:575
202
  msgid "Save Changes"
203
  msgstr ""
204
 
205
- #: add-to-any.php:580
206
  msgid "Like this plugin?"
207
  msgstr ""
208
 
209
- #: add-to-any.php:581
210
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
211
  msgstr ""
212
 
213
- #: add-to-any.php:582
214
  msgid "<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\">Share it</a> with your friends."
215
  msgstr ""
216
 
217
- #: add-to-any.php:584
218
  msgid "Need support?"
219
  msgstr ""
220
 
221
- #: add-to-any.php:585
222
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
223
  msgstr ""
224
 
225
- #: add-to-any.php:586
226
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
227
  msgstr ""
228
 
229
- #: add-to-any.php:693
230
  msgid "Add/Remove Services"
231
  msgstr ""
232
 
233
- #: add-to-any.php:739
234
  msgid "Share/Save"
235
  msgstr ""
236
 
237
- #: add-to-any.php:740
238
  msgid "Share/Save Buttons"
239
  msgstr ""
240
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-07-23 18:16-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: \n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
+ #: add-to-any.php:177
17
  msgid "Share"
18
  msgstr ""
19
 
20
+ #: add-to-any.php:178
21
  msgid "Save"
22
  msgstr ""
23
 
24
+ #: add-to-any.php:179
25
  msgid "Subscribe"
26
  msgstr ""
27
 
28
+ #: add-to-any.php:180
29
  msgid "E-mail"
30
  msgstr ""
31
 
32
+ #: add-to-any.php:181
33
  msgid "Bookmark"
34
  msgstr ""
35
 
36
+ #: add-to-any.php:182
37
  msgid "Show all"
38
  msgstr ""
39
 
40
+ #: add-to-any.php:183
41
  msgid "Show less"
42
  msgstr ""
43
 
44
+ #: add-to-any.php:184
45
  msgid "Find service(s)"
46
  msgstr ""
47
 
48
+ #: add-to-any.php:185
49
  msgid "Instantly find any service to add to"
50
  msgstr ""
51
 
52
+ #: add-to-any.php:186
53
  msgid "Powered by"
54
  msgstr ""
55
 
56
+ #: add-to-any.php:187
57
  msgid "Share via e-mail"
58
  msgstr ""
59
 
60
+ #: add-to-any.php:188
61
  msgid "Subscribe via e-mail"
62
  msgstr ""
63
 
64
+ #: add-to-any.php:189
65
  msgid "Bookmark in your browser"
66
  msgstr ""
67
 
68
+ #: add-to-any.php:190
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr ""
71
 
72
+ #: add-to-any.php:191
73
  msgid "Add to your favorites"
74
  msgstr ""
75
 
76
+ #: add-to-any.php:192
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr ""
79
 
80
+ #: add-to-any.php:193
81
  msgid "E-mail program"
82
  msgstr ""
83
 
84
+ #: add-to-any.php:218
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 ""
87
 
88
+ #: add-to-any.php:368
89
  msgid "Settings saved."
90
  msgstr ""
91
 
92
+ #: add-to-any.php:379
93
  msgid "Add to Any: Share/Save "
94
  msgstr ""
95
 
96
+ #: add-to-any.php:379
97
+ #: add-to-any.php:732
98
+ #: add-to-any.php:753
99
  msgid "Settings"
100
  msgstr ""
101
 
102
+ #: add-to-any.php:389
103
  msgid "Standalone Services"
104
  msgstr ""
105
 
106
+ #: add-to-any.php:394
107
  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."
108
  msgstr ""
109
 
110
+ #: add-to-any.php:413
111
  msgid "Button"
112
  msgstr ""
113
 
114
+ #: add-to-any.php:452
115
  msgid "Image URL"
116
  msgstr ""
117
 
118
+ #: add-to-any.php:459
119
  msgid "Text only"
120
  msgstr ""
121
 
122
+ #: add-to-any.php:467
123
  msgid "Placement"
124
  msgstr ""
125
 
126
+ #: add-to-any.php:476
127
  msgid "Display Share/Save button at the bottom of posts"
128
  msgstr ""
129
 
130
+ #: add-to-any.php:483
131
  msgid "Display Share/Save button at the bottom of posts on the front page"
132
  msgstr ""
133
 
134
+ #: add-to-any.php:490
135
  msgid "Display Share/Save button at the bottom of posts in the feed"
136
  msgstr ""
137
 
138
+ #: add-to-any.php:494
139
  msgid "Display Share/Save button at the bottom of pages"
140
  msgstr ""
141
 
142
+ #: add-to-any.php:498
143
  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>)"
144
  msgstr ""
145
 
146
+ #: add-to-any.php:507
147
  msgid "Menu Style"
148
  msgstr ""
149
 
150
+ #: add-to-any.php:509
151
  msgid "Using Add to Any'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."
152
  msgstr ""
153
 
154
+ #: add-to-any.php:511
155
  msgid "Open the Add to Any Menu Styler in a new window"
156
  msgstr ""
157
 
158
+ #: add-to-any.php:513
159
  msgid "Open Menu Styler"
160
  msgstr ""
161
 
162
+ #: add-to-any.php:518
163
  msgid "Menu Options"
164
  msgstr ""
165
 
166
+ #: add-to-any.php:523
167
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
168
  msgstr ""
169
 
170
+ #: add-to-any.php:528
171
  msgid "Show the title of the post (or page) within the menu"
172
  msgstr ""
173
 
174
+ #: add-to-any.php:535
175
  msgid "Only show the menu when the user clicks the Share/Save button"
176
  msgstr ""
177
 
178
+ #: add-to-any.php:541
179
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
180
  msgstr ""
181
 
182
+ #: add-to-any.php:546
183
  msgid "Additional Options"
184
  msgstr ""
185
 
186
+ #: add-to-any.php:550
187
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
188
  msgstr ""
189
 
190
+ #: add-to-any.php:554
191
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
192
  msgstr ""
193
 
194
+ #: add-to-any.php:555
195
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
196
  msgstr ""
197
 
198
+ #: add-to-any.php:561
199
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
200
  msgstr ""
201
 
202
+ #: add-to-any.php:568
203
  msgid "Save Changes"
204
  msgstr ""
205
 
206
+ #: add-to-any.php:573
207
  msgid "Like this plugin?"
208
  msgstr ""
209
 
210
+ #: add-to-any.php:574
211
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
212
  msgstr ""
213
 
214
+ #: add-to-any.php:575
215
  msgid "<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\">Share it</a> with your friends."
216
  msgstr ""
217
 
218
+ #: add-to-any.php:577
219
  msgid "Need support?"
220
  msgstr ""
221
 
222
+ #: add-to-any.php:578
223
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
224
  msgstr ""
225
 
226
+ #: add-to-any.php:579
227
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
228
  msgstr ""
229
 
230
+ #: add-to-any.php:686
231
  msgid "Add/Remove Services"
232
  msgstr ""
233
 
234
+ #: add-to-any.php:732
235
  msgid "Share/Save"
236
  msgstr ""
237
 
238
+ #: add-to-any.php:733
239
  msgid "Share/Save Buttons"
240
  msgstr ""
241