AddToAny Share Buttons - Version 0.9.9.4.3

Version Description

Download this release

Release Info

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

Code changes from version 0.9.9.4.2 to 0.9.9.4.3

README.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: micropat
3
  Donate link: http://www.addtoany.com/contact/
4
  Tags: bookmarking, social, social bookmarking, social bookmarks, bookmark, bookmarks, sharing, share, sharethis, saving, save, Post, posts, page, pages, images, image, admin, statistics, stats, links, plugin, widget, e-mail, email, seo, button, delicious, google, digg, reddit, facebook, myspace, twitter, stumbleupon, technorati, wpmu, addtoany, add, any
5
  Requires at least: 2.0
6
- Tested up to: 2.8
7
  Stable tag: 0.9.9.4.2
8
 
9
  Help readers share, bookmark, and email your posts and pages using any service, such as Facebook, Twitter, Digg, Delicious and over 100 more.
@@ -122,6 +122,13 @@ This is done to overcome browser limitations that prevent the drop-down menu fro
122
 
123
  == Changelog ==
124
 
 
 
 
 
 
 
 
125
  = .9.9.4.2 =
126
  * Updated button text
127
  * Further localized strings
3
  Donate link: http://www.addtoany.com/contact/
4
  Tags: bookmarking, social, social bookmarking, social bookmarks, bookmark, bookmarks, sharing, share, sharethis, saving, save, Post, posts, page, pages, images, image, admin, statistics, stats, links, plugin, widget, e-mail, email, seo, button, delicious, google, digg, reddit, facebook, myspace, twitter, stumbleupon, technorati, wpmu, addtoany, add, any
5
  Requires at least: 2.0
6
+ Tested up to: 2.9
7
  Stable tag: 0.9.9.4.2
8
 
9
  Help readers share, bookmark, and email your posts and pages using any service, such as Facebook, Twitter, Digg, Delicious and over 100 more.
122
 
123
  == Changelog ==
124
 
125
+ = .9.9.4.3 =
126
+ * Automatic support for over 50 languages
127
+ * The drop-down menu automatically detects the visitor's set language and localizes accordingly
128
+ * Less JavaScript output; removed redundant code
129
+ * No longer outputs language strings if WordPress locale is set to the default "en_US"
130
+ * Forward support for WordPress 2.9
131
+
132
  = .9.9.4.2 =
133
  * Updated button text
134
  * Further localized strings
add-to-any.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Add to Any: Share/Bookmark/Email Button
4
  Plugin URI: http://www.addtoany.com/
5
  Description: Help readers share, bookmark, and email your posts and pages using any service. [<a href="options-general.php?page=add-to-any.php">Settings</a>]
6
- Version: .9.9.4.2
7
  Author: Add to Any
8
  Author URI: http://www.addtoany.com/contact/
9
  */
@@ -201,9 +201,12 @@ if (!function_exists('A2A_menu_javascript')) {
201
  }
202
 
