AddToAny Share Buttons - Version 0.9.8.7.1

Version Description

Download this release

Release Info

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

Code changes from version 0.9.8.7 to 0.9.8.7.1

README.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Add to Any Share/Save/Bookmark Button ===
2
  Contributors: micropat
3
  Donate link: http://www.addtoany.com/contact/
4
- Tags: bookmarking, social, social bookmarking, bookmark, bookmarks, sharing, share, 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, addtoany, add, any
5
  Requires at least: 2.0
6
  Tested up to: 2.7
7
- Stable tag: 0.9.8.7
8
 
9
  Helps readers share, save, bookmark, and email your posts and pages using any service, such as Delicious, Digg, Facebook, Twitter, and over 100 more.
10
 
@@ -38,7 +38,13 @@ Constantly... and it's done automatically, without having to upgrade the plugin!
38
 
39
  = Where can I choose which button to display and other options? =
40
 
41
- Go to `Settings` > `Share/Save Buttons`.
 
 
 
 
 
 
42
 
43
  = How can I force the button to appear in individual posts and pages? =
44
 
@@ -48,12 +54,6 @@ If your button isn't already set up to appear (it is by default), type the follo
48
 
49
  Type the following tag into the page or post that you do not want the button to appear in: `<!--nosharesave-->`
50
 
51
- = Why isn't the drop-down menu appearing? =
52
-
53
- It's likely because your your theme wasn't <a href="http://codex.wordpress.org/Theme_Development#Plugin_API_Hooks" target="_blank">coded properly</a>. Using the Theme Editor, make sure that the following piece of code is included in your theme's `footer.php` file just before the `</body>` line:
54
-
55
- `<?php wp_footer(); ?>`
56
-
57
  = Why do embedded objects (like Flash) disappear when the menu is displayed? =
58
 
59
  This is done to overcome browser limitations that prevent the drop-down menu from displaying on top of intersecting embedded objects. If you would like to disable this, uncheck the `Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed` option on the plugin's settings page.
@@ -66,6 +66,14 @@ This is done to overcome browser limitations that prevent the drop-down menu fro
66
 
67
  == Changelog ==
68
 
 
 
 
 
 
 
 
 
69
  .9.8.6.9:
70
 
71
  * Compressed Open Share Icon
1
  === Add to Any Share/Save/Bookmark Button ===
2
  Contributors: micropat
3
  Donate link: http://www.addtoany.com/contact/
4
+ Tags: bookmarking, social, social bookmarking, bookmark, bookmarks, sharing, share, 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.7
7
+ Stable tag: 0.9.8.7.1
8
 
9
  Helps readers share, save, bookmark, and email your posts and pages using any service, such as Delicious, Digg, Facebook, Twitter, and over 100 more.
10
 
38
 
39
  = Where can I choose which button to display and other options? =
40
 
41
+ Go to `Settings` > `Share/Save Buttons`.
42
+
43
+ = Why isn't the drop-down menu appearing? =
44
+
45
+ It's likely because your your theme wasn't <a href="http://codex.wordpress.org/Theme_Development#Plugin_API_Hooks" target="_blank">coded properly</a>. Using the Theme Editor, make sure that the following piece of code is included in your theme's `footer.php` file just before the `</body>` line:
46
+
47
+ `<?php wp_footer(); ?>`
48
 
49
  = How can I force the button to appear in individual posts and pages? =
50
 
54
 
55
  Type the following tag into the page or post that you do not want the button to appear in: `<!--nosharesave-->`
56
 
 
 
 
 
 
 
57
  = Why do embedded objects (like Flash) disappear when the menu is displayed? =
58
 
59
  This is done to overcome browser limitations that prevent the drop-down menu from displaying on top of intersecting embedded objects. If you would like to disable this, uncheck the `Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed` option on the plugin's settings page.
66
 
67
  == Changelog ==
68
 
69
+ .9.8.7.1:
70
+
71
+ * Text-only button stripslashes
72
+
73
+ .9.8.7:
74
+
75
+ * Removes unnecessary inline styling in feeds per W3C recommendation
76
+
77
  .9.8.6.9:
78
 
79
  * Compressed Open Share Icon
