AddToAny Share Buttons - Version 0.9.9.4.8

Version Description

Download this release

Release Info

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

Code changes from version 0.9.9.4.7 to 0.9.9.4.8

README.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: micropat
3
  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
4
  Requires at least: 2.0
5
  Tested up to: 2.9
6
- Stable tag: 0.9.9.4.7
7
 
8
  Help readers share, bookmark, and email your posts and pages using any service, such as Facebook, Twitter, Digg, Delicious and over 100 more.
9
 
@@ -21,10 +21,12 @@ Individual **service icons** let you optimize your blog posts for specific socia
21
  * Individual service links (like Sociable)
22
  * Includes all <a href="http://www.addtoany.com/services/" target="_blank">services</a>
23
  * Menu updated automatically
24
- * WordPress optimized, localized (English, Chinese, Spanish, Portuguese, Italian, Danish, Catalan, Russian, Albanian, Romanian, Belarusian)
25
  * Google Analytics integration
26
  * Many more publisher and user features!
27
 
 
 
28
  See also:
29
 
30
  * The <a href="/extend/plugins/add-to-any-subscribe/" title="WordPress RSS Subscribe widget plugin">Subscribe button</a> plugin
@@ -121,6 +123,28 @@ This is done to overcome browser limitations that prevent the drop-down menu fro
121
 
122
  == Changelog ==
123
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
124
  = .9.9.4.7 =
125
  * Just a slight rename
126
  * Spaces in "Add to Any" removed, now camel-case: "AddToAny"
3
  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
4
  Requires at least: 2.0
5
  Tested up to: 2.9
6
+ Stable tag: 0.9.9.4.8
7
 
8
  Help readers share, bookmark, and email your posts and pages using any service, such as Facebook, Twitter, Digg, Delicious and over 100 more.
9
 
21
  * Individual service links (like Sociable)
22
  * Includes all <a href="http://www.addtoany.com/services/" target="_blank">services</a>
23
  * Menu updated automatically
24
+ * WordPress optimized, localized (English, Chinese, Spanish, Japanese, Portuguese, Italian, Danish, Catalan, Russian, Albanian, Romanian, Belarusian)
25
  * Google Analytics integration
26
  * Many more publisher and user features!
27
 
28
+ <a href="http://www.addtoany.com/privacy">Privacy Policy</a>
29
+
30
  See also:
31
 
32
  * The <a href="/extend/plugins/add-to-any-subscribe/" title="WordPress RSS Subscribe widget plugin">Subscribe button</a> plugin
123
 
124
  == Changelog ==
125
 
126
+ = .9.9.4.8 =
127
+ * Inline CSS toggle
128
+ * If turned off, copy the CSS to your theme's stylesheet
129
+ * Provided a link on plugin page to AddToAny's privacy policy
130
+ * Pro tip: Sharing to Google Reader right now is equivalent to sharing to Google Buzz
131
+ * You can enable Google Reader as a standalone service
132
+ * Google Reader is included in AddToAny's smart menu
133
+ * New standalone services
134
+ * Balatarin
135
+ * Vodpod
136
+ * IWIW
137
+ * Svejo
138
+ * Oknotizie
139
+ * Favoriten
140
+ * Hatena
141
+ * NUjij
142
+ * Read It Later
143
+ * diHITT
144
+ * Removed standalone service
145
+ * Global Grind
146
+ * Japanese translation (by <a href="http://wpxtreme.jp/" target="_blank">kz</a>)
147
+
148
  = .9.9.4.7 =
149
  * Just a slight rename
150
  * Spaces in "Add to Any" removed, now camel-case: "AddToAny"
add-to-any.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: AddToAny: Share/Bookmark/Email Button
4
  Plugin URI: http://www.addtoany.com/
5
  Description: Help 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.7
7
  Author: AddToAny
8
  Author URI: http://www.addtoany.com/
9
  */
@@ -362,7 +362,9 @@ function A2A_SHARE_SAVE_button_css() {
362
  <?php
363
  }
364
 
365
- add_action('wp_head', 'A2A_SHARE_SAVE_button_css');
 
 
366
 
367
 
368
 