203
  if (!function_exists('A2A_menu_locale')) {
204
- function A2A_menu_locale() {
205
  global $A2A_locale;
206
- if( $A2A_locale != '' ) return false;
 
 
 
207
  $A2A_locale = 'a2a_localize = {
208
  Share: "' . __("Share", "add-to-any") . '",
209
  Save: "' . __("Save", "add-to-any") . '",
3
  Plugin Name: Add to Any: Share/Bookmark/Email Button
4
  Plugin URI: http://www.addtoany.com/
5
  Description: Help readers share, bookmark, and email your posts and pages using any service. [<a href="options-general.php?page=add-to-any.php">Settings</a>]
6
+ Version: .9.9.4.3
7
  Author: Add to Any
8
  Author URI: http://www.addtoany.com/contact/
9
  */
201
  }
202
 
203
  if (!function_exists('A2A_menu_locale')) {
204
+ function A2A_menu_locale() {return false;
205
  global $A2A_locale;
206
+ echo get_locale();
207
+ if( get_locale() == 'en_US' || $A2A_locale != '' )
208
+ return false;
209
+
210
  $A2A_locale = 'a2a_localize = {
211
  Share: "' . __("Share", "add-to-any") . '",
212
  Save: "' . __("Save", "add-to-any") . '",
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: 2009-11-09 17:17-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Hazem Khaled <hazem.khaled@gmail.com>\n"
8
  "Language-Team: \n"
@@ -13,230 +13,240 @@ msgstr ""
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: add-to-any.php:208
17
  msgid "Share"
18
  msgstr "نشر"
19
 
20
- #: add-to-any.php:209
21
  msgid "Save"
22
  msgstr "حفظ"
23
 
24
- #: add-to-any.php:210
25
  msgid "Subscribe"
26
  msgstr "تابع"
27
 
28
- #: add-to-any.php:211
29
  msgid "E-mail"
30
  msgstr "رسالة بريدية"
31
 
32
- #: add-to-any.php:212
33
  msgid "Bookmark"
34
  msgstr "مفضلة"
35
 
36
- #: add-to-any.php:213
37
  msgid "Show all"
38
  msgstr "عرض الكل"
39
 
40
- #: add-to-any.php:214
41
  msgid "Show less"
42
  msgstr "عرض أقل"
43
 
44
- #: add-to-any.php:215
45
  msgid "Find service(s)"
46
  msgstr "أبحث عن خدمة"
47
 
48
- #: add-to-any.php:216
49
  msgid "Instantly find any service to add to"
50
  msgstr ""
51
 
52
- #: add-to-any.php:217
53
  msgid "Powered by"
54
  msgstr "بواسطة"
55
 
56
- #: add-to-any.php:218
57
  msgid "Share via e-mail"
58
  msgstr "أرسال على البريد"
59
 
60
- #: add-to-any.php:219
61
  msgid "Subscribe via e-mail"
62
  msgstr "تابع عبر البريد"
63
 
64
- #: add-to-any.php:220
65
  msgid "Bookmark in your browser"
66
  msgstr "أضف للمفضلة بالمتصفح"
67
 
68
- #: add-to-any.php:221
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr "أضغط Ctrl+D أو &#8984;+D لحفظ هذه الصفحة بالمفضلة"
71
 
72
- #: add-to-any.php:222
73
  msgid "Add to your favorites"
74
  msgstr "أضف لمفضلتك"
75
 
76
- #: add-to-any.php:223
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr "أرسال من اي برنامج بريد أو أي عنوان بريدي"
79
 
80
- #: add-to-any.php:224
81
  msgid "E-mail program"
82
  msgstr "برنامج بريدي"
83
 
84
- #: add-to-any.php:249
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:401
 
 
 
 
 
 
 
 
 
 
89
  msgid "Settings saved."
90
  msgstr "تم حفظ الأعدادات"
91
 
92
- #: add-to-any.php:412
93
  msgid "Add to Any: Share/Save "
94
  msgstr "أضف إلى: نشر/حفظ"
95
 
96
- #: add-to-any.php:412
97
- #: add-to-any.php:772
98
- #: add-to-any.php:793
99
  msgid "Settings"
100
  msgstr "الأعدادات"
101
 
102
- #: add-to-any.php:422
103
  msgid "Standalone Services"
104
  msgstr "خدمات قائمة بذاتها"
105
 
106
- #: add-to-any.php:427
107
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
108
  msgstr "أختر الخدمات من الأسفل. &nbsp; أضغط لتختار الخدمة وأضغط مرة اخرى لألغائها. &nbsp; رتب الخدمات بأستخدام الفائرة."
109
 
110
- #: add-to-any.php:453
111
  msgid "Button"
112
  msgstr "زر"
113
 
114
- #: add-to-any.php:492
115
  msgid "Image URL"
116
  msgstr "رابط صورة"
117
 
118
- #: add-to-any.php:499
119
  msgid "Text only"
120
  msgstr "نص فقط"
121
 
122
- #: add-to-any.php:507
123
  msgid "Placement"
124
  msgstr "مكان العرض"
125
 
126
- #: add-to-any.php:516
127
  msgid "Display Share/Save button at the bottom of posts"
128
  msgstr "عرض زر نشر/حفظ في اخر تدويناتك"
129
 
130
- #: add-to-any.php:523
131
  msgid "Display Share/Save button at the bottom of posts on the front page"
132
  msgstr "عرض زر نشر/حفظ في اخر تدويناتك بالرئيسية"
133
 
134
- #: add-to-any.php:530
135
  msgid "Display Share/Save button at the bottom of posts in the feed"
136
  msgstr "عرض زر نشر/حفظ في اخر تدويناتك بالخلاصات"
137
 
138
- #: add-to-any.php:534
139
  msgid "Display Share/Save button at the bottom of pages"
140
  msgstr "عرض زر نشر/حفظ في أخر الصفحات"
141
 
142
- #: add-to-any.php:538
143
  #, fuzzy
144
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
145
  msgstr "إن لم تختار احد هذه الخيارات فتأكد ان تضع الكود بواسطة <a href=\"theme-editor.php\">محرر التصميم</a> (في <code>index.php</code>, <code>single.php</code>, و/أو <code>page.php</code>)"
146
 
147
- #: add-to-any.php:547
148
  msgid "Menu Style"
149
  msgstr "تصميم القائمة"
150
 
151
- #: add-to-any.php:549
152
  msgid "Using Add to Any's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
153
  msgstr "أستخدم محرر تصميم أضف إلى, يمكنك تخصيص الألوان لقائمة نشر/حفظ! عند إنتهائك, تأكد من لصق الكود في مربع <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">الخيارات الخاصة</a>"
154
 
155
- #: add-to-any.php:551
156
  msgid "Open the Add to Any Menu Styler in a new window"
157
  msgstr "فتح قائمة تصميم أضف إلى في نافذة جديدة"
158
 
159
- #: add-to-any.php:553
160
  msgid "Open Menu Styler"
161
  msgstr "فتح قائمة التصميم"
162
 
163
- #: add-to-any.php:558
164
  msgid "Menu Options"
165
  msgstr "خيارات القائمة"
166
 
167
- #: add-to-any.php:563
168
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
169
  msgstr "أخفاء (الفلاشات والفيديو و ... الخ) التي تتقاطع مع القائمة"
170
 
171
- #: add-to-any.php:568
172
  msgid "Show the title of the post (or page) within the menu"
173
  msgstr "عرض عنوان التدوينة او الصفحة في القائمة"
174
 
175
- #: add-to-any.php:575
176
  msgid "Only show the menu when the user clicks the Share/Save button"
177
  msgstr "عرض القائمة عن الضغط عليها فقط"
178
 
179
- #: add-to-any.php:581
180
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
181
  msgstr "فتح موقع addtoany.com عند ضغط الزائر على زر نشر/حفظ"
182
 
183
- #: add-to-any.php:586
184
  msgid "Additional Options"
185
  msgstr "خيارات خاصة"
186
 
187
- #: add-to-any.php:590
188
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
189
  msgstr "ألصق الكود من قائمة تصميم أضف إلى في هذا المربع"
190
 
191
- #: add-to-any.php:594
192
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
193
  msgstr "يمكنك ضبط متغيرات جافا سكريبت خاصة لتنفيزها على قائمة نشر/حفظ"
194
 
195
- #: add-to-any.php:595
196
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
197
  msgstr "المستخدمين المتقدمين قد يحتاجون إلى تصفح أضف إلى <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">جافا سكريبت API</a>."
198
 
199
- #: add-to-any.php:601
200
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
201
  msgstr "<strong>ملحوظة</strong>: إذا أضفت اكواد جديدة, كن حزر حتى لا تمسح اكواد قديمة.</label>"
202
 
203
- #: add-to-any.php:608
204
  msgid "Save Changes"
205
  msgstr "حفظ التغيرات"
206
 
207
- #: add-to-any.php:613
208
  msgid "Like this plugin?"
209
  msgstr "هل تحب هذه الأضافة؟"
210
 
211
- #: add-to-any.php:614
212
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
213
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">قيمها</a> في موقع WordPress.org."
214
 
215
- #: add-to-any.php:615
216
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
217
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">أنشرها</a> مع أصدقائك."
218
 
219
- #: add-to-any.php:617
220
  msgid "Need support?"
221
  msgstr "بحاجة إلى الدعم؟"
222
 
223
- #: add-to-any.php:618
224
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
225
  msgstr "راجع <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">الأسئلة الشائعة</a>."
226
 
227
- #: add-to-any.php:619
228
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
229
  msgstr "أبحث في <a href=\"http://wordpress.org/tags/add-to-any\">منتديات الدعم</a>."
230
 
231
- #: add-to-any.php:726
232
  msgid "Add/Remove Services"
233
  msgstr "إضافة/ألغاء خدمات"
234
 
235
- #: add-to-any.php:772
236
  msgid "Share/Save"
237
  msgstr "نشر/حفظ"
238
 
239
- #: add-to-any.php:773
240
  msgid "Share/Save Buttons"
241
  msgstr "أزرار نشر/حفظ"
242
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-12-18 00:13-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Hazem Khaled <hazem.khaled@gmail.com>\n"
8
  "Language-Team: \n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
+ #: add-to-any.php:211
17
  msgid "Share"
18
  msgstr "نشر"
19
 
20
+ #: add-to-any.php:212
21
  msgid "Save"
22
  msgstr "حفظ"
23
 
24
+ #: add-to-any.php:213
25
  msgid "Subscribe"
26
  msgstr "تابع"
27
 
28
+ #: add-to-any.php:214
29
  msgid "E-mail"
30
  msgstr "رسالة بريدية"
31
 
32
+ #: add-to-any.php:215
33
  msgid "Bookmark"
34
  msgstr "مفضلة"
35
 
36
+ #: add-to-any.php:216
37
  msgid "Show all"
38
  msgstr "عرض الكل"
39
 
40
+ #: add-to-any.php:217
41
  msgid "Show less"
42
  msgstr "عرض أقل"
43
 
44
+ #: add-to-any.php:218
45
  msgid "Find service(s)"
46
  msgstr "أبحث عن خدمة"
47
 
48
+ #: add-to-any.php:219
49
  msgid "Instantly find any service to add to"
50
  msgstr ""
51
 
52
+ #: add-to-any.php:220
53
  msgid "Powered by"
54
  msgstr "بواسطة"
55
 
56
+ #: add-to-any.php:221
57
  msgid "Share via e-mail"
58
  msgstr "أرسال على البريد"
59
 
60
+ #: add-to-any.php:222
61
  msgid "Subscribe via e-mail"
62
  msgstr "تابع عبر البريد"
63
 
64
+ #: add-to-any.php:223
65
  msgid "Bookmark in your browser"
66
  msgstr "أضف للمفضلة بالمتصفح"
67
 
68
+ #: add-to-any.php:224
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr "أضغط Ctrl+D أو &#8984;+D لحفظ هذه الصفحة بالمفضلة"
71
 
72
+ #: add-to-any.php:225
73
  msgid "Add to your favorites"
74
  msgstr "أضف لمفضلتك"
75
 
76
+ #: add-to-any.php:226
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr "أرسال من اي برنامج بريد أو أي عنوان بريدي"
79
 
80
+ #: add-to-any.php:227
81
  msgid "E-mail program"
82
  msgstr "برنامج بريدي"
83
 
84
+ #: add-to-any.php:252
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:390
89
+ #: add-to-any.php:461
90
+ #: add-to-any.php:465
91
+ #: add-to-any.php:469
92
+ #: add-to-any.php:473
93
+ #: add-to-any.php:505
94
+ #, fuzzy
95
+ msgid "Share/Bookmark"
96
+ msgstr "مفضلة"
97
+
98
+ #: add-to-any.php:404
99
  msgid "Settings saved."
100
  msgstr "تم حفظ الأعدادات"
101
 
102
+ #: add-to-any.php:415
103
  msgid "Add to Any: Share/Save "
104
  msgstr "أضف إلى: نشر/حفظ"
105
 
106
+ #: add-to-any.php:415
107
+ #: add-to-any.php:775
108
+ #: add-to-any.php:796
109
  msgid "Settings"
110
  msgstr "الأعدادات"
111
 
112
+ #: add-to-any.php:425
113
  msgid "Standalone Services"
114
  msgstr "خدمات قائمة بذاتها"
115
 
116
+ #: add-to-any.php:430
117
  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."
118
  msgstr "أختر الخدمات من الأسفل. &nbsp; أضغط لتختار الخدمة وأضغط مرة اخرى لألغائها. &nbsp; رتب الخدمات بأستخدام الفائرة."
119
 
120
+ #: add-to-any.php:456
121
  msgid "Button"
122
  msgstr "زر"
123
 
124
+ #: add-to-any.php:495
125
  msgid "Image URL"
126
  msgstr "رابط صورة"
127
 
128
+ #: add-to-any.php:502
129
  msgid "Text only"
130
  msgstr "نص فقط"
131
 
132
+ #: add-to-any.php:510
133
  msgid "Placement"
134
  msgstr "مكان العرض"
135
 
136
+ #: add-to-any.php:519
137
  msgid "Display Share/Save button at the bottom of posts"
138
  msgstr "عرض زر نشر/حفظ في اخر تدويناتك"
139
 
140
+ #: add-to-any.php:526
141
  msgid "Display Share/Save button at the bottom of posts on the front page"
142
  msgstr "عرض زر نشر/حفظ في اخر تدويناتك بالرئيسية"
143
 
144
+ #: add-to-any.php:533
145
  msgid "Display Share/Save button at the bottom of posts in the feed"
146
  msgstr "عرض زر نشر/حفظ في اخر تدويناتك بالخلاصات"
147
 
148
+ #: add-to-any.php:537
149
  msgid "Display Share/Save button at the bottom of pages"
150
  msgstr "عرض زر نشر/حفظ في أخر الصفحات"
151
 
152
+ #: add-to-any.php:541
153
  #, fuzzy
154
  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>)"
155
  msgstr "إن لم تختار احد هذه الخيارات فتأكد ان تضع الكود بواسطة <a href=\"theme-editor.php\">محرر التصميم</a> (في <code>index.php</code>, <code>single.php</code>, و/أو <code>page.php</code>)"
156
 
157
+ #: add-to-any.php:550
158
  msgid "Menu Style"
159
  msgstr "تصميم القائمة"
160
 
161
+ #: add-to-any.php:552
162
  msgid "Using Add to Any's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
163
  msgstr "أستخدم محرر تصميم أضف إلى, يمكنك تخصيص الألوان لقائمة نشر/حفظ! عند إنتهائك, تأكد من لصق الكود في مربع <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">الخيارات الخاصة</a>"
164
 
165
+ #: add-to-any.php:554
166
  msgid "Open the Add to Any Menu Styler in a new window"
167
  msgstr "فتح قائمة تصميم أضف إلى في نافذة جديدة"
168
 
169
+ #: add-to-any.php:556
170
  msgid "Open Menu Styler"
171
  msgstr "فتح قائمة التصميم"
172
 
173
+ #: add-to-any.php:561
174
  msgid "Menu Options"
175
  msgstr "خيارات القائمة"
176
 
177
+ #: add-to-any.php:566
178
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
179
  msgstr "أخفاء (الفلاشات والفيديو و ... الخ) التي تتقاطع مع القائمة"
180
 
181
+ #: add-to-any.php:571
182
  msgid "Show the title of the post (or page) within the menu"
183
  msgstr "عرض عنوان التدوينة او الصفحة في القائمة"
184
 
185
+ #: add-to-any.php:578
186
  msgid "Only show the menu when the user clicks the Share/Save button"
187
  msgstr "عرض القائمة عن الضغط عليها فقط"
188
 
189
+ #: add-to-any.php:584
190
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
191
  msgstr "فتح موقع addtoany.com عند ضغط الزائر على زر نشر/حفظ"
192
 
193
+ #: add-to-any.php:589
194
  msgid "Additional Options"
195
  msgstr "خيارات خاصة"
196
 
197
+ #: add-to-any.php:593
198
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
199
  msgstr "ألصق الكود من قائمة تصميم أضف إلى في هذا المربع"
200
 
201
+ #: add-to-any.php:597
202
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
203
  msgstr "يمكنك ضبط متغيرات جافا سكريبت خاصة لتنفيزها على قائمة نشر/حفظ"
204
 
205
+ #: add-to-any.php:598
206
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
207
  msgstr "المستخدمين المتقدمين قد يحتاجون إلى تصفح أضف إلى <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">جافا سكريبت API</a>."
208
 
209
+ #: add-to-any.php:604
210
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
211
  msgstr "<strong>ملحوظة</strong>: إذا أضفت اكواد جديدة, كن حزر حتى لا تمسح اكواد قديمة.</label>"
212
 
213
+ #: add-to-any.php:611
214
  msgid "Save Changes"
215
  msgstr "حفظ التغيرات"
216
 
217
+ #: add-to-any.php:616
218
  msgid "Like this plugin?"
219
  msgstr "هل تحب هذه الأضافة؟"
220
 
221
+ #: add-to-any.php:617
222
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
223
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">قيمها</a> في موقع WordPress.org."
224
 
225
+ #: add-to-any.php:618
226
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
227
  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> مع أصدقائك."
228
 
229
+ #: add-to-any.php:620
230
  msgid "Need support?"
231
  msgstr "بحاجة إلى الدعم؟"
232
 
233
+ #: add-to-any.php:621
234
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
235
  msgstr "راجع <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">الأسئلة الشائعة</a>."
236
 
237
+ #: add-to-any.php:622
238
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
239
  msgstr "أبحث في <a href=\"http://wordpress.org/tags/add-to-any\">منتديات الدعم</a>."
240
 
241
+ #: add-to-any.php:729
242
  msgid "Add/Remove Services"
243
  msgstr "إضافة/ألغاء خدمات"
244
 
245
+ #: add-to-any.php:775
246
  msgid "Share/Save"
247
  msgstr "نشر/حفظ"
248
 
249
+ #: add-to-any.php:776
250
  msgid "Share/Save Buttons"
251
  msgstr "أزرار نشر/حفظ"
252
 
languages/add-to-any-be.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-11-09 17:17-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: Marcis Gasuns <mrilyuha@gmail.com>\n"
@@ -15,232 +15,242 @@ msgstr ""
15
  "X-Poedit-Country: BELARUS\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: add-to-any.php:208
19
  msgid "Share"
20
  msgstr "Падзяліць"
21
 
22
- #: add-to-any.php:209
23
  msgid "Save"
24
  msgstr "Захаваць"
25
 
26
- #: add-to-any.php:210
27
  msgid "Subscribe"
28
  msgstr "Падпісацца"
29
 
30
- #: add-to-any.php:211
31
  msgid "E-mail"
32
  msgstr "Электоронная пошта"
33
 
34
- #: add-to-any.php:212
35
  msgid "Bookmark"
36
  msgstr "Закладка"
37
 
38
- #: add-to-any.php:213
39
  msgid "Show all"
40
  msgstr "Паказаць усё"
41
 
42
- #: add-to-any.php:214
43
  msgid "Show less"
44
  msgstr "Паказаць менш"
45
 
46
- #: add-to-any.php:215
47
  msgid "Find service(s)"
48
  msgstr "Знайсці паслугу(і)"
49
 
50
- #: add-to-any.php:216
51
  msgid "Instantly find any service to add to"
52
  msgstr "Імгненна знайсці яку-небудзь паслугу, каб дадаць да"
53
 
54
- #: add-to-any.php:217
55
  msgid "Powered by"
56
  msgstr "Кіруецца"
57
 
58
- #: add-to-any.php:218
59
  msgid "Share via e-mail"
60
  msgstr "Адправіць па электроннай пошце"
61
 
62
- #: add-to-any.php:219
63
  msgid "Subscribe via e-mail"
64
  msgstr "Падпісацца па электроннай пошце"
65
 
66
- #: add-to-any.php:220
67
  msgid "Bookmark in your browser"
68
  msgstr "Закладка ў вашым браузеры"
69
 
70
- #: add-to-any.php:221
71
  #, fuzzy
72
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
73
  msgstr "Націсніце Ctrl+D ці Cmd+D, каб стварыць закладку гэтай старонкі"
74
 
75
- #: add-to-any.php:222
76
  msgid "Add to your favorites"
77
  msgstr "Дадаць у выбранае"
78
 
79
- #: add-to-any.php:223
80
  msgid "Send from any e-mail address or e-mail program"
81
  msgstr "Адправіць з любога пошатовага адрасу ці з паштовай праграмы"
82
 
83
- #: add-to-any.php:224
84
  msgid "E-mail program"
85
  msgstr "Паштовая праграма"
86
 
87
- #: add-to-any.php:249
88
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
89
  msgstr "Ваша тэма павінна быць выпраўленая. Каб выправіць вашу тэму, выкарыстайце <a href=\"theme-editor.php\"> Тэма рэдактар </ A>, каб уставіць <code> <? PHP wp_footer ();?> </ Code> незадоўга да <code> </ BODY> </ Code> лінію вашай тэмы <code> footer.php </ cod> файл."
90
 
91
- #: add-to-any.php:401
 
 
 
 
 
 
 
 
 
 
92
  msgid "Settings saved."
93
  msgstr "Наладкі захаваны"
94
 
95
- #: add-to-any.php:412
96
  msgid "Add to Any: Share/Save "
97
  msgstr "Дадаць у любое: падзяліць/захаваць"
98
 
99
- #: add-to-any.php:412
100
- #: add-to-any.php:772
101
- #: add-to-any.php:793
102
  msgid "Settings"
103
  msgstr "Наладкі"
104
 
105
- #: add-to-any.php:422
106
  #, fuzzy
107
  msgid "Standalone Services"
108
  msgstr "Дадаць/Выдаліць паслугі"
109
 
110
- #: add-to-any.php:427
111
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
112
  msgstr ""
113
 
114
- #: add-to-any.php:453
115
  msgid "Button"
116
  msgstr "Клавіша"
117
 
118
- #: add-to-any.php:492
119
  msgid "Image URL"
120
  msgstr "URL de l'imatge"
121
 
122
- #: add-to-any.php:499
123
  msgid "Text only"
124
  msgstr "Толькт тэкст"
125
 
126
- #: add-to-any.php:507
127
  msgid "Placement"
128
  msgstr "Размяшчэнне"
129
 
130
- #: add-to-any.php:516
131
  msgid "Display Share/Save button at the bottom of posts"
132
  msgstr "Паказаць клавішу Адкрыць / Захаваць унізе запісаў"
133
 
134
- #: add-to-any.php:523
135
  msgid "Display Share/Save button at the bottom of posts on the front page"
136
  msgstr "Паказаць клавішу Адкрыць/Захаваць унізе запісаў на тытульнай старонцы"
137
 
138
- #: add-to-any.php:530
139
  msgid "Display Share/Save button at the bottom of posts in the feed"
140
  msgstr ""
141
 
142
- #: add-to-any.php:534
143
  msgid "Display Share/Save button at the bottom of pages"
144
  msgstr "Паказаць клавішу Адкрыць/Захаваць унізе старонак"
145
 
146
- #: add-to-any.php:538
147
  #, fuzzy
148
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
149
  msgstr "Калі яе не спыніць, то не забудзьцеся змясціць наступны код у <a href=\"theme-editor.php\"> шаблон старонкі </ A> (у <code> index.php </code>, <code> сінгл. PHP </cod> і / або <code> page.php </ code>) \t\t \t"
150
 
151
- #: add-to-any.php:547
152
  msgid "Menu Style"
153
  msgstr "Стыль меню"
154
 
155
- #: add-to-any.php:549
156
  msgid "Using Add to Any's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
157
  msgstr "Выкарыстанне Дадаць у любое меню Styler, вы можаце наладзіць колеры вашага Адкрыць / Захаваць мяню! Калі вы скончыце, не забудзьцеся ўставіць генераваны код у <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\"> Дадатковыя параметры </ A> ніжэй."
158
 
159
- #: add-to-any.php:551
160
  msgid "Open the Add to Any Menu Styler in a new window"
161
  msgstr "Адкрыць Дадаць у меню Styler у новым акне"
162
 
163
- #: add-to-any.php:553
164
  msgid "Open Menu Styler"
165
  msgstr "Адкрыць меню Styler"
166
 
167
- #: add-to-any.php:558
168
  msgid "Menu Options"
169
  msgstr "Меню опцый"
170
 
171
- #: add-to-any.php:563
172
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
173
  msgstr "Схаваць убудаваыях аб'екты (Flash, відэа і г.д.), якія перасякаюцца з меню пры адлюстраванні"
174
 
175
- #: add-to-any.php:568
176
  msgid "Show the title of the post (or page) within the menu"
177
  msgstr "Паказаць назву запісу(альбо старонкі) без меню"
178
 
179
- #: add-to-any.php:575
180
  msgid "Only show the menu when the user clicks the Share/Save button"
181
  msgstr " Паказваць толькі меню, калі карыстальнік клікае клавішу Адкрыць/Захаваць"
182
 
183
- #: add-to-any.php:581
184
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
185
  msgstr "Адкрыць меню addtoany.com старонкі ў новую ўкладку або акно, калі карыстальнік націскае кнопку Адкрыць/ Захаваць \t\t \t"
186
 
187
- #: add-to-any.php:586
188
  msgid "Additional Options"
189
  msgstr "Дадатковыя Опцыі"
190
 
191
- #: add-to-any.php:590
192
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
193
  msgstr "Уставіць код з Дадаць у любое меню Styler у поле ніжэй!"
194
 
195
- #: add-to-any.php:594
196
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
197
  msgstr "Ніжэй вы можаце ўсталяваць адмысловы JavaScript, які будзе ўжывацца да кожнага Адкрыць / Захаваць меню."
198
 
199
- #: add-to-any.php:595
200
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
201
  msgstr "Дасведчаныя карыстальнікі, магчыма, пажадаюць вывучыць Дадаць у <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\"> JavaScript API </ A>."
202
 
203
- #: add-to-any.php:601
204
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
205
  msgstr "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label><strong>Заўвага</strong> : Калі Вы дадаеце новы код, будзьце ўважлівыя і не перапішыце выпадкова любы папярэдні код."
206
 
207
- #: add-to-any.php:608
208
  msgid "Save Changes"
209
  msgstr "Захаваць змены"
210
 
211
- #: add-to-any.php:613
212
  msgid "Like this plugin?"
213
  msgstr "Як і гэты плагін?"
214
 
215
- #: add-to-any.php:614
216
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
217
  msgstr ""
218
 
219
- #: add-to-any.php:615
220
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
221
  msgstr ""
222
 
223
- #: add-to-any.php:617
224
  msgid "Need support?"
225
  msgstr "Патрэбна падтрымка?"
226
 
227
- #: add-to-any.php:618
228
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
229
  msgstr "Паглядзіце <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
230
 
231
- #: add-to-any.php:619
232
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
233
  msgstr "Пошук <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
234
 
235
- #: add-to-any.php:726
236
  msgid "Add/Remove Services"
237
  msgstr "Дадаць/Выдаліць паслугі"
238
 
239
- #: add-to-any.php:772
240
  msgid "Share/Save"
241
  msgstr "Адкрыць/Захаваць"
242
 
243
- #: add-to-any.php:773
244
  msgid "Share/Save Buttons"
245
  msgstr "Кнопка Адкрыць/Захаваць"
246
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-12-18 00:13-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: Marcis Gasuns <mrilyuha@gmail.com>\n"
15
  "X-Poedit-Country: BELARUS\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: add-to-any.php:211
19
  msgid "Share"
20
  msgstr "Падзяліць"
21
 
22
+ #: add-to-any.php:212
23
  msgid "Save"
24
  msgstr "Захаваць"
25
 
26
+ #: add-to-any.php:213
27
  msgid "Subscribe"
28
  msgstr "Падпісацца"
29
 
30
+ #: add-to-any.php:214
31
  msgid "E-mail"
32
  msgstr "Электоронная пошта"
33
 
34
+ #: add-to-any.php:215
35
  msgid "Bookmark"
36
  msgstr "Закладка"
37
 
38
+ #: add-to-any.php:216
39
  msgid "Show all"
40
  msgstr "Паказаць усё"
41
 
42
+ #: add-to-any.php:217
43
  msgid "Show less"
44
  msgstr "Паказаць менш"
45
 
46
+ #: add-to-any.php:218
47
  msgid "Find service(s)"
48
  msgstr "Знайсці паслугу(і)"
49
 
50
+ #: add-to-any.php:219
51
  msgid "Instantly find any service to add to"
52
  msgstr "Імгненна знайсці яку-небудзь паслугу, каб дадаць да"
53
 
54
+ #: add-to-any.php:220
55
  msgid "Powered by"
56
  msgstr "Кіруецца"
57
 
58
+ #: add-to-any.php:221
59
  msgid "Share via e-mail"
60
  msgstr "Адправіць па электроннай пошце"
61
 
62
+ #: add-to-any.php:222
63
  msgid "Subscribe via e-mail"
64
  msgstr "Падпісацца па электроннай пошце"
65
 
66
+ #: add-to-any.php:223
67
  msgid "Bookmark in your browser"
68
  msgstr "Закладка ў вашым браузеры"
69
 
70
+ #: add-to-any.php:224
71
  #, fuzzy
72
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
73
  msgstr "Націсніце Ctrl+D ці Cmd+D, каб стварыць закладку гэтай старонкі"
74
 
75
+ #: add-to-any.php:225
76
  msgid "Add to your favorites"
77
  msgstr "Дадаць у выбранае"
78
 
79
+ #: add-to-any.php:226
80
  msgid "Send from any e-mail address or e-mail program"
81
  msgstr "Адправіць з любога пошатовага адрасу ці з паштовай праграмы"
82
 
83
+ #: add-to-any.php:227
84
  msgid "E-mail program"
85
  msgstr "Паштовая праграма"
86
 
87
+ #: add-to-any.php:252
88
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
89
  msgstr "Ваша тэма павінна быць выпраўленая. Каб выправіць вашу тэму, выкарыстайце <a href=\"theme-editor.php\"> Тэма рэдактар </ A>, каб уставіць <code> <? PHP wp_footer ();?> </ Code> незадоўга да <code> </ BODY> </ Code> лінію вашай тэмы <code> footer.php </ cod> файл."
90
 
91
+ #: add-to-any.php:390
92
+ #: add-to-any.php:461
93
+ #: add-to-any.php:465
94
+ #: add-to-any.php:469
95
+ #: add-to-any.php:473
96
+ #: add-to-any.php:505
97
+ #, fuzzy
98
+ msgid "Share/Bookmark"
99
+ msgstr "Закладка"
100
+
101
+ #: add-to-any.php:404
102
  msgid "Settings saved."
103
  msgstr "Наладкі захаваны"
104
 
105
+ #: add-to-any.php:415
106
  msgid "Add to Any: Share/Save "
107
  msgstr "Дадаць у любое: падзяліць/захаваць"
108
 
109
+ #: add-to-any.php:415
110
+ #: add-to-any.php:775
111
+ #: add-to-any.php:796
112
  msgid "Settings"
113
  msgstr "Наладкі"
114
 
115
+ #: add-to-any.php:425
116
  #, fuzzy
117
  msgid "Standalone Services"
118
  msgstr "Дадаць/Выдаліць паслугі"
119
 
120
+ #: add-to-any.php:430
121
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
122
  msgstr ""
123
 
124
+ #: add-to-any.php:456
125
  msgid "Button"
126
  msgstr "Клавіша"
127
 
128
+ #: add-to-any.php:495
129
  msgid "Image URL"
130
  msgstr "URL de l'imatge"
131
 
132
+ #: add-to-any.php:502
133
  msgid "Text only"
134
  msgstr "Толькт тэкст"
135
 
136
+ #: add-to-any.php:510
137
  msgid "Placement"
138
  msgstr "Размяшчэнне"
139
 
140
+ #: add-to-any.php:519
141
  msgid "Display Share/Save button at the bottom of posts"
142
  msgstr "Паказаць клавішу Адкрыць / Захаваць унізе запісаў"
143
 
144
+ #: add-to-any.php:526
145
  msgid "Display Share/Save button at the bottom of posts on the front page"
146
  msgstr "Паказаць клавішу Адкрыць/Захаваць унізе запісаў на тытульнай старонцы"
147
 
148
+ #: add-to-any.php:533
149
  msgid "Display Share/Save button at the bottom of posts in the feed"
150
  msgstr ""
151
 
152
+ #: add-to-any.php:537
153
  msgid "Display Share/Save button at the bottom of pages"
154
  msgstr "Паказаць клавішу Адкрыць/Захаваць унізе старонак"
155
 
156
+ #: add-to-any.php:541
157
  #, fuzzy
158
  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>)"
159
  msgstr "Калі яе не спыніць, то не забудзьцеся змясціць наступны код у <a href=\"theme-editor.php\"> шаблон старонкі </ A> (у <code> index.php </code>, <code> сінгл. PHP </cod> і / або <code> page.php </ code>) \t\t \t"
160
 
161
+ #: add-to-any.php:550
162
  msgid "Menu Style"
163
  msgstr "Стыль меню"
164
 
165
+ #: add-to-any.php:552
166
  msgid "Using Add to Any's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
167
  msgstr "Выкарыстанне Дадаць у любое меню Styler, вы можаце наладзіць колеры вашага Адкрыць / Захаваць мяню! Калі вы скончыце, не забудзьцеся ўставіць генераваны код у <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\"> Дадатковыя параметры </ A> ніжэй."
168
 
169
+ #: add-to-any.php:554
170
  msgid "Open the Add to Any Menu Styler in a new window"
171
  msgstr "Адкрыць Дадаць у меню Styler у новым акне"
172
 
173
+ #: add-to-any.php:556
174
  msgid "Open Menu Styler"
175
  msgstr "Адкрыць меню Styler"
176
 
177
+ #: add-to-any.php:561
178
  msgid "Menu Options"
179
  msgstr "Меню опцый"
180
 
181
+ #: add-to-any.php:566
182
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
183
  msgstr "Схаваць убудаваыях аб'екты (Flash, відэа і г.д.), якія перасякаюцца з меню пры адлюстраванні"
184
 
185
+ #: add-to-any.php:571
186
  msgid "Show the title of the post (or page) within the menu"
187
  msgstr "Паказаць назву запісу(альбо старонкі) без меню"
188
 
189
+ #: add-to-any.php:578
190
  msgid "Only show the menu when the user clicks the Share/Save button"
191
  msgstr " Паказваць толькі меню, калі карыстальнік клікае клавішу Адкрыць/Захаваць"
192
 
193
+ #: add-to-any.php:584
194
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
195
  msgstr "Адкрыць меню addtoany.com старонкі ў новую ўкладку або акно, калі карыстальнік націскае кнопку Адкрыць/ Захаваць \t\t \t"
196
 
197
+ #: add-to-any.php:589
198
  msgid "Additional Options"
199
  msgstr "Дадатковыя Опцыі"
200
 
201
+ #: add-to-any.php:593
202
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
203
  msgstr "Уставіць код з Дадаць у любое меню Styler у поле ніжэй!"
204
 
205
+ #: add-to-any.php:597
206
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
207
  msgstr "Ніжэй вы можаце ўсталяваць адмысловы JavaScript, які будзе ўжывацца да кожнага Адкрыць / Захаваць меню."
208
 
209
+ #: add-to-any.php:598
210
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
211
  msgstr "Дасведчаныя карыстальнікі, магчыма, пажадаюць вывучыць Дадаць у <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\"> JavaScript API </ A>."
212
 
213
+ #: add-to-any.php:604
214
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
215
  msgstr "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label><strong>Заўвага</strong> : Калі Вы дадаеце новы код, будзьце ўважлівыя і не перапішыце выпадкова любы папярэдні код."
216
 
217
+ #: add-to-any.php:611
218
  msgid "Save Changes"
219
  msgstr "Захаваць змены"
220
 
221
+ #: add-to-any.php:616
222
  msgid "Like this plugin?"
223
  msgstr "Як і гэты плагін?"
224
 
225
+ #: add-to-any.php:617
226
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
227
  msgstr ""
228
 
229
+ #: add-to-any.php:618
230
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
231
  msgstr ""
232
 
233
+ #: add-to-any.php:620
234
  msgid "Need support?"
235
  msgstr "Патрэбна падтрымка?"
236
 
237
+ #: add-to-any.php:621
238
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
239
  msgstr "Паглядзіце <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
240
 
241
+ #: add-to-any.php:622
242
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
243
  msgstr "Пошук <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
244
 
245
+ #: add-to-any.php:729
246
  msgid "Add/Remove Services"
247
  msgstr "Дадаць/Выдаліць паслугі"
248
 
249
+ #: add-to-any.php:775
250
  msgid "Share/Save"
251
  msgstr "Адкрыць/Захаваць"
252
 
253
+ #: add-to-any.php:776
254
  msgid "Share/Save Buttons"
255
  msgstr "Кнопка Адкрыць/Захаваць"
256
 
languages/add-to-any-ca.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-11-09 17:17-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Robert Buj Gelonch <robert.buj@gmail.com>\n"
8
  "Language-Team: <robert.buj@gmail.com>\n"
@@ -15,229 +15,239 @@ msgstr ""
15
  "X-Poedit-Country: SPAIN\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: add-to-any.php:208
19
  msgid "Share"
20
  msgstr "Compartir"
21
 
22
- #: add-to-any.php:209
23
  msgid "Save"
24
  msgstr "Desar"
25
 
26
- #: add-to-any.php:210
27
  msgid "Subscribe"
28
  msgstr "Subscriure's"
29
 
30
- #: add-to-any.php:211
31
  msgid "E-mail"
32
  msgstr "Correu electrònic"
33
 
34
- #: add-to-any.php:212
35
  msgid "Bookmark"
36
  msgstr "Preferit"
37
 
38
- #: add-to-any.php:213
39
  msgid "Show all"
40
  msgstr "Mostrar tots"
41
 
42
- #: add-to-any.php:214
43
  msgid "Show less"
44
  msgstr "Mostrar menys"
45
 
46
- #: add-to-any.php:215
47
  msgid "Find service(s)"
48
  msgstr "Buscar servei(s)"
49
 
50
- #: add-to-any.php:216
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:217
55
  msgid "Powered by"
56
  msgstr "Potenciat per"
57
 
58
- #: add-to-any.php:218
59
  msgid "Share via e-mail"
60
  msgstr "Compartir per correu electrònic"
61
 
62
- #: add-to-any.php:219
63
  msgid "Subscribe via e-mail"
64
  msgstr "Subscriure per correu electrònic"
65
 
66
- #: add-to-any.php:220
67
  msgid "Bookmark in your browser"
68
  msgstr "Afegir l'adreça d'interès al vostre navegador"
69
 
70
- #: add-to-any.php:221
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:222
75
  msgid "Add to your favorites"
76
  msgstr "Afegir als vostres favorits"
77
 
78
- #: add-to-any.php:223
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:224
83
  msgid "E-mail program"
84
  msgstr "Programa de correu electrònic"
85
 
86
- #: add-to-any.php:249
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:401
 
 
 
 
 
 
 
 
 
 
91
  msgid "Settings saved."
92
  msgstr "Preferències desades."
93
 
94
- #: add-to-any.php:412
95
  msgid "Add to Any: Share/Save "
96
  msgstr "Add to Any: Compartir/Desar "
97
 
98
- #: add-to-any.php:412
99
- #: add-to-any.php:772
100
- #: add-to-any.php:793
101
  msgid "Settings"
102
  msgstr "Preferències"
103
 
104
- #: add-to-any.php:422
105
  msgid "Standalone Services"
106
  msgstr "Serveis integrats"
107
 
108
- #: add-to-any.php:427
109
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
110
  msgstr "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."
111
 
112
- #: add-to-any.php:453
113
  msgid "Button"
114
  msgstr "Botó"
115
 
116
- #: add-to-any.php:492
117
  msgid "Image URL"
118
  msgstr "URL de la imatge"
119
 
120
- #: add-to-any.php:499
121
  msgid "Text only"
122
  msgstr "Només text"
123
 
124
- #: add-to-any.php:507
125
  msgid "Placement"
126
  msgstr "Emplaçament"
127
 
128
- #: add-to-any.php:516
129
  msgid "Display Share/Save button at the bottom of posts"
130
  msgstr "Mostrar el botó de Compartir/Desar sota tots els escrits"
131
 
132
- #: add-to-any.php:523
133
  msgid "Display Share/Save button at the bottom of posts on the front page"
134
  msgstr "Mostrar el botó de Compartir/Desar a la pàgina principal"
135
 
136
- #: add-to-any.php:530
137
  msgid "Display Share/Save button at the bottom of posts in the feed"
138
  msgstr "Mostrar el botó de Compartir/Desar sota tots els escrits al feed"
139
 
140
- #: add-to-any.php:534
141
  msgid "Display Share/Save button at the bottom of pages"
142
  msgstr "Mostrar el botó de Compartir/Desar sota les pàgines"
143
 
144
- #: add-to-any.php:538
145
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
146
  msgstr "Si no està 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>)"
147
 
148
- #: add-to-any.php:547
149
  msgid "Menu Style"
150
  msgstr "Estil del menú"
151
 
152
- #: add-to-any.php:549
153
  msgid "Using Add to Any's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
154
  msgstr "Utilitzant el personalitzador d'estil de Add to Any, vostè pot personalitzar els colors del vostre menú Compartir/Desar! Quan hageu acabat, heu de copiar el codi generat al recuadre d'<a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">opcions adicionals</a> de sota."
155
 
156
- #: add-to-any.php:551
157
  msgid "Open the Add to Any Menu Styler in a new window"
158
  msgstr "Obrir el personalitzador d'estil de Add to Any a una nova finestra"
159
 
160
- #: add-to-any.php:553
161
  msgid "Open Menu Styler"
162
  msgstr "Obrir el personalitzador d'estils"
163
 
164
- #: add-to-any.php:558
165
  msgid "Menu Options"
166
  msgstr "Opcions del menú"
167
 
168
- #: add-to-any.php:563
169
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
170
  msgstr "Amagar objectes incrustats (Flash, vídeo, etc) que interseccionin amb el menú quan aquest aparegui"
171
 
172
- #: add-to-any.php:568
173
  msgid "Show the title of the post (or page) within the menu"
174
  msgstr "Mostrar el títol de l'entrada (o de la pàgina) dins del menú"
175
 
176
- #: add-to-any.php:575
177
  msgid "Only show the menu when the user clicks the Share/Save button"
178
  msgstr "Mostrar el menú solament quan un usuari cliqui sobre el botó Compartir/Desar"
179
 
180
- #: add-to-any.php:581
181
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
182
  msgstr "Obrir el menú de addtoany.com en una nova pestanya o finestra si l'usuari clica al botó Compartir/Desar"
183
 
184
- #: add-to-any.php:586
185
  msgid "Additional Options"
186
  msgstr "Opcions addicionals"
187
 
188
- #: add-to-any.php:590
189
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
190
  msgstr "Enganxeu el codi del personalitzador d'estil al següent requadre!"
191
 
192
- #: add-to-any.php:594
193
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
194
  msgstr "A continuació, podeu establir variables especials de JavaScript per aplicar a cada menú Compartir/Desar."
195
 
196
- #: add-to-any.php:595
197
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
198
  msgstr "Els usuaris avançats poden preferir explorar l'<a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">API JavaScript</a> de Add to Any."
199
 
200
- #: add-to-any.php:601
201
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
202
  msgstr "<strong>Nota</strong>: Si heu d'afegir un nou codi, tingueu cura de no sobreescriure accidentalment qualsevol codi anterior.</label>"
203
 
204
- #: add-to-any.php:608
205
  msgid "Save Changes"
206
  msgstr "Desar els canvis"
207
 
208
- #: add-to-any.php:613
209
  msgid "Like this plugin?"
210
  msgstr "Com aquesta extensió?"
211
 
212
- #: add-to-any.php:614
213
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
214
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Doneu-li una bona qualificació</a> a WordPress.org."
215
 
216
- #: add-to-any.php:615
217
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
218
  msgstr "<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."
219
 
220
- #: add-to-any.php:617
221
  msgid "Need support?"
222
  msgstr "Necessiteu suport?"
223
 
224
- #: add-to-any.php:618
225
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
226
  msgstr "Vegeu les <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">Preguntes més freqüents</a>."
227
 
228
- #: add-to-any.php:619
229
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
230
  msgstr "Cercar als <a href=\"http://wordpress.org/tags/add-to-any\">fòrums de suport</a>."
231
 
232
- #: add-to-any.php:726
233
  msgid "Add/Remove Services"
234
  msgstr "Serveis Compartir/Desar"
235
 
236
- #: add-to-any.php:772
237
  msgid "Share/Save"
238
  msgstr "Compartir/Desar"
239
 
240
- #: add-to-any.php:773
241
  msgid "Share/Save Buttons"
242
  msgstr "Botons de Compartir/Desar"
243
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-12-18 00:13-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Robert Buj Gelonch <robert.buj@gmail.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:211
19
  msgid "Share"
20
  msgstr "Compartir"
21
 
22
+ #: add-to-any.php:212
23
  msgid "Save"
24
  msgstr "Desar"
25
 
26
+ #: add-to-any.php:213
27
  msgid "Subscribe"
28
  msgstr "Subscriure's"
29
 
30
+ #: add-to-any.php:214
31
  msgid "E-mail"
32
  msgstr "Correu electrònic"
33
 
34
+ #: add-to-any.php:215
35
  msgid "Bookmark"
36
  msgstr "Preferit"
37
 
38
+ #: add-to-any.php:216
39
  msgid "Show all"
40
  msgstr "Mostrar tots"
41
 
42
+ #: add-to-any.php:217
43
  msgid "Show less"
44
  msgstr "Mostrar menys"
45
 
46
+ #: add-to-any.php:218
47
  msgid "Find service(s)"
48
  msgstr "Buscar servei(s)"
49
 
50
+ #: add-to-any.php:219
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:220
55
  msgid "Powered by"
56
  msgstr "Potenciat per"
57
 
58
+ #: add-to-any.php:221
59
  msgid "Share via e-mail"
60
  msgstr "Compartir per correu electrònic"
61
 
62
+ #: add-to-any.php:222
63
  msgid "Subscribe via e-mail"
64
  msgstr "Subscriure per correu electrònic"
65
 
66
+ #: add-to-any.php:223
67
  msgid "Bookmark in your browser"
68
  msgstr "Afegir l'adreça d'interès al vostre navegador"
69
 
70
+ #: add-to-any.php:224
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:225
75
  msgid "Add to your favorites"
76
  msgstr "Afegir als vostres favorits"
77
 
78
+ #: add-to-any.php:226
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:227
83
  msgid "E-mail program"
84
  msgstr "Programa de correu electrònic"
85
 
86
+ #: add-to-any.php:252
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:390
91
+ #: add-to-any.php:461
92
+ #: add-to-any.php:465
93
+ #: add-to-any.php:469
94
+ #: add-to-any.php:473
95
+ #: add-to-any.php:505
96
+ #, fuzzy
97
+ msgid "Share/Bookmark"
98
+ msgstr "Preferit"
99
+
100
+ #: add-to-any.php:404
101
  msgid "Settings saved."
102
  msgstr "Preferències desades."
103
 
104
+ #: add-to-any.php:415
105
  msgid "Add to Any: Share/Save "
106
  msgstr "Add to Any: Compartir/Desar "
107
 
108
+ #: add-to-any.php:415
109
+ #: add-to-any.php:775
110
+ #: add-to-any.php:796
111
  msgid "Settings"
112
  msgstr "Preferències"
113
 
114
+ #: add-to-any.php:425
115
  msgid "Standalone Services"
116
  msgstr "Serveis integrats"
117
 
118
+ #: add-to-any.php:430
119
  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."
120
  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."
121
 
122
+ #: add-to-any.php:456
123
  msgid "Button"
124
  msgstr "Botó"
125
 
126
+ #: add-to-any.php:495
127
  msgid "Image URL"
128
  msgstr "URL de la imatge"
129
 
130
+ #: add-to-any.php:502
131
  msgid "Text only"
132
  msgstr "Només text"
133
 
134
+ #: add-to-any.php:510
135
  msgid "Placement"
136
  msgstr "Emplaçament"
137
 
138
+ #: add-to-any.php:519
139
  msgid "Display Share/Save button at the bottom of posts"
140
  msgstr "Mostrar el botó de Compartir/Desar sota tots els escrits"
141
 
142
+ #: add-to-any.php:526
143
  msgid "Display Share/Save button at the bottom of posts on the front page"
144
  msgstr "Mostrar el botó de Compartir/Desar a la pàgina principal"
145
 
146
+ #: add-to-any.php:533
147
  msgid "Display Share/Save button at the bottom of posts in the feed"
148
  msgstr "Mostrar el botó de Compartir/Desar sota tots els escrits al feed"
149
 
150
+ #: add-to-any.php:537
151
  msgid "Display Share/Save button at the bottom of pages"
152
  msgstr "Mostrar el botó de Compartir/Desar sota les pàgines"
153
 
154
+ #: add-to-any.php:541
155
  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>)"
156
  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>)"
157
 
158
+ #: add-to-any.php:550
159
  msgid "Menu Style"
160
  msgstr "Estil del menú"
161
 
162
+ #: add-to-any.php:552
163
  msgid "Using Add to Any's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
164
  msgstr "Utilitzant el personalitzador d'estil de Add to Any, vostè pot personalitzar els colors del vostre menú Compartir/Desar! Quan hageu acabat, heu de copiar el codi generat al recuadre d'<a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">opcions adicionals</a> de sota."
165
 
166
+ #: add-to-any.php:554
167
  msgid "Open the Add to Any Menu Styler in a new window"
168
  msgstr "Obrir el personalitzador d'estil de Add to Any a una nova finestra"
169
 
170
+ #: add-to-any.php:556
171
  msgid "Open Menu Styler"
172
  msgstr "Obrir el personalitzador d'estils"
173
 
174
+ #: add-to-any.php:561
175
  msgid "Menu Options"
176
  msgstr "Opcions del menú"
177
 
178
+ #: add-to-any.php:566
179
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
180
  msgstr "Amagar objectes incrustats (Flash, vídeo, etc) que interseccionin amb el menú quan aquest aparegui"
181
 
182
+ #: add-to-any.php:571
183
  msgid "Show the title of the post (or page) within the menu"
184
  msgstr "Mostrar el títol de l'entrada (o de la pàgina) dins del menú"
185
 
186
+ #: add-to-any.php:578
187
  msgid "Only show the menu when the user clicks the Share/Save button"
188
  msgstr "Mostrar el menú solament quan un usuari cliqui sobre el botó Compartir/Desar"
189
 
190
+ #: add-to-any.php:584
191
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
192
  msgstr "Obrir el menú de addtoany.com en una nova pestanya o finestra si l'usuari clica al botó Compartir/Desar"
193
 
194
+ #: add-to-any.php:589
195
  msgid "Additional Options"
196
  msgstr "Opcions addicionals"
197
 
