AddToAny Share Buttons - Version 0.9.8.8

Version Description

Download this release

Release Info

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

Code changes from version 0.9.8.7.3 to 0.9.8.8

Files changed (4) hide show
  1. README.txt +5 -1
  2. add-to-any.php +16 -5
  3. i18n/add-to-any-zh_CN.po +31 -31
  4. i18n/add-to-any.po +31 -31
README.txt CHANGED
@@ -4,7 +4,7 @@ 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.3
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
 
@@ -71,6 +71,10 @@ This is done to overcome browser limitations that prevent the drop-down menu fro
71
 
72
  == Changelog ==
73
 
 
 
 
 
74
  .9.8.7.3:
75
 
76
  * Important syntax fix
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.8
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
 
71
 
72
  == Changelog ==
73
 
74
+ .9.8.8:
75
+
76
+ * Now customize the optional text next to the 16 x 16px icons
77
+
78
  .9.8.7.3:
79
 
80
  * Important syntax fix
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.3
7
  Author: Add to Any
8
  Author URI: http://www.addtoany.com/contact/
9
  */
@@ -73,7 +73,7 @@ function ADDTOANY_SHARE_SAVE_BUTTON( $args = false) {
73
  $style_bg = ';' . $style_bg . ' !important;';
74
  $style = ' style="'.$style_bg.'padding:1px 5px 5px 22px"';
75
  }
76
- $button = 'Share/Save';
77
  } else if( $button_text ) {
78
  $button = $button_text;
79
  } else
