Version Description
Download this release
Release Info
Developer | micropat |
Plugin | AddToAny Share Buttons |
Version | 0.9.9.4 |
Comparing to | |
See all releases |
Code changes from version 0.9.9.3.5 to 0.9.9.4
- README.txt +24 -4
- add-to-any.php +42 -8
- icons/twitter.png +0 -0
- languages/add-to-any-be.po +59 -59
- languages/add-to-any-ca.po +59 -59
- languages/add-to-any-da_DK.po +59 -59
- languages/add-to-any-de.po +59 -59
- languages/add-to-any-es_ES.po +59 -59
- languages/add-to-any-it_IT.po +59 -59
- languages/add-to-any-pt_PT.po +59 -59
- languages/add-to-any-zh_CN.po +59 -59
- languages/add-to-any.po +59 -59
README.txt
CHANGED
@@ -4,9 +4,9 @@ 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.
|
8 |
|
9 |
-
Help readers share,
|
10 |
|
11 |
== Description ==
|
12 |
|
@@ -20,7 +20,7 @@ Individual **service icons** let you optimize your blog posts for specific socia
|
|
20 |
|
21 |
* AddToAny <a href="http://www.addtoany.com/blog/smart-menus-the-services-your-visitors-use-displayed-first/" target="_blank">Smart Menu</a>
|
22 |
* Individual service links (like Sociable)
|
23 |
-
* Includes all services
|
24 |
* Menu updated automatically
|
25 |
* WordPress optimized, localized (English, Chinese, Spanish, Portuguese, Italian, Danish, Catalan, Russian, Belarusian)
|
26 |
* Google Analytics integration
|
@@ -50,7 +50,7 @@ Go to `Settings` > `Share/Save Buttons`.
|
|
50 |
|
51 |
= Why isn't the drop-down menu appearing? =
|
52 |
|
53 |
-
It's likely because your
|
54 |
|
55 |
`<?php wp_footer(); ?>`
|
56 |
|
@@ -84,6 +84,21 @@ Or you can place the icons as individual links (without being wrapped in an HTML
|
|
84 |
|
85 |
`<?php if( function_exists('ADDTOANY_SHARE_SAVE_ICONS') ) { ADDTOANY_SHARE_SAVE_ICONS(); } ?>`
|
86 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
87 |
= How can I force the button to appear in individual posts and pages? =
|
88 |
|
89 |
If your button isn't already set up to appear (it is by default), type the following tag into the page or post that you want the button to appear in: `<!--sharesave-->`
|
@@ -106,6 +121,11 @@ This is done to overcome browser limitations that prevent the drop-down menu fro
|
|
106 |
|
107 |
== Changelog ==
|
108 |
|
|
|
|
|
|
|
|
|
|
|
109 |
= .9.9.3.5 =
|
110 |
* New standalone services
|
111 |
* DailyMe
|
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
|
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.
|
10 |
|
11 |
== Description ==
|
12 |
|
20 |
|
21 |
* AddToAny <a href="http://www.addtoany.com/blog/smart-menus-the-services-your-visitors-use-displayed-first/" target="_blank">Smart Menu</a>
|
22 |
* Individual service links (like Sociable)
|
23 |
+
* Includes all <a href="http://www.addtoany.com/services/" target="_blank">services</a>
|
24 |
* Menu updated automatically
|
25 |
* WordPress optimized, localized (English, Chinese, Spanish, Portuguese, Italian, Danish, Catalan, Russian, Belarusian)
|
26 |
* Google Analytics integration
|
50 |
|
51 |
= Why isn't the drop-down menu appearing? =
|
52 |
|
53 |
+
It's likely because 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 |
|
84 |
|
85 |
`<?php if( function_exists('ADDTOANY_SHARE_SAVE_ICONS') ) { ADDTOANY_SHARE_SAVE_ICONS(); } ?>`
|
86 |
|
87 |
+
= How can I add a new custom standalone service? =
|
88 |
+
You can create a plugin or customize the following PHP sample code to add to your theme's function.php file:
|
89 |
+
|
90 |
+
`function addtoany_add_services( $services ) {
|
91 |
+
$services['google_example'] = array(
|
92 |
+
'name' => 'Google Example',
|
93 |
+
'icon_url' => 'http://www.google.com/favicon.ico',
|
94 |
+
'icon_width' => 16,
|
95 |
+
'icon_height' => 16,
|
96 |
+
'href' => 'http://www.example.com/add?linkurl=A2A_LINKURL&linkname=A2A_LINKNAME'
|
97 |
+
);
|
98 |
+
return $services;
|
99 |
+
}
|
100 |
+
add_filter('A2A_SHARE_SAVE_services', 'addtoany_add_services', 10, 1);`
|
101 |
+
|
102 |
= How can I force the button to appear in individual posts and pages? =
|
103 |
|
104 |
If your button isn't already set up to appear (it is by default), type the following tag into the page or post that you want the button to appear in: `<!--sharesave-->`
|
121 |
|
122 |
== Changelog ==
|
123 |
|
124 |
+
= .9.9.4 =
|
125 |
+
* Custom standalone service support
|
126 |
+
* Custom icon support
|
127 |
+
* Updated Twitter icon
|
128 |
+
|
129 |
= .9.9.3.5 =
|
130 |
* New standalone services
|
131 |
* DailyMe
|
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.
|
7 |
Author: Add to Any
|
8 |
Author URI: http://www.addtoany.com/contact/
|
9 |
*/
|
@@ -51,6 +51,9 @@ function ADDTOANY_SHARE_SAVE_ICONS( $args = false ) {
|
|
51 |
|
52 |
global $A2A_SHARE_SAVE_plugin_url_path, $A2A_SHARE_SAVE_services;
|
53 |
|
|
|
|
|
|
|
54 |
$active_services = get_option('A2A_SHARE_SAVE_active_services');
|
55 |
|
56 |
$ind_html = "";
|
@@ -67,10 +70,30 @@ function ADDTOANY_SHARE_SAVE_ICONS( $args = false ) {
|
|
67 |
$service = $A2A_SHARE_SAVE_services[$active_service];
|
68 |
$safe_name = $active_service;
|
69 |
$name = $service['name'];
|
70 |
-
|
71 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
$link = $html_wrap_open."<a href=\"$url\" title=\"$name\" rel=\"nofollow\" target=\"_blank\">";
|
73 |
-
$link .= "<img src=\""
|
74 |
$link .= "</a>".$html_wrap_close;
|
75 |
|
76 |
$ind_html .= apply_filters('addtoany_link', $link);
|
@@ -86,6 +109,9 @@ function ADDTOANY_SHARE_SAVE_BUTTON( $args = false ) {
|
|
86 |
|
87 |
global $A2A_SHARE_SAVE_plugin_url_path, $A2A_SHARE_SAVE_services;
|
88 |
|
|
|
|
|
|
|
89 |
if( $args )
|
90 |
extract( $args ); // output_later, html_wrap_open, html_wrap_close
|
91 |
|
@@ -301,8 +327,6 @@ function A2A_SHARE_SAVE_button_css() {
|
|
301 |
ul.addtoany_list li a{padding:0 9px;}
|
302 |
ul.addtoany_list img{
|
303 |
float:none;
|
304 |
-
width:16px;
|
305 |
-
height:16px;
|
306 |
border:0;
|
307 |
margin:0;
|
308 |
padding:0;
|
@@ -336,6 +360,9 @@ add_action('wp_head', 'A2A_SHARE_SAVE_button_css');
|
|
336 |
function A2A_SHARE_SAVE_options_page() {
|
337 |
|
338 |
global $A2A_SHARE_SAVE_plugin_url_path, $A2A_SHARE_SAVE_services;
|
|
|
|
|
|
|
339 |
|
340 |
if( $_POST[ 'A2A_SHARE_SAVE_submit_hidden' ] == 'Y' ) {
|
341 |
|
@@ -405,10 +432,17 @@ function A2A_SHARE_SAVE_options_page() {
|
|
405 |
if( !$active_services )
|
406 |
$active_services = Array();
|
407 |
|
408 |
-
foreach ($A2A_SHARE_SAVE_services as $service_safe_name=>$site) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
409 |
<li id="a2a_wp_<?php echo $service_safe_name; ?>"
|
410 |
title="<?php echo $site['name']; ?>">
|
411 |
-
<span><img src="<?php echo $A2A_SHARE_SAVE_plugin_url_path.'/icons/'.$site['icon'];
|
412 |
</li>
|
413 |
<?php
|
414 |
} ?>
|
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
|
7 |
Author: Add to Any
|
8 |
Author URI: http://www.addtoany.com/contact/
|
9 |
*/
|
51 |
|
52 |
global $A2A_SHARE_SAVE_plugin_url_path, $A2A_SHARE_SAVE_services;
|
53 |
|
54 |
+
// Make available services extensible via plugins, themes (functions.php), etc.
|
55 |
+
$A2A_SHARE_SAVE_services = apply_filters('A2A_SHARE_SAVE_services', $A2A_SHARE_SAVE_services);
|
56 |
+
|
57 |
$active_services = get_option('A2A_SHARE_SAVE_active_services');
|
58 |
|
59 |
$ind_html = "";
|
70 |
$service = $A2A_SHARE_SAVE_services[$active_service];
|
71 |
$safe_name = $active_service;
|
72 |
$name = $service['name'];
|
73 |
+
|
74 |
+
if (isset($service['href'])) {
|
75 |
+
$custom_service = TRUE;
|
76 |
+
$href = $service['href'];
|
77 |
+
$href = str_replace('A2A_LINKURL', $linkurl_enc, $href);
|
78 |
+
$href = str_replace('A2A_LINKNAME', $linkname_enc, $href);
|
79 |
+
} else {
|
80 |
+
$custom_service = FALSE;
|
81 |
+
}
|
82 |
+
|
83 |
+
if ( $custom_service && isset($service['icon_url']) )
|
84 |
+
$icon = $service['icon_url'];
|
85 |
+
elseif ( ! isset($service['icon']))
|
86 |
+
$icon = 'default';
|
87 |
+
else
|
88 |
+
$icon = $service['icon'];
|
89 |
+
$width = (isset($service['icon_width'])) ? $service['icon_width'] : '16';
|
90 |
+
$height = (isset($service['icon_height'])) ? $service['icon_height'] : '16';
|
91 |
+
|
92 |
+
$url = ($custom_service) ? $href : "http://www.addtoany.com/add_to/" . $safe_name . "?linkurl=" . $linkurl_enc . "&linkname=" . $linkname_enc;
|
93 |
+
$src = ($custom_service) ? $icon : $A2A_SHARE_SAVE_plugin_url_path."/icons/".$icon.".png";
|
94 |
+
|
95 |
$link = $html_wrap_open."<a href=\"$url\" title=\"$name\" rel=\"nofollow\" target=\"_blank\">";
|
96 |
+
$link .= "<img src=\"$src\" width=\"$width\" height=\"$height\" alt=\"$name\"/>";
|
97 |
$link .= "</a>".$html_wrap_close;
|
98 |
|
99 |
$ind_html .= apply_filters('addtoany_link', $link);
|
109 |
|
110 |
global $A2A_SHARE_SAVE_plugin_url_path, $A2A_SHARE_SAVE_services;
|
111 |
|
112 |
+
// Make available services extensible via plugins, themes (functions.php), etc.
|
113 |
+
$A2A_SHARE_SAVE_services = apply_filters('A2A_SHARE_SAVE_services', $A2A_SHARE_SAVE_services);
|
114 |
+
|
115 |
if( $args )
|
116 |
extract( $args ); // output_later, html_wrap_open, html_wrap_close
|
117 |
|
327 |
ul.addtoany_list li a{padding:0 9px;}
|
328 |
ul.addtoany_list img{
|
329 |
float:none;
|
|
|
|
|
330 |
border:0;
|
331 |
margin:0;
|
332 |
padding:0;
|
360 |
function A2A_SHARE_SAVE_options_page() {
|
361 |
|
362 |
global $A2A_SHARE_SAVE_plugin_url_path, $A2A_SHARE_SAVE_services;
|
363 |
+
|
364 |
+
// Make available services extensible via plugins, themes (functions.php), etc.
|
365 |
+
$A2A_SHARE_SAVE_services = apply_filters('A2A_SHARE_SAVE_services', $A2A_SHARE_SAVE_services);
|
366 |
|
367 |
if( $_POST[ 'A2A_SHARE_SAVE_submit_hidden' ] == 'Y' ) {
|
368 |
|
432 |
if( !$active_services )
|
433 |
$active_services = Array();
|
434 |
|
435 |
+
foreach ($A2A_SHARE_SAVE_services as $service_safe_name=>$site) {
|
436 |
+
if (isset($site['href']))
|
437 |
+
$custom_service = TRUE;
|
438 |
+
else
|
439 |
+
$custom_service = FALSE;
|
440 |
+
if ( ! isset($site['icon']))
|
441 |
+
$site['icon'] = 'default';
|
442 |
+
?>
|
443 |
<li id="a2a_wp_<?php echo $service_safe_name; ?>"
|
444 |
title="<?php echo $site['name']; ?>">
|
445 |
+
<span><img src="<?php echo ($custom_service) ? $site['icon_url'] : $A2A_SHARE_SAVE_plugin_url_path.'/icons/'.$site['icon'].'.png'; ?>" width="<?php echo (isset($site['icon_width'])) ? $site['icon_width'] : '16'; ?>" height="<?php echo (isset($site['icon_height'])) ? $site['icon_height'] : '16'; ?>" alt="" /><?php echo $site['name']; ?></span>
|
446 |
</li>
|
447 |
<?php
|
448 |
} ?>
|
icons/twitter.png
CHANGED
Binary file
|
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-08
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: MicroPat\n"
|
8 |
"Language-Team: Marcis Gasuns <mrilyuha@gmail.com>\n"
|
@@ -15,232 +15,232 @@ msgstr ""
|
|
15 |
"X-Poedit-Country: BELARUS\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
-
#: add-to-any.php:
|
19 |
msgid "Share"
|
20 |
msgstr "Падзяліць"
|
21 |
|
22 |
-
#: add-to-any.php:
|
23 |
msgid "Save"
|
24 |
msgstr "Захаваць"
|
25 |
|
26 |
-
#: add-to-any.php:
|
27 |
msgid "Subscribe"
|
28 |
msgstr "Падпісацца"
|
29 |
|
30 |
-
#: add-to-any.php:
|
31 |
msgid "E-mail"
|
32 |
msgstr "Электоронная пошта"
|
33 |
|
34 |
-
#: add-to-any.php:
|
35 |
msgid "Bookmark"
|
36 |
msgstr "Закладка"
|
37 |
|
38 |
-
#: add-to-any.php:
|
39 |
msgid "Show all"
|
40 |
msgstr "Паказаць усё"
|
41 |
|
42 |
-
#: add-to-any.php:
|
43 |
msgid "Show less"
|
44 |
msgstr "Паказаць менш"
|
45 |
|
46 |
-
#: add-to-any.php:
|
47 |
msgid "Find service(s)"
|
48 |
msgstr "Знайсці паслугу(і)"
|
49 |
|
50 |
-
#: add-to-any.php:
|
51 |
msgid "Instantly find any service to add to"
|
52 |
msgstr "Імгненна знайсці яку-небудзь паслугу, каб дадаць да"
|
53 |
|
54 |
-
#: add-to-any.php:
|
55 |
msgid "Powered by"
|
56 |
msgstr "Кіруецца"
|
57 |
|
58 |
-
#: add-to-any.php:
|
59 |
msgid "Share via e-mail"
|
60 |
msgstr "Адправіць па электроннай пошце"
|
61 |
|
62 |
-
#: add-to-any.php:
|
63 |
msgid "Subscribe via e-mail"
|
64 |
msgstr "Падпісацца па электроннай пошце"
|
65 |
|
66 |
-
#: add-to-any.php:
|
67 |
msgid "Bookmark in your browser"
|
68 |
msgstr "Закладка ў вашым браузеры"
|
69 |
|
70 |
-
#: add-to-any.php:
|
71 |
#, fuzzy
|
72 |
msgid "Press Ctrl+D or ⌘+D to bookmark this page"
|
73 |
msgstr "Націсніце Ctrl+D ці Cmd+D, каб стварыць закладку гэтай старонкі"
|
74 |
|
75 |
-
#: add-to-any.php:
|
76 |
msgid "Add to your favorites"
|
77 |
msgstr "Дадаць у выбранае"
|
78 |
|
79 |
-
#: add-to-any.php:
|
80 |
msgid "Send from any e-mail address or e-mail program"
|
81 |
msgstr "Адправіць з любога пошатовага адрасу ці з паштовай праграмы"
|
82 |
|
83 |
-
#: add-to-any.php:
|
84 |
msgid "E-mail program"
|
85 |
msgstr "Паштовая праграма"
|
86 |
|
87 |
-
#: add-to-any.php:
|
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><?php wp_footer(); ?></code> just before the <code></body></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:
|
92 |
msgid "Settings saved."
|
93 |
msgstr "Наладкі захаваны"
|
94 |
|
95 |
-
#: add-to-any.php:
|
96 |
msgid "Add to Any: Share/Save "
|
97 |
msgstr "Дадаць у любое: падзяліць/захаваць"
|
98 |
|
99 |
-
#: add-to-any.php:
|
100 |
-
#: add-to-any.php:
|
101 |
-
#: add-to-any.php:
|
102 |
msgid "Settings"
|
103 |
msgstr "Наладкі"
|
104 |
|
105 |
-
#: add-to-any.php:
|
106 |
#, fuzzy
|
107 |
msgid "Standalone Services"
|
108 |
msgstr "Дадаць/Выдаліць паслугі"
|
109 |
|
110 |
-
#: add-to-any.php:
|
111 |
msgid "Choose the services you want below. Click a chosen service again to remove. Reorder services by dragging and dropping as they appear above."
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: add-to-any.php:
|
115 |
msgid "Button"
|
116 |
msgstr "Клавіша"
|
117 |
|
118 |
-
#: add-to-any.php:
|
119 |
msgid "Image URL"
|
120 |
msgstr "URL de l'imatge"
|
121 |
|
122 |
-
#: add-to-any.php:
|
123 |
msgid "Text only"
|
124 |
msgstr "Толькт тэкст"
|
125 |
|
126 |
-
#: add-to-any.php:
|
127 |
msgid "Placement"
|
128 |
msgstr "Размяшчэнне"
|
129 |
|
130 |
-
#: add-to-any.php:
|
131 |
msgid "Display Share/Save button at the bottom of posts"
|
132 |
msgstr "Паказаць клавішу Адкрыць / Захаваць унізе запісаў"
|
133 |
|
134 |
-
#: add-to-any.php:
|
135 |
msgid "Display Share/Save button at the bottom of posts on the front page"
|
136 |
msgstr "Паказаць клавішу Адкрыць/Захаваць унізе запісаў на тытульнай старонцы"
|
137 |
|
138 |
-
#: add-to-any.php:
|
139 |
msgid "Display Share/Save button at the bottom of posts in the feed"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: add-to-any.php:
|
143 |
msgid "Display Share/Save button at the bottom of pages"
|
144 |
msgstr "Паказаць клавішу Адкрыць/Захаваць унізе старонак"
|
145 |
|
146 |
-
#: add-to-any.php:
|
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:
|
152 |
msgid "Menu Style"
|
153 |
msgstr "Стыль меню"
|
154 |
|
155 |
-
#: add-to-any.php:
|
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:
|
160 |
msgid "Open the Add to Any Menu Styler in a new window"
|
161 |
msgstr "Адкрыць Дадаць у меню Styler у новым акне"
|
162 |
|
163 |
-
#: add-to-any.php:
|
164 |
msgid "Open Menu Styler"
|
165 |
msgstr "Адкрыць меню Styler"
|
166 |
|
167 |
-
#: add-to-any.php:
|
168 |
msgid "Menu Options"
|
169 |
msgstr "Меню опцый"
|
170 |
|
171 |
-
#: add-to-any.php:
|
172 |
msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
|
173 |
msgstr "Схаваць убудаваыях аб'екты (Flash, відэа і г.д.), якія перасякаюцца з меню пры адлюстраванні"
|
174 |
|
175 |
-
#: add-to-any.php:
|
176 |
msgid "Show the title of the post (or page) within the menu"
|
177 |
msgstr "Паказаць назву запісу(альбо старонкі) без меню"
|
178 |
|
179 |
-
#: add-to-any.php:
|
180 |
msgid "Only show the menu when the user clicks the Share/Save button"
|
181 |
msgstr " Паказваць толькі меню, калі карыстальнік клікае клавішу Адкрыць/Захаваць"
|
182 |
|
183 |
-
#: add-to-any.php:
|
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:
|
188 |
msgid "Additional Options"
|
189 |
msgstr "Дадатковыя Опцыі"
|
190 |
|
191 |
-
#: add-to-any.php:
|
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:
|
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:
|
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:
|
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:
|
208 |
msgid "Save Changes"
|
209 |
msgstr "Захаваць змены"
|
210 |
|
211 |
-
#: add-to-any.php:
|
212 |
msgid "Like this plugin?"
|
213 |
msgstr "Як і гэты плагін?"
|
214 |
|
215 |
-
#: add-to-any.php:
|
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:
|
220 |
msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&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:
|
224 |
msgid "Need support?"
|
225 |
msgstr "Патрэбна падтрымка?"
|
226 |
|
227 |
-
#: add-to-any.php:
|
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:
|
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:
|
236 |
msgid "Add/Remove Services"
|
237 |
msgstr "Дадаць/Выдаліць паслугі"
|
238 |
|
239 |
-
#: add-to-any.php:
|
240 |
msgid "Share/Save"
|
241 |
msgstr "Адкрыць/Захаваць"
|
242 |
|
243 |
-
#: add-to-any.php:
|
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-10-08 19:44-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: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 ⌘+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><?php wp_footer(); ?></code> just before the <code></body></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. Click a chosen service again to remove. 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&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 |
|
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-08
|
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,229 @@ msgstr ""
|
|
15 |
"X-Poedit-Country: SPAIN\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
-
#: add-to-any.php:
|
19 |
msgid "Share"
|
20 |
msgstr "Compartir"
|
21 |
|
22 |
-
#: add-to-any.php:
|
23 |
msgid "Save"
|
24 |
msgstr "Desar"
|
25 |
|
26 |
-
#: add-to-any.php:
|
27 |
msgid "Subscribe"
|
28 |
msgstr "Subscriure's"
|
29 |
|
30 |
-
#: add-to-any.php:
|
31 |
msgid "E-mail"
|
32 |
msgstr "Correu electrònic"
|
33 |
|
34 |
-
#: add-to-any.php:
|
35 |
msgid "Bookmark"
|
36 |
msgstr "Preferit"
|
37 |
|
38 |
-
#: add-to-any.php:
|
39 |
msgid "Show all"
|
40 |
msgstr "Mostrar tots"
|
41 |
|
42 |
-
#: add-to-any.php:
|
43 |
msgid "Show less"
|
44 |
msgstr "Mostrar menys"
|
45 |
|
46 |
-
#: add-to-any.php:
|
47 |
msgid "Find service(s)"
|
48 |
msgstr "Buscar servei(s)"
|
49 |
|
50 |
-
#: add-to-any.php:
|
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:
|
55 |
msgid "Powered by"
|
56 |
msgstr "Potenciat per"
|
57 |
|
58 |
-
#: add-to-any.php:
|
59 |
msgid "Share via e-mail"
|
60 |
msgstr "Compartir per correu electrònic"
|
61 |
|
62 |
-
#: add-to-any.php:
|
63 |
msgid "Subscribe via e-mail"
|
64 |
msgstr "Subscriure per correu electrònic"
|
65 |
|
66 |
-
#: add-to-any.php:
|
67 |
msgid "Bookmark in your browser"
|
68 |
msgstr "Afegir l'adreça d'interès al vostre navegador"
|
69 |
|
70 |
-
#: add-to-any.php:
|
71 |
msgid "Press Ctrl+D or ⌘+D to bookmark this page"
|
72 |
msgstr "Pressioneu Ctrl+D o ⌘+D per afegir a preferits aquesta pàgina"
|
73 |
|
74 |
-
#: add-to-any.php:
|
75 |
msgid "Add to your favorites"
|
76 |
msgstr "Afegir als vostres favorits"
|
77 |
|
78 |
-
#: add-to-any.php:
|
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:
|
83 |
msgid "E-mail program"
|
84 |
msgstr "Programa de correu electrònic"
|
85 |
|
86 |
-
#: add-to-any.php:
|
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><?php wp_footer(); ?></code> just before the <code></body></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><?php wp_footer(); ?></code> justament abans de la línia <code></body></code> del vostre tema al fitxer <code>footer.php</code>."
|
89 |
|
90 |
-
#: add-to-any.php:
|
91 |
msgid "Settings saved."
|
92 |
msgstr "Preferències desades."
|
93 |
|
94 |
-
#: add-to-any.php:
|
95 |
msgid "Add to Any: Share/Save "
|
96 |
msgstr "Add to Any: Compartir/Desar "
|
97 |
|
98 |
-
#: add-to-any.php:
|
99 |
-
#: add-to-any.php:
|
100 |
-
#: add-to-any.php:
|
101 |
msgid "Settings"
|
102 |
msgstr "Preferències"
|
103 |
|
104 |
-
#: add-to-any.php:
|
105 |
msgid "Standalone Services"
|
106 |
msgstr "Serveis integrats"
|
107 |
|
108 |
-
#: add-to-any.php:
|
109 |
msgid "Choose the services you want below. Click a chosen service again to remove. Reorder services by dragging and dropping as they appear above."
|
110 |
msgstr "Seleccioneu els serveis que voleu a continuació. Cliqueu a un servei de nou per eliminar-lo. Reordeneu els serveis arrossegant-los i deixant-los en l'ordre que desitgeu."
|
111 |
|
112 |
-
#: add-to-any.php:
|
113 |
msgid "Button"
|
114 |
msgstr "Botó"
|
115 |
|
116 |
-
#: add-to-any.php:
|
117 |
msgid "Image URL"
|
118 |
msgstr "URL de la imatge"
|
119 |
|
120 |
-
#: add-to-any.php:
|
121 |
msgid "Text only"
|
122 |
msgstr "Només text"
|
123 |
|
124 |
-
#: add-to-any.php:
|
125 |
msgid "Placement"
|
126 |
msgstr "Emplaçament"
|
127 |
|
128 |
-
#: add-to-any.php:
|
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:
|
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:
|
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:
|
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:
|
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:
|
149 |
msgid "Menu Style"
|
150 |
msgstr "Estil del menú"
|
151 |
|
152 |
-
#: add-to-any.php:
|
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:
|
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:
|
161 |
msgid "Open Menu Styler"
|
162 |
msgstr "Obrir el personalitzador d'estils"
|
163 |
|
164 |
-
#: add-to-any.php:
|
165 |
msgid "Menu Options"
|
166 |
msgstr "Opcions del menú"
|
167 |
|
168 |
-
#: add-to-any.php:
|
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:
|
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:
|
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:
|
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:
|
185 |
msgid "Additional Options"
|
186 |
msgstr "Opcions addicionals"
|
187 |
|
188 |
-
#: add-to-any.php:
|
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:
|
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:
|
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:
|
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:
|
205 |
msgid "Save Changes"
|
206 |
msgstr "Desar els canvis"
|
207 |
|
208 |
-
#: add-to-any.php:
|
209 |
msgid "Like this plugin?"
|
210 |
msgstr "Com aquesta extensió?"
|
211 |
|
212 |
-
#: add-to-any.php:
|
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:
|
217 |
msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&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&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:
|
221 |
msgid "Need support?"
|
222 |
msgstr "Necessiteu suport?"
|
223 |
|
224 |
-
#: add-to-any.php:
|
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:
|
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:
|
233 |
msgid "Add/Remove Services"
|
234 |
msgstr "Serveis Compartir/Desar"
|
235 |
|
236 |
-
#: add-to-any.php:
|
237 |
msgid "Share/Save"
|
238 |
msgstr "Compartir/Desar"
|
239 |
|
240 |
-
#: add-to-any.php:
|
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-10-08 19:44-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: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 ⌘+D to bookmark this page"
|
72 |
msgstr "Pressioneu Ctrl+D o ⌘+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><?php wp_footer(); ?></code> just before the <code></body></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><?php wp_footer(); ?></code> justament abans de la línia <code></body></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. Click a chosen service again to remove. Reorder services by dragging and dropping as they appear above."
|
110 |
msgstr "Seleccioneu els serveis que voleu a continuació. Cliqueu a un servei de nou per eliminar-lo. 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&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&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 |
|
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-08
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: MicroPat\n"
|
8 |
"Language-Team: Team Blogos <wordpress@blogos.dk>\n"
|
@@ -17,232 +17,232 @@ msgstr ""
|
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: add-to-any.php:
|
21 |
msgid "Share"
|
22 |
msgstr "Del"
|
23 |
|
24 |
-
#: add-to-any.php:
|
25 |
msgid "Save"
|
26 |
msgstr "Gem"
|
27 |
|
28 |
-
#: add-to-any.php:
|
29 |
msgid "Subscribe"
|
30 |
msgstr "Subskribér"
|
31 |
|
32 |
-
#: add-to-any.php:
|
33 |
msgid "E-mail"
|
34 |
msgstr "E-mail"
|
35 |
|
36 |
-
#: add-to-any.php:
|
37 |
msgid "Bookmark"
|
38 |
msgstr "Bogmærk"
|
39 |
|
40 |
-
#: add-to-any.php:
|
41 |
msgid "Show all"
|
42 |
msgstr "Vis alle"
|
43 |
|
44 |
-
#: add-to-any.php:
|
45 |
msgid "Show less"
|
46 |
msgstr "Vis mindre"
|
47 |
|
48 |
-
#: add-to-any.php:
|
49 |
msgid "Find service(s)"
|
50 |
msgstr "Find service(s)"
|
51 |
|
52 |
-
#: add-to-any.php:
|
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:
|
57 |
msgid "Powered by"
|
58 |
msgstr "Kører på"
|
59 |
|
60 |
-
#: add-to-any.php:
|
61 |
msgid "Share via e-mail"
|
62 |
msgstr "Del via e-mail"
|
63 |
|
64 |
-
#: add-to-any.php:
|
65 |
msgid "Subscribe via e-mail"
|
66 |
msgstr "Subskribér via e-mail"
|
67 |
|
68 |
-
#: add-to-any.php:
|
69 |
msgid "Bookmark in your browser"
|
70 |
msgstr "Bogmærk i din browswer"
|
71 |
|
72 |
-
#: add-to-any.php:
|
73 |
#, fuzzy
|
74 |
msgid "Press Ctrl+D or ⌘+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:
|
78 |
msgid "Add to your favorites"
|
79 |
msgstr "Tilføj til dine favoritter"
|
80 |
|
81 |
-
#: add-to-any.php:
|
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:
|
86 |
msgid "E-mail program"
|
87 |
msgstr "E-mail-program"
|
88 |
|
89 |
-
#: add-to-any.php:
|
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><?php wp_footer(); ?></code> just before the <code></body></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><?php wp_footer(); ?></code> lige før <code></body></code>-linjen i dit temas <code>footer.php</code>-fil."
|
92 |
|
93 |
-
#: add-to-any.php:
|
94 |
msgid "Settings saved."
|
95 |
msgstr "Indstillinger gemt"
|
96 |
|
97 |
-
#: add-to-any.php:
|
98 |
msgid "Add to Any: Share/Save "
|
99 |
msgstr "Tilføj til enhver: Del/gem"
|
100 |
|
101 |
-
#: add-to-any.php:
|
102 |
-
#: add-to-any.php:
|
103 |
-
#: add-to-any.php:
|
104 |
msgid "Settings"
|
105 |
msgstr "Indstillinger"
|
106 |
|
107 |
-
#: add-to-any.php:
|
108 |
#, fuzzy
|
109 |
msgid "Standalone Services"
|
110 |
msgstr "Tilføj/fjern tjenesteudbydere"
|
111 |
|
112 |
-
#: add-to-any.php:
|
113 |
msgid "Choose the services you want below. Click a chosen service again to remove. 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:
|
117 |
msgid "Button"
|
118 |
msgstr "Knap"
|
119 |
|
120 |
-
#: add-to-any.php:
|
121 |
msgid "Image URL"
|
122 |
msgstr "Billed-URL"
|
123 |
|
124 |
-
#: add-to-any.php:
|
125 |
msgid "Text only"
|
126 |
msgstr "Kun tekst"
|
127 |
|
128 |
-
#: add-to-any.php:
|
129 |
msgid "Placement"
|
130 |
msgstr "Placering"
|
131 |
|
132 |
-
#: add-to-any.php:
|
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:
|
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:
|
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:
|
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:
|
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:
|
154 |
msgid "Menu Style"
|
155 |
msgstr "Menutypografi"
|
156 |
|
157 |
-
#: add-to-any.php:
|
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:
|
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:
|
166 |
msgid "Open Menu Styler"
|
167 |
msgstr "Åben menutypografen"
|
168 |
|
169 |
-
#: add-to-any.php:
|
170 |
msgid "Menu Options"
|
171 |
msgstr "Menuvalgmuligheder"
|
172 |
|
173 |
-
#: add-to-any.php:
|
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:
|
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:
|
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:
|
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:
|
190 |
msgid "Additional Options"
|
191 |
msgstr "Yderligere indstillinger"
|
192 |
|
193 |
-
#: add-to-any.php:
|
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:
|
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:
|
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:
|
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:
|
210 |
msgid "Save Changes"
|
211 |
msgstr "Gem ændringer"
|
212 |
|
213 |
-
#: add-to-any.php:
|
214 |
msgid "Like this plugin?"
|
215 |
msgstr "Kan du lide dette plugin?"
|
216 |
|
217 |
-
#: add-to-any.php:
|
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:
|
222 |
msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&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&linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Del det</a> med dine venner."
|
224 |
|
225 |
-
#: add-to-any.php:
|
226 |
msgid "Need support?"
|
227 |
msgstr "Har du brug for support?"
|
228 |
|
229 |
-
#: add-to-any.php:
|
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:
|
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:
|
238 |
msgid "Add/Remove Services"
|
239 |
msgstr "Tilføj/fjern tjenesteudbydere"
|
240 |
|
241 |
-
#: add-to-any.php:
|
242 |
msgid "Share/Save"
|
243 |
msgstr "Del/Gem"
|
244 |
|
245 |
-
#: add-to-any.php:
|
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-10-08 19:44-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: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 ⌘+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><?php wp_footer(); ?></code> just before the <code></body></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><?php wp_footer(); ?></code> lige før <code></body></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. Click a chosen service again to remove. 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&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&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 |
|
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-08
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: MicroPat\n"
|
8 |
"Language-Team: \n"
|
@@ -13,230 +13,230 @@ msgstr ""
|
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
"X-Poedit-SearchPath-0: .\n"
|
15 |
|
16 |
-
#: add-to-any.php:
|
17 |
msgid "Share"
|
18 |
msgstr ""
|
19 |
|
20 |
-
#: add-to-any.php:
|
21 |
msgid "Save"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: add-to-any.php:
|
25 |
msgid "Subscribe"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: add-to-any.php:
|
29 |
msgid "E-mail"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: add-to-any.php:
|
33 |
msgid "Bookmark"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: add-to-any.php:
|
37 |
msgid "Show all"
|
38 |
msgstr "Alle anzeigen"
|
39 |
|
40 |
-
#: add-to-any.php:
|
41 |
msgid "Show less"
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: add-to-any.php:
|
45 |
msgid "Find service(s)"
|
46 |
msgstr "Dienst(e) suchen"
|
47 |
|
48 |
-
#: add-to-any.php:
|
49 |
msgid "Instantly find any service to add to"
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: add-to-any.php:
|
53 |
msgid "Powered by"
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: add-to-any.php:
|
57 |
msgid "Share via e-mail"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: add-to-any.php:
|
61 |
msgid "Subscribe via e-mail"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: add-to-any.php:
|
65 |
msgid "Bookmark in your browser"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: add-to-any.php:
|
69 |
#, fuzzy
|
70 |
msgid "Press Ctrl+D or ⌘+D to bookmark this page"
|
71 |
msgstr "Seite mit Ctrl+D oder Cmd+D zu Lesezeichen hinzufügen"
|
72 |
|
73 |
-
#: add-to-any.php:
|
74 |
msgid "Add to your favorites"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: add-to-any.php:
|
78 |
msgid "Send from any e-mail address or e-mail program"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: add-to-any.php:
|
82 |
msgid "E-mail program"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: add-to-any.php:
|
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><?php wp_footer(); ?></code> just before the <code></body></code> line of your theme's <code>footer.php</code> file."
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: add-to-any.php:
|
90 |
msgid "Settings saved."
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: add-to-any.php:
|
94 |
msgid "Add to Any: Share/Save "
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: add-to-any.php:
|
98 |
-
#: add-to-any.php:
|
99 |
-
#: add-to-any.php:
|
100 |
msgid "Settings"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: add-to-any.php:
|
104 |
msgid "Standalone Services"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: add-to-any.php:
|
108 |
msgid "Choose the services you want below. Click a chosen service again to remove. Reorder services by dragging and dropping as they appear above."
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: add-to-any.php:
|
112 |
msgid "Button"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: add-to-any.php:
|
116 |
msgid "Image URL"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: add-to-any.php:
|
120 |
msgid "Text only"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: add-to-any.php:
|
124 |
msgid "Placement"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: add-to-any.php:
|
128 |
msgid "Display Share/Save button at the bottom of posts"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: add-to-any.php:
|
132 |
msgid "Display Share/Save button at the bottom of posts on the front page"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: add-to-any.php:
|
136 |
msgid "Display Share/Save button at the bottom of posts in the feed"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: add-to-any.php:
|
140 |
msgid "Display Share/Save button at the bottom of pages"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: add-to-any.php:
|
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:
|
148 |
msgid "Menu Style"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: add-to-any.php:
|
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:
|
156 |
msgid "Open the Add to Any Menu Styler in a new window"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: add-to-any.php:
|
160 |
msgid "Open Menu Styler"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: add-to-any.php:
|
164 |
msgid "Menu Options"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: add-to-any.php:
|
168 |
msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: add-to-any.php:
|
172 |
msgid "Show the title of the post (or page) within the menu"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: add-to-any.php:
|
176 |
msgid "Only show the menu when the user clicks the Share/Save button"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: add-to-any.php:
|
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:
|
184 |
msgid "Additional Options"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: add-to-any.php:
|
188 |
msgid "Paste the code from Add to Any's Menu Styler in the box below!"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: add-to-any.php:
|
192 |
msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: add-to-any.php:
|
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:
|
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:
|
204 |
msgid "Save Changes"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: add-to-any.php:
|
208 |
msgid "Like this plugin?"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: add-to-any.php:
|
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:
|
216 |
msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&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:
|
220 |
msgid "Need support?"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: add-to-any.php:
|
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:
|
228 |
msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: add-to-any.php:
|
232 |
msgid "Add/Remove Services"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: add-to-any.php:
|
236 |
msgid "Share/Save"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: add-to-any.php:
|
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-10-08 19:44-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: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 ⌘+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><?php wp_footer(); ?></code> just before the <code></body></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. Click a chosen service again to remove. 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&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 |
|
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-08
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Pablo Poo <pablo@poo.cl>\n"
|
8 |
"Language-Team: \n"
|
@@ -13,232 +13,232 @@ msgstr ""
|
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
"X-Poedit-SearchPath-0: .\n"
|
15 |
|
16 |
-
#: add-to-any.php:
|
17 |
msgid "Share"
|
18 |
msgstr "Compartir"
|
19 |
|
20 |
-
#: add-to-any.php:
|
21 |
msgid "Save"
|
22 |
msgstr "Guardar"
|
23 |
|
24 |
-
#: add-to-any.php:
|
25 |
msgid "Subscribe"
|
26 |
msgstr "Suscribirse"
|
27 |
|
28 |
-
#: add-to-any.php:
|
29 |
msgid "E-mail"
|
30 |
msgstr "E-mail"
|
31 |
|
32 |
-
#: add-to-any.php:
|
33 |
msgid "Bookmark"
|
34 |
msgstr "Marcador"
|
35 |
|
36 |
-
#: add-to-any.php:
|
37 |
msgid "Show all"
|
38 |
msgstr "Mostrar todo"
|
39 |
|
40 |
-
#: add-to-any.php:
|
41 |
msgid "Show less"
|
42 |
msgstr "Mostrar menos"
|
43 |
|
44 |
-
#: add-to-any.php:
|
45 |
msgid "Find service(s)"
|
46 |
msgstr "Buscar servicios(s)"
|
47 |
|
48 |
-
#: add-to-any.php:
|
49 |
msgid "Instantly find any service to add to"
|
50 |
msgstr "Buscar servicio"
|
51 |
|
52 |
-
#: add-to-any.php:
|
53 |
msgid "Powered by"
|
54 |
msgstr "Servicio ofrecido por"
|
55 |
|
56 |
-
#: add-to-any.php:
|
57 |
msgid "Share via e-mail"
|
58 |
msgstr "Compartir por e-mail"
|
59 |
|
60 |
-
#: add-to-any.php:
|
61 |
msgid "Subscribe via e-mail"
|
62 |
msgstr "Suscribirse por e-mail"
|
63 |
|
64 |
-
#: add-to-any.php:
|
65 |
msgid "Bookmark in your browser"
|
66 |
msgstr "Agregar a marcadores de tu navegador"
|
67 |
|
68 |
-
#: add-to-any.php:
|
69 |
#, fuzzy
|
70 |
msgid "Press Ctrl+D or ⌘+D to bookmark this page"
|
71 |
msgstr "Presione Ctrl+D o Cmd+D para marcar esta pagina"
|
72 |
|
73 |
-
#: add-to-any.php:
|
74 |
msgid "Add to your favorites"
|
75 |
msgstr "Agregar a favoritos"
|
76 |
|
77 |
-
#: add-to-any.php:
|
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:
|
82 |
msgid "E-mail program"
|
83 |
msgstr "Programa de e-mail"
|
84 |
|
85 |
-
#: add-to-any.php:
|
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><?php wp_footer(); ?></code> just before the <code></body></code> line of your theme's <code>footer.php</code> file."
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: add-to-any.php:
|
90 |
msgid "Settings saved."
|
91 |
msgstr "Configuración guardada."
|
92 |
|
93 |
-
#: add-to-any.php:
|
94 |
msgid "Add to Any: Share/Save "
|
95 |
msgstr "Add to Any: Compartir/Guardar "
|
96 |
|
97 |
-
#: add-to-any.php:
|
98 |
-
#: add-to-any.php:
|
99 |
-
#: add-to-any.php:
|
100 |
msgid "Settings"
|
101 |
msgstr "Configuración"
|
102 |
|
103 |
-
#: add-to-any.php:
|
104 |
msgid "Standalone Services"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: add-to-any.php:
|
108 |
msgid "Choose the services you want below. Click a chosen service again to remove. Reorder services by dragging and dropping as they appear above."
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: add-to-any.php:
|
112 |
msgid "Button"
|
113 |
msgstr "Botón"
|
114 |
|
115 |
-
#: add-to-any.php:
|
116 |
msgid "Image URL"
|
117 |
msgstr "URL de la imagen"
|
118 |
|
119 |
-
#: add-to-any.php:
|
120 |
msgid "Text only"
|
121 |
msgstr "Solo texto"
|
122 |
|
123 |
-
#: add-to-any.php:
|
124 |
#, fuzzy
|
125 |
msgid "Placement"
|
126 |
msgstr "Ubicación del botón"
|
127 |
|
128 |
-
#: add-to-any.php:
|
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:
|
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:
|
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:
|
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:
|
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:
|
150 |
msgid "Menu Style"
|
151 |
msgstr "Estilo del menú"
|
152 |
|
153 |
-
#: add-to-any.php:
|
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:
|
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:
|
162 |
msgid "Open Menu Styler"
|
163 |
msgstr "Abrir el personalizador de estilos"
|
164 |
|
165 |
-
#: add-to-any.php:
|
166 |
msgid "Menu Options"
|
167 |
msgstr "Menú de opciones"
|
168 |
|
169 |
-
#: add-to-any.php:
|
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:
|
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:
|
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:
|
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:
|
186 |
msgid "Additional Options"
|
187 |
msgstr "Opciones adicionales"
|
188 |
|
189 |
-
#: add-to-any.php:
|
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:
|
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:
|
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:
|
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:
|
206 |
msgid "Save Changes"
|
207 |
msgstr "Guardar cambios"
|
208 |
|
209 |
-
#: add-to-any.php:
|
210 |
msgid "Like this plugin?"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: add-to-any.php:
|
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:
|
218 |
msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&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:
|
222 |
msgid "Need support?"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: add-to-any.php:
|
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:
|
230 |
msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: add-to-any.php:
|
234 |
msgid "Add/Remove Services"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: add-to-any.php:
|
238 |
msgid "Share/Save"
|
239 |
msgstr "Compartir/Guardar"
|
240 |
|
241 |
-
#: add-to-any.php:
|
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-10-08 19:44-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: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 ⌘+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><?php wp_footer(); ?></code> just before the <code></body></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. Click a chosen service again to remove. 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&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 |
|
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-08
|
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,231 @@ msgstr ""
|
|
15 |
"X-Poedit-Country: ITALY\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
-
#: add-to-any.php:
|
19 |
msgid "Share"
|
20 |
msgstr "Condividi"
|
21 |
|
22 |
-
#: add-to-any.php:
|
23 |
msgid "Save"
|
24 |
msgstr "Salva"
|
25 |
|
26 |
-
#: add-to-any.php:
|
27 |
msgid "Subscribe"
|
28 |
msgstr "Abbonati"
|
29 |
|
30 |
-
#: add-to-any.php:
|
31 |
msgid "E-mail"
|
32 |
msgstr "E-mail"
|
33 |
|
34 |
-
#: add-to-any.php:
|
35 |
msgid "Bookmark"
|
36 |
msgstr "Segnalibro"
|
37 |
|
38 |
-
#: add-to-any.php:
|
39 |
msgid "Show all"
|
40 |
msgstr "espandi"
|
41 |
|
42 |
-
#: add-to-any.php:
|
43 |
msgid "Show less"
|
44 |
msgstr "comprimi"
|
45 |
|
46 |
-
#: add-to-any.php:
|
47 |
msgid "Find service(s)"
|
48 |
msgstr "Trova servizi"
|
49 |
|
50 |
-
#: add-to-any.php:
|
51 |
msgid "Instantly find any service to add to"
|
52 |
msgstr "Trova subito un servizio da aggiungere"
|
53 |
|
54 |
-
#: add-to-any.php:
|
55 |
msgid "Powered by"
|
56 |
msgstr "Fornito da"
|
57 |
|
58 |
-
#: add-to-any.php:
|
59 |
msgid "Share via e-mail"
|
60 |
msgstr "Condividi via email"
|
61 |
|
62 |
-
#: add-to-any.php:
|
63 |
msgid "Subscribe via e-mail"
|
64 |
msgstr "Abbonati via email"
|
65 |
|
66 |
-
#: add-to-any.php:
|
67 |
msgid "Bookmark in your browser"
|
68 |
msgstr "Aggiungi ai segnalibri"
|
69 |
|
70 |
-
#: add-to-any.php:
|
71 |
#, fuzzy
|
72 |
msgid "Press Ctrl+D or ⌘+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:
|
76 |
msgid "Add to your favorites"
|
77 |
msgstr "Aggiungi ai favoriti"
|
78 |
|
79 |
-
#: add-to-any.php:
|
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:
|
84 |
msgid "E-mail program"
|
85 |
msgstr "Client di posta elettronica"
|
86 |
|
87 |
-
#: add-to-any.php:
|
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><?php wp_footer(); ?></code> just before the <code></body></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><?php wp_footer(); ?></code> subito prima del tag di chiusura <code></body></code> presente nel file <code>footer.php</code>."
|
90 |
|
91 |
-
#: add-to-any.php:
|
92 |
msgid "Settings saved."
|
93 |
msgstr "Le impostazioni sono state salvate"
|
94 |
|
95 |
-
#: add-to-any.php:
|
96 |
msgid "Add to Any: Share/Save "
|
97 |
msgstr "Add to Any: Condividi/Salva "
|
98 |
|
99 |
-
#: add-to-any.php:
|
100 |
-
#: add-to-any.php:
|
101 |
-
#: add-to-any.php:
|
102 |
msgid "Settings"
|
103 |
msgstr "Impostazioni"
|
104 |
|
105 |
-
#: add-to-any.php:
|
106 |
msgid "Standalone Services"
|
107 |
msgstr "Servizi indipendenti"
|
108 |
|
109 |
-
#: add-to-any.php:
|
110 |
msgid "Choose the services you want below. Click a chosen service again to remove. Reorder services by dragging and dropping as they appear above."
|
111 |
msgstr "Scegli qui sotto i servizi di tuo gradimento. Clicca su di un servizio attivo per rimuoverlo. Riordina i servizi via drag and drop."
|
112 |
|
113 |
-
#: add-to-any.php:
|
114 |
msgid "Button"
|
115 |
msgstr "Pulsante"
|
116 |
|
117 |
-
#: add-to-any.php:
|
118 |
msgid "Image URL"
|
119 |
msgstr "URL immagine"
|
120 |
|
121 |
-
#: add-to-any.php:
|
122 |
msgid "Text only"
|
123 |
msgstr "Solo testo"
|
124 |
|
125 |
-
#: add-to-any.php:
|
126 |
msgid "Placement"
|
127 |
msgstr "Posizione"
|
128 |
|
129 |
-
#: add-to-any.php:
|
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:
|
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:
|
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:
|
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:
|
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:
|
151 |
msgid "Menu Style"
|
152 |
msgstr "Stile menu"
|
153 |
|
154 |
-
#: add-to-any.php:
|
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:
|
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:
|
163 |
msgid "Open Menu Styler"
|
164 |
msgstr "Stile menu"
|
165 |
|
166 |
-
#: add-to-any.php:
|
167 |
msgid "Menu Options"
|
168 |
msgstr "Opzioni menu"
|
169 |
|
170 |
-
#: add-to-any.php:
|
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:
|
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:
|
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:
|
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:
|
187 |
msgid "Additional Options"
|
188 |
msgstr "Opzioni aggiuntive"
|
189 |
|
190 |
-
#: add-to-any.php:
|
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:
|
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:
|
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:
|
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:
|
207 |
msgid "Save Changes"
|
208 |
msgstr "Salva le modifiche"
|
209 |
|
210 |
-
#: add-to-any.php:
|
211 |
msgid "Like this plugin?"
|
212 |
msgstr "Ti é piaciuto questo plugin?"
|
213 |
|
214 |
-
#: add-to-any.php:
|
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:
|
219 |
msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&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&linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Condividi</a> con i tuoi amici."
|
221 |
|
222 |
-
#: add-to-any.php:
|
223 |
msgid "Need support?"
|
224 |
msgstr "Serve aiuto?"
|
225 |
|
226 |
-
#: add-to-any.php:
|
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:
|
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:
|
235 |
msgid "Add/Remove Services"
|
236 |
msgstr "Aggiungi/Rimuovi i sevizi"
|
237 |
|
238 |
-
#: add-to-any.php:
|
239 |
msgid "Share/Save"
|
240 |
msgstr "Condividi/Salva"
|
241 |
|
242 |
-
#: add-to-any.php:
|
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-10-08 19:44-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: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 ⌘+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><?php wp_footer(); ?></code> just before the <code></body></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><?php wp_footer(); ?></code> subito prima del tag di chiusura <code></body></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. Click a chosen service again to remove. Reorder services by dragging and dropping as they appear above."
|
111 |
msgstr "Scegli qui sotto i servizi di tuo gradimento. Clicca su di un servizio attivo per rimuoverlo. 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&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&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 |
|
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-08
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Jorge Silva <jncs12@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
@@ -13,230 +13,230 @@ msgstr ""
|
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
"X-Poedit-SearchPath-0: .\n"
|
15 |
|
16 |
-
#: add-to-any.php:
|
17 |
msgid "Share"
|
18 |
msgstr "Partilhar"
|
19 |
|
20 |
-
#: add-to-any.php:
|
21 |
msgid "Save"
|
22 |
msgstr "Guardar"
|
23 |
|
24 |
-
#: add-to-any.php:
|
25 |
msgid "Subscribe"
|
26 |
msgstr "Subscrever"
|
27 |
|
28 |
-
#: add-to-any.php:
|
29 |
msgid "E-mail"
|
30 |
msgstr "E-mail"
|
31 |
|
32 |
-
#: add-to-any.php:
|
33 |
msgid "Bookmark"
|
34 |
msgstr "Marcador"
|
35 |
|
36 |
-
#: add-to-any.php:
|
37 |
msgid "Show all"
|
38 |
msgstr "Mostrar tudo"
|
39 |
|
40 |
-
#: add-to-any.php:
|
41 |
msgid "Show less"
|
42 |
msgstr "Mostrar menos"
|
43 |
|
44 |
-
#: add-to-any.php:
|
45 |
msgid "Find service(s)"
|
46 |
msgstr "Procurar serviço(s)"
|
47 |
|
48 |
-
#: add-to-any.php:
|
49 |
msgid "Instantly find any service to add to"
|
50 |
msgstr "Encontrar rapidamente qualquer serviço para"
|
51 |
|
52 |
-
#: add-to-any.php:
|
53 |
msgid "Powered by"
|
54 |
msgstr "Serviço fornecido por"
|
55 |
|
56 |
-
#: add-to-any.php:
|
57 |
msgid "Share via e-mail"
|
58 |
msgstr "Partilhar por e-mail"
|
59 |
|
60 |
-
#: add-to-any.php:
|
61 |
msgid "Subscribe via e-mail"
|
62 |
msgstr "Subscrever por e-mail"
|
63 |
|
64 |
-
#: add-to-any.php:
|
65 |
msgid "Bookmark in your browser"
|
66 |
msgstr "Adicionar marcador"
|
67 |
|
68 |
-
#: add-to-any.php:
|
69 |
msgid "Press Ctrl+D or ⌘+D to bookmark this page"
|
70 |
msgstr "Pressione Ctrl+D ou ⌘+D para adicionar esta página aos marcadores"
|
71 |
|
72 |
-
#: add-to-any.php:
|
73 |
msgid "Add to your favorites"
|
74 |
msgstr "Adicionar a favoritos"
|
75 |
|
76 |
-
#: add-to-any.php:
|
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:
|
81 |
msgid "E-mail program"
|
82 |
msgstr "Programa de e-mail"
|
83 |
|
84 |
-
#: add-to-any.php:
|
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><?php wp_footer(); ?></code> just before the <code></body></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><?php wp_footer(); ?></code> mesmo antes da linha <code></body></code> do ficheiro <code>footer.php</code> do tema."
|
87 |
|
88 |
-
#: add-to-any.php:
|
89 |
msgid "Settings saved."
|
90 |
msgstr "Configuração guardada."
|
91 |
|
92 |
-
#: add-to-any.php:
|
93 |
msgid "Add to Any: Share/Save "
|
94 |
msgstr "Add to Any: Partilhar/Guardar "
|
95 |
|
96 |
-
#: add-to-any.php:
|
97 |
-
#: add-to-any.php:
|
98 |
-
#: add-to-any.php:
|
99 |
msgid "Settings"
|
100 |
msgstr "Configurações"
|
101 |
|
102 |
-
#: add-to-any.php:
|
103 |
msgid "Standalone Services"
|
104 |
msgstr "Serviços Isolados"
|
105 |
|
106 |
-
#: add-to-any.php:
|
107 |
msgid "Choose the services you want below. Click a chosen service again to remove. Reorder services by dragging and dropping as they appear above."
|
108 |
msgstr "Escolha os serviços que deseja. Clique novamente num serviço já escolhido para o remover. Reordene os serviços fazendo drag'n'drop conforme aparecem por cima."
|
109 |
|
110 |
-
#: add-to-any.php:
|
111 |
msgid "Button"
|
112 |
msgstr "Botão"
|
113 |
|
114 |
-
#: add-to-any.php:
|
115 |
msgid "Image URL"
|
116 |
msgstr "URL da imagem"
|
117 |
|
118 |
-
#: add-to-any.php:
|
119 |
msgid "Text only"
|
120 |
msgstr "Apenas texto"
|
121 |
|
122 |
-
#: add-to-any.php:
|
123 |
msgid "Placement"
|
124 |
msgstr "Posicionamento"
|
125 |
|
126 |
-
#: add-to-any.php:
|
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:
|
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:
|
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:
|
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:
|
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:
|
148 |
msgid "Menu Style"
|
149 |
msgstr "Estilo de Menu"
|
150 |
|
151 |
-
#: add-to-any.php:
|
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:
|
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:
|
160 |
msgid "Open Menu Styler"
|
161 |
msgstr "Abrir o Menu de Personalização de Estilos"
|
162 |
|
163 |
-
#: add-to-any.php:
|
164 |
msgid "Menu Options"
|
165 |
msgstr "Opções de Menu"
|
166 |
|
167 |
-
#: add-to-any.php:
|
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:
|
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:
|
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:
|
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:
|
184 |
msgid "Additional Options"
|
185 |
msgstr "Opções Adicionais"
|
186 |
|
187 |
-
#: add-to-any.php:
|
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:
|
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:
|
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:
|
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:
|
204 |
msgid "Save Changes"
|
205 |
msgstr "Guardar alterações"
|
206 |
|
207 |
-
#: add-to-any.php:
|
208 |
msgid "Like this plugin?"
|
209 |
msgstr "Gosta deste plugin?"
|
210 |
|
211 |
-
#: add-to-any.php:
|
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:
|
216 |
msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&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&linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Partilhar</a> com os amigos."
|
218 |
|
219 |
-
#: add-to-any.php:
|
220 |
msgid "Need support?"
|
221 |
msgstr "Precisa de ajuda?"
|
222 |
|
223 |
-
#: add-to-any.php:
|
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:
|
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:
|
232 |
msgid "Add/Remove Services"
|
233 |
msgstr "Adicionar/Remover Serviços"
|
234 |
|
235 |
-
#: add-to-any.php:
|
236 |
msgid "Share/Save"
|
237 |
msgstr "Partilhar/Guardar"
|
238 |
|
239 |
-
#: add-to-any.php:
|
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-10-08 19:44-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: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 ⌘+D to bookmark this page"
|
70 |
msgstr "Pressione Ctrl+D ou ⌘+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><?php wp_footer(); ?></code> just before the <code></body></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><?php wp_footer(); ?></code> mesmo antes da linha <code></body></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. Click a chosen service again to remove. Reorder services by dragging and dropping as they appear above."
|
108 |
msgstr "Escolha os serviços que deseja. Clique novamente num serviço já escolhido para o remover. 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&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&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 |
|
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-08
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: MicroPat\n"
|
8 |
"Language-Team: \n"
|
@@ -16,233 +16,233 @@ msgstr ""
|
|
16 |
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: add-to-any.php:
|
20 |
msgid "Share"
|
21 |
msgstr "分享"
|
22 |
|
23 |
-
#: add-to-any.php:
|
24 |
msgid "Save"
|
25 |
msgstr "收藏"
|
26 |
|
27 |
-
#: add-to-any.php:
|
28 |
msgid "Subscribe"
|
29 |
msgstr "订阅"
|
30 |
|
31 |
-
#: add-to-any.php:
|
32 |
msgid "E-mail"
|
33 |
msgstr "电子邮件"
|
34 |
|
35 |
-
#: add-to-any.php:
|
36 |
msgid "Bookmark"
|
37 |
msgstr "书签"
|
38 |
|
39 |
-
#: add-to-any.php:
|
40 |
msgid "Show all"
|
41 |
msgstr "显示全部服务"
|
42 |
|
43 |
-
#: add-to-any.php:
|
44 |
msgid "Show less"
|
45 |
msgstr "显示部分服务"
|
46 |
|
47 |
-
#: add-to-any.php:
|
48 |
msgid "Find service(s)"
|
49 |
msgstr "查找服务"
|
50 |
|
51 |
-
#: add-to-any.php:
|
52 |
msgid "Instantly find any service to add to"
|
53 |
msgstr "动态查找任何用以添加的服务"
|
54 |
|
55 |
-
#: add-to-any.php:
|
56 |
msgid "Powered by"
|
57 |
msgstr "Powered by"
|
58 |
|
59 |
-
#: add-to-any.php:
|
60 |
msgid "Share via e-mail"
|
61 |
msgstr "通过电子邮件分享"
|
62 |
|
63 |
-
#: add-to-any.php:
|
64 |
msgid "Subscribe via e-mail"
|
65 |
msgstr "通过电子邮件订阅"
|
66 |
|
67 |
-
#: add-to-any.php:
|
68 |
msgid "Bookmark in your browser"
|
69 |
msgstr "添加为浏览器书签"
|
70 |
|
71 |
-
#: add-to-any.php:
|
72 |
#, fuzzy
|
73 |
msgid "Press Ctrl+D or ⌘+D to bookmark this page"
|
74 |
msgstr "按下 [Ctrl+D] 或 [Cmd+D] 将本页加为书签"
|
75 |
|
76 |
-
#: add-to-any.php:
|
77 |
msgid "Add to your favorites"
|
78 |
msgstr "添加至收藏夹"
|
79 |
|
80 |
-
#: add-to-any.php:
|
81 |
msgid "Send from any e-mail address or e-mail program"
|
82 |
msgstr "从任何电子邮件地址或电子邮件程序发送"
|
83 |
|
84 |
-
#: add-to-any.php:
|
85 |
msgid "E-mail program"
|
86 |
msgstr "电子邮件程序"
|
87 |
|
88 |
-
#: add-to-any.php:
|
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><?php wp_footer(); ?></code> just before the <code></body></code> line of your theme's <code>footer.php</code> file."
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: add-to-any.php:
|
93 |
msgid "Settings saved."
|
94 |
msgstr "设置已保存"
|
95 |
|
96 |
-
#: add-to-any.php:
|
97 |
msgid "Add to Any: Share/Save "
|
98 |
msgstr "Add to Any: 分享/收藏"
|
99 |
|
100 |
-
#: add-to-any.php:
|
101 |
-
#: add-to-any.php:
|
102 |
-
#: add-to-any.php:
|
103 |
msgid "Settings"
|
104 |
msgstr "设置"
|
105 |
|
106 |
-
#: add-to-any.php:
|
107 |
msgid "Standalone Services"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: add-to-any.php:
|
111 |
msgid "Choose the services you want below. Click a chosen service again to remove. Reorder services by dragging and dropping as they appear above."
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: add-to-any.php:
|
115 |
msgid "Button"
|
116 |
msgstr "按钮"
|
117 |
|
118 |
-
#: add-to-any.php:
|
119 |
msgid "Image URL"
|
120 |
msgstr "图片 URL"
|
121 |
|
122 |
-
#: add-to-any.php:
|
123 |
msgid "Text only"
|
124 |
msgstr "仅用文字"
|
125 |
|
126 |
-
#: add-to-any.php:
|
127 |
#, fuzzy
|
128 |
msgid "Placement"
|
129 |
msgstr "按钮位置"
|
130 |
|
131 |
-
#: add-to-any.php:
|
132 |
msgid "Display Share/Save button at the bottom of posts"
|
133 |
msgstr "在文章底部显示 分享/收藏 按钮"
|
134 |
|
135 |
-
#: add-to-any.php:
|
136 |
msgid "Display Share/Save button at the bottom of posts on the front page"
|
137 |
msgstr "在首页的文章底部显示 分享/收藏 按钮"
|
138 |
|
139 |
-
#: add-to-any.php:
|
140 |
msgid "Display Share/Save button at the bottom of posts in the feed"
|
141 |
msgstr "在 Feed 的文章底部显示 分享/收藏 按钮"
|
142 |
|
143 |
-
#: add-to-any.php:
|
144 |
msgid "Display Share/Save button at the bottom of pages"
|
145 |
msgstr "在页面底部显示 分享/收藏 按钮"
|
146 |
|
147 |
-
#: add-to-any.php:
|
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:
|
153 |
msgid "Menu Style"
|
154 |
msgstr "菜单风格"
|
155 |
|
156 |
-
#: add-to-any.php:
|
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:
|
161 |
msgid "Open the Add to Any Menu Styler in a new window"
|
162 |
msgstr "在新窗口中打开 Add to Any 菜单风格设置器"
|
163 |
|
164 |
-
#: add-to-any.php:
|
165 |
msgid "Open Menu Styler"
|
166 |
msgstr "打开菜单风格设置器"
|
167 |
|
168 |
-
#: add-to-any.php:
|
169 |
msgid "Menu Options"
|
170 |
msgstr "菜单选项"
|
171 |
|
172 |
-
#: add-to-any.php:
|
173 |
msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
|
174 |
msgstr "菜单显示时隐藏与菜单相交的嵌入式对象(Flash,视频,等) "
|
175 |
|
176 |
-
#: add-to-any.php:
|
177 |
msgid "Show the title of the post (or page) within the menu"
|
178 |
msgstr "菜单中显示文章(或页面)的标题"
|
179 |
|
180 |
-
#: add-to-any.php:
|
181 |
msgid "Only show the menu when the user clicks the Share/Save button"
|
182 |
msgstr "仅当用户点击 分享/收藏 按钮时显示菜单"
|
183 |
|
184 |
-
#: add-to-any.php:
|
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:
|
189 |
msgid "Additional Options"
|
190 |
msgstr "附加选项"
|
191 |
|
192 |
-
#: add-to-any.php:
|
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:
|
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:
|
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:
|
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:
|
210 |
msgid "Save Changes"
|
211 |
msgstr "保存更改"
|
212 |
|
213 |
-
#: add-to-any.php:
|
214 |
msgid "Like this plugin?"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: add-to-any.php:
|
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:
|
222 |
msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&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:
|
226 |
msgid "Need support?"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: add-to-any.php:
|
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:
|
234 |
msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: add-to-any.php:
|
238 |
msgid "Add/Remove Services"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: add-to-any.php:
|
242 |
msgid "Share/Save"
|
243 |
msgstr "分享/收藏"
|
244 |
|
245 |
-
#: add-to-any.php:
|
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-10-08 19:44-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: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 ⌘+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><?php wp_footer(); ?></code> just before the <code></body></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. Click a chosen service again to remove. 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&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 |
|
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-08
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: MicroPat\n"
|
8 |
"Language-Team: \n"
|
@@ -13,229 +13,229 @@ msgstr ""
|
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
"X-Poedit-SearchPath-0: .\n"
|
15 |
|
16 |
-
#: add-to-any.php:
|
17 |
msgid "Share"
|
18 |
msgstr ""
|
19 |
|
20 |
-
#: add-to-any.php:
|
21 |
msgid "Save"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: add-to-any.php:
|
25 |
msgid "Subscribe"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: add-to-any.php:
|
29 |
msgid "E-mail"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: add-to-any.php:
|
33 |
msgid "Bookmark"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: add-to-any.php:
|
37 |
msgid "Show all"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: add-to-any.php:
|
41 |
msgid "Show less"
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: add-to-any.php:
|
45 |
msgid "Find service(s)"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: add-to-any.php:
|
49 |
msgid "Instantly find any service to add to"
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: add-to-any.php:
|
53 |
msgid "Powered by"
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: add-to-any.php:
|
57 |
msgid "Share via e-mail"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: add-to-any.php:
|
61 |
msgid "Subscribe via e-mail"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: add-to-any.php:
|
65 |
msgid "Bookmark in your browser"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: add-to-any.php:
|
69 |
msgid "Press Ctrl+D or ⌘+D to bookmark this page"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: add-to-any.php:
|
73 |
msgid "Add to your favorites"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: add-to-any.php:
|
77 |
msgid "Send from any e-mail address or e-mail program"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: add-to-any.php:
|
81 |
msgid "E-mail program"
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: add-to-any.php:
|
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><?php wp_footer(); ?></code> just before the <code></body></code> line of your theme's <code>footer.php</code> file."
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: add-to-any.php:
|
89 |
msgid "Settings saved."
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: add-to-any.php:
|
93 |
msgid "Add to Any: Share/Save "
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: add-to-any.php:
|
97 |
-
#: add-to-any.php:
|
98 |
-
#: add-to-any.php:
|
99 |
msgid "Settings"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: add-to-any.php:
|
103 |
msgid "Standalone Services"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: add-to-any.php:
|
107 |
msgid "Choose the services you want below. Click a chosen service again to remove. Reorder services by dragging and dropping as they appear above."
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: add-to-any.php:
|
111 |
msgid "Button"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: add-to-any.php:
|
115 |
msgid "Image URL"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: add-to-any.php:
|
119 |
msgid "Text only"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: add-to-any.php:
|
123 |
msgid "Placement"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: add-to-any.php:
|
127 |
msgid "Display Share/Save button at the bottom of posts"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: add-to-any.php:
|
131 |
msgid "Display Share/Save button at the bottom of posts on the front page"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: add-to-any.php:
|
135 |
msgid "Display Share/Save button at the bottom of posts in the feed"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: add-to-any.php:
|
139 |
msgid "Display Share/Save button at the bottom of pages"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: add-to-any.php:
|
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:
|
147 |
msgid "Menu Style"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: add-to-any.php:
|
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:
|
155 |
msgid "Open the Add to Any Menu Styler in a new window"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: add-to-any.php:
|
159 |
msgid "Open Menu Styler"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: add-to-any.php:
|
163 |
msgid "Menu Options"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: add-to-any.php:
|
167 |
msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: add-to-any.php:
|
171 |
msgid "Show the title of the post (or page) within the menu"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: add-to-any.php:
|
175 |
msgid "Only show the menu when the user clicks the Share/Save button"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: add-to-any.php:
|
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:
|
183 |
msgid "Additional Options"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: add-to-any.php:
|
187 |
msgid "Paste the code from Add to Any's Menu Styler in the box below!"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: add-to-any.php:
|
191 |
msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: add-to-any.php:
|
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:
|
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:
|
203 |
msgid "Save Changes"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: add-to-any.php:
|
207 |
msgid "Like this plugin?"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: add-to-any.php:
|
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:
|
215 |
msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20Plugin%20by%20AddToAny.com&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:
|
219 |
msgid "Need support?"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: add-to-any.php:
|
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:
|
227 |
msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: add-to-any.php:
|
231 |
msgid "Add/Remove Services"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: add-to-any.php:
|
235 |
msgid "Share/Save"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: add-to-any.php:
|
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-10-08 19:44-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: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 ⌘+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><?php wp_footer(); ?></code> just before the <code></body></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. Click a chosen service again to remove. 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&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 |
|