198
+ #: add-to-any.php:593
199
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
200
  msgstr "Enganxeu el codi del personalitzador d'estil al següent requadre!"
201
 
202
+ #: add-to-any.php:597
203
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
204
  msgstr "A continuació, podeu establir variables especials de JavaScript per aplicar a cada menú Compartir/Desar."
205
 
206
+ #: add-to-any.php:598
207
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
208
  msgstr "Els usuaris avançats poden preferir explorar l'<a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">API JavaScript</a> de Add to Any."
209
 
210
+ #: add-to-any.php:604
211
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
212
  msgstr "<strong>Nota</strong>: Si heu d'afegir un nou codi, tingueu cura de no sobreescriure accidentalment qualsevol codi anterior.</label>"
213
 
214
+ #: add-to-any.php:611
215
  msgid "Save Changes"
216
  msgstr "Desar els canvis"
217
 
218
+ #: add-to-any.php:616
219
  msgid "Like this plugin?"
220
  msgstr "Com aquesta extensió?"
221
 
222
+ #: add-to-any.php:617
223
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
224
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Doneu-li una bona qualificació</a> a WordPress.org."
225
 
226
+ #: add-to-any.php:618
227
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
228
  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."
229
 
230
+ #: add-to-any.php:620
231
  msgid "Need support?"
232
  msgstr "Necessiteu suport?"
233
 
234
+ #: add-to-any.php:621
235
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
236
  msgstr "Vegeu les <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">Preguntes més freqüents</a>."
237
 
238
+ #: add-to-any.php:622
239
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
240
  msgstr "Cercar als <a href=\"http://wordpress.org/tags/add-to-any\">fòrums de suport</a>."
241
 
242
+ #: add-to-any.php:729
243
  msgid "Add/Remove Services"
244
  msgstr "Serveis Compartir/Desar"
245
 
246
+ #: add-to-any.php:775
247
  msgid "Share/Save"
248
  msgstr "Compartir/Desar"
249
 
250
+ #: add-to-any.php:776
251
  msgid "Share/Save Buttons"
252
  msgstr "Botons de Compartir/Desar"
253
 
languages/add-to-any-da_DK.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Add to Any Share/Save/Bookmark .9.8.9.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-11-09 17:17-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: Team Blogos <wordpress@blogos.dk>\n"
@@ -17,232 +17,242 @@ msgstr ""
17
  "X-Poedit-SourceCharset: utf-8\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: add-to-any.php:208
21
  msgid "Share"
22
  msgstr "Del"
23
 
24
- #: add-to-any.php:209
25
  msgid "Save"
26
  msgstr "Gem"
27
 
28
- #: add-to-any.php:210
29
  msgid "Subscribe"
30
  msgstr "Subskribér"
31
 
32
- #: add-to-any.php:211
33
  msgid "E-mail"
34
  msgstr "E-mail"
35
 
36
- #: add-to-any.php:212
37
  msgid "Bookmark"
38
  msgstr "Bogmærk"
39
 
40
- #: add-to-any.php:213
41
  msgid "Show all"
42
  msgstr "Vis alle"
43
 
44
- #: add-to-any.php:214
45
  msgid "Show less"
46
  msgstr "Vis mindre"
47
 
48
- #: add-to-any.php:215
49
  msgid "Find service(s)"
50
  msgstr "Find service(s)"
51
 
52
- #: add-to-any.php:216
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:217
57
  msgid "Powered by"
58
  msgstr "Kører på"
59
 
60
- #: add-to-any.php:218
61
  msgid "Share via e-mail"
62
  msgstr "Del via e-mail"
63
 
64
- #: add-to-any.php:219
65
  msgid "Subscribe via e-mail"
66
  msgstr "Subskribér via e-mail"
67
 
68
- #: add-to-any.php:220
69
  msgid "Bookmark in your browser"
70
  msgstr "Bogmærk i din browswer"
71
 
72
- #: add-to-any.php:221
73
  #, fuzzy
74
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
75
  msgstr "Press Ctrl-D eller Cmd-D for at bogmærke denne side"
76
 
77
- #: add-to-any.php:222
78
  msgid "Add to your favorites"
79
  msgstr "Tilføj til dine favoritter"
80
 
81
- #: add-to-any.php:223
82
  msgid "Send from any e-mail address or e-mail program"
83
  msgstr "Send fra enhver e-mail-adreses eller e-mail-program"
84
 
85
- #: add-to-any.php:224
86
  msgid "E-mail program"
87
  msgstr "E-mail-program"
88
 
89
- #: add-to-any.php:249
90
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
91
  msgstr "Dit tema skal repareres. For at gøre det skal du bruge <a href=\"theme-editor.php\">temaeditoren</a> til at indsætte koden <code>&lt;?php wp_footer(); ?&gt;</code> lige før <code>&lt;/body&gt;</code>-linjen i dit temas <code>footer.php</code>-fil."
92
 
93
- #: add-to-any.php:401
 
 
 
 
 
 
 
 
 
 
94
  msgid "Settings saved."
95
  msgstr "Indstillinger gemt"
96
 
97
- #: add-to-any.php:412
98
  msgid "Add to Any: Share/Save "
99
  msgstr "Tilføj til enhver: Del/gem"
100
 
101
- #: add-to-any.php:412
102
- #: add-to-any.php:772
103
- #: add-to-any.php:793
104
  msgid "Settings"
105
  msgstr "Indstillinger"
106
 
107
- #: add-to-any.php:422
108
  #, fuzzy
109
  msgid "Standalone Services"
110
  msgstr "Tilføj/fjern tjenesteudbydere"
111
 
112
- #: add-to-any.php:427
113
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
114
  msgstr "Vælg de tjenesteudbydere, du ønsker. Klik på en tjenesteudbyder, du har valgt, for at fjerne den igen. Du kan ændre rækkefølgen ved at trække og slippe, sådan som du ser dem ovenfor (når de er valgt)."
115
 
116
- #: add-to-any.php:453
117
  msgid "Button"
118
  msgstr "Knap"
119
 
120
- #: add-to-any.php:492
121
  msgid "Image URL"
122
  msgstr "Billed-URL"
123
 
124
- #: add-to-any.php:499
125
  msgid "Text only"
126
  msgstr "Kun tekst"
127
 
128
- #: add-to-any.php:507
129
  msgid "Placement"
130
  msgstr "Placering"
131
 
132
- #: add-to-any.php:516
133
  msgid "Display Share/Save button at the bottom of posts"
134
  msgstr "Vis Del-/Gem-knap i bunden af indlæg"
135
 
136
- #: add-to-any.php:523
137
  msgid "Display Share/Save button at the bottom of posts on the front page"
138
  msgstr "Vis Del-/Gem-knap i bunden af indlæg på forsiden"
139
 
140
- #: add-to-any.php:530
141
  msgid "Display Share/Save button at the bottom of posts in the feed"
142
  msgstr "Vis Del-/Gem-knap i bunden af indlæg i feeds"
143
 
144
- #: add-to-any.php:534
145
  msgid "Display Share/Save button at the bottom of pages"
146
  msgstr "Vis Del-/Gem-knap i bunden af sider"
147
 
148
- #: add-to-any.php:538
149
  #, fuzzy
150
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
151
  msgstr "Hvis du ikke vælger dette, skal du sørge for at placere den følgende kode i <a href=\"theme-editor.php\">dine skabelonsider</a> (i <code>index.php</code>, <code>single.php</code>, og/eller <code>page.php</code>)"
152
 
153
- #: add-to-any.php:547
154
  msgid "Menu Style"
155
  msgstr "Menutypografi"
156
 
157
- #: add-to-any.php:549
158
  msgid "Using Add to Any's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
159
  msgstr "Ved at bruge Add to Any's menutypograf, kan du tilpasse farverne på din Del-/Gem-menu! Når du er færdig, skal du sørge for at indsætte den genererede kode i <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Yderligere indstillinger</a>-boksen nedenfor."
160
 
161
- #: add-to-any.php:551
162
  msgid "Open the Add to Any Menu Styler in a new window"
163
  msgstr "Åben Add to Any's menutypograf i et nyt vindue"
164
 
165
- #: add-to-any.php:553
166
  msgid "Open Menu Styler"
167
  msgstr "Åben menutypografen"
168
 
169
- #: add-to-any.php:558
170
  msgid "Menu Options"
171
  msgstr "Menuvalgmuligheder"
172
 
173
- #: add-to-any.php:563
174
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
175
  msgstr "Skjul indlejrede objekter (flash, video, osv.) som kan påvirke menuen, når den vises"
176
 
177
- #: add-to-any.php:568
178
  msgid "Show the title of the post (or page) within the menu"
179
  msgstr "Vis titlen på indlægget (eller siden) i menuen"
180
 
181
- #: add-to-any.php:575
182
  msgid "Only show the menu when the user clicks the Share/Save button"
183
  msgstr "Vis kun menuen når bruger klikker på Del-/Gem-knappen"
184
 
185
- #: add-to-any.php:581
186
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
187
  msgstr "Åben menusiden på addtoany.com i en ny fane eller vindue hvis brugeren klikker på Del-/Gem-knappen"
188
 
189
- #: add-to-any.php:586
190
  msgid "Additional Options"
191
  msgstr "Yderligere indstillinger"
192
 
193
- #: add-to-any.php:590
194
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
195
  msgstr "Indsæt koden fra Add to Any's menutypograf i boksen nedenfor!"
196
 
197
- #: add-to-any.php:594
198
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
199
  msgstr "Nedenfor kan du angive specielle JavaScript-variabler, som skal bruges på din Del-/Gem-menu."
200
 
201
- #: add-to-any.php:595
202
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
203
  msgstr "Avancerede brugere kan se nærmere på Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
204
 
205
- #: add-to-any.php:601
206
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
207
  msgstr "<strong>Bemærk</strong>: Hvis du tilføjer ny kode, så vær forsigtig, så du ikke ved et uheld overskriver eksisterende kode."
208
 
209
- #: add-to-any.php:608
210
  msgid "Save Changes"
211
  msgstr "Gem ændringer"
212
 
213
- #: add-to-any.php:613
214
  msgid "Like this plugin?"
215
  msgstr "Kan du lide dette plugin?"
216
 
217
- #: add-to-any.php:614
218
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
219
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Giv det en god bedømmelse </a>på WordPress.org."
220
 
221
- #: add-to-any.php:615
222
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
223
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Del det</a> med dine venner."
224
 
225
- #: add-to-any.php:617
226
  msgid "Need support?"
227
  msgstr "Har du brug for support?"
228
 
229
- #: add-to-any.php:618
230
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
231
  msgstr "Se vores <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ (Ofte Stillede Spørgsmål)</a>."
232
 
233
- #: add-to-any.php:619
234
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
235
  msgstr "Søg på <a href=\"http://wordpress.org/tags/add-to-any\">supportforummerne</a>."
236
 
237
- #: add-to-any.php:726
238
  msgid "Add/Remove Services"
239
  msgstr "Tilføj/fjern tjenesteudbydere"
240
 
241
- #: add-to-any.php:772
242
  msgid "Share/Save"
243
  msgstr "Del/Gem"
244
 
245
- #: add-to-any.php:773
246
  msgid "Share/Save Buttons"
247
  msgstr "Del-/Gem-knapper"
248
 
2
  msgstr ""
3
  "Project-Id-Version: Add to Any Share/Save/Bookmark .9.8.9.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-12-18 00:13-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: Team Blogos <wordpress@blogos.dk>\n"
17
  "X-Poedit-SourceCharset: utf-8\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: add-to-any.php:211
21
  msgid "Share"
22
  msgstr "Del"
23
 
24
+ #: add-to-any.php:212
25
  msgid "Save"
26
  msgstr "Gem"
27
 
28
+ #: add-to-any.php:213
29
  msgid "Subscribe"
30
  msgstr "Subskribér"
31
 
32
+ #: add-to-any.php:214
33
  msgid "E-mail"
34
  msgstr "E-mail"
35
 
36
+ #: add-to-any.php:215
37
  msgid "Bookmark"
38
  msgstr "Bogmærk"
39
 
40
+ #: add-to-any.php:216
41
  msgid "Show all"
42
  msgstr "Vis alle"
43
 
44
+ #: add-to-any.php:217
45
  msgid "Show less"
46
  msgstr "Vis mindre"
47
 
48
+ #: add-to-any.php:218
49
  msgid "Find service(s)"
50
  msgstr "Find service(s)"
51
 
52
+ #: add-to-any.php:219
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:220
57
  msgid "Powered by"
58
  msgstr "Kører på"
59
 
60
+ #: add-to-any.php:221
61
  msgid "Share via e-mail"
62
  msgstr "Del via e-mail"
63
 
64
+ #: add-to-any.php:222
65
  msgid "Subscribe via e-mail"
66
  msgstr "Subskribér via e-mail"
67
 
68
+ #: add-to-any.php:223
69
  msgid "Bookmark in your browser"
70
  msgstr "Bogmærk i din browswer"
71
 
72
+ #: add-to-any.php:224
73
  #, fuzzy
74
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
75
  msgstr "Press Ctrl-D eller Cmd-D for at bogmærke denne side"
76
 
77
+ #: add-to-any.php:225
78
  msgid "Add to your favorites"
79
  msgstr "Tilføj til dine favoritter"
80
 
81
+ #: add-to-any.php:226
82
  msgid "Send from any e-mail address or e-mail program"
83
  msgstr "Send fra enhver e-mail-adreses eller e-mail-program"
84
 
85
+ #: add-to-any.php:227
86
  msgid "E-mail program"
87
  msgstr "E-mail-program"
88
 
89
+ #: add-to-any.php:252
90
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
91
  msgstr "Dit tema skal repareres. For at gøre det skal du bruge <a href=\"theme-editor.php\">temaeditoren</a> til at indsætte koden <code>&lt;?php wp_footer(); ?&gt;</code> lige før <code>&lt;/body&gt;</code>-linjen i dit temas <code>footer.php</code>-fil."
92
 
93
+ #: add-to-any.php:390
94
+ #: add-to-any.php:461
95
+ #: add-to-any.php:465
96
+ #: add-to-any.php:469
97
+ #: add-to-any.php:473
98
+ #: add-to-any.php:505
99
+ #, fuzzy
100
+ msgid "Share/Bookmark"
101
+ msgstr "Bogmærk"
102
+
103
+ #: add-to-any.php:404
104
  msgid "Settings saved."
105
  msgstr "Indstillinger gemt"
106
 
107
+ #: add-to-any.php:415
108
  msgid "Add to Any: Share/Save "
109
  msgstr "Tilføj til enhver: Del/gem"
110
 
111
+ #: add-to-any.php:415
112
+ #: add-to-any.php:775
113
+ #: add-to-any.php:796
114
  msgid "Settings"
115
  msgstr "Indstillinger"
116
 
117
+ #: add-to-any.php:425
118
  #, fuzzy
119
  msgid "Standalone Services"
120
  msgstr "Tilføj/fjern tjenesteudbydere"
121
 
122
+ #: add-to-any.php:430
123
  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."
124
  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)."
125
 
126
+ #: add-to-any.php:456
127
  msgid "Button"
128
  msgstr "Knap"
129
 
130
+ #: add-to-any.php:495
131
  msgid "Image URL"
132
  msgstr "Billed-URL"
133
 
134
+ #: add-to-any.php:502
135
  msgid "Text only"
136
  msgstr "Kun tekst"
137
 
138
+ #: add-to-any.php:510
139
  msgid "Placement"
140
  msgstr "Placering"
141
 
142
+ #: add-to-any.php:519
143
  msgid "Display Share/Save button at the bottom of posts"
144
  msgstr "Vis Del-/Gem-knap i bunden af indlæg"
145
 
146
+ #: add-to-any.php:526
147
  msgid "Display Share/Save button at the bottom of posts on the front page"
148
  msgstr "Vis Del-/Gem-knap i bunden af indlæg på forsiden"
149
 
150
+ #: add-to-any.php:533
151
  msgid "Display Share/Save button at the bottom of posts in the feed"
152
  msgstr "Vis Del-/Gem-knap i bunden af indlæg i feeds"
153
 
154
+ #: add-to-any.php:537
155
  msgid "Display Share/Save button at the bottom of pages"
156
  msgstr "Vis Del-/Gem-knap i bunden af sider"
157
 
158
+ #: add-to-any.php:541
159
  #, fuzzy
160
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
161
  msgstr "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>)"
162
 
163
+ #: add-to-any.php:550
164
  msgid "Menu Style"
165
  msgstr "Menutypografi"
166
 
167
+ #: add-to-any.php:552
168
  msgid "Using Add to Any's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
169
  msgstr "Ved at bruge Add to Any's menutypograf, kan du tilpasse farverne på din Del-/Gem-menu! Når du er færdig, skal du sørge for at indsætte den genererede kode i <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Yderligere indstillinger</a>-boksen nedenfor."
170
 
171
+ #: add-to-any.php:554
172
  msgid "Open the Add to Any Menu Styler in a new window"
173
  msgstr "Åben Add to Any's menutypograf i et nyt vindue"
174
 
175
+ #: add-to-any.php:556
176
  msgid "Open Menu Styler"
177
  msgstr "Åben menutypografen"
178
 
179
+ #: add-to-any.php:561
180
  msgid "Menu Options"
181
  msgstr "Menuvalgmuligheder"
182
 
183
+ #: add-to-any.php:566
184
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
185
  msgstr "Skjul indlejrede objekter (flash, video, osv.) som kan påvirke menuen, når den vises"
186
 
187
+ #: add-to-any.php:571
188
  msgid "Show the title of the post (or page) within the menu"
189
  msgstr "Vis titlen på indlægget (eller siden) i menuen"
190
 
191
+ #: add-to-any.php:578
192
  msgid "Only show the menu when the user clicks the Share/Save button"
193
  msgstr "Vis kun menuen når bruger klikker på Del-/Gem-knappen"
194
 
195
+ #: add-to-any.php:584
196
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
197
  msgstr "Åben menusiden på addtoany.com i en ny fane eller vindue hvis brugeren klikker på Del-/Gem-knappen"
198
 
199
+ #: add-to-any.php:589
200
  msgid "Additional Options"
201
  msgstr "Yderligere indstillinger"
202
 
203
+ #: add-to-any.php:593
204
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
205
  msgstr "Indsæt koden fra Add to Any's menutypograf i boksen nedenfor!"
206
 
207
+ #: add-to-any.php:597
208
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
209
  msgstr "Nedenfor kan du angive specielle JavaScript-variabler, som skal bruges på din Del-/Gem-menu."
210
 
211
+ #: add-to-any.php:598
212
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
213
  msgstr "Avancerede brugere kan se nærmere på Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
214
 
215
+ #: add-to-any.php:604
216
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
217
  msgstr "<strong>Bemærk</strong>: Hvis du tilføjer ny kode, så vær forsigtig, så du ikke ved et uheld overskriver eksisterende kode."
218
 
219
+ #: add-to-any.php:611
220
  msgid "Save Changes"
221
  msgstr "Gem ændringer"
222
 
223
+ #: add-to-any.php:616
224
  msgid "Like this plugin?"
225
  msgstr "Kan du lide dette plugin?"
226
 
227
+ #: add-to-any.php:617
228
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
229
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Giv det en god bedømmelse </a>på WordPress.org."
230
 
231
+ #: add-to-any.php:618
232
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
233
  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."
234
 
235
+ #: add-to-any.php:620
236
  msgid "Need support?"
237
  msgstr "Har du brug for support?"
238
 
239
+ #: add-to-any.php:621
240
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
241
  msgstr "Se vores <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ (Ofte Stillede Spørgsmål)</a>."
242
 
243
+ #: add-to-any.php:622
244
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
245
  msgstr "Søg på <a href=\"http://wordpress.org/tags/add-to-any\">supportforummerne</a>."
246
 
247
+ #: add-to-any.php:729
248
  msgid "Add/Remove Services"
249
  msgstr "Tilføj/fjern tjenesteudbydere"
250
 
251
+ #: add-to-any.php:775
252
  msgid "Share/Save"
253
  msgstr "Del/Gem"
254
 
255
+ #: add-to-any.php:776
256
  msgid "Share/Save Buttons"
257
  msgstr "Del-/Gem-knapper"
258
 
languages/add-to-any-de.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-11-09 17:17-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: \n"
@@ -13,230 +13,239 @@ msgstr ""
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: add-to-any.php:208
17
  msgid "Share"
18
  msgstr ""
19
 
20
- #: add-to-any.php:209
21
  msgid "Save"
22
  msgstr ""
23
 
24
- #: add-to-any.php:210
25
  msgid "Subscribe"
26
  msgstr ""
27
 
28
- #: add-to-any.php:211
29
  msgid "E-mail"
30
  msgstr ""
31
 
32
- #: add-to-any.php:212
33
  msgid "Bookmark"
34
  msgstr ""
35
 
36
- #: add-to-any.php:213
37
  msgid "Show all"
38
  msgstr "Alle anzeigen"
39
 
40
- #: add-to-any.php:214
41
  msgid "Show less"
42
  msgstr ""
43
 
44
- #: add-to-any.php:215
45
  msgid "Find service(s)"
46
  msgstr "Dienst(e) suchen"
47
 
48
- #: add-to-any.php:216
49
  msgid "Instantly find any service to add to"
50
  msgstr ""
51
 
52
- #: add-to-any.php:217
53
  msgid "Powered by"
54
  msgstr ""
55
 
56
- #: add-to-any.php:218
57
  msgid "Share via e-mail"
58
  msgstr ""
59
 
60
- #: add-to-any.php:219
61
  msgid "Subscribe via e-mail"
62
  msgstr ""
63
 
64
- #: add-to-any.php:220
65
  msgid "Bookmark in your browser"
66
  msgstr ""
67
 
68
- #: add-to-any.php:221
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:222
74
  msgid "Add to your favorites"
75
  msgstr ""
76
 
77
- #: add-to-any.php:223
78
  msgid "Send from any e-mail address or e-mail program"
79
  msgstr ""
80
 
81
- #: add-to-any.php:224
82
  msgid "E-mail program"
83
  msgstr ""
84
 
85
- #: add-to-any.php:249
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:401
 
 
 
 
 
 
 
 
 
90
  msgid "Settings saved."
91
  msgstr ""
92
 
93
- #: add-to-any.php:412
94
  msgid "Add to Any: Share/Save "
95
  msgstr ""
96
 
97
- #: add-to-any.php:412
98
- #: add-to-any.php:772
99
- #: add-to-any.php:793
100
  msgid "Settings"
101
  msgstr ""
102
 
103
- #: add-to-any.php:422
104
  msgid "Standalone Services"
105
  msgstr ""
106
 
107
- #: add-to-any.php:427
108
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
109
  msgstr ""
110
 
111
- #: add-to-any.php:453
112
  msgid "Button"
113
  msgstr ""
114
 
115
- #: add-to-any.php:492
116
  msgid "Image URL"
117
  msgstr ""
118
 
119
- #: add-to-any.php:499
120
  msgid "Text only"
121
  msgstr ""
122
 
123
- #: add-to-any.php:507
124
  msgid "Placement"
125
  msgstr ""
126
 
127
- #: add-to-any.php:516
128
  msgid "Display Share/Save button at the bottom of posts"
129
  msgstr ""
130
 
131
- #: add-to-any.php:523
132
  msgid "Display Share/Save button at the bottom of posts on the front page"
133
  msgstr ""
134
 
135
- #: add-to-any.php:530
136
  msgid "Display Share/Save button at the bottom of posts in the feed"
137
  msgstr ""
138
 
139
- #: add-to-any.php:534
140
  msgid "Display Share/Save button at the bottom of pages"
141
  msgstr ""
142
 
143
- #: add-to-any.php:538
144
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
145
  msgstr ""
146
 
147
- #: add-to-any.php:547
148
  msgid "Menu Style"
149
  msgstr ""
150
 
151
- #: add-to-any.php:549
152
  msgid "Using Add to Any's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
153
  msgstr ""
154
 
155
- #: add-to-any.php:551
156
  msgid "Open the Add to Any Menu Styler in a new window"
157
  msgstr ""
158
 
159
- #: add-to-any.php:553
160
  msgid "Open Menu Styler"
161
  msgstr ""
162
 
163
- #: add-to-any.php:558
164
  msgid "Menu Options"
165
  msgstr ""
166
 
167
- #: add-to-any.php:563
168
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
169
  msgstr ""
170
 
171
- #: add-to-any.php:568
172
  msgid "Show the title of the post (or page) within the menu"
173
  msgstr ""
174
 
175
- #: add-to-any.php:575
176
  msgid "Only show the menu when the user clicks the Share/Save button"
177
  msgstr ""
178
 
179
- #: add-to-any.php:581
180
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
181
  msgstr ""
182
 
183
- #: add-to-any.php:586
184
  msgid "Additional Options"
185
  msgstr ""
186
 
187
- #: add-to-any.php:590
188
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
189
  msgstr ""
190
 
191
- #: add-to-any.php:594
192
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
193
  msgstr ""
194
 
195
- #: add-to-any.php:595
196
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
197
  msgstr ""
198
 
199
- #: add-to-any.php:601
200
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
201
  msgstr ""
202
 
203
- #: add-to-any.php:608
204
  msgid "Save Changes"
205
  msgstr ""
206
 
207
- #: add-to-any.php:613
208
  msgid "Like this plugin?"
209
  msgstr ""
210
 
211
- #: add-to-any.php:614
212
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
213
  msgstr ""
214
 
215
- #: add-to-any.php:615
216
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
217
  msgstr ""
218
 
219
- #: add-to-any.php:617
220
  msgid "Need support?"
221
  msgstr ""
222
 
223
- #: add-to-any.php:618
224
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
225
  msgstr ""
226
 
227
- #: add-to-any.php:619
228
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
229
  msgstr ""
230
 
231
- #: add-to-any.php:726
232
  msgid "Add/Remove Services"
233
  msgstr ""
234
 
235
- #: add-to-any.php:772
236
  msgid "Share/Save"
237
  msgstr ""
238
 
239
- #: add-to-any.php:773
240
  msgid "Share/Save Buttons"
241
  msgstr ""
242
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-12-18 00:13-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: \n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
+ #: add-to-any.php:211
17
  msgid "Share"
18
  msgstr ""
19
 
20
+ #: add-to-any.php:212
21
  msgid "Save"
22
  msgstr ""
23
 
24
+ #: add-to-any.php:213
25
  msgid "Subscribe"
26
  msgstr ""
27
 
28
+ #: add-to-any.php:214
29
  msgid "E-mail"
30
  msgstr ""
31
 
32
+ #: add-to-any.php:215
33
  msgid "Bookmark"
34
  msgstr ""
35
 
36
+ #: add-to-any.php:216
37
  msgid "Show all"
38
  msgstr "Alle anzeigen"
39
 
40
+ #: add-to-any.php:217
41
  msgid "Show less"
42
  msgstr ""
43
 
44
+ #: add-to-any.php:218
45
  msgid "Find service(s)"
46
  msgstr "Dienst(e) suchen"
47
 
48
+ #: add-to-any.php:219
49
  msgid "Instantly find any service to add to"
50
  msgstr ""
51
 
52
+ #: add-to-any.php:220
53
  msgid "Powered by"
54
  msgstr ""
55
 
56
+ #: add-to-any.php:221
57
  msgid "Share via e-mail"
58
  msgstr ""
59
 
60
+ #: add-to-any.php:222
61
  msgid "Subscribe via e-mail"
62
  msgstr ""
63
 
64
+ #: add-to-any.php:223
65
  msgid "Bookmark in your browser"