add-to-any.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Add to Any: Share/Save/Bookmark Button
4
  Plugin URI: http://www.addtoany.com/
5
  Description: Helps readers share, save, bookmark, and email your posts and pages using any service. [<a href="options-general.php?page=add-to-any.php">Settings</a>]
6
- Version: .9.8.7
7
  Author: Add to Any
8
  Author URI: http://www.addtoany.com/contact/
9
  */
@@ -59,7 +59,7 @@ function ADDTOANY_SHARE_SAVE_BUTTON( $args = false) {
59
  $button_width = '';
60
  $button_height = '';
61
  } else if( get_option('A2A_SHARE_SAVE_button') == 'TEXT' ) {
62
- $button_text = get_option('A2A_SHARE_SAVE_button_text');
63
  } else {
64
  $button_attrs = explode( '|', get_option('A2A_SHARE_SAVE_button') );
65
  $button_fname = $button_attrs[0];
@@ -272,7 +272,7 @@ function A2A_SHARE_SAVE_options_page() {
272
  <span style="margin:0 9px;vertical-align:middle"><? _e("Text only"); ?>:</span>
273
  </label>
274
  <input name="A2A_SHARE_SAVE_button_text" type="text" class="code" size="50" onclick="e=document.getElementsByName('A2A_SHARE_SAVE_button');e[e.length-1].checked=true" style="vertical-align:middle"
275
- value="<?php echo ( trim(get_option('A2A_SHARE_SAVE_button_text')) != '' ) ? get_option('A2A_SHARE_SAVE_button_text') : "Share/Save"; ?>" />
276
 
277
  </fieldset></td>
278
  </tr>
3
  Plugin Name: Add to Any: Share/Save/Bookmark Button
4
  Plugin URI: http://www.addtoany.com/
5
  Description: Helps readers share, save, bookmark, and email your posts and pages using any service. [<a href="options-general.php?page=add-to-any.php">Settings</a>]
6
+ Version: .9.8.7.1
7
  Author: Add to Any
8
  Author URI: http://www.addtoany.com/contact/
9
  */
59
  $button_width = '';
60
  $button_height = '';
61
  } else if( get_option('A2A_SHARE_SAVE_button') == 'TEXT' ) {
62
+ $button_text = stripslashes(get_option('A2A_SHARE_SAVE_button_text'));
63
  } else {
64
  $button_attrs = explode( '|', get_option('A2A_SHARE_SAVE_button') );
65
  $button_fname = $button_attrs[0];
272
  <span style="margin:0 9px;vertical-align:middle"><? _e("Text only"); ?>:</span>
273
  </label>
274
  <input name="A2A_SHARE_SAVE_button_text" type="text" class="code" size="50" onclick="e=document.getElementsByName('A2A_SHARE_SAVE_button');e[e.length-1].checked=true" style="vertical-align:middle"
275
+ value="<?php echo ( trim(get_option('A2A_SHARE_SAVE_button_text')) != '' ) ? stripslashes(get_option('A2A_SHARE_SAVE_button_text')) : "Share/Save"; ?>" />
276
 
277
  </fieldset></td>
278
  </tr>
i18n/add-to-any-zh_CN.mo CHANGED
Binary file
i18n/add-to-any-zh_CN.po CHANGED
@@ -2,202 +2,202 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-11-27 14:13-0800\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: Duet G. <duetg@yahoo.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "X-Poedit-KeywordsList: __;_e\n"
13
- "X-Poedit-Basepath: .\n"
14
  "X-Poedit-Language: Chinese\n"
15
  "X-Poedit-Country: CHINA\n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: add-to-any.php:124
20
  msgid "Share"
21
  msgstr "分享"
22
 
23
- #: add-to-any.php:125
24
  msgid "Save"
25
  msgstr "收藏"
26
 
27
- #: add-to-any.php:126
28
  msgid "Subscribe"
29
  msgstr "订阅"
30
 
31
- #: add-to-any.php:127
32
  msgid "E-mail"
33
  msgstr "电子邮件"
34
 
35
- #: add-to-any.php:128
36
  msgid "Bookmark"
37
  msgstr "书签"
38
 
39
- #: add-to-any.php:129
40
  msgid "Show all"
41
  msgstr "显示全部服务"
42
 
43
- #: add-to-any.php:130
44
  msgid "Show less"
45
  msgstr "显示部分服务"
46
 
47
- #: add-to-any.php:131
48
  msgid "Find service(s)"
49
  msgstr "查找服务"
50
 
51
- #: add-to-any.php:132
52
  msgid "Instantly find any service to add to"
53
  msgstr "动态查找任何用以添加的服务"
54
 
55
- #: add-to-any.php:133
56
  msgid "Powered by"
57
  msgstr "Powered by"
58
 
59
- #: add-to-any.php:134
60
  msgid "Share via e-mail"
61
  msgstr "通过电子邮件分享"
62
 
63
- #: add-to-any.php:135
64
  msgid "Subscribe via e-mail"
65
  msgstr "通过电子邮件订阅"
66
 
67
- #: add-to-any.php:136
68
  msgid "Bookmark in your browser"
69
  msgstr "添加为浏览器书签"
70
 
71
- #: add-to-any.php:137
72
  msgid "Press Ctrl+D or Cmd+D to bookmark this page"
73
  msgstr "按下 [Ctrl+D] 或 [Cmd+D] 将本页加为书签"
74
 
75
- #: add-to-any.php:138
76
  msgid "Add to your favorites"
77
  msgstr "添加至收藏夹"
78
 
79
- #: add-to-any.php:139
80
  msgid "Send from any e-mail address or e-mail program"
81
  msgstr "从任何电子邮件地址或电子邮件程序发送"
82
 
83
- #: add-to-any.php:140
84
  msgid "E-mail program"
85
  msgstr "电子邮件程序"
86
 
87
- #: add-to-any.php:203
88
  msgid "Settings saved."
89
  msgstr "设置已保存"
90
 
91
- #: add-to-any.php:212
92
  msgid "Add to Any: Share/Save "
93
  msgstr "Add to Any: 分享/收藏"
94
 
95
- #: add-to-any.php:212
96
- #: add-to-any.php:375
97
  msgid "Settings"
98
  msgstr "设置"
99
 
100
- #: add-to-any.php:222
101
  msgid "Button"
102
  msgstr "按钮"
103
 
104
- #: add-to-any.php:251
105
  msgid "Image URL"
106
  msgstr "图片 URL"
107
 
108
- #: add-to-any.php:258
109
  msgid "Text only"
110
  msgstr "仅用文字"
111
 
112
- #: add-to-any.php:266
113
  msgid "Button Placement"
114
  msgstr "按钮位置"
115
 
116
- #: add-to-any.php:275
117
  msgid "Display Share/Save button at the bottom of posts"
118
  msgstr "在文章底部显示 分享/收藏 按钮"
119
 
120
- #: add-to-any.php:282
121
  msgid "Display Share/Save button at the bottom of posts on the front page"
122
  msgstr "在首页的文章底部显示 分享/收藏 按钮"
123
 
124
- #: add-to-any.php:289
125
  msgid "Display Share/Save button at the bottom of posts in the feed"
126
  msgstr "在 Feed 的文章底部显示 分享/收藏 按钮"
127
 
128
- #: add-to-any.php:293
129
  msgid "Display Share/Save button at the bottom of pages"
130
  msgstr "在页面底部显示 分享/收藏 按钮"
131
 
132
- #: add-to-any.php:296
133
  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>)"
134
  msgstr "如果不选,请确定将以下代码置入于 <a href=\"theme-editor.php\">您的模板页面</a> 中 (包括 <code>index.php</code>,<code>single.php</code>,与/或 <code>page.php</code>)"
135
 
136
- #: add-to-any.php:301
137
  msgid "Menu Style"
138
  msgstr "菜单风格"
139
 
140
- #: add-to-any.php:303
141
  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."
142
  msgstr "使用 Add to Any 的菜单风格设置器,您可以自定义您的 分享/收藏 菜单的颜色!完成后,请将生成的代码粘贴于下方 <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">附加选项</a> 框内。"
143
 
144
- #: add-to-any.php:305
145
  msgid "Open the Add to Any Menu Styler in a new window"
146
  msgstr "在新窗口中打开 Add to Any 菜单风格设置器"
147
 
148
- #: add-to-any.php:307
149
  msgid "Open Menu Styler"
150
  msgstr "打开菜单风格设置器"
151
 
152
- #: add-to-any.php:312
153
  msgid "Menu Options"
154
  msgstr "菜单选项"
155
 
156
- #: add-to-any.php:317
157
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
158
  msgstr "菜单显示时隐藏与菜单相交的嵌入式对象(Flash,视频,等) "
159
 
160
- #: add-to-any.php:322
161
  msgid "Show the title of the post (or page) within the menu"
162
  msgstr "菜单中显示文章(或页面)的标题"
163
 
164
- #: add-to-any.php:329
165
  msgid "Only show the menu when the user clicks the Share/Save button"
166
  msgstr "仅当用户点击 分享/收藏 按钮时显示菜单"
167
 
168
- #: add-to-any.php:335
169
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
170
  msgstr "如用户点击 分享/收藏 按钮,在新标签页或新窗口中打开 addtoany.com 菜单页面"
171
 
172
- #: add-to-any.php:340
173
  msgid "Additional Options"
174
  msgstr "附加选项"
175
 
176
- #: add-to-any.php:344
177
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
178
  msgstr "粘贴 Add to Any 菜单风格设置器生成的代码于下方框内!"
179
 
180
- #: add-to-any.php:348
181
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
182
  msgstr "您可以设置特殊 JavaScript 变量以应用于全部 分享/收藏 菜单。"
183
 
184
- #: add-to-any.php:349
185
  msgid "Advanced users might want to check out the code generated by Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\">JavaScript API</a>."
186
  msgstr "高级用户可能希望尝试 Add to Any 的 <a href=\"http://www.addtoany.com/buttons/api/\">JavaScript API</a> 所生成的代码。"
187
 
188
- #: add-to-any.php:355
189
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
190
  msgstr "<strong>注意</strong>: 如果您打算添加新代码,请小心不要意外覆盖任何先前代码。</label>"
191
 
192
- #: add-to-any.php:362
193
  msgid "Save Changes"
194
  msgstr "保存更改"
195
 
196
- #: add-to-any.php:375
197
  msgid "Share/Save"
198
  msgstr "分享/收藏"
199
 
200
- #: add-to-any.php:376
201
  msgid "Share/Save Buttons"
202
  msgstr "分享/收藏 按钮"
203
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-01-13 19:38-0800\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: MicroPat\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "X-Poedit-KeywordsList: __;_e\n"
13
+ "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-Language: Chinese\n"
15
  "X-Poedit-Country: CHINA\n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: add-to-any.php:130
20
  msgid "Share"
21
  msgstr "分享"
22
 
23
+ #: add-to-any.php:131
24
  msgid "Save"
25
  msgstr "收藏"
26
 
27
+ #: add-to-any.php:132
28
  msgid "Subscribe"
29
  msgstr "订阅"
30
 
31
+ #: add-to-any.php:133
32
  msgid "E-mail"
33
  msgstr "电子邮件"
34
 
35
+ #: add-to-any.php:134
36
  msgid "Bookmark"
37
  msgstr "书签"
38
 
39
+ #: add-to-any.php:135
40
  msgid "Show all"
41
  msgstr "显示全部服务"
42
 
43
+ #: add-to-any.php:136
44
  msgid "Show less"
45
  msgstr "显示部分服务"
46
 
47
+ #: add-to-any.php:137
48
  msgid "Find service(s)"
49
  msgstr "查找服务"
50
 
51
+ #: add-to-any.php:138
52
  msgid "Instantly find any service to add to"
53
  msgstr "动态查找任何用以添加的服务"
54
 
55
+ #: add-to-any.php:139
56
  msgid "Powered by"
57
  msgstr "Powered by"
58
 
59
+ #: add-to-any.php:140
60
  msgid "Share via e-mail"
61
  msgstr "通过电子邮件分享"
62
 
63
+ #: add-to-any.php:141
64
  msgid "Subscribe via e-mail"
65
  msgstr "通过电子邮件订阅"
66
 
67
+ #: add-to-any.php:142
68
  msgid "Bookmark in your browser"
69
  msgstr "添加为浏览器书签"
70
 
71
+ #: add-to-any.php:143
72
  msgid "Press Ctrl+D or Cmd+D to bookmark this page"
73
  msgstr "按下 [Ctrl+D] 或 [Cmd+D] 将本页加为书签"
74
 
75
+ #: add-to-any.php:144
76
  msgid "Add to your favorites"
77
  msgstr "添加至收藏夹"
78
 
79
+ #: add-to-any.php:145
80
  msgid "Send from any e-mail address or e-mail program"
81
  msgstr "从任何电子邮件地址或电子邮件程序发送"
82
 
83
+ #: add-to-any.php:146
84
  msgid "E-mail program"
85
  msgstr "电子邮件程序"
86
 
87
+ #: add-to-any.php:211
88
  msgid "Settings saved."
89
  msgstr "设置已保存"
90
 
91
+ #: add-to-any.php:220
92
  msgid "Add to Any: Share/Save "
93
  msgstr "Add to Any: 分享/收藏"
94
 
95
+ #: add-to-any.php:220
96
+ #: add-to-any.php:391
97
  msgid "Settings"
98
  msgstr "设置"
99
 
100
+ #: add-to-any.php:230
101
  msgid "Button"
102
  msgstr "按钮"
103
 
104
+ #: add-to-any.php:265
105
  msgid "Image URL"
106
  msgstr "图片 URL"
107
 
108
+ #: add-to-any.php:272
109
  msgid "Text only"
110
  msgstr "仅用文字"
111
 
112
+ #: add-to-any.php:280
113
  msgid "Button Placement"
114
  msgstr "按钮位置"
115
 
116
+ #: add-to-any.php:289
117
  msgid "Display Share/Save button at the bottom of posts"
118
  msgstr "在文章底部显示 分享/收藏 按钮"
119
 
120
+ #: add-to-any.php:296
121
  msgid "Display Share/Save button at the bottom of posts on the front page"
122
  msgstr "在首页的文章底部显示 分享/收藏 按钮"
123
 
124
+ #: add-to-any.php:303
125
  msgid "Display Share/Save button at the bottom of posts in the feed"
126
  msgstr "在 Feed 的文章底部显示 分享/收藏 按钮"
127
 
128
+ #: add-to-any.php:307
129
  msgid "Display Share/Save button at the bottom of pages"
130
  msgstr "在页面底部显示 分享/收藏 按钮"
131
 
132
+ #: add-to-any.php:311
133
  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>)"