@@ -392,6 +394,7 @@ function A2A_SHARE_SAVE_options_page() {
392
  update_option( 'A2A_SHARE_SAVE_button', $_POST['A2A_SHARE_SAVE_button'] );
393
  update_option( 'A2A_SHARE_SAVE_button_custom', $_POST['A2A_SHARE_SAVE_button_custom'] );
394
  update_option( 'A2A_SHARE_SAVE_additional_js_variables', trim($_POST['A2A_SHARE_SAVE_additional_js_variables']) );
 
395
 
396
  // Store desired text if 16 x 16px buttons or text-only is chosen:
397
  if( get_option('A2A_SHARE_SAVE_button') == 'favicon.png|16|16' )
@@ -616,7 +619,17 @@ function A2A_SHARE_SAVE_options_page() {
616
  </p>
617
  <?php if( get_option('A2A_SHARE_SAVE_additional_js_variables')!='' ) { ?>
618
  <label for="A2A_SHARE_SAVE_additional_js_variables" class="setting-description"><?php _e("<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>", 'add-to-any'); ?>
619
- <?php } ?>
 
 
 
 
 
 
 
 
 
 
620
  </fieldset></td>
621
  </tr>
622
  </table>
3
  Plugin Name: AddToAny: 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.8
7
  Author: AddToAny
8
  Author URI: http://www.addtoany.com/
9
  */
362
  <?php
363
  }
364
 
365
+ if (get_option('A2A_SHARE_SAVE_inline_css') != '-1') {
366
+ add_action('wp_head', 'A2A_SHARE_SAVE_button_css');
367
+ }
368
 
369
 
370
 
394
  update_option( 'A2A_SHARE_SAVE_button', $_POST['A2A_SHARE_SAVE_button'] );
395
  update_option( 'A2A_SHARE_SAVE_button_custom', $_POST['A2A_SHARE_SAVE_button_custom'] );
396
  update_option( 'A2A_SHARE_SAVE_additional_js_variables', trim($_POST['A2A_SHARE_SAVE_additional_js_variables']) );
397
+ update_option( 'A2A_SHARE_SAVE_inline_css', ($_POST['A2A_SHARE_SAVE_inline_css']=='1') ? '1':'-1' );
398
 
399
  // Store desired text if 16 x 16px buttons or text-only is chosen:
400
  if( get_option('A2A_SHARE_SAVE_button') == 'favicon.png|16|16' )
619
  </p>
620
  <?php if( get_option('A2A_SHARE_SAVE_additional_js_variables')!='' ) { ?>
621
  <label for="A2A_SHARE_SAVE_additional_js_variables" class="setting-description"><?php _e("<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>", 'add-to-any'); ?>
622
+ <br/><br/>
623
+ <?php } ?>
624
+ <label for="A2A_SHARE_SAVE_inline_css">
625
+ <input name="A2A_SHARE_SAVE_inline_css"
626
+ type="checkbox"<?php if(get_option('A2A_SHARE_SAVE_inline_css')!='-1') echo ' checked="checked"'; ?> value="1"/>
627
+ <?php _e('Use inline CSS', 'add-to-any'); ?> <strong>**</strong>
628
+ </label>
629
+ <br/><br/>
630
+ <div class="setting-description">
631
+ <strong>**</strong> <?php _e("If unchecked, be sure to place the CSS in your theme's stylesheet.", "add-to-any"); ?>
632
+ </div>
633
  </fieldset></td>
634
  </tr>
635
  </table>
icons/balatarin.png ADDED
Binary file
icons/dihitt.png ADDED
Binary file
icons/favoriten.png ADDED
Binary file
icons/hatena.png ADDED
Binary file
icons/iwiw.png ADDED
Binary file
icons/nujij.png ADDED
Binary file
icons/oknotizie.png ADDED
Binary file
icons/read_it_later.png ADDED
Binary file
icons/svejo.png ADDED
Binary file
icons/vodpod.png ADDED
Binary file
languages/add-to-any-ja.mo ADDED
Binary file
languages/add-to-any-ja.po ADDED
@@ -0,0 +1,250 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: add-to-any\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-01-18 14:02-0800\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: netalfa.jp <netalfa.jp@gmail.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-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 "Powered by"
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>footer.php</code> 内の <code>&lt;/body&gt;</code> 直前に <code>&lt;?php wp_footer(); ?&gt;</code> を挿入してください。"
87
+
88
+ #: add-to-any.php:402
89
+ #: add-to-any.php:475
90
+ #: add-to-any.php:479
91
+ #: add-to-any.php:483
92
+ #: add-to-any.php:487
93
+ #: add-to-any.php:519
94
+ msgid "Share/Bookmark"
95
+ msgstr "ブックマーク"
96
+
97
+ #: add-to-any.php:416
98
+ msgid "Settings saved."
99
+ msgstr "設定を保存しました。"
100
+
101
+ #: add-to-any.php:427
102
+ msgid "AddToAny: Share/Save "
103
+ msgstr "AddToAny ボタン"
104
+
105
+ #: add-to-any.php:427
106
+ #: add-to-any.php:791
107
+ #: add-to-any.php:815
108
+ msgid "Settings"
109
+ msgstr "設定"
110
+
111
+ #: add-to-any.php:438
112
+ msgid "Standalone Services"
113
+ msgstr "アイコン表示するサービス"
114
+
115
+ #: add-to-any.php:443
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:470
120
+ msgid "Button"
121
+ msgstr "ブックマークボタン"
122
+
123
+ #: add-to-any.php:509
124
+ msgid "Image URL"
125
+ msgstr "画像のURL"
126
+
127
+ #: add-to-any.php:516
128
+ msgid "Text only"
129
+ msgstr "文字のみ"
130
+
131
+ #: add-to-any.php:524
132
+ msgid "Placement"
133
+ msgstr "ブックマークボタンの場所"
134
+
135
+ #: add-to-any.php:533
136
+ msgid "Display Share/Save button at the bottom of posts"
137
+ msgstr "投稿の最後にボタンを表示する"
138
+
139
+ #: add-to-any.php:540
140
+ msgid "Display Share/Save button at the bottom of posts on the front page"
141
+ msgstr "フロントページで投稿の最後にボタンを表示する"
142
+
143
+ #: add-to-any.php:547
144
+ msgid "Display Share/Save button at the bottom of posts in the feed"
145
+ msgstr "フィードで投稿の最後にボタンを表示する"
146
+
147
+ #: add-to-any.php:551
148
+ msgid "Display Share/Save button at the bottom of pages"
149
+ msgstr "ページの最後にボタンを表示する"
150
+
151
+ #: add-to-any.php:555
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 "どれもチェックしない場合は、<code>index.php</code> や <code>single.php</code>、<code>page.php</code> などの <a href=\"theme-editor.php\">テンプレートページ</a> に次のコードを書いてください"
154
+
155
+ #: add-to-any.php:564
156
+ msgid "Menu Style"
157
+ msgstr "メニューのスタイル"
158
+
159
+ #: add-to-any.php:566
160
+ msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
161
+ msgstr "AddToAny のメニュースタイラーでブックマークメニューの色を変更できます。コピーしたコードは下の <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">その他のオプション</a> 欄に貼り付けてください。"
162
+
163
+ #: add-to-any.php:568
164
+ msgid "Open the AddToAny Menu Styler in a new window"
165
+ msgstr "AddToAny メニュースタイラーを新しいウインドウで開きます"
166
+
167
+ #: add-to-any.php:570
168
+ msgid "Open Menu Styler"
169
+ msgstr "メニュースタイラーを開く"
170
+
171
+ #: add-to-any.php:575
172
+ msgid "Menu Options"
173
+ msgstr "メニューのオプション"
174
+
175
+ #: add-to-any.php:580
176
+ msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
177
+ msgstr "メニューと重なったFlashや動画などを非表示にする"
178
+
179
+ #: add-to-any.php:585
180
+ msgid "Show the title of the post (or page) within the menu"
181
+ msgstr "メニューに投稿(ページ)のタイトルを表示する"
182
+
183
+ #: add-to-any.php:592
184
+ msgid "Only show the menu when the user clicks the Share/Save button"
185
+ msgstr "ブックマークボタンをクリックしたときだけメニューを表示する"
186
+
187
+ #: add-to-any.php:598
188
+ msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
189
+ msgstr "ブックマークボタンをクリックした時に新しいタブ/ウインドウで addtoany.com のメニューページを開く"
190
+
191
+ #: add-to-any.php:603
192
+ msgid "Additional Options"
193
+ msgstr "その他のオプション"
194
+
195
+ #: add-to-any.php:607
196
+ msgid "Paste the code from AddToAny's Menu Styler in the box below!"
197
+ msgstr "AddToAny メニュースタイラーで作成したコードを以下に貼り付けてください。"
198
+
199
+ #: add-to-any.php:611
200
+ msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
201
+ msgstr "ブックマークメニューで使用する javascript の変数を設定することができます。"
202
+
203
+ #: add-to-any.php:612
204
+ msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">JavaScript API</a>."
205
+ msgstr "詳しくは AddToAny の <a href=\"http://www.addtoany.com/buttons/api/\" target=\"_blank\">javascript API</a> を参照してください。"
206
+
207
+ #: add-to-any.php:618
208
+ msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
209
+ msgstr "<strong>注意</strong>: コードを追加する場合は、元のコードを上書きしないようにしてください。</label>"
210
+
211
+ #: add-to-any.php:625
212
+ msgid "Save Changes"
213
+ msgstr "変更を保存"
214
+
215
+ #: add-to-any.php:630
216
+ msgid "Like this plugin?"
217
+ msgstr "このプラグインが気に入りましたか?"
218
+
219
+ #: add-to-any.php:631
220
+ msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
221
+ msgstr "WordPress.org で <a href=\"http://wordpress.org/extend/plugins/add-to-any/\">良い評価をつける</a>。"
222
+
223
+ #: add-to-any.php:632
224
+ msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
225
+ 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>。"
226
+
227
+ #: add-to-any.php:634
228
+ msgid "Need support?"
229
+ msgstr "サポートが必要ですか?"
230
+
231
+ #: add-to-any.php:635
232
+ msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
233
+ msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQ</a> をご確認ください。"
234
+
235
+ #: add-to-any.php:636
236
+ msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
237
+ msgstr "<a href=\"http://wordpress.org/tags/add-to-any\">本家サポートフォーラム</a> をご利用ください。"
238
+
239
+ #: add-to-any.php:743
240
+ msgid "Add/Remove Services"
241
+ msgstr "サービスの追加/削除"
242
+
243
+ #: add-to-any.php:791
244
+ msgid "Share/Save"
245
+ msgstr "ブックマーク"
246
+
247
+ #: add-to-any.php:792
248
+ msgid "Share/Save Buttons"
249
+ msgstr "AddToAny ボタン"
250
+
services.php CHANGED
@@ -30,6 +30,10 @@ $A2A_SHARE_SAVE_services = Array(
30
  "name" => "Backflip",
31
  "icon" => "backflip",
32
  ),
 
 
 
 
33
  "bebo" => Array(
34
  "name" => "Bebo",
35
  "icon" => "bebo",
@@ -130,6 +134,10 @@ $A2A_SHARE_SAVE_services = Array(
130
  "name" => "Faves",
131
  "icon" => "faves",
132
  ),
 
 
 
 
133
  "folkd" => Array(
134
  "name" => "Folkd",
135
  "icon" => "folkd",
@@ -150,10 +158,6 @@ $A2A_SHARE_SAVE_services = Array(
150
  "name" => "Gabbr",
151
  "icon" => "gabbr",
152
  ),
153
- "global_grind" => Array(
154
- "name" => "Global Grind",
155
- "icon" => "global_grind",
156
- ),
157
  "google_bookmarks" => Array(
158
  "name" => "Google Bookmarks",
159
  "icon" => "google",
@@ -166,6 +170,10 @@ $A2A_SHARE_SAVE_services = Array(
166
  "name" => "Google Reader",
167
  "icon" => "reader",
168
  ),
 
 
 
 
169
  "health_ranker" => Array(
170
  "name" => "Health Ranker",
171
  "icon" => "healthranker",
@@ -190,6 +198,10 @@ $A2A_SHARE_SAVE_services = Array(
190
  "name" => "Hyves",
191
  "icon" => "hyves",
192
  ),
 
 
 
 
193
  "identi_ca" => Array(
194
  "name" => "Identi.ca",
195
  "icon" => "identica",
@@ -274,6 +286,10 @@ $A2A_SHARE_SAVE_services = Array(
274
  "name" => "MySpace",
275
  "icon" => "myspace",
276
  ),
 
 
 
 
277
  "netlog" => Array(
278
  "name" => "Netlog",
279
  "icon" => "netlog",
@@ -298,6 +314,10 @@ $A2A_SHARE_SAVE_services = Array(
298
  "name" => "NowPublic",
299
  "icon" => "nowpublic",
300
  ),
 
 
 
 
301
  "oneview" => Array(
302
  "name" => "Oneview",
303
  "icon" => "oneview",
@@ -342,6 +362,10 @@ $A2A_SHARE_SAVE_services = Array(
342
  "name" => "Pusha",
343
  "icon" => "pusha",
344
  ),
 
 
 
 
345
  "reddit" => Array(
346
  "name" => "Reddit",
347
  "icon" => "reddit",
@@ -402,6 +426,10 @@ $A2A_SHARE_SAVE_services = Array(
402
  "name" => "Stumpedia",
403
  "icon" => "stumpedia",
404
  ),
 
 
 
 
405
  "symbaloo_feeds" => Array(
406
  "name" => "Symbaloo Feeds",
407
  "icon" => "symbaloo",
@@ -454,6 +482,10 @@ $A2A_SHARE_SAVE_services = Array(
454
  "name" => "Viadeo",
455
  "icon" => "viadeo",
456
  ),
 
 
 
 
457
  "webnews" => Array(
458
  "name" => "Webnews",
459
  "icon" => "webnews",
@@ -514,6 +546,10 @@ $A2A_SHARE_SAVE_services = Array(
514
  "name" => "YouMob",
515
  "icon" => "youmob",
516
  ),
 
 
 
 
517
  "unalog" => Array(
518
  "name" => "unalog",
519
  "icon" => "unalog",
30
  "name" => "Backflip",
31
  "icon" => "backflip",
32
  ),
33
+ "balatarin" => Array(
34
+ "name" => "Balatarin",
35
+ "icon" => "balatarin",
36
+ ),
37
  "bebo" => Array(
38
  "name" => "Bebo",
39
  "icon" => "bebo",
134
  "name" => "Faves",
135
  "icon" => "faves",
136
  ),
137
+ "favoriten" => Array(
138
+ "name" => "Favoriten",
139
+ "icon" => "favoriten",
140
+ ),
141
  "folkd" => Array(
142
  "name" => "Folkd",
143
  "icon" => "folkd",
158
  "name" => "Gabbr",
159
  "icon" => "gabbr",
160
  ),
 
 
 
 
161
  "google_bookmarks" => Array(
162
  "name" => "Google Bookmarks",
163
  "icon" => "google",
170
  "name" => "Google Reader",
171
  "icon" => "reader",
172
  ),
173
+ "hatena" => Array(
174
+ "name" => "Hatena",
175
+ "icon" => "hatena",
176
+ ),
177
  "health_ranker" => Array(
178
  "name" => "Health Ranker",
179
  "icon" => "healthranker",
198
  "name" => "Hyves",
199
  "icon" => "hyves",
200
  ),
201
+ "iwiw" => Array(
202
+ "name" => "IWIW",
203
+ "icon" => "iwiw",
204
+ ),
205
  "identi_ca" => Array(
206
  "name" => "Identi.ca",
207
  "icon" => "identica",
286
  "name" => "MySpace",
287
  "icon" => "myspace",
288
  ),
289
+ "nujij" => Array(
290
+ "name" => "NUjij",
291
+ "icon" => "nujij",
292
+ ),
293
  "netlog" => Array(
294
  "name" => "Netlog",
295
  "icon" => "netlog",
314
  "name" => "NowPublic",
315
  "icon" => "nowpublic",
316
  ),
317
+ "oknotizie" => Array(
318
+ "name" => "Oknotizie",
319
+ "icon" => "oknotizie",
320
+ ),
321
  "oneview" => Array(
322
  "name" => "Oneview",
323
  "icon" => "oneview",
362
  "name" => "Pusha",
363
  "icon" => "pusha",
364
  ),
365
+ "read_it_later" => Array(
366
+ "name" => "Read It Later",
367
+ "icon" => "read_it_later",
368
+ ),
369
  "reddit" => Array(
370
  "name" => "Reddit",
371
  "icon" => "reddit",
426
  "name" => "Stumpedia",
427
  "icon" => "stumpedia",
428
  ),
429
+ "svejo" => Array(
430
+ "name" => "Svejo",
431
+ "icon" => "svejo",
432
+ ),
433
  "symbaloo_feeds" => Array(
434
  "name" => "Symbaloo Feeds",
435
  "icon" => "symbaloo",
482
  "name" => "Viadeo",
483
  "icon" => "viadeo",
484
  ),
485
+ "vodpod" => Array(
486
+ "name" => "VodPod",
487
+ "icon" => "vodpod",
488
+ ),
489
  "webnews" => Array(
490
  "name" => "Webnews",
491
  "icon" => "webnews",
546
  "name" => "YouMob",
547
  "icon" => "youmob",
548
  ),
549
+ "dihitt" => Array(
550
+ "name" => "diHITT",
551
+ "icon" => "dihitt",
552
+ ),
553
  "unalog" => Array(
554
  "name" => "unalog",
555
  "icon" => "unalog",