66
  msgstr ""
67
 
68
+ #: add-to-any.php:224
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:225
74
  msgid "Add to your favorites"
75
  msgstr ""
76
 
77
+ #: add-to-any.php:226
78
  msgid "Send from any e-mail address or e-mail program"
79
  msgstr ""
80
 
81
+ #: add-to-any.php:227
82
  msgid "E-mail program"
83
  msgstr ""
84
 
85
+ #: add-to-any.php:252
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:390
90
+ #: add-to-any.php:461
91
+ #: add-to-any.php:465
92
+ #: add-to-any.php:469
93
+ #: add-to-any.php:473
94
+ #: add-to-any.php:505
95
+ msgid "Share/Bookmark"
96
+ msgstr ""
97
+
98
+ #: add-to-any.php:404
99
  msgid "Settings saved."
100
  msgstr ""
101
 
102
+ #: add-to-any.php:415
103
  msgid "Add to Any: Share/Save "
104
  msgstr ""
105
 
106
+ #: add-to-any.php:415
107
+ #: add-to-any.php:775
108
+ #: add-to-any.php:796
109
  msgid "Settings"
110
  msgstr ""
111
 
112
+ #: add-to-any.php:425
113
  msgid "Standalone Services"
114
  msgstr ""
115
 
116
+ #: add-to-any.php:430
117
  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."
118
  msgstr ""
119
 
120
+ #: add-to-any.php:456
121
  msgid "Button"
122
  msgstr ""
123
 
124
+ #: add-to-any.php:495
125
  msgid "Image URL"
126
  msgstr ""
127
 
128
+ #: add-to-any.php:502
129
  msgid "Text only"
130
  msgstr ""
131
 
132
+ #: add-to-any.php:510
133
  msgid "Placement"
134
  msgstr ""
135
 
136
+ #: add-to-any.php:519
137
  msgid "Display Share/Save button at the bottom of posts"
138
  msgstr ""
139
 
140
+ #: add-to-any.php:526
141
  msgid "Display Share/Save button at the bottom of posts on the front page"
142
  msgstr ""
143
 
144
+ #: add-to-any.php:533
145
  msgid "Display Share/Save button at the bottom of posts in the feed"
146
  msgstr ""
147
 
148
+ #: add-to-any.php:537
149
  msgid "Display Share/Save button at the bottom of pages"
150
  msgstr ""
151
 
152
+ #: add-to-any.php:541
153
  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>)"
154
  msgstr ""
155
 
156
+ #: add-to-any.php:550
157
  msgid "Menu Style"
158
  msgstr ""
159
 
160
+ #: add-to-any.php:552
161
  msgid "Using Add to Any's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
162
  msgstr ""
163
 
164
+ #: add-to-any.php:554
165
  msgid "Open the Add to Any Menu Styler in a new window"
166
  msgstr ""
167
 
168
+ #: add-to-any.php:556
169
  msgid "Open Menu Styler"
170
  msgstr ""
171
 
172
+ #: add-to-any.php:561
173
  msgid "Menu Options"
174
  msgstr ""
175
 
176
+ #: add-to-any.php:566
177
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
178
  msgstr ""
179
 
180
+ #: add-to-any.php:571
181
  msgid "Show the title of the post (or page) within the menu"
182
  msgstr ""
183
 
184
+ #: add-to-any.php:578
185
  msgid "Only show the menu when the user clicks the Share/Save button"
186
  msgstr ""
187
 
188
+ #: add-to-any.php:584
189
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
190
  msgstr ""
191
 
192
+ #: add-to-any.php:589
193
  msgid "Additional Options"
194
  msgstr ""
195
 
196
+ #: add-to-any.php:593
197
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
198
  msgstr ""
199
 
200
+ #: add-to-any.php:597
201
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
202
  msgstr ""
203
 
204
+ #: add-to-any.php:598
205
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
206
  msgstr ""
207
 
208
+ #: add-to-any.php:604
209
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
210
  msgstr ""
211
 
212
+ #: add-to-any.php:611
213
  msgid "Save Changes"
214
  msgstr ""
215
 
216
+ #: add-to-any.php:616
217
  msgid "Like this plugin?"
218
  msgstr ""
219
 
220
+ #: add-to-any.php:617
221
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
222
  msgstr ""
223
 
224
+ #: add-to-any.php:618
225
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
226
  msgstr ""
227
 
228
+ #: add-to-any.php:620
229
  msgid "Need support?"
230
  msgstr ""
231
 
232
+ #: add-to-any.php:621
233
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
234
  msgstr ""
235
 
236
+ #: add-to-any.php:622
237
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
238
  msgstr ""
239
 
240
+ #: add-to-any.php:729
241
  msgid "Add/Remove Services"
242
  msgstr ""
243
 
244
+ #: add-to-any.php:775
245
  msgid "Share/Save"
246
  msgstr ""
247
 
248
+ #: add-to-any.php:776
249
  msgid "Share/Save Buttons"
250
  msgstr ""
251
 
languages/add-to-any-es_ES.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-11-09 17:17-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pablo Poo <pablo@poo.cl>\n"
8
  "Language-Team: \n"
@@ -13,232 +13,242 @@ msgstr ""
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: add-to-any.php:208
17
  msgid "Share"
18
  msgstr "Compartir"
19
 
20
- #: add-to-any.php:209
21
  msgid "Save"
22
  msgstr "Guardar"
23
 
24
- #: add-to-any.php:210
25
  msgid "Subscribe"
26
  msgstr "Suscribirse"
27
 
28
- #: add-to-any.php:211
29
  msgid "E-mail"
30
  msgstr "E-mail"
31
 
32
- #: add-to-any.php:212
33
  msgid "Bookmark"
34
  msgstr "Marcador"
35
 
36
- #: add-to-any.php:213
37
  msgid "Show all"
38
  msgstr "Mostrar todo"
39
 
40
- #: add-to-any.php:214
41
  msgid "Show less"
42
  msgstr "Mostrar menos"
43
 
44
- #: add-to-any.php:215
45
  msgid "Find service(s)"
46
  msgstr "Buscar servicios(s)"
47
 
48
- #: add-to-any.php:216
49
  msgid "Instantly find any service to add to"
50
  msgstr "Buscar servicio"
51
 
52
- #: add-to-any.php:217
53
  msgid "Powered by"
54
  msgstr "Servicio ofrecido por"
55
 
56
- #: add-to-any.php:218
57
  msgid "Share via e-mail"
58
  msgstr "Compartir por e-mail"
59
 
60
- #: add-to-any.php:219
61
  msgid "Subscribe via e-mail"
62
  msgstr "Suscribirse por e-mail"
63
 
64
- #: add-to-any.php:220
65
  msgid "Bookmark in your browser"
66
  msgstr "Agregar a marcadores de tu navegador"
67
 
68
- #: add-to-any.php:221
69
  #, fuzzy
70
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
71
  msgstr "Presione Ctrl+D o Cmd+D para marcar esta pagina"
72
 
73
- #: add-to-any.php:222
74
  msgid "Add to your favorites"
75
  msgstr "Agregar a favoritos"
76
 
77
- #: add-to-any.php:223
78
  msgid "Send from any e-mail address or e-mail program"
79
  msgstr "Enviar de cualquier dirección de e-mail o programa de e-mail"
80
 
81
- #: add-to-any.php:224
82
  msgid "E-mail program"
83
  msgstr "Programa de e-mail"
84
 
85
- #: add-to-any.php:249
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:401
 
 
 
 
 
 
 
 
 
 
90
  msgid "Settings saved."
91
  msgstr "Configuración guardada."
92
 
93
- #: add-to-any.php:412
94
  msgid "Add to Any: Share/Save "
95
  msgstr "Add to Any: Compartir/Guardar "
96
 
97
- #: add-to-any.php:412
98
- #: add-to-any.php:772
99
- #: add-to-any.php:793
100
  msgid "Settings"
101
  msgstr "Configuración"
102
 
103
- #: add-to-any.php:422
104
  msgid "Standalone Services"
105
  msgstr ""
106
 
107
- #: add-to-any.php:427
108
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
109
  msgstr ""
110
 
111
- #: add-to-any.php:453
112
  msgid "Button"
113
  msgstr "Botón"
114
 
115
- #: add-to-any.php:492
116
  msgid "Image URL"
117
  msgstr "URL de la imagen"
118
 
119
- #: add-to-any.php:499
120
  msgid "Text only"
121
  msgstr "Solo texto"
122
 
123
- #: add-to-any.php:507
124
  #, fuzzy
125
  msgid "Placement"
126
  msgstr "Ubicación del botón"
127
 
128
- #: add-to-any.php:516
129
  msgid "Display Share/Save button at the bottom of posts"
130
  msgstr "Mostrar el botón Compartir/Guardar al final de cada entrada"
131
 
132
- #: add-to-any.php:523
133
  msgid "Display Share/Save button at the bottom of posts on the front page"
134
  msgstr "Mostrar el botón Compartir/Guardar al final de las entradas en la pagina principal"
135
 
136
- #: add-to-any.php:530
137
  msgid "Display Share/Save button at the bottom of posts in the feed"
138
  msgstr "Mostrar el botón Compartir/Guardar al final de las entradas en el feed"
139
 
140
- #: add-to-any.php:534
141
  msgid "Display Share/Save button at the bottom of pages"
142
  msgstr "Mostrar el botón Compartir/Guardar al final de las paginas"
143
 
144
- #: add-to-any.php:538
145
  #, fuzzy
146
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
147
  msgstr "Si no está habilitado se debe agregar el siguiente código en <a href=\"theme-editor.php\">la plantilla de su tema</a>(dentro de <code>index.php</code>, <code>single.php</code>, y/o <code>page.php</code>)"
148
 
149
- #: add-to-any.php:547
150
  msgid "Menu Style"
151
  msgstr "Estilo del menú"
152
 
153
- #: add-to-any.php:549
154
  msgid "Using Add to Any's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
155
  msgstr "Usar el personalizador de estilo de Add to Any, usted puede personalizar los colores de su menú Compartir/Guardar! Cuando finalice, debe copiar el código generado en el recuadro de <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">opciones adicionales</a> más abajo."
156
 
157
- #: add-to-any.php:551
158
  msgid "Open the Add to Any Menu Styler in a new window"
159
  msgstr "Abrir el personalizador de estilo de Add to Any en una nueva ventana"
160
 
161
- #: add-to-any.php:553
162
  msgid "Open Menu Styler"
163
  msgstr "Abrir el personalizador de estilos"
164
 
165
- #: add-to-any.php:558
166
  msgid "Menu Options"
167
  msgstr "Menú de opciones"
168
 
169
- #: add-to-any.php:563
170
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
171
  msgstr "Ocultar los objetos embebidos (Flash, video, etc) que intersectan con el manú cuando se muestra."
172
 
173
- #: add-to-any.php:568
174
  msgid "Show the title of the post (or page) within the menu"
175
  msgstr "Mostrar el título de la entrada (o de la pagina) dentro del menú"
176
 
177
- #: add-to-any.php:575
178
  msgid "Only show the menu when the user clicks the Share/Save button"
179
  msgstr "Mostrar el menú solo cuando un usuario haga click sobre el botón Compartir/Guardar"
180
 
181
- #: add-to-any.php:581
182
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
183
  msgstr "Abrir el menu de addtoany.com en una nueva pestaña o ventana si el usuario hace click en el botón Compartir/Guardar"
184
 
185
- #: add-to-any.php:586
186
  msgid "Additional Options"
187
  msgstr "Opciones adicionales"
188
 
189
- #: add-to-any.php:590
190
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
191
  msgstr "Pegue el código del personalizador de estilo en el siguiente recuadro"
192
 
193
- #: add-to-any.php:594
194
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
195
  msgstr "Abajo puede inicializar las variables JavaScript especiales para aplicar a cada menú Compartir/Guardar"
196
 
197
- #: add-to-any.php:595
198
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
199
  msgstr "Los usuarios avanzados podrían preferir explorar la <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">API JavaScript</a> de Add to Any."
200
 
201
- #: add-to-any.php:601
202
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
203
  msgstr "<strong>Nota</strong>: Si usted agrega código nuevo, sea cuidadoso de no sobreescribir accidentalmente cualquier código ingresado anteriormente.</label>"
204
 
205
- #: add-to-any.php:608
206
  msgid "Save Changes"
207
  msgstr "Guardar cambios"
208
 
209
- #: add-to-any.php:613
210
  msgid "Like this plugin?"
211
  msgstr ""
212
 
213
- #: add-to-any.php:614
214
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
215
  msgstr ""
216
 
217
- #: add-to-any.php:615
218
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
219
  msgstr ""
220
 
221
- #: add-to-any.php:617
222
  msgid "Need support?"
223
  msgstr ""
224
 
225
- #: add-to-any.php:618
226
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
227
  msgstr ""
228
 
229
- #: add-to-any.php:619
230
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
231
  msgstr ""
232
 
233
- #: add-to-any.php:726
234
  msgid "Add/Remove Services"
235
  msgstr ""
236
 
237
- #: add-to-any.php:772
238
  msgid "Share/Save"
239
  msgstr "Compartir/Guardar"
240
 
241
- #: add-to-any.php:773
242
  msgid "Share/Save Buttons"
243
  msgstr "Botones Compartir/Guardar"
244
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-12-18 00:13-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pablo Poo <pablo@poo.cl>\n"
8
  "Language-Team: \n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
+ #: add-to-any.php:211
17
  msgid "Share"
18
  msgstr "Compartir"
19
 
20
+ #: add-to-any.php:212
21
  msgid "Save"
22
  msgstr "Guardar"
23
 
24
+ #: add-to-any.php:213
25
  msgid "Subscribe"
26
  msgstr "Suscribirse"
27
 
28
+ #: add-to-any.php:214
29
  msgid "E-mail"
30
  msgstr "E-mail"
31
 
32
+ #: add-to-any.php:215
33
  msgid "Bookmark"
34
  msgstr "Marcador"
35
 
36
+ #: add-to-any.php:216
37
  msgid "Show all"
38
  msgstr "Mostrar todo"
39
 
40
+ #: add-to-any.php:217
41
  msgid "Show less"
42
  msgstr "Mostrar menos"
43
 
44
+ #: add-to-any.php:218
45
  msgid "Find service(s)"
46
  msgstr "Buscar servicios(s)"
47
 
48
+ #: add-to-any.php:219
49
  msgid "Instantly find any service to add to"
50
  msgstr "Buscar servicio"
51
 
52
+ #: add-to-any.php:220
53
  msgid "Powered by"
54
  msgstr "Servicio ofrecido por"
55
 
56
+ #: add-to-any.php:221
57
  msgid "Share via e-mail"
58
  msgstr "Compartir por e-mail"
59
 
60
+ #: add-to-any.php:222
61
  msgid "Subscribe via e-mail"
62
  msgstr "Suscribirse por e-mail"
63
 
64
+ #: add-to-any.php:223
65
  msgid "Bookmark in your browser"
66
  msgstr "Agregar a marcadores de tu navegador"
67
 
68
+ #: add-to-any.php:224
69
  #, fuzzy
70
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
71
  msgstr "Presione Ctrl+D o Cmd+D para marcar esta pagina"
72
 
73
+ #: add-to-any.php:225
74
  msgid "Add to your favorites"
75
  msgstr "Agregar a favoritos"
76
 
77
+ #: add-to-any.php:226
78
  msgid "Send from any e-mail address or e-mail program"
79
  msgstr "Enviar de cualquier dirección de e-mail o programa de e-mail"
80
 
81
+ #: add-to-any.php:227
82
  msgid "E-mail program"
83
  msgstr "Programa de e-mail"
84
 
85
+ #: add-to-any.php:252
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:390
90
+ #: add-to-any.php:461
91
+ #: add-to-any.php:465
92
+ #: add-to-any.php:469
93
+ #: add-to-any.php:473
94
+ #: add-to-any.php:505
95
+ #, fuzzy
96
+ msgid "Share/Bookmark"
97
+ msgstr "Marcador"
98
+
99
+ #: add-to-any.php:404
100
  msgid "Settings saved."
101
  msgstr "Configuración guardada."
102
 
103
+ #: add-to-any.php:415
104
  msgid "Add to Any: Share/Save "
105
  msgstr "Add to Any: Compartir/Guardar "
106
 
107
+ #: add-to-any.php:415
108
+ #: add-to-any.php:775
109
+ #: add-to-any.php:796
110
  msgid "Settings"
111
  msgstr "Configuración"
112
 
113
+ #: add-to-any.php:425
114
  msgid "Standalone Services"
115
  msgstr ""
116
 
117
+ #: add-to-any.php:430
118
  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."
119
  msgstr ""
120
 
121
+ #: add-to-any.php:456
122
  msgid "Button"
123
  msgstr "Botón"
124
 
125
+ #: add-to-any.php:495
126
  msgid "Image URL"
127
  msgstr "URL de la imagen"
128
 
129
+ #: add-to-any.php:502
130
  msgid "Text only"
131
  msgstr "Solo texto"
132
 
133
+ #: add-to-any.php:510
134
  #, fuzzy
135
  msgid "Placement"
136
  msgstr "Ubicación del botón"
137
 
138
+ #: add-to-any.php:519
139
  msgid "Display Share/Save button at the bottom of posts"
140
  msgstr "Mostrar el botón Compartir/Guardar al final de cada entrada"
141
 
142
+ #: add-to-any.php:526
143
  msgid "Display Share/Save button at the bottom of posts on the front page"
144
  msgstr "Mostrar el botón Compartir/Guardar al final de las entradas en la pagina principal"
145
 
146
+ #: add-to-any.php:533
147
  msgid "Display Share/Save button at the bottom of posts in the feed"
148
  msgstr "Mostrar el botón Compartir/Guardar al final de las entradas en el feed"
149
 
150
+ #: add-to-any.php:537
151
  msgid "Display Share/Save button at the bottom of pages"
152
  msgstr "Mostrar el botón Compartir/Guardar al final de las paginas"
153
 
154
+ #: add-to-any.php:541
155
  #, fuzzy
156
  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>)"
157
  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>)"
158
 
159
+ #: add-to-any.php:550
160
  msgid "Menu Style"
161
  msgstr "Estilo del menú"
162
 
163
+ #: add-to-any.php:552
164
  msgid "Using Add to Any's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
165
  msgstr "Usar el personalizador de estilo de Add to Any, usted puede personalizar los colores de su menú Compartir/Guardar! Cuando finalice, debe copiar el código generado en el recuadro de <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">opciones adicionales</a> más abajo."
166
 
167
+ #: add-to-any.php:554
168
  msgid "Open the Add to Any Menu Styler in a new window"
169
  msgstr "Abrir el personalizador de estilo de Add to Any en una nueva ventana"
170
 
171
+ #: add-to-any.php:556
172
  msgid "Open Menu Styler"
173
  msgstr "Abrir el personalizador de estilos"
174
 
175
+ #: add-to-any.php:561
176
  msgid "Menu Options"
177
  msgstr "Menú de opciones"
178
 
179
+ #: add-to-any.php:566
180
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
181
  msgstr "Ocultar los objetos embebidos (Flash, video, etc) que intersectan con el manú cuando se muestra."
182
 
183
+ #: add-to-any.php:571
184
  msgid "Show the title of the post (or page) within the menu"
185
  msgstr "Mostrar el título de la entrada (o de la pagina) dentro del menú"
186
 
187
+ #: add-to-any.php:578
188
  msgid "Only show the menu when the user clicks the Share/Save button"
189
  msgstr "Mostrar el menú solo cuando un usuario haga click sobre el botón Compartir/Guardar"
190
 
191
+ #: add-to-any.php:584
192
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
193
  msgstr "Abrir el menu de addtoany.com en una nueva pestaña o ventana si el usuario hace click en el botón Compartir/Guardar"
194
 
195
+ #: add-to-any.php:589
196
  msgid "Additional Options"
197
  msgstr "Opciones adicionales"
198
 
199
+ #: add-to-any.php:593
200
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
201
  msgstr "Pegue el código del personalizador de estilo en el siguiente recuadro"
202
 
203
+ #: add-to-any.php:597
204
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
205
  msgstr "Abajo puede inicializar las variables JavaScript especiales para aplicar a cada menú Compartir/Guardar"
206
 
207
+ #: add-to-any.php:598
208
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
209
  msgstr "Los usuarios avanzados podrían preferir explorar la <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">API JavaScript</a> de Add to Any."
210
 
211
+ #: add-to-any.php:604
212
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
213
  msgstr "<strong>Nota</strong>: Si usted agrega código nuevo, sea cuidadoso de no sobreescribir accidentalmente cualquier código ingresado anteriormente.</label>"
214
 
215
+ #: add-to-any.php:611
216
  msgid "Save Changes"
217
  msgstr "Guardar cambios"
218
 
219
+ #: add-to-any.php:616
220
  msgid "Like this plugin?"
221
  msgstr ""
222
 
223
+ #: add-to-any.php:617
224
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
225
  msgstr ""
226
 
227
+ #: add-to-any.php:618
228
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
229
  msgstr ""
230
 
231
+ #: add-to-any.php:620
232
  msgid "Need support?"
233
  msgstr ""
234
 
235
+ #: add-to-any.php:621
236
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
237
  msgstr ""
238
 
239
+ #: add-to-any.php:622
240
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
241
  msgstr ""
242
 
243
+ #: add-to-any.php:729
244
  msgid "Add/Remove Services"
245
  msgstr ""
246
 
247
+ #: add-to-any.php:775
248
  msgid "Share/Save"
249
  msgstr "Compartir/Guardar"
250
 
251
+ #: add-to-any.php:776
252
  msgid "Share/Save Buttons"
253
  msgstr "Botones Compartir/Guardar"
254
 
languages/add-to-any-it_IT.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-11-09 17:17-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: Gianni Diurno | http://gidibao.net/ <gidibao@gmail.com>\n"
@@ -15,231 +15,241 @@ msgstr ""
15
  "X-Poedit-Country: ITALY\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: add-to-any.php:208
19
  msgid "Share"
20
  msgstr "Condividi"
21
 
22
- #: add-to-any.php:209
23
  msgid "Save"
24
  msgstr "Salva"
25
 
26
- #: add-to-any.php:210
27
  msgid "Subscribe"
28
  msgstr "Abbonati"
29
 
30
- #: add-to-any.php:211
31
  msgid "E-mail"
32
  msgstr "E-mail"
33
 
34
- #: add-to-any.php:212
35
  msgid "Bookmark"
36
  msgstr "Segnalibro"
37
 
38
- #: add-to-any.php:213
39
  msgid "Show all"
40
  msgstr "espandi"
41
 
42
- #: add-to-any.php:214
43
  msgid "Show less"
44
  msgstr "comprimi"
45
 
46
- #: add-to-any.php:215
47
  msgid "Find service(s)"
48
  msgstr "Trova servizi"
49
 
50
- #: add-to-any.php:216
51
  msgid "Instantly find any service to add to"
52
  msgstr "Trova subito un servizio da aggiungere"
53
 
54
- #: add-to-any.php:217
55
  msgid "Powered by"
56
  msgstr "Fornito da"
57
 
58
- #: add-to-any.php:218
59
  msgid "Share via e-mail"
60
  msgstr "Condividi via email"
61
 
62
- #: add-to-any.php:219
63
  msgid "Subscribe via e-mail"
64
  msgstr "Abbonati via email"
65
 
66
- #: add-to-any.php:220
67
  msgid "Bookmark in your browser"
68
  msgstr "Aggiungi ai segnalibri"
69
 
70
- #: add-to-any.php:221
71
  #, fuzzy
72
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
73
  msgstr "Premi Ctrl+D o Cmd+D per aggiungere questa pagina alla lista dei segnalibri"
74
 
75
- #: add-to-any.php:222
76
  msgid "Add to your favorites"
77
  msgstr "Aggiungi ai favoriti"
78
 
79
- #: add-to-any.php:223
80
  msgid "Send from any e-mail address or e-mail program"
81
  msgstr "Invia da un indirizzo email o client di posta elettronica"
82
 
83
- #: add-to-any.php:224
84
  msgid "E-mail program"
85
  msgstr "Client di posta elettronica"
86
 
87
- #: add-to-any.php:249
88
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
89
  msgstr "Il tuo tema deve essere aggiornato. Per apportare le modifiche necessarie, utilizza l'editor dei <a href=\"theme-editor.php\">temi</a> per inserire <code>&lt;?php wp_footer(); ?&gt;</code> subito prima del tag di chiusura <code>&lt;/body&gt;</code> presente nel file <code>footer.php</code>."
90
 
91
- #: add-to-any.php:401
 
 
 
 
 
 
 
 
 
 
92
  msgid "Settings saved."
93
  msgstr "Le impostazioni sono state salvate"
94
 
95
- #: add-to-any.php:412
96
  msgid "Add to Any: Share/Save "
97
  msgstr "Add to Any: Condividi/Salva "
98
 
99
- #: add-to-any.php:412
100
- #: add-to-any.php:772
101
- #: add-to-any.php:793
102
  msgid "Settings"
103
  msgstr "Impostazioni"
104
 
105
- #: add-to-any.php:422
106
  msgid "Standalone Services"
107
  msgstr "Servizi indipendenti"
108
 
109
- #: add-to-any.php:427
110
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
111
  msgstr "Scegli qui sotto i servizi di tuo gradimento. &nbsp;Clicca su di un servizio attivo per rimuoverlo. &nbsp;Riordina i servizi via drag and drop."
112
 
113
- #: add-to-any.php:453
114
  msgid "Button"
115
  msgstr "Pulsante"
116
 
117
- #: add-to-any.php:492
118
  msgid "Image URL"
119
  msgstr "URL immagine"
120
 
121
- #: add-to-any.php:499
122
  msgid "Text only"
123
  msgstr "Solo testo"
124
 
125
- #: add-to-any.php:507
126
  msgid "Placement"
127
  msgstr "Posizione"
128
 
129
- #: add-to-any.php:516
130
  msgid "Display Share/Save button at the bottom of posts"
131
  msgstr "Mostra il pulsante Share/Save in coda agli articoli"
132
 
133
- #: add-to-any.php:523
134
  msgid "Display Share/Save button at the bottom of posts on the front page"
135
  msgstr "Mostra il pulsante Share/Save in coda agli articoli nella pagina principale"
136
 
137
- #: add-to-any.php:530
138
  msgid "Display Share/Save button at the bottom of posts in the feed"
139
  msgstr "Mostra il pulsante Share/Save in coda agli articoli del feed"
140
 
141
- #: add-to-any.php:534
142
  msgid "Display Share/Save button at the bottom of pages"
143
  msgstr "Mostra il pulsante Share/Save in coda alle pagine"
144
 
145
- #: add-to-any.php:538
146
  #, fuzzy
147
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
148
  msgstr "Se disattivata, dovrai inserire il codice qui sotto nelle <a href=\"theme-editor.php\">pagine del tuo tema</a> (in <code>index.php</code>, <code>single.php</code>, e/o <code>page.php</code>)"
149
 
150
- #: add-to-any.php:547
151
  msgid "Menu Style"
152
  msgstr "Stile menu"
153
 
154
- #: add-to-any.php:549
155
  msgid "Using Add to Any's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
156
  msgstr "Utilizzando il Menu Styler di Add to Any potrai personalizzare i colori del menu Share/Save! Una volta apportata la modifica, incolla il codice così ottenuto nel riquadro delle <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Opzioni agggiuntive</a> qui sotto."
157
 