134
  msgstr "如果不选,请确定将以下代码置入于 <a href=\"theme-editor.php\">您的模板页面</a> 中 (包括 <code>index.php</code>,<code>single.php</code>,与/或 <code>page.php</code>)"
135
 
136
+ #: add-to-any.php:317
137
  msgid "Menu Style"
138
  msgstr "菜单风格"
139
 
140
+ #: add-to-any.php:319
141
  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."
142
  msgstr "使用 Add to Any 的菜单风格设置器,您可以自定义您的 分享/收藏 菜单的颜色!完成后,请将生成的代码粘贴于下方 <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">附加选项</a> 框内。"
143
 
144
+ #: add-to-any.php:321
145
  msgid "Open the Add to Any Menu Styler in a new window"
146
  msgstr "在新窗口中打开 Add to Any 菜单风格设置器"
147
 
148
+ #: add-to-any.php:323
149
  msgid "Open Menu Styler"
150
  msgstr "打开菜单风格设置器"
151
 
152
+ #: add-to-any.php:328
153
  msgid "Menu Options"
154
  msgstr "菜单选项"
155
 
156
+ #: add-to-any.php:333
157
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
158
  msgstr "菜单显示时隐藏与菜单相交的嵌入式对象(Flash,视频,等) "
159
 
160
+ #: add-to-any.php:338
161
  msgid "Show the title of the post (or page) within the menu"
