AddToAny Share Buttons - Version 0.9.9.7.7

Version Description

Download this release

Release Info

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

Code changes from version 0.9.9.7.6 to 0.9.9.7.7

README.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: micropat
3
  Tags: sharing, share, sharethis, bookmarking, social, social bookmarking, social bookmarks, bookmark, bookmarks, save, Post, posts, page, pages, images, image, admin, statistics, stats, links, plugin, widget, email, e-mail, seo, button, delicious, google buzz, buzz, google, digg, reddit, facebook, facebook like, like, myspace, twitter, tweet, messenger, stumbleupon, technorati, sexybookmarks, sociable, sharedaddy, icon, icons, wpmu, addtoany, add
4
  Requires at least: 2.8
5
  Tested up to: 3.1
6
- Stable tag: 0.9.9.7.6
7
 
8
  Help people share, bookmark, and email your posts & pages using any service, such as Facebook, Twitter, Google Buzz, Digg and many more.
9
 
@@ -177,6 +177,12 @@ Please read <a href="http://www.addtoany.com/buttons/customize/show_over_embeds"
177
 
178
  == Changelog ==
179
 
 
 
 
 
 
 
180
  = .9.9.7.6 =
181
  * Add option: Display at the top of posts
182
  * Add option: Display at the top and bottom of posts
3
  Tags: sharing, share, sharethis, bookmarking, social, social bookmarking, social bookmarks, bookmark, bookmarks, save, Post, posts, page, pages, images, image, admin, statistics, stats, links, plugin, widget, email, e-mail, seo, button, delicious, google buzz, buzz, google, digg, reddit, facebook, facebook like, like, myspace, twitter, tweet, messenger, stumbleupon, technorati, sexybookmarks, sociable, sharedaddy, icon, icons, wpmu, addtoany, add
4
  Requires at least: 2.8
5
  Tested up to: 3.1
6
+ Stable tag: 0.9.9.7.7
7
 
8
  Help people share, bookmark, and email your posts & pages using any service, such as Facebook, Twitter, Google Buzz, Digg and many more.
9
 
177
 
178
  == Changelog ==
179
 
180
+ = .9.9.7.7 =
181
+ * Fix <a href="http://wordpress.org/support/topic/plugin-addtoany-sharebookmarkemail-button-white-space-around-twitter-icon">IE iframe transparency issue</a> for Facebook Like & Twitter Tweet buttons
182
+ * Note: Extra IE conditional markup added to maintain W3C validity
183
+ * Remove stray colon character appended to Twitter Tweet button URL
184
+ * Italian translation update (by <a href="http://gidibao.net/">Gianni</a>)
185
+
186
  = .9.9.7.6 =
187
  * Add option: Display at the top of posts
188
  * Add option: Display at the top and bottom of posts
add-to-any.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: AddToAny: Share/Bookmark/Email Button
4
  Plugin URI: http://www.addtoany.com/
5
  Description: Help people share, bookmark, and email your posts & pages using any service, such as Facebook, Twitter, Google Buzz, Digg and many more. [<a href="options-general.php?page=add-to-any.php">Settings</a>]
6
- Version: .9.9.7.6
7
  Author: AddToAny
8
  Author URI: http://www.addtoany.com/
9
  */
@@ -291,10 +291,19 @@ function ADDTOANY_SHARE_SAVE_SPECIAL($special_service_code, $args = array() ) {
291
  $args = array_merge($args, A2A_SHARE_SAVE_link_vars($linkname, $linkurl)); // linkname_enc, etc.
292
  extract( $args );
293
 
 
 
 
 
 
 
 
 
 
294
  if ($special_service_code == 'facebook_like')
295
- $special_html = '<iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=' . $linkurl_enc . '&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20" frameborder="0" scrolling="no" style="border:none;overflow:hidden;width:90px;height:20px"></iframe>';
296
  elseif ($special_service_code == 'twitter_tweet')
297
- $special_html = '<iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=' . $linkurl_enc . '&amp;counturl=' . $linkurl_enc . '&amp;count=horizontal&amp;text=' . $linkname_enc . ': " frameborder="0" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe>';
298
 
299
  if ( $output_later )
300
  return $special_html;
3
  Plugin Name: AddToAny: Share/Bookmark/Email Button
4
  Plugin URI: http://www.addtoany.com/
5
  Description: Help people share, bookmark, and email your posts & pages using any service, such as Facebook, Twitter, Google Buzz, Digg and many more. [<a href="options-general.php?page=add-to-any.php">Settings</a>]
6
+ Version: .9.9.7.7
7
  Author: AddToAny
8
  Author URI: http://www.addtoany.com/
9
  */
291
  $args = array_merge($args, A2A_SHARE_SAVE_link_vars($linkname, $linkurl)); // linkname_enc, etc.
292
  extract( $args );
293
 
294
+ $iframe_template_begin = '<iframe';
295
+ $iframe_template_end = ' class="addtoany_special_service %1$s" src="%2$s" frameborder="0" scrolling="no" style="border:none;overflow:hidden;width:%3$dpx;height:20px"></iframe>';
296
+ $iframe_template = $iframe_template_begin . $iframe_template_end;
297
+
298
+ // IE ridiculousness to support transparent iframes while maintaining W3C validity
299
+ $iframe_template = '<!--[if IE]>'
300
+ . $iframe_template_begin . ' allowTransparency="true"' . $iframe_template_end
301
+ . '<![endif]--><!--[if !IE]>-->' . $iframe_template . '<!--<![endif]-->';
302
+
303
  if ($special_service_code == 'facebook_like')
304
+ $special_html = sprintf($iframe_template, $special_service_code, 'http://www.facebook.com/plugins/like.php?href=' . $linkurl_enc . '&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20', 90);
305
  elseif ($special_service_code == 'twitter_tweet')
306
+ $special_html = sprintf($iframe_template, $special_service_code, 'http://platform.twitter.com/widgets/tweet_button.html?url=' . $linkurl_enc . '&amp;counturl=' . $linkurl_enc . '&amp;count=horizontal&amp;text=' . $linkname_enc, 55);
307
 
308
  if ( $output_later )
309
  return $special_html;
languages/add-to-any-ar.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: 2011-02-16 00:10-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
@@ -13,281 +13,281 @@ msgstr ""
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: add-to-any.php:313
17
  msgid "Share"
18
  msgstr "نشر"
19
 
20
- #: add-to-any.php:314
21
  msgid "Save"
22
  msgstr "حفظ"
23
 
24
- #: add-to-any.php:315
25
  msgid "Subscribe"
26
  msgstr "تابع"
27
 
28
- #: add-to-any.php:316
29
  msgid "E-mail"
30
  msgstr "رسالة بريدية"
31
 
32
- #: add-to-any.php:317
33
  msgid "Bookmark"
34
  msgstr "مفضلة"
35
 
36
- #: add-to-any.php:318
37
  msgid "Show all"
38
  msgstr "عرض الكل"
39
 
40
- #: add-to-any.php:319
41
  msgid "Show less"
42
  msgstr "عرض أقل"
43
 
44
- #: add-to-any.php:320
45
  msgid "Find service(s)"
46
  msgstr "أبحث عن خدمة"
47
 
48
- #: add-to-any.php:321
49
  msgid "Instantly find any service to add to"
50
  msgstr ""
51
 
52
- #: add-to-any.php:322
53
  msgid "Powered by"
54
  msgstr "بواسطة"
55
 
56
- #: add-to-any.php:323
57
  msgid "Share via e-mail"
58
  msgstr "أرسال على البريد"
59
 
60
- #: add-to-any.php:324
61
  msgid "Subscribe via e-mail"
62
  msgstr "تابع عبر البريد"
63
 
64
- #: add-to-any.php:325
65
  msgid "Bookmark in your browser"
66
  msgstr "أضف للمفضلة بالمتصفح"
67
 
68
- #: add-to-any.php:326
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr "أضغط Ctrl+D أو &#8984;+D لحفظ هذه الصفحة بالمفضلة"
71
 
72
- #: add-to-any.php:327
73
  msgid "Add to your favorites"
74
  msgstr "أضف لمفضلتك"
75
 
76
- #: add-to-any.php:328
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr "أرسال من اي برنامج بريد أو أي عنوان بريدي"
79
 
80
- #: add-to-any.php:329
81
  msgid "E-mail program"
82
  msgstr "برنامج بريدي"
83
 
84
- #: add-to-any.php:354
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 "تصميمك يحتاج لتعديلز لتعديل تصميمك, أستخدم <a href=\"theme-editor.php\">محرر التصميم</a> لإضافة <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> في ملف <code>footer.php</code>."
87
 
88
- #: add-to-any.php:511
89
  #, php-format
90
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
91
  msgstr ""
92
 
93
- #: add-to-any.php:645
94
- #: add-to-any.php:769
95
- #: add-to-any.php:773
96
- #: add-to-any.php:777
97
- #: add-to-any.php:781
98
- #: add-to-any.php:813
99
  msgid "Share/Bookmark"
100
  msgstr "مفضلة"
101
 
102
- #: add-to-any.php:658
103
  msgid "Settings saved."
104
  msgstr "تم حفظ الأعدادات"
105
 
106
- #: add-to-any.php:679
107
  msgid "bottom"
108
  msgstr ""
109
 
110
- #: add-to-any.php:683
111
  msgid "top"
112
  msgstr ""
113
 
114
- #: add-to-any.php:687
115
  msgid "top &amp; bottom"
116
  msgstr ""
117
 
118
- #: add-to-any.php:718
119
  msgid "AddToAny: Share/Save "
120
  msgstr "أضف إلى: نشر/حفظ"
121
 
122
- #: add-to-any.php:718
123
- #: add-to-any.php:1123
124
- #: add-to-any.php:1154
125
  msgid "Settings"
126
  msgstr "الأعدادات"
127
 
128
- #: add-to-any.php:727
129
  msgid "Standalone Services"
130
  msgstr "خدمات قائمة بذاتها"
131
 
132
- #: add-to-any.php:732
133
  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."
134
  msgstr "أختر الخدمات من الأسفل. &nbsp; أضغط لتختار الخدمة وأضغط مرة اخرى لألغائها. &nbsp; رتب الخدمات بأستخدام الفائرة."
135
 
136
- #: add-to-any.php:764
137
  msgid "Button"
138
  msgstr "زر"
139
 
140
- #: add-to-any.php:803
141
  msgid "Image URL"
142
  msgstr "رابط صورة"
143
 
144
- #: add-to-any.php:810
145
  msgid "Text only"
146
  msgstr "نص فقط"
147
 
148
- #: add-to-any.php:818
149
  msgid "Placement"
150
  msgstr "مكان العرض"
151
 
152
- #: add-to-any.php:823
153
  #, fuzzy, php-format
154
  msgid "Display at the %s of posts"
155
  msgstr "عرض زر نشر/حفظ في اخر تدويناتك"
156
 
157
- #: add-to-any.php:830
158
  #, php-format
159
  msgid "Display at the %s of post excerpts"
160
  msgstr ""
161
 
162
- #: add-to-any.php:837
163
  #, fuzzy, php-format
164
  msgid "Display at the %s of posts on the front page"
165
  msgstr "عرض زر نشر/حفظ في اخر تدويناتك بالرئيسية"
166
 
167
- #: add-to-any.php:845
168
  #, fuzzy, php-format
169
  msgid "Display at the %s of posts in the feed"
170
  msgstr "عرض زر نشر/حفظ في اخر تدويناتك بالخلاصات"
171
 
172
- #: add-to-any.php:849
173
  #, fuzzy, php-format
174
  msgid "Display at the %s of pages"
175
  msgstr "عرض زر نشر/حفظ في أخر الصفحات"
176
 
177
- #: add-to-any.php:853
178
  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>)"
179
  msgstr "إن لم تختار احد هذه الخيارات فتأكد ان تضع الكود بواسطة <a href=\"theme-editor.php\">محرر التصميم</a> (في <code>index.php</code>, <code>single.php</code>, و/أو <code>page.php</code>)"
180
 
181
- #: add-to-any.php:862
182
  msgid "Menu Style"
183
  msgstr "تصميم القائمة"
184
 
185
- #: add-to-any.php:864
186
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
187
  msgstr "أستخدم محرر تصميم أضف إلى, يمكنك تخصيص الألوان لقائمة نشر/حفظ! عند إنتهائك, تأكد من لصق الكود في مربع <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">الخيارات الخاصة</a>"
188
 
189
- #: add-to-any.php:866
190
  msgid "Open the AddToAny Menu Styler in a new window"
191
  msgstr "فتح قائمة تصميم أضف إلى في نافذة جديدة"
192
 
193
- #: add-to-any.php:868
194
  msgid "Open Menu Styler"
195
  msgstr "فتح قائمة التصميم"
196
 
197
- #: add-to-any.php:873
198
  msgid "Menu Options"
199
  msgstr "خيارات القائمة"
200
 
201
- #: add-to-any.php:878
202
  msgid "Only show the menu when the user clicks the Share/Save button"
203
  msgstr "عرض القائمة عن الضغط عليها فقط"
204
 
205
- #: add-to-any.php:883
206
  msgid "Show the title of the post (or page) within the menu"
207
  msgstr "عرض عنوان التدوينة او الصفحة في القائمة"
208
 
209
- #: add-to-any.php:888
210
  msgid "Additional Options"
211
  msgstr "خيارات خاصة"
212
 
213
- #: add-to-any.php:892
214
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
215
  msgstr "ألصق الكود من قائمة تصميم أضف إلى في هذا المربع"
216
 
217
- #: add-to-any.php:896
218
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
219
  msgstr "يمكنك ضبط متغيرات جافا سكريبت خاصة لتنفيزها على قائمة نشر/حفظ"
220
 
221
- #: add-to-any.php:897
222
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
223
  msgstr "المستخدمين المتقدمين قد يحتاجون إلى تصفح أضف إلى <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">جافا سكريبت API</a>."
224
 
225
- #: add-to-any.php:903
226
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
227
  msgstr "<strong>ملحوظة</strong>: إذا أضفت اكواد جديدة, كن حزر حتى لا تمسح اكواد قديمة.</label>"
228
 
229
- #: add-to-any.php:908
230
  #, fuzzy
231
  msgid "Advanced Options"
232
  msgstr "خيارات خاصة"
233
 
234
- #: add-to-any.php:913
235
  msgid "Use CSS stylesheet"
236
  msgstr ""
237
 
238
- #: add-to-any.php:918
239
  msgid "Cache AddToAny locally with daily cache updates"
240
  msgstr ""
241
 
242
- #: add-to-any.php:922
243
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
244
  msgstr ""
245
 
246
- #: add-to-any.php:929
247
  msgid "Save Changes"
248
  msgstr "حفظ التغيرات"
249
 
250
- #: add-to-any.php:930
251
  msgid "Are you sure you want to delete all AddToAny options?"
252
  msgstr ""
253
 
254
- #: add-to-any.php:930
255
  msgid "Reset"
256
  msgstr ""
257
 
258
- #: add-to-any.php:935
259
  msgid "Like this plugin?"
260
  msgstr "هل تحب هذه الأضافة؟"
261
 
262
- #: add-to-any.php:936
263
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
264
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">قيمها</a> في موقع WordPress.org."
265
 
266
- #: add-to-any.php:937
267
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
268
  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\">أنشرها</a> مع أصدقائك."
269
 
270
- #: add-to-any.php:939
271
  msgid "Need support?"
272
  msgstr "بحاجة إلى الدعم؟"
273
 
274
- #: add-to-any.php:940
275
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
276
  msgstr "راجع <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">الأسئلة الشائعة</a>."
277
 
278
- #: add-to-any.php:941
279
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
280
  msgstr "أبحث في <a href=\"http://wordpress.org/tags/add-to-any\">منتديات الدعم</a>."
281
 
282
- #: add-to-any.php:1066
283
  msgid "Add/Remove Services"
284
  msgstr "إضافة/ألغاء خدمات"
285
 
286
- #: add-to-any.php:1123
287
  msgid "Share/Save"
288
  msgstr "نشر/حفظ"
289
 
290
- #: add-to-any.php:1124
291
  msgid "Share/Save Buttons"
292
  msgstr "أزرار نشر/حفظ"
293
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-23 20:39-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
+ #: add-to-any.php:322
17
  msgid "Share"
18
  msgstr "نشر"
19
 
20
+ #: add-to-any.php:323
21
  msgid "Save"
22
  msgstr "حفظ"
23
 
24
+ #: add-to-any.php:324
25
  msgid "Subscribe"
26
  msgstr "تابع"
27
 
28
+ #: add-to-any.php:325
29
  msgid "E-mail"
30
  msgstr "رسالة بريدية"
31
 
32
+ #: add-to-any.php:326
33
  msgid "Bookmark"
34
  msgstr "مفضلة"
35
 
36
+ #: add-to-any.php:327
37
  msgid "Show all"
38
  msgstr "عرض الكل"
39
 
40
+ #: add-to-any.php:328
41
  msgid "Show less"
42
  msgstr "عرض أقل"
43
 
44
+ #: add-to-any.php:329
45
  msgid "Find service(s)"
46
  msgstr "أبحث عن خدمة"
47
 
48
+ #: add-to-any.php:330
49
  msgid "Instantly find any service to add to"
50
  msgstr ""
51
 
52
+ #: add-to-any.php:331
53
  msgid "Powered by"
54
  msgstr "بواسطة"
55
 
56
+ #: add-to-any.php:332
57
  msgid "Share via e-mail"
58
  msgstr "أرسال على البريد"
59
 
60
+ #: add-to-any.php:333
61
  msgid "Subscribe via e-mail"
62
  msgstr "تابع عبر البريد"
63
 
64
+ #: add-to-any.php:334
65
  msgid "Bookmark in your browser"
66
  msgstr "أضف للمفضلة بالمتصفح"
67
 
68
+ #: add-to-any.php:335
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr "أضغط Ctrl+D أو &#8984;+D لحفظ هذه الصفحة بالمفضلة"
71
 
72
+ #: add-to-any.php:336
73
  msgid "Add to your favorites"
74
  msgstr "أضف لمفضلتك"
75
 
76
+ #: add-to-any.php:337
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr "أرسال من اي برنامج بريد أو أي عنوان بريدي"
79
 
80
+ #: add-to-any.php:338
81
  msgid "E-mail program"
82
  msgstr "برنامج بريدي"
83
 
84
+ #: add-to-any.php:363
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 "تصميمك يحتاج لتعديلز لتعديل تصميمك, أستخدم <a href=\"theme-editor.php\">محرر التصميم</a> لإضافة <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> في ملف <code>footer.php</code>."
87
 
88
+ #: add-to-any.php:520
89
  #, php-format
90
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
91
  msgstr ""
92
 
93
+ #: add-to-any.php:654
94
+ #: add-to-any.php:778
95
+ #: add-to-any.php:782
96
+ #: add-to-any.php:786
97
+ #: add-to-any.php:790
98
+ #: add-to-any.php:822
99
  msgid "Share/Bookmark"
100
  msgstr "مفضلة"
101
 
102
+ #: add-to-any.php:667
103
  msgid "Settings saved."
104
  msgstr "تم حفظ الأعدادات"
105
 
106
+ #: add-to-any.php:688
107
  msgid "bottom"
108
  msgstr ""
109
 
110
+ #: add-to-any.php:692
111
  msgid "top"
112
  msgstr ""
113
 
114
+ #: add-to-any.php:696
115
  msgid "top &amp; bottom"
116
  msgstr ""
117
 
118
+ #: add-to-any.php:727
119
  msgid "AddToAny: Share/Save "
120
  msgstr "أضف إلى: نشر/حفظ"
121
 
122
+ #: add-to-any.php:727
123
+ #: add-to-any.php:1132
124
+ #: add-to-any.php:1163
125
  msgid "Settings"
126
  msgstr "الأعدادات"
127
 
128
+ #: add-to-any.php:736
129
  msgid "Standalone Services"
130
  msgstr "خدمات قائمة بذاتها"
131
 
132
+ #: add-to-any.php:741
133
  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."
134
  msgstr "أختر الخدمات من الأسفل. &nbsp; أضغط لتختار الخدمة وأضغط مرة اخرى لألغائها. &nbsp; رتب الخدمات بأستخدام الفائرة."
135
 
136
+ #: add-to-any.php:773
137
  msgid "Button"
138
  msgstr "زر"
139
 
140
+ #: add-to-any.php:812
141
  msgid "Image URL"
142
  msgstr "رابط صورة"
143
 
144
+ #: add-to-any.php:819
145
  msgid "Text only"
146
  msgstr "نص فقط"
147
 
148
+ #: add-to-any.php:827
149
  msgid "Placement"
150
  msgstr "مكان العرض"
151
 
152
+ #: add-to-any.php:832
153
  #, fuzzy, php-format
154
  msgid "Display at the %s of posts"
155
  msgstr "عرض زر نشر/حفظ في اخر تدويناتك"
156
 
157
+ #: add-to-any.php:839
158
  #, php-format
159
  msgid "Display at the %s of post excerpts"
160
  msgstr ""
161
 
162
+ #: add-to-any.php:846
163
  #, fuzzy, php-format
164
  msgid "Display at the %s of posts on the front page"
165
  msgstr "عرض زر نشر/حفظ في اخر تدويناتك بالرئيسية"
166
 
167
+ #: add-to-any.php:854
168
  #, fuzzy, php-format
169
  msgid "Display at the %s of posts in the feed"
170
  msgstr "عرض زر نشر/حفظ في اخر تدويناتك بالخلاصات"
171
 
172
+ #: add-to-any.php:858
173
  #, fuzzy, php-format
174
  msgid "Display at the %s of pages"
175
  msgstr "عرض زر نشر/حفظ في أخر الصفحات"
176
 
177
+ #: add-to-any.php:862
178
  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>)"
179
  msgstr "إن لم تختار احد هذه الخيارات فتأكد ان تضع الكود بواسطة <a href=\"theme-editor.php\">محرر التصميم</a> (في <code>index.php</code>, <code>single.php</code>, و/أو <code>page.php</code>)"
180
 
181
+ #: add-to-any.php:871
182
  msgid "Menu Style"
183
  msgstr "تصميم القائمة"
184
 
185
+ #: add-to-any.php:873
186
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
187
  msgstr "أستخدم محرر تصميم أضف إلى, يمكنك تخصيص الألوان لقائمة نشر/حفظ! عند إنتهائك, تأكد من لصق الكود في مربع <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">الخيارات الخاصة</a>"
188
 
189
+ #: add-to-any.php:875
190
  msgid "Open the AddToAny Menu Styler in a new window"
191
  msgstr "فتح قائمة تصميم أضف إلى في نافذة جديدة"
192
 
193
+ #: add-to-any.php:877
194
  msgid "Open Menu Styler"
195
  msgstr "فتح قائمة التصميم"
196
 
197
+ #: add-to-any.php:882
198
  msgid "Menu Options"
199
  msgstr "خيارات القائمة"
200
 
201
+ #: add-to-any.php:887
202
  msgid "Only show the menu when the user clicks the Share/Save button"
203
  msgstr "عرض القائمة عن الضغط عليها فقط"
204
 
205
+ #: add-to-any.php:892
206
  msgid "Show the title of the post (or page) within the menu"
207
  msgstr "عرض عنوان التدوينة او الصفحة في القائمة"
208
 
209
+ #: add-to-any.php:897
210
  msgid "Additional Options"
211
  msgstr "خيارات خاصة"
212
 
213
+ #: add-to-any.php:901
214
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
215
  msgstr "ألصق الكود من قائمة تصميم أضف إلى في هذا المربع"
216
 
217
+ #: add-to-any.php:905
218
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
219
  msgstr "يمكنك ضبط متغيرات جافا سكريبت خاصة لتنفيزها على قائمة نشر/حفظ"
220
 
221
+ #: add-to-any.php:906
222
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
223
  msgstr "المستخدمين المتقدمين قد يحتاجون إلى تصفح أضف إلى <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">جافا سكريبت API</a>."
224
 
225
+ #: add-to-any.php:912
226
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
227
  msgstr "<strong>ملحوظة</strong>: إذا أضفت اكواد جديدة, كن حزر حتى لا تمسح اكواد قديمة.</label>"
228
 
229
+ #: add-to-any.php:917
230
  #, fuzzy
231
  msgid "Advanced Options"
232
  msgstr "خيارات خاصة"
233
 
234
+ #: add-to-any.php:922
235
  msgid "Use CSS stylesheet"
236
  msgstr ""
237
 
238
+ #: add-to-any.php:927
239
  msgid "Cache AddToAny locally with daily cache updates"
240
  msgstr ""
241
 
242
+ #: add-to-any.php:931
243
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
244
  msgstr ""
245
 
246
+ #: add-to-any.php:938
247
  msgid "Save Changes"
248
  msgstr "حفظ التغيرات"
249
 
250
+ #: add-to-any.php:939
251
  msgid "Are you sure you want to delete all AddToAny options?"
252
  msgstr ""
253
 
254
+ #: add-to-any.php:939
255
  msgid "Reset"
256
  msgstr ""
257
 
258
+ #: add-to-any.php:944
259
  msgid "Like this plugin?"
260
  msgstr "هل تحب هذه الأضافة؟"
261
 
262
+ #: add-to-any.php:945
263
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
264
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">قيمها</a> في موقع WordPress.org."
265
 
266
+ #: add-to-any.php:946
267
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
268
  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\">أنشرها</a> مع أصدقائك."
269
 
270
+ #: add-to-any.php:948
271
  msgid "Need support?"
272
  msgstr "بحاجة إلى الدعم؟"
273
 
274
+ #: add-to-any.php:949
275
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
276
  msgstr "راجع <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">الأسئلة الشائعة</a>."
277
 
278
+ #: add-to-any.php:950
279
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
280
  msgstr "أبحث في <a href=\"http://wordpress.org/tags/add-to-any\">منتديات الدعم</a>."
281
 
282
+ #: add-to-any.php:1075
283
  msgid "Add/Remove Services"
284
  msgstr "إضافة/ألغاء خدمات"
285
 
286
+ #: add-to-any.php:1132
287
  msgid "Share/Save"
288
  msgstr "نشر/حفظ"
289
 
290
+ #: add-to-any.php:1133
291
  msgid "Share/Save Buttons"
292
  msgstr "أزرار نشر/حفظ"
293
 
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: 2011-02-16 00:10-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: Marcis Gasuns <by.marcis@gmail.com>\n"
@@ -15,281 +15,281 @@ msgstr ""
15
  "X-Poedit-Country: BELARUS\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: add-to-any.php:313
19
  msgid "Share"
20
  msgstr "Падзяліць"
21
 
22
- #: add-to-any.php:314
23
  msgid "Save"
24
  msgstr "Захаваць"
25
 
26
- #: add-to-any.php:315
27
  msgid "Subscribe"
28
  msgstr "Падпісацца"
29
 
30
- #: add-to-any.php:316
31
  msgid "E-mail"
32
  msgstr "Электоронная пошта"
33
 
34
- #: add-to-any.php:317
35
  msgid "Bookmark"
36
  msgstr "Закладка"
37
 
38
- #: add-to-any.php:318
39
  msgid "Show all"
40
  msgstr "Паказаць усё"
41
 
42
- #: add-to-any.php:319
43
  msgid "Show less"
44
  msgstr "Паказаць менш"
45
 
46
- #: add-to-any.php:320
47
  msgid "Find service(s)"
48
  msgstr "Знайсці паслугу(і)"
49
 
50
- #: add-to-any.php:321
51
  msgid "Instantly find any service to add to"
52
  msgstr "Імгненна знайсці яку-небудзь паслугу, каб дадаць да"
53
 
54
- #: add-to-any.php:322
55
  msgid "Powered by"
56
  msgstr "Кіруецца"
57
 
58
- #: add-to-any.php:323
59
  msgid "Share via e-mail"
60
  msgstr "Адправіць па электроннай пошце"
61
 
62
- #: add-to-any.php:324
63
  msgid "Subscribe via e-mail"
64
  msgstr "Падпісацца па электроннай пошце"
65
 
66
- #: add-to-any.php:325
67
  msgid "Bookmark in your browser"
68
  msgstr "Закладка ў вашым браузеры"
69
 
70
- #: add-to-any.php:326
71
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
72
  msgstr "Націсніце Ctrl+D ці Cmd+D, каб стварыць закладку гэтай старонкі"
73
 
74
- #: add-to-any.php:327
75
  msgid "Add to your favorites"
76
  msgstr "Дадаць у выбранае"
77
 
78
- #: add-to-any.php:328
79
  msgid "Send from any e-mail address or e-mail program"
80
  msgstr "Адправіць з любога пошатовага адрасу ці з паштовай праграмы"
81
 
82
- #: add-to-any.php:329
83
  msgid "E-mail program"
84
  msgstr "Паштовая праграма"
85
 
86
- #: add-to-any.php:354
87
  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."
88
  msgstr "Ваша тэма павінна быць выпраўленая. Каб выправіць вашу тэму, выкарыстайце <a href=\"theme-editor.php\"> Тэма рэдактар </ A>, каб уставіць <code> <? PHP wp_footer ();?> </ Code> незадоўга да <code> </ BODY> </ Code> лінію вашай тэмы <code> footer.php </ cod> файл."
89
 
90
- #: add-to-any.php:511
91
  #, php-format
92
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
93
  msgstr ""
94
 
95
- #: add-to-any.php:645
96
- #: add-to-any.php:769
97
- #: add-to-any.php:773
98
- #: add-to-any.php:777
99
- #: add-to-any.php:781
100
- #: add-to-any.php:813
101
  msgid "Share/Bookmark"
102
  msgstr "Закладка"
103
 
104
- #: add-to-any.php:658
105
  msgid "Settings saved."
106
  msgstr "Наладкі захаваны"
107
 
108
- #: add-to-any.php:679
109
  msgid "bottom"
110
  msgstr ""
111
 
112
- #: add-to-any.php:683
113
  msgid "top"
114
  msgstr ""
115
 
116
- #: add-to-any.php:687
117
  msgid "top &amp; bottom"
118
  msgstr ""
119
 
120
- #: add-to-any.php:718
121
  msgid "AddToAny: Share/Save "
122
  msgstr "Дадаць у любое: падзяліць/захаваць"
123
 
124
- #: add-to-any.php:718
125
- #: add-to-any.php:1123
126
- #: add-to-any.php:1154
127
  msgid "Settings"
128
  msgstr "Наладкі"
129
 
130
- #: add-to-any.php:727
131
  msgid "Standalone Services"
132
  msgstr "Дадаць/Выдаліць паслугі"
133
 
134
- #: add-to-any.php:732
135
  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."
136
  msgstr "Выберите услуги, которые вы хотите ниже. &nbsp;Нажмите выбранной услуги снова, чтобы удалить.&nbsp; Упорядочить услуг с помощью перетаскивания, как они появляются выше."
137
 
138
- #: add-to-any.php:764
139
  msgid "Button"
140
  msgstr "Клавіша"
141
 
142
- #: add-to-any.php:803
143
  msgid "Image URL"
144
  msgstr "URL de l'imatge"
145
 
146
- #: add-to-any.php:810
147
  msgid "Text only"
148
  msgstr "Толькт тэкст"
149
 
150
- #: add-to-any.php:818
151
  msgid "Placement"
152
  msgstr "Размяшчэнне"
153
 
154
- #: add-to-any.php:823
155
  #, fuzzy, php-format
156
  msgid "Display at the %s of posts"
157
  msgstr "Паказаць клавішу Адкрыць / Захаваць унізе запісаў"
158
 
159
- #: add-to-any.php:830
160
  #, php-format
161
  msgid "Display at the %s of post excerpts"
162
  msgstr ""
163
 
164
- #: add-to-any.php:837
165
  #, fuzzy, php-format
166
  msgid "Display at the %s of posts on the front page"
167
  msgstr "Паказаць клавішу Адкрыць/Захаваць унізе запісаў на тытульнай старонцы"
168
 
169
- #: add-to-any.php:845
170
  #, fuzzy, php-format
171
  msgid "Display at the %s of posts in the feed"
172
  msgstr "Отображать Поделиться/Сохранить в нижней части сообщения в ленте"
173
 
174
- #: add-to-any.php:849
175
  #, fuzzy, php-format
176
  msgid "Display at the %s of pages"
177
  msgstr "Паказаць клавішу Адкрыць/Захаваць унізе старонак"
178
 
179
- #: add-to-any.php:853
180
  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>)"
181
  msgstr "Калі яе не спыніць, то не забудзьцеся змясціць наступны код у <a href=\"theme-editor.php\"> шаблон старонкі </ A> (у <code> index.php </code>, <code> сінгл. PHP </cod> і / або <code> page.php </ code>) \t\t \t"
182
 
183
- #: add-to-any.php:862
184
  msgid "Menu Style"
185
  msgstr "Стыль меню"
186
 
187
- #: add-to-any.php:864
188
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
189
  msgstr "Выкарыстанне Дадаць у любое меню Styler, вы можаце наладзіць колеры вашага Адкрыць / Захаваць мяню! Калі вы скончыце, не забудзьцеся ўставіць генераваны код у <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\"> Дадатковыя параметры </ A> ніжэй."
190
 
191
- #: add-to-any.php:866
192
  msgid "Open the AddToAny Menu Styler in a new window"
193
  msgstr "Адкрыць Дадаць у меню Styler у новым акне"
194
 
195
- #: add-to-any.php:868
196
  msgid "Open Menu Styler"
197
  msgstr "Адкрыць меню Styler"
198
 
199
- #: add-to-any.php:873
200
  msgid "Menu Options"
201
  msgstr "Меню опцый"
202
 
203
- #: add-to-any.php:878
204
  msgid "Only show the menu when the user clicks the Share/Save button"
205
  msgstr " Паказваць толькі меню, калі карыстальнік клікае клавішу Адкрыць/Захаваць"
206
 
207
- #: add-to-any.php:883
208
  msgid "Show the title of the post (or page) within the menu"
209
  msgstr "Паказаць назву запісу(альбо старонкі) без меню"
210
 
211
- #: add-to-any.php:888
212
  msgid "Additional Options"
213
  msgstr "Дадатковыя Опцыі"
214
 
215
- #: add-to-any.php:892
216
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
217
  msgstr "Уставіць код з Дадаць у любое меню Styler у поле ніжэй!"
218
 
219
- #: add-to-any.php:896
220
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
221
  msgstr "Ніжэй вы можаце ўсталяваць адмысловы JavaScript, які будзе ўжывацца да кожнага Адкрыць / Захаваць меню."
222
 
223
- #: add-to-any.php:897
224
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
225
  msgstr "Дасведчаныя карыстальнікі, магчыма, пажадаюць вывучыць Дадаць у <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\"> JavaScript API </ A>."
226
 
227
- #: add-to-any.php:903
228
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
229
  msgstr "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label><strong>Заўвага</strong> : Калі Вы дадаеце новы код, будзьце ўважлівыя і не перапішыце выпадкова любы папярэдні код."
230
 
231
- #: add-to-any.php:908
232
  #, fuzzy
233
  msgid "Advanced Options"
234
  msgstr "Дадатковыя Опцыі"
235
 
236
- #: add-to-any.php:913
237
  msgid "Use CSS stylesheet"
238
  msgstr ""
239
 
240
- #: add-to-any.php:918
241
  msgid "Cache AddToAny locally with daily cache updates"
242
  msgstr ""
243
 
244
- #: add-to-any.php:922
245
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
246
  msgstr ""
247
 
248
- #: add-to-any.php:929
249
  msgid "Save Changes"
250
  msgstr "Захаваць змены"
251
 
252
- #: add-to-any.php:930
253
  msgid "Are you sure you want to delete all AddToAny options?"
254
  msgstr ""
255
 
256
- #: add-to-any.php:930
257
  msgid "Reset"
258
  msgstr ""
259
 
260
- #: add-to-any.php:935
261
  msgid "Like this plugin?"
262
  msgstr "Як і гэты плагін?"
263
 
264
- #: add-to-any.php:936
265
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
266
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Дайте хороший рейтинг</a> на WordPress.org."
267
 
268
- #: add-to-any.php:937
269
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
270
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a>с друзьями."
271
 
272
- #: add-to-any.php:939
273
  msgid "Need support?"
274
  msgstr "Патрэбна падтрымка?"
275
 
276
- #: add-to-any.php:940
277
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
278
  msgstr "Паглядзіце <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
279
 
280
- #: add-to-any.php:941
281
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
282
  msgstr "Пошук <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
283
 
284
- #: add-to-any.php:1066
285
  msgid "Add/Remove Services"
286
  msgstr "Дадаць/Выдаліць паслугі"
287
 
288
- #: add-to-any.php:1123
289
  msgid "Share/Save"
290
  msgstr "Адкрыць/Захаваць"
291
 
292
- #: add-to-any.php:1124
293
  msgid "Share/Save Buttons"
294
  msgstr "Кнопка Адкрыць/Захаваць"
295
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-23 20:39-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: Marcis Gasuns <by.marcis@gmail.com>\n"
15
  "X-Poedit-Country: BELARUS\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: add-to-any.php:322
19
  msgid "Share"
20
  msgstr "Падзяліць"
21
 
22
+ #: add-to-any.php:323
23
  msgid "Save"
24
  msgstr "Захаваць"
25
 
26
+ #: add-to-any.php:324
27
  msgid "Subscribe"
28
  msgstr "Падпісацца"
29
 
30
+ #: add-to-any.php:325
31
  msgid "E-mail"
32
  msgstr "Электоронная пошта"
33
 
34
+ #: add-to-any.php:326
35
  msgid "Bookmark"
36
  msgstr "Закладка"
37
 
38
+ #: add-to-any.php:327
39
  msgid "Show all"
40
  msgstr "Паказаць усё"
41
 
42
+ #: add-to-any.php:328
43
  msgid "Show less"
44
  msgstr "Паказаць менш"
45
 
46
+ #: add-to-any.php:329
47
  msgid "Find service(s)"
48
  msgstr "Знайсці паслугу(і)"
49
 
50
+ #: add-to-any.php:330
51
  msgid "Instantly find any service to add to"
52
  msgstr "Імгненна знайсці яку-небудзь паслугу, каб дадаць да"
53
 
54
+ #: add-to-any.php:331
55
  msgid "Powered by"
56
  msgstr "Кіруецца"
57
 
58
+ #: add-to-any.php:332
59
  msgid "Share via e-mail"
60
  msgstr "Адправіць па электроннай пошце"
61
 
62
+ #: add-to-any.php:333
63
  msgid "Subscribe via e-mail"
64
  msgstr "Падпісацца па электроннай пошце"
65
 
66
+ #: add-to-any.php:334
67
  msgid "Bookmark in your browser"
68
  msgstr "Закладка ў вашым браузеры"
69
 
70
+ #: add-to-any.php:335
71
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
72
  msgstr "Націсніце Ctrl+D ці Cmd+D, каб стварыць закладку гэтай старонкі"
73
 
74
+ #: add-to-any.php:336
75
  msgid "Add to your favorites"
76
  msgstr "Дадаць у выбранае"
77
 
78
+ #: add-to-any.php:337
79
  msgid "Send from any e-mail address or e-mail program"
80
  msgstr "Адправіць з любога пошатовага адрасу ці з паштовай праграмы"
81
 
82
+ #: add-to-any.php:338
83
  msgid "E-mail program"
84
  msgstr "Паштовая праграма"
85
 
86
+ #: add-to-any.php:363
87
  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."
88
  msgstr "Ваша тэма павінна быць выпраўленая. Каб выправіць вашу тэму, выкарыстайце <a href=\"theme-editor.php\"> Тэма рэдактар </ A>, каб уставіць <code> <? PHP wp_footer ();?> </ Code> незадоўга да <code> </ BODY> </ Code> лінію вашай тэмы <code> footer.php </ cod> файл."
89
 
90
+ #: add-to-any.php:520
91
  #, php-format
92
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
93
  msgstr ""
94
 
95
+ #: add-to-any.php:654
96
+ #: add-to-any.php:778
97
+ #: add-to-any.php:782
98
+ #: add-to-any.php:786
99
+ #: add-to-any.php:790
100
+ #: add-to-any.php:822
101
  msgid "Share/Bookmark"
102
  msgstr "Закладка"
103
 
104
+ #: add-to-any.php:667
105
  msgid "Settings saved."
106
  msgstr "Наладкі захаваны"
107
 
108
+ #: add-to-any.php:688
109
  msgid "bottom"
110
  msgstr ""
111
 
112
+ #: add-to-any.php:692
113
  msgid "top"
114
  msgstr ""
115
 
116
+ #: add-to-any.php:696
117
  msgid "top &amp; bottom"
118
  msgstr ""
119
 
120
+ #: add-to-any.php:727
121
  msgid "AddToAny: Share/Save "
122
  msgstr "Дадаць у любое: падзяліць/захаваць"
123
 
124
+ #: add-to-any.php:727
125
+ #: add-to-any.php:1132
126
+ #: add-to-any.php:1163
127
  msgid "Settings"
128
  msgstr "Наладкі"
129
 
130
+ #: add-to-any.php:736
131
  msgid "Standalone Services"
132
  msgstr "Дадаць/Выдаліць паслугі"
133
 
134
+ #: add-to-any.php:741
135
  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."
136
  msgstr "Выберите услуги, которые вы хотите ниже. &nbsp;Нажмите выбранной услуги снова, чтобы удалить.&nbsp; Упорядочить услуг с помощью перетаскивания, как они появляются выше."
137
 
138
+ #: add-to-any.php:773
139
  msgid "Button"
140
  msgstr "Клавіша"
141
 
142
+ #: add-to-any.php:812
143
  msgid "Image URL"
144
  msgstr "URL de l'imatge"
145
 
146
+ #: add-to-any.php:819
147
  msgid "Text only"
148
  msgstr "Толькт тэкст"
149
 
150
+ #: add-to-any.php:827
151
  msgid "Placement"
152
  msgstr "Размяшчэнне"
153
 
154
+ #: add-to-any.php:832
155
  #, fuzzy, php-format
156
  msgid "Display at the %s of posts"
157
  msgstr "Паказаць клавішу Адкрыць / Захаваць унізе запісаў"
158
 
159
+ #: add-to-any.php:839
160
  #, php-format
161
  msgid "Display at the %s of post excerpts"
162
  msgstr ""
163
 
164
+ #: add-to-any.php:846
165
  #, fuzzy, php-format
166
  msgid "Display at the %s of posts on the front page"
167
  msgstr "Паказаць клавішу Адкрыць/Захаваць унізе запісаў на тытульнай старонцы"
168
 
169
+ #: add-to-any.php:854
170
  #, fuzzy, php-format
171
  msgid "Display at the %s of posts in the feed"
172
  msgstr "Отображать Поделиться/Сохранить в нижней части сообщения в ленте"
173
 
174
+ #: add-to-any.php:858
175
  #, fuzzy, php-format
176
  msgid "Display at the %s of pages"
177
  msgstr "Паказаць клавішу Адкрыць/Захаваць унізе старонак"
178
 
179
+ #: add-to-any.php:862
180
  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>)"
181
  msgstr "Калі яе не спыніць, то не забудзьцеся змясціць наступны код у <a href=\"theme-editor.php\"> шаблон старонкі </ A> (у <code> index.php </code>, <code> сінгл. PHP </cod> і / або <code> page.php </ code>) \t\t \t"
182
 
183
+ #: add-to-any.php:871
184
  msgid "Menu Style"
185
  msgstr "Стыль меню"
186
 
187
+ #: add-to-any.php:873
188
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
189
  msgstr "Выкарыстанне Дадаць у любое меню Styler, вы можаце наладзіць колеры вашага Адкрыць / Захаваць мяню! Калі вы скончыце, не забудзьцеся ўставіць генераваны код у <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\"> Дадатковыя параметры </ A> ніжэй."
190
 
191
+ #: add-to-any.php:875
192
  msgid "Open the AddToAny Menu Styler in a new window"
193
  msgstr "Адкрыць Дадаць у меню Styler у новым акне"
194
 
195
+ #: add-to-any.php:877
196
  msgid "Open Menu Styler"
197
  msgstr "Адкрыць меню Styler"
198
 
199
+ #: add-to-any.php:882
200
  msgid "Menu Options"
201
  msgstr "Меню опцый"
202
 
203
+ #: add-to-any.php:887
204
  msgid "Only show the menu when the user clicks the Share/Save button"
205
  msgstr " Паказваць толькі меню, калі карыстальнік клікае клавішу Адкрыць/Захаваць"
206
 
207
+ #: add-to-any.php:892
208
  msgid "Show the title of the post (or page) within the menu"
209
  msgstr "Паказаць назву запісу(альбо старонкі) без меню"
210
 
211
+ #: add-to-any.php:897
212
  msgid "Additional Options"
213
  msgstr "Дадатковыя Опцыі"
214
 
215
+ #: add-to-any.php:901
216
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
217
  msgstr "Уставіць код з Дадаць у любое меню Styler у поле ніжэй!"
218
 
219
+ #: add-to-any.php:905
220
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
221
  msgstr "Ніжэй вы можаце ўсталяваць адмысловы JavaScript, які будзе ўжывацца да кожнага Адкрыць / Захаваць меню."
222
 
223
+ #: add-to-any.php:906
224
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
225
  msgstr "Дасведчаныя карыстальнікі, магчыма, пажадаюць вывучыць Дадаць у <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\"> JavaScript API </ A>."
226
 
227
+ #: add-to-any.php:912
228
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
229
  msgstr "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label><strong>Заўвага</strong> : Калі Вы дадаеце новы код, будзьце ўважлівыя і не перапішыце выпадкова любы папярэдні код."
230
 
231
+ #: add-to-any.php:917
232
  #, fuzzy
233
  msgid "Advanced Options"
234
  msgstr "Дадатковыя Опцыі"
235
 
236
+ #: add-to-any.php:922
237
  msgid "Use CSS stylesheet"
238
  msgstr ""
239
 
240
+ #: add-to-any.php:927
241
  msgid "Cache AddToAny locally with daily cache updates"
242
  msgstr ""
243
 
244
+ #: add-to-any.php:931
245
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
246
  msgstr ""
247
 
248
+ #: add-to-any.php:938
249
  msgid "Save Changes"
250
  msgstr "Захаваць змены"
251
 
252
+ #: add-to-any.php:939
253
  msgid "Are you sure you want to delete all AddToAny options?"
254
  msgstr ""
255
 
256
+ #: add-to-any.php:939
257
  msgid "Reset"
258
  msgstr ""
259
 
260
+ #: add-to-any.php:944
261
  msgid "Like this plugin?"
262
  msgstr "Як і гэты плагін?"
263
 
264
+ #: add-to-any.php:945
265
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
266
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Дайте хороший рейтинг</a> на WordPress.org."
267
 
268
+ #: add-to-any.php:946
269
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
270
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a>с друзьями."
271
 
272
+ #: add-to-any.php:948
273
  msgid "Need support?"
274
  msgstr "Патрэбна падтрымка?"
275
 
276
+ #: add-to-any.php:949
277
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
278
  msgstr "Паглядзіце <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
279
 
280
+ #: add-to-any.php:950
281
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
282
  msgstr "Пошук <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
283
 
284
+ #: add-to-any.php:1075
285
  msgid "Add/Remove Services"
286
  msgstr "Дадаць/Выдаліць паслугі"
287
 
288
+ #: add-to-any.php:1132
289
  msgid "Share/Save"
290
  msgstr "Адкрыць/Захаваць"
291
 
292
+ #: add-to-any.php:1133
293
  msgid "Share/Save Buttons"
294
  msgstr "Кнопка Адкрыць/Захаваць"
295
 
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: 2011-02-16 00:10-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: <robert.buj@gmail.com>\n"
@@ -15,282 +15,282 @@ msgstr ""
15
  "X-Poedit-Country: SPAIN\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: add-to-any.php:313
19
  msgid "Share"
20
  msgstr "Compartir"
21
 
22
- #: add-to-any.php:314
23
  msgid "Save"
24
  msgstr "Desar"
25
 
26
- #: add-to-any.php:315
27
  msgid "Subscribe"
28
  msgstr "Subscriure's"
29
 
30
- #: add-to-any.php:316
31
  msgid "E-mail"
32
  msgstr "Correu electrònic"
33
 
34
- #: add-to-any.php:317
35
  msgid "Bookmark"
36
  msgstr "Preferit"
37
 
38
- #: add-to-any.php:318
39
  msgid "Show all"
40
  msgstr "Mostrar tots"
41
 
42
- #: add-to-any.php:319
43
  msgid "Show less"
44
  msgstr "Mostrar menys"
45
 
46
- #: add-to-any.php:320
47
  msgid "Find service(s)"
48
  msgstr "Buscar servei(s)"
49
 
50
- #: add-to-any.php:321
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:322
55
  msgid "Powered by"
56
  msgstr "Potenciat per"
57
 
58
- #: add-to-any.php:323
59
  msgid "Share via e-mail"
60
  msgstr "Compartir per correu electrònic"
61
 
62
- #: add-to-any.php:324
63
  msgid "Subscribe via e-mail"
64
  msgstr "Subscriure per correu electrònic"
65
 
66
- #: add-to-any.php:325
67
  msgid "Bookmark in your browser"
68
  msgstr "Afegir l'adreça d'interès al vostre navegador"
69
 
70
- #: add-to-any.php:326
71
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
72
  msgstr "Pressioneu Ctrl+D o &#8984;+D per afegir a preferits aquesta pàgina"
73
 
74
- #: add-to-any.php:327
75
  msgid "Add to your favorites"
76
  msgstr "Afegir als vostres favorits"
77
 
78
- #: add-to-any.php:328
79
  msgid "Send from any e-mail address or e-mail program"
80
  msgstr "Enviar des de qualsevol adreça de correu electrònic o programa de correu electrònic"
81
 
82
- #: add-to-any.php:329
83
  msgid "E-mail program"
84
  msgstr "Programa de correu electrònic"
85
 
86
- #: add-to-any.php:354
87
  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."
88
  msgstr "El vostre tema ha de ser corregit. per corregir-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>."
89
 
90
- #: add-to-any.php:511
91
  #, php-format
92
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
93
  msgstr ""
94
 
95
- #: add-to-any.php:645
96
- #: add-to-any.php:769
97
- #: add-to-any.php:773
98
- #: add-to-any.php:777
99
- #: add-to-any.php:781
100
- #: add-to-any.php:813
101
  #, fuzzy
102
  msgid "Share/Bookmark"
103
  msgstr "Preferit"
104
 
105
- #: add-to-any.php:658
106
  msgid "Settings saved."
107
  msgstr "Preferències desades."
108
 
109
- #: add-to-any.php:679
110
  msgid "bottom"
111
  msgstr ""
112
 
113
- #: add-to-any.php:683
114
  msgid "top"
115
  msgstr ""
116
 
117
- #: add-to-any.php:687
118
  msgid "top &amp; bottom"
119
  msgstr ""
120
 
121
- #: add-to-any.php:718
122
  msgid "AddToAny: Share/Save "
123
  msgstr "AddToAny: Compartir/Desar "
124
 
125
- #: add-to-any.php:718
126
- #: add-to-any.php:1123
127
- #: add-to-any.php:1154
128
  msgid "Settings"
129
  msgstr "Preferències"
130
 
131
- #: add-to-any.php:727
132
  msgid "Standalone Services"
133
  msgstr "Serveis integrats"
134
 
135
- #: add-to-any.php:732
136
  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."
137
  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 desitgeu."
138
 
139
- #: add-to-any.php:764
140
  msgid "Button"
141
  msgstr "Botó"
142
 
143
- #: add-to-any.php:803
144
  msgid "Image URL"
145
  msgstr "URL de la imatge"
146
 
147
- #: add-to-any.php:810
148
  msgid "Text only"
149
  msgstr "Només text"
150
 
151
- #: add-to-any.php:818
152
  msgid "Placement"
153
  msgstr "Emplaçament"
154
 
155
- #: add-to-any.php:823
156
  #, fuzzy, php-format
157
  msgid "Display at the %s of posts"
158
  msgstr "Mostrar el botó de Compartir/Desar sota tots els escrits"
159
 
160
- #: add-to-any.php:830
161
  #, php-format
162
  msgid "Display at the %s of post excerpts"
163
  msgstr ""
164
 
165
- #: add-to-any.php:837
166
  #, fuzzy, php-format
167
  msgid "Display at the %s of posts on the front page"
168
  msgstr "Mostrar el botó de Compartir/Desar a la pàgina principal"
169
 
170
- #: add-to-any.php:845
171
  #, fuzzy, php-format
172
  msgid "Display at the %s of posts in the feed"
173
  msgstr "Mostrar el botó de Compartir/Desar sota tots els escrits al feed"
174
 
175
- #: add-to-any.php:849
176
  #, fuzzy, php-format
177
  msgid "Display at the %s of pages"
178
  msgstr "Mostrar el botó de Compartir/Desar sota les pàgines"
179
 
180
- #: add-to-any.php:853
181
  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>)"
182
  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>)"
183
 
184
- #: add-to-any.php:862
185
  msgid "Menu Style"
186
  msgstr "Estil del menú"
187
 
188
- #: add-to-any.php:864
189
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
190
  msgstr "Utilitzant el personalitzador d'estil de AddToAny, 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."
191
 
192
- #: add-to-any.php:866
193
  msgid "Open the AddToAny Menu Styler in a new window"
194
  msgstr "Obrir el personalitzador d'estil de AddToAny a una nova finestra"
195
 
196
- #: add-to-any.php:868
197
  msgid "Open Menu Styler"
198
  msgstr "Obrir el personalitzador d'estils"
199
 
200
- #: add-to-any.php:873
201
  msgid "Menu Options"
202
  msgstr "Opcions del menú"
203
 
204
- #: add-to-any.php:878
205
  msgid "Only show the menu when the user clicks the Share/Save button"
206
  msgstr "Mostrar el menú solament quan un usuari cliqui sobre el botó Compartir/Desar"
207
 
208
- #: add-to-any.php:883
209
  msgid "Show the title of the post (or page) within the menu"
210
  msgstr "Mostrar el títol de l'entrada (o de la pàgina) dins del menú"
211
 
212
- #: add-to-any.php:888
213
  msgid "Additional Options"
214
  msgstr "Opcions addicionals"
215
 
216
- #: add-to-any.php:892
217
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
218
  msgstr "Enganxeu el codi del personalitzador d'estil al següent requadre!"
219
 
220
- #: add-to-any.php:896
221
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
222
  msgstr "A continuació, podeu establir variables especials de JavaScript per aplicar a cada menú Compartir/Desar."
223
 
224
- #: add-to-any.php:897
225
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
226
  msgstr "Els usuaris avançats poden preferir explorar l'<a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">API JavaScript</a> de AddToAny."
227
 
228
- #: add-to-any.php:903
229
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
230
  msgstr "<strong>Nota</strong>: Si heu d'afegir un nou codi, tingueu cura de no sobreescriure accidentalment qualsevol codi anterior.</label>"
231
 
232
- #: add-to-any.php:908
233
  #, fuzzy
234
  msgid "Advanced Options"
235
  msgstr "Opcions addicionals"
236
 
237
- #: add-to-any.php:913
238
  msgid "Use CSS stylesheet"
239
  msgstr ""
240
 
241
- #: add-to-any.php:918
242
  msgid "Cache AddToAny locally with daily cache updates"
243
  msgstr ""
244
 
245
- #: add-to-any.php:922
246
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
247
  msgstr ""
248
 
249
- #: add-to-any.php:929
250
  msgid "Save Changes"
251
  msgstr "Desar els canvis"
252
 
253
- #: add-to-any.php:930
254
  msgid "Are you sure you want to delete all AddToAny options?"
255
  msgstr ""
256
 
257
- #: add-to-any.php:930
258
  msgid "Reset"
259
  msgstr ""
260
 
261
- #: add-to-any.php:935
262
  msgid "Like this plugin?"
263
  msgstr "Com aquesta extensió?"
264
 
265
- #: add-to-any.php:936
266
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
267
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Doneu-li una bona qualificació</a> a WordPress.org."
268
 
269
- #: add-to-any.php:937
270
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
271
  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."
272
 
273
- #: add-to-any.php:939
274
  msgid "Need support?"
275
  msgstr "Necessiteu suport?"
276
 
277
- #: add-to-any.php:940
278
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
279
  msgstr "Vegeu les <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">Preguntes més freqüents</a>."
280
 
281
- #: add-to-any.php:941
282
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
283
  msgstr "Cercar als <a href=\"http://wordpress.org/tags/add-to-any\">fòrums de suport</a>."
284
 
285
- #: add-to-any.php:1066
286
  msgid "Add/Remove Services"
287
  msgstr "Serveis Compartir/Desar"
288
 
289
- #: add-to-any.php:1123
290
  msgid "Share/Save"
291
  msgstr "Compartir/Desar"
292
 
293
- #: add-to-any.php:1124
294
  msgid "Share/Save Buttons"
295
  msgstr "Botons de Compartir/Desar"
296
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-23 20:39-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\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:322
19
  msgid "Share"
20
  msgstr "Compartir"
21
 
22
+ #: add-to-any.php:323
23
  msgid "Save"
24
  msgstr "Desar"
25
 
26
+ #: add-to-any.php:324
27
  msgid "Subscribe"
28
  msgstr "Subscriure's"
29
 
30
+ #: add-to-any.php:325
31
  msgid "E-mail"
32
  msgstr "Correu electrònic"
33
 
34
+ #: add-to-any.php:326
35
  msgid "Bookmark"
36
  msgstr "Preferit"
37
 
38
+ #: add-to-any.php:327
39
  msgid "Show all"
40
  msgstr "Mostrar tots"
41
 
42
+ #: add-to-any.php:328
43
  msgid "Show less"
44
  msgstr "Mostrar menys"
45
 
46
+ #: add-to-any.php:329
47
  msgid "Find service(s)"
48
  msgstr "Buscar servei(s)"
49
 
50
+ #: add-to-any.php:330
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:331
55
  msgid "Powered by"
56
  msgstr "Potenciat per"
57
 
58
+ #: add-to-any.php:332
59
  msgid "Share via e-mail"
60
  msgstr "Compartir per correu electrònic"
61
 
62
+ #: add-to-any.php:333
63
  msgid "Subscribe via e-mail"
64
  msgstr "Subscriure per correu electrònic"
65
 
66
+ #: add-to-any.php:334
67
  msgid "Bookmark in your browser"
68
  msgstr "Afegir l'adreça d'interès al vostre navegador"
69
 
70
+ #: add-to-any.php:335
71
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
72
  msgstr "Pressioneu Ctrl+D o &#8984;+D per afegir a preferits aquesta pàgina"
73
 
74
+ #: add-to-any.php:336
75
  msgid "Add to your favorites"
76
  msgstr "Afegir als vostres favorits"
77
 
78
+ #: add-to-any.php:337
79
  msgid "Send from any e-mail address or e-mail program"
80
  msgstr "Enviar des de qualsevol adreça de correu electrònic o programa de correu electrònic"
81
 
82
+ #: add-to-any.php:338
83
  msgid "E-mail program"
84
  msgstr "Programa de correu electrònic"
85
 
86
+ #: add-to-any.php:363
87
  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."
88
  msgstr "El vostre tema ha de ser corregit. per corregir-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>."
89
 
90
+ #: add-to-any.php:520
91
  #, php-format
92
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
93
  msgstr ""
94
 
95
+ #: add-to-any.php:654
96
+ #: add-to-any.php:778
97
+ #: add-to-any.php:782
98
+ #: add-to-any.php:786
99
+ #: add-to-any.php:790
100
+ #: add-to-any.php:822
101
  #, fuzzy
102
  msgid "Share/Bookmark"
103
  msgstr "Preferit"
104
 
105
+ #: add-to-any.php:667
106
  msgid "Settings saved."
107
  msgstr "Preferències desades."
108
 
109
+ #: add-to-any.php:688
110
  msgid "bottom"
111
  msgstr ""
112
 
113
+ #: add-to-any.php:692
114
  msgid "top"
115
  msgstr ""
116
 
117
+ #: add-to-any.php:696
118
  msgid "top &amp; bottom"
119
  msgstr ""
120
 
121
+ #: add-to-any.php:727
122
  msgid "AddToAny: Share/Save "
123
  msgstr "AddToAny: Compartir/Desar "
124
 
125
+ #: add-to-any.php:727
126
+ #: add-to-any.php:1132
127
+ #: add-to-any.php:1163
128
  msgid "Settings"
129
  msgstr "Preferències"
130
 
131
+ #: add-to-any.php:736
132
  msgid "Standalone Services"
133
  msgstr "Serveis integrats"
134
 
135
+ #: add-to-any.php:741
136
  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."
137
  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 desitgeu."
138
 
139
+ #: add-to-any.php:773
140
  msgid "Button"
141
  msgstr "Botó"
142
 
143
+ #: add-to-any.php:812
144
  msgid "Image URL"
145
  msgstr "URL de la imatge"
146
 
147
+ #: add-to-any.php:819
148
  msgid "Text only"
149
  msgstr "Només text"
150
 
151
+ #: add-to-any.php:827
152
  msgid "Placement"
153
  msgstr "Emplaçament"
154
 
155
+ #: add-to-any.php:832
156
  #, fuzzy, php-format
157
  msgid "Display at the %s of posts"
158
  msgstr "Mostrar el botó de Compartir/Desar sota tots els escrits"
159
 
160
+ #: add-to-any.php:839
161
  #, php-format
162
  msgid "Display at the %s of post excerpts"
163
  msgstr ""
164
 
165
+ #: add-to-any.php:846
166
  #, fuzzy, php-format
167
  msgid "Display at the %s of posts on the front page"
168
  msgstr "Mostrar el botó de Compartir/Desar a la pàgina principal"
169
 
170
+ #: add-to-any.php:854
171
  #, fuzzy, php-format
172
  msgid "Display at the %s of posts in the feed"
173
  msgstr "Mostrar el botó de Compartir/Desar sota tots els escrits al feed"
174
 
175
+ #: add-to-any.php:858
176
  #, fuzzy, php-format
177
  msgid "Display at the %s of pages"
178
  msgstr "Mostrar el botó de Compartir/Desar sota les pàgines"
179
 
180
+ #: add-to-any.php:862
181
  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>)"
182
  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>)"
183
 
184
+ #: add-to-any.php:871
185
  msgid "Menu Style"
186
  msgstr "Estil del menú"
187
 
188
+ #: add-to-any.php:873
189
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
190
  msgstr "Utilitzant el personalitzador d'estil de AddToAny, 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."
191
 
192
+ #: add-to-any.php:875
193
  msgid "Open the AddToAny Menu Styler in a new window"
194
  msgstr "Obrir el personalitzador d'estil de AddToAny a una nova finestra"
195
 
196
+ #: add-to-any.php:877
197
  msgid "Open Menu Styler"
198
  msgstr "Obrir el personalitzador d'estils"
199
 
200
+ #: add-to-any.php:882
201
  msgid "Menu Options"
202
  msgstr "Opcions del menú"
203
 
204
+ #: add-to-any.php:887
205
  msgid "Only show the menu when the user clicks the Share/Save button"
206
  msgstr "Mostrar el menú solament quan un usuari cliqui sobre el botó Compartir/Desar"
207
 
208
+ #: add-to-any.php:892
209
  msgid "Show the title of the post (or page) within the menu"
210
  msgstr "Mostrar el títol de l'entrada (o de la pàgina) dins del menú"
211
 
212
+ #: add-to-any.php:897
213
  msgid "Additional Options"
214
  msgstr "Opcions addicionals"
215
 
216
+ #: add-to-any.php:901
217
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
218
  msgstr "Enganxeu el codi del personalitzador d'estil al següent requadre!"
219
 
220
+ #: add-to-any.php:905
221
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
222
  msgstr "A continuació, podeu establir variables especials de JavaScript per aplicar a cada menú Compartir/Desar."
223
 
224
+ #: add-to-any.php:906
225
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
226
  msgstr "Els usuaris avançats poden preferir explorar l'<a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">API JavaScript</a> de AddToAny."
227
 
228
+ #: add-to-any.php:912
229
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
230
  msgstr "<strong>Nota</strong>: Si heu d'afegir un nou codi, tingueu cura de no sobreescriure accidentalment qualsevol codi anterior.</label>"
231
 
232
+ #: add-to-any.php:917
233
  #, fuzzy
234
  msgid "Advanced Options"
235
  msgstr "Opcions addicionals"
236
 
237
+ #: add-to-any.php:922
238
  msgid "Use CSS stylesheet"
239
  msgstr ""
240
 
241
+ #: add-to-any.php:927
242
  msgid "Cache AddToAny locally with daily cache updates"
243
  msgstr ""
244
 
245
+ #: add-to-any.php:931
246
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
247
  msgstr ""
248
 
249
+ #: add-to-any.php:938
250
  msgid "Save Changes"
251
  msgstr "Desar els canvis"
252
 
253
+ #: add-to-any.php:939
254
  msgid "Are you sure you want to delete all AddToAny options?"
255
  msgstr ""
256
 
257
+ #: add-to-any.php:939
258
  msgid "Reset"
259
  msgstr ""
260
 
261
+ #: add-to-any.php:944
262
  msgid "Like this plugin?"
263
  msgstr "Com aquesta extensió?"
264
 
265
+ #: add-to-any.php:945
266
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
267
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Doneu-li una bona qualificació</a> a WordPress.org."
268
 
269
+ #: add-to-any.php:946
270
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
271
  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."
272
 
273
+ #: add-to-any.php:948
274
  msgid "Need support?"
275
  msgstr "Necessiteu suport?"
276
 
277
+ #: add-to-any.php:949
278
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
279
  msgstr "Vegeu les <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">Preguntes més freqüents</a>."
280
 
281
+ #: add-to-any.php:950
282
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
283
  msgstr "Cercar als <a href=\"http://wordpress.org/tags/add-to-any\">fòrums de suport</a>."
284
 
285
+ #: add-to-any.php:1075
286
  msgid "Add/Remove Services"
287
  msgstr "Serveis Compartir/Desar"
288
 
289
+ #: add-to-any.php:1132
290
  msgid "Share/Save"
291
  msgstr "Compartir/Desar"
292
 
293
+ #: add-to-any.php:1133
294
  msgid "Share/Save Buttons"
295
  msgstr "Botons de Compartir/Desar"
296
 
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: 2011-02-16 00:10-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: Team Blogos <wordpress@blogos.dk>\n"
@@ -17,281 +17,281 @@ msgstr ""
17
  "X-Poedit-SourceCharset: utf-8\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: add-to-any.php:313
21
  msgid "Share"
22
  msgstr "Del"
23
 
24
- #: add-to-any.php:314
25
  msgid "Save"
26
  msgstr "Gem"
27
 
28
- #: add-to-any.php:315
29
  msgid "Subscribe"
30
  msgstr "Subskribér"
31
 
32
- #: add-to-any.php:316
33
  msgid "E-mail"
34
  msgstr "E-mail"
35
 
36
- #: add-to-any.php:317
37
  msgid "Bookmark"
38
  msgstr "Bogmærk"
39
 
40
- #: add-to-any.php:318
41
  msgid "Show all"
42
  msgstr "Vis alle"
43
 
44
- #: add-to-any.php:319
45
  msgid "Show less"
46
  msgstr "Vis mindre"
47
 
48
- #: add-to-any.php:320
49
  msgid "Find service(s)"
50
  msgstr "Find service(s)"
51
 
52
- #: add-to-any.php:321
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:322
57
  msgid "Powered by"
58
  msgstr "Kører på"
59
 
60
- #: add-to-any.php:323
61
  msgid "Share via e-mail"
62
  msgstr "Del via e-mail"
63
 
64
- #: add-to-any.php:324
65
  msgid "Subscribe via e-mail"
66
  msgstr "Subskribér via e-mail"
67
 
68
- #: add-to-any.php:325
69
  msgid "Bookmark in your browser"
70
  msgstr "Bogmærk i din browswer"
71
 
72
- #: add-to-any.php:326
73
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
74
  msgstr "Press Ctrl-D eller Cmd-D for at bogmærke denne side"
75
 
76
- #: add-to-any.php:327
77
  msgid "Add to your favorites"
78
  msgstr "Tilføj til dine favoritter"
79
 
80
- #: add-to-any.php:328
81
  msgid "Send from any e-mail address or e-mail program"
82
  msgstr "Send fra enhver e-mail-adreses eller e-mail-program"
83
 
84
- #: add-to-any.php:329
85
  msgid "E-mail program"
86
  msgstr "E-mail-program"
87
 
88
- #: add-to-any.php:354
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 "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."
91
 
92
- #: add-to-any.php:511
93
  #, php-format
94
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
95
  msgstr ""
96
 
97
- #: add-to-any.php:645
98
- #: add-to-any.php:769
99
- #: add-to-any.php:773
100
- #: add-to-any.php:777
101
- #: add-to-any.php:781
102
- #: add-to-any.php:813
103
  msgid "Share/Bookmark"
104
  msgstr "Bogmærk"
105
 
106
- #: add-to-any.php:658
107
  msgid "Settings saved."
108
  msgstr "Indstillinger gemt"
109
 
110
- #: add-to-any.php:679
111
  msgid "bottom"
112
  msgstr ""
113
 
114
- #: add-to-any.php:683
115
  msgid "top"
116
  msgstr ""
117
 
118
- #: add-to-any.php:687
119
  msgid "top &amp; bottom"
120
  msgstr ""
121
 
122
- #: add-to-any.php:718
123
  msgid "AddToAny: Share/Save "
124
  msgstr "Tilføj til enhver: Del/gem"
125
 
126
- #: add-to-any.php:718
127
- #: add-to-any.php:1123
128
- #: add-to-any.php:1154
129
  msgid "Settings"
130
  msgstr "Indstillinger"
131
 
132
- #: add-to-any.php:727
133
  msgid "Standalone Services"
134
  msgstr "Tilføj/fjern tjenesteudbydere"
135
 
136
- #: add-to-any.php:732
137
  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."
138
  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)."
139
 
140
- #: add-to-any.php:764
141
  msgid "Button"
142
  msgstr "Knap"
143
 
144
- #: add-to-any.php:803
145
  msgid "Image URL"
146
  msgstr "Billed-URL"
147
 
148
- #: add-to-any.php:810
149
  msgid "Text only"
150
  msgstr "Kun tekst"
151
 
152
- #: add-to-any.php:818
153
  msgid "Placement"
154
  msgstr "Placering"
155
 
156
- #: add-to-any.php:823
157
  #, fuzzy, php-format
158
  msgid "Display at the %s of posts"
159
  msgstr "Vis Del-/Gem-knap i bunden af indlæg"
160
 
161
- #: add-to-any.php:830
162
  #, php-format
163
  msgid "Display at the %s of post excerpts"
164
  msgstr ""
165
 
166
- #: add-to-any.php:837
167
  #, fuzzy, php-format
168
  msgid "Display at the %s of posts on the front page"
169
  msgstr "Vis Del-/Gem-knap i bunden af indlæg på forsiden"
170
 
171
- #: add-to-any.php:845
172
  #, fuzzy, php-format
173
  msgid "Display at the %s of posts in the feed"
174
  msgstr "Vis Del-/Gem-knap i bunden af indlæg i feeds"
175
 
176
- #: add-to-any.php:849
177
  #, fuzzy, php-format
178
  msgid "Display at the %s of pages"
179
  msgstr "Vis Del-/Gem-knap i bunden af sider"
180
 
181
- #: add-to-any.php:853
182
  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>)"
183
  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>)"
184
 
185
- #: add-to-any.php:862
186
  msgid "Menu Style"
187
  msgstr "Menutypografi"
188
 
189
- #: add-to-any.php:864
190
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
191
  msgstr "Ved at bruge AddToAny'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."
192
 
193
- #: add-to-any.php:866
194
  msgid "Open the AddToAny Menu Styler in a new window"
195
  msgstr "Åben AddToAny's menutypograf i et nyt vindue"
196
 
197
- #: add-to-any.php:868
198
  msgid "Open Menu Styler"
199
  msgstr "Åben menutypografen"
200
 
201
- #: add-to-any.php:873
202
  msgid "Menu Options"
203
  msgstr "Menuvalgmuligheder"
204
 
205
- #: add-to-any.php:878
206
  msgid "Only show the menu when the user clicks the Share/Save button"
207
  msgstr "Vis kun menuen når bruger klikker på Del-/Gem-knappen"
208
 
209
- #: add-to-any.php:883
210
  msgid "Show the title of the post (or page) within the menu"
211
  msgstr "Vis titlen på indlægget (eller siden) i menuen"
212
 
213
- #: add-to-any.php:888
214
  msgid "Additional Options"
215
  msgstr "Yderligere indstillinger"
216
 
217
- #: add-to-any.php:892
218
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
219
  msgstr "Indsæt koden fra AddToAny's menutypograf i boksen nedenfor!"
220
 
221
- #: add-to-any.php:896
222
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
223
  msgstr "Nedenfor kan du angive specielle JavaScript-variabler, som skal bruges på din Del-/Gem-menu."
224
 
225
- #: add-to-any.php:897
226
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
227
  msgstr "Avancerede brugere kan se nærmere på AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">JavaScript API</a>."
228
 
229
- #: add-to-any.php:903
230
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
231
  msgstr "<strong>Bemærk</strong>: Hvis du tilføjer ny kode, så vær forsigtig, så du ikke ved et uheld overskriver eksisterende kode."
232
 
233
- #: add-to-any.php:908
234
  #, fuzzy
235
  msgid "Advanced Options"
236
  msgstr "Yderligere indstillinger"
237
 
238
- #: add-to-any.php:913
239
  msgid "Use CSS stylesheet"
240
  msgstr ""
241
 
242
- #: add-to-any.php:918
243
  msgid "Cache AddToAny locally with daily cache updates"
244
  msgstr ""
245
 
246
- #: add-to-any.php:922
247
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
248
  msgstr ""
249
 
250
- #: add-to-any.php:929
251
  msgid "Save Changes"
252
  msgstr "Gem ændringer"
253
 
254
- #: add-to-any.php:930
255
  msgid "Are you sure you want to delete all AddToAny options?"
256
  msgstr ""
257
 
258
- #: add-to-any.php:930
259
  msgid "Reset"
260
  msgstr ""
261
 
262
- #: add-to-any.php:935
263
  msgid "Like this plugin?"
264
  msgstr "Kan du lide dette plugin?"
265
 
266
- #: add-to-any.php:936
267
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
268
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Giv det en god bedømmelse </a>på WordPress.org."
269
 
270
- #: add-to-any.php:937
271
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
272
  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."
273
 
274
- #: add-to-any.php:939
275
  msgid "Need support?"
276
  msgstr "Har du brug for support?"
277
 
278
- #: add-to-any.php:940
279
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
280
  msgstr "Se vores <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ (Ofte Stillede Spørgsmål)</a>."
281
 
282
- #: add-to-any.php:941
283
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
284
  msgstr "Søg på <a href=\"http://wordpress.org/tags/add-to-any\">supportforummerne</a>."
285
 
286
- #: add-to-any.php:1066
287
  msgid "Add/Remove Services"
288
  msgstr "Tilføj/fjern tjenesteudbydere"
289
 
290
- #: add-to-any.php:1123
291
  msgid "Share/Save"
292
  msgstr "Del/Gem"
293
 
294
- #: add-to-any.php:1124
295
  msgid "Share/Save Buttons"
296
  msgstr "Del-/Gem-knapper"
297
 
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: 2011-02-23 20:39-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\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:322
21
  msgid "Share"
22
  msgstr "Del"
23
 
24
+ #: add-to-any.php:323
25
  msgid "Save"
26
  msgstr "Gem"
27
 
28
+ #: add-to-any.php:324
29
  msgid "Subscribe"
30
  msgstr "Subskribér"
31
 
32
+ #: add-to-any.php:325
33
  msgid "E-mail"
34
  msgstr "E-mail"
35
 
36
+ #: add-to-any.php:326
37
  msgid "Bookmark"
38
  msgstr "Bogmærk"
39
 
40
+ #: add-to-any.php:327
41
  msgid "Show all"
42
  msgstr "Vis alle"
43
 
44
+ #: add-to-any.php:328
45
  msgid "Show less"
46
  msgstr "Vis mindre"
47
 
48
+ #: add-to-any.php:329
49
  msgid "Find service(s)"
50
  msgstr "Find service(s)"
51
 
52
+ #: add-to-any.php:330
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:331
57
  msgid "Powered by"
58
  msgstr "Kører på"
59
 
60
+ #: add-to-any.php:332
61
  msgid "Share via e-mail"
62
  msgstr "Del via e-mail"
63
 
64
+ #: add-to-any.php:333
65
  msgid "Subscribe via e-mail"
66
  msgstr "Subskribér via e-mail"
67
 
68
+ #: add-to-any.php:334
69
  msgid "Bookmark in your browser"
70
  msgstr "Bogmærk i din browswer"
71
 
72
+ #: add-to-any.php:335
73
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
74
  msgstr "Press Ctrl-D eller Cmd-D for at bogmærke denne side"
75
 
76
+ #: add-to-any.php:336
77
  msgid "Add to your favorites"
78
  msgstr "Tilføj til dine favoritter"
79
 
80
+ #: add-to-any.php:337
81
  msgid "Send from any e-mail address or e-mail program"
82
  msgstr "Send fra enhver e-mail-adreses eller e-mail-program"
83
 
84
+ #: add-to-any.php:338
85
  msgid "E-mail program"
86
  msgstr "E-mail-program"
87
 
88
+ #: add-to-any.php:363
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 "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."
91
 
92
+ #: add-to-any.php:520
93
  #, php-format
94
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
95
  msgstr ""
96
 
97
+ #: add-to-any.php:654
98
+ #: add-to-any.php:778
99
+ #: add-to-any.php:782
100
+ #: add-to-any.php:786
101
+ #: add-to-any.php:790
102
+ #: add-to-any.php:822
103
  msgid "Share/Bookmark"
104
  msgstr "Bogmærk"
105
 
106
+ #: add-to-any.php:667
107
  msgid "Settings saved."
108
  msgstr "Indstillinger gemt"
109
 
110
+ #: add-to-any.php:688
111
  msgid "bottom"
112
  msgstr ""
113
 
114
+ #: add-to-any.php:692
115
  msgid "top"
116
  msgstr ""
117
 
118
+ #: add-to-any.php:696
119
  msgid "top &amp; bottom"
120
  msgstr ""
121
 
122
+ #: add-to-any.php:727
123
  msgid "AddToAny: Share/Save "
124
  msgstr "Tilføj til enhver: Del/gem"
125
 
126
+ #: add-to-any.php:727
127
+ #: add-to-any.php:1132
128
+ #: add-to-any.php:1163
129
  msgid "Settings"
130
  msgstr "Indstillinger"
131
 
132
+ #: add-to-any.php:736
133
  msgid "Standalone Services"
134
  msgstr "Tilføj/fjern tjenesteudbydere"
135
 
136
+ #: add-to-any.php:741
137
  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."
138
  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)."
139
 
140
+ #: add-to-any.php:773
141
  msgid "Button"
142
  msgstr "Knap"
143
 
144
+ #: add-to-any.php:812
145
  msgid "Image URL"
146
  msgstr "Billed-URL"
147
 
148
+ #: add-to-any.php:819
149
  msgid "Text only"
150
  msgstr "Kun tekst"
151
 
152
+ #: add-to-any.php:827
153
  msgid "Placement"
154
  msgstr "Placering"
155
 
156
+ #: add-to-any.php:832
157
  #, fuzzy, php-format
158
  msgid "Display at the %s of posts"
159
  msgstr "Vis Del-/Gem-knap i bunden af indlæg"
160
 
161
+ #: add-to-any.php:839
162
  #, php-format
163
  msgid "Display at the %s of post excerpts"
164
  msgstr ""
165
 
166
+ #: add-to-any.php:846
167
  #, fuzzy, php-format
168
  msgid "Display at the %s of posts on the front page"
169
  msgstr "Vis Del-/Gem-knap i bunden af indlæg på forsiden"
170
 
171
+ #: add-to-any.php:854
172
  #, fuzzy, php-format
173
  msgid "Display at the %s of posts in the feed"
174
  msgstr "Vis Del-/Gem-knap i bunden af indlæg i feeds"
175
 
176
+ #: add-to-any.php:858
177
  #, fuzzy, php-format
178
  msgid "Display at the %s of pages"
179
  msgstr "Vis Del-/Gem-knap i bunden af sider"
180
 
181
+ #: add-to-any.php:862
182
  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>)"
183
  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>)"
184
 
185
+ #: add-to-any.php:871
186
  msgid "Menu Style"
187
  msgstr "Menutypografi"
188
 
189
+ #: add-to-any.php:873
190
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
191
  msgstr "Ved at bruge AddToAny'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."
192
 
193
+ #: add-to-any.php:875
194
  msgid "Open the AddToAny Menu Styler in a new window"
195
  msgstr "Åben AddToAny's menutypograf i et nyt vindue"
196
 
197
+ #: add-to-any.php:877
198
  msgid "Open Menu Styler"
199
  msgstr "Åben menutypografen"
200
 
201
+ #: add-to-any.php:882
202
  msgid "Menu Options"
203
  msgstr "Menuvalgmuligheder"
204
 
205
+ #: add-to-any.php:887
206
  msgid "Only show the menu when the user clicks the Share/Save button"
207
  msgstr "Vis kun menuen når bruger klikker på Del-/Gem-knappen"
208
 
209
+ #: add-to-any.php:892
210
  msgid "Show the title of the post (or page) within the menu"
211
  msgstr "Vis titlen på indlægget (eller siden) i menuen"
212
 
213
+ #: add-to-any.php:897
214
  msgid "Additional Options"
215
  msgstr "Yderligere indstillinger"
216
 
217
+ #: add-to-any.php:901
218
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
219
  msgstr "Indsæt koden fra AddToAny's menutypograf i boksen nedenfor!"
220
 
221
+ #: add-to-any.php:905
222
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
223
  msgstr "Nedenfor kan du angive specielle JavaScript-variabler, som skal bruges på din Del-/Gem-menu."
224
 
225
+ #: add-to-any.php:906
226
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
227
  msgstr "Avancerede brugere kan se nærmere på AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">JavaScript API</a>."
228
 
229
+ #: add-to-any.php:912
230
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
231
  msgstr "<strong>Bemærk</strong>: Hvis du tilføjer ny kode, så vær forsigtig, så du ikke ved et uheld overskriver eksisterende kode."
232
 
233
+ #: add-to-any.php:917
234
  #, fuzzy
235
  msgid "Advanced Options"
236
  msgstr "Yderligere indstillinger"
237
 
238
+ #: add-to-any.php:922
239
  msgid "Use CSS stylesheet"
240
  msgstr ""
241
 
242
+ #: add-to-any.php:927
243
  msgid "Cache AddToAny locally with daily cache updates"
244
  msgstr ""
245
 
246
+ #: add-to-any.php:931
247
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
248
  msgstr ""
249
 
250
+ #: add-to-any.php:938
251
  msgid "Save Changes"
252
  msgstr "Gem ændringer"
253
 
254
+ #: add-to-any.php:939
255
  msgid "Are you sure you want to delete all AddToAny options?"
256
  msgstr ""
257
 
258
+ #: add-to-any.php:939
259
  msgid "Reset"
260
  msgstr ""
261
 
262
+ #: add-to-any.php:944
263
  msgid "Like this plugin?"
264
  msgstr "Kan du lide dette plugin?"
265
 
266
+ #: add-to-any.php:945
267
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
268
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Giv det en god bedømmelse </a>på WordPress.org."
269
 
270
+ #: add-to-any.php:946
271
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
272
  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."
273
 
274
+ #: add-to-any.php:948
275
  msgid "Need support?"
276
  msgstr "Har du brug for support?"
277
 
278
+ #: add-to-any.php:949
279
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
280
  msgstr "Se vores <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ (Ofte Stillede Spørgsmål)</a>."
281
 
282
+ #: add-to-any.php:950
283
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
284
  msgstr "Søg på <a href=\"http://wordpress.org/tags/add-to-any\">supportforummerne</a>."
285
 
286
+ #: add-to-any.php:1075
287
  msgid "Add/Remove Services"
288
  msgstr "Tilføj/fjern tjenesteudbydere"
289
 
290
+ #: add-to-any.php:1132
291
  msgid "Share/Save"
292
  msgstr "Del/Gem"
293
 
294
+ #: add-to-any.php:1133
295
  msgid "Share/Save Buttons"
296
  msgstr "Del-/Gem-knapper"
297
 
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: 2011-02-16 00:10-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
@@ -13,281 +13,281 @@ msgstr ""
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: add-to-any.php:313
17
  msgid "Share"
18
  msgstr ""
19
 
20
- #: add-to-any.php:314
21
  msgid "Save"
22
  msgstr ""
23
 
24
- #: add-to-any.php:315
25
  msgid "Subscribe"
26
  msgstr ""
27
 
28
- #: add-to-any.php:316
29
  msgid "E-mail"
30
  msgstr ""
31
 
32
- #: add-to-any.php:317
33
  msgid "Bookmark"
34
  msgstr ""
35
 
36
- #: add-to-any.php:318
37
  msgid "Show all"
38
  msgstr "Alle anzeigen"
39
 
40
- #: add-to-any.php:319
41
  msgid "Show less"
42
  msgstr ""
43
 
44
- #: add-to-any.php:320
45
  msgid "Find service(s)"
46
  msgstr "Dienst(e) suchen"
47
 
48
- #: add-to-any.php:321
49
  msgid "Instantly find any service to add to"
50
  msgstr ""
51
 
52
- #: add-to-any.php:322
53
  msgid "Powered by"
54
  msgstr ""
55
 
56
- #: add-to-any.php:323
57
  msgid "Share via e-mail"
58
  msgstr ""
59
 
60
- #: add-to-any.php:324
61
  msgid "Subscribe via e-mail"
62
  msgstr ""
63
 
64
- #: add-to-any.php:325
65
  msgid "Bookmark in your browser"
66
  msgstr ""
67
 
68
- #: add-to-any.php:326
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:327
74
  msgid "Add to your favorites"
75
  msgstr ""
76
 
77
- #: add-to-any.php:328
78
  msgid "Send from any e-mail address or e-mail program"
79
  msgstr ""
80
 
81
- #: add-to-any.php:329
82
  msgid "E-mail program"
83
  msgstr ""
84
 
85
- #: add-to-any.php:354
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:511
90
  #, php-format
91
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
92
  msgstr ""
93
 
94
- #: add-to-any.php:645
95
- #: add-to-any.php:769
96
- #: add-to-any.php:773
97
- #: add-to-any.php:777
98
- #: add-to-any.php:781
99
- #: add-to-any.php:813
100
  msgid "Share/Bookmark"
101
  msgstr ""
102
 
103
- #: add-to-any.php:658
104
  msgid "Settings saved."
105
  msgstr ""
106
 
107
- #: add-to-any.php:679
108
  msgid "bottom"
109
  msgstr ""
110
 
111
- #: add-to-any.php:683
112
  msgid "top"
113
  msgstr ""
114
 
115
- #: add-to-any.php:687
116
  msgid "top &amp; bottom"
117
  msgstr ""
118
 
119
- #: add-to-any.php:718
120
  msgid "AddToAny: Share/Save "
121
  msgstr ""
122
 
123
- #: add-to-any.php:718
124
- #: add-to-any.php:1123
125
- #: add-to-any.php:1154
126
  msgid "Settings"
127
  msgstr ""
128
 
129
- #: add-to-any.php:727
130
  msgid "Standalone Services"
131
  msgstr ""
132
 
133
- #: add-to-any.php:732
134
  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."
135
  msgstr ""
136
 
137
- #: add-to-any.php:764
138
  msgid "Button"
139
  msgstr ""
140
 
141
- #: add-to-any.php:803
142
  msgid "Image URL"
143
  msgstr ""
144
 
145
- #: add-to-any.php:810
146
  msgid "Text only"
147
  msgstr ""
148
 
149
- #: add-to-any.php:818
150
  msgid "Placement"
151
  msgstr ""
152
 
153
- #: add-to-any.php:823
154
  #, php-format
155
  msgid "Display at the %s of posts"
156
  msgstr ""
157
 
158
- #: add-to-any.php:830
159
  #, php-format
160
  msgid "Display at the %s of post excerpts"
161
  msgstr ""
162
 
163
- #: add-to-any.php:837
164
  #, php-format
165
  msgid "Display at the %s of posts on the front page"
166
  msgstr ""
167
 
168
- #: add-to-any.php:845
169
  #, php-format
170
  msgid "Display at the %s of posts in the feed"
171
  msgstr ""
172
 
173
- #: add-to-any.php:849
174
  #, php-format
175
  msgid "Display at the %s of pages"
176
  msgstr ""
177
 
178
- #: add-to-any.php:853
179
  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>)"
180
  msgstr ""
181
 
182
- #: add-to-any.php:862
183
  msgid "Menu Style"
184
  msgstr ""
185
 
186
- #: add-to-any.php:864
187
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
188
  msgstr ""
189
 
190
- #: add-to-any.php:866
191
  msgid "Open the AddToAny Menu Styler in a new window"
192
  msgstr ""
193
 
194
- #: add-to-any.php:868
195
  msgid "Open Menu Styler"
196
  msgstr ""
197
 
198
- #: add-to-any.php:873
199
  msgid "Menu Options"
200
  msgstr ""
201
 
202
- #: add-to-any.php:878
203
  msgid "Only show the menu when the user clicks the Share/Save button"
204
  msgstr ""
205
 
206
- #: add-to-any.php:883
207
  msgid "Show the title of the post (or page) within the menu"
208
  msgstr ""
209
 
210
- #: add-to-any.php:888
211
  msgid "Additional Options"
212
  msgstr ""
213
 
214
- #: add-to-any.php:892
215
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
216
  msgstr ""
217
 
218
- #: add-to-any.php:896
219
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
220
  msgstr ""
221
 
222
- #: add-to-any.php:897
223
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
224
  msgstr ""
225
 
226
- #: add-to-any.php:903
227
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
228
  msgstr ""
229
 
230
- #: add-to-any.php:908
231
  msgid "Advanced Options"
232
  msgstr ""
233
 
234
- #: add-to-any.php:913
235
  msgid "Use CSS stylesheet"
236
  msgstr ""
237
 
238
- #: add-to-any.php:918
239
  msgid "Cache AddToAny locally with daily cache updates"
240
  msgstr ""
241
 
242
- #: add-to-any.php:922
243
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
244
  msgstr ""
245
 
246
- #: add-to-any.php:929
247
  msgid "Save Changes"
248
  msgstr ""
249
 
250
- #: add-to-any.php:930
251
  msgid "Are you sure you want to delete all AddToAny options?"
252
  msgstr ""
253
 
254
- #: add-to-any.php:930
255
  msgid "Reset"
256
  msgstr ""
257
 
258
- #: add-to-any.php:935
259
  msgid "Like this plugin?"
260
  msgstr ""
261
 
262
- #: add-to-any.php:936
263
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
264
  msgstr ""
265
 
266
- #: add-to-any.php:937
267
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
268
  msgstr ""
269
 
270
- #: add-to-any.php:939
271
  msgid "Need support?"
272
  msgstr ""
273
 
274
- #: add-to-any.php:940
275
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
276
  msgstr ""
277
 
278
- #: add-to-any.php:941
279
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
280
  msgstr ""
281
 
282
- #: add-to-any.php:1066
283
  msgid "Add/Remove Services"
284
  msgstr ""
285
 
286
- #: add-to-any.php:1123
287
  msgid "Share/Save"
288
  msgstr ""
289
 
290
- #: add-to-any.php:1124
291
  msgid "Share/Save Buttons"
292
  msgstr ""
293
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-23 20:39-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
+ #: add-to-any.php:322
17
  msgid "Share"
18
  msgstr ""
19
 
20
+ #: add-to-any.php:323
21
  msgid "Save"
22
  msgstr ""
23
 
24
+ #: add-to-any.php:324
25
  msgid "Subscribe"
26
  msgstr ""
27
 
28
+ #: add-to-any.php:325
29
  msgid "E-mail"
30
  msgstr ""
31
 
32
+ #: add-to-any.php:326
33
  msgid "Bookmark"
34
  msgstr ""
35
 
36
+ #: add-to-any.php:327
37
  msgid "Show all"
38
  msgstr "Alle anzeigen"
39
 
40
+ #: add-to-any.php:328
41
  msgid "Show less"
42
  msgstr ""
43
 
44
+ #: add-to-any.php:329
45
  msgid "Find service(s)"
46
  msgstr "Dienst(e) suchen"
47
 
48
+ #: add-to-any.php:330
49
  msgid "Instantly find any service to add to"
50
  msgstr ""
51
 
52
+ #: add-to-any.php:331
53
  msgid "Powered by"
54
  msgstr ""
55
 
56
+ #: add-to-any.php:332
57
  msgid "Share via e-mail"
58
  msgstr ""
59
 
60
+ #: add-to-any.php:333
61
  msgid "Subscribe via e-mail"
62
  msgstr ""
63
 
64
+ #: add-to-any.php:334
65
  msgid "Bookmark in your browser"
66
  msgstr ""
67
 
68
+ #: add-to-any.php:335
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:336
74
  msgid "Add to your favorites"
75
  msgstr ""
76
 
77
+ #: add-to-any.php:337
78
  msgid "Send from any e-mail address or e-mail program"
79
  msgstr ""
80
 
81
+ #: add-to-any.php:338
82
  msgid "E-mail program"
83
  msgstr ""
84
 
85
+ #: add-to-any.php:363
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:520
90
  #, php-format
91
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
92
  msgstr ""
93
 
94
+ #: add-to-any.php:654
95
+ #: add-to-any.php:778
96
+ #: add-to-any.php:782
97
+ #: add-to-any.php:786
98
+ #: add-to-any.php:790
99
+ #: add-to-any.php:822
100
  msgid "Share/Bookmark"
101
  msgstr ""
102
 
103
+ #: add-to-any.php:667
104
  msgid "Settings saved."
105
  msgstr ""
106
 
107
+ #: add-to-any.php:688
108
  msgid "bottom"
109
  msgstr ""
110
 
111
+ #: add-to-any.php:692
112
  msgid "top"
113
  msgstr ""
114
 
115
+ #: add-to-any.php:696
116
  msgid "top &amp; bottom"
117
  msgstr ""
118
 
119
+ #: add-to-any.php:727
120
  msgid "AddToAny: Share/Save "
121
  msgstr ""
122
 
123
+ #: add-to-any.php:727
124
+ #: add-to-any.php:1132
125
+ #: add-to-any.php:1163
126
  msgid "Settings"
127
  msgstr ""
128
 
129
+ #: add-to-any.php:736
130
  msgid "Standalone Services"
131
  msgstr ""
132
 
133
+ #: add-to-any.php:741
134
  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."
135
  msgstr ""
136
 
137
+ #: add-to-any.php:773
138
  msgid "Button"
139
  msgstr ""
140
 
141
+ #: add-to-any.php:812
142
  msgid "Image URL"
143
  msgstr ""
144
 
145
+ #: add-to-any.php:819
146
  msgid "Text only"
147
  msgstr ""
148
 
149
+ #: add-to-any.php:827
150
  msgid "Placement"
151
  msgstr ""
152
 
153
+ #: add-to-any.php:832
154
  #, php-format
155
  msgid "Display at the %s of posts"
156
  msgstr ""
157
 
158
+ #: add-to-any.php:839
159
  #, php-format
160
  msgid "Display at the %s of post excerpts"
161
  msgstr ""
162
 
163
+ #: add-to-any.php:846
164
  #, php-format
165
  msgid "Display at the %s of posts on the front page"
166
  msgstr ""
167
 
168
+ #: add-to-any.php:854
169
  #, php-format
170
  msgid "Display at the %s of posts in the feed"
171
  msgstr ""
172
 
173
+ #: add-to-any.php:858
174
  #, php-format
175
  msgid "Display at the %s of pages"
176
  msgstr ""
177
 
178
+ #: add-to-any.php:862
179
  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>)"
180
  msgstr ""
181
 
182
+ #: add-to-any.php:871
183
  msgid "Menu Style"
184
  msgstr ""
185
 
186
+ #: add-to-any.php:873
187
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
188
  msgstr ""
189
 
190
+ #: add-to-any.php:875
191
  msgid "Open the AddToAny Menu Styler in a new window"
192
  msgstr ""
193
 
194
+ #: add-to-any.php:877
195
  msgid "Open Menu Styler"
196
  msgstr ""
197
 
198
+ #: add-to-any.php:882
199
  msgid "Menu Options"
200
  msgstr ""
201
 
202
+ #: add-to-any.php:887
203
  msgid "Only show the menu when the user clicks the Share/Save button"
204
  msgstr ""
205
 
206
+ #: add-to-any.php:892
207
  msgid "Show the title of the post (or page) within the menu"
208
  msgstr ""
209
 
210
+ #: add-to-any.php:897
211
  msgid "Additional Options"
212
  msgstr ""
213
 
214
+ #: add-to-any.php:901
215
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
216
  msgstr ""
217
 
218
+ #: add-to-any.php:905
219
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
220
  msgstr ""
221
 
222
+ #: add-to-any.php:906
223
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
224
  msgstr ""
225
 
226
+ #: add-to-any.php:912
227
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
228
  msgstr ""
229
 
230
+ #: add-to-any.php:917
231
  msgid "Advanced Options"
232
  msgstr ""
233
 
234
+ #: add-to-any.php:922
235
  msgid "Use CSS stylesheet"
236
  msgstr ""
237
 
238
+ #: add-to-any.php:927
239
  msgid "Cache AddToAny locally with daily cache updates"
240
  msgstr ""
241
 
242
+ #: add-to-any.php:931
243
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
244
  msgstr ""
245
 
246
+ #: add-to-any.php:938
247
  msgid "Save Changes"
248
  msgstr ""
249
 
250
+ #: add-to-any.php:939
251
  msgid "Are you sure you want to delete all AddToAny options?"
252
  msgstr ""
253
 
254
+ #: add-to-any.php:939
255
  msgid "Reset"
256
  msgstr ""
257
 
258
+ #: add-to-any.php:944
259
  msgid "Like this plugin?"
260
  msgstr ""
261
 
262
+ #: add-to-any.php:945
263
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
264
  msgstr ""
265
 
266
+ #: add-to-any.php:946
267
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
268
  msgstr ""
269
 
270
+ #: add-to-any.php:948
271
  msgid "Need support?"
272
  msgstr ""
273
 
274
+ #: add-to-any.php:949
275
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
276
  msgstr ""
277
 
278
+ #: add-to-any.php:950
279
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
280
  msgstr ""
281
 
282
+ #: add-to-any.php:1075
283
  msgid "Add/Remove Services"
284
  msgstr ""
285
 
286
+ #: add-to-any.php:1132
287
  msgid "Share/Save"
288
  msgstr ""
289
 
290
+ #: add-to-any.php:1133
291
  msgid "Share/Save Buttons"
292
  msgstr ""
293
 
languages/add-to-any-de_DE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AddToAny: Share/Bookmark/Email Button v.9.9.6.7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-02-16 00:10-0800\n"
6
- "PO-Revision-Date: 2011-02-16 00:10-0800\n"
7
  "Last-Translator: MediaCenter Laufenberg <info@portavision.de>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -19,340 +19,340 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  # @ add-to-any
22
- #: add-to-any.php:313
23
  msgid "Share"
24
  msgstr "Empfehlen"
25
 
26
  # @ add-to-any
27
- #: add-to-any.php:314
28
  msgid "Save"
29
  msgstr "Speichern"
30
 
31
  # @ add-to-any
32
- #: add-to-any.php:315
33
  msgid "Subscribe"
34
  msgstr "Abonnieren"
35
 
36
  # @ add-to-any
37
- #: add-to-any.php:316
38
  msgid "E-mail"
39
  msgstr "E-Mail"
40
 
41
  # @ add-to-any
42
- #: add-to-any.php:317
43
  msgid "Bookmark"
44
  msgstr "Bookmark"
45
 
46
  # @ add-to-any
47
- #: add-to-any.php:318
48
  msgid "Show all"
49
  msgstr "zeige alle"
50
 
51
  # @ add-to-any
52
- #: add-to-any.php:319
53
  msgid "Show less"
54
  msgstr "Zeige weniger"
55
 
56
  # @ add-to-any
57
- #: add-to-any.php:320
58
  msgid "Find service(s)"
59
  msgstr "Finden Dienstleistung(en)"
60
 
61
  # @ add-to-any
62
- #: add-to-any.php:321
63
  msgid "Instantly find any service to add to"
64
  msgstr "Um weitere Dienste ergänzen"
65
 
66
  # @ add-to-any
67
- #: add-to-any.php:322
68
  msgid "Powered by"
69
  msgstr "Powered by"
70
 
71
  # @ add-to-any
72
- #: add-to-any.php:323
73
  msgid "Share via e-mail"
74
  msgstr "per E-Mail empfehlen"
75
 
76
  # @ add-to-any
77
- #: add-to-any.php:324
78
  msgid "Subscribe via e-mail"
79
  msgstr "per E-Mail abonnieren"
80
 
81
  # @ add-to-any
82
- #: add-to-any.php:325
83
  msgid "Bookmark in your browser"
84
  msgstr "Seite den Bookmarks hinzufügen"
85
 
86
  # @ add-to-any
87
- #: add-to-any.php:326
88
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
89
  msgstr "Drücken Sie Strg + D oder ⌘ + D, um diese Seite den Bookmarks hinzuzufügen"
90
 
91
  # @ add-to-any
92
- #: add-to-any.php:327
93
  msgid "Add to your favorites"
94
  msgstr "Zu Ihren Favoriten hinzufügen"
95
 
96
  # @ add-to-any
97
- #: add-to-any.php:328
98
  msgid "Send from any e-mail address or e-mail program"
99
  msgstr "Von E-Mail-Adresse oder E-Mail-Programm senden"
100
 
101
  # @ add-to-any
102
- #: add-to-any.php:329
103
  msgid "E-mail program"
104
  msgstr "E-Mail-Programm"
105
 
106
  # @ default
107
- #: add-to-any.php:354
108
  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."
109
  msgstr ""
110
 
111
  # @ default
112
- #: add-to-any.php:511
113
  #, php-format
114
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
115
  msgstr ""
116
 
117
  # @ add-to-any
118
- #: add-to-any.php:645
119
- #: add-to-any.php:769
120
- #: add-to-any.php:773
121
- #: add-to-any.php:777
122
- #: add-to-any.php:781
123
- #: add-to-any.php:813
124
  msgid "Share/Bookmark"
125
  msgstr "Empfehlen/Bookmark"
126
 
127
  # @ default
128
- #: add-to-any.php:658
129
  msgid "Settings saved."
130
  msgstr ""
131
 
132
- #: add-to-any.php:679
133
  msgid "bottom"
134
  msgstr ""
135
 
136
- #: add-to-any.php:683
137
  msgid "top"
138
  msgstr ""
139
 
140
- #: add-to-any.php:687
141
  msgid "top &amp; bottom"
142
  msgstr ""
143
 
144
  # @ add-to-any
145
- #: add-to-any.php:718
146
  msgid "AddToAny: Share/Save "
147
  msgstr "AddToAny: Empfehlen/Speichern"
148
 
149
  # @ default
150
- #: add-to-any.php:718
151
- #: add-to-any.php:1123
152
- #: add-to-any.php:1154
153
  msgid "Settings"
154
  msgstr ""
155
 
156
  # @ add-to-any
157
- #: add-to-any.php:727
158
  msgid "Standalone Services"
159
  msgstr "einzelne Services"
160
 
161
  # @ add-to-any
162
- #: add-to-any.php:732
163
  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."
164
  msgstr "Wählen Sie die gewünschten Dienste aus. Klicken Sie auf einen gewählten Dienst erneut um ihn wieder zu entfernen. Per Drag &amp; Drop können Sie die Reihenfolge bestimmen."
165
 
166
  # @ add-to-any
167
- #: add-to-any.php:764
168
  msgid "Button"
169
  msgstr "Button"
170
 
171
  # @ default
172
- #: add-to-any.php:803
173
  msgid "Image URL"
174
  msgstr ""
175
 
176
  # @ default
177
- #: add-to-any.php:810
178
  msgid "Text only"
179
  msgstr ""
180
 
181
  # @ add-to-any
182
- #: add-to-any.php:818
183
  msgid "Placement"
184
  msgstr "Platzierung"
185
 
186
  # @ add-to-any
187
- #: add-to-any.php:823
188
  #, fuzzy, php-format
189
  msgid "Display at the %s of posts"
190
  msgstr "unterhalb von Beiträgen anzeigen lassen"
191
 
192
  # @ add-to-any
193
- #: add-to-any.php:830
194
  #, fuzzy, php-format
195
  msgid "Display at the %s of post excerpts"
196
  msgstr "am unteren Rand von Beitrags-Auszügen anzeigen lassen"
197
 
198
  # @ add-to-any
199
- #: add-to-any.php:837
200
  #, fuzzy, php-format
201
  msgid "Display at the %s of posts on the front page"
202
  msgstr "am unteren Rand der Beiträge auf der Startseite anzeigen lassen"
203
 
204
  # @ add-to-any
205
- #: add-to-any.php:845
206
  #, fuzzy, php-format
207
  msgid "Display at the %s of posts in the feed"
208
  msgstr "am unteren Rand der Beiträge im Feed anzeigen"
209
 
210
  # @ add-to-any
211
- #: add-to-any.php:849
212
  #, fuzzy, php-format
213
  msgid "Display at the %s of pages"
214
  msgstr "Anzeige am unteren Rand bei statischen Seiten"
215
 
216
  # @ add-to-any
217
- #: add-to-any.php:853
218
  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>)"
219
  msgstr "Ist diese Option deaktiviert, müssen Sie den folgenden Code <a href=\"theme-editor.php\">Ihren Vorlage-Seiten</a> (innherhalb <code>index.php</code> , <code>single.php</code> und / oder <code>page.php</code> ) manuell hinzufügen"
220
 
221
  # @ add-to-any
222
- #: add-to-any.php:862
223
  msgid "Menu Style"
224
  msgstr "Menüstil"
225
 
226
  # @ add-to-any
227
- #: add-to-any.php:864
228
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
229
  msgstr "Mit AddToAny&#39;s Menu Styler können Sie die Farben des Empfehlen/Speichern-Menü selbst festlegen. Den generierten Code fügen Sie unter <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Zusätzliche Optionen</a> in das Feld ein."
230
 
231
  # @ add-to-any
232
- #: add-to-any.php:866
233
  msgid "Open the AddToAny Menu Styler in a new window"
234
  msgstr "AddToAny Menü-Styler in einem neuen Fenster öffnen"
235
 
236
  # @ add-to-any
237
- #: add-to-any.php:868
238
  msgid "Open Menu Styler"
239
  msgstr "Menü-Styler öffnen"
240
 
241
  # @ add-to-any
242
- #: add-to-any.php:873
243
  msgid "Menu Options"
244
  msgstr "Menü-Optionen"
245
 
246
  # @ add-to-any
247
- #: add-to-any.php:878
248
  msgid "Only show the menu when the user clicks the Share/Save button"
249
  msgstr "Menü erst dann zeigen, wenn der Benutzer auf den Empfehlen/Speichern-Knopf drückt"
250
 
251
  # @ add-to-any
252
- #: add-to-any.php:883
253
  msgid "Show the title of the post (or page) within the menu"
254
  msgstr "Den Titel des Beitrags oder der Seite im Menü anzeigen"
255
 
256
  # @ add-to-any
257
- #: add-to-any.php:888
258
  msgid "Additional Options"
259
  msgstr "Zusätzliche Optionen"
260
 
261
  # @ add-to-any
262
- #: add-to-any.php:892
263
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
264
  msgstr "Fügen Sie den Code aus AddToAny&#39;s Menü-Styler in das untere Feld ein!"
265
 
266
  # @ add-to-any
267
- #: add-to-any.php:896
268
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
269
  msgstr "Hier können Sie spezielle JavaScript-Variablen für jedes \\\"Empfehlen/Speichern\\\"-Menü festlegen."
270
 
271
  # @ add-to-any
272
- #: add-to-any.php:897
273
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
274
  msgstr "Erfahrene Benutzer sollten auch die individuellen Funktionen unter <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">&raquo;AddToAny zusätzliche Optionen&laquo;</a> ausprobieren."
275
 
276
  # @ add-to-any
277
- #: add-to-any.php:903
278
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
279
  msgstr "<strong>Hinweis:</strong> Wenn Sie neuen Code hinzufügen sollten Sie darauf achten, dass Sie nicht den vorherigen Code überschreiben. Dies könnte zu Fehlern führen!"
280
 
281
  # @ add-to-any
282
- #: add-to-any.php:908
283
  msgid "Advanced Options"
284
  msgstr "Erweiterte Optionen"
285
 
286
  # @ add-to-any
287
- #: add-to-any.php:913
288
  msgid "Use CSS stylesheet"
289
  msgstr "Verwenden Sie CSS-Stylesheet"
290
 
291
  # @ add-to-any
292
- #: add-to-any.php:918
293
  msgid "Cache AddToAny locally with daily cache updates"
294
  msgstr "AddToAny lokal mit täglichen Updates Cachen"
295
 
296
  # @ add-to-any
297
- #: add-to-any.php:922
298
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
299
  msgstr "Nur für Webseiten mit häufig wiederkehrenden Besuchern zu empfehlen. Bei den Besuchern, in deren Browser AddToAny-Cache bereits eingestellt ist kann es dazu führen dass Ihre Seiten langsamer ausgeliefert werden. Achten Sie darauf, das &raquo;Cache/Ablauf&laquo;-Zeitlimit für Bild-Dateien in Ihrem <code>uploads/addtoany</code> Verzeichnis in die entfernte Zukunft festzulegen."
300
 
301
  # @ add-to-any
302
- #: add-to-any.php:929
303
  msgid "Save Changes"
304
  msgstr "Änderungen speichern"
305
 
306
- #: add-to-any.php:930
307
  msgid "Are you sure you want to delete all AddToAny options?"
308
  msgstr ""
309
 
310
- #: add-to-any.php:930
311
  msgid "Reset"
312
  msgstr ""
313
 
314
  # @ add-to-any
315
- #: add-to-any.php:935
316
  msgid "Like this plugin?"
317
  msgstr "Gefällt Ihnen dieses Plugin?"
318
 
319
  # @ add-to-any
320
- #: add-to-any.php:936
321
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
322
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Geben Sie diesem Plugin ein gutes Rating</a> auf WordPress.org."
323
 
324
  # @ add-to-any
325
- #: add-to-any.php:937
326
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
327
  msgstr "<a href=\\\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\\\">Empfehlen Sie diesen Beitrag</a> Ihren Freunden."
328
 
329
  # @ add-to-any
330
- #: add-to-any.php:939
331
  msgid "Need support?"
332
  msgstr "Brauchen Sie Unterstützung?"
333
 
334
  # @ add-to-any
335
- #: add-to-any.php:940
336
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
337
  msgstr "Weitere Infos finden Sie in den <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs (frequently asked questions)</a>."
338
 
339
  # @ add-to-any
340
- #: add-to-any.php:941
341
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
342
  msgstr "Suchen Sie auch in den <a href=\"http://wordpress.org/tags/add-to-any\">Support-Foren</a> ."
343
 
344
  # @ add-to-any
345
- #: add-to-any.php:1066
346
  msgid "Add/Remove Services"
347
  msgstr "Dienste hinzufügen / entfernen"
348
 
349
  # @ add-to-any
350
- #: add-to-any.php:1123
351
  msgid "Share/Save"
352
  msgstr "Empfehlen / Speichern"
353
 
354
  # @ add-to-any
355
- #: add-to-any.php:1124
356
  msgid "Share/Save Buttons"
357
  msgstr "Empfehlen / Speichern Knopf"
358
 
2
  msgstr ""
3
  "Project-Id-Version: AddToAny: Share/Bookmark/Email Button v.9.9.6.7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-23 20:39-0800\n"
6
+ "PO-Revision-Date: 2011-02-23 20:39-0800\n"
7
  "Last-Translator: MediaCenter Laufenberg <info@portavision.de>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  # @ add-to-any
22
+ #: add-to-any.php:322
23
  msgid "Share"
24
  msgstr "Empfehlen"
25
 
26
  # @ add-to-any
27
+ #: add-to-any.php:323
28
  msgid "Save"
29
  msgstr "Speichern"
30
 
31
  # @ add-to-any
32
+ #: add-to-any.php:324
33
  msgid "Subscribe"
34
  msgstr "Abonnieren"
35
 
36
  # @ add-to-any
37
+ #: add-to-any.php:325
38
  msgid "E-mail"
39
  msgstr "E-Mail"
40
 
41
  # @ add-to-any
42
+ #: add-to-any.php:326
43
  msgid "Bookmark"
44
  msgstr "Bookmark"
45
 
46
  # @ add-to-any
47
+ #: add-to-any.php:327
48
  msgid "Show all"
49
  msgstr "zeige alle"
50
 
51
  # @ add-to-any
52
+ #: add-to-any.php:328
53
  msgid "Show less"
54
  msgstr "Zeige weniger"
55
 
56
  # @ add-to-any
57
+ #: add-to-any.php:329
58
  msgid "Find service(s)"
59
  msgstr "Finden Dienstleistung(en)"
60
 
61
  # @ add-to-any
62
+ #: add-to-any.php:330
63
  msgid "Instantly find any service to add to"
64
  msgstr "Um weitere Dienste ergänzen"
65
 
66
  # @ add-to-any
67
+ #: add-to-any.php:331
68
  msgid "Powered by"
69
  msgstr "Powered by"
70
 
71
  # @ add-to-any
72
+ #: add-to-any.php:332
73
  msgid "Share via e-mail"
74
  msgstr "per E-Mail empfehlen"
75
 
76
  # @ add-to-any
77
+ #: add-to-any.php:333
78
  msgid "Subscribe via e-mail"
79
  msgstr "per E-Mail abonnieren"
80
 
81
  # @ add-to-any
82
+ #: add-to-any.php:334
83
  msgid "Bookmark in your browser"
84
  msgstr "Seite den Bookmarks hinzufügen"
85
 
86
  # @ add-to-any
87
+ #: add-to-any.php:335
88
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
89
  msgstr "Drücken Sie Strg + D oder ⌘ + D, um diese Seite den Bookmarks hinzuzufügen"
90
 
91
  # @ add-to-any
92
+ #: add-to-any.php:336
93
  msgid "Add to your favorites"
94
  msgstr "Zu Ihren Favoriten hinzufügen"
95
 
96
  # @ add-to-any
97
+ #: add-to-any.php:337
98
  msgid "Send from any e-mail address or e-mail program"
99
  msgstr "Von E-Mail-Adresse oder E-Mail-Programm senden"
100
 
101
  # @ add-to-any
102
+ #: add-to-any.php:338
103
  msgid "E-mail program"
104
  msgstr "E-Mail-Programm"
105
 
106
  # @ default
107
+ #: add-to-any.php:363
108
  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."
109
  msgstr ""
110
 
111
  # @ default
112
+ #: add-to-any.php:520
113
  #, php-format
114
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
115
  msgstr ""
116
 
117
  # @ add-to-any
118
+ #: add-to-any.php:654
119
+ #: add-to-any.php:778
120
+ #: add-to-any.php:782
121
+ #: add-to-any.php:786
122
+ #: add-to-any.php:790
123
+ #: add-to-any.php:822
124
  msgid "Share/Bookmark"
125
  msgstr "Empfehlen/Bookmark"
126
 
127
  # @ default
128
+ #: add-to-any.php:667
129
  msgid "Settings saved."
130
  msgstr ""
131
 
132
+ #: add-to-any.php:688
133
  msgid "bottom"
134
  msgstr ""
135
 
136
+ #: add-to-any.php:692
137
  msgid "top"
138
  msgstr ""
139
 
140
+ #: add-to-any.php:696
141
  msgid "top &amp; bottom"
142
  msgstr ""
143
 
144
  # @ add-to-any
145
+ #: add-to-any.php:727
146
  msgid "AddToAny: Share/Save "
147
  msgstr "AddToAny: Empfehlen/Speichern"
148
 
149
  # @ default
150
+ #: add-to-any.php:727
151
+ #: add-to-any.php:1132
152
+ #: add-to-any.php:1163
153
  msgid "Settings"
154
  msgstr ""
155
 
156
  # @ add-to-any
157
+ #: add-to-any.php:736
158
  msgid "Standalone Services"
159
  msgstr "einzelne Services"
160
 
161
  # @ add-to-any
162
+ #: add-to-any.php:741
163
  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."
164
  msgstr "Wählen Sie die gewünschten Dienste aus. Klicken Sie auf einen gewählten Dienst erneut um ihn wieder zu entfernen. Per Drag &amp; Drop können Sie die Reihenfolge bestimmen."
165
 
166
  # @ add-to-any
167
+ #: add-to-any.php:773
168
  msgid "Button"
169
  msgstr "Button"
170
 
171
  # @ default
172
+ #: add-to-any.php:812
173
  msgid "Image URL"
174
  msgstr ""
175
 
176
  # @ default
177
+ #: add-to-any.php:819
178
  msgid "Text only"
179
  msgstr ""
180
 
181
  # @ add-to-any
182
+ #: add-to-any.php:827
183
  msgid "Placement"
184
  msgstr "Platzierung"
185
 
186
  # @ add-to-any
187
+ #: add-to-any.php:832
188
  #, fuzzy, php-format
189
  msgid "Display at the %s of posts"
190
  msgstr "unterhalb von Beiträgen anzeigen lassen"
191
 
192
  # @ add-to-any
193
+ #: add-to-any.php:839
194
  #, fuzzy, php-format
195
  msgid "Display at the %s of post excerpts"
196
  msgstr "am unteren Rand von Beitrags-Auszügen anzeigen lassen"
197
 
198
  # @ add-to-any
199
+ #: add-to-any.php:846
200
  #, fuzzy, php-format
201
  msgid "Display at the %s of posts on the front page"
202
  msgstr "am unteren Rand der Beiträge auf der Startseite anzeigen lassen"
203
 
204
  # @ add-to-any
205
+ #: add-to-any.php:854
206
  #, fuzzy, php-format
207
  msgid "Display at the %s of posts in the feed"
208
  msgstr "am unteren Rand der Beiträge im Feed anzeigen"
209
 
210
  # @ add-to-any
211
+ #: add-to-any.php:858
212
  #, fuzzy, php-format
213
  msgid "Display at the %s of pages"
214
  msgstr "Anzeige am unteren Rand bei statischen Seiten"
215
 
216
  # @ add-to-any
217
+ #: add-to-any.php:862
218
  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>)"
219
  msgstr "Ist diese Option deaktiviert, müssen Sie den folgenden Code <a href=\"theme-editor.php\">Ihren Vorlage-Seiten</a> (innherhalb <code>index.php</code> , <code>single.php</code> und / oder <code>page.php</code> ) manuell hinzufügen"
220
 
221
  # @ add-to-any
222
+ #: add-to-any.php:871
223
  msgid "Menu Style"
224
  msgstr "Menüstil"
225
 
226
  # @ add-to-any
227
+ #: add-to-any.php:873
228
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
229
  msgstr "Mit AddToAny&#39;s Menu Styler können Sie die Farben des Empfehlen/Speichern-Menü selbst festlegen. Den generierten Code fügen Sie unter <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Zusätzliche Optionen</a> in das Feld ein."
230
 
231
  # @ add-to-any
232
+ #: add-to-any.php:875
233
  msgid "Open the AddToAny Menu Styler in a new window"
234
  msgstr "AddToAny Menü-Styler in einem neuen Fenster öffnen"
235
 
236
  # @ add-to-any
237
+ #: add-to-any.php:877
238
  msgid "Open Menu Styler"
239
  msgstr "Menü-Styler öffnen"
240
 
241
  # @ add-to-any
242
+ #: add-to-any.php:882
243
  msgid "Menu Options"
244
  msgstr "Menü-Optionen"
245
 
246
  # @ add-to-any
247
+ #: add-to-any.php:887
248
  msgid "Only show the menu when the user clicks the Share/Save button"
249
  msgstr "Menü erst dann zeigen, wenn der Benutzer auf den Empfehlen/Speichern-Knopf drückt"
250
 
251
  # @ add-to-any
252
+ #: add-to-any.php:892
253
  msgid "Show the title of the post (or page) within the menu"
254
  msgstr "Den Titel des Beitrags oder der Seite im Menü anzeigen"
255
 
256
  # @ add-to-any
257
+ #: add-to-any.php:897
258
  msgid "Additional Options"
259
  msgstr "Zusätzliche Optionen"
260
 
261
  # @ add-to-any
262
+ #: add-to-any.php:901
263
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
264
  msgstr "Fügen Sie den Code aus AddToAny&#39;s Menü-Styler in das untere Feld ein!"
265
 
266
  # @ add-to-any
267
+ #: add-to-any.php:905
268
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
269
  msgstr "Hier können Sie spezielle JavaScript-Variablen für jedes \\\"Empfehlen/Speichern\\\"-Menü festlegen."
270
 
271
  # @ add-to-any
272
+ #: add-to-any.php:906
273
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
274
  msgstr "Erfahrene Benutzer sollten auch die individuellen Funktionen unter <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">&raquo;AddToAny zusätzliche Optionen&laquo;</a> ausprobieren."
275
 
276
  # @ add-to-any
277
+ #: add-to-any.php:912
278
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
279
  msgstr "<strong>Hinweis:</strong> Wenn Sie neuen Code hinzufügen sollten Sie darauf achten, dass Sie nicht den vorherigen Code überschreiben. Dies könnte zu Fehlern führen!"
280
 
281
  # @ add-to-any
282
+ #: add-to-any.php:917
283
  msgid "Advanced Options"
284
  msgstr "Erweiterte Optionen"
285
 
286
  # @ add-to-any
287
+ #: add-to-any.php:922
288
  msgid "Use CSS stylesheet"
289
  msgstr "Verwenden Sie CSS-Stylesheet"
290
 
291
  # @ add-to-any
292
+ #: add-to-any.php:927
293
  msgid "Cache AddToAny locally with daily cache updates"
294
  msgstr "AddToAny lokal mit täglichen Updates Cachen"
295
 
296
  # @ add-to-any
297
+ #: add-to-any.php:931
298
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
299
  msgstr "Nur für Webseiten mit häufig wiederkehrenden Besuchern zu empfehlen. Bei den Besuchern, in deren Browser AddToAny-Cache bereits eingestellt ist kann es dazu führen dass Ihre Seiten langsamer ausgeliefert werden. Achten Sie darauf, das &raquo;Cache/Ablauf&laquo;-Zeitlimit für Bild-Dateien in Ihrem <code>uploads/addtoany</code> Verzeichnis in die entfernte Zukunft festzulegen."
300
 
301
  # @ add-to-any
302
+ #: add-to-any.php:938
303
  msgid "Save Changes"
304
  msgstr "Änderungen speichern"
305
 
306
+ #: add-to-any.php:939
307
  msgid "Are you sure you want to delete all AddToAny options?"
308
  msgstr ""
309
 
310
+ #: add-to-any.php:939
311
  msgid "Reset"
312
  msgstr ""
313
 
314
  # @ add-to-any
315
+ #: add-to-any.php:944
316
  msgid "Like this plugin?"
317
  msgstr "Gefällt Ihnen dieses Plugin?"
318
 
319
  # @ add-to-any
320
+ #: add-to-any.php:945
321
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
322
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Geben Sie diesem Plugin ein gutes Rating</a> auf WordPress.org."
323
 
324
  # @ add-to-any
325
+ #: add-to-any.php:946
326
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
327
  msgstr "<a href=\\\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\\\">Empfehlen Sie diesen Beitrag</a> Ihren Freunden."
328
 
329
  # @ add-to-any
330
+ #: add-to-any.php:948
331
  msgid "Need support?"
332
  msgstr "Brauchen Sie Unterstützung?"
333
 
334
  # @ add-to-any
335
+ #: add-to-any.php:949
336
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
337
  msgstr "Weitere Infos finden Sie in den <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs (frequently asked questions)</a>."
338
 
339
  # @ add-to-any
340
+ #: add-to-any.php:950
341
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
342
  msgstr "Suchen Sie auch in den <a href=\"http://wordpress.org/tags/add-to-any\">Support-Foren</a> ."
343
 
344
  # @ add-to-any
345
+ #: add-to-any.php:1075
346
  msgid "Add/Remove Services"
347
  msgstr "Dienste hinzufügen / entfernen"
348
 
349
  # @ add-to-any
350
+ #: add-to-any.php:1132
351
  msgid "Share/Save"
352
  msgstr "Empfehlen / Speichern"
353
 
354
  # @ add-to-any
355
+ #: add-to-any.php:1133
356
  msgid "Share/Save Buttons"
357
  msgstr "Empfehlen / Speichern Knopf"
358
 
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: 2011-02-16 00:10-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
@@ -13,281 +13,281 @@ msgstr ""
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: add-to-any.php:313
17
  msgid "Share"
18
  msgstr "Compartir"
19
 
20
- #: add-to-any.php:314
21
  msgid "Save"
22
  msgstr "Guardar"
23
 
24
- #: add-to-any.php:315
25
  msgid "Subscribe"
26
  msgstr "Suscribirse"
27
 
28
- #: add-to-any.php:316
29
  msgid "E-mail"
30
  msgstr "E-mail"
31
 
32
- #: add-to-any.php:317
33
  msgid "Bookmark"
34
  msgstr "Marcador"
35
 
36
- #: add-to-any.php:318
37
  msgid "Show all"
38
  msgstr "Mostrar todo"
39
 
40
- #: add-to-any.php:319
41
  msgid "Show less"
42
  msgstr "Mostrar menos"
43
 
44
- #: add-to-any.php:320
45
  msgid "Find service(s)"
46
  msgstr "Buscar servicios(s)"
47
 
48
- #: add-to-any.php:321
49
  msgid "Instantly find any service to add to"
50
  msgstr "Buscar servicio"
51
 
52
- #: add-to-any.php:322
53
  msgid "Powered by"
54
  msgstr "Servicio ofrecido por"
55
 
56
- #: add-to-any.php:323
57
  msgid "Share via e-mail"
58
  msgstr "Compartir por e-mail"
59
 
60
- #: add-to-any.php:324
61
  msgid "Subscribe via e-mail"
62
  msgstr "Suscribirse por e-mail"
63
 
64
- #: add-to-any.php:325
65
  msgid "Bookmark in your browser"
66
  msgstr "Agregar a marcadores de tu navegador"
67
 
68
- #: add-to-any.php:326
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr "Presione Ctrl+D o Cmd+D para marcar esta pagina"
71
 
72
- #: add-to-any.php:327
73
  msgid "Add to your favorites"
74
  msgstr "Agregar a favoritos"
75
 
76
- #: add-to-any.php:328
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr "Enviar de cualquier dirección de e-mail o programa de e-mail"
79
 
80
- #: add-to-any.php:329
81
  msgid "E-mail program"
82
  msgstr "Programa de e-mail"
83
 
84
- #: add-to-any.php:354
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:511
89
  #, php-format
90
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
91
  msgstr ""
92
 
93
- #: add-to-any.php:645
94
- #: add-to-any.php:769
95
- #: add-to-any.php:773
96
- #: add-to-any.php:777
97
- #: add-to-any.php:781
98
- #: add-to-any.php:813
99
  msgid "Share/Bookmark"
100
  msgstr "Marcador"
101
 
102
- #: add-to-any.php:658
103
  msgid "Settings saved."
104
  msgstr "Configuración guardada."
105
 
106
- #: add-to-any.php:679
107
  msgid "bottom"
108
  msgstr ""
109
 
110
- #: add-to-any.php:683
111
  msgid "top"
112
  msgstr ""
113
 
114
- #: add-to-any.php:687
115
  msgid "top &amp; bottom"
116
  msgstr ""
117
 
118
- #: add-to-any.php:718
119
  msgid "AddToAny: Share/Save "
120
  msgstr "AddToAny: Compartir/Guardar "
121
 
122
- #: add-to-any.php:718
123
- #: add-to-any.php:1123
124
- #: add-to-any.php:1154
125
  msgid "Settings"
126
  msgstr "Configuración"
127
 
128
- #: add-to-any.php:727
129
  msgid "Standalone Services"
130
  msgstr ""
131
 
132
- #: add-to-any.php:732
133
  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."
134
  msgstr ""
135
 
136
- #: add-to-any.php:764
137
  msgid "Button"
138
  msgstr "Botón"
139
 
140
- #: add-to-any.php:803
141
  msgid "Image URL"
142
  msgstr "URL de la imagen"
143
 
144
- #: add-to-any.php:810
145
  msgid "Text only"
146
  msgstr "Solo texto"
147
 
148
- #: add-to-any.php:818
149
  msgid "Placement"
150
  msgstr "Ubicación del botón"
151
 
152
- #: add-to-any.php:823
153
  #, fuzzy, php-format
154
  msgid "Display at the %s of posts"
155
  msgstr "Mostrar el botón Compartir/Guardar al final de cada entrada"
156
 
157
- #: add-to-any.php:830
158
  #, php-format
159
  msgid "Display at the %s of post excerpts"
160
  msgstr ""
161
 
162
- #: add-to-any.php:837
163
  #, fuzzy, php-format
164
  msgid "Display at the %s of posts on the front page"
165
  msgstr "Mostrar el botón Compartir/Guardar al final de las entradas en la pagina principal"
166
 
167
- #: add-to-any.php:845
168
  #, fuzzy, php-format
169
  msgid "Display at the %s of posts in the feed"
170
  msgstr "Mostrar el botón Compartir/Guardar al final de las entradas en el feed"
171
 
172
- #: add-to-any.php:849
173
  #, fuzzy, php-format
174
  msgid "Display at the %s of pages"
175
  msgstr "Mostrar el botón Compartir/Guardar al final de las paginas"
176
 
177
- #: add-to-any.php:853
178
  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>)"
179
  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>)"
180
 
181
- #: add-to-any.php:862
182
  msgid "Menu Style"
183
  msgstr "Estilo del menú"
184
 
185
- #: add-to-any.php:864
186
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
187
  msgstr "Usar el personalizador de estilo de AddToAny, 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."
188
 
189
- #: add-to-any.php:866
190
  msgid "Open the AddToAny Menu Styler in a new window"
191
  msgstr "Abrir el personalizador de estilo de AddToAny en una nueva ventana"
192
 
193
- #: add-to-any.php:868
194
  msgid "Open Menu Styler"
195
  msgstr "Abrir el personalizador de estilos"
196
 
197
- #: add-to-any.php:873
198
  msgid "Menu Options"
199
  msgstr "Menú de opciones"
200
 
201
- #: add-to-any.php:878
202
  msgid "Only show the menu when the user clicks the Share/Save button"
203
  msgstr "Mostrar el menú solo cuando un usuario haga click sobre el botón Compartir/Guardar"
204
 
205
- #: add-to-any.php:883
206
  msgid "Show the title of the post (or page) within the menu"
207
  msgstr "Mostrar el título de la entrada (o de la pagina) dentro del menú"
208
 
209
- #: add-to-any.php:888
210
  msgid "Additional Options"
211
  msgstr "Opciones adicionales"
212
 
213
- #: add-to-any.php:892
214
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
215
  msgstr "Pegue el código del personalizador de estilo en el siguiente recuadro"
216
 
217
- #: add-to-any.php:896
218
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
219
  msgstr "Abajo puede inicializar las variables JavaScript especiales para aplicar a cada menú Compartir/Guardar"
220
 
221
- #: add-to-any.php:897
222
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
223
  msgstr "Los usuarios avanzados podrían preferir explorar la <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">API JavaScript</a> de AddToAny."
224
 
225
- #: add-to-any.php:903
226
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
227
  msgstr "<strong>Nota</strong>: Si usted agrega código nuevo, sea cuidadoso de no sobreescribir accidentalmente cualquier código ingresado anteriormente.</label>"
228
 
229
- #: add-to-any.php:908
230
  #, fuzzy
231
  msgid "Advanced Options"
232
  msgstr "Opciones adicionales"
233
 
234
- #: add-to-any.php:913
235
  msgid "Use CSS stylesheet"
236
  msgstr ""
237
 
238
- #: add-to-any.php:918
239
  msgid "Cache AddToAny locally with daily cache updates"
240
  msgstr ""
241
 
242
- #: add-to-any.php:922
243
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
244
  msgstr ""
245
 
246
- #: add-to-any.php:929
247
  msgid "Save Changes"
248
  msgstr "Guardar cambios"
249
 
250
- #: add-to-any.php:930
251
  msgid "Are you sure you want to delete all AddToAny options?"
252
  msgstr ""
253
 
254
- #: add-to-any.php:930
255
  msgid "Reset"
256
  msgstr ""
257
 
258
- #: add-to-any.php:935
259
  msgid "Like this plugin?"
260
  msgstr ""
261
 
262
- #: add-to-any.php:936
263
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
264
  msgstr ""
265
 
266
- #: add-to-any.php:937
267
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
268
  msgstr ""
269
 
270
- #: add-to-any.php:939
271
  msgid "Need support?"
272
  msgstr ""
273
 
274
- #: add-to-any.php:940
275
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
276
  msgstr ""
277
 
278
- #: add-to-any.php:941
279
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
280
  msgstr ""
281
 
282
- #: add-to-any.php:1066
283
  msgid "Add/Remove Services"
284
  msgstr ""
285
 
286
- #: add-to-any.php:1123
287
  msgid "Share/Save"
288
  msgstr "Compartir/Guardar"
289
 
290
- #: add-to-any.php:1124
291
  msgid "Share/Save Buttons"
292
  msgstr "Botones Compartir/Guardar"
293
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-23 20:39-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
+ #: add-to-any.php:322
17
  msgid "Share"
18
  msgstr "Compartir"
19
 
20
+ #: add-to-any.php:323
21
  msgid "Save"
22
  msgstr "Guardar"
23
 
24
+ #: add-to-any.php:324
25
  msgid "Subscribe"
26
  msgstr "Suscribirse"
27
 
28
+ #: add-to-any.php:325
29
  msgid "E-mail"
30
  msgstr "E-mail"
31
 
32
+ #: add-to-any.php:326
33
  msgid "Bookmark"
34
  msgstr "Marcador"
35
 
36
+ #: add-to-any.php:327
37
  msgid "Show all"
38
  msgstr "Mostrar todo"
39
 
40
+ #: add-to-any.php:328
41
  msgid "Show less"
42
  msgstr "Mostrar menos"
43
 
44
+ #: add-to-any.php:329
45
  msgid "Find service(s)"
46
  msgstr "Buscar servicios(s)"
47
 
48
+ #: add-to-any.php:330
49
  msgid "Instantly find any service to add to"
50
  msgstr "Buscar servicio"
51
 
52
+ #: add-to-any.php:331
53
  msgid "Powered by"
54
  msgstr "Servicio ofrecido por"
55
 
56
+ #: add-to-any.php:332
57
  msgid "Share via e-mail"
58
  msgstr "Compartir por e-mail"
59
 
60
+ #: add-to-any.php:333
61
  msgid "Subscribe via e-mail"
62
  msgstr "Suscribirse por e-mail"
63
 
64
+ #: add-to-any.php:334
65
  msgid "Bookmark in your browser"
66
  msgstr "Agregar a marcadores de tu navegador"
67
 
68
+ #: add-to-any.php:335
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr "Presione Ctrl+D o Cmd+D para marcar esta pagina"
71
 
72
+ #: add-to-any.php:336
73
  msgid "Add to your favorites"
74
  msgstr "Agregar a favoritos"
75
 
76
+ #: add-to-any.php:337
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr "Enviar de cualquier dirección de e-mail o programa de e-mail"
79
 
80
+ #: add-to-any.php:338
81
  msgid "E-mail program"
82
  msgstr "Programa de e-mail"
83
 
84
+ #: add-to-any.php:363
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:520
89
  #, php-format
90
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
91
  msgstr ""
92
 
93
+ #: add-to-any.php:654
94
+ #: add-to-any.php:778
95
+ #: add-to-any.php:782
96
+ #: add-to-any.php:786
97
+ #: add-to-any.php:790
98
+ #: add-to-any.php:822
99
  msgid "Share/Bookmark"
100
  msgstr "Marcador"
101
 
102
+ #: add-to-any.php:667
103
  msgid "Settings saved."
104
  msgstr "Configuración guardada."
105
 
106
+ #: add-to-any.php:688
107
  msgid "bottom"
108
  msgstr ""
109
 
110
+ #: add-to-any.php:692
111
  msgid "top"
112
  msgstr ""
113
 
114
+ #: add-to-any.php:696
115
  msgid "top &amp; bottom"
116
  msgstr ""
117
 
118
+ #: add-to-any.php:727
119
  msgid "AddToAny: Share/Save "
120
  msgstr "AddToAny: Compartir/Guardar "
121
 
122
+ #: add-to-any.php:727
123
+ #: add-to-any.php:1132
124
+ #: add-to-any.php:1163
125
  msgid "Settings"
126
  msgstr "Configuración"
127
 
128
+ #: add-to-any.php:736
129
  msgid "Standalone Services"
130
  msgstr ""
131
 
132
+ #: add-to-any.php:741
133
  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."
134
  msgstr ""
135
 
136
+ #: add-to-any.php:773
137
  msgid "Button"
138
  msgstr "Botón"
139
 
140
+ #: add-to-any.php:812
141
  msgid "Image URL"
142
  msgstr "URL de la imagen"
143
 
144
+ #: add-to-any.php:819
145
  msgid "Text only"
146
  msgstr "Solo texto"
147
 
148
+ #: add-to-any.php:827
149
  msgid "Placement"
150
  msgstr "Ubicación del botón"
151
 
152
+ #: add-to-any.php:832
153
  #, fuzzy, php-format
154
  msgid "Display at the %s of posts"
155
  msgstr "Mostrar el botón Compartir/Guardar al final de cada entrada"
156
 
157
+ #: add-to-any.php:839
158
  #, php-format
159
  msgid "Display at the %s of post excerpts"
160
  msgstr ""
161
 
162
+ #: add-to-any.php:846
163
  #, fuzzy, php-format
164
  msgid "Display at the %s of posts on the front page"
165
  msgstr "Mostrar el botón Compartir/Guardar al final de las entradas en la pagina principal"
166
 
167
+ #: add-to-any.php:854
168
  #, fuzzy, php-format
169
  msgid "Display at the %s of posts in the feed"
170
  msgstr "Mostrar el botón Compartir/Guardar al final de las entradas en el feed"
171
 
172
+ #: add-to-any.php:858
173
  #, fuzzy, php-format
174
  msgid "Display at the %s of pages"
175
  msgstr "Mostrar el botón Compartir/Guardar al final de las paginas"
176
 
177
+ #: add-to-any.php:862
178
  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>)"
179
  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>)"
180
 
181
+ #: add-to-any.php:871
182
  msgid "Menu Style"
183
  msgstr "Estilo del menú"
184
 
185
+ #: add-to-any.php:873
186
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
187
  msgstr "Usar el personalizador de estilo de AddToAny, 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."
188
 
189
+ #: add-to-any.php:875
190
  msgid "Open the AddToAny Menu Styler in a new window"
191
  msgstr "Abrir el personalizador de estilo de AddToAny en una nueva ventana"
192
 
193
+ #: add-to-any.php:877
194
  msgid "Open Menu Styler"
195
  msgstr "Abrir el personalizador de estilos"
196
 
197
+ #: add-to-any.php:882
198
  msgid "Menu Options"
199
  msgstr "Menú de opciones"
200
 
201
+ #: add-to-any.php:887
202
  msgid "Only show the menu when the user clicks the Share/Save button"
203
  msgstr "Mostrar el menú solo cuando un usuario haga click sobre el botón Compartir/Guardar"
204
 
205
+ #: add-to-any.php:892
206
  msgid "Show the title of the post (or page) within the menu"
207
  msgstr "Mostrar el título de la entrada (o de la pagina) dentro del menú"
208
 
209
+ #: add-to-any.php:897
210
  msgid "Additional Options"
211
  msgstr "Opciones adicionales"
212
 
213
+ #: add-to-any.php:901
214
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
215
  msgstr "Pegue el código del personalizador de estilo en el siguiente recuadro"
216
 
217
+ #: add-to-any.php:905
218
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
219
  msgstr "Abajo puede inicializar las variables JavaScript especiales para aplicar a cada menú Compartir/Guardar"
220
 
221
+ #: add-to-any.php:906
222
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
223
  msgstr "Los usuarios avanzados podrían preferir explorar la <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">API JavaScript</a> de AddToAny."
224
 
225
+ #: add-to-any.php:912
226
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
227
  msgstr "<strong>Nota</strong>: Si usted agrega código nuevo, sea cuidadoso de no sobreescribir accidentalmente cualquier código ingresado anteriormente.</label>"
228
 
229
+ #: add-to-any.php:917
230
  #, fuzzy
231
  msgid "Advanced Options"
232
  msgstr "Opciones adicionales"
233
 
234
+ #: add-to-any.php:922
235
  msgid "Use CSS stylesheet"
236
  msgstr ""
237
 
238
+ #: add-to-any.php:927
239
  msgid "Cache AddToAny locally with daily cache updates"
240
  msgstr ""
241
 
242
+ #: add-to-any.php:931
243
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
244
  msgstr ""
245
 
246
+ #: add-to-any.php:938
247
  msgid "Save Changes"
248
  msgstr "Guardar cambios"
249
 
250
+ #: add-to-any.php:939
251
  msgid "Are you sure you want to delete all AddToAny options?"
252
  msgstr ""
253
 
254
+ #: add-to-any.php:939
255
  msgid "Reset"
256
  msgstr ""
257
 
258
+ #: add-to-any.php:944
259
  msgid "Like this plugin?"
260
  msgstr ""
261
 
262
+ #: add-to-any.php:945
263
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
264
  msgstr ""
265
 
266
+ #: add-to-any.php:946
267
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
268
  msgstr ""
269
 
270
+ #: add-to-any.php:948
271
  msgid "Need support?"
272
  msgstr ""
273
 
274
+ #: add-to-any.php:949
275
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
276
  msgstr ""
277
 
278
+ #: add-to-any.php:950
279
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
280
  msgstr ""
281
 
282
+ #: add-to-any.php:1075
283
  msgid "Add/Remove Services"
284
  msgstr ""
285
 
286
+ #: add-to-any.php:1132
287
  msgid "Share/Save"
288
  msgstr "Compartir/Guardar"
289
 
290
+ #: add-to-any.php:1133
291
  msgid "Share/Save Buttons"
292
  msgstr "Botones Compartir/Guardar"
293
 
languages/add-to-any-fa_IR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: NajeeKurd\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-02-16 00:10-0800\n"
6
- "PO-Revision-Date: 2011-02-16 00:10-0800\n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: NajeeKurd <lordamar@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -15,280 +15,280 @@ msgstr ""
15
  "X-Poedit-Country: iran\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: add-to-any.php:313
19
  msgid "Share"
20
  msgstr "اشتراک گذاری"
21
 
22
- #: add-to-any.php:314
23
  msgid "Save"
24
  msgstr "ذخیره"
25
 
26
- #: add-to-any.php:315
27
  msgid "Subscribe"
28
  msgstr "عضویت"
29
 
30
- #: add-to-any.php:316
31
  msgid "E-mail"
32
  msgstr "ایمیل"
33
 
34
- #: add-to-any.php:317
35
  msgid "Bookmark"
36
  msgstr "نشانه گذاری"
37
 
38
- #: add-to-any.php:318
39
  msgid "Show all"
40
  msgstr "نمایش همگی"
41
 
42
- #: add-to-any.php:319
43
  msgid "Show less"
44
  msgstr "نمایش حداقل"
45
 
46
- #: add-to-any.php:320
47
  msgid "Find service(s)"
48
  msgstr "یافتن سرویس (ها)"
49
 
50
- #: add-to-any.php:321
51
  msgid "Instantly find any service to add to"
52
  msgstr "یافتن سریع دیگر سرویس ها برای اضافه کردن"
53
 
54
- #: add-to-any.php:322
55
  msgid "Powered by"
56
  msgstr "قدرت یافته از"
57
 
58
- #: add-to-any.php:323
59
  msgid "Share via e-mail"
60
  msgstr "اشتراک گذاری از طریق ایمیل (رایانامه)"
61
 
62
- #: add-to-any.php:324
63
  msgid "Subscribe via e-mail"
64
  msgstr "عضویت از طریق ایمیل (رایانامه)"
65
 
66
- #: add-to-any.php:325
67
  msgid "Bookmark in your browser"
68
  msgstr "ثبت به عنوان علاقه مندی برای مرورگر شما"
69
 
70
- #: add-to-any.php:326
71
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
72
  msgstr "برای نشانه گذاری این صفحه Ctrl+D یا &#8984;+D را فشار دهید"
73
 
74
- #: add-to-any.php:327
75
  msgid "Add to your favorites"
76
  msgstr "اضافه کردن به علاقه مندی ها"
77
 
78
- #: add-to-any.php:328
79
  msgid "Send from any e-mail address or e-mail program"
80
  msgstr "فرستادن از طریق یک آدرس ایمیل (رایانامه) یا هر برنامه ارسال ایمیل (رایانامه)"
81
 
82
- #: add-to-any.php:329
83
  msgid "E-mail program"
84
  msgstr "ایمیل برنامه"
85
 
86
- #: add-to-any.php:354
87
  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."
88
  msgstr "پوسته شما به تعمیر نیاز دارد. برای تعمیر پوسته ی خود، از کد زیر استفاده کنید:<a href=\"theme-editor.php\">ویرایشگر پوسته</a> برای قرار دادن<code>&lt;?php wp_footer(); ?&gt;</code>تنها قبل از <code>&lt;/body&gt;</code> خط از پوسته ی شما<code>footer.php</code> file."
89
 
90
- #: add-to-any.php:511
91
  #, php-format
92
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
93
  msgstr "قادر به ایجاد دایرکتوری نیست %s. آیا این دایرکتوری اولیه، برای سرور () خوانا است؟"
94
 
95
- #: add-to-any.php:645
96
- #: add-to-any.php:769
97
- #: add-to-any.php:773
98
- #: add-to-any.php:777
99
- #: add-to-any.php:781
100
- #: add-to-any.php:813
101
  msgid "Share/Bookmark"
102
  msgstr "اشتراک گذاری/نشانه گذاری"
103
 
104
- #: add-to-any.php:658
105
  msgid "Settings saved."
106
  msgstr "تنظیمات ذخیره شد."
107
 
108
- #: add-to-any.php:679
109
  msgid "bottom"
110
  msgstr ""
111
 
112
- #: add-to-any.php:683
113
  msgid "top"
114
  msgstr ""
115
 
116
- #: add-to-any.php:687
117
  msgid "top &amp; bottom"
118
  msgstr ""
119
 
120
- #: add-to-any.php:718
121
  msgid "AddToAny: Share/Save "
122
  msgstr "AddToAny:اشتراک گذاری/نشانه گذاری"
123
 
124
- #: add-to-any.php:718
125
- #: add-to-any.php:1123
126
- #: add-to-any.php:1154
127
  msgid "Settings"
128
  msgstr "تنظیمات"
129
 
130
- #: add-to-any.php:727
131
  msgid "Standalone Services"
132
  msgstr "خدمات سیستم های رایج"
133
 
134
- #: add-to-any.php:732
135
  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."
136
  msgstr "خدماتی را که می خواهید در زیر انتخاب کنید.&nbsp; یک سرویس انتخاب دوباره برای حذف کلیک کنیدخدمات را از طریق \"کشیدن و رها کردن\" مرتب کنید. همان گونه که در بالا به نظر می رسد."
137
 
138
- #: add-to-any.php:764
139
  msgid "Button"
140
  msgstr "دکمه"
141
 
142
- #: add-to-any.php:803
143
  msgid "Image URL"
144
  msgstr "نشانی تصویر"
145
 
146
- #: add-to-any.php:810
147
  msgid "Text only"
148
  msgstr "فقط متن"
149
 
150
- #: add-to-any.php:818
151
  msgid "Placement"
152
  msgstr "قرار دادن"
153
 
154
- #: add-to-any.php:823
155
  #, fuzzy, php-format
156
  msgid "Display at the %s of posts"
157
  msgstr "نمایش در پایین نوشته ها"
158
 
159
- #: add-to-any.php:830
160
  #, fuzzy, php-format
161
  msgid "Display at the %s of post excerpts"
162
  msgstr "نمایش در پایین خلاصه نوشته"
163
 
164
- #: add-to-any.php:837
165
  #, fuzzy, php-format
166
  msgid "Display at the %s of posts on the front page"
167
  msgstr "نمایش در پایین نوشته ها در صفحه ی نخست"
168
 
169
- #: add-to-any.php:845
170
  #, fuzzy, php-format
171
  msgid "Display at the %s of posts in the feed"
172
  msgstr "نمایش در پایین نوشته ها در خوراک (فید)"
173
 
174
- #: add-to-any.php:849
175
  #, fuzzy, php-format
176
  msgid "Display at the %s of pages"
177
  msgstr "نمایش در پایین برگه ها"
178
 
179
- #: add-to-any.php:853
180
  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>)"
181
  msgstr "اگر این را خالی گذاشتید، مطمئن شوید که قرار دهید کد زیر ، در <a href=\"theme-editor.php\"> پوسته ی برگه های شما(با <code>index.php</code>, <code>single.php</code>, و/یا <code>page.php</code>) "
182
 
183
- #: add-to-any.php:862
184
  msgid "Menu Style"
185
  msgstr "منوی قاب بندی"
186
 
187
- #: add-to-any.php:864
188
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
189
  msgstr "از طریق این منو شما می توانید رنگ منوی اشتراک گذاری/ذخیره را شخصی کنید.هنگامی که شما این کار را انجام دادید مطمئن شوید برای چسباندن (پیست) کد اصلی را در <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">گزینه های اضافی</a> جعبه ی زیر."
190
 
191
- #: add-to-any.php:866
192
  msgid "Open the AddToAny Menu Styler in a new window"
193
  msgstr "منوی قاب بندی AddToAny را در یک پنجره جدید باز کنید "
194
 
195
- #: add-to-any.php:868
196
  msgid "Open Menu Styler"
197
  msgstr "باز کردن منوی قاب بندی"
198
 
199
- #: add-to-any.php:873
200
  msgid "Menu Options"
201
  msgstr "گزینه ها"
202
 
203
- #: add-to-any.php:878
204
  msgid "Only show the menu when the user clicks the Share/Save button"
205
  msgstr "فقط زمانی منو را نمایش بده که کاربر بر روی دکمه اشتراک گذاری/نشانه گذاری کلیک کند."
206
 
207
- #: add-to-any.php:883
208
  msgid "Show the title of the post (or page) within the menu"
209
  msgstr "تیتر نوشته (یا برگه) را درون منو نمایش بده."
210
 
211
- #: add-to-any.php:888
212
  msgid "Additional Options"
213
  msgstr "گزینه های اضافی"
214
 
215
- #: add-to-any.php:892
216
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
217
  msgstr "کد را از منوی قاب بندیAddToAnyدر جعبه ی زیر بچسبانید"
218
 
219
- #: add-to-any.php:896
220
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
221
  msgstr "در زیر شما می توانید متغیرهای مخصوص جاوا اسکریپت را برای به کار بردن هر منوی اشتراک گذاری/نشانه گذاری قرار دهید. "
222
 
223
- #: add-to-any.php:897
224
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
225
  msgstr "کاربران پیشرفته ممکن است بخواهند در <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">گزینه های اضافی</a>کاوش کنند"
226
 
227
- #: add-to-any.php:903
228
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
229
  msgstr "<strong>توجه</strong>:اگر شما در حال اضافه کردن کد هستید، مراقب باشید که به صورت تصادفی کدها را بر روی کدهای قبلی بازنویسی نکنید"
230
 
231
- #: add-to-any.php:908
232
  msgid "Advanced Options"
233
  msgstr "گزینه های پیشرفته"
234
 
235
- #: add-to-any.php:913
236
  msgid "Use CSS stylesheet"
237
  msgstr "استفاده از شیوه نامه CSS "
238
 
239
- #: add-to-any.php:918
240
  msgid "Cache AddToAny locally with daily cache updates"
241
  msgstr " مسیر AddToAny را با روزانه به روز کردن نهانگاه پنهان کنید"
242
 
243
- #: add-to-any.php:922
244
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
245
  msgstr "مطرح کردن فقط برای سایت های با قابلیت بازگرداندن اغلب بازدیدکنندگان.از زمانی که بسیاری از بازدیدکنندگان قبلاAddToAny را در مروگر خود پنهان کرده اندخدمتAddToAny در سایت شما برای آن بازدیدکنندگان کندتر خواهد بود.مطمئن شوید که ویژگی ها دست نیافتنی و دور سربرگ نهان سازی/منقضی برای پرونده ی تصاویر در دایرکتوری<code>uploads/addtoany</code>ی شما قرار داده می شود."
246
 
247
- #: add-to-any.php:929
248
  msgid "Save Changes"
249
  msgstr "ذحیره تغییرات"
250
 
251
- #: add-to-any.php:930
252
  msgid "Are you sure you want to delete all AddToAny options?"
253
  msgstr ""
254
 
255
- #: add-to-any.php:930
256
  msgid "Reset"
257
  msgstr ""
258
 
259
- #: add-to-any.php:935
260
  msgid "Like this plugin?"
261
  msgstr "این افزونه را دوست دارید؟"
262
 
263
- #: add-to-any.php:936
264
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
265
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">دادن یک امتیاز خوب</a>در WordPress.org."
266
 
267
- #: add-to-any.php:937
268
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
269
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">با دوستان خود به اشتراک</a> بگذارید ترجمه افزونه<a href=\"http://najeekurd.net/farsi/\">ناجی کرد</a>."
270
 
271
- #: add-to-any.php:939
272
  msgid "Need support?"
273
  msgstr "به کمک نیاز دارید؟"
274
 
275
- #: add-to-any.php:940
276
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
277
  msgstr " <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">پرسش و پاسخ را ببینید</a>."
278
 
279
- #: add-to-any.php:941
280
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
281
  msgstr "در میان <a href=\"http://wordpress.org/tags/add-to-any\">تالار گفتمان پشتیبانی</a>جستجو کنید."
282
 
283
- #: add-to-any.php:1066
284
  msgid "Add/Remove Services"
285
  msgstr "اضافه/حذف کردن خدمات"
286
 
287
- #: add-to-any.php:1123
288
  msgid "Share/Save"
289
  msgstr "اشتراگ گذاری/ذخیره"
290
 
291
- #: add-to-any.php:1124
292
  msgid "Share/Save Buttons"
293
  msgstr "اشتراک گذاری/ ذخیره دکمه ها"
294
 
2
  msgstr ""
3
  "Project-Id-Version: NajeeKurd\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-23 20:39-0800\n"
6
+ "PO-Revision-Date: 2011-02-23 20:39-0800\n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: NajeeKurd <lordamar@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
15
  "X-Poedit-Country: iran\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: add-to-any.php:322
19
  msgid "Share"
20
  msgstr "اشتراک گذاری"
21
 
22
+ #: add-to-any.php:323
23
  msgid "Save"
24
  msgstr "ذخیره"
25
 
26
+ #: add-to-any.php:324
27
  msgid "Subscribe"
28
  msgstr "عضویت"
29
 
30
+ #: add-to-any.php:325
31
  msgid "E-mail"
32
  msgstr "ایمیل"
33
 
34
+ #: add-to-any.php:326
35
  msgid "Bookmark"
36
  msgstr "نشانه گذاری"
37
 
38
+ #: add-to-any.php:327
39
  msgid "Show all"
40
  msgstr "نمایش همگی"
41
 
42
+ #: add-to-any.php:328
43
  msgid "Show less"
44
  msgstr "نمایش حداقل"
45
 
46
+ #: add-to-any.php:329
47
  msgid "Find service(s)"
48
  msgstr "یافتن سرویس (ها)"
49
 
50
+ #: add-to-any.php:330
51
  msgid "Instantly find any service to add to"
52
  msgstr "یافتن سریع دیگر سرویس ها برای اضافه کردن"
53
 
54
+ #: add-to-any.php:331
55
  msgid "Powered by"
56
  msgstr "قدرت یافته از"
57
 
58
+ #: add-to-any.php:332
59
  msgid "Share via e-mail"
60
  msgstr "اشتراک گذاری از طریق ایمیل (رایانامه)"
61
 
62
+ #: add-to-any.php:333
63
  msgid "Subscribe via e-mail"
64
  msgstr "عضویت از طریق ایمیل (رایانامه)"
65
 
66
+ #: add-to-any.php:334
67
  msgid "Bookmark in your browser"
68
  msgstr "ثبت به عنوان علاقه مندی برای مرورگر شما"
69
 
70
+ #: add-to-any.php:335
71
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
72
  msgstr "برای نشانه گذاری این صفحه Ctrl+D یا &#8984;+D را فشار دهید"
73
 
74
+ #: add-to-any.php:336
75
  msgid "Add to your favorites"
76
  msgstr "اضافه کردن به علاقه مندی ها"
77
 
78
+ #: add-to-any.php:337
79
  msgid "Send from any e-mail address or e-mail program"
80
  msgstr "فرستادن از طریق یک آدرس ایمیل (رایانامه) یا هر برنامه ارسال ایمیل (رایانامه)"
81
 
82
+ #: add-to-any.php:338
83
  msgid "E-mail program"
84
  msgstr "ایمیل برنامه"
85
 
86
+ #: add-to-any.php:363
87
  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."
88
  msgstr "پوسته شما به تعمیر نیاز دارد. برای تعمیر پوسته ی خود، از کد زیر استفاده کنید:<a href=\"theme-editor.php\">ویرایشگر پوسته</a> برای قرار دادن<code>&lt;?php wp_footer(); ?&gt;</code>تنها قبل از <code>&lt;/body&gt;</code> خط از پوسته ی شما<code>footer.php</code> file."
89
 
90
+ #: add-to-any.php:520
91
  #, php-format
92
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
93
  msgstr "قادر به ایجاد دایرکتوری نیست %s. آیا این دایرکتوری اولیه، برای سرور () خوانا است؟"
94
 
95
+ #: add-to-any.php:654
96
+ #: add-to-any.php:778
97
+ #: add-to-any.php:782
98
+ #: add-to-any.php:786
99
+ #: add-to-any.php:790
100
+ #: add-to-any.php:822
101
  msgid "Share/Bookmark"
102
  msgstr "اشتراک گذاری/نشانه گذاری"
103
 
104
+ #: add-to-any.php:667
105
  msgid "Settings saved."
106
  msgstr "تنظیمات ذخیره شد."
107
 
108
+ #: add-to-any.php:688
109
  msgid "bottom"
110
  msgstr ""
111
 
112
+ #: add-to-any.php:692
113
  msgid "top"
114
  msgstr ""
115
 
116
+ #: add-to-any.php:696
117
  msgid "top &amp; bottom"
118
  msgstr ""
119
 
120
+ #: add-to-any.php:727
121
  msgid "AddToAny: Share/Save "
122
  msgstr "AddToAny:اشتراک گذاری/نشانه گذاری"
123
 
124
+ #: add-to-any.php:727
125
+ #: add-to-any.php:1132
126
+ #: add-to-any.php:1163
127
  msgid "Settings"
128
  msgstr "تنظیمات"
129
 
130
+ #: add-to-any.php:736
131
  msgid "Standalone Services"
132
  msgstr "خدمات سیستم های رایج"
133
 
134
+ #: add-to-any.php:741
135
  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."
136
  msgstr "خدماتی را که می خواهید در زیر انتخاب کنید.&nbsp; یک سرویس انتخاب دوباره برای حذف کلیک کنیدخدمات را از طریق \"کشیدن و رها کردن\" مرتب کنید. همان گونه که در بالا به نظر می رسد."
137
 
138
+ #: add-to-any.php:773
139
  msgid "Button"
140
  msgstr "دکمه"
141
 
142
+ #: add-to-any.php:812
143
  msgid "Image URL"
144
  msgstr "نشانی تصویر"
145
 
146
+ #: add-to-any.php:819
147
  msgid "Text only"
148
  msgstr "فقط متن"
149
 
150
+ #: add-to-any.php:827
151
  msgid "Placement"
152
  msgstr "قرار دادن"
153
 
154
+ #: add-to-any.php:832
155
  #, fuzzy, php-format
156
  msgid "Display at the %s of posts"
157
  msgstr "نمایش در پایین نوشته ها"
158
 
159
+ #: add-to-any.php:839
160
  #, fuzzy, php-format
161
  msgid "Display at the %s of post excerpts"
162
  msgstr "نمایش در پایین خلاصه نوشته"
163
 
164
+ #: add-to-any.php:846
165
  #, fuzzy, php-format
166
  msgid "Display at the %s of posts on the front page"
167
  msgstr "نمایش در پایین نوشته ها در صفحه ی نخست"
168
 
169
+ #: add-to-any.php:854
170
  #, fuzzy, php-format
171
  msgid "Display at the %s of posts in the feed"
172
  msgstr "نمایش در پایین نوشته ها در خوراک (فید)"
173
 
174
+ #: add-to-any.php:858
175
  #, fuzzy, php-format
176
  msgid "Display at the %s of pages"
177
  msgstr "نمایش در پایین برگه ها"
178
 
179
+ #: add-to-any.php:862
180
  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>)"
181
  msgstr "اگر این را خالی گذاشتید، مطمئن شوید که قرار دهید کد زیر ، در <a href=\"theme-editor.php\"> پوسته ی برگه های شما(با <code>index.php</code>, <code>single.php</code>, و/یا <code>page.php</code>) "
182
 
183
+ #: add-to-any.php:871
184
  msgid "Menu Style"
185
  msgstr "منوی قاب بندی"
186
 
187
+ #: add-to-any.php:873
188
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
189
  msgstr "از طریق این منو شما می توانید رنگ منوی اشتراک گذاری/ذخیره را شخصی کنید.هنگامی که شما این کار را انجام دادید مطمئن شوید برای چسباندن (پیست) کد اصلی را در <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">گزینه های اضافی</a> جعبه ی زیر."
190
 
191
+ #: add-to-any.php:875
192
  msgid "Open the AddToAny Menu Styler in a new window"
193
  msgstr "منوی قاب بندی AddToAny را در یک پنجره جدید باز کنید "
194
 
195
+ #: add-to-any.php:877
196
  msgid "Open Menu Styler"
197
  msgstr "باز کردن منوی قاب بندی"
198
 
199
+ #: add-to-any.php:882
200
  msgid "Menu Options"
201
  msgstr "گزینه ها"
202
 
203
+ #: add-to-any.php:887
204
  msgid "Only show the menu when the user clicks the Share/Save button"
205
  msgstr "فقط زمانی منو را نمایش بده که کاربر بر روی دکمه اشتراک گذاری/نشانه گذاری کلیک کند."
206
 
207
+ #: add-to-any.php:892
208
  msgid "Show the title of the post (or page) within the menu"
209
  msgstr "تیتر نوشته (یا برگه) را درون منو نمایش بده."
210
 
211
+ #: add-to-any.php:897
212
  msgid "Additional Options"
213
  msgstr "گزینه های اضافی"
214
 
215
+ #: add-to-any.php:901
216
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
217
  msgstr "کد را از منوی قاب بندیAddToAnyدر جعبه ی زیر بچسبانید"
218
 
219
+ #: add-to-any.php:905
220
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
221
  msgstr "در زیر شما می توانید متغیرهای مخصوص جاوا اسکریپت را برای به کار بردن هر منوی اشتراک گذاری/نشانه گذاری قرار دهید. "
222
 
223
+ #: add-to-any.php:906
224
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
225
  msgstr "کاربران پیشرفته ممکن است بخواهند در <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">گزینه های اضافی</a>کاوش کنند"
226
 
227
+ #: add-to-any.php:912
228
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
229
  msgstr "<strong>توجه</strong>:اگر شما در حال اضافه کردن کد هستید، مراقب باشید که به صورت تصادفی کدها را بر روی کدهای قبلی بازنویسی نکنید"
230
 
231
+ #: add-to-any.php:917
232
  msgid "Advanced Options"
233
  msgstr "گزینه های پیشرفته"
234
 
235
+ #: add-to-any.php:922
236
  msgid "Use CSS stylesheet"
237
  msgstr "استفاده از شیوه نامه CSS "
238
 
239
+ #: add-to-any.php:927
240
  msgid "Cache AddToAny locally with daily cache updates"
241
  msgstr " مسیر AddToAny را با روزانه به روز کردن نهانگاه پنهان کنید"
242
 
243
+ #: add-to-any.php:931
244
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
245
  msgstr "مطرح کردن فقط برای سایت های با قابلیت بازگرداندن اغلب بازدیدکنندگان.از زمانی که بسیاری از بازدیدکنندگان قبلاAddToAny را در مروگر خود پنهان کرده اندخدمتAddToAny در سایت شما برای آن بازدیدکنندگان کندتر خواهد بود.مطمئن شوید که ویژگی ها دست نیافتنی و دور سربرگ نهان سازی/منقضی برای پرونده ی تصاویر در دایرکتوری<code>uploads/addtoany</code>ی شما قرار داده می شود."
246
 
247
+ #: add-to-any.php:938
248
  msgid "Save Changes"
249
  msgstr "ذحیره تغییرات"
250
 
251
+ #: add-to-any.php:939
252
  msgid "Are you sure you want to delete all AddToAny options?"
253
  msgstr ""
254
 
255
+ #: add-to-any.php:939
256
  msgid "Reset"
257
  msgstr ""
258
 
259
+ #: add-to-any.php:944
260
  msgid "Like this plugin?"
261
  msgstr "این افزونه را دوست دارید؟"
262
 
263
+ #: add-to-any.php:945
264
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
265
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">دادن یک امتیاز خوب</a>در WordPress.org."
266
 
267
+ #: add-to-any.php:946
268
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
269
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">با دوستان خود به اشتراک</a> بگذارید ترجمه افزونه<a href=\"http://najeekurd.net/farsi/\">ناجی کرد</a>."
270
 
271
+ #: add-to-any.php:948
272
  msgid "Need support?"
273
  msgstr "به کمک نیاز دارید؟"
274
 
275
+ #: add-to-any.php:949
276
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
277
  msgstr " <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">پرسش و پاسخ را ببینید</a>."
278
 
279
+ #: add-to-any.php:950
280
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
281
  msgstr "در میان <a href=\"http://wordpress.org/tags/add-to-any\">تالار گفتمان پشتیبانی</a>جستجو کنید."
282
 
283
+ #: add-to-any.php:1075
284
  msgid "Add/Remove Services"
285
  msgstr "اضافه/حذف کردن خدمات"
286
 
287
+ #: add-to-any.php:1132
288
  msgid "Share/Save"
289
  msgstr "اشتراگ گذاری/ذخیره"
290
 
291
+ #: add-to-any.php:1133
292
  msgid "Share/Save Buttons"
293
  msgstr "اشتراک گذاری/ ذخیره دکمه ها"
294
 
languages/add-to-any-fr_FR.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: 2011-02-16 00:10-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
@@ -13,281 +13,281 @@ msgstr ""
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: add-to-any.php:313
17
  msgid "Share"
18
  msgstr "Partager"
19
 
20
- #: add-to-any.php:314
21
  msgid "Save"
22
  msgstr "Enregistrer"
23
 
24
- #: add-to-any.php:315
25
  msgid "Subscribe"
26
  msgstr "S'abonner"
27
 
28
- #: add-to-any.php:316
29
  msgid "E-mail"
30
  msgstr "Courriel"
31
 
32
- #: add-to-any.php:317
33
  msgid "Bookmark"
34
  msgstr "Signet"
35
 
36
- #: add-to-any.php:318
37
  msgid "Show all"
38
  msgstr "Montrer tout"
39
 
40
- #: add-to-any.php:319
41
  msgid "Show less"
42
  msgstr "Montrer moins"
43
 
44
- #: add-to-any.php:320
45
  msgid "Find service(s)"
46
  msgstr "Trouver des service(s)"
47
 
48
- #: add-to-any.php:321
49
  msgid "Instantly find any service to add to"
50
  msgstr "Trouver instantan&eacute;ment des services &agrave; ajouter &agrave;"
51
 
52
- #: add-to-any.php:322
53
  msgid "Powered by"
54
  msgstr "Propuls&eacute; par"
55
 
56
- #: add-to-any.php:323
57
  msgid "Share via e-mail"
58
  msgstr "Partager par l'entremise d'un courriel"
59
 
60
- #: add-to-any.php:324
61
  msgid "Subscribe via e-mail"
62
  msgstr "S'abonner par l'entremise d'un courriel"
63
 
64
- #: add-to-any.php:325
65
  msgid "Bookmark in your browser"
66
  msgstr "Ajouter un signet dans votre fureteur"
67
 
68
- #: add-to-any.php:326
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr "Appuyez Crtl+D ou &#8984;+D pour cr&eacute;er un signet vers cette page"
71
 
72
- #: add-to-any.php:327
73
  msgid "Add to your favorites"
74
  msgstr "Ajouter &agrave; vos favoris"
75
 
76
- #: add-to-any.php:328
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr "Envoyer depuis toutes adresses courriel ou tous programmes de messagerie"
79
 
80
- #: add-to-any.php:329
81
  msgid "E-mail program"
82
  msgstr "Programme de messagerie"
83
 
84
- #: add-to-any.php:354
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 "Votre th&egrave;me doit &ecirc;tre corrig&eacute;. Pour ce faire, utilisez <a href=\"theme-editor.php\">l'&eacute;diteur</a> pour ajouter <code>&lt;?php wp_footer(); ?&gt;</code> juste avant la ligne <code>&lt;/body&gt;</code> du fichier <code>footer.php</code> de votre th&egrave;me."
87
 
88
- #: add-to-any.php:511
89
  #, php-format
90
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
91
  msgstr ""
92
 
93
- #: add-to-any.php:645
94
- #: add-to-any.php:769
95
- #: add-to-any.php:773
96
- #: add-to-any.php:777
97
- #: add-to-any.php:781
98
- #: add-to-any.php:813
99
  msgid "Share/Bookmark"
100
  msgstr "Partager/Marquer"
101
 
102
- #: add-to-any.php:658
103
  msgid "Settings saved."
104
  msgstr "Param&egrave;tres sauvegard&eacute;s."
105
 
106
- #: add-to-any.php:679
107
  msgid "bottom"
108
  msgstr ""
109
 
110
- #: add-to-any.php:683
111
  msgid "top"
112
  msgstr ""
113
 
114
- #: add-to-any.php:687
115
  msgid "top &amp; bottom"
116
  msgstr ""
117
 
118
- #: add-to-any.php:718
119
  msgid "AddToAny: Share/Save "
120
  msgstr "Ajouter&Agrave;Tout: Partager/Enregistrer "
121
 
122
- #: add-to-any.php:718
123
- #: add-to-any.php:1123
124
- #: add-to-any.php:1154
125
  msgid "Settings"
126
  msgstr "Param&egrave;tres"
127
 
128
- #: add-to-any.php:727
129
  msgid "Standalone Services"
130
  msgstr "Services ind&eacute;pendants"
131
 
132
- #: add-to-any.php:732
133
  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."
134
  msgstr "Choisissez les services que vous souhaitez ci-dessous. &nbsp;Cliquez sur un service choisi pour le retirer. &nbsp;R&eacute;organisez les services en les faisant glisser comme ils apparaissent ci-dessus."
135
 
136
- #: add-to-any.php:764
137
  msgid "Button"
138
  msgstr "Bouton"
139
 
140
- #: add-to-any.php:803
141
  msgid "Image URL"
142
  msgstr "URL de l'image"
143
 
144
- #: add-to-any.php:810
145
  msgid "Text only"
146
  msgstr "Texte seulement"
147
 
148
- #: add-to-any.php:818
149
  msgid "Placement"
150
  msgstr "Positionnement"
151
 
152
- #: add-to-any.php:823
153
  #, fuzzy, php-format
154
  msgid "Display at the %s of posts"
155
  msgstr "Afficher le bouton Partager/Enregistrer &agrave; la fin des articles"
156
 
157
- #: add-to-any.php:830
158
  #, php-format
159
  msgid "Display at the %s of post excerpts"
160
  msgstr ""
161
 
162
- #: add-to-any.php:837
163
  #, fuzzy, php-format
164
  msgid "Display at the %s of posts on the front page"
165
  msgstr "Afficher le bouton Partager/Enregistrer &agrave; la fin des articles sur la page principale"
166
 
167
- #: add-to-any.php:845
168
  #, fuzzy, php-format
169
  msgid "Display at the %s of posts in the feed"
170
  msgstr "Afficher le bouton Partager/Enregistrer &agrave; la fin des articles dans le flux"
171
 
172
- #: add-to-any.php:849
173
  #, fuzzy, php-format
174
  msgid "Display at the %s of pages"
175
  msgstr "Afficher le bouton Partager/Enregistrer &agrave; la fin des pages"
176
 
177
- #: add-to-any.php:853
178
  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>)"
179
  msgstr "Si d&eacute;coch&eacute;, n'oubliez pas de placer le code suivant dans vos <a href=\"theme-editor.php\">pages mod&egrave;les</a> (dans <code>index.php</code>, <code>single.php</code> et/ou <code><page.php</code>)"
180
 
181
- #: add-to-any.php:862
182
  msgid "Menu Style"
183
  msgstr "Menu de styles"
184
 
185
- #: add-to-any.php:864
186
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
187
  msgstr "En utilisant le menu de styles AddToAny, vous pouvez personnaliser les couleurs de votre menu Partarger/Enregistrer. Lorsque vous aurez termin&eacute;, assrez-vous de copier le code g&eacute;n&eacute;r&eacute; dans la bo&icirc;te d'<a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Options Compl&eacute;mentaires</a> ci-dessous."
188
 
189
- #: add-to-any.php:866
190
  msgid "Open the AddToAny Menu Styler in a new window"
191
  msgstr "Ouvrir le menu de styles AddToAny dans une nouvelle fen&ecire;tre"
192
 
193
- #: add-to-any.php:868
194
  msgid "Open Menu Styler"
195
  msgstr "Ouvrir le menu de styles"
196
 
197
- #: add-to-any.php:873
198
  msgid "Menu Options"
199
  msgstr "Menu d'options"
200
 
201
- #: add-to-any.php:878
202
  msgid "Only show the menu when the user clicks the Share/Save button"
203
  msgstr "Afficher le menu uniquement lorsqu'un utilisateur appuie sur le bouton Partager/Enregistrer"
204
 
205
- #: add-to-any.php:883
206
  msgid "Show the title of the post (or page) within the menu"
207
  msgstr "Afficher le titre des articles (ou des pages) dans le menu"
208
 
209
- #: add-to-any.php:888
210
  msgid "Additional Options"
211
  msgstr "Options compl&eacute;mentaires"
212
 
213
- #: add-to-any.php:892
214
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
215
  msgstr "Copier le code du menu de styles AddToAny dans la bo&icirc;te ci-dessous!"
216
 
217
- #: add-to-any.php:896
218
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
219
  msgstr "Vous pouvez d&eacute;finir, ci-dessous, des variables JavaScript sp&eacute;ciales &agrave; appliquer &agrave; chaque menu Partager/Enregistrer."
220
 
221
- #: add-to-any.php:897
222
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
223
  msgstr "Les utilisateurs exp&eacute;riment&eacute;s peuvent vouloir explorer l'<a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">API JavaScript</a> d'AddToAny."
224
 
225
- #: add-to-any.php:903
226
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
227
  msgstr ""
228
 
229
- #: add-to-any.php:908
230
  #, fuzzy
231
  msgid "Advanced Options"
232
  msgstr "Options compl&eacute;mentaires"
233
 
234
- #: add-to-any.php:913
235
  msgid "Use CSS stylesheet"
236
  msgstr ""
237
 
238
- #: add-to-any.php:918
239
  msgid "Cache AddToAny locally with daily cache updates"
240
  msgstr ""
241
 
242
- #: add-to-any.php:922
243
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
244
  msgstr ""
245
 
246
- #: add-to-any.php:929
247
  msgid "Save Changes"
248
  msgstr "Enregistrer les changements"
249
 
250
- #: add-to-any.php:930
251
  msgid "Are you sure you want to delete all AddToAny options?"
252
  msgstr ""
253
 
254
- #: add-to-any.php:930
255
  msgid "Reset"
256
  msgstr ""
257
 
258
- #: add-to-any.php:935
259
  msgid "Like this plugin?"
260
  msgstr "Aimez-vous ce plugiciel?"
261
 
262
- #: add-to-any.php:936
263
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
264
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Donnez-lui une bonne cote</a> sur WordPress.org."
265
 
266
- #: add-to-any.php:937
267
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
268
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Partagez le</a> avec vos amis."
269
 
270
- #: add-to-any.php:939
271
  msgid "Need support?"
272
  msgstr "Besoin d'aide?"
273
 
274
- #: add-to-any.php:940
275
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
276
  msgstr "Consultez la <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ</a>."
277
 
278
- #: add-to-any.php:941
279
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
280
  msgstr "Faites une recherche dans le <a href=\"http://wordpress.org/tags/add-to-any\">forums d'aide</a>."
281
 
282
- #: add-to-any.php:1066
283
  msgid "Add/Remove Services"
284
  msgstr "Ajoutez/Supprimer les services"
285
 
286
- #: add-to-any.php:1123
287
  msgid "Share/Save"
288
  msgstr "Partager/Enregistrer"
289
 
290
- #: add-to-any.php:1124
291
  msgid "Share/Save Buttons"
292
  msgstr "Boutons Ajouter/Enregistrer"
293
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-23 20:39-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
+ #: add-to-any.php:322
17
  msgid "Share"
18
  msgstr "Partager"
19
 
20
+ #: add-to-any.php:323
21
  msgid "Save"
22
  msgstr "Enregistrer"
23
 
24
+ #: add-to-any.php:324
25
  msgid "Subscribe"
26
  msgstr "S'abonner"
27
 
28
+ #: add-to-any.php:325
29
  msgid "E-mail"
30
  msgstr "Courriel"
31
 
32
+ #: add-to-any.php:326
33
  msgid "Bookmark"
34
  msgstr "Signet"
35
 
36
+ #: add-to-any.php:327
37
  msgid "Show all"
38
  msgstr "Montrer tout"
39
 
40
+ #: add-to-any.php:328
41
  msgid "Show less"
42
  msgstr "Montrer moins"
43
 
44
+ #: add-to-any.php:329
45
  msgid "Find service(s)"
46
  msgstr "Trouver des service(s)"
47
 
48
+ #: add-to-any.php:330
49
  msgid "Instantly find any service to add to"
50
  msgstr "Trouver instantan&eacute;ment des services &agrave; ajouter &agrave;"
51
 
52
+ #: add-to-any.php:331
53
  msgid "Powered by"
54
  msgstr "Propuls&eacute; par"
55
 
56
+ #: add-to-any.php:332
57
  msgid "Share via e-mail"
58
  msgstr "Partager par l'entremise d'un courriel"
59
 
60
+ #: add-to-any.php:333
61
  msgid "Subscribe via e-mail"
62
  msgstr "S'abonner par l'entremise d'un courriel"
63
 
64
+ #: add-to-any.php:334
65
  msgid "Bookmark in your browser"
66
  msgstr "Ajouter un signet dans votre fureteur"
67
 
68
+ #: add-to-any.php:335
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr "Appuyez Crtl+D ou &#8984;+D pour cr&eacute;er un signet vers cette page"
71
 
72
+ #: add-to-any.php:336
73
  msgid "Add to your favorites"
74
  msgstr "Ajouter &agrave; vos favoris"
75
 
76
+ #: add-to-any.php:337
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr "Envoyer depuis toutes adresses courriel ou tous programmes de messagerie"
79
 
80
+ #: add-to-any.php:338
81
  msgid "E-mail program"
82
  msgstr "Programme de messagerie"
83
 
84
+ #: add-to-any.php:363
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 "Votre th&egrave;me doit &ecirc;tre corrig&eacute;. Pour ce faire, utilisez <a href=\"theme-editor.php\">l'&eacute;diteur</a> pour ajouter <code>&lt;?php wp_footer(); ?&gt;</code> juste avant la ligne <code>&lt;/body&gt;</code> du fichier <code>footer.php</code> de votre th&egrave;me."
87
 
88
+ #: add-to-any.php:520
89
  #, php-format
90
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
91
  msgstr ""
92
 
93
+ #: add-to-any.php:654
94
+ #: add-to-any.php:778
95
+ #: add-to-any.php:782
96
+ #: add-to-any.php:786
97
+ #: add-to-any.php:790
98
+ #: add-to-any.php:822
99
  msgid "Share/Bookmark"
100
  msgstr "Partager/Marquer"
101
 
102
+ #: add-to-any.php:667
103
  msgid "Settings saved."
104
  msgstr "Param&egrave;tres sauvegard&eacute;s."
105
 
106
+ #: add-to-any.php:688
107
  msgid "bottom"
108
  msgstr ""
109
 
110
+ #: add-to-any.php:692
111
  msgid "top"
112
  msgstr ""
113
 
114
+ #: add-to-any.php:696
115
  msgid "top &amp; bottom"
116
  msgstr ""
117
 
118
+ #: add-to-any.php:727
119
  msgid "AddToAny: Share/Save "
120
  msgstr "Ajouter&Agrave;Tout: Partager/Enregistrer "
121
 
122
+ #: add-to-any.php:727
123
+ #: add-to-any.php:1132
124
+ #: add-to-any.php:1163
125
  msgid "Settings"
126
  msgstr "Param&egrave;tres"
127
 
128
+ #: add-to-any.php:736
129
  msgid "Standalone Services"
130
  msgstr "Services ind&eacute;pendants"
131
 
132
+ #: add-to-any.php:741
133
  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."
134
  msgstr "Choisissez les services que vous souhaitez ci-dessous. &nbsp;Cliquez sur un service choisi pour le retirer. &nbsp;R&eacute;organisez les services en les faisant glisser comme ils apparaissent ci-dessus."
135
 
136
+ #: add-to-any.php:773
137
  msgid "Button"
138
  msgstr "Bouton"
139
 
140
+ #: add-to-any.php:812
141
  msgid "Image URL"
142
  msgstr "URL de l'image"
143
 
144
+ #: add-to-any.php:819
145
  msgid "Text only"
146
  msgstr "Texte seulement"
147
 
148
+ #: add-to-any.php:827
149
  msgid "Placement"
150
  msgstr "Positionnement"
151
 
152
+ #: add-to-any.php:832
153
  #, fuzzy, php-format
154
  msgid "Display at the %s of posts"
155
  msgstr "Afficher le bouton Partager/Enregistrer &agrave; la fin des articles"
156
 
157
+ #: add-to-any.php:839
158
  #, php-format
159
  msgid "Display at the %s of post excerpts"
160
  msgstr ""
161
 
162
+ #: add-to-any.php:846
163
  #, fuzzy, php-format
164
  msgid "Display at the %s of posts on the front page"
165
  msgstr "Afficher le bouton Partager/Enregistrer &agrave; la fin des articles sur la page principale"
166
 
167
+ #: add-to-any.php:854
168
  #, fuzzy, php-format
169
  msgid "Display at the %s of posts in the feed"
170
  msgstr "Afficher le bouton Partager/Enregistrer &agrave; la fin des articles dans le flux"
171
 
172
+ #: add-to-any.php:858
173
  #, fuzzy, php-format
174
  msgid "Display at the %s of pages"
175
  msgstr "Afficher le bouton Partager/Enregistrer &agrave; la fin des pages"
176
 
177
+ #: add-to-any.php:862
178
  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>)"
179
  msgstr "Si d&eacute;coch&eacute;, n'oubliez pas de placer le code suivant dans vos <a href=\"theme-editor.php\">pages mod&egrave;les</a> (dans <code>index.php</code>, <code>single.php</code> et/ou <code><page.php</code>)"
180
 
181
+ #: add-to-any.php:871
182
  msgid "Menu Style"
183
  msgstr "Menu de styles"
184
 
185
+ #: add-to-any.php:873
186
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
187
  msgstr "En utilisant le menu de styles AddToAny, vous pouvez personnaliser les couleurs de votre menu Partarger/Enregistrer. Lorsque vous aurez termin&eacute;, assrez-vous de copier le code g&eacute;n&eacute;r&eacute; dans la bo&icirc;te d'<a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Options Compl&eacute;mentaires</a> ci-dessous."
188
 
189
+ #: add-to-any.php:875
190
  msgid "Open the AddToAny Menu Styler in a new window"
191
  msgstr "Ouvrir le menu de styles AddToAny dans une nouvelle fen&ecire;tre"
192
 
193
+ #: add-to-any.php:877
194
  msgid "Open Menu Styler"
195
  msgstr "Ouvrir le menu de styles"
196
 
197
+ #: add-to-any.php:882
198
  msgid "Menu Options"
199
  msgstr "Menu d'options"
200
 
201
+ #: add-to-any.php:887
202
  msgid "Only show the menu when the user clicks the Share/Save button"
203
  msgstr "Afficher le menu uniquement lorsqu'un utilisateur appuie sur le bouton Partager/Enregistrer"
204
 
205
+ #: add-to-any.php:892
206
  msgid "Show the title of the post (or page) within the menu"
207
  msgstr "Afficher le titre des articles (ou des pages) dans le menu"
208
 
209
+ #: add-to-any.php:897
210
  msgid "Additional Options"
211
  msgstr "Options compl&eacute;mentaires"
212
 
213
+ #: add-to-any.php:901
214
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
215
  msgstr "Copier le code du menu de styles AddToAny dans la bo&icirc;te ci-dessous!"
216
 
217
+ #: add-to-any.php:905
218
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
219
  msgstr "Vous pouvez d&eacute;finir, ci-dessous, des variables JavaScript sp&eacute;ciales &agrave; appliquer &agrave; chaque menu Partager/Enregistrer."
220
 
221
+ #: add-to-any.php:906
222
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
223
  msgstr "Les utilisateurs exp&eacute;riment&eacute;s peuvent vouloir explorer l'<a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">API JavaScript</a> d'AddToAny."
224
 
225
+ #: add-to-any.php:912
226
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
227
  msgstr ""
228
 
229
+ #: add-to-any.php:917
230
  #, fuzzy
231
  msgid "Advanced Options"
232
  msgstr "Options compl&eacute;mentaires"
233
 
234
+ #: add-to-any.php:922
235
  msgid "Use CSS stylesheet"
236
  msgstr ""
237
 
238
+ #: add-to-any.php:927
239
  msgid "Cache AddToAny locally with daily cache updates"
240
  msgstr ""
241
 
242
+ #: add-to-any.php:931
243
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
244
  msgstr ""
245
 
246
+ #: add-to-any.php:938
247
  msgid "Save Changes"
248
  msgstr "Enregistrer les changements"
249
 
250
+ #: add-to-any.php:939
251
  msgid "Are you sure you want to delete all AddToAny options?"
252
  msgstr ""
253
 
254
+ #: add-to-any.php:939
255
  msgid "Reset"
256
  msgstr ""
257
 
258
+ #: add-to-any.php:944
259
  msgid "Like this plugin?"
260
  msgstr "Aimez-vous ce plugiciel?"
261
 
262
+ #: add-to-any.php:945
263
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
264
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Donnez-lui une bonne cote</a> sur WordPress.org."
265
 
266
+ #: add-to-any.php:946
267
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
268
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Partagez le</a> avec vos amis."
269
 
270
+ #: add-to-any.php:948
271
  msgid "Need support?"
272
  msgstr "Besoin d'aide?"
273
 
274
+ #: add-to-any.php:949
275
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
276
  msgstr "Consultez la <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ</a>."
277
 
278
+ #: add-to-any.php:950
279
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
280
  msgstr "Faites une recherche dans le <a href=\"http://wordpress.org/tags/add-to-any\">forums d'aide</a>."
281
 
282
+ #: add-to-any.php:1075
283
  msgid "Add/Remove Services"
284
  msgstr "Ajoutez/Supprimer les services"
285
 
286
+ #: add-to-any.php:1132
287
  msgid "Share/Save"
288
  msgstr "Partager/Enregistrer"
289
 
290
+ #: add-to-any.php:1133
291
  msgid "Share/Save Buttons"
292
  msgstr "Boutons Ajouter/Enregistrer"
293
 
languages/add-to-any-it_IT.mo CHANGED
Binary file
languages/add-to-any-it_IT.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-02-16 00:10-0800\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: Gianni Diurno | gidibao.net <gidibao[at]gmail[dot]com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -15,281 +15,280 @@ msgstr ""
15
  "X-Poedit-Country: ITALY\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: add-to-any.php:313
19
  msgid "Share"
20
  msgstr "Condividi"
21
 
22
- #: add-to-any.php:314
23
  msgid "Save"
24
  msgstr "Salva"
25
 
26
- #: add-to-any.php:315
27
  msgid "Subscribe"
28
  msgstr "Abbonati"
29
 
30
- #: add-to-any.php:316
31
  msgid "E-mail"
32
  msgstr "E-mail"
33
 
34
- #: add-to-any.php:317
35
  msgid "Bookmark"
36
  msgstr "Segnalibro"
37
 
38
- #: add-to-any.php:318
39
  msgid "Show all"
40
  msgstr "espandi"
41
 
42
- #: add-to-any.php:319
43
  msgid "Show less"
44
  msgstr "comprimi"
45
 
46
- #: add-to-any.php:320
47
  msgid "Find service(s)"
48
  msgstr "Trova servizi"
49
 
50
- #: add-to-any.php:321
51
  msgid "Instantly find any service to add to"
52
  msgstr "Trova subito un servizio da aggiungere"
53
 
54
- #: add-to-any.php:322
55
  msgid "Powered by"
56
  msgstr "Fornito da"
57
 
58
- #: add-to-any.php:323
59
  msgid "Share via e-mail"
60
  msgstr "Condividi via email"
61
 
62
- #: add-to-any.php:324
63
  msgid "Subscribe via e-mail"
64
  msgstr "Abbonati via email"
65
 
66
- #: add-to-any.php:325
67
  msgid "Bookmark in your browser"
68
  msgstr "Aggiungi ai segnalibri"
69
 
70
- #: add-to-any.php:326
71
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
72
  msgstr "Premi Ctrl+D o Cmd+D per aggiungere questa pagina alla lista dei segnalibri"
73
 
74
- #: add-to-any.php:327
75
  msgid "Add to your favorites"
76
  msgstr "Aggiungi ai favoriti"
77
 
78
- #: add-to-any.php:328
79
  msgid "Send from any e-mail address or e-mail program"
80
  msgstr "Invia da un indirizzo email o client di posta elettronica"
81
 
82
- #: add-to-any.php:329
83
  msgid "E-mail program"
84
  msgstr "Client di posta elettronica"
85
 
86
- #: add-to-any.php:354
87
  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."
88
  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>."
89
 
90
- #: add-to-any.php:511
91
  #, php-format
92
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
93
  msgstr "Impossibile creare la cartella %s. La sua cartella madre é scrivibile dal server?"
94
 
95
- #: add-to-any.php:645
96
- #: add-to-any.php:769
97
- #: add-to-any.php:773
98
- #: add-to-any.php:777
99
- #: add-to-any.php:781
100
- #: add-to-any.php:813
101
  msgid "Share/Bookmark"
102
  msgstr "Segnalibro"
103
 
104
- #: add-to-any.php:658
105
  msgid "Settings saved."
106
  msgstr "Le impostazioni sono state salvate"
107
 
108
- #: add-to-any.php:679
109
  msgid "bottom"
110
- msgstr ""
111
 
112
- #: add-to-any.php:683
113
  msgid "top"
114
- msgstr ""
115
 
116
- #: add-to-any.php:687
117
  msgid "top &amp; bottom"
118
- msgstr ""
119
 
120
- #: add-to-any.php:718
121
  msgid "AddToAny: Share/Save "
122
  msgstr "AddToAny: Condividi/Salva "
123
 
124
- #: add-to-any.php:718
125
- #: add-to-any.php:1123
126
- #: add-to-any.php:1154
127
  msgid "Settings"
128
  msgstr "Impostazioni"
129
 
130
- #: add-to-any.php:727
131
  msgid "Standalone Services"
132
  msgstr "Servizi indipendenti"
133
 
134
- #: add-to-any.php:732
135
  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."
136
  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."
137
 
138
- #: add-to-any.php:764
139
  msgid "Button"
140
  msgstr "Pulsante"
141
 
142
- #: add-to-any.php:803
143
  msgid "Image URL"
144
  msgstr "URL immagine"
145
 
146
- #: add-to-any.php:810
147
  msgid "Text only"
148
  msgstr "Solo testo"
149
 
150
- #: add-to-any.php:818
151
  msgid "Placement"
152
  msgstr "Posizione"
153
 
154
- #: add-to-any.php:823
155
- #, fuzzy, php-format
156
  msgid "Display at the %s of posts"
157
- msgstr "Mostra il pulsante Share/Save in coda agli articoli"
158
 
159
- #: add-to-any.php:830
160
  #, php-format
161
  msgid "Display at the %s of post excerpts"
162
- msgstr ""
163
 
164
- #: add-to-any.php:837
165
- #, fuzzy, php-format
166
  msgid "Display at the %s of posts on the front page"
167
- msgstr "Mostra il pulsante Share/Save in coda agli articoli nella pagina principale"
168
 
169
- #: add-to-any.php:845
170
- #, fuzzy, php-format
171
  msgid "Display at the %s of posts in the feed"
172
- msgstr "Mostra il pulsante Share/Save in coda agli articoli del feed"
173
 
174
- #: add-to-any.php:849
175
- #, fuzzy, php-format
176
  msgid "Display at the %s of pages"
177
- msgstr "Mostra il pulsante Share/Save in coda alle pagine"
178
 
179
- #: add-to-any.php:853
180
  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>)"
181
  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>)"
182
 
183
- #: add-to-any.php:862
184
  msgid "Menu Style"
185
  msgstr "Stile menu"
186
 
187
- #: add-to-any.php:864
188
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
189
  msgstr "Utilizzando il Menu Styler di AddToAny 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."
190
 
191
- #: add-to-any.php:866
192
  msgid "Open the AddToAny Menu Styler in a new window"
193
  msgstr "Apri in una nuova pagina per personalizzare il menu di AddToAny"
194
 
195
- #: add-to-any.php:868
196
  msgid "Open Menu Styler"
197
  msgstr "Stile menu"
198
 
199
- #: add-to-any.php:873
200
  msgid "Menu Options"
201
  msgstr "Opzioni menu"
202
 
203
- #: add-to-any.php:878
204
  msgid "Only show the menu when the user clicks the Share/Save button"
205
  msgstr "Mostra solamente il menu quando un utente clicca sul pulsante Share/Save"
206
 
207
- #: add-to-any.php:883
208
  msgid "Show the title of the post (or page) within the menu"
209
  msgstr "Mostra nel menu il titolo dell'articolo (o pagina)"
210
 
211
- #: add-to-any.php:888
212
  msgid "Additional Options"
213
  msgstr "Opzioni aggiuntive"
214
 
215
- #: add-to-any.php:892
216
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
217
  msgstr "Incolla nel riquadro qui sotto il nuovo codice personalizzato per il menu! "
218
 
219
- #: add-to-any.php:896
220
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
221
  msgstr "Qui sotto é possibile impostare delle variabili JavaScript particolari applicabili ad ogni menu Share/Save."
222
 
223
- #: add-to-any.php:897
224
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
225
  msgstr "Gli utenti più esperti possono prendere visione della <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">JavaScript API</a> di AddToAny."
226
 
227
- #: add-to-any.php:903
228
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
229
  msgstr "<strong>Nota</strong>: qualora stessi aggiungendo un nnuovo codice, fai attenzione a non sovrascrivere accidentalmente ogni codice precedente.</label>"
230
 
231
- #: add-to-any.php:908
232
  msgid "Advanced Options"
233
  msgstr "Opzioni avanzate"
234
 
235
- #: add-to-any.php:913
236
  msgid "Use CSS stylesheet"
237
  msgstr "Usa foglio di stile CSS"
238
 
239
- #: add-to-any.php:918
240
  msgid "Cache AddToAny locally with daily cache updates"
241
  msgstr "Effettua localmente con aggiornamenti quotidiani la cache di AddToAny"
242
 
243
- #: add-to-any.php:922
244
- #, fuzzy
245
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
246
- msgstr "Funzione risevata ai siti con traffico elevato. Accertati di impostare a far future cache/expires headers i file immagine nella tua cartella <code>uploads/addtoany</code>."
247
 
248
- #: add-to-any.php:929
249
  msgid "Save Changes"
250
  msgstr "Salva le modifiche"
251
 
252
- #: add-to-any.php:930
253
  msgid "Are you sure you want to delete all AddToAny options?"
254
- msgstr ""
255
 
256
- #: add-to-any.php:930
257
  msgid "Reset"
258
- msgstr ""
259
 
260
- #: add-to-any.php:935
261
  msgid "Like this plugin?"
262
  msgstr "Ti é piaciuto questo plugin?"
263
 
264
- #: add-to-any.php:936
265
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
266
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Votalo</a> su WordPress.org."
267
 
268
- #: add-to-any.php:937
269
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
270
  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."
271
 
272
- #: add-to-any.php:939
273
  msgid "Need support?"
274
  msgstr "Serve aiuto?"
275
 
276
- #: add-to-any.php:940
277
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
278
  msgstr "Vedi la pagina dedicata alle <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ</a>."
279
 
280
- #: add-to-any.php:941
281
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
282
  msgstr "Effettua una ricerca nel <a href=\"http://wordpress.org/tags/add-to-any\">forum di supporto</a>."
283
 
284
- #: add-to-any.php:1066
285
  msgid "Add/Remove Services"
286
  msgstr "Aggiungi/Rimuovi i sevizi"
287
 
288
- #: add-to-any.php:1123
289
  msgid "Share/Save"
290
  msgstr "Condividi/Salva"
291
 
292
- #: add-to-any.php:1124
293
  msgid "Share/Save Buttons"
294
  msgstr "Pulsanti Condividi/Salva"
295
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-23 20:39-0800\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
8
  "Language-Team: Gianni Diurno | gidibao.net <gidibao[at]gmail[dot]com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "X-Poedit-Country: ITALY\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: add-to-any.php:322
19
  msgid "Share"
20
  msgstr "Condividi"
21
 
22
+ #: add-to-any.php:323
23
  msgid "Save"
24
  msgstr "Salva"
25
 
26
+ #: add-to-any.php:324
27
  msgid "Subscribe"
28
  msgstr "Abbonati"
29
 
30
+ #: add-to-any.php:325
31
  msgid "E-mail"
32
  msgstr "E-mail"
33
 
34
+ #: add-to-any.php:326
35
  msgid "Bookmark"
36
  msgstr "Segnalibro"
37
 
38
+ #: add-to-any.php:327
39
  msgid "Show all"
40
  msgstr "espandi"
41
 
42
+ #: add-to-any.php:328
43
  msgid "Show less"
44
  msgstr "comprimi"
45
 
46
+ #: add-to-any.php:329
47
  msgid "Find service(s)"
48
  msgstr "Trova servizi"
49
 
50
+ #: add-to-any.php:330
51
  msgid "Instantly find any service to add to"
52
  msgstr "Trova subito un servizio da aggiungere"
53
 
54
+ #: add-to-any.php:331
55
  msgid "Powered by"
56
  msgstr "Fornito da"
57
 
58
+ #: add-to-any.php:332
59
  msgid "Share via e-mail"
60
  msgstr "Condividi via email"
61
 
62
+ #: add-to-any.php:333
63
  msgid "Subscribe via e-mail"
64
  msgstr "Abbonati via email"
65
 
66
+ #: add-to-any.php:334
67
  msgid "Bookmark in your browser"
68
  msgstr "Aggiungi ai segnalibri"
69
 
70
+ #: add-to-any.php:335
71
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
72
  msgstr "Premi Ctrl+D o Cmd+D per aggiungere questa pagina alla lista dei segnalibri"
73
 
74
+ #: add-to-any.php:336
75
  msgid "Add to your favorites"
76
  msgstr "Aggiungi ai favoriti"
77
 
78
+ #: add-to-any.php:337
79
  msgid "Send from any e-mail address or e-mail program"
80
  msgstr "Invia da un indirizzo email o client di posta elettronica"
81
 
82
+ #: add-to-any.php:338
83
  msgid "E-mail program"
84
  msgstr "Client di posta elettronica"
85
 
86
+ #: add-to-any.php:363
87
  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."
88
  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>."
89
 
90
+ #: add-to-any.php:520
91
  #, php-format
92
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
93
  msgstr "Impossibile creare la cartella %s. La sua cartella madre é scrivibile dal server?"
94
 
95
+ #: add-to-any.php:654
96
+ #: add-to-any.php:778
97
+ #: add-to-any.php:782
98
+ #: add-to-any.php:786
99
+ #: add-to-any.php:790
100
+ #: add-to-any.php:822
101
  msgid "Share/Bookmark"
102
  msgstr "Segnalibro"
103
 
104
+ #: add-to-any.php:667
105
  msgid "Settings saved."
106
  msgstr "Le impostazioni sono state salvate"
107
 
108
+ #: add-to-any.php:688
109
  msgid "bottom"
110
+ msgstr "fondo"
111
 
112
+ #: add-to-any.php:692
113
  msgid "top"
114
+ msgstr "cima"
115
 
116
+ #: add-to-any.php:696
117
  msgid "top &amp; bottom"
118
+ msgstr "al fondo ed in cima"
119
 
120
+ #: add-to-any.php:727
121
  msgid "AddToAny: Share/Save "
122
  msgstr "AddToAny: Condividi/Salva "
123
 
124
+ #: add-to-any.php:727
125
+ #: add-to-any.php:1132
126
+ #: add-to-any.php:1163
127
  msgid "Settings"
128
  msgstr "Impostazioni"
129
 
130
+ #: add-to-any.php:736
131
  msgid "Standalone Services"
132
  msgstr "Servizi indipendenti"
133
 
134
+ #: add-to-any.php:741
135
  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."
136
  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."
137
 
138
+ #: add-to-any.php:773
139
  msgid "Button"
140
  msgstr "Pulsante"
141
 
142
+ #: add-to-any.php:812
143
  msgid "Image URL"
144
  msgstr "URL immagine"
145
 
146
+ #: add-to-any.php:819
147
  msgid "Text only"
148
  msgstr "Solo testo"
149
 
150
+ #: add-to-any.php:827
151
  msgid "Placement"
152
  msgstr "Posizione"
153
 
154
+ #: add-to-any.php:832
155
+ #, php-format
156
  msgid "Display at the %s of posts"
157
+ msgstr "Mostra in %s degli articoli"
158
 
159
+ #: add-to-any.php:839
160
  #, php-format
161
  msgid "Display at the %s of post excerpts"
162
+ msgstr "Mostra in %s ai riassunti articolo"
163
 
164
+ #: add-to-any.php:846
165
+ #, php-format
166
  msgid "Display at the %s of posts on the front page"
167
+ msgstr "Mostra in %s agli articoli nella pagina principale"
168
 
169
+ #: add-to-any.php:854
170
+ #, php-format
171
  msgid "Display at the %s of posts in the feed"
172
+ msgstr "Mostra nel feed in %s agli articoli"
173
 
174
+ #: add-to-any.php:858
175
+ #, php-format
176
  msgid "Display at the %s of pages"
177
+ msgstr "Mostra %s delle pagine"
178
 
179
+ #: add-to-any.php:862
180
  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>)"
181
  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>)"
182
 
183
+ #: add-to-any.php:871
184
  msgid "Menu Style"
185
  msgstr "Stile menu"
186
 
187
+ #: add-to-any.php:873
188
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
189
  msgstr "Utilizzando il Menu Styler di AddToAny 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."
190
 
191
+ #: add-to-any.php:875
192
  msgid "Open the AddToAny Menu Styler in a new window"
193
  msgstr "Apri in una nuova pagina per personalizzare il menu di AddToAny"
194
 
195
+ #: add-to-any.php:877
196
  msgid "Open Menu Styler"
197
  msgstr "Stile menu"
198
 
199
+ #: add-to-any.php:882
200
  msgid "Menu Options"
201
  msgstr "Opzioni menu"
202
 
203
+ #: add-to-any.php:887
204
  msgid "Only show the menu when the user clicks the Share/Save button"
205
  msgstr "Mostra solamente il menu quando un utente clicca sul pulsante Share/Save"
206
 
207
+ #: add-to-any.php:892
208
  msgid "Show the title of the post (or page) within the menu"
209
  msgstr "Mostra nel menu il titolo dell'articolo (o pagina)"
210
 
211
+ #: add-to-any.php:897
212
  msgid "Additional Options"
213
  msgstr "Opzioni aggiuntive"
214
 
215
+ #: add-to-any.php:901
216
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
217
  msgstr "Incolla nel riquadro qui sotto il nuovo codice personalizzato per il menu! "
218
 
219
+ #: add-to-any.php:905
220
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
221
  msgstr "Qui sotto é possibile impostare delle variabili JavaScript particolari applicabili ad ogni menu Share/Save."
222
 
223
+ #: add-to-any.php:906
224
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
225
  msgstr "Gli utenti più esperti possono prendere visione della <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">JavaScript API</a> di AddToAny."
226
 
227
+ #: add-to-any.php:912
228
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
229
  msgstr "<strong>Nota</strong>: qualora stessi aggiungendo un nnuovo codice, fai attenzione a non sovrascrivere accidentalmente ogni codice precedente.</label>"
230
 
231
+ #: add-to-any.php:917
232
  msgid "Advanced Options"
233
  msgstr "Opzioni avanzate"
234
 
235
+ #: add-to-any.php:922
236
  msgid "Use CSS stylesheet"
237
  msgstr "Usa foglio di stile CSS"
238
 
239
+ #: add-to-any.php:927
240
  msgid "Cache AddToAny locally with daily cache updates"
241
  msgstr "Effettua localmente con aggiornamenti quotidiani la cache di AddToAny"
242
 
243
+ #: add-to-any.php:931
 
244
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
245
+ msgstr "Funzione risevata ai siti con traffico elevato di visitatori abituali. Sebbene un buon numero dei tuoi visitatori abbia AddToAny nella cache del proprio browser, servire localmente AddToAny potrebbe rallentare l'apertura della pagina. Accertati di impostare a far future cache/expires headers i file immagine nella tua cartella <code>uploads/addtoany</code>."
246
 
247
+ #: add-to-any.php:938
248
  msgid "Save Changes"
249
  msgstr "Salva le modifiche"
250
 
251
+ #: add-to-any.php:939
252
  msgid "Are you sure you want to delete all AddToAny options?"
253
+ msgstr "Sei certo di volere cancellare tutti i dati di AddToAny?"
254
 
255
+ #: add-to-any.php:939
256
  msgid "Reset"
257
+ msgstr "Ripristina"
258
 
259
+ #: add-to-any.php:944
260
  msgid "Like this plugin?"
261
  msgstr "Ti é piaciuto questo plugin?"
262
 
263
+ #: add-to-any.php:945
264
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
265
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Votalo</a> su WordPress.org."
266
 
267
+ #: add-to-any.php:946
268
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
269
  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."
270
 
271
+ #: add-to-any.php:948
272
  msgid "Need support?"
273
  msgstr "Serve aiuto?"
274
 
275
+ #: add-to-any.php:949
276
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
277
  msgstr "Vedi la pagina dedicata alle <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ</a>."
278
 
279
+ #: add-to-any.php:950
280
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
281
  msgstr "Effettua una ricerca nel <a href=\"http://wordpress.org/tags/add-to-any\">forum di supporto</a>."
282
 
283
+ #: add-to-any.php:1075
284
  msgid "Add/Remove Services"
285
  msgstr "Aggiungi/Rimuovi i sevizi"
286
 
287
+ #: add-to-any.php:1132
288
  msgid "Share/Save"
289
  msgstr "Condividi/Salva"
290
 
291
+ #: add-to-any.php:1133
292
  msgid "Share/Save Buttons"
293
  msgstr "Pulsanti Condividi/Salva"
294
 
languages/add-to-any-ja.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: 2011-02-16 00:10-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
@@ -13,281 +13,281 @@ msgstr ""
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: add-to-any.php:313
17
  msgid "Share"
18
  msgstr "共有"
19
 
20
- #: add-to-any.php:314
21
  msgid "Save"
22
  msgstr "ブックマーク"
23
 
24
- #: add-to-any.php:315
25
  msgid "Subscribe"
26
  msgstr "購読"
27
 
28
- #: add-to-any.php:316
29
  msgid "E-mail"
30
  msgstr "メール"
31
 
32
- #: add-to-any.php:317
33
  msgid "Bookmark"
34
  msgstr "ブックマーク"
35
 
36
- #: add-to-any.php:318
37
  msgid "Show all"
38
  msgstr "すべて表示する"
39
 
40
- #: add-to-any.php:319
41
  msgid "Show less"
42
  msgstr "小さく表示する"
43
 
44
- #: add-to-any.php:320
45
  msgid "Find service(s)"
46
  msgstr "サービスを探す"
47
 
48
- #: add-to-any.php:321
49
  msgid "Instantly find any service to add to"
50
  msgstr "追加するサービスを今すぐ探す"
51
 
52
- #: add-to-any.php:322
53
  msgid "Powered by"
54
  msgstr "Powered by"
55
 
56
- #: add-to-any.php:323
57
  msgid "Share via e-mail"
58
  msgstr "メールで共有"
59
 
60
- #: add-to-any.php:324
61
  msgid "Subscribe via e-mail"
62
  msgstr "メールで購読"
63
 
64
- #: add-to-any.php:325
65
  msgid "Bookmark in your browser"
66
  msgstr "ブラウザにブックマーク"
67
 
68
- #: add-to-any.php:326
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr "Ctrl+D または &#8984;+D でブックマークします"
71
 
72
- #: add-to-any.php:327
73
  msgid "Add to your favorites"
74
  msgstr "お気に入りに追加"
75
 
76
- #: add-to-any.php:328
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr "お好きなメールアドレスかメールソフトで送信します"
79
 
80
- #: add-to-any.php:329
81
  msgid "E-mail program"
82
  msgstr "メールソフト"
83
 
84
- #: add-to-any.php:354
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 "テーマを修正してください。<a href=\"theme-editor.php\">テーマエディタ</a>で、使用しているテーマの <code>footer.php</code> 内の <code>&lt;/body&gt;</code> 直前に <code>&lt;?php wp_footer(); ?&gt;</code> を挿入してください。"
87
 
88
- #: add-to-any.php:511
89
  #, php-format
90
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
91
  msgstr ""
92
 
93
- #: add-to-any.php:645
94
- #: add-to-any.php:769
95
- #: add-to-any.php:773
96
- #: add-to-any.php:777
97
- #: add-to-any.php:781
98
- #: add-to-any.php:813
99
  msgid "Share/Bookmark"
100
  msgstr "ブックマーク"
101
 
102
- #: add-to-any.php:658
103
  msgid "Settings saved."
104
  msgstr "設定を保存しました。"
105
 
106
- #: add-to-any.php:679
107
  msgid "bottom"
108
  msgstr ""
109
 
110
- #: add-to-any.php:683
111
  msgid "top"
112
  msgstr ""
113
 
114
- #: add-to-any.php:687
115
  msgid "top &amp; bottom"
116
  msgstr ""
117
 
118
- #: add-to-any.php:718
119
  msgid "AddToAny: Share/Save "
120
  msgstr "AddToAny ボタン"
121
 
122
- #: add-to-any.php:718
123
- #: add-to-any.php:1123
124
- #: add-to-any.php:1154
125
  msgid "Settings"
126
  msgstr "設定"
127
 
128
- #: add-to-any.php:727
129
  msgid "Standalone Services"
130
  msgstr "アイコン表示するサービス"
131
 
132
- #: add-to-any.php:732
133
  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."
134
  msgstr "以下からサービスを選択してください。再度クリックすると非選択にできます。上のアイコンをドラッグ&ドロップして表示の順序を変更できます。"
135
 
136
- #: add-to-any.php:764
137
  msgid "Button"
138
  msgstr "ブックマークボタン"
139
 
140
- #: add-to-any.php:803
141
  msgid "Image URL"
142
  msgstr "画像のURL"
143
 
144
- #: add-to-any.php:810
145
  msgid "Text only"
146
  msgstr "文字のみ"
147
 
148
- #: add-to-any.php:818
149
  msgid "Placement"
150
  msgstr "ブックマークボタンの場所"
151
 
152
- #: add-to-any.php:823
153
  #, fuzzy, php-format
154
  msgid "Display at the %s of posts"
155
  msgstr "投稿の最後にボタンを表示する"
156
 
157
- #: add-to-any.php:830
158
  #, php-format
159
  msgid "Display at the %s of post excerpts"
160
  msgstr ""
161
 
162
- #: add-to-any.php:837
163
  #, fuzzy, php-format
164
  msgid "Display at the %s of posts on the front page"
165
  msgstr "フロントページで投稿の最後にボタンを表示する"
166
 
167
- #: add-to-any.php:845
168
  #, fuzzy, php-format
169
  msgid "Display at the %s of posts in the feed"
170
  msgstr "フィードで投稿の最後にボタンを表示する"
171
 
172
- #: add-to-any.php:849
173
  #, fuzzy, php-format
174
  msgid "Display at the %s of pages"
175
  msgstr "ページの最後にボタンを表示する"
176
 
177
- #: add-to-any.php:853
178
  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>)"
179
  msgstr "どれもチェックしない場合は、<code>index.php</code> や <code>single.php</code>、<code>page.php</code> などの <a href=\"theme-editor.php\">テンプレートページ</a> に次のコードを書いてください"
180
 
181
- #: add-to-any.php:862
182
  msgid "Menu Style"
183
  msgstr "メニューのスタイル"
184
 
185
- #: add-to-any.php:864
186
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
187
  msgstr "AddToAny のメニュースタイラーでブックマークメニューの色を変更できます。コピーしたコードは下の <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">その他のオプション</a> 欄に貼り付けてください。"
188
 
189
- #: add-to-any.php:866
190
  msgid "Open the AddToAny Menu Styler in a new window"
191
  msgstr "AddToAny メニュースタイラーを新しいウインドウで開きます"
192
 
193
- #: add-to-any.php:868
194
  msgid "Open Menu Styler"
195
  msgstr "メニュースタイラーを開く"
196
 
197
- #: add-to-any.php:873
198
  msgid "Menu Options"
199
  msgstr "メニューのオプション"
200
 
201
- #: add-to-any.php:878
202
  msgid "Only show the menu when the user clicks the Share/Save button"
203
  msgstr "ブックマークボタンをクリックしたときだけメニューを表示する"
204
 
205
- #: add-to-any.php:883
206
  msgid "Show the title of the post (or page) within the menu"
207
  msgstr "メニューに投稿(ページ)のタイトルを表示する"
208
 
209
- #: add-to-any.php:888
210
  msgid "Additional Options"
211
  msgstr "その他のオプション"
212
 
213
- #: add-to-any.php:892
214
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
215
  msgstr "AddToAny メニュースタイラーで作成したコードを以下に貼り付けてください。"
216
 
217
- #: add-to-any.php:896
218
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
219
  msgstr "ブックマークメニューで使用する javascript の変数を設定することができます。"
220
 
221
- #: add-to-any.php:897
222
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
223
  msgstr "詳しくは AddToAny の <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">javascript API</a> を参照してください。"
224
 
225
- #: add-to-any.php:903
226
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
227
  msgstr "<strong>注意</strong>: コードを追加する場合は、元のコードを上書きしないようにしてください。</label>"
228
 
229
- #: add-to-any.php:908
230
  #, fuzzy
231
  msgid "Advanced Options"
232
  msgstr "その他のオプション"
233
 
234
- #: add-to-any.php:913
235
  msgid "Use CSS stylesheet"
236
  msgstr ""
237
 
238
- #: add-to-any.php:918
239
  msgid "Cache AddToAny locally with daily cache updates"
240
  msgstr ""
241
 
242
- #: add-to-any.php:922
243
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
244
  msgstr ""
245
 
246
- #: add-to-any.php:929
247
  msgid "Save Changes"
248
  msgstr "変更を保存"
249
 
250
- #: add-to-any.php:930
251
  msgid "Are you sure you want to delete all AddToAny options?"
252
  msgstr ""
253
 
254
- #: add-to-any.php:930
255
  msgid "Reset"
256
  msgstr ""
257
 
258
- #: add-to-any.php:935
259
  msgid "Like this plugin?"
260
  msgstr "このプラグインが気に入りましたか?"
261
 
262
- #: add-to-any.php:936
263
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
264
  msgstr "WordPress.org で <a href=\"http://wordpress.org/extend/plugins/add-to-any/\">良い評価をつける</a>。"
265
 
266
- #: add-to-any.php:937
267
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
268
  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\">教える</a>。"
269
 
270
- #: add-to-any.php:939
271
  msgid "Need support?"
272
  msgstr "サポートが必要ですか?"
273
 
274
- #: add-to-any.php:940
275
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
276
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ</a> をご確認ください。"
277
 
278
- #: add-to-any.php:941
279
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
280
  msgstr "<a href=\"http://wordpress.org/tags/add-to-any\">本家サポートフォーラム</a> をご利用ください。"
281
 
282
- #: add-to-any.php:1066
283
  msgid "Add/Remove Services"
284
  msgstr "サービスの追加/削除"
285
 
286
- #: add-to-any.php:1123
287
  msgid "Share/Save"
288
  msgstr "ブックマーク"
289
 
290
- #: add-to-any.php:1124
291
  msgid "Share/Save Buttons"
292
  msgstr "AddToAny ボタン"
293
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-23 20:39-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
+ #: add-to-any.php:322
17
  msgid "Share"
18
  msgstr "共有"
19
 
20
+ #: add-to-any.php:323
21
  msgid "Save"
22
  msgstr "ブックマーク"
23
 
24
+ #: add-to-any.php:324
25
  msgid "Subscribe"
26
  msgstr "購読"
27
 
28
+ #: add-to-any.php:325
29
  msgid "E-mail"
30
  msgstr "メール"
31
 
32
+ #: add-to-any.php:326
33
  msgid "Bookmark"
34
  msgstr "ブックマーク"
35
 
36
+ #: add-to-any.php:327
37
  msgid "Show all"
38
  msgstr "すべて表示する"
39
 
40
+ #: add-to-any.php:328
41
  msgid "Show less"
42
  msgstr "小さく表示する"
43
 
44
+ #: add-to-any.php:329
45
  msgid "Find service(s)"
46
  msgstr "サービスを探す"
47
 
48
+ #: add-to-any.php:330
49
  msgid "Instantly find any service to add to"
50
  msgstr "追加するサービスを今すぐ探す"
51
 
52
+ #: add-to-any.php:331
53
  msgid "Powered by"
54
  msgstr "Powered by"
55
 
56
+ #: add-to-any.php:332
57
  msgid "Share via e-mail"
58
  msgstr "メールで共有"
59
 
60
+ #: add-to-any.php:333
61
  msgid "Subscribe via e-mail"
62
  msgstr "メールで購読"
63
 
64
+ #: add-to-any.php:334
65
  msgid "Bookmark in your browser"
66
  msgstr "ブラウザにブックマーク"
67
 
68
+ #: add-to-any.php:335
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr "Ctrl+D または &#8984;+D でブックマークします"
71
 
72
+ #: add-to-any.php:336
73
  msgid "Add to your favorites"
74
  msgstr "お気に入りに追加"
75
 
76
+ #: add-to-any.php:337
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr "お好きなメールアドレスかメールソフトで送信します"
79
 
80
+ #: add-to-any.php:338
81
  msgid "E-mail program"
82
  msgstr "メールソフト"
83
 
84
+ #: add-to-any.php:363
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 "テーマを修正してください。<a href=\"theme-editor.php\">テーマエディタ</a>で、使用しているテーマの <code>footer.php</code> 内の <code>&lt;/body&gt;</code> 直前に <code>&lt;?php wp_footer(); ?&gt;</code> を挿入してください。"
87
 
88
+ #: add-to-any.php:520
89
  #, php-format
90
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
91
  msgstr ""
92
 
93
+ #: add-to-any.php:654
94
+ #: add-to-any.php:778
95
+ #: add-to-any.php:782
96
+ #: add-to-any.php:786
97
+ #: add-to-any.php:790
98
+ #: add-to-any.php:822
99
  msgid "Share/Bookmark"
100
  msgstr "ブックマーク"
101
 
102
+ #: add-to-any.php:667
103
  msgid "Settings saved."
104
  msgstr "設定を保存しました。"
105
 
106
+ #: add-to-any.php:688
107
  msgid "bottom"
108
  msgstr ""
109
 
110
+ #: add-to-any.php:692
111
  msgid "top"
112
  msgstr ""
113
 
114
+ #: add-to-any.php:696
115
  msgid "top &amp; bottom"
116
  msgstr ""
117
 
118
+ #: add-to-any.php:727
119
  msgid "AddToAny: Share/Save "
120
  msgstr "AddToAny ボタン"
121
 
122
+ #: add-to-any.php:727
123
+ #: add-to-any.php:1132
124
+ #: add-to-any.php:1163
125
  msgid "Settings"
126
  msgstr "設定"
127
 
128
+ #: add-to-any.php:736
129
  msgid "Standalone Services"
130
  msgstr "アイコン表示するサービス"
131
 
132
+ #: add-to-any.php:741
133
  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."
134
  msgstr "以下からサービスを選択してください。再度クリックすると非選択にできます。上のアイコンをドラッグ&ドロップして表示の順序を変更できます。"
135
 
136
+ #: add-to-any.php:773
137
  msgid "Button"
138
  msgstr "ブックマークボタン"
139
 
140
+ #: add-to-any.php:812
141
  msgid "Image URL"
142
  msgstr "画像のURL"
143
 
144
+ #: add-to-any.php:819
145
  msgid "Text only"
146
  msgstr "文字のみ"
147
 
148
+ #: add-to-any.php:827
149
  msgid "Placement"
150
  msgstr "ブックマークボタンの場所"
151
 
152
+ #: add-to-any.php:832
153
  #, fuzzy, php-format
154
  msgid "Display at the %s of posts"
155
  msgstr "投稿の最後にボタンを表示する"
156
 
157
+ #: add-to-any.php:839
158
  #, php-format
159
  msgid "Display at the %s of post excerpts"
160
  msgstr ""
161
 
162
+ #: add-to-any.php:846
163
  #, fuzzy, php-format
164
  msgid "Display at the %s of posts on the front page"
165
  msgstr "フロントページで投稿の最後にボタンを表示する"
166
 
167
+ #: add-to-any.php:854
168
  #, fuzzy, php-format
169
  msgid "Display at the %s of posts in the feed"
170
  msgstr "フィードで投稿の最後にボタンを表示する"
171
 
172
+ #: add-to-any.php:858
173
  #, fuzzy, php-format
174
  msgid "Display at the %s of pages"
175
  msgstr "ページの最後にボタンを表示する"
176
 
177
+ #: add-to-any.php:862
178
  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>)"
179
  msgstr "どれもチェックしない場合は、<code>index.php</code> や <code>single.php</code>、<code>page.php</code> などの <a href=\"theme-editor.php\">テンプレートページ</a> に次のコードを書いてください"
180
 
181
+ #: add-to-any.php:871
182
  msgid "Menu Style"
183
  msgstr "メニューのスタイル"
184
 
185
+ #: add-to-any.php:873
186
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
187
  msgstr "AddToAny のメニュースタイラーでブックマークメニューの色を変更できます。コピーしたコードは下の <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">その他のオプション</a> 欄に貼り付けてください。"
188
 
189
+ #: add-to-any.php:875
190
  msgid "Open the AddToAny Menu Styler in a new window"
191
  msgstr "AddToAny メニュースタイラーを新しいウインドウで開きます"
192
 
193
+ #: add-to-any.php:877
194
  msgid "Open Menu Styler"
195
  msgstr "メニュースタイラーを開く"
196
 
197
+ #: add-to-any.php:882
198
  msgid "Menu Options"
199
  msgstr "メニューのオプション"
200
 
201
+ #: add-to-any.php:887
202
  msgid "Only show the menu when the user clicks the Share/Save button"
203
  msgstr "ブックマークボタンをクリックしたときだけメニューを表示する"
204
 
205
+ #: add-to-any.php:892
206
  msgid "Show the title of the post (or page) within the menu"
207
  msgstr "メニューに投稿(ページ)のタイトルを表示する"
208
 
209
+ #: add-to-any.php:897
210
  msgid "Additional Options"
211
  msgstr "その他のオプション"
212
 
213
+ #: add-to-any.php:901
214
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
215
  msgstr "AddToAny メニュースタイラーで作成したコードを以下に貼り付けてください。"
216
 
217
+ #: add-to-any.php:905
218
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
219
  msgstr "ブックマークメニューで使用する javascript の変数を設定することができます。"
220
 
221
+ #: add-to-any.php:906
222
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
223
  msgstr "詳しくは AddToAny の <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">javascript API</a> を参照してください。"
224
 
225
+ #: add-to-any.php:912
226
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
227
  msgstr "<strong>注意</strong>: コードを追加する場合は、元のコードを上書きしないようにしてください。</label>"
228
 
229
+ #: add-to-any.php:917
230
  #, fuzzy
231
  msgid "Advanced Options"
232
  msgstr "その他のオプション"
233
 
234
+ #: add-to-any.php:922
235
  msgid "Use CSS stylesheet"
236
  msgstr ""
237
 
238
+ #: add-to-any.php:927
239
  msgid "Cache AddToAny locally with daily cache updates"
240
  msgstr ""
241
 
242
+ #: add-to-any.php:931
243
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
244
  msgstr ""
245
 
246
+ #: add-to-any.php:938
247
  msgid "Save Changes"
248
  msgstr "変更を保存"
249
 
250
+ #: add-to-any.php:939
251
  msgid "Are you sure you want to delete all AddToAny options?"
252
  msgstr ""
253
 
254
+ #: add-to-any.php:939
255
  msgid "Reset"
256
  msgstr ""
257
 
258
+ #: add-to-any.php:944
259
  msgid "Like this plugin?"
260
  msgstr "このプラグインが気に入りましたか?"
261
 
262
+ #: add-to-any.php:945
263
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
264
  msgstr "WordPress.org で <a href=\"http://wordpress.org/extend/plugins/add-to-any/\">良い評価をつける</a>。"
265
 
266
+ #: add-to-any.php:946
267
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
268
  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\">教える</a>。"
269
 
270
+ #: add-to-any.php:948
271
  msgid "Need support?"
272
  msgstr "サポートが必要ですか?"
273
 
274
+ #: add-to-any.php:949
275
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
276
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ</a> をご確認ください。"
277
 
278
+ #: add-to-any.php:950
279
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
280
  msgstr "<a href=\"http://wordpress.org/tags/add-to-any\">本家サポートフォーラム</a> をご利用ください。"
281
 
282
+ #: add-to-any.php:1075
283
  msgid "Add/Remove Services"
284
  msgstr "サービスの追加/削除"
285
 
286
+ #: add-to-any.php:1132
287
  msgid "Share/Save"
288
  msgstr "ブックマーク"
289
 
290
+ #: add-to-any.php:1133
291
  msgid "Share/Save Buttons"
292
  msgstr "AddToAny ボタン"
293
 
languages/add-to-any-nl_NL.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any .9.9.6.4\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-02-16 00:10-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Rene <info@wpwebshop.com>\n"
8
  "Language-Team: Translation by WordPressWebshop.com <info@wpwebshop.com>\n"
@@ -16,280 +16,280 @@ msgstr ""
16
  "X-Poedit-Country: NETHERLANDS\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: add-to-any.php:313
20
  msgid "Share"
21
  msgstr "Delen"
22
 
23
- #: add-to-any.php:314
24
  msgid "Save"
25
  msgstr "Bewaren"
26
 
27
- #: add-to-any.php:315
28
  msgid "Subscribe"
29
  msgstr "Inschrijven"
30
 
31
- #: add-to-any.php:316
32
  msgid "E-mail"
33
  msgstr "E-mail"
34
 
35
- #: add-to-any.php:317
36
  msgid "Bookmark"
37
  msgstr "Bookmark"
38
 
39
- #: add-to-any.php:318
40
  msgid "Show all"
41
  msgstr "Alles weergeven"
42
 
43
- #: add-to-any.php:319
44
  msgid "Show less"
45
  msgstr "Niet alles weergeven"
46
 
47
- #: add-to-any.php:320
48
  msgid "Find service(s)"
49
  msgstr "Vind dienst(en)"
50
 
51
- #: add-to-any.php:321
52
  msgid "Instantly find any service to add to"
53
  msgstr "Vind direct een dienst om aan toe te voegen"
54
 
55
- #: add-to-any.php:322
56
  msgid "Powered by"
57
  msgstr "Mede mogelijk gemaakt door"
58
 
59
- #: add-to-any.php:323
60
  msgid "Share via e-mail"
61
  msgstr "Delen via e-mail"
62
 
63
- #: add-to-any.php:324
64
  msgid "Subscribe via e-mail"
65
  msgstr "Inschrijven via email"
66
 
67
- #: add-to-any.php:325
68
  msgid "Bookmark in your browser"
69
  msgstr "Bookmark in je browser"
70
 
71
- #: add-to-any.php:326
72
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
73
  msgstr "Druk op Ctrl+D of &#8984;+D om deze pagina te bookmarken"
74
 
75
- #: add-to-any.php:327
76
  msgid "Add to your favorites"
77
  msgstr "Voeg aan je favorieten toe"
78
 
79
- #: add-to-any.php:328
80
  msgid "Send from any e-mail address or e-mail program"
81
  msgstr "Verzend vanaf elk email adres of email programma"
82
 
83
- #: add-to-any.php:329
84
  msgid "E-mail program"
85
  msgstr "E-mail programma"
86
 
87
- #: add-to-any.php:354
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 "Je template moet gerepareerd worden, gebruik hiervoor de <a href=\"theme-editor.php\">Template Editor</ a> om <code>&lt;?php wp_footer(); ?&gt;</code> in te voegen net voor de <code>&lt;/body&gt;</code> regel van het <code>footer.php</code> bestand."
90
 
91
- #: add-to-any.php:511
92
  #, php-format
93
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
94
  msgstr "Niet mogelijk om folder %s te creëeren. Is de bovenliggende folder beschrijfbaar door de server?"
95
 
96
- #: add-to-any.php:645
97
- #: add-to-any.php:769
98
- #: add-to-any.php:773
99
- #: add-to-any.php:777
100
- #: add-to-any.php:781
101
- #: add-to-any.php:813
102
  msgid "Share/Bookmark"
103
  msgstr "Delen/Bookmark"
104
 
105
- #: add-to-any.php:658
106
  msgid "Settings saved."
107
  msgstr "Instellingen opgeslagen."
108
 
109
- #: add-to-any.php:679
110
  msgid "bottom"
111
  msgstr ""
112
 
113
- #: add-to-any.php:683
114
  msgid "top"
115
  msgstr ""
116
 
117
- #: add-to-any.php:687
118
  msgid "top &amp; bottom"
119
  msgstr ""
120
 
121
- #: add-to-any.php:718
122
  msgid "AddToAny: Share/Save "
123
  msgstr "AddToAny: Delen/Bewaren"
124
 
125
- #: add-to-any.php:718
126
- #: add-to-any.php:1123
127
- #: add-to-any.php:1154
128
  msgid "Settings"
129
  msgstr "Instellingen"
130
 
131
- #: add-to-any.php:727
132
  msgid "Standalone Services"
133
  msgstr "Zelfstandige Diensten"
134
 
135
- #: add-to-any.php:732
136
  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."
137
  msgstr "Kies de gewenste diensten hieronder. Klik op een gekozen dienst om deze weer te verwijderen. Herorder de volgorde van diensten door middel van slepen en plaatsen zoals hierboven."
138
 
139
- #: add-to-any.php:764
140
  msgid "Button"
141
  msgstr "Knop"
142
 
143
- #: add-to-any.php:803
144
  msgid "Image URL"
145
  msgstr "Afbeelding URL"
146
 
147
- #: add-to-any.php:810
148
  msgid "Text only"
149
  msgstr "Alleen tekst"
150
 
151
- #: add-to-any.php:818
152
  msgid "Placement"
153
  msgstr "Plaatsing"
154
 
155
- #: add-to-any.php:823
156
  #, fuzzy, php-format
157
  msgid "Display at the %s of posts"
158
  msgstr "Laat Delen/Bewaren knop zien aan het einde van berichten"
159
 
160
- #: add-to-any.php:830
161
  #, php-format
162
  msgid "Display at the %s of post excerpts"
163
  msgstr ""
164
 
165
- #: add-to-any.php:837
166
  #, fuzzy, php-format
167
  msgid "Display at the %s of posts on the front page"
168
  msgstr "Laat Delen/Bewaren knop zien aan de onderkant van berichten op de voorpagina"
169
 
170
- #: add-to-any.php:845
171
  #, fuzzy, php-format
172
  msgid "Display at the %s of posts in the feed"
173
  msgstr "Laat Delen/Bewaren knop zien aan de onderkant van feed berichten "
174
 
175
- #: add-to-any.php:849
176
  #, fuzzy, php-format
177
  msgid "Display at the %s of pages"
178
  msgstr "Laat Delen/Bewaren knop zien aan de onderkant van pagina's"
179
 
180
- #: add-to-any.php:853
181
  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>)"
182
  msgstr "Indien niet aangevinkt moet je de volgende code in <a href=\"theme-editor.php\">je sjabloon pagina's</a> plaatsen (binnen <code>index.php</code>, <code>single.php</code>, en/of <code>page.php</code>)"
183
 
184
- #: add-to-any.php:862
185
  msgid "Menu Style"
186
  msgstr "Menu Stijl"
187
 
188
- #: add-to-any.php:864
189
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
190
  msgstr "Met behulp van AddToAny's Menu Styler kun je de kleuren veranderen van je Delen/Bewaren menu! Wanneer je klaar bent moet je de gegenereerde code plakken in het onderstaande vak <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Aanvullende opties</a>."
191
 
192
- #: add-to-any.php:866
193
  msgid "Open the AddToAny Menu Styler in a new window"
194
  msgstr "Open het AddToAny Styler menu in een nieuw venster"
195
 
196
- #: add-to-any.php:868
197
  msgid "Open Menu Styler"
198
  msgstr "Open Menu Styler"
199
 
200
- #: add-to-any.php:873
201
  msgid "Menu Options"
202
  msgstr "Menu Opties"
203
 
204
- #: add-to-any.php:878
205
  msgid "Only show the menu when the user clicks the Share/Save button"
206
  msgstr "Alleen het menu weergeven wanneer de gebruiker klikt op de Delen/Bewaren knop"
207
 
208
- #: add-to-any.php:883
209
  msgid "Show the title of the post (or page) within the menu"
210
  msgstr "Toon de titel van het bericht (of pagina) in het menu"
211
 
212
- #: add-to-any.php:888
213
  msgid "Additional Options"
214
  msgstr "Additionele Opties"
215
 
216
- #: add-to-any.php:892
217
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
218
  msgstr "Plak de code van AddToAny's Menu Styler in het vak hieronder!"
219
 
220
- #: add-to-any.php:896
221
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
222
  msgstr "Hieronder kun je speciale JavaScript variabelen instellen welke van toepassing zijn op elk Delen/Bewaren menu."
223
 
224
- #: add-to-any.php:897
225
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
226
  msgstr "Gevorderde gebruikers willen wellicht de <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">extra opties</ a> van AddToAny's verkennen."
227
 
228
- #: add-to-any.php:903
229
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
230
  msgstr "<strong>Opmerking</ strong>: Pas op dat je niet per ongeluk oudere code overschrijft wanneer je nieuwe code toevoegt.</label>"
231
 
232
- #: add-to-any.php:908
233
  msgid "Advanced Options"
234
  msgstr "Geavanceerde Opties"
235
 
236
- #: add-to-any.php:913
237
  msgid "Use CSS stylesheet"
238
  msgstr "Gebruik CSS stijlbestand"
239
 
240
- #: add-to-any.php:918
241
  msgid "Cache AddToAny locally with daily cache updates"
242
  msgstr "Cache AddToAny lokaal met dagelijkse cache updates"
243
 
244
- #: add-to-any.php:922
245
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
246
  msgstr "Alleen ter afweging voor sites met vaak terugkomende bezoekers. Aangezien veel bezoekers AddToAny al gecached hebben in hun browser zal AddToAny lokaal gestart van je site langzamer zijn voor bezoekers. Wees er zeker van om toekomstige cache/expires headers voor afbeelding bestanden in te stellen in je <code>uploads/addtoany</code> folder."
247
 
248
- #: add-to-any.php:929
249
  msgid "Save Changes"
250
  msgstr "Wijzigingen opslaan"
251
 
252
- #: add-to-any.php:930
253
  msgid "Are you sure you want to delete all AddToAny options?"
254
  msgstr ""
255
 
256
- #: add-to-any.php:930
257
  msgid "Reset"
258
  msgstr ""
259
 
260
- #: add-to-any.php:935
261
  msgid "Like this plugin?"
262
  msgstr "Vind je deze plugin goed?"
263
 
264
- #: add-to-any.php:936
265
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
266
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Geef het een goede rating</a> op WordPress.org."
267
 
268
- #: add-to-any.php:937
269
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
270
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Deel het</a> met je vrienden."
271
 
272
- #: add-to-any.php:939
273
  msgid "Need support?"
274
  msgstr "Hulp nodig?"
275
 
276
- #: add-to-any.php:940
277
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
278
  msgstr "Zie de <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">veelgestelde vragen</ a> (Engels)."
279
 
280
- #: add-to-any.php:941
281
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
282
  msgstr "Zoek in de <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a> (Engels)."
283
 
284
- #: add-to-any.php:1066
285
  msgid "Add/Remove Services"
286
  msgstr "Toevoegen/Verwijderen Diensten"
287
 
288
- #: add-to-any.php:1123
289
  msgid "Share/Save"
290
  msgstr "Delen/Bewaren"
291
 
292
- #: add-to-any.php:1124
293
  msgid "Share/Save Buttons"
294
  msgstr "Delen/Bewaren Knoppen"
295
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any .9.9.6.4\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-23 20:39-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Rene <info@wpwebshop.com>\n"
8
  "Language-Team: Translation by WordPressWebshop.com <info@wpwebshop.com>\n"
16
  "X-Poedit-Country: NETHERLANDS\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: add-to-any.php:322
20
  msgid "Share"
21
  msgstr "Delen"
22
 
23
+ #: add-to-any.php:323
24
  msgid "Save"
25
  msgstr "Bewaren"
26
 
27
+ #: add-to-any.php:324
28
  msgid "Subscribe"
29
  msgstr "Inschrijven"
30
 
31
+ #: add-to-any.php:325
32
  msgid "E-mail"
33
  msgstr "E-mail"
34
 
35
+ #: add-to-any.php:326
36
  msgid "Bookmark"
37
  msgstr "Bookmark"
38
 
39
+ #: add-to-any.php:327
40
  msgid "Show all"
41
  msgstr "Alles weergeven"
42
 
43
+ #: add-to-any.php:328
44
  msgid "Show less"
45
  msgstr "Niet alles weergeven"
46
 
47
+ #: add-to-any.php:329
48
  msgid "Find service(s)"
49
  msgstr "Vind dienst(en)"
50
 
51
+ #: add-to-any.php:330
52
  msgid "Instantly find any service to add to"
53
  msgstr "Vind direct een dienst om aan toe te voegen"
54
 
55
+ #: add-to-any.php:331
56
  msgid "Powered by"
57
  msgstr "Mede mogelijk gemaakt door"
58
 
59
+ #: add-to-any.php:332
60
  msgid "Share via e-mail"
61
  msgstr "Delen via e-mail"
62
 
63
+ #: add-to-any.php:333
64
  msgid "Subscribe via e-mail"
65
  msgstr "Inschrijven via email"
66
 
67
+ #: add-to-any.php:334
68
  msgid "Bookmark in your browser"
69
  msgstr "Bookmark in je browser"
70
 
71
+ #: add-to-any.php:335
72
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
73
  msgstr "Druk op Ctrl+D of &#8984;+D om deze pagina te bookmarken"
74
 
75
+ #: add-to-any.php:336
76
  msgid "Add to your favorites"
77
  msgstr "Voeg aan je favorieten toe"
78
 
79
+ #: add-to-any.php:337
80
  msgid "Send from any e-mail address or e-mail program"
81
  msgstr "Verzend vanaf elk email adres of email programma"
82
 
83
+ #: add-to-any.php:338
84
  msgid "E-mail program"
85
  msgstr "E-mail programma"
86
 
87
+ #: add-to-any.php:363
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 "Je template moet gerepareerd worden, gebruik hiervoor de <a href=\"theme-editor.php\">Template Editor</ a> om <code>&lt;?php wp_footer(); ?&gt;</code> in te voegen net voor de <code>&lt;/body&gt;</code> regel van het <code>footer.php</code> bestand."
90
 
91
+ #: add-to-any.php:520
92
  #, php-format
93
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
94
  msgstr "Niet mogelijk om folder %s te creëeren. Is de bovenliggende folder beschrijfbaar door de server?"
95
 
96
+ #: add-to-any.php:654
97
+ #: add-to-any.php:778
98
+ #: add-to-any.php:782
99
+ #: add-to-any.php:786
100
+ #: add-to-any.php:790
101
+ #: add-to-any.php:822
102
  msgid "Share/Bookmark"
103
  msgstr "Delen/Bookmark"
104
 
105
+ #: add-to-any.php:667
106
  msgid "Settings saved."
107
  msgstr "Instellingen opgeslagen."
108
 
109
+ #: add-to-any.php:688
110
  msgid "bottom"
111
  msgstr ""
112
 
113
+ #: add-to-any.php:692
114
  msgid "top"
115
  msgstr ""
116
 
117
+ #: add-to-any.php:696
118
  msgid "top &amp; bottom"
119
  msgstr ""
120
 
121
+ #: add-to-any.php:727
122
  msgid "AddToAny: Share/Save "
123
  msgstr "AddToAny: Delen/Bewaren"
124
 
125
+ #: add-to-any.php:727
126
+ #: add-to-any.php:1132
127
+ #: add-to-any.php:1163
128
  msgid "Settings"
129
  msgstr "Instellingen"
130
 
131
+ #: add-to-any.php:736
132
  msgid "Standalone Services"
133
  msgstr "Zelfstandige Diensten"
134
 
135
+ #: add-to-any.php:741
136
  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."
137
  msgstr "Kies de gewenste diensten hieronder. Klik op een gekozen dienst om deze weer te verwijderen. Herorder de volgorde van diensten door middel van slepen en plaatsen zoals hierboven."
138
 
139
+ #: add-to-any.php:773
140
  msgid "Button"
141
  msgstr "Knop"
142
 
143
+ #: add-to-any.php:812
144
  msgid "Image URL"
145
  msgstr "Afbeelding URL"
146
 
147
+ #: add-to-any.php:819
148
  msgid "Text only"
149
  msgstr "Alleen tekst"
150
 
151
+ #: add-to-any.php:827
152
  msgid "Placement"
153
  msgstr "Plaatsing"
154
 
155
+ #: add-to-any.php:832
156
  #, fuzzy, php-format
157
  msgid "Display at the %s of posts"
158
  msgstr "Laat Delen/Bewaren knop zien aan het einde van berichten"
159
 
160
+ #: add-to-any.php:839
161
  #, php-format
162
  msgid "Display at the %s of post excerpts"
163
  msgstr ""
164
 
165
+ #: add-to-any.php:846
166
  #, fuzzy, php-format
167
  msgid "Display at the %s of posts on the front page"
168
  msgstr "Laat Delen/Bewaren knop zien aan de onderkant van berichten op de voorpagina"
169
 
170
+ #: add-to-any.php:854
171
  #, fuzzy, php-format
172
  msgid "Display at the %s of posts in the feed"
173
  msgstr "Laat Delen/Bewaren knop zien aan de onderkant van feed berichten "
174
 
175
+ #: add-to-any.php:858
176
  #, fuzzy, php-format
177
  msgid "Display at the %s of pages"
178
  msgstr "Laat Delen/Bewaren knop zien aan de onderkant van pagina's"
179
 
180
+ #: add-to-any.php:862
181
  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>)"
182
  msgstr "Indien niet aangevinkt moet je de volgende code in <a href=\"theme-editor.php\">je sjabloon pagina's</a> plaatsen (binnen <code>index.php</code>, <code>single.php</code>, en/of <code>page.php</code>)"
183
 
184
+ #: add-to-any.php:871
185
  msgid "Menu Style"
186
  msgstr "Menu Stijl"
187
 
188
+ #: add-to-any.php:873
189
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
190
  msgstr "Met behulp van AddToAny's Menu Styler kun je de kleuren veranderen van je Delen/Bewaren menu! Wanneer je klaar bent moet je de gegenereerde code plakken in het onderstaande vak <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Aanvullende opties</a>."
191
 
192
+ #: add-to-any.php:875
193
  msgid "Open the AddToAny Menu Styler in a new window"
194
  msgstr "Open het AddToAny Styler menu in een nieuw venster"
195
 
196
+ #: add-to-any.php:877
197
  msgid "Open Menu Styler"
198
  msgstr "Open Menu Styler"
199
 
200
+ #: add-to-any.php:882
201
  msgid "Menu Options"
202
  msgstr "Menu Opties"
203
 
204
+ #: add-to-any.php:887
205
  msgid "Only show the menu when the user clicks the Share/Save button"
206
  msgstr "Alleen het menu weergeven wanneer de gebruiker klikt op de Delen/Bewaren knop"
207
 
208
+ #: add-to-any.php:892
209
  msgid "Show the title of the post (or page) within the menu"
210
  msgstr "Toon de titel van het bericht (of pagina) in het menu"
211
 
212
+ #: add-to-any.php:897
213
  msgid "Additional Options"
214
  msgstr "Additionele Opties"
215
 
216
+ #: add-to-any.php:901
217
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
218
  msgstr "Plak de code van AddToAny's Menu Styler in het vak hieronder!"
219
 
220
+ #: add-to-any.php:905
221
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
222
  msgstr "Hieronder kun je speciale JavaScript variabelen instellen welke van toepassing zijn op elk Delen/Bewaren menu."
223
 
224
+ #: add-to-any.php:906
225
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
226
  msgstr "Gevorderde gebruikers willen wellicht de <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">extra opties</ a> van AddToAny's verkennen."
227
 
228
+ #: add-to-any.php:912
229
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
230
  msgstr "<strong>Opmerking</ strong>: Pas op dat je niet per ongeluk oudere code overschrijft wanneer je nieuwe code toevoegt.</label>"
231
 
232
+ #: add-to-any.php:917
233
  msgid "Advanced Options"
234
  msgstr "Geavanceerde Opties"
235
 
236
+ #: add-to-any.php:922
237
  msgid "Use CSS stylesheet"
238
  msgstr "Gebruik CSS stijlbestand"
239
 
240
+ #: add-to-any.php:927
241
  msgid "Cache AddToAny locally with daily cache updates"
242
  msgstr "Cache AddToAny lokaal met dagelijkse cache updates"
243
 
244
+ #: add-to-any.php:931
245
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
246
  msgstr "Alleen ter afweging voor sites met vaak terugkomende bezoekers. Aangezien veel bezoekers AddToAny al gecached hebben in hun browser zal AddToAny lokaal gestart van je site langzamer zijn voor bezoekers. Wees er zeker van om toekomstige cache/expires headers voor afbeelding bestanden in te stellen in je <code>uploads/addtoany</code> folder."
247
 
248
+ #: add-to-any.php:938
249
  msgid "Save Changes"
250
  msgstr "Wijzigingen opslaan"
251
 
252
+ #: add-to-any.php:939
253
  msgid "Are you sure you want to delete all AddToAny options?"
254
  msgstr ""
255
 
256
+ #: add-to-any.php:939
257
  msgid "Reset"
258
  msgstr ""
259
 
260
+ #: add-to-any.php:944
261
  msgid "Like this plugin?"
262
  msgstr "Vind je deze plugin goed?"
263
 
264
+ #: add-to-any.php:945
265
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
266
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Geef het een goede rating</a> op WordPress.org."
267
 
268
+ #: add-to-any.php:946
269
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
270
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Deel het</a> met je vrienden."
271
 
272
+ #: add-to-any.php:948
273
  msgid "Need support?"
274
  msgstr "Hulp nodig?"
275
 
276
+ #: add-to-any.php:949
277
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
278
  msgstr "Zie de <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">veelgestelde vragen</ a> (Engels)."
279
 
280
+ #: add-to-any.php:950
281
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
282
  msgstr "Zoek in de <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a> (Engels)."
283
 
284
+ #: add-to-any.php:1075
285
  msgid "Add/Remove Services"
286
  msgstr "Toevoegen/Verwijderen Diensten"
287
 
288
+ #: add-to-any.php:1132
289
  msgid "Share/Save"
290
  msgstr "Delen/Bewaren"
291
 
292
+ #: add-to-any.php:1133
293
  msgid "Share/Save Buttons"
294
  msgstr "Delen/Bewaren Knoppen"
295
 
languages/add-to-any-pt_BR.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: 2011-02-16 00:10-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
@@ -13,281 +13,281 @@ msgstr ""
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: add-to-any.php:313
17
  msgid "Share"
18
  msgstr "Compartilhar"
19
 
20
- #: add-to-any.php:314
21
  msgid "Save"
22
  msgstr "Salvar"
23
 
24
- #: add-to-any.php:315
25
  msgid "Subscribe"
26
  msgstr "Inscrever"
27
 
28
- #: add-to-any.php:316
29
  msgid "E-mail"
30
  msgstr "E-mail"
31
 
32
- #: add-to-any.php:317
33
  msgid "Bookmark"
34
  msgstr "Favoritos"
35
 
36
- #: add-to-any.php:318
37
  msgid "Show all"
38
  msgstr "Mostrar tudo"
39
 
40
- #: add-to-any.php:319
41
  msgid "Show less"
42
  msgstr "Mostrar menos"
43
 
44
- #: add-to-any.php:320
45
  msgid "Find service(s)"
46
  msgstr "Procurar serviço(s)"
47
 
48
- #: add-to-any.php:321
49
  msgid "Instantly find any service to add to"
50
  msgstr "Encontrar rapidamente qualquer serviço para"
51
 
52
- #: add-to-any.php:322
53
  msgid "Powered by"
54
  msgstr "Serviço fornecido por"
55
 
56
- #: add-to-any.php:323
57
  msgid "Share via e-mail"
58
  msgstr "Compartilhar por e-mail"
59
 
60
- #: add-to-any.php:324
61
  msgid "Subscribe via e-mail"
62
  msgstr "Inscrever por e-mail"
63
 
64
- #: add-to-any.php:325
65
  msgid "Bookmark in your browser"
66
  msgstr "Adicionar aos favoritos"
67
 
68
- #: add-to-any.php:326
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 favoritos"
71
 
72
- #: add-to-any.php:327
73
  msgid "Add to your favorites"
74
  msgstr "Adicionar a favoritos"
75
 
76
- #: add-to-any.php:328
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:329
81
  msgid "E-mail program"
82
  msgstr "Programa de e-mail"
83
 
84
- #: add-to-any.php:354
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:511
89
  #, php-format
90
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
91
  msgstr ""
92
 
93
- #: add-to-any.php:645
94
- #: add-to-any.php:769
95
- #: add-to-any.php:773
96
- #: add-to-any.php:777
97
- #: add-to-any.php:781
98
- #: add-to-any.php:813
99
  msgid "Share/Bookmark"
100
  msgstr "Compartilhar/Favoritos"
101
 
102
- #: add-to-any.php:658
103
  msgid "Settings saved."
104
  msgstr "Configuração salvas."
105
 
106
- #: add-to-any.php:679
107
  msgid "bottom"
108
  msgstr ""
109
 
110
- #: add-to-any.php:683
111
  msgid "top"
112
  msgstr ""
113
 
114
- #: add-to-any.php:687
115
  msgid "top &amp; bottom"
116
  msgstr ""
117
 
118
- #: add-to-any.php:718
119
  msgid "AddToAny: Share/Save "
120
  msgstr "Compartilhar/Salvar"
121
 
122
- #: add-to-any.php:718
123
- #: add-to-any.php:1123
124
- #: add-to-any.php:1154
125
  msgid "Settings"
126
  msgstr "Configurações"
127
 
128
- #: add-to-any.php:727
129
  msgid "Standalone Services"
130
  msgstr "Serviços Isolados"
131
 
132
- #: add-to-any.php:732
133
  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."
134
  msgstr "Escolha os serviços que deseja. &nbsp;Clique novamente em um serviço já escolhido para o remover. &nbsp;Reordene os serviços fazendo drag'n'drop (arrastar e soltar) conforme aparecem."
135
 
136
- #: add-to-any.php:764
137
  msgid "Button"
138
  msgstr "Botão"
139
 
140
- #: add-to-any.php:803
141
  msgid "Image URL"
142
  msgstr "URL da imagem"
143
 
144
- #: add-to-any.php:810
145
  msgid "Text only"
146
  msgstr "Apenas texto"
147
 
148
- #: add-to-any.php:818
149
  msgid "Placement"
150
  msgstr "Posicionamento"
151
 
152
- #: add-to-any.php:823
153
  #, fuzzy, php-format
154
  msgid "Display at the %s of posts"
155
  msgstr "Mostrar o botão Compartilhar/Salvar no fim de cada post"
156
 
157
- #: add-to-any.php:830
158
  #, php-format
159
  msgid "Display at the %s of post excerpts"
160
  msgstr ""
161
 
162
- #: add-to-any.php:837
163
  #, fuzzy, php-format
164
  msgid "Display at the %s of posts on the front page"
165
  msgstr "Mostrar o botão Compartilhar/Salvar no fim dos posts na página principal"
166
 
167
- #: add-to-any.php:845
168
  #, fuzzy, php-format
169
  msgid "Display at the %s of posts in the feed"
170
  msgstr "Mostrar o botão Compartilhar/Salvar no fim dos posts do feed RSS"
171
 
172
- #: add-to-any.php:849
173
  #, fuzzy, php-format
174
  msgid "Display at the %s of pages"
175
  msgstr "Mostrar o botão Compartilhar/Salvar no fim das páginas"
176
 
177
- #: add-to-any.php:853
178
  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>)"
179
  msgstr "Se estiver desativado, assegure-se de colocar o seguinte código 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>)"
180
 
181
- #: add-to-any.php:862
182
  msgid "Menu Style"
183
  msgstr "Estilo de Menu"
184
 
185
- #: add-to-any.php:864
186
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
187
  msgstr "Usar o Personalizador de Estilo do AddToAny. Pode personalizar as cores do seu menu Partilhar/Guardar! Quando finalizar, assegure-se que cola o código gerado na caixa <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Opções Adicionais</a> em baixo."
188
 
189
- #: add-to-any.php:866
190
  msgid "Open the AddToAny Menu Styler in a new window"
191
  msgstr "Abrir o Menu de Personalização de Estilos AddToAny numa nova janela"
192
 
193
- #: add-to-any.php:868
194
  msgid "Open Menu Styler"
195
  msgstr "Abrir o Menu de Personalização de Estilos"
196
 
197
- #: add-to-any.php:873
198
  msgid "Menu Options"
199
  msgstr "Opções de Menu"
200
 
201
- #: add-to-any.php:878
202
  msgid "Only show the menu when the user clicks the Share/Save button"
203
  msgstr "Mostrar apenas o menu quando o usuário clicar no botão Partilhar/Guardar"
204
 
205
- #: add-to-any.php:883
206
  msgid "Show the title of the post (or page) within the menu"
207
  msgstr "Mostrar o título do post (ou da página) dentro do menu"
208
 
209
- #: add-to-any.php:888
210
  msgid "Additional Options"
211
  msgstr "Opções Adicionais"
212
 
213
- #: add-to-any.php:892
214
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
215
  msgstr "Cole o código do Menu de Personalização de Estilos do AddToAny na caixa a seguir!"
216
 
217
- #: add-to-any.php:896
218
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
219
  msgstr "Em baixo pode inserir varáveis especiais de JavaScript para aplicar a cada menu Compartilhar/Salvar."
220
 
221
- #: add-to-any.php:897
222
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
223
  msgstr "Usuários avançados podem querer explorar a <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">API do JavaScript</a> do AddToAny."
224
 
225
- #: add-to-any.php:903
226
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
227
  msgstr "<strong>Nota</strong>: Se quiser adicionar um novo código, tenha cuidado para não sobrescrever (apagar) acidentalmente qualquer código existente.</label>"
228
 
229
- #: add-to-any.php:908
230
  #, fuzzy
231
  msgid "Advanced Options"
232
  msgstr "Opções Adicionais"
233
 
234
- #: add-to-any.php:913
235
  msgid "Use CSS stylesheet"
236
  msgstr ""
237
 
238
- #: add-to-any.php:918
239
  msgid "Cache AddToAny locally with daily cache updates"
240
  msgstr ""
241
 
242
- #: add-to-any.php:922
243
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
244
  msgstr ""
245
 
246
- #: add-to-any.php:929
247
  msgid "Save Changes"
248
  msgstr "Salvar alterações"
249
 
250
- #: add-to-any.php:930
251
  msgid "Are you sure you want to delete all AddToAny options?"
252
  msgstr ""
253
 
254
- #: add-to-any.php:930
255
  msgid "Reset"
256
  msgstr ""
257
 
258
- #: add-to-any.php:935
259
  msgid "Like this plugin?"
260
  msgstr "Gosta deste plugin?"
261
 
262
- #: add-to-any.php:936
263
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
264
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Atribua-lhe uma boa pontuação</a> no WordPress.org."
265
 
266
- #: add-to-any.php:937
267
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
268
  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\">Compartilhar</a> com os amigos."
269
 
270
- #: add-to-any.php:939
271
  msgid "Need support?"
272
  msgstr "Precisa de ajuda?"
273
 
274
- #: add-to-any.php:940
275
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
276
  msgstr "Consulte a página de <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ's</a>."
277
 
278
- #: add-to-any.php:941
279
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
280
  msgstr "Procurar nos <a href=\"http://wordpress.org/tags/add-to-any\">fóruns</a> de ajuda."
281
 
282
- #: add-to-any.php:1066
283
  msgid "Add/Remove Services"
284
  msgstr "Adicionar/Remover Serviços"
285
 
286
- #: add-to-any.php:1123
287
  msgid "Share/Save"
288
  msgstr "Compartilhar/Salvar"
289
 
290
- #: add-to-any.php:1124
291
  msgid "Share/Save Buttons"
292
  msgstr "Compartilhar|Salvar"
293
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-23 20:39-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
+ #: add-to-any.php:322
17
  msgid "Share"
18
  msgstr "Compartilhar"
19
 
20
+ #: add-to-any.php:323
21
  msgid "Save"
22
  msgstr "Salvar"
23
 
24
+ #: add-to-any.php:324
25
  msgid "Subscribe"
26
  msgstr "Inscrever"
27
 
28
+ #: add-to-any.php:325
29
  msgid "E-mail"
30
  msgstr "E-mail"
31
 
32
+ #: add-to-any.php:326
33
  msgid "Bookmark"
34
  msgstr "Favoritos"
35
 
36
+ #: add-to-any.php:327
37
  msgid "Show all"
38
  msgstr "Mostrar tudo"
39
 
40
+ #: add-to-any.php:328
41
  msgid "Show less"
42
  msgstr "Mostrar menos"
43
 
44
+ #: add-to-any.php:329
45
  msgid "Find service(s)"
46
  msgstr "Procurar serviço(s)"
47
 
48
+ #: add-to-any.php:330
49
  msgid "Instantly find any service to add to"
50
  msgstr "Encontrar rapidamente qualquer serviço para"
51
 
52
+ #: add-to-any.php:331
53
  msgid "Powered by"
54
  msgstr "Serviço fornecido por"
55
 
56
+ #: add-to-any.php:332
57
  msgid "Share via e-mail"
58
  msgstr "Compartilhar por e-mail"
59
 
60
+ #: add-to-any.php:333
61
  msgid "Subscribe via e-mail"
62
  msgstr "Inscrever por e-mail"
63
 
64
+ #: add-to-any.php:334
65
  msgid "Bookmark in your browser"
66
  msgstr "Adicionar aos favoritos"
67
 
68
+ #: add-to-any.php:335
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 favoritos"
71
 
72
+ #: add-to-any.php:336
73
  msgid "Add to your favorites"
74
  msgstr "Adicionar a favoritos"
75
 
76
+ #: add-to-any.php:337
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:338
81
  msgid "E-mail program"
82
  msgstr "Programa de e-mail"
83
 
84
+ #: add-to-any.php:363
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:520
89
  #, php-format
90
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
91
  msgstr ""
92
 
93
+ #: add-to-any.php:654
94
+ #: add-to-any.php:778
95
+ #: add-to-any.php:782
96
+ #: add-to-any.php:786
97
+ #: add-to-any.php:790
98
+ #: add-to-any.php:822
99
  msgid "Share/Bookmark"
100
  msgstr "Compartilhar/Favoritos"
101
 
102
+ #: add-to-any.php:667
103
  msgid "Settings saved."
104
  msgstr "Configuração salvas."
105
 
106
+ #: add-to-any.php:688
107
  msgid "bottom"
108
  msgstr ""
109
 
110
+ #: add-to-any.php:692
111
  msgid "top"
112
  msgstr ""
113
 
114
+ #: add-to-any.php:696
115
  msgid "top &amp; bottom"
116
  msgstr ""
117
 
118
+ #: add-to-any.php:727
119
  msgid "AddToAny: Share/Save "
120
  msgstr "Compartilhar/Salvar"
121
 
122
+ #: add-to-any.php:727
123
+ #: add-to-any.php:1132
124
+ #: add-to-any.php:1163
125
  msgid "Settings"
126
  msgstr "Configurações"
127
 
128
+ #: add-to-any.php:736
129
  msgid "Standalone Services"
130
  msgstr "Serviços Isolados"
131
 
132
+ #: add-to-any.php:741
133
  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."
134
  msgstr "Escolha os serviços que deseja. &nbsp;Clique novamente em um serviço já escolhido para o remover. &nbsp;Reordene os serviços fazendo drag'n'drop (arrastar e soltar) conforme aparecem."
135
 
136
+ #: add-to-any.php:773
137
  msgid "Button"
138
  msgstr "Botão"
139
 
140
+ #: add-to-any.php:812
141
  msgid "Image URL"
142
  msgstr "URL da imagem"
143
 
144
+ #: add-to-any.php:819
145
  msgid "Text only"
146
  msgstr "Apenas texto"
147
 
148
+ #: add-to-any.php:827
149
  msgid "Placement"
150
  msgstr "Posicionamento"
151
 
152
+ #: add-to-any.php:832
153
  #, fuzzy, php-format
154
  msgid "Display at the %s of posts"
155
  msgstr "Mostrar o botão Compartilhar/Salvar no fim de cada post"
156
 
157
+ #: add-to-any.php:839
158
  #, php-format
159
  msgid "Display at the %s of post excerpts"
160
  msgstr ""
161
 
162
+ #: add-to-any.php:846
163
  #, fuzzy, php-format
164
  msgid "Display at the %s of posts on the front page"
165
  msgstr "Mostrar o botão Compartilhar/Salvar no fim dos posts na página principal"
166
 
167
+ #: add-to-any.php:854
168
  #, fuzzy, php-format
169
  msgid "Display at the %s of posts in the feed"
170
  msgstr "Mostrar o botão Compartilhar/Salvar no fim dos posts do feed RSS"
171
 
172
+ #: add-to-any.php:858
173
  #, fuzzy, php-format
174
  msgid "Display at the %s of pages"
175
  msgstr "Mostrar o botão Compartilhar/Salvar no fim das páginas"
176
 
177
+ #: add-to-any.php:862
178
  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>)"
179
  msgstr "Se estiver desativado, assegure-se de colocar o seguinte código 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>)"
180
 
181
+ #: add-to-any.php:871
182
  msgid "Menu Style"
183
  msgstr "Estilo de Menu"
184
 
185
+ #: add-to-any.php:873
186
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
187
  msgstr "Usar o Personalizador de Estilo do AddToAny. Pode personalizar as cores do seu menu Partilhar/Guardar! Quando finalizar, assegure-se que cola o código gerado na caixa <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Opções Adicionais</a> em baixo."
188
 
189
+ #: add-to-any.php:875
190
  msgid "Open the AddToAny Menu Styler in a new window"
191
  msgstr "Abrir o Menu de Personalização de Estilos AddToAny numa nova janela"
192
 
193
+ #: add-to-any.php:877
194
  msgid "Open Menu Styler"
195
  msgstr "Abrir o Menu de Personalização de Estilos"
196
 
197
+ #: add-to-any.php:882
198
  msgid "Menu Options"
199
  msgstr "Opções de Menu"
200
 
201
+ #: add-to-any.php:887
202
  msgid "Only show the menu when the user clicks the Share/Save button"
203
  msgstr "Mostrar apenas o menu quando o usuário clicar no botão Partilhar/Guardar"
204
 
205
+ #: add-to-any.php:892
206
  msgid "Show the title of the post (or page) within the menu"
207
  msgstr "Mostrar o título do post (ou da página) dentro do menu"
208
 
209
+ #: add-to-any.php:897
210
  msgid "Additional Options"
211
  msgstr "Opções Adicionais"
212
 
213
+ #: add-to-any.php:901
214
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
215
  msgstr "Cole o código do Menu de Personalização de Estilos do AddToAny na caixa a seguir!"
216
 
217
+ #: add-to-any.php:905
218
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
219
  msgstr "Em baixo pode inserir varáveis especiais de JavaScript para aplicar a cada menu Compartilhar/Salvar."
220
 
221
+ #: add-to-any.php:906
222
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
223
  msgstr "Usuários avançados podem querer explorar a <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">API do JavaScript</a> do AddToAny."
224
 
225
+ #: add-to-any.php:912
226
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
227
  msgstr "<strong>Nota</strong>: Se quiser adicionar um novo código, tenha cuidado para não sobrescrever (apagar) acidentalmente qualquer código existente.</label>"
228
 
229
+ #: add-to-any.php:917
230
  #, fuzzy
231
  msgid "Advanced Options"
232
  msgstr "Opções Adicionais"
233
 
234
+ #: add-to-any.php:922
235
  msgid "Use CSS stylesheet"
236
  msgstr ""
237
 
238
+ #: add-to-any.php:927
239
  msgid "Cache AddToAny locally with daily cache updates"
240
  msgstr ""
241
 
242
+ #: add-to-any.php:931
243
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
244
  msgstr ""
245
 
246
+ #: add-to-any.php:938
247
  msgid "Save Changes"
248
  msgstr "Salvar alterações"
249
 
250
+ #: add-to-any.php:939
251
  msgid "Are you sure you want to delete all AddToAny options?"
252
  msgstr ""
253
 
254
+ #: add-to-any.php:939
255
  msgid "Reset"
256
  msgstr ""
257
 
258
+ #: add-to-any.php:944
259
  msgid "Like this plugin?"
260
  msgstr "Gosta deste plugin?"
261
 
262
+ #: add-to-any.php:945
263
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
264
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Atribua-lhe uma boa pontuação</a> no WordPress.org."
265
 
266
+ #: add-to-any.php:946
267
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
268
  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\">Compartilhar</a> com os amigos."
269
 
270
+ #: add-to-any.php:948
271
  msgid "Need support?"
272
  msgstr "Precisa de ajuda?"
273
 
274
+ #: add-to-any.php:949
275
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
276
  msgstr "Consulte a página de <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ's</a>."
277
 
278
+ #: add-to-any.php:950
279
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
280
  msgstr "Procurar nos <a href=\"http://wordpress.org/tags/add-to-any\">fóruns</a> de ajuda."
281
 
282
+ #: add-to-any.php:1075
283
  msgid "Add/Remove Services"
284
  msgstr "Adicionar/Remover Serviços"
285
 
286
+ #: add-to-any.php:1132
287
  msgid "Share/Save"
288
  msgstr "Compartilhar/Salvar"
289
 
290
+ #: add-to-any.php:1133
291
  msgid "Share/Save Buttons"
292
  msgstr "Compartilhar|Salvar"
293
 
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: 2011-02-16 00:10-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Jorge Silva <jncs12@gmail.com>\n"
8
  "Language-Team: Jorge Silva <jncs12@gmail.com>\n"
@@ -16,280 +16,280 @@ msgstr ""
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: add-to-any.php:313
20
  msgid "Share"
21
  msgstr "Partilhar"
22
 
23
- #: add-to-any.php:314
24
  msgid "Save"
25
  msgstr "Guardar"
26
 
27
- #: add-to-any.php:315
28
  msgid "Subscribe"
29
  msgstr "Subscrever"
30
 
31
- #: add-to-any.php:316
32
  msgid "E-mail"
33
  msgstr "Email"
34
 
35
- #: add-to-any.php:317
36
  msgid "Bookmark"
37
  msgstr "Marcador"
38
 
39
- #: add-to-any.php:318
40
  msgid "Show all"
41
  msgstr "Mostrar tudo"
42
 
43
- #: add-to-any.php:319
44
  msgid "Show less"
45
  msgstr "Mostrar menos"
46
 
47
- #: add-to-any.php:320
48
  msgid "Find service(s)"
49
  msgstr "Procurar serviço(s)"
50
 
51
- #: add-to-any.php:321
52
  msgid "Instantly find any service to add to"
53
  msgstr "Encontrar rapidamente qualquer serviço para"
54
 
55
- #: add-to-any.php:322
56
  msgid "Powered by"
57
  msgstr "Serviço fornecido por"
58
 
59
- #: add-to-any.php:323
60
  msgid "Share via e-mail"
61
  msgstr "Partilhar por email"
62
 
63
- #: add-to-any.php:324
64
  msgid "Subscribe via e-mail"
65
  msgstr "Subscrever por email"
66
 
67
- #: add-to-any.php:325
68
  msgid "Bookmark in your browser"
69
  msgstr "Adicionar marcador"
70
 
71
- #: add-to-any.php:326
72
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
73
  msgstr "Pressione Ctrl+D ou &#8984;+D para adicionar esta página aos marcadores"
74
 
75
- #: add-to-any.php:327
76
  msgid "Add to your favorites"
77
  msgstr "Adicionar aos favoritos"
78
 
79
- #: add-to-any.php:328
80
  msgid "Send from any e-mail address or e-mail program"
81
  msgstr "Enviar de qualquer email ou programa de email"
82
 
83
- #: add-to-any.php:329
84
  msgid "E-mail program"
85
  msgstr "Programa de email"
86
 
87
- #: add-to-any.php:354
88
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
89
  msgstr "O seu tema precisa de ser corrigido. Para coriigir o seu tema, utilize <a href=\"theme-editor.php\">Theme Editor</a> para inserir <code>&lt;?php wp_footer(); ?&gt;</code> mesmo antes da linha <code>&lt;/body&gt;</code> do ficheiro <code>footer.php</code> do tema."
90
 
91
- #: add-to-any.php:511
92
  #, php-format
93
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
94
  msgstr "Impossível criar o directório %s. O directório ascendente tem permissões de escrita?"
95
 
96
- #: add-to-any.php:645
97
- #: add-to-any.php:769
98
- #: add-to-any.php:773
99
- #: add-to-any.php:777
100
- #: add-to-any.php:781
101
- #: add-to-any.php:813
102
  msgid "Share/Bookmark"
103
  msgstr "Marcador"
104
 
105
- #: add-to-any.php:658
106
  msgid "Settings saved."
107
  msgstr "Configurações guardadas."
108
 
109
- #: add-to-any.php:679
110
  msgid "bottom"
111
  msgstr ""
112
 
113
- #: add-to-any.php:683
114
  msgid "top"
115
  msgstr ""
116
 
117
- #: add-to-any.php:687
118
  msgid "top &amp; bottom"
119
  msgstr ""
120
 
121
- #: add-to-any.php:718
122
  msgid "AddToAny: Share/Save "
123
  msgstr "AddToAny: "
124
 
125
- #: add-to-any.php:718
126
- #: add-to-any.php:1123
127
- #: add-to-any.php:1154
128
  msgid "Settings"
129
  msgstr "Configurações"
130
 
131
- #: add-to-any.php:727
132
  msgid "Standalone Services"
133
  msgstr "Serviços Isolados"
134
 
135
- #: add-to-any.php:732
136
  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."
137
  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."
138
 
139
- #: add-to-any.php:764
140
  msgid "Button"
141
  msgstr "Botão"
142
 
143
- #: add-to-any.php:803
144
  msgid "Image URL"
145
  msgstr "URL da imagem"
146
 
147
- #: add-to-any.php:810
148
  msgid "Text only"
149
  msgstr "Apenas texto"
150
 
151
- #: add-to-any.php:818
152
  msgid "Placement"
153
  msgstr "Posicionamento"
154
 
155
- #: add-to-any.php:823
156
  #, fuzzy, php-format
157
  msgid "Display at the %s of posts"
158
  msgstr "Mostrar o botão Partilhar/Guardar no fim de cada post"
159
 
160
- #: add-to-any.php:830
161
  #, php-format
162
  msgid "Display at the %s of post excerpts"
163
  msgstr ""
164
 
165
- #: add-to-any.php:837
166
  #, fuzzy, php-format
167
  msgid "Display at the %s of posts on the front page"
168
  msgstr "Mostrar o botão Partilhar/Guardar no fim dos posts na página principal"
169
 
170
- #: add-to-any.php:845
171
  #, fuzzy, php-format
172
  msgid "Display at the %s of posts in the feed"
173
  msgstr "Mostrar o botão Partilhar/Guardar no fim dos posts do feed RSS"
174
 
175
- #: add-to-any.php:849
176
  #, fuzzy, php-format
177
  msgid "Display at the %s of pages"
178
  msgstr "Mostrar o botão Partilhar/Guardar no fim das páginas"
179
 
180
- #: add-to-any.php:853
181
  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>)"
182
  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>)"
183
 
184
- #: add-to-any.php:862
185
  msgid "Menu Style"
186
  msgstr "Estilo de Menu"
187
 
188
- #: add-to-any.php:864
189
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
190
  msgstr "Usar o Personalizador de Estilo do AddToAny. Pode personalizar as cores do seu menu Partilhar/Guardar! Quando finalizar, assegure-se que cola o código gerado na caixa <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Opções Adicionais</a> em baixo."
191
 
192
- #: add-to-any.php:866
193
  msgid "Open the AddToAny Menu Styler in a new window"
194
  msgstr "Abrir o Menu de Personalização de Estilos AddToAny numa nova janela"
195
 
196
- #: add-to-any.php:868
197
  msgid "Open Menu Styler"
198
  msgstr "Abrir o Menu de Personalização de Estilos"
199
 
200
- #: add-to-any.php:873
201
  msgid "Menu Options"
202
  msgstr "Opções do Menu"
203
 
204
- #: add-to-any.php:878
205
  msgid "Only show the menu when the user clicks the Share/Save button"
206
  msgstr "Mostrar apenas o menu quando o utilizador fizer um clique no botão Partilhar/Guardar"
207
 
208
- #: add-to-any.php:883
209
  msgid "Show the title of the post (or page) within the menu"
210
  msgstr "Mostrar o título do post (ou da página) dentro do menu"
211
 
212
- #: add-to-any.php:888
213
  msgid "Additional Options"
214
  msgstr "Opções Adicionais"
215
 
216
- #: add-to-any.php:892
217
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
218
  msgstr "Cole o código do Menu de Personalização de Estilos do AddToAny na caixa a seguir!"
219
 
220
- #: add-to-any.php:896
221
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
222
  msgstr "Em baixo pode inserir varáveis especiais de JavaScript para aplicar a cada menu Partilhar/Guardar."
223
 
224
- #: add-to-any.php:897
225
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
226
  msgstr "Utilizadores avançados podem querer explorar o <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">API do JavaScript</a> do AddToAny."
227
 
228
- #: add-to-any.php:903
229
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
230
  msgstr "<strong>Nota</strong>: Se está a adicionar novo código, tenha cuidado para não sobrescrever (apagar) acidentalmente qualquer código existente.</label>"
231
 
232
- #: add-to-any.php:908
233
  msgid "Advanced Options"
234
  msgstr "Opções Avançadas"
235
 
236
- #: add-to-any.php:913
237
  msgid "Use CSS stylesheet"
238
  msgstr "Usar a folha de estilos CSS"
239
 
240
- #: add-to-any.php:918
241
  msgid "Cache AddToAny locally with daily cache updates"
242
  msgstr "Fazer cópia local do serviço AddToAny com actualizações diárias"
243
 
244
- #: add-to-any.php:922
245
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
246
  msgstr "Utiliza apenas esta opção para sites com visitantes habituais. Uma vez que muitos visitantes terão já uma cópia local do serviço AddToAny no seu navegador, esta opção fará com que o carregamento so seu site seja mais lenta. Assegure-se que coloca cabeçalhos de expiração da cache para ficheiros de imagem no seu directório <code>uploads/addtoany</code>."
247
 
248
- #: add-to-any.php:929
249
  msgid "Save Changes"
250
  msgstr "Guardar alterações"
251
 
252
- #: add-to-any.php:930
253
  msgid "Are you sure you want to delete all AddToAny options?"
254
  msgstr ""
255
 
256
- #: add-to-any.php:930
257
  msgid "Reset"
258
  msgstr ""
259
 
260
- #: add-to-any.php:935
261
  msgid "Like this plugin?"
262
  msgstr "Gosta deste plugin?"
263
 
264
- #: add-to-any.php:936
265
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
266
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Atribua-lhe uma boa pontuação</a> no WordPress.org."
267
 
268
- #: add-to-any.php:937
269
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
270
  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."
271
 
272
- #: add-to-any.php:939
273
  msgid "Need support?"
274
  msgstr "Precisa de ajuda?"
275
 
276
- #: add-to-any.php:940
277
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
278
  msgstr "Consulte a página de <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ's</a>."
279
 
280
- #: add-to-any.php:941
281
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
282
  msgstr "Procurar nos <a href=\"http://wordpress.org/tags/add-to-any\">fóruns</a> de ajuda."
283
 
284
- #: add-to-any.php:1066
285
  msgid "Add/Remove Services"
286
  msgstr "Adicionar/Remover Serviços"
287
 
288
- #: add-to-any.php:1123
289
  msgid "Share/Save"
290
  msgstr "Partilhar/Guardar"
291
 
292
- #: add-to-any.php:1124
293
  msgid "Share/Save Buttons"
294
  msgstr "AddToAny"
295
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-23 20:40-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Jorge Silva <jncs12@gmail.com>\n"
8
  "Language-Team: Jorge Silva <jncs12@gmail.com>\n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: add-to-any.php:322
20
  msgid "Share"
21
  msgstr "Partilhar"
22
 
23
+ #: add-to-any.php:323
24
  msgid "Save"
25
  msgstr "Guardar"
26
 
27
+ #: add-to-any.php:324
28
  msgid "Subscribe"
29
  msgstr "Subscrever"
30
 
31
+ #: add-to-any.php:325
32
  msgid "E-mail"
33
  msgstr "Email"
34
 
35
+ #: add-to-any.php:326
36
  msgid "Bookmark"
37
  msgstr "Marcador"
38
 
39
+ #: add-to-any.php:327
40
  msgid "Show all"
41
  msgstr "Mostrar tudo"
42
 
43
+ #: add-to-any.php:328
44
  msgid "Show less"
45
  msgstr "Mostrar menos"
46
 
47
+ #: add-to-any.php:329
48
  msgid "Find service(s)"
49
  msgstr "Procurar serviço(s)"
50
 
51
+ #: add-to-any.php:330
52
  msgid "Instantly find any service to add to"
53
  msgstr "Encontrar rapidamente qualquer serviço para"
54
 
55
+ #: add-to-any.php:331
56
  msgid "Powered by"
57
  msgstr "Serviço fornecido por"
58
 
59
+ #: add-to-any.php:332
60
  msgid "Share via e-mail"
61
  msgstr "Partilhar por email"
62
 
63
+ #: add-to-any.php:333
64
  msgid "Subscribe via e-mail"
65
  msgstr "Subscrever por email"
66
 
67
+ #: add-to-any.php:334
68
  msgid "Bookmark in your browser"
69
  msgstr "Adicionar marcador"
70
 
71
+ #: add-to-any.php:335
72
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
73
  msgstr "Pressione Ctrl+D ou &#8984;+D para adicionar esta página aos marcadores"
74
 
75
+ #: add-to-any.php:336
76
  msgid "Add to your favorites"
77
  msgstr "Adicionar aos favoritos"
78
 
79
+ #: add-to-any.php:337
80
  msgid "Send from any e-mail address or e-mail program"
81
  msgstr "Enviar de qualquer email ou programa de email"
82
 
83
+ #: add-to-any.php:338
84
  msgid "E-mail program"
85
  msgstr "Programa de email"
86
 
87
+ #: add-to-any.php:363
88
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
89
  msgstr "O seu tema precisa de ser corrigido. Para coriigir o seu tema, utilize <a href=\"theme-editor.php\">Theme Editor</a> para inserir <code>&lt;?php wp_footer(); ?&gt;</code> mesmo antes da linha <code>&lt;/body&gt;</code> do ficheiro <code>footer.php</code> do tema."
90
 
91
+ #: add-to-any.php:520
92
  #, php-format
93
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
94
  msgstr "Impossível criar o directório %s. O directório ascendente tem permissões de escrita?"
95
 
96
+ #: add-to-any.php:654
97
+ #: add-to-any.php:778
98
+ #: add-to-any.php:782
99
+ #: add-to-any.php:786
100
+ #: add-to-any.php:790
101
+ #: add-to-any.php:822
102
  msgid "Share/Bookmark"
103
  msgstr "Marcador"
104
 
105
+ #: add-to-any.php:667
106
  msgid "Settings saved."
107
  msgstr "Configurações guardadas."
108
 
109
+ #: add-to-any.php:688
110
  msgid "bottom"
111
  msgstr ""
112
 
113
+ #: add-to-any.php:692
114
  msgid "top"
115
  msgstr ""
116
 
117
+ #: add-to-any.php:696
118
  msgid "top &amp; bottom"
119
  msgstr ""
120
 
121
+ #: add-to-any.php:727
122
  msgid "AddToAny: Share/Save "
123
  msgstr "AddToAny: "
124
 
125
+ #: add-to-any.php:727
126
+ #: add-to-any.php:1132
127
+ #: add-to-any.php:1163
128
  msgid "Settings"
129
  msgstr "Configurações"
130
 
131
+ #: add-to-any.php:736
132
  msgid "Standalone Services"
133
  msgstr "Serviços Isolados"
134
 
135
+ #: add-to-any.php:741
136
  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."
137
  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."
138
 
139
+ #: add-to-any.php:773
140
  msgid "Button"
141
  msgstr "Botão"
142
 
143
+ #: add-to-any.php:812
144
  msgid "Image URL"
145
  msgstr "URL da imagem"
146
 
147
+ #: add-to-any.php:819
148
  msgid "Text only"
149
  msgstr "Apenas texto"
150
 
151
+ #: add-to-any.php:827
152
  msgid "Placement"
153
  msgstr "Posicionamento"
154
 
155
+ #: add-to-any.php:832
156
  #, fuzzy, php-format
157
  msgid "Display at the %s of posts"
158
  msgstr "Mostrar o botão Partilhar/Guardar no fim de cada post"
159
 
160
+ #: add-to-any.php:839
161
  #, php-format
162
  msgid "Display at the %s of post excerpts"
163
  msgstr ""
164
 
165
+ #: add-to-any.php:846
166
  #, fuzzy, php-format
167
  msgid "Display at the %s of posts on the front page"
168
  msgstr "Mostrar o botão Partilhar/Guardar no fim dos posts na página principal"
169
 
170
+ #: add-to-any.php:854
171
  #, fuzzy, php-format
172
  msgid "Display at the %s of posts in the feed"
173
  msgstr "Mostrar o botão Partilhar/Guardar no fim dos posts do feed RSS"
174
 
175
+ #: add-to-any.php:858
176
  #, fuzzy, php-format
177
  msgid "Display at the %s of pages"
178
  msgstr "Mostrar o botão Partilhar/Guardar no fim das páginas"
179
 
180
+ #: add-to-any.php:862
181
  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>)"
182
  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>)"
183
 
184
+ #: add-to-any.php:871
185
  msgid "Menu Style"
186
  msgstr "Estilo de Menu"
187
 
188
+ #: add-to-any.php:873
189
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
190
  msgstr "Usar o Personalizador de Estilo do AddToAny. Pode personalizar as cores do seu menu Partilhar/Guardar! Quando finalizar, assegure-se que cola o código gerado na caixa <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Opções Adicionais</a> em baixo."
191
 
192
+ #: add-to-any.php:875
193
  msgid "Open the AddToAny Menu Styler in a new window"
194
  msgstr "Abrir o Menu de Personalização de Estilos AddToAny numa nova janela"
195
 
196
+ #: add-to-any.php:877
197
  msgid "Open Menu Styler"
198
  msgstr "Abrir o Menu de Personalização de Estilos"
199
 
200
+ #: add-to-any.php:882
201
  msgid "Menu Options"
202
  msgstr "Opções do Menu"
203
 
204
+ #: add-to-any.php:887
205
  msgid "Only show the menu when the user clicks the Share/Save button"
206
  msgstr "Mostrar apenas o menu quando o utilizador fizer um clique no botão Partilhar/Guardar"
207
 
208
+ #: add-to-any.php:892
209
  msgid "Show the title of the post (or page) within the menu"
210
  msgstr "Mostrar o título do post (ou da página) dentro do menu"
211
 
212
+ #: add-to-any.php:897
213
  msgid "Additional Options"
214
  msgstr "Opções Adicionais"
215
 
216
+ #: add-to-any.php:901
217
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
218
  msgstr "Cole o código do Menu de Personalização de Estilos do AddToAny na caixa a seguir!"
219
 
220
+ #: add-to-any.php:905
221
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
222
  msgstr "Em baixo pode inserir varáveis especiais de JavaScript para aplicar a cada menu Partilhar/Guardar."
223
 
224
+ #: add-to-any.php:906
225
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
226
  msgstr "Utilizadores avançados podem querer explorar o <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">API do JavaScript</a> do AddToAny."
227
 
228
+ #: add-to-any.php:912
229
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
230
  msgstr "<strong>Nota</strong>: Se está a adicionar novo código, tenha cuidado para não sobrescrever (apagar) acidentalmente qualquer código existente.</label>"
231
 
232
+ #: add-to-any.php:917
233
  msgid "Advanced Options"
234
  msgstr "Opções Avançadas"
235
 
236
+ #: add-to-any.php:922
237
  msgid "Use CSS stylesheet"
238
  msgstr "Usar a folha de estilos CSS"
239
 
240
+ #: add-to-any.php:927
241
  msgid "Cache AddToAny locally with daily cache updates"
242
  msgstr "Fazer cópia local do serviço AddToAny com actualizações diárias"
243
 
244
+ #: add-to-any.php:931
245
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
246
  msgstr "Utiliza apenas esta opção para sites com visitantes habituais. Uma vez que muitos visitantes terão já uma cópia local do serviço AddToAny no seu navegador, esta opção fará com que o carregamento so seu site seja mais lenta. Assegure-se que coloca cabeçalhos de expiração da cache para ficheiros de imagem no seu directório <code>uploads/addtoany</code>."
247
 
248
+ #: add-to-any.php:938
249
  msgid "Save Changes"
250
  msgstr "Guardar alterações"
251
 
252
+ #: add-to-any.php:939
253
  msgid "Are you sure you want to delete all AddToAny options?"
254
  msgstr ""
255
 
256
+ #: add-to-any.php:939
257
  msgid "Reset"
258
  msgstr ""
259
 
260
+ #: add-to-any.php:944
261
  msgid "Like this plugin?"
262
  msgstr "Gosta deste plugin?"
263
 
264
+ #: add-to-any.php:945
265
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
266
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Atribua-lhe uma boa pontuação</a> no WordPress.org."
267
 
268
+ #: add-to-any.php:946
269
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
270
  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."
271
 
272
+ #: add-to-any.php:948
273
  msgid "Need support?"
274
  msgstr "Precisa de ajuda?"
275
 
276
+ #: add-to-any.php:949
277
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
278
  msgstr "Consulte a página de <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ's</a>."
279
 
280
+ #: add-to-any.php:950
281
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
282
  msgstr "Procurar nos <a href=\"http://wordpress.org/tags/add-to-any\">fóruns</a> de ajuda."
283
 
284
+ #: add-to-any.php:1075
285
  msgid "Add/Remove Services"
286
  msgstr "Adicionar/Remover Serviços"
287
 
288
+ #: add-to-any.php:1132
289
  msgid "Share/Save"
290
  msgstr "Partilhar/Guardar"
291
 
292
+ #: add-to-any.php:1133
293
  msgid "Share/Save Buttons"
294
  msgstr "AddToAny"
295
 
languages/add-to-any-ro_RO.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: 2011-02-16 00:30-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
@@ -13,280 +13,280 @@ msgstr ""
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: add-to-any.php:313
17
  msgid "Share"
18
  msgstr "distribuie"
19
 
20
- #: add-to-any.php:314
21
  msgid "Save"
22
  msgstr "salvează"
23
 
24
- #: add-to-any.php:315
25
  msgid "Subscribe"
26
  msgstr "abonează"
27
 
28
- #: add-to-any.php:316
29
  msgid "E-mail"
30
  msgstr "e-mail"
31
 
32
- #: add-to-any.php:317
33
  msgid "Bookmark"
34
  msgstr "semn de carte"
35
 
36
- #: add-to-any.php:318
37
  msgid "Show all"
38
  msgstr "arată totul"
39
 
40
- #: add-to-any.php:319
41
  msgid "Show less"
42
  msgstr "arată mai puţine"
43
 
44
- #: add-to-any.php:320
45
  msgid "Find service(s)"
46
  msgstr "găseşte serviciu/i"
47
 
48
- #: add-to-any.php:321
49
  msgid "Instantly find any service to add to"
50
  msgstr "găseşte instantaneu orice serviciu de adăugat la"
51
 
52
- #: add-to-any.php:322
53
  msgid "Powered by"
54
  msgstr "Powered by"
55
 
56
- #: add-to-any.php:323
57
  msgid "Share via e-mail"
58
  msgstr "distribuie via e-mail"
59
 
60
- #: add-to-any.php:324
61
  msgid "Subscribe via e-mail"
62
  msgstr "subscrie via e-mail"
63
 
64
- #: add-to-any.php:325
65
  msgid "Bookmark in your browser"
66
  msgstr "pune semn în browserul tău"
67
 
68
- #: add-to-any.php:326
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr "apasă Ctrl+D sau &#8984;+D pentru a pune semn acestei pagini"
71
 
72
- #: add-to-any.php:327
73
  msgid "Add to your favorites"
74
  msgstr "adaugă la pagini favorite"
75
 
76
- #: add-to-any.php:328
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr "trimite de la orice adresă sau program de e-mail "
79
 
80
- #: add-to-any.php:329
81
  msgid "E-mail program"
82
  msgstr "program e-mail "
83
 
84
- #: add-to-any.php:354
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 "Tema ta trebuie reparată. Pentru a o repara, foloseşte <a href=\"theme-editor.php\">Editorul de temă</a> pentru a insera <code>&lt;?php wp_footer(); ?&gt;</code> exact înainte de linia <code>&lt;/body&gt;</code> din fişierul <code>footer.php</code> al temei tale."
87
 
88
- #: add-to-any.php:511
89
  #, php-format
90
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
91
  msgstr "Directorul %s nu poate fi creat. Serverul poate scrie în directorul-părinte?"
92
 
93
- #: add-to-any.php:645
94
- #: add-to-any.php:769
95
- #: add-to-any.php:773
96
- #: add-to-any.php:777
97
- #: add-to-any.php:781
98
- #: add-to-any.php:813
99
  msgid "Share/Bookmark"
100
  msgstr "distribuie/pune semn"
101
 
102
- #: add-to-any.php:658
103
  msgid "Settings saved."
104
  msgstr "setări salvate."
105
 
106
- #: add-to-any.php:679
107
  msgid "bottom"
108
  msgstr ""
109
 
110
- #: add-to-any.php:683
111
  msgid "top"
112
  msgstr ""
113
 
114
- #: add-to-any.php:687
115
  msgid "top &amp; bottom"
116
  msgstr ""
117
 
118
- #: add-to-any.php:718
119
  msgid "AddToAny: Share/Save "
120
  msgstr "AddToAny: distribuie/salvează "
121
 
122
- #: add-to-any.php:718
123
- #: add-to-any.php:1123
124
- #: add-to-any.php:1154
125
  msgid "Settings"
126
  msgstr "setări"
127
 
128
- #: add-to-any.php:727
129
  msgid "Standalone Services"
130
  msgstr "servicii de sine stătătoare"
131
 
132
- #: add-to-any.php:732
133
  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."
134
  msgstr "Alege mai jos serviciile pe care le preferi. &nbsp;Clic a doua oara pe un serviciu selectat, pentru a-l elimina. &nbsp;Mută pozitia serviciilor alese cu drag-and-drop."
135
 
136
- #: add-to-any.php:764
137
  msgid "Button"
138
  msgstr "buton"
139
 
140
- #: add-to-any.php:803
141
  msgid "Image URL"
142
  msgstr "imagine URL"
143
 
144
- #: add-to-any.php:810
145
  msgid "Text only"
146
  msgstr "doar text"
147
 
148
- #: add-to-any.php:818
149
  msgid "Placement"
150
  msgstr "poziţionare"
151
 
152
- #: add-to-any.php:823
153
  #, fuzzy, php-format
154
  msgid "Display at the %s of posts"
155
  msgstr "afişează butonul 'distribuie/salvează' în coada articolelor"
156
 
157
- #: add-to-any.php:830
158
  #, php-format
159
  msgid "Display at the %s of post excerpts"
160
  msgstr ""
161
 
162
- #: add-to-any.php:837
163
  #, fuzzy, php-format
164
  msgid "Display at the %s of posts on the front page"
165
  msgstr "afişează butonul 'distribuie/salvează' în coada articolelor de pe prima pagină"
166
 
167
- #: add-to-any.php:845
168
  #, fuzzy, php-format
169
  msgid "Display at the %s of posts in the feed"
170
  msgstr "afişează butonul 'distribuie/salvează' în coada articolelor din feed"
171
 
172
- #: add-to-any.php:849
173
  #, fuzzy, php-format
174
  msgid "Display at the %s of pages"
175
  msgstr "afişează butonul 'distribuie/salvează' în josul paginilor"
176
 
177
- #: add-to-any.php:853
178
  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>)"
179
  msgstr "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>)"
180
 
181
- #: add-to-any.php:862
182
  msgid "Menu Style"
183
  msgstr "stil meniu"
184
 
185
- #: add-to-any.php:864
186
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
187
  msgstr "Folosind stilizatorul de meniu AddToAny, poti sa configurezi culorile meniului tău 'distribuie/salvează' ! După ce ai terminat, asigură-te ca ai înlocuit codul generat în căsuţa <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">opţiuni suplimentare</a> de mai jos."
188
 
189
- #: add-to-any.php:866
190
  msgid "Open the AddToAny Menu Styler in a new window"
191
  msgstr "Open the AddToAny Menu Styler in a new window"
192
 
193
- #: add-to-any.php:868
194
  msgid "Open Menu Styler"
195
  msgstr "deschide stilizatorul de meniu"
196
 
197
- #: add-to-any.php:873
198
  msgid "Menu Options"
199
  msgstr "optiuni menu"
200
 
201
- #: add-to-any.php:878
202
  msgid "Only show the menu when the user clicks the Share/Save button"
203
  msgstr "arată meniul doar cand utilizatorul dă clic pe butonul distribuie/salvează"
204
 
205
- #: add-to-any.php:883
206
  msgid "Show the title of the post (or page) within the menu"
207
  msgstr "arată titlul articolului (paginii) in cadrul meniului"
208
 
209
- #: add-to-any.php:888
210
  msgid "Additional Options"
211
  msgstr "optiuni adiţionale"
212
 
213
- #: add-to-any.php:892
214
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
215
  msgstr "introdu în căsuţa de mai jos codul din stilizatorul de meniu AddToAny!"
216
 
217
- #: add-to-any.php:896
218
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
219
  msgstr "Mai jos poţi seta variabilele speciale JavaScript pentru a le aplica fiecărui meniu 'distribuie/salvează'."
220
 
221
- #: add-to-any.php:897
222
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
223
  msgstr "Utilizatorii avansaţi pot explora <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">optiunile adiţionale</a> ale AddToAny."
224
 
225
- #: add-to-any.php:903
226
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
227
  msgstr "<strong>Notă</strong>: dacă adaugi cod nou, ai grijă să nu suprascrii vreun cod anterior.</label>"
228
 
229
- #: add-to-any.php:908
230
  msgid "Advanced Options"
231
  msgstr "Optiuni avansate"
232
 
233
- #: add-to-any.php:913
234
  msgid "Use CSS stylesheet"
235
  msgstr "utilizează stylesheet CSS"
236
 
237
- #: add-to-any.php:918
238
  msgid "Cache AddToAny locally with daily cache updates"
239
  msgstr "păstrează AddToAny local, in cache, cu actualizări zilnice ale cache-ului"
240
 
241
- #: add-to-any.php:922
242
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
243
  msgstr "Ia în considerare doar pentru situri cu vizitatori care revin frecvent. Cum multi vizitatori vor avea AddToAny salvat deja in cache-ul browser-ului lor, a le oferi AddToAny în mod local, din situl tău, va fi mai lent. Ai grijă să setezi cache/expires headers intr-un viitor îndepărtat pentru fişiere de imagini din directorul tău <code>uploads/addtoany</code>."
244
 
245
- #: add-to-any.php:929
246
  msgid "Save Changes"
247
  msgstr "salvează setările"
248
 
249
- #: add-to-any.php:930
250
  msgid "Are you sure you want to delete all AddToAny options?"
251
  msgstr ""
252
 
253
- #: add-to-any.php:930
254
  msgid "Reset"
255
  msgstr ""
256
 
257
- #: add-to-any.php:935
258
  msgid "Like this plugin?"
259
  msgstr "îti place acest plugin?"
260
 
261
- #: add-to-any.php:936
262
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
263
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Votează-l pozitiv</a> la WordPress.org."
264
 
265
- #: add-to-any.php:937
266
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
267
  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\">trimite-l</a> prietenilor tai."
268
 
269
- #: add-to-any.php:939
270
  msgid "Need support?"
271
  msgstr "Ai nevoie de ajutor?"
272
 
273
- #: add-to-any.php:940
274
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
275
  msgstr "vezi <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ</a>."
276
 
277
- #: add-to-any.php:941
278
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
279
  msgstr "Caută în <a href=\"http://wordpress.org/tags/add-to-any\">forumuri</a>."
280
 
281
- #: add-to-any.php:1066
282
  msgid "Add/Remove Services"
283
  msgstr "adaugă/elimină servicii"
284
 
285
- #: add-to-any.php:1123
286
  msgid "Share/Save"
287
  msgstr "distribuie/salvează"
288
 
289
- #: add-to-any.php:1124
290
  msgid "Share/Save Buttons"
291
  msgstr "butoane 'distribuie/salvează'"
292
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-23 20:40-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
+ #: add-to-any.php:322
17
  msgid "Share"
18
  msgstr "distribuie"
19
 
20
+ #: add-to-any.php:323
21
  msgid "Save"
22
  msgstr "salvează"
23
 
24
+ #: add-to-any.php:324
25
  msgid "Subscribe"
26
  msgstr "abonează"
27
 
28
+ #: add-to-any.php:325
29
  msgid "E-mail"
30
  msgstr "e-mail"
31
 
32
+ #: add-to-any.php:326
33
  msgid "Bookmark"
34
  msgstr "semn de carte"
35
 
36
+ #: add-to-any.php:327
37
  msgid "Show all"
38
  msgstr "arată totul"
39
 
40
+ #: add-to-any.php:328
41
  msgid "Show less"
42
  msgstr "arată mai puţine"
43
 
44
+ #: add-to-any.php:329
45
  msgid "Find service(s)"
46
  msgstr "găseşte serviciu/i"
47
 
48
+ #: add-to-any.php:330
49
  msgid "Instantly find any service to add to"
50
  msgstr "găseşte instantaneu orice serviciu de adăugat la"
51
 
52
+ #: add-to-any.php:331
53
  msgid "Powered by"
54
  msgstr "Powered by"
55
 
56
+ #: add-to-any.php:332
57
  msgid "Share via e-mail"
58
  msgstr "distribuie via e-mail"
59
 
60
+ #: add-to-any.php:333
61
  msgid "Subscribe via e-mail"
62
  msgstr "subscrie via e-mail"
63
 
64
+ #: add-to-any.php:334
65
  msgid "Bookmark in your browser"
66
  msgstr "pune semn în browserul tău"
67
 
68
+ #: add-to-any.php:335
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr "apasă Ctrl+D sau &#8984;+D pentru a pune semn acestei pagini"
71
 
72
+ #: add-to-any.php:336
73
  msgid "Add to your favorites"
74
  msgstr "adaugă la pagini favorite"
75
 
76
+ #: add-to-any.php:337
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr "trimite de la orice adresă sau program de e-mail "
79
 
80
+ #: add-to-any.php:338
81
  msgid "E-mail program"
82
  msgstr "program e-mail "
83
 
84
+ #: add-to-any.php:363
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 "Tema ta trebuie reparată. Pentru a o repara, foloseşte <a href=\"theme-editor.php\">Editorul de temă</a> pentru a insera <code>&lt;?php wp_footer(); ?&gt;</code> exact înainte de linia <code>&lt;/body&gt;</code> din fişierul <code>footer.php</code> al temei tale."
87
 
88
+ #: add-to-any.php:520
89
  #, php-format
90
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
91
  msgstr "Directorul %s nu poate fi creat. Serverul poate scrie în directorul-părinte?"
92
 
93
+ #: add-to-any.php:654
94
+ #: add-to-any.php:778
95
+ #: add-to-any.php:782
96
+ #: add-to-any.php:786
97
+ #: add-to-any.php:790
98
+ #: add-to-any.php:822
99
  msgid "Share/Bookmark"
100
  msgstr "distribuie/pune semn"
101
 
102
+ #: add-to-any.php:667
103
  msgid "Settings saved."
104
  msgstr "setări salvate."
105
 
106
+ #: add-to-any.php:688
107
  msgid "bottom"
108
  msgstr ""
109
 
110
+ #: add-to-any.php:692
111
  msgid "top"
112
  msgstr ""
113
 
114
+ #: add-to-any.php:696
115
  msgid "top &amp; bottom"
116
  msgstr ""
117
 
118
+ #: add-to-any.php:727
119
  msgid "AddToAny: Share/Save "
120
  msgstr "AddToAny: distribuie/salvează "
121
 
122
+ #: add-to-any.php:727
123
+ #: add-to-any.php:1132
124
+ #: add-to-any.php:1163
125
  msgid "Settings"
126
  msgstr "setări"
127
 
128
+ #: add-to-any.php:736
129
  msgid "Standalone Services"
130
  msgstr "servicii de sine stătătoare"
131
 
132
+ #: add-to-any.php:741
133
  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."
134
  msgstr "Alege mai jos serviciile pe care le preferi. &nbsp;Clic a doua oara pe un serviciu selectat, pentru a-l elimina. &nbsp;Mută pozitia serviciilor alese cu drag-and-drop."
135
 
136
+ #: add-to-any.php:773
137
  msgid "Button"
138
  msgstr "buton"
139
 
140
+ #: add-to-any.php:812
141
  msgid "Image URL"
142
  msgstr "imagine URL"
143
 
144
+ #: add-to-any.php:819
145
  msgid "Text only"
146
  msgstr "doar text"
147
 
148
+ #: add-to-any.php:827
149
  msgid "Placement"
150
  msgstr "poziţionare"
151
 
152
+ #: add-to-any.php:832
153
  #, fuzzy, php-format
154
  msgid "Display at the %s of posts"
155
  msgstr "afişează butonul 'distribuie/salvează' în coada articolelor"
156
 
157
+ #: add-to-any.php:839
158
  #, php-format
159
  msgid "Display at the %s of post excerpts"
160
  msgstr ""
161
 
162
+ #: add-to-any.php:846
163
  #, fuzzy, php-format
164
  msgid "Display at the %s of posts on the front page"
165
  msgstr "afişează butonul 'distribuie/salvează' în coada articolelor de pe prima pagină"
166
 
167
+ #: add-to-any.php:854
168
  #, fuzzy, php-format
169
  msgid "Display at the %s of posts in the feed"
170
  msgstr "afişează butonul 'distribuie/salvează' în coada articolelor din feed"
171
 
172
+ #: add-to-any.php:858
173
  #, fuzzy, php-format
174
  msgid "Display at the %s of pages"
175
  msgstr "afişează butonul 'distribuie/salvează' în josul paginilor"
176
 
177
+ #: add-to-any.php:862
178
  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>)"
179
  msgstr "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>)"
180
 
181
+ #: add-to-any.php:871
182
  msgid "Menu Style"
183
  msgstr "stil meniu"
184
 
185
+ #: add-to-any.php:873
186
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
187
  msgstr "Folosind stilizatorul de meniu AddToAny, poti sa configurezi culorile meniului tău 'distribuie/salvează' ! După ce ai terminat, asigură-te ca ai înlocuit codul generat în căsuţa <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">opţiuni suplimentare</a> de mai jos."
188
 
189
+ #: add-to-any.php:875
190
  msgid "Open the AddToAny Menu Styler in a new window"
191
  msgstr "Open the AddToAny Menu Styler in a new window"
192
 
193
+ #: add-to-any.php:877
194
  msgid "Open Menu Styler"
195
  msgstr "deschide stilizatorul de meniu"
196
 
197
+ #: add-to-any.php:882
198
  msgid "Menu Options"
199
  msgstr "optiuni menu"
200
 
201
+ #: add-to-any.php:887
202
  msgid "Only show the menu when the user clicks the Share/Save button"
203
  msgstr "arată meniul doar cand utilizatorul dă clic pe butonul distribuie/salvează"
204
 
205
+ #: add-to-any.php:892
206
  msgid "Show the title of the post (or page) within the menu"
207
  msgstr "arată titlul articolului (paginii) in cadrul meniului"
208
 
209
+ #: add-to-any.php:897
210
  msgid "Additional Options"
211
  msgstr "optiuni adiţionale"
212
 
213
+ #: add-to-any.php:901
214
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
215
  msgstr "introdu în căsuţa de mai jos codul din stilizatorul de meniu AddToAny!"
216
 
217
+ #: add-to-any.php:905
218
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
219
  msgstr "Mai jos poţi seta variabilele speciale JavaScript pentru a le aplica fiecărui meniu 'distribuie/salvează'."
220
 
221
+ #: add-to-any.php:906
222
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
223
  msgstr "Utilizatorii avansaţi pot explora <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">optiunile adiţionale</a> ale AddToAny."
224
 
225
+ #: add-to-any.php:912
226
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
227
  msgstr "<strong>Notă</strong>: dacă adaugi cod nou, ai grijă să nu suprascrii vreun cod anterior.</label>"
228
 
229
+ #: add-to-any.php:917
230
  msgid "Advanced Options"
231
  msgstr "Optiuni avansate"
232
 
233
+ #: add-to-any.php:922
234
  msgid "Use CSS stylesheet"
235
  msgstr "utilizează stylesheet CSS"
236
 
237
+ #: add-to-any.php:927
238
  msgid "Cache AddToAny locally with daily cache updates"
239
  msgstr "păstrează AddToAny local, in cache, cu actualizări zilnice ale cache-ului"
240
 
241
+ #: add-to-any.php:931
242
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
243
  msgstr "Ia în considerare doar pentru situri cu vizitatori care revin frecvent. Cum multi vizitatori vor avea AddToAny salvat deja in cache-ul browser-ului lor, a le oferi AddToAny în mod local, din situl tău, va fi mai lent. Ai grijă să setezi cache/expires headers intr-un viitor îndepărtat pentru fişiere de imagini din directorul tău <code>uploads/addtoany</code>."
244
 
245
+ #: add-to-any.php:938
246
  msgid "Save Changes"
247
  msgstr "salvează setările"
248
 
249
+ #: add-to-any.php:939
250
  msgid "Are you sure you want to delete all AddToAny options?"
251
  msgstr ""
252
 
253
+ #: add-to-any.php:939
254
  msgid "Reset"
255
  msgstr ""
256
 
257
+ #: add-to-any.php:944
258
  msgid "Like this plugin?"
259
  msgstr "îti place acest plugin?"
260
 
261
+ #: add-to-any.php:945
262
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
263
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Votează-l pozitiv</a> la WordPress.org."
264
 
265
+ #: add-to-any.php:946
266
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
267
  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\">trimite-l</a> prietenilor tai."
268
 
269
+ #: add-to-any.php:948
270
  msgid "Need support?"
271
  msgstr "Ai nevoie de ajutor?"
272
 
273
+ #: add-to-any.php:949
274
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
275
  msgstr "vezi <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ</a>."
276
 
277
+ #: add-to-any.php:950
278
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
279
  msgstr "Caută în <a href=\"http://wordpress.org/tags/add-to-any\">forumuri</a>."
280
 
281
+ #: add-to-any.php:1075
282
  msgid "Add/Remove Services"
283
  msgstr "adaugă/elimină servicii"
284
 
285
+ #: add-to-any.php:1132
286
  msgid "Share/Save"
287
  msgstr "distribuie/salvează"
288
 
289
+ #: add-to-any.php:1133
290
  msgid "Share/Save Buttons"
291
  msgstr "butoane 'distribuie/salvează'"
292
 
languages/add-to-any-ru_RU.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: 2011-02-16 00:10-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Elvis <main@fweb.org.rru>\n"
8
  "Language-Team: \n"
@@ -13,280 +13,280 @@ msgstr ""
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: add-to-any.php:313
17
  msgid "Share"
18
  msgstr "Отправить другу"
19
 
20
- #: add-to-any.php:314
21
  msgid "Save"
22
  msgstr "Сохранить"
23
 
24
- #: add-to-any.php:315
25
  msgid "Subscribe"
26
  msgstr "Подписаться"
27
 
28
- #: add-to-any.php:316
29
  msgid "E-mail"
30
  msgstr "E-mail"
31
 
32
- #: add-to-any.php:317
33
  msgid "Bookmark"
34
  msgstr "В закладки!"
35
 
36
- #: add-to-any.php:318
37
  msgid "Show all"
38
  msgstr "Показать все"
39
 
40
- #: add-to-any.php:319
41
  msgid "Show less"
42
  msgstr "Показать остальное"
43
 
44
- #: add-to-any.php:320
45
  msgid "Find service(s)"
46
  msgstr "Найти сервис(ы)"
47
 
48
- #: add-to-any.php:321
49
  msgid "Instantly find any service to add to"
50
  msgstr "Найти сервис и добавить"
51
 
52
- #: add-to-any.php:322
53
  msgid "Powered by"
54
  msgstr "Работает на"
55
 
56
- #: add-to-any.php:323
57
  msgid "Share via e-mail"
58
  msgstr "Поделиться по E-mail"
59
 
60
- #: add-to-any.php:324
61
  msgid "Subscribe via e-mail"
62
  msgstr "Подписаться по E-mail"
63
 
64
- #: add-to-any.php:325
65
  msgid "Bookmark in your browser"
66
  msgstr "Добавить в закладки"
67
 
68
- #: add-to-any.php:326
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr "Нажмите Ctrl+В или &#8984;+D чтобы добавить эту страницу в закладки"
71
 
72
- #: add-to-any.php:327
73
  msgid "Add to your favorites"
74
  msgstr "Добавить в Избранное"
75
 
76
- #: add-to-any.php:328
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr "Отправить через E-mail сервис"
79
 
80
- #: add-to-any.php:329
81
  msgid "E-mail program"
82
  msgstr "E-mail сервисы"
83
 
84
- #: add-to-any.php:354
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 "Внимание! Плагин не работает с выбранной вами темой. Чтобы исправить это воспользуйтесь <a href=\"theme-editor.php\">редактором тем</a> и введите следующий код <code>&lt;?php wp_footer(); ?&gt;</code> сразу после строки <code>&lt;/body&gt;</code>. Изменения нужно сделать в файле <code>footer.php</code>."
87
 
88
- #: add-to-any.php:511
89
  #, php-format
90
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
91
  msgstr "Ошибка при создании папки %s. Проверьте права на родительскую папку (необходимы права на запись)."
92
 
93
- #: add-to-any.php:645
94
- #: add-to-any.php:769
95
- #: add-to-any.php:773
96
- #: add-to-any.php:777
97
- #: add-to-any.php:781
98
- #: add-to-any.php:813
99
  msgid "Share/Bookmark"
100
  msgstr "В закладки!"
101
 
102
- #: add-to-any.php:658
103
  msgid "Settings saved."
104
  msgstr "Найстройки сохранены"
105
 
106
- #: add-to-any.php:679
107
  msgid "bottom"
108
  msgstr ""
109
 
110
- #: add-to-any.php:683
111
  msgid "top"
112
  msgstr ""
113
 
114
- #: add-to-any.php:687
115
  msgid "top &amp; bottom"
116
  msgstr ""
117
 
118
- #: add-to-any.php:718
119
  msgid "AddToAny: Share/Save "
120
  msgstr "Сохранить/Отправить другу "
121
 
122
- #: add-to-any.php:718
123
- #: add-to-any.php:1123
124
- #: add-to-any.php:1154
125
  msgid "Settings"
126
  msgstr "Настройки"
127
 
128
- #: add-to-any.php:727
129
  msgid "Standalone Services"
130
  msgstr "Используемые сервисы"
131
 
132
- #: add-to-any.php:732
133
  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."
134
  msgstr "Выберите из списка ниже нужные вам сервисы.&nbsp;Чтобы удалить сервис из вашего списка - нажмите на его иконку еще раз.&nbsp;Для того чтобы поменять сервисы местами в Вашем списке, просто нажмите на иконку и перетащите на нужное место."
135
 
136
- #: add-to-any.php:764
137
  msgid "Button"
138
  msgstr "Внешний вид кнопки"
139
 
140
- #: add-to-any.php:803
141
  msgid "Image URL"
142
  msgstr "Адрес изображения"
143
 
144
- #: add-to-any.php:810
145
  msgid "Text only"
146
  msgstr "Только текст"
147
 
148
- #: add-to-any.php:818
149
  msgid "Placement"
150
  msgstr "Расположение"
151
 
152
- #: add-to-any.php:823
153
  #, fuzzy, php-format
154
  msgid "Display at the %s of posts"
155
  msgstr "Отображать кнопку Сохранить/Отправить другу в нижней части всех записей"
156
 
157
- #: add-to-any.php:830
158
  #, php-format
159
  msgid "Display at the %s of post excerpts"
160
  msgstr ""
161
 
162
- #: add-to-any.php:837
163
  #, fuzzy, php-format
164
  msgid "Display at the %s of posts on the front page"
165
  msgstr "Отображать кнопку Сохранить/Отправить другу в нижней части записей на главной странице"
166
 
167
- #: add-to-any.php:845
168
  #, fuzzy, php-format
169
  msgid "Display at the %s of posts in the feed"
170
  msgstr "Отображать кнопку Сохранить/Отправить другу в нижней части записей в фидах"
171
 
172
- #: add-to-any.php:849
173
  #, fuzzy, php-format
174
  msgid "Display at the %s of pages"
175
  msgstr "Отображать кнопку Сохранить/Отправить другу в нижней части страниц"
176
 
177
- #: add-to-any.php:853
178
  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>)"
179
  msgstr "Если ОТКЛЮЧИТЬ одну или все данные опции, Вы должны добавить код, наобходимый для корректной работы плагина, в <a href=\"theme-editor.php\">Вашу тему оформления</a> (код должен присутствовать на следующих страницах: <code>index.php</code>, <code>single.php</code>, и/или <code>page.php</code>). Код"
180
 
181
- #: add-to-any.php:862
182
  msgid "Menu Style"
183
  msgstr "Внешний вид меню"
184
 
185
- #: add-to-any.php:864
186
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
187
  msgstr "Используйте этот инструмент для того, чтобы сделать Ваше меню плагина Сохранить/Отправить другу уникальным в плане внешнего вида! Закончив настройки цветовой схемы, вставте полученный код в поле <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Дополнительные настройки</a>."
188
 
189
- #: add-to-any.php:866
190
  msgid "Open the AddToAny Menu Styler in a new window"
191
  msgstr "Открыть меню стилей для плагина Сохранить/Отправить другу в новом окне"
192
 
193
- #: add-to-any.php:868
194
  msgid "Open Menu Styler"
195
  msgstr "Открыть редактор внешнего вида (в новом окне)"
196
 
197
- #: add-to-any.php:873
198
  msgid "Menu Options"
199
  msgstr "Настройки меню"
200
 
201
- #: add-to-any.php:878
202
  msgid "Only show the menu when the user clicks the Share/Save button"
203
  msgstr "Показывать меню плагина только если пользователь нажмет на кнопку Сохранить/Отправить другу"
204
 
205
- #: add-to-any.php:883
206
  msgid "Show the title of the post (or page) within the menu"
207
  msgstr "Показывать название заметки или страницы в меню плагина"
208
 
209
- #: add-to-any.php:888
210
  msgid "Additional Options"
211
  msgstr "Дополнительные настройки"
212
 
213
- #: add-to-any.php:892
214
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
215
  msgstr "Вставте в поле ниже полученный код для изменения внешнего вида меню плагина!"
216
 
217
- #: add-to-any.php:896
218
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
219
  msgstr "В поле ниже вы можете вставить полученный код, который изменит внешний вид меню плагина. "
220
 
221
- #: add-to-any.php:897
222
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
223
  msgstr "Если Вы хотите узнать больше про технологии, используемые в плагине, читайте заметку о <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">JavaScript API</a>."
224
 
225
- #: add-to-any.php:903
226
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
227
  msgstr "<strong>Обратите внимание</strong>: Добавляйте новый код осторожно, Ваш предыдущий вариант кода не будет сохранен!</label>"
228
 
229
- #: add-to-any.php:908
230
  msgid "Advanced Options"
231
  msgstr "Дополнительные настройки"
232
 
233
- #: add-to-any.php:913
234
  msgid "Use CSS stylesheet"
235
  msgstr "Использовать стиль CSS"
236
 
237
- #: add-to-any.php:918
238
  msgid "Cache AddToAny locally with daily cache updates"
239
  msgstr "Использовать опции кеширования для AddToAny "
240
 
241
- #: add-to-any.php:922
242
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
243
  msgstr "Рекомендуется использовать только для сайтов с постоянной (возвращающейся каждый день) аудиторией. Если пользователи уже сохраняют данные плагина AddToAny в своем браузере, то время отклика сервиса AddToAny увеличивается для них. Используя опцию кеширования, проверьте наличие заголовков кеша для изображений в папке <code>uploads/addtoany</code>."
244
 
245
- #: add-to-any.php:929
246
  msgid "Save Changes"
247
  msgstr "Сохранить все изменения"
248
 
249
- #: add-to-any.php:930
250
  msgid "Are you sure you want to delete all AddToAny options?"
251
  msgstr ""
252
 
253
- #: add-to-any.php:930
254
  msgid "Reset"
255
  msgstr ""
256
 
257
- #: add-to-any.php:935
258
  msgid "Like this plugin?"
259
  msgstr "Понравился плагин?"
260
 
261
- #: add-to-any.php:936
262
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
263
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Оцените плагин</a> на сайте WordPress.org."
264
 
265
- #: add-to-any.php:937
266
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
267
  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\">Расскажите о плагине</a> своим друзьям."
268
 
269
- #: add-to-any.php:939
270
  msgid "Need support?"
271
  msgstr "Нужна помощь?"
272
 
273
- #: add-to-any.php:940
274
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
275
  msgstr "Смотрите <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">ЧАВО</a>."
276
 
277
- #: add-to-any.php:941
278
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
279
  msgstr "Ответы на свои вопросы также ищите на <a href=\"http://wordpress.org/tags/add-to-any\">форумах поддержки</a> (англ.)."
280
 
281
- #: add-to-any.php:1066
282
  msgid "Add/Remove Services"
283
  msgstr "Добавить/Удалить сервисы"
284
 
285
- #: add-to-any.php:1123
286
  msgid "Share/Save"
287
  msgstr "Сохранить/Отправить другу"
288
 
289
- #: add-to-any.php:1124
290
  msgid "Share/Save Buttons"
291
  msgstr "Сохранить/Отправить другу"
292
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-23 20:40-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Elvis <main@fweb.org.rru>\n"
8
  "Language-Team: \n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
+ #: add-to-any.php:322
17
  msgid "Share"
18
  msgstr "Отправить другу"
19
 
20
+ #: add-to-any.php:323
21
  msgid "Save"
22
  msgstr "Сохранить"
23
 
24
+ #: add-to-any.php:324
25
  msgid "Subscribe"
26
  msgstr "Подписаться"
27
 
28
+ #: add-to-any.php:325
29
  msgid "E-mail"
30
  msgstr "E-mail"
31
 
32
+ #: add-to-any.php:326
33
  msgid "Bookmark"
34
  msgstr "В закладки!"
35
 
36
+ #: add-to-any.php:327
37
  msgid "Show all"
38
  msgstr "Показать все"
39
 
40
+ #: add-to-any.php:328
41
  msgid "Show less"
42
  msgstr "Показать остальное"
43
 
44
+ #: add-to-any.php:329
45
  msgid "Find service(s)"
46
  msgstr "Найти сервис(ы)"
47
 
48
+ #: add-to-any.php:330
49
  msgid "Instantly find any service to add to"
50
  msgstr "Найти сервис и добавить"
51
 
52
+ #: add-to-any.php:331
53
  msgid "Powered by"
54
  msgstr "Работает на"
55
 
56
+ #: add-to-any.php:332
57
  msgid "Share via e-mail"
58
  msgstr "Поделиться по E-mail"
59
 
60
+ #: add-to-any.php:333
61
  msgid "Subscribe via e-mail"
62
  msgstr "Подписаться по E-mail"
63
 
64
+ #: add-to-any.php:334
65
  msgid "Bookmark in your browser"
66
  msgstr "Добавить в закладки"
67
 
68
+ #: add-to-any.php:335
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr "Нажмите Ctrl+В или &#8984;+D чтобы добавить эту страницу в закладки"
71
 
72
+ #: add-to-any.php:336
73
  msgid "Add to your favorites"
74
  msgstr "Добавить в Избранное"
75
 
76
+ #: add-to-any.php:337
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr "Отправить через E-mail сервис"
79
 
80
+ #: add-to-any.php:338
81
  msgid "E-mail program"
82
  msgstr "E-mail сервисы"
83
 
84
+ #: add-to-any.php:363
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 "Внимание! Плагин не работает с выбранной вами темой. Чтобы исправить это воспользуйтесь <a href=\"theme-editor.php\">редактором тем</a> и введите следующий код <code>&lt;?php wp_footer(); ?&gt;</code> сразу после строки <code>&lt;/body&gt;</code>. Изменения нужно сделать в файле <code>footer.php</code>."
87
 
88
+ #: add-to-any.php:520
89
  #, php-format
90
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
91
  msgstr "Ошибка при создании папки %s. Проверьте права на родительскую папку (необходимы права на запись)."
92
 
93
+ #: add-to-any.php:654
94
+ #: add-to-any.php:778
95
+ #: add-to-any.php:782
96
+ #: add-to-any.php:786
97
+ #: add-to-any.php:790
98
+ #: add-to-any.php:822
99
  msgid "Share/Bookmark"
100
  msgstr "В закладки!"
101
 
102
+ #: add-to-any.php:667
103
  msgid "Settings saved."
104
  msgstr "Найстройки сохранены"
105
 
106
+ #: add-to-any.php:688
107
  msgid "bottom"
108
  msgstr ""
109
 
110
+ #: add-to-any.php:692
111
  msgid "top"
112
  msgstr ""
113
 
114
+ #: add-to-any.php:696
115
  msgid "top &amp; bottom"
116
  msgstr ""
117
 
118
+ #: add-to-any.php:727
119
  msgid "AddToAny: Share/Save "
120
  msgstr "Сохранить/Отправить другу "
121
 
122
+ #: add-to-any.php:727
123
+ #: add-to-any.php:1132
124
+ #: add-to-any.php:1163
125
  msgid "Settings"
126
  msgstr "Настройки"
127
 
128
+ #: add-to-any.php:736
129
  msgid "Standalone Services"
130
  msgstr "Используемые сервисы"
131
 
132
+ #: add-to-any.php:741
133
  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."
134
  msgstr "Выберите из списка ниже нужные вам сервисы.&nbsp;Чтобы удалить сервис из вашего списка - нажмите на его иконку еще раз.&nbsp;Для того чтобы поменять сервисы местами в Вашем списке, просто нажмите на иконку и перетащите на нужное место."
135
 
136
+ #: add-to-any.php:773
137
  msgid "Button"
138
  msgstr "Внешний вид кнопки"
139
 
140
+ #: add-to-any.php:812
141
  msgid "Image URL"
142
  msgstr "Адрес изображения"
143
 
144
+ #: add-to-any.php:819
145
  msgid "Text only"
146
  msgstr "Только текст"
147
 
148
+ #: add-to-any.php:827
149
  msgid "Placement"
150
  msgstr "Расположение"
151
 
152
+ #: add-to-any.php:832
153
  #, fuzzy, php-format
154
  msgid "Display at the %s of posts"
155
  msgstr "Отображать кнопку Сохранить/Отправить другу в нижней части всех записей"
156
 
157
+ #: add-to-any.php:839
158
  #, php-format
159
  msgid "Display at the %s of post excerpts"
160
  msgstr ""
161
 
162
+ #: add-to-any.php:846
163
  #, fuzzy, php-format
164
  msgid "Display at the %s of posts on the front page"
165
  msgstr "Отображать кнопку Сохранить/Отправить другу в нижней части записей на главной странице"
166
 
167
+ #: add-to-any.php:854
168
  #, fuzzy, php-format
169
  msgid "Display at the %s of posts in the feed"
170
  msgstr "Отображать кнопку Сохранить/Отправить другу в нижней части записей в фидах"
171
 
172
+ #: add-to-any.php:858
173
  #, fuzzy, php-format
174
  msgid "Display at the %s of pages"
175
  msgstr "Отображать кнопку Сохранить/Отправить другу в нижней части страниц"
176
 
177
+ #: add-to-any.php:862
178
  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>)"
179
  msgstr "Если ОТКЛЮЧИТЬ одну или все данные опции, Вы должны добавить код, наобходимый для корректной работы плагина, в <a href=\"theme-editor.php\">Вашу тему оформления</a> (код должен присутствовать на следующих страницах: <code>index.php</code>, <code>single.php</code>, и/или <code>page.php</code>). Код"
180
 
181
+ #: add-to-any.php:871
182
  msgid "Menu Style"
183
  msgstr "Внешний вид меню"
184
 
185
+ #: add-to-any.php:873
186
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
187
  msgstr "Используйте этот инструмент для того, чтобы сделать Ваше меню плагина Сохранить/Отправить другу уникальным в плане внешнего вида! Закончив настройки цветовой схемы, вставте полученный код в поле <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Дополнительные настройки</a>."
188
 
189
+ #: add-to-any.php:875
190
  msgid "Open the AddToAny Menu Styler in a new window"
191
  msgstr "Открыть меню стилей для плагина Сохранить/Отправить другу в новом окне"
192
 
193
+ #: add-to-any.php:877
194
  msgid "Open Menu Styler"
195
  msgstr "Открыть редактор внешнего вида (в новом окне)"
196
 
197
+ #: add-to-any.php:882
198
  msgid "Menu Options"
199
  msgstr "Настройки меню"
200
 
201
+ #: add-to-any.php:887
202
  msgid "Only show the menu when the user clicks the Share/Save button"
203
  msgstr "Показывать меню плагина только если пользователь нажмет на кнопку Сохранить/Отправить другу"
204
 
205
+ #: add-to-any.php:892
206
  msgid "Show the title of the post (or page) within the menu"
207
  msgstr "Показывать название заметки или страницы в меню плагина"
208
 
209
+ #: add-to-any.php:897
210
  msgid "Additional Options"
211
  msgstr "Дополнительные настройки"
212
 
213
+ #: add-to-any.php:901
214
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
215
  msgstr "Вставте в поле ниже полученный код для изменения внешнего вида меню плагина!"
216
 
217
+ #: add-to-any.php:905
218
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
219
  msgstr "В поле ниже вы можете вставить полученный код, который изменит внешний вид меню плагина. "
220
 
221
+ #: add-to-any.php:906
222
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
223
  msgstr "Если Вы хотите узнать больше про технологии, используемые в плагине, читайте заметку о <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">JavaScript API</a>."
224
 
225
+ #: add-to-any.php:912
226
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
227
  msgstr "<strong>Обратите внимание</strong>: Добавляйте новый код осторожно, Ваш предыдущий вариант кода не будет сохранен!</label>"
228
 
229
+ #: add-to-any.php:917
230
  msgid "Advanced Options"
231
  msgstr "Дополнительные настройки"
232
 
233
+ #: add-to-any.php:922
234
  msgid "Use CSS stylesheet"
235
  msgstr "Использовать стиль CSS"
236
 
237
+ #: add-to-any.php:927
238
  msgid "Cache AddToAny locally with daily cache updates"
239
  msgstr "Использовать опции кеширования для AddToAny "
240
 
241
+ #: add-to-any.php:931
242
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
243
  msgstr "Рекомендуется использовать только для сайтов с постоянной (возвращающейся каждый день) аудиторией. Если пользователи уже сохраняют данные плагина AddToAny в своем браузере, то время отклика сервиса AddToAny увеличивается для них. Используя опцию кеширования, проверьте наличие заголовков кеша для изображений в папке <code>uploads/addtoany</code>."
244
 
245
+ #: add-to-any.php:938
246
  msgid "Save Changes"
247
  msgstr "Сохранить все изменения"
248
 
249
+ #: add-to-any.php:939
250
  msgid "Are you sure you want to delete all AddToAny options?"
251
  msgstr ""
252
 
253
+ #: add-to-any.php:939
254
  msgid "Reset"
255
  msgstr ""
256
 
257
+ #: add-to-any.php:944
258
  msgid "Like this plugin?"
259
  msgstr "Понравился плагин?"
260
 
261
+ #: add-to-any.php:945
262
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
263
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Оцените плагин</a> на сайте WordPress.org."
264
 
265
+ #: add-to-any.php:946
266
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
267
  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\">Расскажите о плагине</a> своим друзьям."
268
 
269
+ #: add-to-any.php:948
270
  msgid "Need support?"
271
  msgstr "Нужна помощь?"
272
 
273
+ #: add-to-any.php:949
274
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
275
  msgstr "Смотрите <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">ЧАВО</a>."
276
 
277
+ #: add-to-any.php:950
278
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
279
  msgstr "Ответы на свои вопросы также ищите на <a href=\"http://wordpress.org/tags/add-to-any\">форумах поддержки</a> (англ.)."
280
 
281
+ #: add-to-any.php:1075
282
  msgid "Add/Remove Services"
283
  msgstr "Добавить/Удалить сервисы"
284
 
285
+ #: add-to-any.php:1132
286
  msgid "Share/Save"
287
  msgstr "Сохранить/Отправить другу"
288
 
289
+ #: add-to-any.php:1133
290
  msgid "Share/Save Buttons"
291
  msgstr "Сохранить/Отправить другу"
292
 
languages/add-to-any-sq_AL.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any ne shqip\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-02-16 00:10-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: Romeo Shuka | http://www.romeolab.com/ <webmaster@romeolab.com>\n"
@@ -15,281 +15,281 @@ msgstr ""
15
  "X-Poedit-Country: ALBANIA\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: add-to-any.php:313
19
  msgid "Share"
20
  msgstr "Shpërndaj"
21
 
22
- #: add-to-any.php:314
23
  msgid "Save"
24
  msgstr "Ruaj"
25
 
26
- #: add-to-any.php:315
27
  msgid "Subscribe"
28
  msgstr "Abonohu"
29
 
30
- #: add-to-any.php:316
31
  msgid "E-mail"
32
  msgstr "E-mail"
33
 
34
- #: add-to-any.php:317
35
  msgid "Bookmark"
36
  msgstr "Bookmark"
37
 
38
- #: add-to-any.php:318
39
  msgid "Show all"
40
  msgstr "Trego të gjitha"
41
 
42
- #: add-to-any.php:319
43
  msgid "Show less"
44
  msgstr "Trego më pak"
45
 
46
- #: add-to-any.php:320
47
  msgid "Find service(s)"
48
  msgstr "Gjej shërbimin"
49
 
50
- #: add-to-any.php:321
51
  msgid "Instantly find any service to add to"
52
  msgstr "Gjej menjëherë një shërbim për të shtuar"
53
 
54
- #: add-to-any.php:322
55
  msgid "Powered by"
56
  msgstr "Fuqizuar nga"
57
 
58
- #: add-to-any.php:323
59
  msgid "Share via e-mail"
60
  msgstr "Përhap me e-mail"
61
 
62
- #: add-to-any.php:324
63
  msgid "Subscribe via e-mail"
64
  msgstr "Abonohu me email"
65
 
66
- #: add-to-any.php:325
67
  msgid "Bookmark in your browser"
68
  msgstr "Shtoje në bookmark të shfletuesit tuaj"
69
 
70
- #: add-to-any.php:326
71
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
72
  msgstr "Shtyp Ctrl+D ose Cmd+D për të shktuar këtë faqe në bookmarket tuaja"
73
 
74
- #: add-to-any.php:327
75
  msgid "Add to your favorites"
76
  msgstr "Shtoje tek të preferuarat"
77
 
78
- #: add-to-any.php:328
79
  msgid "Send from any e-mail address or e-mail program"
80
  msgstr "Dërgoja një ardrese emaili ose klienti të postës elektronike"
81
 
82
- #: add-to-any.php:329
83
  msgid "E-mail program"
84
  msgstr "Klienti i postës elektronike"
85
 
86
- #: add-to-any.php:354
87
  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."
88
  msgstr "Template juaj duhet azhornuar. Për të bërë ndryshimet e nevojshme, përdor editorini <a href=\"theme-editor.php\">e template</a> për të shtuar <code>&lt;?php wp_footer(); ?&gt;</code> menjëherë mbas mbylljes së tagut <code>&lt;/body&gt;</code> që ndodhet në dokumentin <code>footer.php</code>."
89
 
90
- #: add-to-any.php:511
91
  #, php-format
92
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
93
  msgstr ""
94
 
95
- #: add-to-any.php:645
96
- #: add-to-any.php:769
97
- #: add-to-any.php:773
98
- #: add-to-any.php:777
99
- #: add-to-any.php:781
100
- #: add-to-any.php:813
101
  msgid "Share/Bookmark"
102
  msgstr "Bookmark"
103
 
104
- #: add-to-any.php:658
105
  msgid "Settings saved."
106
  msgstr "Opsionet u ruajtën."
107
 
108
- #: add-to-any.php:679
109
  msgid "bottom"
110
  msgstr ""
111
 
112
- #: add-to-any.php:683
113
  msgid "top"
114
  msgstr ""
115
 
116
- #: add-to-any.php:687
117
  msgid "top &amp; bottom"
118
  msgstr ""
119
 
120
- #: add-to-any.php:718
121
  msgid "AddToAny: Share/Save "
122
  msgstr "AddToAny: Shpërnda/Ruaj"
123
 
124
- #: add-to-any.php:718
125
- #: add-to-any.php:1123
126
- #: add-to-any.php:1154
127
  msgid "Settings"
128
  msgstr "Opsionet"
129
 
130
- #: add-to-any.php:727
131
  msgid "Standalone Services"
132
  msgstr "Shërbime të pavarur"
133
 
134
- #: add-to-any.php:732
135
  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."
136
  msgstr "Zgjidh këtu poshtë shërbimet që të pëlqejnë. &nbsp;Kliko tek një nga shërbimet aktive për ta hequr. &nbsp;Rëndit shërbimet me drag and drop."
137
 
138
- #: add-to-any.php:764
139
  msgid "Button"
140
  msgstr "Buton"
141
 
142
- #: add-to-any.php:803
143
  msgid "Image URL"
144
  msgstr "URL e imazhit"
145
 
146
- #: add-to-any.php:810
147
  msgid "Text only"
148
  msgstr "Vetëm tekst"
149
 
150
- #: add-to-any.php:818
151
  msgid "Placement"
152
  msgstr "Vendndodhja"
153
 
154
- #: add-to-any.php:823
155
  #, fuzzy, php-format
156
  msgid "Display at the %s of posts"
157
  msgstr "Trego butonin Share/Save në fund të artikujve"
158
 
159
- #: add-to-any.php:830
160
  #, php-format
161
  msgid "Display at the %s of post excerpts"
162
  msgstr ""
163
 
164
- #: add-to-any.php:837
165
  #, fuzzy, php-format
166
  msgid "Display at the %s of posts on the front page"
167
  msgstr "Trego butonin Share/Save në fund të artikujve në faqen kryesore"
168
 
169
- #: add-to-any.php:845
170
  #, fuzzy, php-format
171
  msgid "Display at the %s of posts in the feed"
172
  msgstr "Trego butonin Share/Save në fund të artikujve feed"
173
 
174
- #: add-to-any.php:849
175
  #, fuzzy, php-format
176
  msgid "Display at the %s of pages"
177
  msgstr "Trego butonin Share/Save në fund të faqeve"
178
 
179
- #: add-to-any.php:853
180
  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>)"
181
  msgstr "Nëse nuk është e selektuar, sigurohu që të vendosësh kodin në <a href=\"theme-editor.php\">faqen e templates tënde</a> (në <code>index.php</code>, <code>single.php</code>, edhe/ose <code>page.php</code>)"
182
 
183
- #: add-to-any.php:862
184
  msgid "Menu Style"
185
  msgstr "Stili i menusë"
186
 
187
- #: add-to-any.php:864
188
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
189
  msgstr "Duke përdorur Menunë Styler të AddToAny mund të personalizosh ngjyrat e menusë Share/Save! Mbasi të keni bër ndryshimet e duhura, ngjit kodin që gjëndet në <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Opsionet shtesë</a> këtu poshtë."
190
 
191
- #: add-to-any.php:866
192
  msgid "Open the AddToAny Menu Styler in a new window"
193
  msgstr "Hape në një faqe të re për të personalizuar menunë e AddToAny"
194
 
195
- #: add-to-any.php:868
196
  msgid "Open Menu Styler"
197
  msgstr "Stili menu"
198
 
199
- #: add-to-any.php:873
200
  msgid "Menu Options"
201
  msgstr "Opsionet e menusë"
202
 
203
- #: add-to-any.php:878
204
  msgid "Only show the menu when the user clicks the Share/Save button"
205
  msgstr "Trego menunë vetëm kur një anëtar klikon mbi butonin Share/Save"
206
 
207
- #: add-to-any.php:883
208
  msgid "Show the title of the post (or page) within the menu"
209
  msgstr "Trego në menu titullin e artikullit (ose të faqes)"
210
 
211
- #: add-to-any.php:888
212
  msgid "Additional Options"
213
  msgstr "Opsione shtesë"
214
 
215
- #: add-to-any.php:892
216
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
217
  msgstr "Ngjit në kutinë poshtë kodin tuaj të personalizuar të menusë! "
218
 
219
- #: add-to-any.php:896
220
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
221
  msgstr "Këtu poshtë është e mundur ndryshimi i variableve të JavaScript që përdor menuja Share/Save."
222
 
223
- #: add-to-any.php:897
224
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
225
  msgstr "Përdoruesit me njohuri më të thella mund të eksplorojnë <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">JavaScript API</a> të AddToAny."
226
 
227
- #: add-to-any.php:903
228
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
229
  msgstr "<strong>Shënim</strong>: nëse ti vendos kod të ri, ki kujdes mos të rishkruash ndonjë kod të vjetër.</label>"
230
 
231
- #: add-to-any.php:908
232
  #, fuzzy
233
  msgid "Advanced Options"
234
  msgstr "Opsione shtesë"
235
 
236
- #: add-to-any.php:913
237
  msgid "Use CSS stylesheet"
238
  msgstr ""
239
 
240
- #: add-to-any.php:918
241
  msgid "Cache AddToAny locally with daily cache updates"
242
  msgstr ""
243
 
244
- #: add-to-any.php:922
245
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
246
  msgstr ""
247
 
248
- #: add-to-any.php:929
249
  msgid "Save Changes"
250
  msgstr "Ruaj ndryshimet"
251
 
252
- #: add-to-any.php:930
253
  msgid "Are you sure you want to delete all AddToAny options?"
254
  msgstr ""
255
 
256
- #: add-to-any.php:930
257
  msgid "Reset"
258
  msgstr ""
259
 
260
- #: add-to-any.php:935
261
  msgid "Like this plugin?"
262
  msgstr "Të pëlqeu ky plugin?"
263
 
264
- #: add-to-any.php:936
265
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
266
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Votoje</a> në WordPress.org."
267
 
268
- #: add-to-any.php:937
269
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
270
  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\">Shpërndaja</a> miqve të tu.."
271
 
272
- #: add-to-any.php:939
273
  msgid "Need support?"
274
  msgstr "Të duhet ndihmë??"
275
 
276
- #: add-to-any.php:940
277
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
278
  msgstr "Shiko faqen dedikuar <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ</a>."
279
 
280
- #: add-to-any.php:941
281
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
282
  msgstr "Bëj një kërkim në <a href=\"http://wordpress.org/tags/add-to-any\">forum</a>."
283
 
284
- #: add-to-any.php:1066
285
  msgid "Add/Remove Services"
286
  msgstr "Shtoi/Hiq shërbimet"
287
 
288
- #: add-to-any.php:1123
289
  msgid "Share/Save"
290
  msgstr "Shpërnda/Ruaj"
291
 
292
- #: add-to-any.php:1124
293
  msgid "Share/Save Buttons"
294
  msgstr "Butoni Shpërnda/Ruaj"
295
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any ne shqip\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-23 20:40-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: Romeo Shuka | http://www.romeolab.com/ <webmaster@romeolab.com>\n"
15
  "X-Poedit-Country: ALBANIA\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: add-to-any.php:322
19
  msgid "Share"
20
  msgstr "Shpërndaj"
21
 
22
+ #: add-to-any.php:323
23
  msgid "Save"
24
  msgstr "Ruaj"
25
 
26
+ #: add-to-any.php:324
27
  msgid "Subscribe"
28
  msgstr "Abonohu"
29
 
30
+ #: add-to-any.php:325
31
  msgid "E-mail"
32
  msgstr "E-mail"
33
 
34
+ #: add-to-any.php:326
35
  msgid "Bookmark"
36
  msgstr "Bookmark"
37
 
38
+ #: add-to-any.php:327
39
  msgid "Show all"
40
  msgstr "Trego të gjitha"
41
 
42
+ #: add-to-any.php:328
43
  msgid "Show less"
44
  msgstr "Trego më pak"
45
 
46
+ #: add-to-any.php:329
47
  msgid "Find service(s)"
48
  msgstr "Gjej shërbimin"
49
 
50
+ #: add-to-any.php:330
51
  msgid "Instantly find any service to add to"
52
  msgstr "Gjej menjëherë një shërbim për të shtuar"
53
 
54
+ #: add-to-any.php:331
55
  msgid "Powered by"
56
  msgstr "Fuqizuar nga"
57
 
58
+ #: add-to-any.php:332
59
  msgid "Share via e-mail"
60
  msgstr "Përhap me e-mail"
61
 
62
+ #: add-to-any.php:333
63
  msgid "Subscribe via e-mail"
64
  msgstr "Abonohu me email"
65
 
66
+ #: add-to-any.php:334
67
  msgid "Bookmark in your browser"
68
  msgstr "Shtoje në bookmark të shfletuesit tuaj"
69
 
70
+ #: add-to-any.php:335
71
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
72
  msgstr "Shtyp Ctrl+D ose Cmd+D për të shktuar këtë faqe në bookmarket tuaja"
73
 
74
+ #: add-to-any.php:336
75
  msgid "Add to your favorites"
76
  msgstr "Shtoje tek të preferuarat"
77
 
78
+ #: add-to-any.php:337
79
  msgid "Send from any e-mail address or e-mail program"
80
  msgstr "Dërgoja një ardrese emaili ose klienti të postës elektronike"
81
 
82
+ #: add-to-any.php:338
83
  msgid "E-mail program"
84
  msgstr "Klienti i postës elektronike"
85
 
86
+ #: add-to-any.php:363
87
  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."
88
  msgstr "Template juaj duhet azhornuar. Për të bërë ndryshimet e nevojshme, përdor editorini <a href=\"theme-editor.php\">e template</a> për të shtuar <code>&lt;?php wp_footer(); ?&gt;</code> menjëherë mbas mbylljes së tagut <code>&lt;/body&gt;</code> që ndodhet në dokumentin <code>footer.php</code>."
89
 
90
+ #: add-to-any.php:520
91
  #, php-format
92
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
93
  msgstr ""
94
 
95
+ #: add-to-any.php:654
96
+ #: add-to-any.php:778
97
+ #: add-to-any.php:782
98
+ #: add-to-any.php:786
99
+ #: add-to-any.php:790
100
+ #: add-to-any.php:822
101
  msgid "Share/Bookmark"
102
  msgstr "Bookmark"
103
 
104
+ #: add-to-any.php:667
105
  msgid "Settings saved."
106
  msgstr "Opsionet u ruajtën."
107
 
108
+ #: add-to-any.php:688
109
  msgid "bottom"
110
  msgstr ""
111
 
112
+ #: add-to-any.php:692
113
  msgid "top"
114
  msgstr ""
115
 
116
+ #: add-to-any.php:696
117
  msgid "top &amp; bottom"
118
  msgstr ""
119
 
120
+ #: add-to-any.php:727
121
  msgid "AddToAny: Share/Save "
122
  msgstr "AddToAny: Shpërnda/Ruaj"
123
 
124
+ #: add-to-any.php:727
125
+ #: add-to-any.php:1132
126
+ #: add-to-any.php:1163
127
  msgid "Settings"
128
  msgstr "Opsionet"
129
 
130
+ #: add-to-any.php:736
131
  msgid "Standalone Services"
132
  msgstr "Shërbime të pavarur"
133
 
134
+ #: add-to-any.php:741
135
  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."
136
  msgstr "Zgjidh këtu poshtë shërbimet që të pëlqejnë. &nbsp;Kliko tek një nga shërbimet aktive për ta hequr. &nbsp;Rëndit shërbimet me drag and drop."
137
 
138
+ #: add-to-any.php:773
139
  msgid "Button"
140
  msgstr "Buton"
141
 
142
+ #: add-to-any.php:812
143
  msgid "Image URL"
144
  msgstr "URL e imazhit"
145
 
146
+ #: add-to-any.php:819
147
  msgid "Text only"
148
  msgstr "Vetëm tekst"
149
 
150
+ #: add-to-any.php:827
151
  msgid "Placement"
152
  msgstr "Vendndodhja"
153
 
154
+ #: add-to-any.php:832
155
  #, fuzzy, php-format
156
  msgid "Display at the %s of posts"
157
  msgstr "Trego butonin Share/Save në fund të artikujve"
158
 
159
+ #: add-to-any.php:839
160
  #, php-format
161
  msgid "Display at the %s of post excerpts"
162
  msgstr ""
163
 
164
+ #: add-to-any.php:846
165
  #, fuzzy, php-format
166
  msgid "Display at the %s of posts on the front page"
167
  msgstr "Trego butonin Share/Save në fund të artikujve në faqen kryesore"
168
 
169
+ #: add-to-any.php:854
170
  #, fuzzy, php-format
171
  msgid "Display at the %s of posts in the feed"
172
  msgstr "Trego butonin Share/Save në fund të artikujve feed"
173
 
174
+ #: add-to-any.php:858
175
  #, fuzzy, php-format
176
  msgid "Display at the %s of pages"
177
  msgstr "Trego butonin Share/Save në fund të faqeve"
178
 
179
+ #: add-to-any.php:862
180
  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>)"
181
  msgstr "Nëse nuk është e selektuar, sigurohu që të vendosësh kodin në <a href=\"theme-editor.php\">faqen e templates tënde</a> (në <code>index.php</code>, <code>single.php</code>, edhe/ose <code>page.php</code>)"
182
 
183
+ #: add-to-any.php:871
184
  msgid "Menu Style"
185
  msgstr "Stili i menusë"
186
 
187
+ #: add-to-any.php:873
188
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
189
  msgstr "Duke përdorur Menunë Styler të AddToAny mund të personalizosh ngjyrat e menusë Share/Save! Mbasi të keni bër ndryshimet e duhura, ngjit kodin që gjëndet në <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Opsionet shtesë</a> këtu poshtë."
190
 
191
+ #: add-to-any.php:875
192
  msgid "Open the AddToAny Menu Styler in a new window"
193
  msgstr "Hape në një faqe të re për të personalizuar menunë e AddToAny"
194
 
195
+ #: add-to-any.php:877
196
  msgid "Open Menu Styler"
197
  msgstr "Stili menu"
198
 
199
+ #: add-to-any.php:882
200
  msgid "Menu Options"
201
  msgstr "Opsionet e menusë"
202
 
203
+ #: add-to-any.php:887
204
  msgid "Only show the menu when the user clicks the Share/Save button"
205
  msgstr "Trego menunë vetëm kur një anëtar klikon mbi butonin Share/Save"
206
 
207
+ #: add-to-any.php:892
208
  msgid "Show the title of the post (or page) within the menu"
209
  msgstr "Trego në menu titullin e artikullit (ose të faqes)"
210
 
211
+ #: add-to-any.php:897
212
  msgid "Additional Options"
213
  msgstr "Opsione shtesë"
214
 
215
+ #: add-to-any.php:901
216
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
217
  msgstr "Ngjit në kutinë poshtë kodin tuaj të personalizuar të menusë! "
218
 
219
+ #: add-to-any.php:905
220
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
221
  msgstr "Këtu poshtë është e mundur ndryshimi i variableve të JavaScript që përdor menuja Share/Save."
222
 
223
+ #: add-to-any.php:906
224
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
225
  msgstr "Përdoruesit me njohuri më të thella mund të eksplorojnë <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">JavaScript API</a> të AddToAny."
226
 
227
+ #: add-to-any.php:912
228
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
229
  msgstr "<strong>Shënim</strong>: nëse ti vendos kod të ri, ki kujdes mos të rishkruash ndonjë kod të vjetër.</label>"
230
 
231
+ #: add-to-any.php:917
232
  #, fuzzy
233
  msgid "Advanced Options"
234
  msgstr "Opsione shtesë"
235
 
236
+ #: add-to-any.php:922
237
  msgid "Use CSS stylesheet"
238
  msgstr ""
239
 
240
+ #: add-to-any.php:927
241
  msgid "Cache AddToAny locally with daily cache updates"
242
  msgstr ""
243
 
244
+ #: add-to-any.php:931
245
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
246
  msgstr ""
247
 
248
+ #: add-to-any.php:938
249
  msgid "Save Changes"
250
  msgstr "Ruaj ndryshimet"
251
 
252
+ #: add-to-any.php:939
253
  msgid "Are you sure you want to delete all AddToAny options?"
254
  msgstr ""
255
 
256
+ #: add-to-any.php:939
257
  msgid "Reset"
258
  msgstr ""
259
 
260
+ #: add-to-any.php:944
261
  msgid "Like this plugin?"
262
  msgstr "Të pëlqeu ky plugin?"
263
 
264
+ #: add-to-any.php:945
265
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
266
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Votoje</a> në WordPress.org."
267
 
268
+ #: add-to-any.php:946
269
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
270
  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\">Shpërndaja</a> miqve të tu.."
271
 
272
+ #: add-to-any.php:948
273
  msgid "Need support?"
274
  msgstr "Të duhet ndihmë??"
275
 
276
+ #: add-to-any.php:949
277
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
278
  msgstr "Shiko faqen dedikuar <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ</a>."
279
 
280
+ #: add-to-any.php:950
281
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
282
  msgstr "Bëj një kërkim në <a href=\"http://wordpress.org/tags/add-to-any\">forum</a>."
283
 
284
+ #: add-to-any.php:1075
285
  msgid "Add/Remove Services"
286
  msgstr "Shtoi/Hiq shërbimet"
287
 
288
+ #: add-to-any.php:1132
289
  msgid "Share/Save"
290
  msgstr "Shpërnda/Ruaj"
291
 
292
+ #: add-to-any.php:1133
293
  msgid "Share/Save Buttons"
294
  msgstr "Butoni Shpërnda/Ruaj"
295
 
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: 2011-02-16 00:10-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
@@ -16,281 +16,281 @@ msgstr ""
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: add-to-any.php:313
20
  msgid "Share"
21
  msgstr "分享"
22
 
23
- #: add-to-any.php:314
24
  msgid "Save"
25
  msgstr "收藏"
26
 
27
- #: add-to-any.php:315
28
  msgid "Subscribe"
29
  msgstr "订阅"
30
 
31
- #: add-to-any.php:316
32
  msgid "E-mail"
33
  msgstr "电子邮件"
34
 
35
- #: add-to-any.php:317
36
  msgid "Bookmark"
37
  msgstr "书签"
38
 
39
- #: add-to-any.php:318
40
  msgid "Show all"
41
  msgstr "显示全部服务"
42
 
43
- #: add-to-any.php:319
44
  msgid "Show less"
45
  msgstr "显示部分服务"
46
 
47
- #: add-to-any.php:320
48
  msgid "Find service(s)"
49
  msgstr "查找服务"
50
 
51
- #: add-to-any.php:321
52
  msgid "Instantly find any service to add to"
53
  msgstr "动态查找任何用以添加的服务"
54
 
55
- #: add-to-any.php:322
56
  msgid "Powered by"
57
  msgstr "Powered by"
58
 
59
- #: add-to-any.php:323
60
  msgid "Share via e-mail"
61
  msgstr "通过电子邮件分享"
62
 
63
- #: add-to-any.php:324
64
  msgid "Subscribe via e-mail"
65
  msgstr "通过电子邮件订阅"
66
 
67
- #: add-to-any.php:325
68
  msgid "Bookmark in your browser"
69
  msgstr "添加为浏览器书签"
70
 
71
- #: add-to-any.php:326
72
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
73
  msgstr "按下 [Ctrl+D] 或 [Cmd+D] 将本页加为书签"
74
 
75
- #: add-to-any.php:327
76
  msgid "Add to your favorites"
77
  msgstr "添加至收藏夹"
78
 
79
- #: add-to-any.php:328
80
  msgid "Send from any e-mail address or e-mail program"
81
  msgstr "从任何电子邮件地址或电子邮件程序发送"
82
 
83
- #: add-to-any.php:329
84
  msgid "E-mail program"
85
  msgstr "电子邮件程序"
86
 
87
- #: add-to-any.php:354
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 ""
90
 
91
- #: add-to-any.php:511
92
  #, php-format
93
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
94
  msgstr ""
95
 
96
- #: add-to-any.php:645
97
- #: add-to-any.php:769
98
- #: add-to-any.php:773
99
- #: add-to-any.php:777
100
- #: add-to-any.php:781
101
- #: add-to-any.php:813
102
  msgid "Share/Bookmark"
103
  msgstr "书签"
104
 
105
- #: add-to-any.php:658
106
  msgid "Settings saved."
107
  msgstr "设置已保存"
108
 
109
- #: add-to-any.php:679
110
  msgid "bottom"
111
  msgstr ""
112
 
113
- #: add-to-any.php:683
114
  msgid "top"
115
  msgstr ""
116
 
117
- #: add-to-any.php:687
118
  msgid "top &amp; bottom"
119
  msgstr ""
120
 
121
- #: add-to-any.php:718
122
  msgid "AddToAny: Share/Save "
123
  msgstr "AddToAny: 分享/收藏"
124
 
125
- #: add-to-any.php:718
126
- #: add-to-any.php:1123
127
- #: add-to-any.php:1154
128
  msgid "Settings"
129
  msgstr "设置"
130
 
131
- #: add-to-any.php:727
132
  msgid "Standalone Services"
133
  msgstr ""
134
 
135
- #: add-to-any.php:732
136
  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."
137
  msgstr ""
138
 
139
- #: add-to-any.php:764
140
  msgid "Button"
141
  msgstr "按钮"
142
 
143
- #: add-to-any.php:803
144
  msgid "Image URL"
145
  msgstr "图片 URL"
146
 
147
- #: add-to-any.php:810
148
  msgid "Text only"
149
  msgstr "仅用文字"
150
 
151
- #: add-to-any.php:818
152
  msgid "Placement"
153
  msgstr "按钮位置"
154
 
155
- #: add-to-any.php:823
156
  #, fuzzy, php-format
157
  msgid "Display at the %s of posts"
158
  msgstr "在文章底部显示 分享/收藏 按钮"
159
 
160
- #: add-to-any.php:830
161
  #, php-format
162
  msgid "Display at the %s of post excerpts"
163
  msgstr ""
164
 
165
- #: add-to-any.php:837
166
  #, fuzzy, php-format
167
  msgid "Display at the %s of posts on the front page"
168
  msgstr "在首页的文章底部显示 分享/收藏 按钮"
169
 
170
- #: add-to-any.php:845
171
  #, fuzzy, php-format
172
  msgid "Display at the %s of posts in the feed"
173
  msgstr "在 Feed 的文章底部显示 分享/收藏 按钮"
174
 
175
- #: add-to-any.php:849
176
  #, fuzzy, php-format
177
  msgid "Display at the %s of pages"
178
  msgstr "在页面底部显示 分享/收藏 按钮"
179
 
180
- #: add-to-any.php:853
181
  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>)"
182
  msgstr "如果不选,请确定将以下代码置入于 <a href=\"theme-editor.php\">您的模板页面</a> 中 (包括 <code>index.php</code>,<code>single.php</code>,与/或 <code>page.php</code>)"
183
 
184
- #: add-to-any.php:862
185
  msgid "Menu Style"
186
  msgstr "菜单风格"
187
 
188
- #: add-to-any.php:864
189
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
190
  msgstr "使用 AddToAny 的菜单风格设置器,您可以自定义您的 分享/收藏 菜单的颜色!完成后,请将生成的代码粘贴于下方 <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">附加选项</a> 框内。"
191
 
192
- #: add-to-any.php:866
193
  msgid "Open the AddToAny Menu Styler in a new window"
194
  msgstr "在新窗口中打开 AddToAny 菜单风格设置器"
195
 
196
- #: add-to-any.php:868
197
  msgid "Open Menu Styler"
198
  msgstr "打开菜单风格设置器"
199
 
200
- #: add-to-any.php:873
201
  msgid "Menu Options"
202
  msgstr "菜单选项"
203
 
204
- #: add-to-any.php:878
205
  msgid "Only show the menu when the user clicks the Share/Save button"
206
  msgstr "仅当用户点击 分享/收藏 按钮时显示菜单"
207
 
208
- #: add-to-any.php:883
209
  msgid "Show the title of the post (or page) within the menu"
210
  msgstr "菜单中显示文章(或页面)的标题"
211
 
212
- #: add-to-any.php:888
213
  msgid "Additional Options"
214
  msgstr "附加选项"
215
 
216
- #: add-to-any.php:892
217
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
218
  msgstr "粘贴 AddToAny 菜单风格设置器生成的代码于下方框内!"
219
 
220
- #: add-to-any.php:896
221
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
222
  msgstr "您可以设置特殊 JavaScript 变量以应用于全部 分享/收藏 菜单。"
223
 
224
- #: add-to-any.php:897
225
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
226
  msgstr "高级用户可能希望尝试 AddToAny 的 <a href=\"http://www.addtoany.com/buttons/customize/\">JavaScript API</a> 所生成的代码。"
227
 
228
- #: add-to-any.php:903
229
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
230
  msgstr "<strong>注意</strong>: 如果您打算添加新代码,请小心不要意外覆盖任何先前代码。</label>"
231
 
232
- #: add-to-any.php:908
233
  #, fuzzy
234
  msgid "Advanced Options"
235
  msgstr "附加选项"
236
 
237
- #: add-to-any.php:913
238
  msgid "Use CSS stylesheet"
239
  msgstr ""
240
 
241
- #: add-to-any.php:918
242
  msgid "Cache AddToAny locally with daily cache updates"
243
  msgstr ""
244
 
245
- #: add-to-any.php:922
246
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
247
  msgstr ""
248
 
249
- #: add-to-any.php:929
250
  msgid "Save Changes"
251
  msgstr "保存更改"
252
 
253
- #: add-to-any.php:930
254
  msgid "Are you sure you want to delete all AddToAny options?"
255
  msgstr ""
256
 
257
- #: add-to-any.php:930
258
  msgid "Reset"
259
  msgstr ""
260
 
261
- #: add-to-any.php:935
262
  msgid "Like this plugin?"
263
  msgstr ""
264
 
265
- #: add-to-any.php:936
266
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
267
  msgstr ""
268
 
269
- #: add-to-any.php:937
270
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
271
  msgstr ""
272
 
273
- #: add-to-any.php:939
274
  msgid "Need support?"
275
  msgstr ""
276
 
277
- #: add-to-any.php:940
278
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
279
  msgstr ""
280
 
281
- #: add-to-any.php:941
282
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
283
  msgstr ""
284
 
285
- #: add-to-any.php:1066
286
  msgid "Add/Remove Services"
287
  msgstr ""
288
 
289
- #: add-to-any.php:1123
290
  msgid "Share/Save"
291
  msgstr "分享/收藏"
292
 
293
- #: add-to-any.php:1124
294
  msgid "Share/Save Buttons"
295
  msgstr "分享/收藏 按钮"
296
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-23 20:40-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: add-to-any.php:322
20
  msgid "Share"
21
  msgstr "分享"
22
 
23
+ #: add-to-any.php:323
24
  msgid "Save"
25
  msgstr "收藏"
26
 
27
+ #: add-to-any.php:324
28
  msgid "Subscribe"
29
  msgstr "订阅"
30
 
31
+ #: add-to-any.php:325
32
  msgid "E-mail"
33
  msgstr "电子邮件"
34
 
35
+ #: add-to-any.php:326
36
  msgid "Bookmark"
37
  msgstr "书签"
38
 
39
+ #: add-to-any.php:327
40
  msgid "Show all"
41
  msgstr "显示全部服务"
42
 
43
+ #: add-to-any.php:328
44
  msgid "Show less"
45
  msgstr "显示部分服务"
46
 
47
+ #: add-to-any.php:329
48
  msgid "Find service(s)"
49
  msgstr "查找服务"
50
 
51
+ #: add-to-any.php:330
52
  msgid "Instantly find any service to add to"
53
  msgstr "动态查找任何用以添加的服务"
54
 
55
+ #: add-to-any.php:331
56
  msgid "Powered by"
57
  msgstr "Powered by"
58
 
59
+ #: add-to-any.php:332
60
  msgid "Share via e-mail"
61
  msgstr "通过电子邮件分享"
62
 
63
+ #: add-to-any.php:333
64
  msgid "Subscribe via e-mail"
65
  msgstr "通过电子邮件订阅"
66
 
67
+ #: add-to-any.php:334
68
  msgid "Bookmark in your browser"
69
  msgstr "添加为浏览器书签"
70
 
71
+ #: add-to-any.php:335
72
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
73
  msgstr "按下 [Ctrl+D] 或 [Cmd+D] 将本页加为书签"
74
 
75
+ #: add-to-any.php:336
76
  msgid "Add to your favorites"
77
  msgstr "添加至收藏夹"
78
 
79
+ #: add-to-any.php:337
80
  msgid "Send from any e-mail address or e-mail program"
81
  msgstr "从任何电子邮件地址或电子邮件程序发送"
82
 
83
+ #: add-to-any.php:338
84
  msgid "E-mail program"
85
  msgstr "电子邮件程序"
86
 
87
+ #: add-to-any.php:363
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 ""
90
 
91
+ #: add-to-any.php:520
92
  #, php-format
93
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
94
  msgstr ""
95
 
96
+ #: add-to-any.php:654
97
+ #: add-to-any.php:778
98
+ #: add-to-any.php:782
99
+ #: add-to-any.php:786
100
+ #: add-to-any.php:790
101
+ #: add-to-any.php:822
102
  msgid "Share/Bookmark"
103
  msgstr "书签"
104
 
105
+ #: add-to-any.php:667
106
  msgid "Settings saved."
107
  msgstr "设置已保存"
108
 
109
+ #: add-to-any.php:688
110
  msgid "bottom"
111
  msgstr ""
112
 
113
+ #: add-to-any.php:692
114
  msgid "top"
115
  msgstr ""
116
 
117
+ #: add-to-any.php:696
118
  msgid "top &amp; bottom"
119
  msgstr ""
120
 
121
+ #: add-to-any.php:727
122
  msgid "AddToAny: Share/Save "
123
  msgstr "AddToAny: 分享/收藏"
124
 
125
+ #: add-to-any.php:727
126
+ #: add-to-any.php:1132
127
+ #: add-to-any.php:1163
128
  msgid "Settings"
129
  msgstr "设置"
130
 
131
+ #: add-to-any.php:736
132
  msgid "Standalone Services"
133
  msgstr ""
134
 
135
+ #: add-to-any.php:741
136
  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."
137
  msgstr ""
138
 
139
+ #: add-to-any.php:773
140
  msgid "Button"
141
  msgstr "按钮"
142
 
143
+ #: add-to-any.php:812
144
  msgid "Image URL"
145
  msgstr "图片 URL"
146
 
147
+ #: add-to-any.php:819
148
  msgid "Text only"
149
  msgstr "仅用文字"
150
 
151
+ #: add-to-any.php:827
152
  msgid "Placement"
153
  msgstr "按钮位置"
154
 
155
+ #: add-to-any.php:832
156
  #, fuzzy, php-format
157
  msgid "Display at the %s of posts"
158
  msgstr "在文章底部显示 分享/收藏 按钮"
159
 
160
+ #: add-to-any.php:839
161
  #, php-format
162
  msgid "Display at the %s of post excerpts"
163
  msgstr ""
164
 
165
+ #: add-to-any.php:846
166
  #, fuzzy, php-format
167
  msgid "Display at the %s of posts on the front page"
168
  msgstr "在首页的文章底部显示 分享/收藏 按钮"
169
 
170
+ #: add-to-any.php:854
171
  #, fuzzy, php-format
172
  msgid "Display at the %s of posts in the feed"
173
  msgstr "在 Feed 的文章底部显示 分享/收藏 按钮"
174
 
175
+ #: add-to-any.php:858
176
  #, fuzzy, php-format
177
  msgid "Display at the %s of pages"
178
  msgstr "在页面底部显示 分享/收藏 按钮"
179
 
180
+ #: add-to-any.php:862
181
  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>)"
182
  msgstr "如果不选,请确定将以下代码置入于 <a href=\"theme-editor.php\">您的模板页面</a> 中 (包括 <code>index.php</code>,<code>single.php</code>,与/或 <code>page.php</code>)"
183
 
184
+ #: add-to-any.php:871
185
  msgid "Menu Style"
186
  msgstr "菜单风格"
187
 
188
+ #: add-to-any.php:873
189
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
190
  msgstr "使用 AddToAny 的菜单风格设置器,您可以自定义您的 分享/收藏 菜单的颜色!完成后,请将生成的代码粘贴于下方 <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">附加选项</a> 框内。"
191
 
192
+ #: add-to-any.php:875
193
  msgid "Open the AddToAny Menu Styler in a new window"
194
  msgstr "在新窗口中打开 AddToAny 菜单风格设置器"
195
 
196
+ #: add-to-any.php:877
197
  msgid "Open Menu Styler"
198
  msgstr "打开菜单风格设置器"
199
 
200
+ #: add-to-any.php:882
201
  msgid "Menu Options"
202
  msgstr "菜单选项"
203
 
204
+ #: add-to-any.php:887
205
  msgid "Only show the menu when the user clicks the Share/Save button"
206
  msgstr "仅当用户点击 分享/收藏 按钮时显示菜单"
207
 
208
+ #: add-to-any.php:892
209
  msgid "Show the title of the post (or page) within the menu"
210
  msgstr "菜单中显示文章(或页面)的标题"
211
 
212
+ #: add-to-any.php:897
213
  msgid "Additional Options"
214
  msgstr "附加选项"
215
 
216
+ #: add-to-any.php:901
217
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
218
  msgstr "粘贴 AddToAny 菜单风格设置器生成的代码于下方框内!"
219
 
220
+ #: add-to-any.php:905
221
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
222
  msgstr "您可以设置特殊 JavaScript 变量以应用于全部 分享/收藏 菜单。"
223
 
224
+ #: add-to-any.php:906
225
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
226
  msgstr "高级用户可能希望尝试 AddToAny 的 <a href=\"http://www.addtoany.com/buttons/customize/\">JavaScript API</a> 所生成的代码。"
227
 
228
+ #: add-to-any.php:912
229
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
230
  msgstr "<strong>注意</strong>: 如果您打算添加新代码,请小心不要意外覆盖任何先前代码。</label>"
231
 
232
+ #: add-to-any.php:917
233
  #, fuzzy
234
  msgid "Advanced Options"
235
  msgstr "附加选项"
236
 
237
+ #: add-to-any.php:922
238
  msgid "Use CSS stylesheet"
239
  msgstr ""
240
 
241
+ #: add-to-any.php:927
242
  msgid "Cache AddToAny locally with daily cache updates"
243
  msgstr ""
244
 
245
+ #: add-to-any.php:931
246
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
247
  msgstr ""
248
 
249
+ #: add-to-any.php:938
250
  msgid "Save Changes"
251
  msgstr "保存更改"
252
 
253
+ #: add-to-any.php:939
254
  msgid "Are you sure you want to delete all AddToAny options?"
255
  msgstr ""
256
 
257
+ #: add-to-any.php:939
258
  msgid "Reset"
259
  msgstr ""
260
 
261
+ #: add-to-any.php:944
262
  msgid "Like this plugin?"
263
  msgstr ""
264
 
265
+ #: add-to-any.php:945
266
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
267
  msgstr ""
268
 
269
+ #: add-to-any.php:946
270
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
271
  msgstr ""
272
 
273
+ #: add-to-any.php:948
274
  msgid "Need support?"
275
  msgstr ""
276
 
277
+ #: add-to-any.php:949
278
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
279
  msgstr ""
280
 
281
+ #: add-to-any.php:950
282
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
283
  msgstr ""
284
 
285
+ #: add-to-any.php:1075
286
  msgid "Add/Remove Services"
287
  msgstr ""
288
 
289
+ #: add-to-any.php:1132
290
  msgid "Share/Save"
291
  msgstr "分享/收藏"
292
 
293
+ #: add-to-any.php:1133
294
  msgid "Share/Save Buttons"
295
  msgstr "分享/收藏 按钮"
296
 
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: 2011-02-16 00:10-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
@@ -13,280 +13,280 @@ msgstr ""
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: add-to-any.php:313
17
  msgid "Share"
18
  msgstr ""
19
 
20
- #: add-to-any.php:314
21
  msgid "Save"
22
  msgstr ""
23
 
24
- #: add-to-any.php:315
25
  msgid "Subscribe"
26
  msgstr ""
27
 
28
- #: add-to-any.php:316
29
  msgid "E-mail"
30
  msgstr ""
31
 
32
- #: add-to-any.php:317
33
  msgid "Bookmark"
34
  msgstr ""
35
 
36
- #: add-to-any.php:318
37
  msgid "Show all"
38
  msgstr ""
39
 
40
- #: add-to-any.php:319
41
  msgid "Show less"
42
  msgstr ""
43
 
44
- #: add-to-any.php:320
45
  msgid "Find service(s)"
46
  msgstr ""
47
 
48
- #: add-to-any.php:321
49
  msgid "Instantly find any service to add to"
50
  msgstr ""
51
 
52
- #: add-to-any.php:322
53
  msgid "Powered by"
54
  msgstr ""
55
 
56
- #: add-to-any.php:323
57
  msgid "Share via e-mail"
58
  msgstr ""
59
 
60
- #: add-to-any.php:324
61
  msgid "Subscribe via e-mail"
62
  msgstr ""
63
 
64
- #: add-to-any.php:325
65
  msgid "Bookmark in your browser"
66
  msgstr ""
67
 
68
- #: add-to-any.php:326
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr ""
71
 
72
- #: add-to-any.php:327
73
  msgid "Add to your favorites"
74
  msgstr ""
75
 
76
- #: add-to-any.php:328
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr ""
79
 
80
- #: add-to-any.php:329
81
  msgid "E-mail program"
82
  msgstr ""
83
 
84
- #: add-to-any.php:354
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:511
89
  #, php-format
90
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
91
  msgstr ""
92
 
93
- #: add-to-any.php:645
94
- #: add-to-any.php:769
95
- #: add-to-any.php:773
96
- #: add-to-any.php:777
97
- #: add-to-any.php:781
98
- #: add-to-any.php:813
99
  msgid "Share/Bookmark"
100
  msgstr ""
101
 
102
- #: add-to-any.php:658
103
  msgid "Settings saved."
104
  msgstr ""
105
 
106
- #: add-to-any.php:679
107
  msgid "bottom"
108
  msgstr ""
109
 
110
- #: add-to-any.php:683
111
  msgid "top"
112
  msgstr ""
113
 
114
- #: add-to-any.php:687
115
  msgid "top &amp; bottom"
116
  msgstr ""
117
 
118
- #: add-to-any.php:718
119
  msgid "AddToAny: Share/Save "
120
  msgstr ""
121
 
122
- #: add-to-any.php:718
123
- #: add-to-any.php:1123
124
- #: add-to-any.php:1154
125
  msgid "Settings"
126
  msgstr ""
127
 
128
- #: add-to-any.php:727
129
  msgid "Standalone Services"
130
  msgstr ""
131
 
132
- #: add-to-any.php:732
133
  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."
134
  msgstr ""
135
 
136
- #: add-to-any.php:764
137
  msgid "Button"
138
  msgstr ""
139
 
140
- #: add-to-any.php:803
141
  msgid "Image URL"
142
  msgstr ""
143
 
144
- #: add-to-any.php:810
145
  msgid "Text only"
146
  msgstr ""
147
 
148
- #: add-to-any.php:818
149
  msgid "Placement"
150
  msgstr ""
151
 
152
- #: add-to-any.php:823
153
  #, php-format
154
  msgid "Display at the %s of posts"
155
  msgstr ""
156
 
157
- #: add-to-any.php:830
158
  #, php-format
159
  msgid "Display at the %s of post excerpts"
160
  msgstr ""
161
 
162
- #: add-to-any.php:837
163
  #, php-format
164
  msgid "Display at the %s of posts on the front page"
165
  msgstr ""
166
 
167
- #: add-to-any.php:845
168
  #, php-format
169
  msgid "Display at the %s of posts in the feed"
170
  msgstr ""
171
 
172
- #: add-to-any.php:849
173
  #, php-format
174
  msgid "Display at the %s of pages"
175
  msgstr ""
176
 
177
- #: add-to-any.php:853
178
  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>)"
179
  msgstr ""
180
 
181
- #: add-to-any.php:862
182
  msgid "Menu Style"
183
  msgstr ""
184
 
185
- #: add-to-any.php:864
186
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
187
  msgstr ""
188
 
189
- #: add-to-any.php:866
190
  msgid "Open the AddToAny Menu Styler in a new window"
191
  msgstr ""
192
 
193
- #: add-to-any.php:868
194
  msgid "Open Menu Styler"
195
  msgstr ""
196
 
197
- #: add-to-any.php:873
198
  msgid "Menu Options"
199
  msgstr ""
200
 
201
- #: add-to-any.php:878
202
  msgid "Only show the menu when the user clicks the Share/Save button"
203
  msgstr ""
204
 
205
- #: add-to-any.php:883
206
  msgid "Show the title of the post (or page) within the menu"
207
  msgstr ""
208
 
209
- #: add-to-any.php:888
210
  msgid "Additional Options"
211
  msgstr ""
212
 
213
- #: add-to-any.php:892
214
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
215
  msgstr ""
216
 
217
- #: add-to-any.php:896
218
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
219
  msgstr ""
220
 
221
- #: add-to-any.php:897
222
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
223
  msgstr ""
224
 
225
- #: add-to-any.php:903
226
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
227
  msgstr ""
228
 
229
- #: add-to-any.php:908
230
  msgid "Advanced Options"
231
  msgstr ""
232
 
233
- #: add-to-any.php:913
234
  msgid "Use CSS stylesheet"
235
  msgstr ""
236
 
237
- #: add-to-any.php:918
238
  msgid "Cache AddToAny locally with daily cache updates"
239
  msgstr ""
240
 
241
- #: add-to-any.php:922
242
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
243
  msgstr ""
244
 
245
- #: add-to-any.php:929
246
  msgid "Save Changes"
247
  msgstr ""
248
 
249
- #: add-to-any.php:930
250
  msgid "Are you sure you want to delete all AddToAny options?"
251
  msgstr ""
252
 
253
- #: add-to-any.php:930
254
  msgid "Reset"
255
  msgstr ""
256
 
257
- #: add-to-any.php:935
258
  msgid "Like this plugin?"
259
  msgstr ""
260
 
261
- #: add-to-any.php:936
262
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
263
  msgstr ""
264
 
265
- #: add-to-any.php:937
266
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
267
  msgstr ""
268
 
269
- #: add-to-any.php:939
270
  msgid "Need support?"
271
  msgstr ""
272
 
273
- #: add-to-any.php:940
274
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
275
  msgstr ""
276
 
277
- #: add-to-any.php:941
278
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
279
  msgstr ""
280
 
281
- #: add-to-any.php:1066
282
  msgid "Add/Remove Services"
283
  msgstr ""
284
 
285
- #: add-to-any.php:1123
286
  msgid "Share/Save"
287
  msgstr ""
288
 
289
- #: add-to-any.php:1124
290
  msgid "Share/Save Buttons"
291
  msgstr ""
292
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-23 20:40-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
+ #: add-to-any.php:322
17
  msgid "Share"
18
  msgstr ""
19
 
20
+ #: add-to-any.php:323
21
  msgid "Save"
22
  msgstr ""
23
 
24
+ #: add-to-any.php:324
25
  msgid "Subscribe"
26
  msgstr ""
27
 
28
+ #: add-to-any.php:325
29
  msgid "E-mail"
30
  msgstr ""
31
 
32
+ #: add-to-any.php:326
33
  msgid "Bookmark"
34
  msgstr ""
35
 
36
+ #: add-to-any.php:327
37
  msgid "Show all"
38
  msgstr ""
39
 
40
+ #: add-to-any.php:328
41
  msgid "Show less"
42
  msgstr ""
43
 
44
+ #: add-to-any.php:329
45
  msgid "Find service(s)"
46
  msgstr ""
47
 
48
+ #: add-to-any.php:330
49
  msgid "Instantly find any service to add to"
50
  msgstr ""
51
 
52
+ #: add-to-any.php:331
53
  msgid "Powered by"
54
  msgstr ""
55
 
56
+ #: add-to-any.php:332
57
  msgid "Share via e-mail"
58
  msgstr ""
59
 
60
+ #: add-to-any.php:333
61
  msgid "Subscribe via e-mail"
62
  msgstr ""
63
 
64
+ #: add-to-any.php:334
65
  msgid "Bookmark in your browser"
66
  msgstr ""
67
 
68
+ #: add-to-any.php:335
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr ""
71
 
72
+ #: add-to-any.php:336
73
  msgid "Add to your favorites"
74
  msgstr ""
75
 
76
+ #: add-to-any.php:337
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr ""
79
 
80
+ #: add-to-any.php:338
81
  msgid "E-mail program"
82
  msgstr ""
83
 
84
+ #: add-to-any.php:363
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:520
89
  #, php-format
90
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
91
  msgstr ""
92
 
93
+ #: add-to-any.php:654
94
+ #: add-to-any.php:778
95
+ #: add-to-any.php:782
96
+ #: add-to-any.php:786
97
+ #: add-to-any.php:790
98
+ #: add-to-any.php:822
99
  msgid "Share/Bookmark"
100
  msgstr ""
101
 
102
+ #: add-to-any.php:667
103
  msgid "Settings saved."
104
  msgstr ""
105
 
106
+ #: add-to-any.php:688
107
  msgid "bottom"
108
  msgstr ""
109
 
110
+ #: add-to-any.php:692
111
  msgid "top"
112
  msgstr ""
113
 
114
+ #: add-to-any.php:696
115
  msgid "top &amp; bottom"
116
  msgstr ""
117
 
118
+ #: add-to-any.php:727
119
  msgid "AddToAny: Share/Save "
120
  msgstr ""
121
 
122
+ #: add-to-any.php:727
123
+ #: add-to-any.php:1132
124
+ #: add-to-any.php:1163
125
  msgid "Settings"
126
  msgstr ""
127
 
128
+ #: add-to-any.php:736
129
  msgid "Standalone Services"
130
  msgstr ""
131
 
132
+ #: add-to-any.php:741
133
  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."
134
  msgstr ""
135
 
136
+ #: add-to-any.php:773
137
  msgid "Button"
138
  msgstr ""
139
 
140
+ #: add-to-any.php:812
141
  msgid "Image URL"
142
  msgstr ""
143
 
144
+ #: add-to-any.php:819
145
  msgid "Text only"
146
  msgstr ""
147
 
148
+ #: add-to-any.php:827
149
  msgid "Placement"
150
  msgstr ""
151
 
152
+ #: add-to-any.php:832
153
  #, php-format
154
  msgid "Display at the %s of posts"
155
  msgstr ""
156
 
157
+ #: add-to-any.php:839
158
  #, php-format
159
  msgid "Display at the %s of post excerpts"
160
  msgstr ""
161
 
162
+ #: add-to-any.php:846
163
  #, php-format
164
  msgid "Display at the %s of posts on the front page"
165
  msgstr ""
166
 
167
+ #: add-to-any.php:854
168
  #, php-format
169
  msgid "Display at the %s of posts in the feed"
170
  msgstr ""
171
 
172
+ #: add-to-any.php:858
173
  #, php-format
174
  msgid "Display at the %s of pages"
175
  msgstr ""
176
 
177
+ #: add-to-any.php:862
178
  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>)"
179
  msgstr ""
180
 
181
+ #: add-to-any.php:871
182
  msgid "Menu Style"
183
  msgstr ""
184
 
185
+ #: add-to-any.php:873
186
  msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
187
  msgstr ""
188
 
189
+ #: add-to-any.php:875
190
  msgid "Open the AddToAny Menu Styler in a new window"
191
  msgstr ""
192
 
193
+ #: add-to-any.php:877
194
  msgid "Open Menu Styler"
195
  msgstr ""
196
 
197
+ #: add-to-any.php:882
198
  msgid "Menu Options"
199
  msgstr ""
200
 
201
+ #: add-to-any.php:887
202
  msgid "Only show the menu when the user clicks the Share/Save button"
203
  msgstr ""
204
 
205
+ #: add-to-any.php:892
206
  msgid "Show the title of the post (or page) within the menu"
207
  msgstr ""
208
 
209
+ #: add-to-any.php:897
210
  msgid "Additional Options"
211
  msgstr ""
212
 
213
+ #: add-to-any.php:901
214
  msgid "Paste the code from AddToAny's Menu Styler in the box below!"
215
  msgstr ""
216
 
217
+ #: add-to-any.php:905
218
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
219
  msgstr ""
220
 
221
+ #: add-to-any.php:906
222
  msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
223
  msgstr ""
224
 
225
+ #: add-to-any.php:912
226
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
227
  msgstr ""
228
 
229
+ #: add-to-any.php:917
230
  msgid "Advanced Options"
231
  msgstr ""
232
 
233
+ #: add-to-any.php:922
234
  msgid "Use CSS stylesheet"
235
  msgstr ""
236
 
237
+ #: add-to-any.php:927
238
  msgid "Cache AddToAny locally with daily cache updates"
239
  msgstr ""
240
 
241
+ #: add-to-any.php:931
242
  msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
243
  msgstr ""
244
 
245
+ #: add-to-any.php:938
246
  msgid "Save Changes"
247
  msgstr ""
248
 
249
+ #: add-to-any.php:939
250
  msgid "Are you sure you want to delete all AddToAny options?"
251
  msgstr ""
252
 
253
+ #: add-to-any.php:939
254
  msgid "Reset"
255
  msgstr ""
256
 
257
+ #: add-to-any.php:944
258
  msgid "Like this plugin?"
259
  msgstr ""
260
 
261
+ #: add-to-any.php:945
262
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
263
  msgstr ""
264
 
265
+ #: add-to-any.php:946
266
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
267
  msgstr ""
268
 
269
+ #: add-to-any.php:948
270
  msgid "Need support?"
271
  msgstr ""
272
 
273
+ #: add-to-any.php:949
274
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
275
  msgstr ""
276
 
277
+ #: add-to-any.php:950
278
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
279
  msgstr ""
280
 
281
+ #: add-to-any.php:1075
282
  msgid "Add/Remove Services"
283
  msgstr ""
284
 
285
+ #: add-to-any.php:1132
286
  msgid "Share/Save"
287
  msgstr ""
288
 
289
+ #: add-to-any.php:1133
290
  msgid "Share/Save Buttons"
291
  msgstr ""
292