158
- #: add-to-any.php:551
159
  msgid "Open the Add to Any Menu Styler in a new window"
160
  msgstr "Apri in una nuova pagina per personalizzare il menu di Add to Any"
161
 
162
- #: add-to-any.php:553
163
  msgid "Open Menu Styler"
164
  msgstr "Stile menu"
165
 
166
- #: add-to-any.php:558
167
  msgid "Menu Options"
168
  msgstr "Opzioni menu"
169
 
170
- #: add-to-any.php:563
171
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
172
  msgstr "Nascondi gli oggetti incorporati (Flash, video, etc.) che possono interferire con la visualizzazione corretta del menu"
173
 
174
- #: add-to-any.php:568
175
  msgid "Show the title of the post (or page) within the menu"
176
  msgstr "Mostra nel menu il titolo dell'articolo (o pagina)"
177
 
178
- #: add-to-any.php:575
179
  msgid "Only show the menu when the user clicks the Share/Save button"
180
  msgstr "Mostra solamente il menu quando un utente clicca sul pulsante Share/Save"
181
 
182
- #: add-to-any.php:581
183
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
184
  msgstr "Apri in una nuova scheda o finestra la pagina menu di addtoany.com quando un utente clicca il pulsante Share/Save"
185
 
186
- #: add-to-any.php:586
187
  msgid "Additional Options"
188
  msgstr "Opzioni aggiuntive"
189
 
190
- #: add-to-any.php:590
191
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
192
  msgstr "Incolla nel riquadro qui sotto il nuovo codice personalizzato per il menu! "
193
 
194
- #: add-to-any.php:594
195
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
196
  msgstr "Qui sotto é possibile impostare delle variabili JavaScript particolari applicabili ad ogni menu Share/Save."
197
 
198
- #: add-to-any.php:595
199
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
200
  msgstr "Gli utenti più esperti possono prendere visione della <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a> di Add to Any."
201
 
202
- #: add-to-any.php:601
203
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
204
  msgstr "<strong>Nota</strong>: qualora stessi aggiungendo un nnuovo codice, fai attenzione a non sovrascrivere accidentalmente ogni codice precedente.</label>"
205
 
206
- #: add-to-any.php:608
207
  msgid "Save Changes"
208
  msgstr "Salva le modifiche"
209
 
210
- #: add-to-any.php:613
211
  msgid "Like this plugin?"
212
  msgstr "Ti é piaciuto questo plugin?"
213
 
214
- #: add-to-any.php:614
215
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
216
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Votalo</a> su WordPress.org."
217
 
218
- #: add-to-any.php:615
219
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
220
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Condividi</a> con i tuoi amici."
221
 
222
- #: add-to-any.php:617
223
  msgid "Need support?"
224
  msgstr "Serve aiuto?"
225
 
226
- #: add-to-any.php:618
227
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
228
  msgstr "Vedi la pagina dedicata alle <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ</a>."
229
 
230
- #: add-to-any.php:619
231
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
232
  msgstr "Effettua una ricerca nel <a href=\"http://wordpress.org/tags/add-to-any\">forum di supporto</a>."
233
 
234
- #: add-to-any.php:726
235
  msgid "Add/Remove Services"
236
  msgstr "Aggiungi/Rimuovi i sevizi"
237
 
238
- #: add-to-any.php:772
239
  msgid "Share/Save"
240
  msgstr "Condividi/Salva"
241
 
242
- #: add-to-any.php:773
243
  msgid "Share/Save Buttons"
244
  msgstr "Pulsanti Condividi/Salva"
245
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-12-18 00:13-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: Gianni Diurno | http://gidibao.net/ <gidibao@gmail.com>\n"
15
  "X-Poedit-Country: ITALY\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: add-to-any.php:211
19
  msgid "Share"
20
  msgstr "Condividi"
21
 
22
+ #: add-to-any.php:212
23
  msgid "Save"
24
  msgstr "Salva"
25
 
26
+ #: add-to-any.php:213
27
  msgid "Subscribe"
28
  msgstr "Abbonati"
29
 
30
+ #: add-to-any.php:214
31
  msgid "E-mail"
32
  msgstr "E-mail"
33
 
34
+ #: add-to-any.php:215
35
  msgid "Bookmark"
36
  msgstr "Segnalibro"
37
 
38
+ #: add-to-any.php:216
39
  msgid "Show all"
40
  msgstr "espandi"
41
 
42
+ #: add-to-any.php:217
43
  msgid "Show less"
44
  msgstr "comprimi"
45
 
46
+ #: add-to-any.php:218
47
  msgid "Find service(s)"
48
  msgstr "Trova servizi"
49
 
50
+ #: add-to-any.php:219
51
  msgid "Instantly find any service to add to"
52
  msgstr "Trova subito un servizio da aggiungere"
53
 
54
+ #: add-to-any.php:220
55
  msgid "Powered by"
56
  msgstr "Fornito da"
57
 
58
+ #: add-to-any.php:221
59
  msgid "Share via e-mail"
60
  msgstr "Condividi via email"
61
 
62
+ #: add-to-any.php:222
63
  msgid "Subscribe via e-mail"
64
  msgstr "Abbonati via email"
65
 
66
+ #: add-to-any.php:223
67
  msgid "Bookmark in your browser"
68
  msgstr "Aggiungi ai segnalibri"
69
 
70
+ #: add-to-any.php:224
71
  #, fuzzy
72
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
73
  msgstr "Premi Ctrl+D o Cmd+D per aggiungere questa pagina alla lista dei segnalibri"
74
 
75
+ #: add-to-any.php:225
76
  msgid "Add to your favorites"
77
  msgstr "Aggiungi ai favoriti"
78
 
79
+ #: add-to-any.php:226
80
  msgid "Send from any e-mail address or e-mail program"
81
  msgstr "Invia da un indirizzo email o client di posta elettronica"
82
 
83
+ #: add-to-any.php:227
84
  msgid "E-mail program"
85
  msgstr "Client di posta elettronica"
86
 
87
+ #: add-to-any.php:252
88
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
89
  msgstr "Il tuo tema deve essere aggiornato. Per apportare le modifiche necessarie, utilizza l'editor dei <a href=\"theme-editor.php\">temi</a> per inserire <code>&lt;?php wp_footer(); ?&gt;</code> subito prima del tag di chiusura <code>&lt;/body&gt;</code> presente nel file <code>footer.php</code>."
90
 
91
+ #: add-to-any.php:390
92
+ #: add-to-any.php:461
93
+ #: add-to-any.php:465
94
+ #: add-to-any.php:469
95
+ #: add-to-any.php:473
96
+ #: add-to-any.php:505
97
+ #, fuzzy
98
+ msgid "Share/Bookmark"
99
+ msgstr "Segnalibro"
100
+
101
+ #: add-to-any.php:404
102
  msgid "Settings saved."
103
  msgstr "Le impostazioni sono state salvate"
104
 
105
+ #: add-to-any.php:415
106
  msgid "Add to Any: Share/Save "
107
  msgstr "Add to Any: Condividi/Salva "
108
 
109
+ #: add-to-any.php:415
110
+ #: add-to-any.php:775
111
+ #: add-to-any.php:796
112
  msgid "Settings"
113
  msgstr "Impostazioni"
114
 
115
+ #: add-to-any.php:425
116
  msgid "Standalone Services"
117
  msgstr "Servizi indipendenti"
118
 
119
+ #: add-to-any.php:430
120
  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."
121
  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."
122
 
123
+ #: add-to-any.php:456
124
  msgid "Button"
125
  msgstr "Pulsante"
126
 
127
+ #: add-to-any.php:495
128
  msgid "Image URL"
129
  msgstr "URL immagine"
130
 
131
+ #: add-to-any.php:502
132
  msgid "Text only"
133
  msgstr "Solo testo"
134
 
135
+ #: add-to-any.php:510
136
  msgid "Placement"
137
  msgstr "Posizione"
138
 
139
+ #: add-to-any.php:519
140
  msgid "Display Share/Save button at the bottom of posts"
141
  msgstr "Mostra il pulsante Share/Save in coda agli articoli"
142
 
143
+ #: add-to-any.php:526
144
  msgid "Display Share/Save button at the bottom of posts on the front page"
145
  msgstr "Mostra il pulsante Share/Save in coda agli articoli nella pagina principale"
146
 
147
+ #: add-to-any.php:533
148
  msgid "Display Share/Save button at the bottom of posts in the feed"
149
  msgstr "Mostra il pulsante Share/Save in coda agli articoli del feed"
150
 
151
+ #: add-to-any.php:537
152
  msgid "Display Share/Save button at the bottom of pages"
153
  msgstr "Mostra il pulsante Share/Save in coda alle pagine"
154
 
155
+ #: add-to-any.php:541
156
  #, fuzzy
157
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
158
  msgstr "Se 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>)"
159
 
160
+ #: add-to-any.php:550
161
  msgid "Menu Style"
162
  msgstr "Stile menu"
163
 
164
+ #: add-to-any.php:552
165
  msgid "Using Add to Any's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
166
  msgstr "Utilizzando il Menu Styler di Add to Any potrai personalizzare i colori del menu Share/Save! Una volta apportata la modifica, incolla il codice così ottenuto nel riquadro delle <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Opzioni agggiuntive</a> qui sotto."
167
 
168
+ #: add-to-any.php:554
169
  msgid "Open the Add to Any Menu Styler in a new window"
170
  msgstr "Apri in una nuova pagina per personalizzare il menu di Add to Any"
171
 
172
+ #: add-to-any.php:556
173
  msgid "Open Menu Styler"
174
  msgstr "Stile menu"
175
 
176
+ #: add-to-any.php:561
177
  msgid "Menu Options"
178
  msgstr "Opzioni menu"
179
 
180
+ #: add-to-any.php:566
181
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
182
  msgstr "Nascondi gli oggetti incorporati (Flash, video, etc.) che possono interferire con la visualizzazione corretta del menu"
183
 
184
+ #: add-to-any.php:571
185
  msgid "Show the title of the post (or page) within the menu"
186
  msgstr "Mostra nel menu il titolo dell'articolo (o pagina)"
187
 
188
+ #: add-to-any.php:578
189
  msgid "Only show the menu when the user clicks the Share/Save button"
190
  msgstr "Mostra solamente il menu quando un utente clicca sul pulsante Share/Save"
191
 
192
+ #: add-to-any.php:584
193
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
194
  msgstr "Apri in una nuova scheda o finestra la pagina menu di addtoany.com quando un utente clicca il pulsante Share/Save"
195
 
196
+ #: add-to-any.php:589
197
  msgid "Additional Options"
198
  msgstr "Opzioni aggiuntive"
199
 
200
+ #: add-to-any.php:593
201
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
202
  msgstr "Incolla nel riquadro qui sotto il nuovo codice personalizzato per il menu! "
203
 
204
+ #: add-to-any.php:597
205
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
206
  msgstr "Qui sotto é possibile impostare delle variabili JavaScript particolari applicabili ad ogni menu Share/Save."
207
 
208
+ #: add-to-any.php:598
209
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
210
  msgstr "Gli utenti più esperti possono prendere visione della <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a> di Add to Any."
211
 
212
+ #: add-to-any.php:604
213
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
214
  msgstr "<strong>Nota</strong>: qualora stessi aggiungendo un nnuovo codice, fai attenzione a non sovrascrivere accidentalmente ogni codice precedente.</label>"
215
 
216
+ #: add-to-any.php:611
217
  msgid "Save Changes"
218
  msgstr "Salva le modifiche"
219
 
220
+ #: add-to-any.php:616
221
  msgid "Like this plugin?"
222
  msgstr "Ti é piaciuto questo plugin?"
223
 
224
+ #: add-to-any.php:617
225
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
226
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Votalo</a> su WordPress.org."
227
 
228
+ #: add-to-any.php:618
229
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
230
  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."
231
 
232
+ #: add-to-any.php:620
233
  msgid "Need support?"
234
  msgstr "Serve aiuto?"
235
 
236
+ #: add-to-any.php:621
237
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
238
  msgstr "Vedi la pagina dedicata alle <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ</a>."
239
 
240
+ #: add-to-any.php:622
241
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
242
  msgstr "Effettua una ricerca nel <a href=\"http://wordpress.org/tags/add-to-any\">forum di supporto</a>."
243
 
244
+ #: add-to-any.php:729
245
  msgid "Add/Remove Services"
246
  msgstr "Aggiungi/Rimuovi i sevizi"
247
 
248
+ #: add-to-any.php:775
249
  msgid "Share/Save"
250
  msgstr "Condividi/Salva"
251
 
252
+ #: add-to-any.php:776
253
  msgid "Share/Save Buttons"
254
  msgstr "Pulsanti Condividi/Salva"
255
 
languages/add-to-any-pt_PT.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-11-09 17:17-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Jorge Silva <jncs12@gmail.com>\n"
8
  "Language-Team: \n"
@@ -13,230 +13,240 @@ msgstr ""
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: add-to-any.php:208
17
  msgid "Share"
18
  msgstr "Partilhar"
19
 
20
- #: add-to-any.php:209
21
  msgid "Save"
22
  msgstr "Guardar"
23
 
24
- #: add-to-any.php:210
25
  msgid "Subscribe"
26
  msgstr "Subscrever"
27
 
28
- #: add-to-any.php:211
29
  msgid "E-mail"
30
  msgstr "E-mail"
31
 
32
- #: add-to-any.php:212
33
  msgid "Bookmark"
34
  msgstr "Marcador"
35
 
36
- #: add-to-any.php:213
37
  msgid "Show all"
38
  msgstr "Mostrar tudo"
39
 
40
- #: add-to-any.php:214
41
  msgid "Show less"
42
  msgstr "Mostrar menos"
43
 
44
- #: add-to-any.php:215
45
  msgid "Find service(s)"
46
  msgstr "Procurar serviço(s)"
47
 
48
- #: add-to-any.php:216
49
  msgid "Instantly find any service to add to"
50
  msgstr "Encontrar rapidamente qualquer serviço para"
51
 
52
- #: add-to-any.php:217
53
  msgid "Powered by"
54
  msgstr "Serviço fornecido por"
55
 
56
- #: add-to-any.php:218
57
  msgid "Share via e-mail"
58
  msgstr "Partilhar por e-mail"
59
 
60
- #: add-to-any.php:219
61
  msgid "Subscribe via e-mail"
62
  msgstr "Subscrever por e-mail"
63
 
64
- #: add-to-any.php:220
65
  msgid "Bookmark in your browser"
66
  msgstr "Adicionar marcador"
67
 
68
- #: add-to-any.php:221
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr "Pressione Ctrl+D ou &#8984;+D para adicionar esta página aos marcadores"
71
 
72
- #: add-to-any.php:222
73
  msgid "Add to your favorites"
74
  msgstr "Adicionar a favoritos"
75
 
76
- #: add-to-any.php:223
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:224
81
  msgid "E-mail program"
82
  msgstr "Programa de e-mail"
83
 
84
- #: add-to-any.php:249
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:401
 
 
 
 
 
 
 
 
 
 
89
  msgid "Settings saved."
90
  msgstr "Configuração guardada."
91
 
92
- #: add-to-any.php:412
93
  msgid "Add to Any: Share/Save "
94
  msgstr "Add to Any: Partilhar/Guardar "
95
 
96
- #: add-to-any.php:412
97
- #: add-to-any.php:772
98
- #: add-to-any.php:793
99
  msgid "Settings"
100
  msgstr "Configurações"
101
 
102
- #: add-to-any.php:422
103
  msgid "Standalone Services"
104
  msgstr "Serviços Isolados"
105
 
106
- #: add-to-any.php:427
107
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
108
  msgstr "Escolha os serviços que deseja. &nbsp;Clique novamente num serviço já escolhido para o remover. &nbsp;Reordene os serviços fazendo drag'n'drop conforme aparecem por cima."
109
 
110
- #: add-to-any.php:453
111
  msgid "Button"
112
  msgstr "Botão"
113
 
114
- #: add-to-any.php:492
115
  msgid "Image URL"
116
  msgstr "URL da imagem"
117
 
118
- #: add-to-any.php:499
119
  msgid "Text only"
120
  msgstr "Apenas texto"
121
 
122
- #: add-to-any.php:507
123
  msgid "Placement"
124
  msgstr "Posicionamento"
125
 
126
- #: add-to-any.php:516
127
  msgid "Display Share/Save button at the bottom of posts"
128
  msgstr "Mostrar o botão Partilhar/Guardar no fim de cada post"
129
 
130
- #: add-to-any.php:523
131
  msgid "Display Share/Save button at the bottom of posts on the front page"
132
  msgstr "Mostrar o botão Partilhar/Guardar no fim dos posts na página principal"
133
 
134
- #: add-to-any.php:530
135
  msgid "Display Share/Save button at the bottom of posts in the feed"
136
  msgstr "Mostrar o botão Partilhar/Guardar no fim dos posts do feed RSS"
137
 
138
- #: add-to-any.php:534
139
  msgid "Display Share/Save button at the bottom of pages"
140
  msgstr "Mostrar o botão Partilhar/Guardar no fim das páginas"
141
 
142
- #: add-to-any.php:538
143
  #, fuzzy
144
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
145
  msgstr "Se estiver desactivado, assegure-se que coloca o código seguinte em <a href=\"theme-editor.php\">Modelos das suas páginas</a> (dentro de <code>index.php</code>, <code>single.php</code>, e/ou <code>page.php</code>)"
146
 
147
- #: add-to-any.php:547
148
  msgid "Menu Style"
149
  msgstr "Estilo de Menu"
150
 
151
- #: add-to-any.php:549
152
  msgid "Using Add to Any's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
153
  msgstr "Usar o Personalizador de Estilo do Add to Any. Pode personalizar as cores do seu menu Partilhar/Guardar! Quando finalizar, assegure-se que cola o código gerado na caixa <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Opções Adicionais</a> em baixo."
154
 
155
- #: add-to-any.php:551
156
  msgid "Open the Add to Any Menu Styler in a new window"
157
  msgstr "Abrir o Menu de Personalização de Estilos Add to Any numa nova janela"
158
 
159
- #: add-to-any.php:553
160
  msgid "Open Menu Styler"
161
  msgstr "Abrir o Menu de Personalização de Estilos"
162
 
163
- #: add-to-any.php:558
164
  msgid "Menu Options"
165
  msgstr "Opções de Menu"
166
 
167
- #: add-to-any.php:563
168
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
169
  msgstr "Ocultar objetos embebidos (Flash, video, etc) que interajam com o menu quando visualizado"
170
 
171
- #: add-to-any.php:568
172
  msgid "Show the title of the post (or page) within the menu"
173
  msgstr "Mostrar o título do post (ou da página) dentro do menu"
174
 
175
- #: add-to-any.php:575
176
  msgid "Only show the menu when the user clicks the Share/Save button"
177
  msgstr "Mostrar apenas o menu quando o utilizador fizer um clique no botão Partilhar/Guardar"
178
 
179
- #: add-to-any.php:581
180
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
181
  msgstr "Abrir o menu de addtoany.com num novo separador ou janela se o utilizador fizer um clique no botão Partilhar/Guardar"
182
 
183
- #: add-to-any.php:586
184
  msgid "Additional Options"
185
  msgstr "Opções Adicionais"
186
 
187
- #: add-to-any.php:590
188
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
189
  msgstr "Cole o código do Menu de Personalização de Estilos do Add to Any na caixa a seguir!"
190
 
191
- #: add-to-any.php:594
192
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
193
  msgstr "Em baixo pode inserir varáveis especiais de JavaScript para aplicar a cada menu Partilhar/Guardar."
194
 
195
- #: add-to-any.php:595
196
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
197
  msgstr "Utilizadores avançados podem querer explorar o <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">API do JavaScript</a> do Add to Any."
198
 
199
- #: add-to-any.php:601
200
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
201
  msgstr "<strong>Nota</strong>: Se está a adicionar novo código, tenha cuidado para não sobrescrever (apagar) acidentalmente qualquer código existente.</label>"
202
 
203
- #: add-to-any.php:608
204
  msgid "Save Changes"
205
  msgstr "Guardar alterações"
206
 
207
- #: add-to-any.php:613
208
  msgid "Like this plugin?"
209
  msgstr "Gosta deste plugin?"
210
 
211
- #: add-to-any.php:614
212
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
213
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Atribua-lhe uma boa pontuação</a> no WordPress.org."
214
 
215
- #: add-to-any.php:615
216
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
217
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Partilhar</a> com os amigos."
218
 
219
- #: add-to-any.php:617
220
  msgid "Need support?"
221
  msgstr "Precisa de ajuda?"
222
 
223
- #: add-to-any.php:618
224
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
225
  msgstr "Consulte a página de <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ's</a>."
226
 
227
- #: add-to-any.php:619
228
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
229
  msgstr "Procurar nos <a href=\"http://wordpress.org/tags/add-to-any\">fóruns</a> de ajuda."
230
 
231
- #: add-to-any.php:726
232
  msgid "Add/Remove Services"
233
  msgstr "Adicionar/Remover Serviços"
234
 
235
- #: add-to-any.php:772
236
  msgid "Share/Save"
237
  msgstr "Partilhar/Guardar"
238
 
239
- #: add-to-any.php:773
240
  msgid "Share/Save Buttons"
241
  msgstr "Botões Partilhar/Guardar"
242
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-12-18 00:13-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Jorge Silva <jncs12@gmail.com>\n"
8
  "Language-Team: \n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
+ #: add-to-any.php:211
17
  msgid "Share"
18
  msgstr "Partilhar"
19
 
20
+ #: add-to-any.php:212
21
  msgid "Save"
22
  msgstr "Guardar"
23
 
24
+ #: add-to-any.php:213
25
  msgid "Subscribe"
26
  msgstr "Subscrever"
27
 
28
+ #: add-to-any.php:214
29
  msgid "E-mail"
30
  msgstr "E-mail"
31
 
32
+ #: add-to-any.php:215
33
  msgid "Bookmark"
34
  msgstr "Marcador"
35
 
36
+ #: add-to-any.php:216
37
  msgid "Show all"
38
  msgstr "Mostrar tudo"
39
 
40
+ #: add-to-any.php:217
41
  msgid "Show less"
42
  msgstr "Mostrar menos"
43
 
44
+ #: add-to-any.php:218
45
  msgid "Find service(s)"
46
  msgstr "Procurar serviço(s)"
47
 
48
+ #: add-to-any.php:219
49
  msgid "Instantly find any service to add to"
50
  msgstr "Encontrar rapidamente qualquer serviço para"
51
 
52
+ #: add-to-any.php:220
53
  msgid "Powered by"
54
  msgstr "Serviço fornecido por"
55
 
56
+ #: add-to-any.php:221
57
  msgid "Share via e-mail"
58
  msgstr "Partilhar por e-mail"
59
 
60
+ #: add-to-any.php:222
61
  msgid "Subscribe via e-mail"
62
  msgstr "Subscrever por e-mail"
63
 
64
+ #: add-to-any.php:223
65
  msgid "Bookmark in your browser"
66
  msgstr "Adicionar marcador"
67
 
68
+ #: add-to-any.php:224
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr "Pressione Ctrl+D ou &#8984;+D para adicionar esta página aos marcadores"
71
 
72
+ #: add-to-any.php:225
73
  msgid "Add to your favorites"
74
  msgstr "Adicionar a favoritos"
75
 
76
+ #: add-to-any.php:226
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:227
81
  msgid "E-mail program"
82
  msgstr "Programa de e-mail"
83
 
84
+ #: add-to-any.php:252
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:390
89
+ #: add-to-any.php:461
90
+ #: add-to-any.php:465
91
+ #: add-to-any.php:469
92
+ #: add-to-any.php:473
93
+ #: add-to-any.php:505
94
+ #, fuzzy
95
+ msgid "Share/Bookmark"
96
+ msgstr "Marcador"
97
+
98
+ #: add-to-any.php:404
99
  msgid "Settings saved."
100
  msgstr "Configuração guardada."
101
 
102
+ #: add-to-any.php:415
103
  msgid "Add to Any: Share/Save "
104
  msgstr "Add to Any: Partilhar/Guardar "
105
 
106
+ #: add-to-any.php:415
107
+ #: add-to-any.php:775
108
+ #: add-to-any.php:796
109
  msgid "Settings"
110
  msgstr "Configurações"
111
 
112
+ #: add-to-any.php:425
113
  msgid "Standalone Services"
114
  msgstr "Serviços Isolados"
115
 
116
+ #: add-to-any.php:430
117
  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."
118
  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."
119
 
120
+ #: add-to-any.php:456
121
  msgid "Button"
122
  msgstr "Botão"
123
 
124
+ #: add-to-any.php:495
125
  msgid "Image URL"
126
  msgstr "URL da imagem"
127
 
128
+ #: add-to-any.php:502
129
  msgid "Text only"
130
  msgstr "Apenas texto"
131
 
132
+ #: add-to-any.php:510
133
  msgid "Placement"
134
  msgstr "Posicionamento"
135
 
136
+ #: add-to-any.php:519
137
  msgid "Display Share/Save button at the bottom of posts"
138
  msgstr "Mostrar o botão Partilhar/Guardar no fim de cada post"
139
 
140
+ #: add-to-any.php:526
141
  msgid "Display Share/Save button at the bottom of posts on the front page"
142
  msgstr "Mostrar o botão Partilhar/Guardar no fim dos posts na página principal"
143
 
144
+ #: add-to-any.php:533
145
  msgid "Display Share/Save button at the bottom of posts in the feed"
146
  msgstr "Mostrar o botão Partilhar/Guardar no fim dos posts do feed RSS"
147
 
148
+ #: add-to-any.php:537
149
  msgid "Display Share/Save button at the bottom of pages"
150
  msgstr "Mostrar o botão Partilhar/Guardar no fim das páginas"
151
 
152
+ #: add-to-any.php:541
153
  #, fuzzy
154
  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>)"
155
  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>)"
156
 
157
+ #: add-to-any.php:550
158
  msgid "Menu Style"
159
  msgstr "Estilo de Menu"
160
 
161
+ #: add-to-any.php:552
162
  msgid "Using Add to Any's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
163
  msgstr "Usar o Personalizador de Estilo do Add to Any. Pode personalizar as cores do seu menu Partilhar/Guardar! Quando finalizar, assegure-se que cola o código gerado na caixa <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Opções Adicionais</a> em baixo."
164
 
165
+ #: add-to-any.php:554
166
  msgid "Open the Add to Any Menu Styler in a new window"
167
  msgstr "Abrir o Menu de Personalização de Estilos Add to Any numa nova janela"
168
 
169
+ #: add-to-any.php:556
170
  msgid "Open Menu Styler"
171
  msgstr "Abrir o Menu de Personalização de Estilos"
172
 
173
+ #: add-to-any.php:561
174
  msgid "Menu Options"
175
  msgstr "Opções de Menu"
176
 
177
+ #: add-to-any.php:566
178
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
179
  msgstr "Ocultar objetos embebidos (Flash, video, etc) que interajam com o menu quando visualizado"
180
 
181
+ #: add-to-any.php:571
182
  msgid "Show the title of the post (or page) within the menu"
183
  msgstr "Mostrar o título do post (ou da página) dentro do menu"
184
 
185
+ #: add-to-any.php:578
186
  msgid "Only show the menu when the user clicks the Share/Save button"
187
  msgstr "Mostrar apenas o menu quando o utilizador fizer um clique no botão Partilhar/Guardar"
188
 
189
+ #: add-to-any.php:584
190
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
191
  msgstr "Abrir o menu de addtoany.com num novo separador ou janela se o utilizador fizer um clique no botão Partilhar/Guardar"