162
  msgstr "菜单中显示文章(或页面)的标题"
163
 
164
+ #: add-to-any.php:345
165
  msgid "Only show the menu when the user clicks the Share/Save button"
166
  msgstr "仅当用户点击 分享/收藏 按钮时显示菜单"
167
 
168
+ #: add-to-any.php:351
169
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
170
  msgstr "如用户点击 分享/收藏 按钮,在新标签页或新窗口中打开 addtoany.com 菜单页面"
171
 
172
+ #: add-to-any.php:356
173
  msgid "Additional Options"
174
  msgstr "附加选项"
175
 
176
+ #: add-to-any.php:360
177
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
178
  msgstr "粘贴 Add to Any 菜单风格设置器生成的代码于下方框内!"
179
 
180
+ #: add-to-any.php:364
181
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
182
  msgstr "您可以设置特殊 JavaScript 变量以应用于全部 分享/收藏 菜单。"
183
 
184
+ #: add-to-any.php:365
185
  msgid "Advanced users might want to check out the code generated by Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\">JavaScript API</a>."
186
  msgstr "高级用户可能希望尝试 Add to Any 的 <a href=\"http://www.addtoany.com/buttons/api/\">JavaScript API</a> 所生成的代码。"
187
 
188
+ #: add-to-any.php:371
189
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
190
  msgstr "<strong>注意</strong>: 如果您打算添加新代码,请小心不要意外覆盖任何先前代码。</label>"