@@ -204,9 +204,16 @@ function A2A_SHARE_SAVE_options_page() {
204
  update_option( 'A2A_SHARE_SAVE_button_opens_new_window', ($_POST['A2A_SHARE_SAVE_button_opens_new_window']=='1') ? '1':'-1' );
205
  update_option( 'A2A_SHARE_SAVE_button', $_POST['A2A_SHARE_SAVE_button'] );
206
  update_option( 'A2A_SHARE_SAVE_button_custom', $_POST['A2A_SHARE_SAVE_button_custom'] );
207
- update_option( 'A2A_SHARE_SAVE_button_text', ( trim($_POST['A2A_SHARE_SAVE_button_text']) != '' ) ? $_POST['A2A_SHARE_SAVE_button_text'] : "Share/Save" );
208
  update_option( 'A2A_SHARE_SAVE_additional_js_variables', trim($_POST['A2A_SHARE_SAVE_additional_js_variables']) );
209
 
 
 
 
 
 
 
 
 
210
  ?>
211
  <div class="updated fade"><p><strong><?php _e('Settings saved.'); ?></strong></p></div>
212
  <?php
@@ -235,12 +242,16 @@ function A2A_SHARE_SAVE_options_page() {
235
  <img src="<?php echo trailingslashit(get_option('siteurl')).PLUGINDIR.'/'.dirname($A2A_SHARE_SAVE_plugin_basename).'/favicon.png'; ?>" width="16" height="16" border="0" style="padding:9px;vertical-align:middle" alt="+ Share/Save" title="+ Share/Save"
236
  onclick="this.parentNode.firstChild.checked=true"/>
237
  </label>
 
 
238
  <label style="padding-left:9px">
239
  <input name="A2A_SHARE_SAVE_button" value="share_16_16.png|16|16" type="radio"<?php if(get_option('A2A_SHARE_SAVE_button')=='share_16_16.png|16|16') echo ' checked="checked"'; ?>
240
  style="margin:9px 0;vertical-align:middle">
241
  <img src="<?php echo trailingslashit(get_option('siteurl')).PLUGINDIR.'/'.dirname($A2A_SHARE_SAVE_plugin_basename).'/share_16_16.png'; ?>" width="16" height="16" border="0" style="padding:9px;vertical-align:middle" alt="+ Share/Save" title="+ Share/Save"
242
  onclick="this.parentNode.firstChild.checked=true"/>
243
- </label><br>
 
 
244
  <label>
245
  <input name="A2A_SHARE_SAVE_button" value="share_save_120_16.png|120|16" type="radio"<?php if( !get_option('A2A_SHARE_SAVE_button') || get_option('A2A_SHARE_SAVE_button' )=='share_save_120_16.png|120|16' ) echo ' checked="checked"'; ?>
246
  style="margin:9px 0;vertical-align:middle">
@@ -271,7 +282,7 @@ function A2A_SHARE_SAVE_options_page() {
271
  style="margin:9px 0;vertical-align:middle">
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>
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.8
7
  Author: Add to Any
8
  Author URI: http://www.addtoany.com/contact/
9
  */
73
  $style_bg = ';' . $style_bg . ' !important;';
74
  $style = ' style="'.$style_bg.'padding:1px 5px 5px 22px"';
75
  }
76
+ $button = stripslashes(get_option('A2A_SHARE_SAVE_button_text'));
77
  } else if( $button_text ) {
78
  $button = $button_text;
79
  } else
204
  update_option( 'A2A_SHARE_SAVE_button_opens_new_window', ($_POST['A2A_SHARE_SAVE_button_opens_new_window']=='1') ? '1':'-1' );
205
  update_option( 'A2A_SHARE_SAVE_button', $_POST['A2A_SHARE_SAVE_button'] );
206
  update_option( 'A2A_SHARE_SAVE_button_custom', $_POST['A2A_SHARE_SAVE_button_custom'] );
 
207
  update_option( 'A2A_SHARE_SAVE_additional_js_variables', trim($_POST['A2A_SHARE_SAVE_additional_js_variables']) );
208
 
209
+ // Store desired text if 16 x 16px buttons or text-only is chosen:
210
+ if( get_option('A2A_SHARE_SAVE_button') == 'favicon.png|16|16' )
211
+ update_option( 'A2A_SHARE_SAVE_button_text', $_POST['A2A_SHARE_SAVE_button_favicon_16_16_text'] );
212
+ elseif( get_option('A2A_SHARE_SAVE_button') == 'share_16_16.png|16|16' )
213
+ update_option( 'A2A_SHARE_SAVE_button_text', $_POST['A2A_SHARE_SAVE_button_share_16_16_text'] );
214
+ else
215
+ update_option( 'A2A_SHARE_SAVE_button_text', ( trim($_POST['A2A_SHARE_SAVE_button_text']) != '' ) ? $_POST['A2A_SHARE_SAVE_button_text'] : "Share/Save" );
216
+
217
  ?>
218
  <div class="updated fade"><p><strong><?php _e('Settings saved.'); ?></strong></p></div>
219
  <?php
242
  <img src="<?php echo trailingslashit(get_option('siteurl')).PLUGINDIR.'/'.dirname($A2A_SHARE_SAVE_plugin_basename).'/favicon.png'; ?>" width="16" height="16" border="0" style="padding:9px;vertical-align:middle" alt="+ Share/Save" title="+ Share/Save"
243
  onclick="this.parentNode.firstChild.checked=true"/>
244
  </label>
245
+ <input name="A2A_SHARE_SAVE_button_favicon_16_16_text" type="text" class="code" size="50" onclick="e=document.getElementsByName('A2A_SHARE_SAVE_button');e[e.length-7].checked=true" style="vertical-align:middle;width:150px"
246
+ value="<?php echo (get_option('A2A_SHARE_SAVE_button_text') !== FALSE) ? stripslashes(get_option('A2A_SHARE_SAVE_button_text')) : "Share/Save"; ?>" />
247
  <label style="padding-left:9px">
248
  <input name="A2A_SHARE_SAVE_button" value="share_16_16.png|16|16" type="radio"<?php if(get_option('A2A_SHARE_SAVE_button')=='share_16_16.png|16|16') echo ' checked="checked"'; ?>
249
  style="margin:9px 0;vertical-align:middle">
250
  <img src="<?php echo trailingslashit(get_option('siteurl')).PLUGINDIR.'/'.dirname($A2A_SHARE_SAVE_plugin_basename).'/share_16_16.png'; ?>" width="16" height="16" border="0" style="padding:9px;vertical-align:middle" alt="+ Share/Save" title="+ Share/Save"
251
  onclick="this.parentNode.firstChild.checked=true"/>
252
+ </label>
253
+ <input name="A2A_SHARE_SAVE_button_share_16_16_text" type="text" class="code" size="50" onclick="e=document.getElementsByName('A2A_SHARE_SAVE_button');e[e.length-6].checked=true" style="vertical-align:middle;width:150px"
254
+ value="<?php echo (get_option('A2A_SHARE_SAVE_button_text') !== FALSE) ? stripslashes(get_option('A2A_SHARE_SAVE_button_text')) : "Share/Save"; ?>" /><br>
255
  <label>
256
  <input name="A2A_SHARE_SAVE_button" value="share_save_120_16.png|120|16" type="radio"<?php if( !get_option('A2A_SHARE_SAVE_button') || get_option('A2A_SHARE_SAVE_button' )=='share_save_120_16.png|120|16' ) echo ' checked="checked"'; ?>
257
  style="margin:9px 0;vertical-align:middle">
282
  style="margin:9px 0;vertical-align:middle">
283
  <span style="margin:0 9px;vertical-align:middle"><? _e("Text only"); ?>:</span>
284
  </label>
285
+ <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;width:150px"
286
  value="<?php echo ( trim(get_option('A2A_SHARE_SAVE_button_text')) != '' ) ? stripslashes(get_option('A2A_SHARE_SAVE_button_text')) : "Share/Save"; ?>" />
287
 
288
  </fieldset></td>
i18n/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-01-20 19:30-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: \n"
@@ -84,121 +84,121 @@ msgstr "从任何电子邮件地址或电子邮件程序发送"
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
  #, fuzzy
186
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
187
  msgstr "高级用户可能希望尝试 Add to Any 的 <a href=\"http://www.addtoany.com/buttons/api/\">JavaScript API</a> 所生成的代码。"
188
 
189
- #: add-to-any.php:371
190
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
191
  msgstr "<strong>注意</strong>: 如果您打算添加新代码,请小心不要意外覆盖任何先前代码。</label>"
192
 
193
- #: add-to-any.php:378
194
  msgid "Save Changes"
195
  msgstr "保存更改"
196
 
197
- #: add-to-any.php:391
198
  msgid "Share/Save"
199
  msgstr "分享/收藏"
200
 
201
- #: add-to-any.php:392
202
  msgid "Share/Save Buttons"
203
  msgstr "分享/收藏 按钮"
204
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-01-29 18:32-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: \n"
84
  msgid "E-mail program"
85
  msgstr "电子邮件程序"
86
 
87
+ #: add-to-any.php:218
88
  msgid "Settings saved."
89
  msgstr "设置已保存"
90
 
91
+ #: add-to-any.php:227
92
  msgid "Add to Any: Share/Save "
93
  msgstr "Add to Any: 分享/收藏"
94
 
95
+ #: add-to-any.php:227
96
+ #: add-to-any.php:402
97
  msgid "Settings"
98
  msgstr "设置"
99
 
100
+ #: add-to-any.php:237
101
  msgid "Button"
102
  msgstr "按钮"
103
 
104
+ #: add-to-any.php:276
105
  msgid "Image URL"
106
  msgstr "图片 URL"
107
 
108
+ #: add-to-any.php:283
109
  msgid "Text only"
110
  msgstr "仅用文字"
111
 
112
+ #: add-to-any.php:291
113
  msgid "Button Placement"
114
  msgstr "按钮位置"
115
 
116
+ #: add-to-any.php:300
117
  msgid "Display Share/Save button at the bottom of posts"
118
  msgstr "在文章底部显示 分享/收藏 按钮"
119
 
120
+ #: add-to-any.php:307
121
  msgid "Display Share/Save button at the bottom of posts on the front page"
122
  msgstr "在首页的文章底部显示 分享/收藏 按钮"
123
 
124
+ #: add-to-any.php:314
125
  msgid "Display Share/Save button at the bottom of posts in the feed"
126
  msgstr "在 Feed 的文章底部显示 分享/收藏 按钮"
127
 
128
+ #: add-to-any.php:318
129
  msgid "Display Share/Save button at the bottom of pages"
130
  msgstr "在页面底部显示 分享/收藏 按钮"
131
 
132
+ #: add-to-any.php:322
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:328
137
  msgid "Menu Style"
138
  msgstr "菜单风格"
139
 
140
+ #: add-to-any.php:330
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:332
145
  msgid "Open the Add to Any Menu Styler in a new window"
146
  msgstr "在新窗口中打开 Add to Any 菜单风格设置器"
147
 
148
+ #: add-to-any.php:334
149
  msgid "Open Menu Styler"
150
  msgstr "打开菜单风格设置器"
151
 
152
+ #: add-to-any.php:339
153
  msgid "Menu Options"
154
  msgstr "菜单选项"
155
 
156
+ #: add-to-any.php:344
157
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
158
  msgstr "菜单显示时隐藏与菜单相交的嵌入式对象(Flash,视频,等) "
159
 
160
+ #: add-to-any.php:349
161
  msgid "Show the title of the post (or page) within the menu"
162
  msgstr "菜单中显示文章(或页面)的标题"
163
 
164
+ #: add-to-any.php:356
165
  msgid "Only show the menu when the user clicks the Share/Save button"
166
  msgstr "仅当用户点击 分享/收藏 按钮时显示菜单"
167
 
168
+ #: add-to-any.php:362
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:367
173
  msgid "Additional Options"
174
  msgstr "附加选项"
175
 
176
+ #: add-to-any.php:371
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:375
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:376
185
  #, fuzzy
186
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
187
  msgstr "高级用户可能希望尝试 Add to Any 的 <a href=\"http://www.addtoany.com/buttons/api/\">JavaScript API</a> 所生成的代码。"
188
 
189
+ #: add-to-any.php:382
190
  msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
191
  msgstr "<strong>注意</strong>: 如果您打算添加新代码,请小心不要意外覆盖任何先前代码。</label>"
192
 
193
+ #: add-to-any.php:389
194
  msgid "Save Changes"
195
  msgstr "保存更改"
196
 
197
+ #: add-to-any.php:402
198
  msgid "Share/Save"
199
  msgstr "分享/收藏"
200
 
201
+ #: add-to-any.php:403
202
  msgid "Share/Save Buttons"
203
  msgstr "分享/收藏 按钮"
204
 
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: 2009-01-20 19:30-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: \n"
@@ -81,120 +81,120 @@ msgstr ""
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 explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">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
 
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-01-29 18:33-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: \n"
81
  msgid "E-mail program"
82
  msgstr ""
83
 
84
+ #: add-to-any.php:218
85
  msgid "Settings saved."
86
  msgstr ""
87
 
88
+ #: add-to-any.php:227
89
  msgid "Add to Any: Share/Save "
90
  msgstr ""
91
 
92
+ #: add-to-any.php:227
93
+ #: add-to-any.php:402
94
  msgid "Settings"
95
  msgstr ""
96
 
97
+ #: add-to-any.php:237
98
  msgid "Button"
99
  msgstr ""
100
 
101
+ #: add-to-any.php:276
102
  msgid "Image URL"
103
  msgstr ""
104
 
105
+ #: add-to-any.php:283
106
  msgid "Text only"
107
  msgstr ""
108
 
109
+ #: add-to-any.php:291
110
  msgid "Button Placement"
111
  msgstr ""
112
 
113
+ #: add-to-any.php:300
114
  msgid "Display Share/Save button at the bottom of posts"
115
  msgstr ""
116
 
117
+ #: add-to-any.php:307
118
  msgid "Display Share/Save button at the bottom of posts on the front page"
119
  msgstr ""
120
 
121
+ #: add-to-any.php:314
122
  msgid "Display Share/Save button at the bottom of posts in the feed"
123
  msgstr ""
124
 
125
+ #: add-to-any.php:318
126
  msgid "Display Share/Save button at the bottom of pages"
127
  msgstr ""
128
 
129
+ #: add-to-any.php:322
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:328
134
  msgid "Menu Style"
135
  msgstr ""
136
 
137
+ #: add-to-any.php:330
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:332
142
  msgid "Open the Add to Any Menu Styler in a new window"
143
  msgstr ""
144
 
145
+ #: add-to-any.php:334
146
  msgid "Open Menu Styler"
147
  msgstr ""
148
 
149
+ #: add-to-any.php:339
150
  msgid "Menu Options"
151
  msgstr ""
152
 
153
+ #: add-to-any.php:344
154
  msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
155
  msgstr ""
156
 
157
+ #: add-to-any.php:349
158
  msgid "Show the title of the post (or page) within the menu"
159
  msgstr ""
160
 
161
+ #: add-to-any.php:356
162
  msgid "Only show the menu when the user clicks the Share/Save button"
163
  msgstr ""
164
 
165
+ #: add-to-any.php:362
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:367
170
  msgid "Additional Options"
171
  msgstr ""
172
 
173
+ #: add-to-any.php:371
174
  msgid "Paste the code from Add to Any's Menu Styler in the box below!"
175
  msgstr ""
176
 
177
+ #: add-to-any.php:375
178
  msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
179
  msgstr ""
180
 
181
+ #: add-to-any.php:376
182
  msgid "Advanced users might want to explore Add to Any's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
183
  msgstr ""
184
 
185
+ #: add-to-any.php:382
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:389
190
  msgid "Save Changes"
191
  msgstr ""
192
 
193
+ #: add-to-any.php:402
194
  msgid "Share/Save"
195
  msgstr ""
196
 
197
+ #: add-to-any.php:403
198
  msgid "Share/Save Buttons"
199
  msgstr ""
200