192
 
193
+ #: add-to-any.php:589
194
  msgid "Additional Options"
195
  msgstr "Opções Adicionais"
196
 
197
+ #: add-to-any.php:593
198
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
199
  msgstr "Cole o código do Menu de Personalização de Estilos do Add to Any na caixa a seguir!"
200
 
201
+ #: add-to-any.php:597
202
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
203
  msgstr "Em baixo pode inserir varáveis especiais de JavaScript para aplicar a cada menu Partilhar/Guardar."
204
 
205
+ #: add-to-any.php:598
206
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
207
  msgstr "Utilizadores avançados podem querer explorar o <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">API do JavaScript</a> do Add to Any."
208
 
209
+ #: add-to-any.php:604
210
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
211
  msgstr "<strong>Nota</strong>: Se está a adicionar novo código, tenha cuidado para não sobrescrever (apagar) acidentalmente qualquer código existente.</label>"
212
 
213
+ #: add-to-any.php:611
214
  msgid "Save Changes"
215
  msgstr "Guardar alterações"
216
 
217
+ #: add-to-any.php:616
218
  msgid "Like this plugin?"
219
  msgstr "Gosta deste plugin?"
220
 
221
+ #: add-to-any.php:617
222
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
223
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Atribua-lhe uma boa pontuação</a> no WordPress.org."
224
 
225
+ #: add-to-any.php:618
226
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
227
  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."
228
 
229
+ #: add-to-any.php:620
230
  msgid "Need support?"
231
  msgstr "Precisa de ajuda?"
232
 
233
+ #: add-to-any.php:621
234
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
235
  msgstr "Consulte a página de <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ's</a>."
236
 
237
+ #: add-to-any.php:622
238
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
239
  msgstr "Procurar nos <a href=\"http://wordpress.org/tags/add-to-any\">fóruns</a> de ajuda."
240
 
241
+ #: add-to-any.php:729
242
  msgid "Add/Remove Services"
243
  msgstr "Adicionar/Remover Serviços"
244
 
245
+ #: add-to-any.php:775
246
  msgid "Share/Save"
247
  msgstr "Partilhar/Guardar"
248
 
249
+ #: add-to-any.php:776
250
  msgid "Share/Save Buttons"
251
  msgstr "Botões Partilhar/Guardar"
252
 
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: 2009-11-09 17:17-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pat <no@no.com>\n"
8
  "Language-Team: \n"
@@ -13,229 +13,239 @@ msgstr ""
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: add-to-any.php:208
17
  msgid "Share"
18
  msgstr "Amparte"
19
 
20
- #: add-to-any.php:209
21
  msgid "Save"
22
  msgstr "Salveaza"
23
 
24
- #: add-to-any.php:210
25
  msgid "Subscribe"
26
  msgstr "Inscriete"
27
 
28
- #: add-to-any.php:211
29
  msgid "E-mail"
30
  msgstr "E-mail"
31
 
32
- #: add-to-any.php:212
33
  msgid "Bookmark"
34
  msgstr "Semneaza"
35
 
36
- #: add-to-any.php:213
37
  msgid "Show all"
38
  msgstr "Vezi Totul"
39
 
40
- #: add-to-any.php:214
41
  msgid "Show less"
42
  msgstr "Strange"
43
 
44
- #: add-to-any.php:215
45
  msgid "Find service(s)"
46
  msgstr "Cauta servici"
47
 
48
- #: add-to-any.php:216
49
  msgid "Instantly find any service to add to"
50
  msgstr "Cauta instantaneu tuoate servicile sa le pui a"
51
 
52
- #: add-to-any.php:217
53
  msgid "Powered by"
54
  msgstr "Powered by"
55
 
56
- #: add-to-any.php:218
57
  msgid "Share via e-mail"
58
  msgstr "Amparte via e-mail"
59
 
60
- #: add-to-any.php:219
61
  msgid "Subscribe via e-mail"
62
  msgstr "Inscriete la via e-mail"
63
 
64
- #: add-to-any.php:220
65
  msgid "Bookmark in your browser"
66
  msgstr "Semneaza in al tau browser"
67
 
68
- #: add-to-any.php:221
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr "Digiteaza Ctrl+D sau &#8984;+D pentru semnare pagina asta"
71
 
72
- #: add-to-any.php:222
73
  msgid "Add to your favorites"
74
  msgstr "Ajunge la ai tai favoriti"
75
 
76
- #: add-to-any.php:223
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr "Trimite de la fiecare email sau email client"
79
 
80
- #: add-to-any.php:224
81
  msgid "E-mail program"
82
  msgstr "Email Client"
83
 
84
- #: add-to-any.php:249
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 sa fie la zi. Pentru purtare modifca necesara,foloseste <a href=\"theme-editor.php\">editorul de tema</a> pentru a intra <code>&lt;?php wp_footer(); ?&gt;</code> imediat dupa tag de anchidere <code>&lt;/body&gt;</code> present an <code>footer.php</code> la tema ta."
87
 
88
- #: add-to-any.php:401
 
 
 
 
 
 
 
 
 
 
89
  msgid "Settings saved."
90
  msgstr "Impostationi salvate"
91
 
92
- #: add-to-any.php:412
93
  msgid "Add to Any: Share/Save "
94
  msgstr "Add to Any: Amparte /Salveaza"
95
 
96
- #: add-to-any.php:412
97
- #: add-to-any.php:772
98
- #: add-to-any.php:793
99
  msgid "Settings"
100
  msgstr "Impostationi"
101
 
102
- #: add-to-any.php:422
103
  msgid "Standalone Services"
104
  msgstr "Servitii independente"
105
 
106
- #: add-to-any.php:427
107
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
108
  msgstr "Alege aici dedesupt servitile care ati plac. &nbsp;Clicca la un servici active pentru a elimina.&nbsp;Ordineaza servicii prin drag and drop."
109
 
110
- #: add-to-any.php:453
111
  msgid "Button"
112
  msgstr "Buton"
113
 
114
- #: add-to-any.php:492
115
  msgid "Image URL"
116
  msgstr "Imagine URL"
117
 
118
- #: add-to-any.php:499
119
  msgid "Text only"
120
  msgstr "Duar text"
121
 
122
- #: add-to-any.php:507
123
  msgid "Placement"
124
  msgstr "Pozitia"
125
 
126
- #: add-to-any.php:516
127
  msgid "Display Share/Save button at the bottom of posts"
128
  msgstr "Priveste Amparte/Salveaza buton la sfarsitul articolului"
129
 
130
- #: add-to-any.php:523
131
  msgid "Display Share/Save button at the bottom of posts on the front page"
132
  msgstr "Priveste Amparte/Salveaza buton la sfarsitul articolului de la pagina principala"
133
 
134
- #: add-to-any.php:530
135
  msgid "Display Share/Save button at the bottom of posts in the feed"
136
  msgstr "Priveste Amparte/Salveaza buton la sfarsitul de la feed"
137
 
138
- #: add-to-any.php:534
139
  msgid "Display Share/Save button at the bottom of pages"
140
  msgstr "Priveste Amparte/Salveaza buton la sfarsitul de la pagina"
141
 
142
- #: add-to-any.php:538
143
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
144
  msgstr "Daca e dezactivat, trebuie sa fim siguri sa punem codul seguit <a href=\"theme-editor.php\">tema de la pagina</a> ( cu <code>index.php</code>, <code>single.php</code>, si/sau <code>page.php</code>)"
145
 
146
- #: add-to-any.php:547
147
  msgid "Menu Style"
148
  msgstr "Stil menu"
149
 
150
- #: add-to-any.php:549
151
  msgid "Using Add to Any's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
152
  msgstr "Folosind stilul de la menu de la Add to Any,poti sa configurezi culorile de al tau Amparte/Salveaza ! Daca ai modificat, pune codul asa obtinut an cuadru de la <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">option ajunse</a> aici jos."
153
 
154
- #: add-to-any.php:551
155
  msgid "Open the Add to Any Menu Styler in a new window"
156
  msgstr "Deschide an o noue fineastra pentru a personaliza il menu de la Add to Any"
157
 
158
- #: add-to-any.php:553
159
  msgid "Open Menu Styler"
160
  msgstr "Stil menu"
161
 
162
- #: add-to-any.php:558
163
  msgid "Menu Options"
164
  msgstr "Optioni menu"
165
 
166
- #: add-to-any.php:563
167
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
168
  msgstr "Ascondi obiecte incorporate (Flash, video, etc.) care poti interferi cu menu vazut"
169
 
170
- #: add-to-any.php:568
171
  msgid "Show the title of the post (or page) within the menu"
172
  msgstr "Priveste titlul de la articolul (sau pagina) an menu"
173
 
174
- #: add-to-any.php:575
175
  msgid "Only show the menu when the user clicks the Share/Save button"
176
  msgstr "Arata menu duar cand autorul clicca pe butonul Amparte/Salveaza"
177
 
178
- #: add-to-any.php:581
179
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
180
  msgstr "Deschide meniul addtoany.com antro noua feneastra sau scheda daca autorul clicca pe butonul Amparte/Salveava"
181
 
182
- #: add-to-any.php:586
183
  msgid "Additional Options"
184
  msgstr "Optioni adiţionale"
185
 
186
- #: add-to-any.php:590
187
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
188
  msgstr "Introduce aici jos codul personalizat pentru menu!"
189
 
190
- #: add-to-any.php:594
191
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
192
  msgstr "Aici jos e posibil impostare variabilele JavaScript applicate a fiecare menu Amparte/Salveaza"
193
 
194
- #: add-to-any.php:595
195
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
196
  msgstr "Autorul poate sa vada de la <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
197
 
198
- #: add-to-any.php:601
199
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
200
  msgstr "<strong>Nota</strong>: Daca ajungi un nou cod, atentione se nu soprascrieti din gresiala fiecare cod de prima.</label>"
201
 
202
- #: add-to-any.php:608
203
  msgid "Save Changes"
204
  msgstr "Salveaza schimbarile"
205
 
206
- #: add-to-any.php:613
207
  msgid "Like this plugin?"
208
  msgstr "Ati place acest plugin?"
209
 
210
- #: add-to-any.php:614
211
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
212
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Voteazama</a> sus WordPress.org."
213
 
214
- #: add-to-any.php:615
215
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
216
  msgstr "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Amparte</a> cu prieteni tai."
217
 
218
- #: add-to-any.php:617
219
  msgid "Need support?"
220
  msgstr "Ai nevoie de ajutor?"
221
 
222
- #: add-to-any.php:618
223
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
224
  msgstr "Priveste <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ</a>."
225
 
226
- #: add-to-any.php:619
227
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
228
  msgstr "Cauta pe <a href=\"http://wordpress.org/tags/add-to-any\">forum</a>."
229
 
230
- #: add-to-any.php:726
231
  msgid "Add/Remove Services"
232
  msgstr "Ajunge/Elimina servitii"
233
 
234
- #: add-to-any.php:772
235
  msgid "Share/Save"
236
  msgstr "Amparte/Salveaza"
237
 
238
- #: add-to-any.php:773
239
  msgid "Share/Save Buttons"
240
  msgstr "Amparte/Salveaza buton"
241
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-12-18 00:13-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:211
17
  msgid "Share"
18
  msgstr "Amparte"
19
 
20
+ #: add-to-any.php:212
21
  msgid "Save"
22
  msgstr "Salveaza"
23
 
24
+ #: add-to-any.php:213
25
  msgid "Subscribe"
26
  msgstr "Inscriete"
27
 
28
+ #: add-to-any.php:214
29
  msgid "E-mail"
30
  msgstr "E-mail"
31
 
32
+ #: add-to-any.php:215
33
  msgid "Bookmark"
34
  msgstr "Semneaza"
35
 
36
+ #: add-to-any.php:216
37
  msgid "Show all"
38
  msgstr "Vezi Totul"
39
 
40
+ #: add-to-any.php:217
41
  msgid "Show less"
42
  msgstr "Strange"
43
 
44
+ #: add-to-any.php:218
45
  msgid "Find service(s)"
46
  msgstr "Cauta servici"
47
 
48
+ #: add-to-any.php:219
49
  msgid "Instantly find any service to add to"
50
  msgstr "Cauta instantaneu tuoate servicile sa le pui a"
51
 
52
+ #: add-to-any.php:220
53
  msgid "Powered by"
54
  msgstr "Powered by"
55
 
56
+ #: add-to-any.php:221
57
  msgid "Share via e-mail"
58
  msgstr "Amparte via e-mail"
59
 
60
+ #: add-to-any.php:222
61
  msgid "Subscribe via e-mail"
62
  msgstr "Inscriete la via e-mail"
63
 
64
+ #: add-to-any.php:223
65
  msgid "Bookmark in your browser"
66
  msgstr "Semneaza in al tau browser"
67
 
68
+ #: add-to-any.php:224
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr "Digiteaza Ctrl+D sau &#8984;+D pentru semnare pagina asta"
71
 
72
+ #: add-to-any.php:225
73
  msgid "Add to your favorites"
74
  msgstr "Ajunge la ai tai favoriti"
75
 
76
+ #: add-to-any.php:226
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr "Trimite de la fiecare email sau email client"
79
 
80
+ #: add-to-any.php:227
81
  msgid "E-mail program"
82
  msgstr "Email Client"
83
 
84
+ #: add-to-any.php:252
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 sa fie la zi. Pentru purtare modifca necesara,foloseste <a href=\"theme-editor.php\">editorul de tema</a> pentru a intra <code>&lt;?php wp_footer(); ?&gt;</code> imediat dupa tag de anchidere <code>&lt;/body&gt;</code> present an <code>footer.php</code> la tema ta."
87
 
88
+ #: add-to-any.php:390
89
+ #: add-to-any.php:461
90
+ #: add-to-any.php:465
91
+ #: add-to-any.php:469
92
+ #: add-to-any.php:473
93
+ #: add-to-any.php:505
94
+ #, fuzzy
95
+ msgid "Share/Bookmark"
96
+ msgstr "Semneaza"
97
+
98
+ #: add-to-any.php:404
99
  msgid "Settings saved."
100
  msgstr "Impostationi salvate"
101
 
102
+ #: add-to-any.php:415
103
  msgid "Add to Any: Share/Save "
104
  msgstr "Add to Any: Amparte /Salveaza"
105
 
106
+ #: add-to-any.php:415
107
+ #: add-to-any.php:775
108
+ #: add-to-any.php:796
109
  msgid "Settings"
110
  msgstr "Impostationi"
111
 
112
+ #: add-to-any.php:425
113
  msgid "Standalone Services"
114
  msgstr "Servitii independente"
115
 
116
+ #: add-to-any.php:430
117
  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."
118
  msgstr "Alege aici dedesupt servitile care ati plac. &nbsp;Clicca la un servici active pentru a elimina.&nbsp;Ordineaza servicii prin drag and drop."
119
 
120
+ #: add-to-any.php:456
121
  msgid "Button"
122
  msgstr "Buton"
123
 
124
+ #: add-to-any.php:495
125
  msgid "Image URL"
126
  msgstr "Imagine URL"
127
 
128
+ #: add-to-any.php:502
129
  msgid "Text only"
130
  msgstr "Duar text"
131
 
132
+ #: add-to-any.php:510
133
  msgid "Placement"
134
  msgstr "Pozitia"
135
 
136
+ #: add-to-any.php:519
137
  msgid "Display Share/Save button at the bottom of posts"
138
  msgstr "Priveste Amparte/Salveaza buton la sfarsitul articolului"
139
 
140
+ #: add-to-any.php:526
141
  msgid "Display Share/Save button at the bottom of posts on the front page"
142
  msgstr "Priveste Amparte/Salveaza buton la sfarsitul articolului de la pagina principala"
143
 
144
+ #: add-to-any.php:533
145
  msgid "Display Share/Save button at the bottom of posts in the feed"
146
  msgstr "Priveste Amparte/Salveaza buton la sfarsitul de la feed"
147
 
148
+ #: add-to-any.php:537
149
  msgid "Display Share/Save button at the bottom of pages"
150
  msgstr "Priveste Amparte/Salveaza buton la sfarsitul de la pagina"
151
 
152
+ #: add-to-any.php:541
153
  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>)"
154
  msgstr "Daca e dezactivat, trebuie sa fim siguri sa punem codul seguit <a href=\"theme-editor.php\">tema de la pagina</a> ( cu <code>index.php</code>, <code>single.php</code>, si/sau <code>page.php</code>)"
155
 
156
+ #: add-to-any.php:550
157
  msgid "Menu Style"
158
  msgstr "Stil menu"
159
 
160
+ #: add-to-any.php:552
161
  msgid "Using Add to Any's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
162
  msgstr "Folosind stilul de la menu de la Add to Any,poti sa configurezi culorile de al tau Amparte/Salveaza ! Daca ai modificat, pune codul asa obtinut an cuadru de la <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">option ajunse</a> aici jos."
163
 
164
+ #: add-to-any.php:554
165
  msgid "Open the Add to Any Menu Styler in a new window"
166
  msgstr "Deschide an o noue fineastra pentru a personaliza il menu de la Add to Any"
167
 
168
+ #: add-to-any.php:556
169
  msgid "Open Menu Styler"
170
  msgstr "Stil menu"
171
 
172
+ #: add-to-any.php:561
173
  msgid "Menu Options"
174
  msgstr "Optioni menu"
175
 
176
+ #: add-to-any.php:566
177
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
178
  msgstr "Ascondi obiecte incorporate (Flash, video, etc.) care poti interferi cu menu vazut"
179
 
180
+ #: add-to-any.php:571
181
  msgid "Show the title of the post (or page) within the menu"
182
  msgstr "Priveste titlul de la articolul (sau pagina) an menu"
183
 
184
+ #: add-to-any.php:578
185
  msgid "Only show the menu when the user clicks the Share/Save button"
186
  msgstr "Arata menu duar cand autorul clicca pe butonul Amparte/Salveaza"
187
 
188
+ #: add-to-any.php:584
189
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
190
  msgstr "Deschide meniul addtoany.com antro noua feneastra sau scheda daca autorul clicca pe butonul Amparte/Salveava"
191
 
192
+ #: add-to-any.php:589
193
  msgid "Additional Options"
194
  msgstr "Optioni adiţionale"
195
 
196
+ #: add-to-any.php:593
197
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
198
  msgstr "Introduce aici jos codul personalizat pentru menu!"
199
 
200
+ #: add-to-any.php:597
201
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
202
  msgstr "Aici jos e posibil impostare variabilele JavaScript applicate a fiecare menu Amparte/Salveaza"
203
 
204
+ #: add-to-any.php:598
205
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
206
  msgstr "Autorul poate sa vada de la <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
207
 
208
+ #: add-to-any.php:604
209
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
210
  msgstr "<strong>Nota</strong>: Daca ajungi un nou cod, atentione se nu soprascrieti din gresiala fiecare cod de prima.</label>"
211
 
212
+ #: add-to-any.php:611
213
  msgid "Save Changes"
214
  msgstr "Salveaza schimbarile"
215
 
216
+ #: add-to-any.php:616
217
  msgid "Like this plugin?"
218
  msgstr "Ati place acest plugin?"
219
 
220
+ #: add-to-any.php:617
221
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
222
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Voteazama</a> sus WordPress.org."
223
 
224
+ #: add-to-any.php:618
225
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
226
  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\">Amparte</a> cu prieteni tai."
227
 
228
+ #: add-to-any.php:620
229
  msgid "Need support?"
230
  msgstr "Ai nevoie de ajutor?"
231
 
232
+ #: add-to-any.php:621
233
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
234
  msgstr "Priveste <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ</a>."
235
 
236
+ #: add-to-any.php:622
237
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
238
  msgstr "Cauta pe <a href=\"http://wordpress.org/tags/add-to-any\">forum</a>."
239
 
240
+ #: add-to-any.php:729
241
  msgid "Add/Remove Services"
242
  msgstr "Ajunge/Elimina servitii"
243
 
244
+ #: add-to-any.php:775
245
  msgid "Share/Save"
246
  msgstr "Amparte/Salveaza"
247
 
248
+ #: add-to-any.php:776
249
  msgid "Share/Save Buttons"
250
  msgstr "Amparte/Salveaza buton"
251
 
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: 2009-05-29 23:32-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Elvis <presley_el@mail.ru>\n"
8
  "Language-Team: \n"
@@ -13,228 +13,240 @@ msgstr ""
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: add-to-any.php:182
17
  msgid "Share"
18
  msgstr "Отправить другу"
19
 
20
- #: add-to-any.php:183
21
  msgid "Save"
22
  msgstr "Сохранить"
23
 
24
- #: add-to-any.php:184
25
  msgid "Subscribe"
26
  msgstr "Подписаться"
27
 
28
- #: add-to-any.php:185
29
  msgid "E-mail"
30
  msgstr "E-mail"
31
 
32
- #: add-to-any.php:186
33
  msgid "Bookmark"
34
  msgstr "В закладки!"
35
 
36
- #: add-to-any.php:187
37
  msgid "Show all"
38
  msgstr "Показать все"
39
 
40
- #: add-to-any.php:188
41
  msgid "Show less"
42
  msgstr "Показать остальное"
43
 
44
- #: add-to-any.php:189
45
  msgid "Find service(s)"
46
  msgstr "Найти сервис(ы)"
47
 
48
- #: add-to-any.php:190
49
  msgid "Instantly find any service to add to"
50
  msgstr "Найти сервис и добавить"
51
 
52
- #: add-to-any.php:191
53
  msgid "Powered by"
54
  msgstr "Работает на "
55
 
56
- #: add-to-any.php:192
57
  msgid "Share via e-mail"
58
  msgstr "Подписаться по e-mail"
59
 
60
- #: add-to-any.php:193
61
  msgid "Subscribe via e-mail"
62
  msgstr "Подписаться по e-mail"
63
 
64
- #: add-to-any.php:194
65
  msgid "Bookmark in your browser"
66
  msgstr "Добавить в закладки"
67
 
68
- #: add-to-any.php:195
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr "Нажмите Ctrl+В или &#8984;+D чтобы добавить страницу в закладки"
71
 
72
- #: add-to-any.php:196
73
  msgid "Add to your favorites"
74
  msgstr "Добавить в Избранное"
75
 
76
- #: add-to-any.php:197
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr "Отправить через e-mail сервис"
79
 
80
- #: add-to-any.php:198
81
  msgid "E-mail program"
82
  msgstr "E-mail сервисы"
83
 
84
- #: add-to-any.php:223
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:372
 
 
 
 
 
 
 
 
 
 
89
  msgid "Settings saved."
90
  msgstr "Найстройки сохранены."
91
 
92
- #: add-to-any.php:383
93
  msgid "Add to Any: Share/Save "
94
  msgstr "Сохранить/Отправить другу "
95
 
96
- #: add-to-any.php:383
97
- #: add-to-any.php:736
 
98
  msgid "Settings"
99
  msgstr "Настройки модуля"
100
 
101
- #: add-to-any.php:393
102
  msgid "Standalone Services"
103
  msgstr "Используемые сервисы"
104
 
105
- #: add-to-any.php:398
106
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
107
  msgstr "Выберите из списка ниже нужные вам сервисы.&nbsp;Чтобы удалить сервис из вашего списка - нажмите на его иконку еще раз.&nbsp;Для того чтобы поменять сервисы местами в вашем списке, просто нажмите на иконку и перетащите на нужное."
108
 
109
- #: add-to-any.php:417
110
  msgid "Button"
111
  msgstr "Внешний вид кнопки"
112
 
113
- #: add-to-any.php:456
114
  msgid "Image URL"
115
  msgstr "Адрес изображения"
116
 
117
- #: add-to-any.php:463
118
  msgid "Text only"
119
  msgstr "Только текст"
120
 
121
- #: add-to-any.php:471
122
  msgid "Placement"
123
  msgstr "Расположение"
124
 
125
- #: add-to-any.php:480
126
  msgid "Display Share/Save button at the bottom of posts"
127
  msgstr "Отображать кнопку Сохранить/Отправить другу в нижней части всех постов"
128
 
129
- #: add-to-any.php:487
130
  msgid "Display Share/Save button at the bottom of posts on the front page"
131
  msgstr "Отображать кнопку Сохранить/Отправить другу в нижней части постов на главной странице"
132
 
133
- #: add-to-any.php:494
134
  msgid "Display Share/Save button at the bottom of posts in the feed"
135
  msgstr "Отображать кнопку Сохранить/Отправить другу в нижней части постов в фидах"
136
 
137
- #: add-to-any.php:498
138
  msgid "Display Share/Save button at the bottom of pages"
139
  msgstr "Отображать кнопку Сохранить/Отправить другу в нижней части страниц"
140
 
141
- #: add-to-any.php:502
 
142
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
143
  msgstr "Если данные опции не работают, проверьте, вставлен ли необходимый для работы плагина код в <a href=\"theme-editor.php\">вашей теме оформления</a> (код должен быть вставлен на следующих страницах: <code>index.php</code>, <code>single.php</code>, и/или <code>page.php</code>)"
144
 
145
- #: add-to-any.php:511
146
  msgid "Menu Style"
147
  msgstr "Внешний вид меню"
148
 
149
- #: add-to-any.php:513
150
  msgid "Using Add to Any's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
151
  msgstr "Используйте этот инструмент для того, чтобы сделать ваше меню плагина Сохранить/Отправить другу уникальным в плане внешнего вида! Закончив настройки цветовой схемы, вставте полученный код в поле <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Дополнительные настройки</a>."
152
 
153
- #: add-to-any.php:515
154
  msgid "Open the Add to Any Menu Styler in a new window"
155
  msgstr "Открыть меню стилей для плагина Сохранить/Отправить другу в новом окне"
156
 
157
- #: add-to-any.php:517
158
  msgid "Open Menu Styler"
159
  msgstr "Открыть меню внешнего вида"
160
 
161
- #: add-to-any.php:522
162
  msgid "Menu Options"
163
  msgstr "Настройки меню"
164
 
165
- #: add-to-any.php:527
166
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
167
  msgstr "Отключать различные эффекты (Flash, видео и другие), работающие параллельно с меню плагина"
168
 
169
- #: add-to-any.php:532
170
  msgid "Show the title of the post (or page) within the menu"
171
  msgstr "Показывать название заметки или страницы в меню плагина"
172
 
173
- #: add-to-any.php:539
174
  msgid "Only show the menu when the user clicks the Share/Save button"
175
  msgstr "Показывать меню плагина только если пользователь нажмет на кнопку Сохранить/Отправить другу"
176
 
177
- #: add-to-any.php:545
178
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
179
  msgstr "Открывать меню addtoany.com в новом окне браузера, если пользователь нажал на кнопку плагина Сохранить/Отправить другу"
180
 
181
- #: add-to-any.php:550
182
  msgid "Additional Options"
183
  msgstr "Дополнительные настройки"
184
 
185
- #: add-to-any.php:554
186
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
187
  msgstr "Вставте в поле ниже полученный код для изменения внешнего вида меню плагина!"
188
 
189
- #: add-to-any.php:558
190
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
191
  msgstr "В поле ниже вы можете вставить полученный код, который изменит внешний вид меню плагина. "
192
 
193
- #: add-to-any.php:559
194
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
195
  msgstr "Если вы хотите узнать больше про технологии, используемые в плагине, читайте заметку о <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
196
 
197
- #: add-to-any.php:565
198
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
199
  msgstr "<strong>Обратите внимание</strong>! Вы добавили новый код, будте осторожны, новый код будет записан поверх старого.</label>"