191
 
192
+ #: add-to-any.php:378
193
  msgid "Save Changes"
194
  msgstr "保存更改"
195
 
196
+ #: add-to-any.php:391
197
  msgid "Share/Save"
198
  msgstr "分享/收藏"
199
 
200
+ #: add-to-any.php:392
201
  msgid "Share/Save Buttons"
202
  msgstr "分享/收藏 按钮"
203
 
i18n/add-to-any.mo CHANGED
Binary file
i18n/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: 2008-11-27 14:13-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: \n"
@@ -10,191 +10,191 @@ msgstr ""
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "X-Poedit-KeywordsList: __;_e\n"
13
- "X-Poedit-Basepath: .\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: add-to-any.php:124
17
  msgid "Share"
18
  msgstr ""
19
 
20
- #: add-to-any.php:125
21
  msgid "Save"
22
  msgstr ""
23
 
24
- #: add-to-any.php:126
25
  msgid "Subscribe"
26
  msgstr ""
27
 
28
- #: add-to-any.php:127
29
  msgid "E-mail"
30
  msgstr ""
31
 
32
- #: add-to-any.php:128
33
  msgid "Bookmark"
34
  msgstr ""
35
 
36
- #: add-to-any.php:129
37
  msgid "Show all"
38
  msgstr ""