200
 
201
- #: add-to-any.php:572
202
  msgid "Save Changes"
203
  msgstr "Сохранить все изменения"
204
 
205
- #: add-to-any.php:577
206
  msgid "Like this plugin?"
207
  msgstr "Понравился плагин?"
208
 
209
- #: add-to-any.php:578
210
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
211
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Оцените этот плагин</a> на сайте WordPress.org."
212
 
213
- #: add-to-any.php:579
214
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
215
  msgstr "<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> своим друзьям."
216
 
217
- #: add-to-any.php:581
218
  msgid "Need support?"
219
  msgstr "Нужна помощь?"
220
 
221
- #: add-to-any.php:582
222
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
223
  msgstr "Смотрите <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">ЧАВО</a>."
224
 
225
- #: add-to-any.php:583
226
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
227
  msgstr "Ответы на свои вопросы также ищите на <a href=\"http://wordpress.org/tags/add-to-any\">форумах поддержки</a>."
228
 
229
- #: add-to-any.php:690
230
  msgid "Add/Remove Services"
231
  msgstr "Добавить/Удалить сервисы"
232
 
233
- #: add-to-any.php:736
234
  msgid "Share/Save"
235
  msgstr "Сохранить/Отправить другу"
236
 
237
- #: add-to-any.php:737
238
  msgid "Share/Save Buttons"
239
  msgstr "Сохранить/Отправить другу"
240
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-12-18 00:13-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Elvis <presley_el@mail.ru>\n"
8
  "Language-Team: \n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
+ #: add-to-any.php:211
17
  msgid "Share"
18
  msgstr "Отправить другу"
19
 
20
+ #: add-to-any.php:212
21
  msgid "Save"
22
  msgstr "Сохранить"
23
 
24
+ #: add-to-any.php:213
25
  msgid "Subscribe"
26
  msgstr "Подписаться"
27
 
28
+ #: add-to-any.php:214
29
  msgid "E-mail"
30
  msgstr "E-mail"
31
 
32
+ #: add-to-any.php:215
33
  msgid "Bookmark"
34
  msgstr "В закладки!"
35
 
36
+ #: add-to-any.php:216
37
  msgid "Show all"
38
  msgstr "Показать все"
39
 
40
+ #: add-to-any.php:217
41
  msgid "Show less"
42
  msgstr "Показать остальное"
43
 
44
+ #: add-to-any.php:218
45
  msgid "Find service(s)"
46
  msgstr "Найти сервис(ы)"
47
 
48
+ #: add-to-any.php:219
49
  msgid "Instantly find any service to add to"
50
  msgstr "Найти сервис и добавить"
51
 
52
+ #: add-to-any.php:220
53
  msgid "Powered by"
54
  msgstr "Работает на "
55
 
56
+ #: add-to-any.php:221
57
  msgid "Share via e-mail"
58
  msgstr "Подписаться по e-mail"
59
 
60
+ #: add-to-any.php:222
61
  msgid "Subscribe via e-mail"
62
  msgstr "Подписаться по e-mail"
63
 
64
+ #: add-to-any.php:223
65
  msgid "Bookmark in your browser"
66
  msgstr "Добавить в закладки"
67
 
68
+ #: add-to-any.php:224
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr "Нажмите Ctrl+В или &#8984;+D чтобы добавить страницу в закладки"
71
 
72
+ #: add-to-any.php:225
73
  msgid "Add to your favorites"
74
  msgstr "Добавить в Избранное"
75
 
76
+ #: add-to-any.php:226
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr "Отправить через e-mail сервис"
79
 
80
+ #: add-to-any.php:227
81
  msgid "E-mail program"
82
  msgstr "E-mail сервисы"
83
 
84
+ #: add-to-any.php:252
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:390
89
+ #: add-to-any.php:461
90
+ #: add-to-any.php:465
91
+ #: add-to-any.php:469
92
+ #: add-to-any.php:473
93
+ #: add-to-any.php:505
94
+ #, fuzzy
95
+ msgid "Share/Bookmark"
96
+ msgstr "В закладки!"
97
+
98
+ #: add-to-any.php:404
99
  msgid "Settings saved."
100
  msgstr "Найстройки сохранены."
101
 
102
+ #: add-to-any.php:415
103
  msgid "Add to Any: Share/Save "
104
  msgstr "Сохранить/Отправить другу "
105
 
106
+ #: add-to-any.php:415
107
+ #: add-to-any.php:775
108
+ #: add-to-any.php:796
109
  msgid "Settings"
110
  msgstr "Настройки модуля"
111
 
112
+ #: add-to-any.php:425
113
  msgid "Standalone Services"
114
  msgstr "Используемые сервисы"
115
 
116
+ #: add-to-any.php:430
117
  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."
118
  msgstr "Выберите из списка ниже нужные вам сервисы.&nbsp;Чтобы удалить сервис из вашего списка - нажмите на его иконку еще раз.&nbsp;Для того чтобы поменять сервисы местами в вашем списке, просто нажмите на иконку и перетащите на нужное."
119
 
120
+ #: add-to-any.php:456
121
  msgid "Button"
122
  msgstr "Внешний вид кнопки"
123
 
124
+ #: add-to-any.php:495
125
  msgid "Image URL"
126
  msgstr "Адрес изображения"
127
 
128
+ #: add-to-any.php:502
129
  msgid "Text only"
130
  msgstr "Только текст"
131
 
132
+ #: add-to-any.php:510
133
  msgid "Placement"
134
  msgstr "Расположение"
135
 
136
+ #: add-to-any.php:519
137
  msgid "Display Share/Save button at the bottom of posts"
138
  msgstr "Отображать кнопку Сохранить/Отправить другу в нижней части всех постов"
139
 
140
+ #: add-to-any.php:526
141
  msgid "Display Share/Save button at the bottom of posts on the front page"
142
  msgstr "Отображать кнопку Сохранить/Отправить другу в нижней части постов на главной странице"
143
 
144
+ #: add-to-any.php:533
145
  msgid "Display Share/Save button at the bottom of posts in the feed"
146
  msgstr "Отображать кнопку Сохранить/Отправить другу в нижней части постов в фидах"
147
 
148
+ #: add-to-any.php:537
149
  msgid "Display Share/Save button at the bottom of pages"
150
  msgstr "Отображать кнопку Сохранить/Отправить другу в нижней части страниц"
151
 
152
+ #: add-to-any.php:541
153
+ #, fuzzy
154
  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>)"
155
  msgstr "Если данные опции не работают, проверьте, вставлен ли необходимый для работы плагина код в <a href=\"theme-editor.php\">вашей теме оформления</a> (код должен быть вставлен на следующих страницах: <code>index.php</code>, <code>single.php</code>, и/или <code>page.php</code>)"
156
 
157
+ #: add-to-any.php:550
158
  msgid "Menu Style"
159
  msgstr "Внешний вид меню"
160
 
161
+ #: add-to-any.php:552
162
  msgid "Using Add to Any's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
163
  msgstr "Используйте этот инструмент для того, чтобы сделать ваше меню плагина Сохранить/Отправить другу уникальным в плане внешнего вида! Закончив настройки цветовой схемы, вставте полученный код в поле <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Дополнительные настройки</a>."
164
 
165
+ #: add-to-any.php:554
166
  msgid "Open the Add to Any Menu Styler in a new window"
167
  msgstr "Открыть меню стилей для плагина Сохранить/Отправить другу в новом окне"
168
 
169
+ #: add-to-any.php:556
170
  msgid "Open Menu Styler"
171
  msgstr "Открыть меню внешнего вида"
172
 
173
+ #: add-to-any.php:561
174
  msgid "Menu Options"
175
  msgstr "Настройки меню"
176
 
177
+ #: add-to-any.php:566
178
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
179
  msgstr "Отключать различные эффекты (Flash, видео и другие), работающие параллельно с меню плагина"
180
 
181
+ #: add-to-any.php:571
182
  msgid "Show the title of the post (or page) within the menu"
183
  msgstr "Показывать название заметки или страницы в меню плагина"
184
 
185
+ #: add-to-any.php:578
186
  msgid "Only show the menu when the user clicks the Share/Save button"
187
  msgstr "Показывать меню плагина только если пользователь нажмет на кнопку Сохранить/Отправить другу"
188
 
189
+ #: add-to-any.php:584
190
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
191
  msgstr "Открывать меню addtoany.com в новом окне браузера, если пользователь нажал на кнопку плагина Сохранить/Отправить другу"
192
 
193
+ #: add-to-any.php:589
194
  msgid "Additional Options"
195
  msgstr "Дополнительные настройки"
196
 
197
+ #: add-to-any.php:593
198
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
199
  msgstr "Вставте в поле ниже полученный код для изменения внешнего вида меню плагина!"
200
 
201
+ #: add-to-any.php:597
202
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
203
  msgstr "В поле ниже вы можете вставить полученный код, который изменит внешний вид меню плагина. "
204
 
205
+ #: add-to-any.php:598
206
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
207
  msgstr "Если вы хотите узнать больше про технологии, используемые в плагине, читайте заметку о <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
208
 
209
+ #: add-to-any.php:604
210
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
211
  msgstr "<strong>Обратите внимание</strong>! Вы добавили новый код, будте осторожны, новый код будет записан поверх старого.</label>"
212
 
213
+ #: add-to-any.php:611
214
  msgid "Save Changes"
215
  msgstr "Сохранить все изменения"
216
 
217
+ #: add-to-any.php:616
218
  msgid "Like this plugin?"
219
  msgstr "Понравился плагин?"
220
 
221
+ #: add-to-any.php:617
222
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
223
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Оцените этот плагин</a> на сайте WordPress.org."
224
 
225
+ #: add-to-any.php:618
226
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
227
  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> своим друзьям."
228
 
229
+ #: add-to-any.php:620
230
  msgid "Need support?"
231
  msgstr "Нужна помощь?"
232
 
233
+ #: add-to-any.php:621
234
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
235
  msgstr "Смотрите <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">ЧАВО</a>."
236
 
237
+ #: add-to-any.php:622
238
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
239
  msgstr "Ответы на свои вопросы также ищите на <a href=\"http://wordpress.org/tags/add-to-any\">форумах поддержки</a>."
240
 
241
+ #: add-to-any.php:729
242
  msgid "Add/Remove Services"
243
  msgstr "Добавить/Удалить сервисы"
244
 
245
+ #: add-to-any.php:775
246
  msgid "Share/Save"
247
  msgstr "Сохранить/Отправить другу"
248
 
249
+ #: add-to-any.php:776
250
  msgid "Share/Save Buttons"
251
  msgstr "Сохранить/Отправить другу"
252
 
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: 2009-11-09 17:17-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: \n"
8
  "Language-Team: Romeo Shuka | http://www.romeolab.com/ <webmaster@romeolab.com>\n"
@@ -15,229 +15,239 @@ msgstr ""
15
  "X-Poedit-Country: ALBANIA\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: add-to-any.php:208
19
  msgid "Share"
20
  msgstr "Shpërndaj"
21
 
22
- #: add-to-any.php:209
23
  msgid "Save"
24
  msgstr "Ruaj"
25
 
26
- #: add-to-any.php:210
27
  msgid "Subscribe"
28
  msgstr "Abonohu"
29
 
30
- #: add-to-any.php:211
31
  msgid "E-mail"
32
  msgstr "E-mail"
33
 
34
- #: add-to-any.php:212
35
  msgid "Bookmark"
36
  msgstr "Bookmark"
37
 
38
- #: add-to-any.php:213
39
  msgid "Show all"
40
  msgstr "Trego të gjitha"
41
 
42
- #: add-to-any.php:214
43
  msgid "Show less"
44
  msgstr "Trego më pak"
45
 
46
- #: add-to-any.php:215
47
  msgid "Find service(s)"
48
  msgstr "Gjej shërbimin"
49
 
50
- #: add-to-any.php:216
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:217
55
  msgid "Powered by"
56
  msgstr "Fuqizuar nga"
57
 
58
- #: add-to-any.php:218
59
  msgid "Share via e-mail"
60
  msgstr "Përhap me e-mail"
61
 
62
- #: add-to-any.php:219
63
  msgid "Subscribe via e-mail"
64
  msgstr "Abonohu me email"
65
 
66
- #: add-to-any.php:220
67
  msgid "Bookmark in your browser"
68
  msgstr "Shtoje në bookmark të shfletuesit tuaj"
69
 
70
- #: add-to-any.php:221
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:222
75
  msgid "Add to your favorites"
76
  msgstr "Shtoje tek të preferuarat"
77
 
78
- #: add-to-any.php:223
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:224
83
  msgid "E-mail program"
84
  msgstr "Klienti i postës elektronike"
85
 
86
- #: add-to-any.php:249
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:401
 
 
 
 
 
 
 
 
 
 
91
  msgid "Settings saved."
92
  msgstr "Opsionet u ruajtën."
93
 
94
- #: add-to-any.php:412
95
  msgid "Add to Any: Share/Save "
96
  msgstr "Add to Any: Shpërnda/Ruaj"
97
 
98
- #: add-to-any.php:412
99
- #: add-to-any.php:772
100
- #: add-to-any.php:793
101
  msgid "Settings"
102
  msgstr "Opsionet"
103
 
104
- #: add-to-any.php:422
105
  msgid "Standalone Services"
106
  msgstr "Shërbime të pavarur"
107
 
108
- #: add-to-any.php:427
109
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
110
  msgstr "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."
111
 
112
- #: add-to-any.php:453
113
  msgid "Button"
114
  msgstr "Buton"
115
 
116
- #: add-to-any.php:492
117
  msgid "Image URL"
118
  msgstr "URL e imazhit"
119
 
120
- #: add-to-any.php:499
121
  msgid "Text only"
122
  msgstr "Vetëm tekst"
123
 
124
- #: add-to-any.php:507
125
  msgid "Placement"
126
  msgstr "Vendndodhja"
127
 
128
- #: add-to-any.php:516
129
  msgid "Display Share/Save button at the bottom of posts"
130
  msgstr "Trego butonin Share/Save në fund të artikujve"
131
 
132
- #: add-to-any.php:523
133
  msgid "Display Share/Save button at the bottom of posts on the front page"
134
  msgstr "Trego butonin Share/Save në fund të artikujve në faqen kryesore"
135
 
136
- #: add-to-any.php:530
137
  msgid "Display Share/Save button at the bottom of posts in the feed"
138
  msgstr "Trego butonin Share/Save në fund të artikujve feed"
139
 
140
- #: add-to-any.php:534
141
  msgid "Display Share/Save button at the bottom of pages"
142
  msgstr "Trego butonin Share/Save në fund të faqeve"
143
 
144
- #: add-to-any.php:538
145
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
146
  msgstr "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>)"
147
 
148
- #: add-to-any.php:547
149
  msgid "Menu Style"
150
  msgstr "Stili i menusë"
151
 
152
- #: add-to-any.php:549
153
  msgid "Using Add to Any's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
154
  msgstr "Duke përdorur Menunë Styler të Add to Any 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ë."
155
 
156
- #: add-to-any.php:551
157
  msgid "Open the Add to Any Menu Styler in a new window"
158
  msgstr "Hape në një faqe të re për të personalizuar menunë e Add to Any"
159
 
160
- #: add-to-any.php:553
161
  msgid "Open Menu Styler"
162
  msgstr "Stili menu"
163
 
164
- #: add-to-any.php:558
165
  msgid "Menu Options"
166
  msgstr "Opsionet e menusë"
167
 
168
- #: add-to-any.php:563
169
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
170
  msgstr "Fshih objektet e inkorporuar (Flash, video, etj.) të cilët mund të ndikojnë në shikimin e rregullt të menusë"
171
 
172
- #: add-to-any.php:568
173
  msgid "Show the title of the post (or page) within the menu"
174
  msgstr "Trego në menu titullin e artikullit (ose të faqes)"
175
 
176
- #: add-to-any.php:575
177
  msgid "Only show the menu when the user clicks the Share/Save button"
178
  msgstr "Trego menunë vetëm kur një anëtar klikon mbi butonin Share/Save"
179
 
180
- #: add-to-any.php:581
181
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
182
  msgstr "Hap në një skedë apo dritare të re faqen menu të addtoany.com kur një vizitor klikon mbi butonin Share/Save"
183
 
184
- #: add-to-any.php:586
185
  msgid "Additional Options"
186
  msgstr "Opsione shtesë"
187
 
188
- #: add-to-any.php:590
189
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
190
  msgstr "Ngjit në kutinë poshtë kodin tuaj të personalizuar të menusë! "
191
 
192
- #: add-to-any.php:594
193
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
194
  msgstr "Këtu poshtë është e mundur ndryshimi i variableve të JavaScript që përdor menuja Share/Save."
195
 
196
- #: add-to-any.php:595
197
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
198
  msgstr "Përdoruesit me njohuri më të thella mund të eksplorojnë <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a> të Add to Any."
199
 
200
- #: add-to-any.php:601
201
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
202
  msgstr "<strong>Shënim</strong>: nëse ti vendos kod të ri, ki kujdes mos të rishkruash ndonjë kod të vjetër.</label>"
203
 
204
- #: add-to-any.php:608
205
  msgid "Save Changes"
206
  msgstr "Ruaj ndryshimet"
207
 
208
- #: add-to-any.php:613
209
  msgid "Like this plugin?"
210
  msgstr "Të pëlqeu ky plugin?"
211
 
212
- #: add-to-any.php:614
213
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
214
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Votoje</a> në WordPress.org."
215
 
216
- #: add-to-any.php:615
217
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
218
  msgstr "<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.."
219
 
220
- #: add-to-any.php:617
221
  msgid "Need support?"
222
  msgstr "Të duhet ndihmë??"
223
 
224
- #: add-to-any.php:618
225
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
226
  msgstr "Shiko faqen dedikuar <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ</a>."
227
 
228
- #: add-to-any.php:619
229
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
230
  msgstr "Bëj një kërkim në <a href=\"http://wordpress.org/tags/add-to-any\">forum</a>."
231
 
232
- #: add-to-any.php:726
233
  msgid "Add/Remove Services"
234
  msgstr "Shtoi/Hiq shërbimet"
235
 
236
- #: add-to-any.php:772
237
  msgid "Share/Save"
238
  msgstr "Shpërnda/Ruaj"
239
 
240
- #: add-to-any.php:773
241
  msgid "Share/Save Buttons"
242
  msgstr "Butoni Shpërnda/Ruaj"
243
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any ne shqip\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-12-18 00:13-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: \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:211
19
  msgid "Share"
20
  msgstr "Shpërndaj"
21
 
22
+ #: add-to-any.php:212
23
  msgid "Save"
24
  msgstr "Ruaj"
25
 
26
+ #: add-to-any.php:213
27
  msgid "Subscribe"
28
  msgstr "Abonohu"
29
 
30
+ #: add-to-any.php:214
31
  msgid "E-mail"
32
  msgstr "E-mail"
33
 
34
+ #: add-to-any.php:215
35
  msgid "Bookmark"
36
  msgstr "Bookmark"
37
 
38
+ #: add-to-any.php:216
39
  msgid "Show all"
40
  msgstr "Trego të gjitha"
41
 
42
+ #: add-to-any.php:217
43
  msgid "Show less"
44
  msgstr "Trego më pak"
45
 
46
+ #: add-to-any.php:218
47
  msgid "Find service(s)"
48
  msgstr "Gjej shërbimin"
49
 
50
+ #: add-to-any.php:219
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:220
55
  msgid "Powered by"
56
  msgstr "Fuqizuar nga"
57
 
58
+ #: add-to-any.php:221
59
  msgid "Share via e-mail"
60
  msgstr "Përhap me e-mail"
61
 
62
+ #: add-to-any.php:222
63
  msgid "Subscribe via e-mail"
64
  msgstr "Abonohu me email"
65
 
66
+ #: add-to-any.php:223
67
  msgid "Bookmark in your browser"
68
  msgstr "Shtoje në bookmark të shfletuesit tuaj"
69
 
70
+ #: add-to-any.php:224
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:225
75
  msgid "Add to your favorites"
76
  msgstr "Shtoje tek të preferuarat"
77
 
78
+ #: add-to-any.php:226
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:227
83
  msgid "E-mail program"
84
  msgstr "Klienti i postës elektronike"
85
 
86
+ #: add-to-any.php:252
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:390
91
+ #: add-to-any.php:461
92
+ #: add-to-any.php:465
93
+ #: add-to-any.php:469
94
+ #: add-to-any.php:473
95
+ #: add-to-any.php:505
96
+ #, fuzzy
97
+ msgid "Share/Bookmark"
98
+ msgstr "Bookmark"
99
+
100
+ #: add-to-any.php:404
101
  msgid "Settings saved."
102
  msgstr "Opsionet u ruajtën."
103
 
104
+ #: add-to-any.php:415
105
  msgid "Add to Any: Share/Save "
106
  msgstr "Add to Any: Shpërnda/Ruaj"
107
 
108
+ #: add-to-any.php:415
109
+ #: add-to-any.php:775
110
+ #: add-to-any.php:796
111
  msgid "Settings"
112
  msgstr "Opsionet"
113
 
114
+ #: add-to-any.php:425
115
  msgid "Standalone Services"
116
  msgstr "Shërbime të pavarur"
117
 
118
+ #: add-to-any.php:430
119
  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."
120
  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."
121
 
122
+ #: add-to-any.php:456
123
  msgid "Button"
124
  msgstr "Buton"
125
 
126
+ #: add-to-any.php:495
127
  msgid "Image URL"
128
  msgstr "URL e imazhit"
129
 
130
+ #: add-to-any.php:502
131
  msgid "Text only"
132
  msgstr "Vetëm tekst"
133
 
134
+ #: add-to-any.php:510
135
  msgid "Placement"
136
  msgstr "Vendndodhja"
137
 
138
+ #: add-to-any.php:519
139
  msgid "Display Share/Save button at the bottom of posts"
140
  msgstr "Trego butonin Share/Save në fund të artikujve"
141
 
142
+ #: add-to-any.php:526
143
  msgid "Display Share/Save button at the bottom of posts on the front page"
144
  msgstr "Trego butonin Share/Save në fund të artikujve në faqen kryesore"
145
 
146
+ #: add-to-any.php:533
147
  msgid "Display Share/Save button at the bottom of posts in the feed"
148
  msgstr "Trego butonin Share/Save në fund të artikujve feed"
149
 
150
+ #: add-to-any.php:537
151
  msgid "Display Share/Save button at the bottom of pages"
152
  msgstr "Trego butonin Share/Save në fund të faqeve"
153
 
154
+ #: add-to-any.php:541
155
  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>)"
156
  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>)"
157
 
158
+ #: add-to-any.php:550
159
  msgid "Menu Style"
160
  msgstr "Stili i menusë"
161
 
162
+ #: add-to-any.php:552
163
  msgid "Using Add to Any's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
164
  msgstr "Duke përdorur Menunë Styler të Add to Any 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ë."
165
 
166
+ #: add-to-any.php:554
167
  msgid "Open the Add to Any Menu Styler in a new window"
168
  msgstr "Hape në një faqe të re për të personalizuar menunë e Add to Any"
169
 
170
+ #: add-to-any.php:556
171
  msgid "Open Menu Styler"
172
  msgstr "Stili menu"
173
 
174
+ #: add-to-any.php:561
175
  msgid "Menu Options"
176
  msgstr "Opsionet e menusë"
177
 
178
+ #: add-to-any.php:566
179
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
180
  msgstr "Fshih objektet e inkorporuar (Flash, video, etj.) të cilët mund të ndikojnë në shikimin e rregullt të menusë"
181
 
182
+ #: add-to-any.php:571
183
  msgid "Show the title of the post (or page) within the menu"
184
  msgstr "Trego në menu titullin e artikullit (ose të faqes)"
185
 
186
+ #: add-to-any.php:578
187
  msgid "Only show the menu when the user clicks the Share/Save button"
188
  msgstr "Trego menunë vetëm kur një anëtar klikon mbi butonin Share/Save"
189
 
190
+ #: add-to-any.php:584
191
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
192
  msgstr "Hap në një skedë apo dritare të re faqen menu të addtoany.com kur një vizitor klikon mbi butonin Share/Save"
193
 
194
+ #: add-to-any.php:589
195
  msgid "Additional Options"
196
  msgstr "Opsione shtesë"
197
 
198
+ #: add-to-any.php:593
199
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
200
  msgstr "Ngjit në kutinë poshtë kodin tuaj të personalizuar të menusë! "
201
 
202
+ #: add-to-any.php:597
203
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
204
  msgstr "Këtu poshtë është e mundur ndryshimi i variableve të JavaScript që përdor menuja Share/Save."
205
 
206
+ #: add-to-any.php:598
207
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
208
  msgstr "Përdoruesit me njohuri më të thella mund të eksplorojnë <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a> të Add to Any."
209
 
210
+ #: add-to-any.php:604
211
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
212
  msgstr "<strong>Shënim</strong>: nëse ti vendos kod të ri, ki kujdes mos të rishkruash ndonjë kod të vjetër.</label>"
213
 
214
+ #: add-to-any.php:611
215
  msgid "Save Changes"
216
  msgstr "Ruaj ndryshimet"
217
 
218
+ #: add-to-any.php:616
219
  msgid "Like this plugin?"
220
  msgstr "Të pëlqeu ky plugin?"
221
 
222
+ #: add-to-any.php:617
223
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
224
  msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Votoje</a> në WordPress.org."
225
 
226
+ #: add-to-any.php:618
227
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
228
  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.."
229
 
230
+ #: add-to-any.php:620
231
  msgid "Need support?"
232
  msgstr "Të duhet ndihmë??"
233
 
234
+ #: add-to-any.php:621
235
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
236
  msgstr "Shiko faqen dedikuar <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ</a>."
237
 
238
+ #: add-to-any.php:622
239
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
240
  msgstr "Bëj një kërkim në <a href=\"http://wordpress.org/tags/add-to-any\">forum</a>."
241
 
242
+ #: add-to-any.php:729
243
  msgid "Add/Remove Services"
244
  msgstr "Shtoi/Hiq shërbimet"
245
 
246
+ #: add-to-any.php:775
247
  msgid "Share/Save"
248
  msgstr "Shpërnda/Ruaj"
249
 
250
+ #: add-to-any.php:776
251
  msgid "Share/Save Buttons"
252
  msgstr "Butoni Shpërnda/Ruaj"
253
 
languages/add-to-any-zh_CN.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-11-09 17:17-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: \n"
@@ -16,233 +16,243 @@ msgstr ""
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: add-to-any.php:208
20
  msgid "Share"
21
  msgstr "分享"
22
 
23
- #: add-to-any.php:209
24
  msgid "Save"
25
  msgstr "收藏"
26
 
27
- #: add-to-any.php:210
28
  msgid "Subscribe"
29
  msgstr "订阅"
30
 
31
- #: add-to-any.php:211
32
  msgid "E-mail"
33
  msgstr "电子邮件"
34
 
35
- #: add-to-any.php:212
36
  msgid "Bookmark"
37
  msgstr "书签"
38
 
39
- #: add-to-any.php:213
40
  msgid "Show all"
41
  msgstr "显示全部服务"
42
 
43
- #: add-to-any.php:214
44
  msgid "Show less"
45
  msgstr "显示部分服务"
46
 
47
- #: add-to-any.php:215
48
  msgid "Find service(s)"
49
  msgstr "查找服务"
50
 
51
- #: add-to-any.php:216
52
  msgid "Instantly find any service to add to"