39
 
40
- #: add-to-any.php:130
41
  msgid "Show less"
42
  msgstr ""
43
 
44
- #: add-to-any.php:131
45
  msgid "Find service(s)"
46
  msgstr ""
47
 
48
- #: add-to-any.php:132
49
  msgid "Instantly find any service to add to"
50
  msgstr ""
51
 
52
- #: add-to-any.php:133
53
  msgid "Powered by"
54
  msgstr ""
55
 
56
- #: add-to-any.php:134
57
  msgid "Share via e-mail"
58
  msgstr ""
59
 
60
- #: add-to-any.php:135
61
  msgid "Subscribe via e-mail"
62
  msgstr ""
63
 
64
- #: add-to-any.php:136
65
  msgid "Bookmark in your browser"
66
  msgstr ""
67
 
68
- #: add-to-any.php:137
69
  msgid "Press Ctrl+D or Cmd+D to bookmark this page"
70
  msgstr ""
71
 
72
- #: add-to-any.php:138
73
  msgid "Add to your favorites"
74
  msgstr ""
75
 
76
- #: add-to-any.php:139
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr ""
79
 
80
- #: add-to-any.php:140
81
  msgid "E-mail program"
82
  msgstr ""
83
 
84
- #: add-to-any.php:203
85
  msgid "Settings saved."
86
  msgstr ""
87
 
88
- #: add-to-any.php:212
89
  msgid "Add to Any: Share/Save "
90
  msgstr ""
91
 
92
- #: add-to-any.php:212
93
- #: add-to-any.php:375
94
  msgid "Settings"
95
  msgstr ""
96
 
97
- #: add-to-any.php:222
98
  msgid "Button"