53
  msgstr "动态查找任何用以添加的服务"
54
 
55
- #: add-to-any.php:217
56
  msgid "Powered by"
57
  msgstr "Powered by"
58
 
59
- #: add-to-any.php:218
60
  msgid "Share via e-mail"
61
  msgstr "通过电子邮件分享"
62
 
63
- #: add-to-any.php:219
64
  msgid "Subscribe via e-mail"
65
  msgstr "通过电子邮件订阅"
66
 
67
- #: add-to-any.php:220
68
  msgid "Bookmark in your browser"
69
  msgstr "添加为浏览器书签"
70
 
71
- #: add-to-any.php:221
72
  #, fuzzy
73
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
74
  msgstr "按下 [Ctrl+D] 或 [Cmd+D] 将本页加为书签"
75
 
76
- #: add-to-any.php:222
77
  msgid "Add to your favorites"
78
  msgstr "添加至收藏夹"
79
 
80
- #: add-to-any.php:223
81
  msgid "Send from any e-mail address or e-mail program"
82
  msgstr "从任何电子邮件地址或电子邮件程序发送"
83
 
84
- #: add-to-any.php:224
85
  msgid "E-mail program"
86
  msgstr "电子邮件程序"
87
 
88
- #: add-to-any.php:249
89
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
90
  msgstr ""
91
 
92
- #: add-to-any.php:401
 
 
 
 
 
 
 
 
 
 
93
  msgid "Settings saved."
94
  msgstr "设置已保存"
95
 
96
- #: add-to-any.php:412
97
  msgid "Add to Any: Share/Save "
98
  msgstr "Add to Any: 分享/收藏"
99
 
100
- #: add-to-any.php:412
101
- #: add-to-any.php:772
102
- #: add-to-any.php:793
103
  msgid "Settings"
104
  msgstr "设置"
105
 
106
- #: add-to-any.php:422
107
  msgid "Standalone Services"
108
  msgstr ""
109
 
110
- #: add-to-any.php:427
111
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
112
  msgstr ""
113
 
114
- #: add-to-any.php:453
115
  msgid "Button"
116
  msgstr "按钮"
117
 
118
- #: add-to-any.php:492
119
  msgid "Image URL"
120
  msgstr "图片 URL"
121
 
122
- #: add-to-any.php:499
123
  msgid "Text only"
124
  msgstr "仅用文字"
125
 
126
- #: add-to-any.php:507
127
  #, fuzzy
128
  msgid "Placement"
129
  msgstr "按钮位置"
130
 
131
- #: add-to-any.php:516
132
  msgid "Display Share/Save button at the bottom of posts"
133
  msgstr "在文章底部显示 分享/收藏 按钮"
134
 
135
- #: add-to-any.php:523
136
  msgid "Display Share/Save button at the bottom of posts on the front page"
137
  msgstr "在首页的文章底部显示 分享/收藏 按钮"
138
 
139
- #: add-to-any.php:530
140
  msgid "Display Share/Save button at the bottom of posts in the feed"
141
  msgstr "在 Feed 的文章底部显示 分享/收藏 按钮"
142
 
143
- #: add-to-any.php:534
144
  msgid "Display Share/Save button at the bottom of pages"
145
  msgstr "在页面底部显示 分享/收藏 按钮"
146
 
147
- #: add-to-any.php:538
148
  #, fuzzy
149
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
150
  msgstr "如果不选,请确定将以下代码置入于 <a href=\"theme-editor.php\">您的模板页面</a> 中 (包括 <code>index.php</code>,<code>single.php</code>,与/或 <code>page.php</code>)"
151
 
152
- #: add-to-any.php:547
153
  msgid "Menu Style"
154
  msgstr "菜单风格"
155
 
156
- #: add-to-any.php:549
157
  msgid "Using Add to Any's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
158
  msgstr "使用 Add to Any 的菜单风格设置器,您可以自定义您的 分享/收藏 菜单的颜色!完成后,请将生成的代码粘贴于下方 <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">附加选项</a> 框内。"
159
 
160
- #: add-to-any.php:551
161
  msgid "Open the Add to Any Menu Styler in a new window"
162
  msgstr "在新窗口中打开 Add to Any 菜单风格设置器"
163
 
164
- #: add-to-any.php:553
165
  msgid "Open Menu Styler"
166
  msgstr "打开菜单风格设置器"
167
 
168
- #: add-to-any.php:558
169
  msgid "Menu Options"
170
  msgstr "菜单选项"
171
 
172
- #: add-to-any.php:563
173
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
174
  msgstr "菜单显示时隐藏与菜单相交的嵌入式对象(Flash,视频,等) "
175
 
176
- #: add-to-any.php:568
177
  msgid "Show the title of the post (or page) within the menu"
178
  msgstr "菜单中显示文章(或页面)的标题"
179
 
180
- #: add-to-any.php:575
181
  msgid "Only show the menu when the user clicks the Share/Save button"
182
  msgstr "仅当用户点击 分享/收藏 按钮时显示菜单"
183
 
184
- #: add-to-any.php:581
185
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
186
  msgstr "如用户点击 分享/收藏 按钮,在新标签页或新窗口中打开 addtoany.com 菜单页面"
187
 
188
- #: add-to-any.php:586
189
  msgid "Additional Options"
190
  msgstr "附加选项"
191
 
192
- #: add-to-any.php:590
193
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
194
  msgstr "粘贴 Add to Any 菜单风格设置器生成的代码于下方框内!"
195
 
196
- #: add-to-any.php:594
197
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
198
  msgstr "您可以设置特殊 JavaScript 变量以应用于全部 分享/收藏 菜单。"
199
 
200
- #: add-to-any.php:595
201
  #, fuzzy
202
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
203
  msgstr "高级用户可能希望尝试 Add to Any 的 <a href=\"http://www.addtoany.com/buttons/api/\">JavaScript API</a> 所生成的代码。"
204
 
205
- #: add-to-any.php:601
206
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
207
  msgstr "<strong>注意</strong>: 如果您打算添加新代码,请小心不要意外覆盖任何先前代码。</label>"
208
 
209
- #: add-to-any.php:608
210
  msgid "Save Changes"
211
  msgstr "保存更改"
212
 
213
- #: add-to-any.php:613
214
  msgid "Like this plugin?"
215
  msgstr ""
216
 
217
- #: add-to-any.php:614
218
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
219
  msgstr ""
220
 
221
- #: add-to-any.php:615
222
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
223
  msgstr ""
224
 
225
- #: add-to-any.php:617
226
  msgid "Need support?"
227
  msgstr ""
228
 
229
- #: add-to-any.php:618
230
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
231
  msgstr ""
232
 
233
- #: add-to-any.php:619
234
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
235
  msgstr ""
236
 
237
- #: add-to-any.php:726
238
  msgid "Add/Remove Services"
239
  msgstr ""
240
 
241
- #: add-to-any.php:772
242
  msgid "Share/Save"
243
  msgstr "分享/收藏"
244
 
245
- #: add-to-any.php:773
246
  msgid "Share/Save Buttons"
247
  msgstr "分享/收藏 按钮"
248
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-12-18 00:13-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: \n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: add-to-any.php:211
20
  msgid "Share"
21
  msgstr "分享"
22
 
23
+ #: add-to-any.php:212
24
  msgid "Save"
25
  msgstr "收藏"
26
 
27
+ #: add-to-any.php:213
28
  msgid "Subscribe"
29
  msgstr "订阅"
30
 
31
+ #: add-to-any.php:214
32
  msgid "E-mail"
33
  msgstr "电子邮件"
34
 
35
+ #: add-to-any.php:215
36
  msgid "Bookmark"
37
  msgstr "书签"
38
 
39
+ #: add-to-any.php:216
40
  msgid "Show all"
41
  msgstr "显示全部服务"
42
 
43
+ #: add-to-any.php:217
44
  msgid "Show less"
45
  msgstr "显示部分服务"
46
 
47
+ #: add-to-any.php:218
48
  msgid "Find service(s)"
49
  msgstr "查找服务"
50
 
51
+ #: add-to-any.php:219
52
  msgid "Instantly find any service to add to"
53
  msgstr "动态查找任何用以添加的服务"
54
 
55
+ #: add-to-any.php:220
56
  msgid "Powered by"
57
  msgstr "Powered by"
58
 
59
+ #: add-to-any.php:221
60
  msgid "Share via e-mail"
61
  msgstr "通过电子邮件分享"
62
 
63
+ #: add-to-any.php:222
64
  msgid "Subscribe via e-mail"
65
  msgstr "通过电子邮件订阅"
66
 
67
+ #: add-to-any.php:223
68
  msgid "Bookmark in your browser"
69
  msgstr "添加为浏览器书签"
70
 
71
+ #: add-to-any.php:224
72
  #, fuzzy
73
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
74
  msgstr "按下 [Ctrl+D] 或 [Cmd+D] 将本页加为书签"
75
 
76
+ #: add-to-any.php:225
77
  msgid "Add to your favorites"
78
  msgstr "添加至收藏夹"
79
 
80
+ #: add-to-any.php:226
81
  msgid "Send from any e-mail address or e-mail program"
82
  msgstr "从任何电子邮件地址或电子邮件程序发送"
83
 
84
+ #: add-to-any.php:227
85
  msgid "E-mail program"
86
  msgstr "电子邮件程序"
87
 
88
+ #: add-to-any.php:252
89
  msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
90
  msgstr ""
91
 
92
+ #: add-to-any.php:390
93
+ #: add-to-any.php:461
94
+ #: add-to-any.php:465
95
+ #: add-to-any.php:469
96
+ #: add-to-any.php:473
97
+ #: add-to-any.php:505
98
+ #, fuzzy
99
+ msgid "Share/Bookmark"
100
+ msgstr "书签"
101
+
102
+ #: add-to-any.php:404
103
  msgid "Settings saved."
104
  msgstr "设置已保存"
105
 
106
+ #: add-to-any.php:415
107
  msgid "Add to Any: Share/Save "
108
  msgstr "Add to Any: 分享/收藏"
109
 
110
+ #: add-to-any.php:415
111
+ #: add-to-any.php:775
112
+ #: add-to-any.php:796
113
  msgid "Settings"
114
  msgstr "设置"
115
 
116
+ #: add-to-any.php:425
117
  msgid "Standalone Services"
118
  msgstr ""
119
 
120
+ #: add-to-any.php:430
121
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
122
  msgstr ""
123
 
124
+ #: add-to-any.php:456
125
  msgid "Button"
126
  msgstr "按钮"
127
 
128
+ #: add-to-any.php:495
129
  msgid "Image URL"
130
  msgstr "图片 URL"
131
 
132
+ #: add-to-any.php:502
133
  msgid "Text only"
134
  msgstr "仅用文字"
135
 
136
+ #: add-to-any.php:510
137
  #, fuzzy
138
  msgid "Placement"
139
  msgstr "按钮位置"
140
 
141
+ #: add-to-any.php:519
142
  msgid "Display Share/Save button at the bottom of posts"
143
  msgstr "在文章底部显示 分享/收藏 按钮"
144
 
145
+ #: add-to-any.php:526
146
  msgid "Display Share/Save button at the bottom of posts on the front page"
147
  msgstr "在首页的文章底部显示 分享/收藏 按钮"
148
 
149
+ #: add-to-any.php:533
150
  msgid "Display Share/Save button at the bottom of posts in the feed"
151
  msgstr "在 Feed 的文章底部显示 分享/收藏 按钮"
152
 
153
+ #: add-to-any.php:537
154
  msgid "Display Share/Save button at the bottom of pages"
155
  msgstr "在页面底部显示 分享/收藏 按钮"
156
 
157
+ #: add-to-any.php:541
158
  #, fuzzy
159
  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>)"
160
  msgstr "如果不选,请确定将以下代码置入于 <a href=\"theme-editor.php\">您的模板页面</a> 中 (包括 <code>index.php</code>,<code>single.php</code>,与/或 <code>page.php</code>)"
161
 
162
+ #: add-to-any.php:550
163
  msgid "Menu Style"
164
  msgstr "菜单风格"
165
 
166
+ #: add-to-any.php:552
167
  msgid "Using Add to Any's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
168
  msgstr "使用 Add to Any 的菜单风格设置器,您可以自定义您的 分享/收藏 菜单的颜色!完成后,请将生成的代码粘贴于下方 <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">附加选项</a> 框内。"
169
 
170
+ #: add-to-any.php:554
171
  msgid "Open the Add to Any Menu Styler in a new window"
172
  msgstr "在新窗口中打开 Add to Any 菜单风格设置器"
173
 
174
+ #: add-to-any.php:556
175
  msgid "Open Menu Styler"
176
  msgstr "打开菜单风格设置器"
177
 
178
+ #: add-to-any.php:561
179
  msgid "Menu Options"
180
  msgstr "菜单选项"
181
 
182
+ #: add-to-any.php:566
183
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
184
  msgstr "菜单显示时隐藏与菜单相交的嵌入式对象(Flash,视频,等) "
185
 
186
+ #: add-to-any.php:571
187
  msgid "Show the title of the post (or page) within the menu"
188
  msgstr "菜单中显示文章(或页面)的标题"
189
 
190
+ #: add-to-any.php:578
191
  msgid "Only show the menu when the user clicks the Share/Save button"
192
  msgstr "仅当用户点击 分享/收藏 按钮时显示菜单"
193
 
194
+ #: add-to-any.php:584
195
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
196
  msgstr "如用户点击 分享/收藏 按钮,在新标签页或新窗口中打开 addtoany.com 菜单页面"
197
 
198
+ #: add-to-any.php:589
199
  msgid "Additional Options"
200
  msgstr "附加选项"
201
 
202
+ #: add-to-any.php:593
203
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
204
  msgstr "粘贴 Add to Any 菜单风格设置器生成的代码于下方框内!"
205
 
206
+ #: add-to-any.php:597
207
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
208
  msgstr "您可以设置特殊 JavaScript 变量以应用于全部 分享/收藏 菜单。"
209
 
210
+ #: add-to-any.php:598
211
  #, fuzzy
212
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
213
  msgstr "高级用户可能希望尝试 Add to Any 的 <a href=\"http://www.addtoany.com/buttons/api/\">JavaScript API</a> 所生成的代码。"
214
 
215
+ #: add-to-any.php:604
216
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
217
  msgstr "<strong>注意</strong>: 如果您打算添加新代码,请小心不要意外覆盖任何先前代码。</label>"
218
 
219
+ #: add-to-any.php:611
220
  msgid "Save Changes"
221
  msgstr "保存更改"
222
 
223
+ #: add-to-any.php:616
224
  msgid "Like this plugin?"
225
  msgstr ""
226
 
227
+ #: add-to-any.php:617
228
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
229
  msgstr ""
230
 
231
+ #: add-to-any.php:618
232
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
233
  msgstr ""
234
 
235
+ #: add-to-any.php:620
236
  msgid "Need support?"
237
  msgstr ""
238
 
239
+ #: add-to-any.php:621
240
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
241
  msgstr ""
242
 
243
+ #: add-to-any.php:622
244
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
245
  msgstr ""
246
 
247
+ #: add-to-any.php:729
248
  msgid "Add/Remove Services"
249
  msgstr ""
250
 
251
+ #: add-to-any.php:775
252
  msgid "Share/Save"
253
  msgstr "分享/收藏"
254
 
255
+ #: add-to-any.php:776
256
  msgid "Share/Save Buttons"
257
  msgstr "分享/收藏 按钮"
258
 
languages/add-to-any.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-11-09 17:17-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: \n"
@@ -13,229 +13,238 @@ msgstr ""
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: add-to-any.php:208
17
  msgid "Share"
18
  msgstr ""
19
 
20
- #: add-to-any.php:209
21
  msgid "Save"
22
  msgstr ""
23
 
24
- #: add-to-any.php:210
25
  msgid "Subscribe"
26
  msgstr ""
27
 
28
- #: add-to-any.php:211
29
  msgid "E-mail"
30
  msgstr ""
31
 
32
- #: add-to-any.php:212
33
  msgid "Bookmark"
34
  msgstr ""
35
 
36
- #: add-to-any.php:213
37
  msgid "Show all"
38
  msgstr ""
39
 
40
- #: add-to-any.php:214
41
  msgid "Show less"
42
  msgstr ""
43
 
44
- #: add-to-any.php:215
45
  msgid "Find service(s)"
46
  msgstr ""
47
 
48
- #: add-to-any.php:216
49
  msgid "Instantly find any service to add to"
50
  msgstr ""
51
 
52
- #: add-to-any.php:217
53
  msgid "Powered by"
54
  msgstr ""
55
 
56
- #: add-to-any.php:218
57
  msgid "Share via e-mail"
58
  msgstr ""
59
 
60
- #: add-to-any.php:219
61
  msgid "Subscribe via e-mail"
62
  msgstr ""
63
 
64
- #: add-to-any.php:220
65
  msgid "Bookmark in your browser"
66
  msgstr ""
67
 
68
- #: add-to-any.php:221
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr ""
71
 
72
- #: add-to-any.php:222
73
  msgid "Add to your favorites"
74
  msgstr ""
75
 
76
- #: add-to-any.php:223
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr ""
79
 
80
- #: add-to-any.php:224
81
  msgid "E-mail program"
82
  msgstr ""
83
 
84
- #: add-to-any.php:249
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:401
 
 
 
 
 
 
 
 
 
89
  msgid "Settings saved."
90
  msgstr ""
91
 
92
- #: add-to-any.php:412
93
  msgid "Add to Any: Share/Save "
94
  msgstr ""
95
 
96
- #: add-to-any.php:412
97
- #: add-to-any.php:772
98
- #: add-to-any.php:793
99
  msgid "Settings"
100
  msgstr ""
101
 
102
- #: add-to-any.php:422
103
  msgid "Standalone Services"
104
  msgstr ""
105
 
106
- #: add-to-any.php:427
107
  msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
108
  msgstr ""
109
 
110
- #: add-to-any.php:453
111
  msgid "Button"
112
  msgstr ""
113
 
114
- #: add-to-any.php:492
115
  msgid "Image URL"
116
  msgstr ""
117
 
118
- #: add-to-any.php:499
119
  msgid "Text only"
120
  msgstr ""
121
 
122
- #: add-to-any.php:507
123
  msgid "Placement"
124
  msgstr ""
125
 
126
- #: add-to-any.php:516
127
  msgid "Display Share/Save button at the bottom of posts"
128
  msgstr ""
129
 
130
- #: add-to-any.php:523
131
  msgid "Display Share/Save button at the bottom of posts on the front page"
132
  msgstr ""
133
 
134
- #: add-to-any.php:530
135
  msgid "Display Share/Save button at the bottom of posts in the feed"
136
  msgstr ""
137
 
138
- #: add-to-any.php:534
139
  msgid "Display Share/Save button at the bottom of pages"
140
  msgstr ""
141
 
142
- #: add-to-any.php:538
143
  msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
144
  msgstr ""
145
 
146
- #: add-to-any.php:547
147
  msgid "Menu Style"
148
  msgstr ""
149
 
150
- #: add-to-any.php:549
151
  msgid "Using Add to Any's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
152
  msgstr ""
153
 
154
- #: add-to-any.php:551
155
  msgid "Open the Add to Any Menu Styler in a new window"
156
  msgstr ""
157
 
158
- #: add-to-any.php:553
159
  msgid "Open Menu Styler"
160
  msgstr ""
161
 
162
- #: add-to-any.php:558
163
  msgid "Menu Options"
164
  msgstr ""
165
 
166
- #: add-to-any.php:563
167
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
168
  msgstr ""
169
 
170
- #: add-to-any.php:568
171
  msgid "Show the title of the post (or page) within the menu"
172
  msgstr ""
173
 
174
- #: add-to-any.php:575
175
  msgid "Only show the menu when the user clicks the Share/Save button"
176
  msgstr ""
177
 
178
- #: add-to-any.php:581
179
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
180
  msgstr ""
181
 
182
- #: add-to-any.php:586
183
  msgid "Additional Options"
184
  msgstr ""
185
 
186
- #: add-to-any.php:590
187
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
188
  msgstr ""
189
 
190
- #: add-to-any.php:594
191
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
192
  msgstr ""
193
 
194
- #: add-to-any.php:595
195
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
196
  msgstr ""
197
 
198
- #: add-to-any.php:601
199
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
200
  msgstr ""
201
 
202
- #: add-to-any.php:608
203
  msgid "Save Changes"
204
  msgstr ""
205
 
206
- #: add-to-any.php:613
207
  msgid "Like this plugin?"
208
  msgstr ""
209
 
210
- #: add-to-any.php:614
211
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
212
  msgstr ""
213
 
214
- #: add-to-any.php:615
215
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
216
  msgstr ""
217
 
218
- #: add-to-any.php:617
219
  msgid "Need support?"
220
  msgstr ""
221
 
222
- #: add-to-any.php:618
223
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
224
  msgstr ""
225
 
226
- #: add-to-any.php:619
227
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
228
  msgstr ""
229
 
230
- #: add-to-any.php:726
231
  msgid "Add/Remove Services"
232
  msgstr ""
233
 
234
- #: add-to-any.php:772
235
  msgid "Share/Save"
236
  msgstr ""
237
 
238
- #: add-to-any.php:773
239
  msgid "Share/Save Buttons"
240
  msgstr ""
241
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-12-18 00:13-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: \n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
+ #: add-to-any.php:211
17
  msgid "Share"
18
  msgstr ""
19
 
20
+ #: add-to-any.php:212
21
  msgid "Save"
22
  msgstr ""
23
 
24
+ #: add-to-any.php:213
25
  msgid "Subscribe"
26
  msgstr ""
27
 
28
+ #: add-to-any.php:214
29
  msgid "E-mail"
30
  msgstr ""
31
 
32
+ #: add-to-any.php:215
33
  msgid "Bookmark"
34
  msgstr ""
35
 
36
+ #: add-to-any.php:216
37
  msgid "Show all"
38
  msgstr ""
39
 
40
+ #: add-to-any.php:217
41
  msgid "Show less"
42
  msgstr ""
43
 
44
+ #: add-to-any.php:218
45
  msgid "Find service(s)"
46
  msgstr ""
47
 
48
+ #: add-to-any.php:219
49
  msgid "Instantly find any service to add to"
50
  msgstr ""
51
 
52
+ #: add-to-any.php:220
53
  msgid "Powered by"
54
  msgstr ""
55
 
56
+ #: add-to-any.php:221
57
  msgid "Share via e-mail"
58
  msgstr ""
59
 
60
+ #: add-to-any.php:222
61
  msgid "Subscribe via e-mail"
62
  msgstr ""
63
 
64
+ #: add-to-any.php:223
65
  msgid "Bookmark in your browser"
66
  msgstr ""
67
 
68
+ #: add-to-any.php:224
69
  msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
  msgstr ""
71
 
72
+ #: add-to-any.php:225
73
  msgid "Add to your favorites"
74
  msgstr ""
75
 
76
+ #: add-to-any.php:226
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr ""
79
 
80
+ #: add-to-any.php:227
81
  msgid "E-mail program"
82
  msgstr ""
83
 
84
+ #: add-to-any.php:252
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:390
89
+ #: add-to-any.php:461
90
+ #: add-to-any.php:465
91
+ #: add-to-any.php:469
92
+ #: add-to-any.php:473
93
+ #: add-to-any.php:505
94
+ msgid "Share/Bookmark"
95
+ msgstr ""
96
+
97
+ #: add-to-any.php:404
98
  msgid "Settings saved."
99
  msgstr ""
100
 
101
+ #: add-to-any.php:415
102
  msgid "Add to Any: Share/Save "
103
  msgstr ""
104
 
105
+ #: add-to-any.php:415
106
+ #: add-to-any.php:775
107
+ #: add-to-any.php:796
108
  msgid "Settings"
109
  msgstr ""
110
 
111
+ #: add-to-any.php:425
112
  msgid "Standalone Services"
113
  msgstr ""
114
 
115
+ #: add-to-any.php:430
116
  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."
117
  msgstr ""
118
 
119
+ #: add-to-any.php:456
120
  msgid "Button"
121
  msgstr ""
122
 
123
+ #: add-to-any.php:495
124
  msgid "Image URL"
125
  msgstr ""
126
 
127
+ #: add-to-any.php:502
128
  msgid "Text only"
129
  msgstr ""
130
 
131
+ #: add-to-any.php:510
132
  msgid "Placement"
133
  msgstr ""
134
 
135
+ #: add-to-any.php:519
136
  msgid "Display Share/Save button at the bottom of posts"
137
  msgstr ""
138
 
139
+ #: add-to-any.php:526
140
  msgid "Display Share/Save button at the bottom of posts on the front page"
141
  msgstr ""
142
 
143
+ #: add-to-any.php:533
144
  msgid "Display Share/Save button at the bottom of posts in the feed"
145
  msgstr ""
146
 
147
+ #: add-to-any.php:537
148
  msgid "Display Share/Save button at the bottom of pages"
149
  msgstr ""
150
 
151
+ #: add-to-any.php:541
152
  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>)"
153
  msgstr ""
154
 
155
+ #: add-to-any.php:550
156
  msgid "Menu Style"
157
  msgstr ""
158
 
159
+ #: add-to-any.php:552
160
  msgid "Using Add to Any's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
161
  msgstr ""
162
 
163
+ #: add-to-any.php:554
164
  msgid "Open the Add to Any Menu Styler in a new window"
165
  msgstr ""
166
 
167
+ #: add-to-any.php:556
168
  msgid "Open Menu Styler"
169
  msgstr ""
170
 
171
+ #: add-to-any.php:561
172
  msgid "Menu Options"
173
  msgstr ""
174
 
175
+ #: add-to-any.php:566
176
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
177
  msgstr ""
178
 
179
+ #: add-to-any.php:571
180
  msgid "Show the title of the post (or page) within the menu"
181
  msgstr ""
182
 
183
+ #: add-to-any.php:578
184
  msgid "Only show the menu when the user clicks the Share/Save button"
185
  msgstr ""
186
 
187
+ #: add-to-any.php:584
188
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
189
  msgstr ""
190
 
191
+ #: add-to-any.php:589
192
  msgid "Additional Options"
193
  msgstr ""
194
 
195
+ #: add-to-any.php:593
196
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
197
  msgstr ""
198
 
199
+ #: add-to-any.php:597
200
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
201
  msgstr ""
202
 
203
+ #: add-to-any.php:598
204
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
205
  msgstr ""
206
 
207
+ #: add-to-any.php:604
208
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
209
  msgstr ""
210
 
211
+ #: add-to-any.php:611
212
  msgid "Save Changes"
213
  msgstr ""
214
 
215
+ #: add-to-any.php:616
216
  msgid "Like this plugin?"
217
  msgstr ""
218
 
219
+ #: add-to-any.php:617
220
  msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
221
  msgstr ""
222
 
223
+ #: add-to-any.php:618
224
  msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
225
  msgstr ""
226
 
227
+ #: add-to-any.php:620
228
  msgid "Need support?"
229
  msgstr ""
230
 
231
+ #: add-to-any.php:621
232
  msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
233
  msgstr ""
234
 
235
+ #: add-to-any.php:622
236
  msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
237
  msgstr ""
238
 
239
+ #: add-to-any.php:729
240
  msgid "Add/Remove Services"
241
  msgstr ""
242
 
243
+ #: add-to-any.php:775
244
  msgid "Share/Save"
245
  msgstr ""
246
 
247
+ #: add-to-any.php:776
248
  msgid "Share/Save Buttons"
249
  msgstr ""
250