99
  msgstr ""
100
 
101
- #: add-to-any.php:251
102
  msgid "Image URL"
103
  msgstr ""
104
 
105
- #: add-to-any.php:258
106
  msgid "Text only"
107
  msgstr ""
108
 
109
- #: add-to-any.php:266
110
  msgid "Button Placement"
111
  msgstr ""
112
 
113
- #: add-to-any.php:275
114
  msgid "Display Share/Save button at the bottom of posts"
115
  msgstr ""
116
 
117
- #: add-to-any.php:282
118
  msgid "Display Share/Save button at the bottom of posts on the front page"
119
  msgstr ""
120
 
121
- #: add-to-any.php:289
122
  msgid "Display Share/Save button at the bottom of posts in the feed"
123
  msgstr ""
124
 
125
- #: add-to-any.php:293
126
  msgid "Display Share/Save button at the bottom of pages"
127
  msgstr ""
128
 
129
- #: add-to-any.php:296
130
  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>)"
131
  msgstr ""
132
 
133
- #: add-to-any.php:301
134
  msgid "Menu Style"
135
  msgstr ""
136
 
137
- #: add-to-any.php:303
138
  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."
139
  msgstr ""
140
 
141
- #: add-to-any.php:305
142
  msgid "Open the Add to Any Menu Styler in a new window"
143
  msgstr ""
144
 
145
- #: add-to-any.php:307
146
  msgid "Open Menu Styler"
147
  msgstr ""
148
 
149
- #: add-to-any.php:312
150
  msgid "Menu Options"
151
  msgstr ""
152
 
153
- #: add-to-any.php:317
154
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
155
  msgstr ""
156
 
157
- #: add-to-any.php:322
158
  msgid "Show the title of the post (or page) within the menu"
159
  msgstr ""
160
 
161
- #: add-to-any.php:329
162
  msgid "Only show the menu when the user clicks the Share/Save button"
163
  msgstr ""
164
 
165
- #: add-to-any.php:335
166
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
167
  msgstr ""
168
 
169
- #: add-to-any.php:340
170
  msgid "Additional Options"
171
  msgstr ""
172
 
173
- #: add-to-any.php:344
174
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
175
  msgstr ""
176
 
177
- #: add-to-any.php:348
178
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
179
  msgstr ""
180
 
181
- #: add-to-any.php:349
182
  msgid "Advanced users might want to check out the code generated by Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\">JavaScript API</a>."
183
  msgstr ""
184
 
185
- #: add-to-any.php:355
186
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
187
  msgstr ""
188
 
189
- #: add-to-any.php:362
190
  msgid "Save Changes"
191
  msgstr ""
192
 
193
- #: add-to-any.php:375
194
  msgid "Share/Save"
195
  msgstr ""
196
 
197
- #: add-to-any.php:376
198
  msgid "Share/Save Buttons"
199
  msgstr ""
200
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-01-13 19:38-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: \n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "X-Poedit-KeywordsList: __;_e\n"
13
+ "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
+ #: add-to-any.php:130
17
  msgid "Share"
18
  msgstr ""
19
 
20
+ #: add-to-any.php:131
21
  msgid "Save"
22
  msgstr ""
23
 
24
+ #: add-to-any.php:132
25
  msgid "Subscribe"
26
  msgstr ""
27
 
28
+ #: add-to-any.php:133
29
  msgid "E-mail"
30
  msgstr ""
31
 
32
+ #: add-to-any.php:134
33
  msgid "Bookmark"
34
  msgstr ""
35
 
36
+ #: add-to-any.php:135
37
  msgid "Show all"
38
  msgstr ""
39
 
40
+ #: add-to-any.php:136
41
  msgid "Show less"
42
  msgstr ""
43
 
44
+ #: add-to-any.php:137
45
  msgid "Find service(s)"
46
  msgstr ""
47
 
48
+ #: add-to-any.php:138
49
  msgid "Instantly find any service to add to"
50
  msgstr ""
51
 
52
+ #: add-to-any.php:139
53
  msgid "Powered by"
54
  msgstr ""
55
 
56
+ #: add-to-any.php:140
57
  msgid "Share via e-mail"
58
  msgstr ""
59
 
60
+ #: add-to-any.php:141
61
  msgid "Subscribe via e-mail"
62
  msgstr ""
63
 
64
+ #: add-to-any.php:142
65
  msgid "Bookmark in your browser"
66
  msgstr ""
67
 
68
+ #: add-to-any.php:143
69
  msgid "Press Ctrl+D or Cmd+D to bookmark this page"
70
  msgstr ""
71
 
72
+ #: add-to-any.php:144
73
  msgid "Add to your favorites"
74
  msgstr ""
75
 
76
+ #: add-to-any.php:145
77
  msgid "Send from any e-mail address or e-mail program"
78
  msgstr ""
79
 
80
+ #: add-to-any.php:146
81
  msgid "E-mail program"
82
  msgstr ""
83
 
84
+ #: add-to-any.php:211
85
  msgid "Settings saved."
86
  msgstr ""
87
 
88
+ #: add-to-any.php:220
89
  msgid "Add to Any: Share/Save "
90
  msgstr ""
91
 
92
+ #: add-to-any.php:220
93
+ #: add-to-any.php:391
94
  msgid "Settings"
95
  msgstr ""
96
 
97
+ #: add-to-any.php:230
98
  msgid "Button"
99
  msgstr ""
100
 
101
+ #: add-to-any.php:265
102
  msgid "Image URL"
103
  msgstr ""
104
 
105
+ #: add-to-any.php:272
106
  msgid "Text only"
107
  msgstr ""
108
 
109
+ #: add-to-any.php:280
110
  msgid "Button Placement"
111
  msgstr ""
112
 
113
+ #: add-to-any.php:289
114
  msgid "Display Share/Save button at the bottom of posts"
115
  msgstr ""
116
 
117
+ #: add-to-any.php:296
118
  msgid "Display Share/Save button at the bottom of posts on the front page"
119
  msgstr ""
120
 
121
+ #: add-to-any.php:303
122
  msgid "Display Share/Save button at the bottom of posts in the feed"
123
  msgstr ""
124
 
125
+ #: add-to-any.php:307
126
  msgid "Display Share/Save button at the bottom of pages"
127
  msgstr ""
128
 
129
+ #: add-to-any.php:311
130
  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>)"
131
  msgstr ""
132
 
133
+ #: add-to-any.php:317
134
  msgid "Menu Style"
135
  msgstr ""
136
 
137
+ #: add-to-any.php:319
138
  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."
139
  msgstr ""
140
 
141
+ #: add-to-any.php:321
142
  msgid "Open the Add to Any Menu Styler in a new window"
143
  msgstr ""
144
 
145
+ #: add-to-any.php:323
146
  msgid "Open Menu Styler"
147
  msgstr ""
148
 
149
+ #: add-to-any.php:328
150
  msgid "Menu Options"
151
  msgstr ""
152
 
153
+ #: add-to-any.php:333
154
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
155
  msgstr ""
156
 
157
+ #: add-to-any.php:338
158
  msgid "Show the title of the post (or page) within the menu"
159
  msgstr ""
160
 
161
+ #: add-to-any.php:345
162
  msgid "Only show the menu when the user clicks the Share/Save button"
163
  msgstr ""
164
 
165
+ #: add-to-any.php:351
166
  msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
167
  msgstr ""
168
 
169
+ #: add-to-any.php:356
170
  msgid "Additional Options"
171
  msgstr ""
172
 
173
+ #: add-to-any.php:360
174
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
175
  msgstr ""
176
 
177
+ #: add-to-any.php:364
178
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
179
  msgstr ""
180
 
181
+ #: add-to-any.php:365
182
  msgid "Advanced users might want to check out the code generated by Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\">JavaScript API</a>."
183
  msgstr ""
184
 
185
+ #: add-to-any.php:371
186
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
187
  msgstr ""
188
 
189
+ #: add-to-any.php:378
190
  msgid "Save Changes"
191
  msgstr ""
192
 
193
+ #: add-to-any.php:391
194
  msgid "Share/Save"
195
  msgstr ""
196
 
197
+ #: add-to-any.php:392
198
  msgid "Share/Save Buttons"
199
  msgstr ""
200