Version Description
- Fixed XMLRPC support
- Updated Italian translation
Download this release
Release Info
Developer | joedolson |
Plugin | WP to Twitter |
Version | 2.3.2 |
Comparing to | |
See all releases |
Code changes from version 2.2.12 to 2.3.2
- cligs.png +0 -0
- functions.php +16 -15
- readme.txt +27 -6
- styles.css +29 -0
- uninstall.php +4 -14
- wp-to-twitter-it_IT.mo +0 -0
- wp-to-twitter-it_IT.po +237 -224
- wp-to-twitter-ja.mo +0 -0
- wp-to-twitter-ja.po +892 -0
- wp-to-twitter-manager.php +103 -53
- wp-to-twitter-oauth.php +4 -4
- wp-to-twitter.php +188 -167
- wp-to-twitter.pot +199 -215
cligs.png
DELETED
Binary file
|
functions.php
CHANGED
@@ -111,20 +111,29 @@ global $version;
|
|
111 |
|
112 |
$bitlyapi = ( get_option ( 'bitlyapi' ) != '' )?"Saved.":"Blank.";
|
113 |
$yourlsapi = ( get_option ( 'yourlsapi' ) != '' )?"Saved.":"Blank.";
|
114 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
$options = array(
|
116 |
'app_consumer_key'=>get_option('app_consumer_key'),
|
117 |
'app_consumer_secret'=>get_option('app_consumer_secret'),
|
118 |
'bitlylogin'=>get_option( 'bitlylogin' ),
|
119 |
'bitlyapi'=>$bitlyapi,
|
120 |
-
'
|
|
|
|
|
121 |
'disable_oauth_notice'=>get_option('disable_oauth_notice'),
|
122 |
'disable_url_failure'=>get_option('disable_url_failure' ),
|
123 |
'disable_twitter_failure'=>get_option('disable_twitter_failure' ),
|
124 |
|
125 |
'jd_twit_blogroll'=>get_option( 'jd_twit_blogroll' ),
|
126 |
-
'jd_twit_pages'=>get_option( 'jd_twit_pages' ),
|
127 |
-
'jd_twit_edited_pages'=>get_option( 'jd_twit_edited_pages' ),
|
128 |
'jd_keyword_format'=>get_option( 'jd_keyword_format' ),
|
129 |
'jd_replace_character'=>get_option( 'jd_replace_character' ),
|
130 |
'jd_max_tags'=>get_option('jd_max_tags'),
|
@@ -143,17 +152,9 @@ $options = array(
|
|
143 |
|
144 |
'limit_categories'=>get_option('limit_categories' ),
|
145 |
|
146 |
-
'newpost-published-update'=>get_option( 'newpost-published-update' ),
|
147 |
-
'newpost-published-text'=>get_option( 'newpost-published-text' ),
|
148 |
-
'newpage-published-text'=>get_option( 'newpage-published-text' ),
|
149 |
-
'newlink-published-text'=>get_option( 'newlink-published-text' ),
|
150 |
-
|
151 |
'oauth_token'=>get_option('oauth_token'),
|
152 |
'oauth_token_secret'=>get_option('oauth_token_secret'),
|
153 |
-
'
|
154 |
-
'oldpost-edited-text'=>get_option( 'oldpost-edited-text' ),
|
155 |
-
'oldpage-edited-text'=>get_option( 'oldpage-edited-text' ),
|
156 |
-
|
157 |
|
158 |
'tweet_categories'=>get_option('tweet_categories' ),
|
159 |
'twitterInitialised'=>get_option( 'twitterInitialised' ),
|
@@ -180,11 +181,11 @@ $options = array(
|
|
180 |
'yourlsurl' =>get_option( 'yourlsurl' ),
|
181 |
'yourlslogin'=>get_option( 'yourlslogin' )
|
182 |
);
|
183 |
-
|
184 |
echo "<div class=\"settings\">";
|
185 |
echo "<strong>Raw Settings Output: Version $version</strong>";
|
186 |
echo "<ol>";
|
187 |
-
foreach ($
|
188 |
echo "<li><code>$key</code>:$value</li>";
|
189 |
}
|
190 |
|
111 |
|
112 |
$bitlyapi = ( get_option ( 'bitlyapi' ) != '' )?"Saved.":"Blank.";
|
113 |
$yourlsapi = ( get_option ( 'yourlsapi' ) != '' )?"Saved.":"Blank.";
|
114 |
+
$post_type_settings = get_option('wpt_post_types');
|
115 |
+
$group = array();
|
116 |
+
if (is_array($post_type_settings)) {
|
117 |
+
$post_types = array_keys($post_type_settings);
|
118 |
+
foreach ($post_types as $type) {
|
119 |
+
foreach ($post_type_settings[$type] as $key=>$value ) {
|
120 |
+
$group[$key] = $value;
|
121 |
+
}
|
122 |
+
}
|
123 |
+
}
|
124 |
$options = array(
|
125 |
'app_consumer_key'=>get_option('app_consumer_key'),
|
126 |
'app_consumer_secret'=>get_option('app_consumer_secret'),
|
127 |
'bitlylogin'=>get_option( 'bitlylogin' ),
|
128 |
'bitlyapi'=>$bitlyapi,
|
129 |
+
'comment-published-update'=>get_option('comment-published-update'),
|
130 |
+
'comment-published-text'=>get_option('comment-published-text'),
|
131 |
+
|
132 |
'disable_oauth_notice'=>get_option('disable_oauth_notice'),
|
133 |
'disable_url_failure'=>get_option('disable_url_failure' ),
|
134 |
'disable_twitter_failure'=>get_option('disable_twitter_failure' ),
|
135 |
|
136 |
'jd_twit_blogroll'=>get_option( 'jd_twit_blogroll' ),
|
|
|
|
|
137 |
'jd_keyword_format'=>get_option( 'jd_keyword_format' ),
|
138 |
'jd_replace_character'=>get_option( 'jd_replace_character' ),
|
139 |
'jd_max_tags'=>get_option('jd_max_tags'),
|
152 |
|
153 |
'limit_categories'=>get_option('limit_categories' ),
|
154 |
|
|
|
|
|
|
|
|
|
|
|
155 |
'oauth_token'=>get_option('oauth_token'),
|
156 |
'oauth_token_secret'=>get_option('oauth_token_secret'),
|
157 |
+
'suprapi'=>get_option( 'suprapi' ),
|
|
|
|
|
|
|
158 |
|
159 |
'tweet_categories'=>get_option('tweet_categories' ),
|
160 |
'twitterInitialised'=>get_option( 'twitterInitialised' ),
|
181 |
'yourlsurl' =>get_option( 'yourlsurl' ),
|
182 |
'yourlslogin'=>get_option( 'yourlslogin' )
|
183 |
);
|
184 |
+
$result = array_merge($group,$options);
|
185 |
echo "<div class=\"settings\">";
|
186 |
echo "<strong>Raw Settings Output: Version $version</strong>";
|
187 |
echo "<ol>";
|
188 |
+
foreach ($result as $key=>$value) {
|
189 |
echo "<li><code>$key</code>:$value</li>";
|
190 |
}
|
191 |
|
readme.txt
CHANGED
@@ -3,26 +3,30 @@ Contributors: joedolson
|
|
3 |
Donate link: http://www.joedolson.com/donate.php
|
4 |
Tags: twitter, microblogging, su.pr, bitly, yourls, redirect, shortener, post, links
|
5 |
Requires at least: 2.9.2
|
6 |
-
Tested up to: 3.
|
7 |
Stable tag: trunk
|
8 |
|
9 |
Posts a Twitter update when you update your WordPress blog or post to your blogroll, using your chosen URL shortening service. Requires PHP 5 and cURL.
|
10 |
|
11 |
== Description ==
|
12 |
|
13 |
-
|
14 |
|
15 |
[Make a Pledge at Fundry](https://fundry.com/project/10-wp-to-twitter).
|
16 |
|
17 |
-
|
18 |
|
19 |
-
|
|
|
|
|
|
|
|
|
20 |
|
21 |
Any status update you write which is longer than the available space will automatically be truncated by the plugin. This applies to both the default messages and to your custom messages.
|
22 |
|
23 |
Credits:
|
24 |
|
25 |
-
|
26 |
|
27 |
Translations:
|
28 |
|
@@ -36,11 +40,28 @@ Translations:
|
|
36 |
* Romanian: [Jibo](http://jibo.ro)
|
37 |
* Danish: [Rasmus Himmelstrup](http://seoanalyst.dk)
|
38 |
* Brazilian Portugese: [Matheus Bratfisch](http://www.matbra.com)
|
|
|
39 |
|
40 |
New translations are always welcome! The translation file is in the download.
|
41 |
|
42 |
== Changelog ==
|
43 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
= 2.2.12 =
|
45 |
|
46 |
* Bug fix release. Sorry.
|
@@ -493,7 +514,7 @@ Only posts which you scheduled or edited *after* installing the plugin will be T
|
|
493 |
|
494 |
== Upgrade Notice ==
|
495 |
|
496 |
-
|
497 |
|
498 |
== Screenshots ==
|
499 |
|
3 |
Donate link: http://www.joedolson.com/donate.php
|
4 |
Tags: twitter, microblogging, su.pr, bitly, yourls, redirect, shortener, post, links
|
5 |
Requires at least: 2.9.2
|
6 |
+
Tested up to: 3.2-RC1
|
7 |
Stable tag: trunk
|
8 |
|
9 |
Posts a Twitter update when you update your WordPress blog or post to your blogroll, using your chosen URL shortening service. Requires PHP 5 and cURL.
|
10 |
|
11 |
== Description ==
|
12 |
|
13 |
+
WP to Twitter posts a Twitter status update from your WordPress blog using your URL shortening service to provide a link back to your post from Twitter.
|
14 |
|
15 |
[Make a Pledge at Fundry](https://fundry.com/project/10-wp-to-twitter).
|
16 |
|
17 |
+
The plugin supports a default message template for updating or editing posts and pages, supports your custom post types, and also allows you to write a custom Tweet for each post which says whatever you want, using a selection of custom shortcodes to generate your text.
|
18 |
|
19 |
+
Additional features include:
|
20 |
+
|
21 |
+
* Use tags as Twitter hashtags
|
22 |
+
* Use alternate URLs in place of post permalinks
|
23 |
+
* Support for Google Analytics
|
24 |
|
25 |
Any status update you write which is longer than the available space will automatically be truncated by the plugin. This applies to both the default messages and to your custom messages.
|
26 |
|
27 |
Credits:
|
28 |
|
29 |
+
Contributions by [Thor Erik](http://www.thorerik.net), Bill Berry and [Andrea Baccega](http://www.andreabaccega.com). Some code previously contributed is no longer in this plug-in. Other bug fixes and related citations can be found in the changelog.
|
30 |
|
31 |
Translations:
|
32 |
|
40 |
* Romanian: [Jibo](http://jibo.ro)
|
41 |
* Danish: [Rasmus Himmelstrup](http://seoanalyst.dk)
|
42 |
* Brazilian Portugese: [Matheus Bratfisch](http://www.matbra.com)
|
43 |
+
* Japanese: [kndb](http://blog.layer8.sh/)
|
44 |
|
45 |
New translations are always welcome! The translation file is in the download.
|
46 |
|
47 |
== Changelog ==
|
48 |
|
49 |
+
= 2.3.2 =
|
50 |
+
|
51 |
+
* Fixed XMLRPC support
|
52 |
+
* Updated Italian translation
|
53 |
+
|
54 |
+
= 2.3.1 =
|
55 |
+
|
56 |
+
* Added version check and update cycle into tweet routine
|
57 |
+
|
58 |
+
= 2.3.0 =
|
59 |
+
|
60 |
+
* Added support for custom post types.
|
61 |
+
* Added support for tweeting when comments are posted.
|
62 |
+
* Bug fix: results of checking/unchecking 'Don't tweet this' box not consistent.
|
63 |
+
* Added Japanese translation. [kndb](http://blog.layer8.sh/)
|
64 |
+
|
65 |
= 2.2.12 =
|
66 |
|
67 |
* Bug fix release. Sorry.
|
514 |
|
515 |
== Upgrade Notice ==
|
516 |
|
517 |
+
May fix a problem for some users.
|
518 |
|
519 |
== Screenshots ==
|
520 |
|
styles.css
CHANGED
@@ -50,4 +50,33 @@ line-height: 1;
|
|
50 |
}
|
51 |
#wp-to-twitter .inside em {
|
52 |
color: #f33;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
}
|
50 |
}
|
51 |
#wp-to-twitter .inside em {
|
52 |
color: #f33;
|
53 |
+
}
|
54 |
+
#wp-to-twitter .spsn-container {
|
55 |
+
background: #efefef!important;
|
56 |
+
border: 1px solid #f6f6f6!important;
|
57 |
+
text-shadow: rgba(255, 255, 255, 0.796875) 0px 1px 0px;
|
58 |
+
border-radius: 4px;
|
59 |
+
-moz-border-radius: 4px;
|
60 |
+
-webkit-border-radius: 4px;
|
61 |
+
position: relative;
|
62 |
+
padding:.5em !important;
|
63 |
+
margin: 0.4em 0 0.5em 0 !important;
|
64 |
+
font-size: 1.1em;
|
65 |
+
width: 600px;
|
66 |
+
text-align: left;
|
67 |
+
}
|
68 |
+
|
69 |
+
#wp-to-twitter .spsn-sponsor-heading {/* paragraph carrying a heading for the sponsorship message */ text-align: left; margin-top: -2px; padding: .8em; color: #666; }
|
70 |
+
|
71 |
+
#wp-to-twitter .spsn-sponsor-text {/* paragraph containing the sponsorship message */}
|
72 |
+
|
73 |
+
#wp-to-twitter .spsn-credit {
|
74 |
+
position: absolute;
|
75 |
+
top: 0;
|
76 |
+
right: 0;
|
77 |
+
padding:.8em !important;
|
78 |
+
color: #666;
|
79 |
+
}
|
80 |
+
#wp-to-twitter .spsn-sponsor-text a {
|
81 |
+
color: #21759B !important;
|
82 |
}
|
uninstall.php
CHANGED
@@ -2,23 +2,13 @@
|
|
2 |
if ( !defined( 'ABSPATH' ) && !defined( 'WP_UNINSTALL_PLUGIN' ) ) {
|
3 |
exit();
|
4 |
} else {
|
5 |
-
delete_option( '
|
6 |
-
delete_option( 'newpost-published-text' );
|
7 |
-
delete_option( 'newpost-published-showlink' );
|
8 |
-
|
9 |
-
delete_option( 'oldpost-edited-update' );
|
10 |
-
delete_option( 'oldpost-edited-text' );
|
11 |
-
delete_option( 'oldpost-edited-showlink' );
|
12 |
-
|
13 |
-
delete_option( 'jd_twit_pages' );
|
14 |
-
delete_option( 'jd_twit_edited_pages' );
|
15 |
-
delete_option( 'oldpage-edited-text' );
|
16 |
-
delete_option( 'newpage-published-text' );
|
17 |
-
|
18 |
delete_option( 'jd_twit_remote' );
|
19 |
-
|
20 |
delete_option( 'jd_post_excerpt' );
|
21 |
|
|
|
|
|
|
|
22 |
// Su.pr API
|
23 |
delete_option( 'suprapi' );
|
24 |
|
2 |
if ( !defined( 'ABSPATH' ) && !defined( 'WP_UNINSTALL_PLUGIN' ) ) {
|
3 |
exit();
|
4 |
} else {
|
5 |
+
delete_option( 'wpt_post_types' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
delete_option( 'jd_twit_remote' );
|
|
|
7 |
delete_option( 'jd_post_excerpt' );
|
8 |
|
9 |
+
delete_option( 'comment-published-update');
|
10 |
+
delete_option( 'comment-published-text');
|
11 |
+
|
12 |
// Su.pr API
|
13 |
delete_option( 'suprapi' );
|
14 |
|
wp-to-twitter-it_IT.mo
CHANGED
Binary file
|
wp-to-twitter-it_IT.po
CHANGED
@@ -7,8 +7,8 @@ msgid ""
|
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: WP to Twitter in italiano\n"
|
9 |
"Report-Msgid-Bugs-To: \n"
|
10 |
-
"POT-Creation-Date: 2011-
|
11 |
-
"PO-Revision-Date: 2011-
|
12 |
"Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
|
13 |
"Language-Team: Gianni Diurno | gidibao.net\n"
|
14 |
"MIME-Version: 1.0\n"
|
@@ -21,641 +21,615 @@ msgstr ""
|
|
21 |
"X-Poedit-SourceCharset: utf-8\n"
|
22 |
"X-Poedit-SearchPath-0: .\n"
|
23 |
|
24 |
-
#: wp-to-twitter/functions.php:
|
25 |
msgid "[<a href='options-general.php?page=wp-to-twitter/wp-to-twitter.php'>Hide</a>] If you're experiencing trouble, please copy these settings into any request for support."
|
26 |
msgstr "[<a href='options-general.php?page=wp-to-twitter/wp-to-twitter.php'>Nascondi</a>] Qualora avessi riscontrato dei problemi, allega queste impostazioni alle richieste di supporto."
|
27 |
|
28 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
29 |
msgid "WP to Twitter is now connected with Twitter."
|
30 |
msgstr "WP to Twitter é ora connesso a Twitter."
|
31 |
|
32 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
33 |
msgid "OAuth Authentication Data Cleared."
|
34 |
msgstr "I dati della autentificazione OAuth sono stati svuotati."
|
35 |
|
36 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
37 |
msgid "OAuth Authentication Failed. Your server time is not in sync with the Twitter servers. Talk to your hosting service to see what can be done."
|
38 |
msgstr "Autentificazione OAuth fallita. L'ora del tuo sever non é sicronizzata con i server di Twitter. Comunica il problema al tuo fornitore di hosting."
|
39 |
|
40 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
41 |
msgid "OAuth Authentication response not understood."
|
42 |
msgstr "Risposta Autentificazione OAuth non valida."
|
43 |
|
44 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
45 |
msgid "WP to Twitter Errors Cleared"
|
46 |
msgstr "Gli errori WP to Twitter sono stati azzerati"
|
47 |
|
48 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
49 |
msgid "Sorry! I couldn't get in touch with the Twitter servers to post your new blog post. Your tweet has been stored in a custom field attached to the post, so you can Tweet it manually if you wish! "
|
50 |
msgstr "Non é stato possibile contattare i server di Twitter per comunicare l'aggiornamento avvenuto. Il tuo messaggio é stato inserito in un campo personalizzato in allegato all'articolo in modo tale che tu possa compiere manualmente l'operazione!"
|
51 |
|
52 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
53 |
msgid "Sorry! I couldn't get in touch with the Twitter servers to post your <strong>new link</strong>! You'll have to post it manually, I'm afraid. "
|
54 |
msgstr "Non é stato possibile contattare i server di Twitter per comunicare il tuo <strong>nuovo link</strong>. Prova a compiere manualmente l'operazione."
|
55 |
|
56 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
57 |
msgid "WP to Twitter Advanced Options Updated"
|
58 |
msgstr "Le opzioni avanzate di WP to Twitter sono state aggiornate"
|
59 |
|
60 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
61 |
msgid "You must add your Bit.ly login and API key in order to shorten URLs with Bit.ly."
|
62 |
msgstr "E' necessario che tu inserisca i dati per il login e la chiave API di Bit.ly in modo da potere abbreviare gli URL con Bit.ly."
|
63 |
|
64 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
65 |
msgid "You must add your YOURLS remote URL, login, and password in order to shorten URLs with a remote installation of YOURLS."
|
66 |
msgstr "E' necessario che tu inserisca il tuo URL remoto a YOURLS, il login e la password in modo da potere abbreviare gli URL attraverso la tua installazione remota di YOURLS."
|
67 |
|
68 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
69 |
msgid "You must add your YOURLS server path in order to shorten URLs with a remote installation of YOURLS."
|
70 |
msgstr "E' necessario che tu inserisca il percorso al server del tuo YOURLS in modo da potere abbreviare gli URL attraverso la tua installazione remota di YOURLS."
|
71 |
|
72 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
73 |
msgid "WP to Twitter Options Updated"
|
74 |
msgstr "Le opzioni di WP to Twitter sono state aggiornate"
|
75 |
|
76 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
77 |
msgid "Category limits updated."
|
78 |
msgstr "I limiti per la categoria sono stati aggiornati."
|
79 |
|
80 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
81 |
msgid "Category limits unset."
|
82 |
msgstr "Le limitazioni alle categorie non sono state impostate."
|
83 |
|
84 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
85 |
msgid "YOURLS password updated. "
|
86 |
msgstr "La password di YOURLS é stata aggiornata."
|
87 |
|
88 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
89 |
msgid "YOURLS password deleted. You will be unable to use your remote YOURLS account to create short URLS."
|
90 |
msgstr "La tua password di YOURLS é stata cancellata. Non potrai utilizzare il tuo account remoto YOURLS per la creazione di URL brevi."
|
91 |
|
92 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
93 |
msgid "Failed to save your YOURLS password! "
|
94 |
msgstr "Non é stato possibile salvare la tua password di YOURLS!"
|
95 |
|
96 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
97 |
msgid "YOURLS username added. "
|
98 |
msgstr "Il nome utente YOURLS é stato aggiunto."
|
99 |
|
100 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
101 |
msgid "YOURLS API url added. "
|
102 |
msgstr "L'url alla API YOURLS é stato aggiunto. "
|
103 |
|
104 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
105 |
msgid "YOURLS API url removed. "
|
106 |
msgstr "L'url alla API YOURLS é stato rimosso. "
|
107 |
|
108 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
109 |
msgid "YOURLS local server path added. "
|
110 |
msgstr "Il percorso al server locale di YOURLS é stato aggiunto. "
|
111 |
|
112 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
113 |
msgid "The path to your YOURLS installation is not correct. "
|
114 |
msgstr "Il percorso alla tua installazione di YOURLS non é corretto. "
|
115 |
|
116 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
117 |
msgid "YOURLS local server path removed. "
|
118 |
msgstr "Il percorso al server locale di YOURLS é stato rimosso. "
|
119 |
|
120 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
121 |
msgid "YOURLS will use Post ID for short URL slug."
|
122 |
msgstr "YOURLS utilizzerà Post ID per lo slug degli URL brevi."
|
123 |
|
124 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
125 |
msgid "YOURLS will not use Post ID for the short URL slug."
|
126 |
msgstr "YOURLS non utilizzerà Post ID per lo slug degli URL brevi."
|
127 |
|
128 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
129 |
msgid "Su.pr API Key and Username Updated"
|
130 |
msgstr "La chiave API ed il nome utente di Su.pr sono stati aggiornati"
|
131 |
|
132 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
133 |
msgid "Su.pr API Key and username deleted. Su.pr URLs created by WP to Twitter will no longer be associated with your account. "
|
134 |
msgstr "La chiave API ed il nome utente di Su.pr sono stati cancellati. Gli URL di Su.pr creati da WP to Twitter non saranno più associati al tuo account. "
|
135 |
|
136 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
137 |
msgid "Su.pr API Key not added - <a href='http://su.pr/'>get one here</a>! "
|
138 |
msgstr "Non é stata inserita la chiave API di Su.pr - <a href='http://su.pr/'>vai qui</a>! "
|
139 |
|
140 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
141 |
msgid "Bit.ly API Key Updated."
|
142 |
msgstr "La chiave API di Bit.ly é stata aggiornata."
|
143 |
|
144 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
145 |
msgid "Bit.ly API Key deleted. You cannot use the Bit.ly API without an API key. "
|
146 |
msgstr "La chiave API di Bit.ly é stata cancellata. Non puoi utilizzare la API di Bit.ly senza la chiave API. "
|
147 |
|
148 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
149 |
msgid "Bit.ly API Key not added - <a href='http://bit.ly/account/'>get one here</a>! An API key is required to use the Bit.ly URL shortening service."
|
150 |
msgstr "La chiave API di Bit.ly non é stata aggiunta - <a href='http://bit.ly/account/'>vai qui</a>! E' necessaria una chiave API affinché il servizio di URL brevi Bit.ly di possa funzionare."
|
151 |
|
152 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
153 |
msgid " Bit.ly User Login Updated."
|
154 |
msgstr " Il login utente per Bit.ly é stato aggiornato."
|
155 |
|
156 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
157 |
msgid "Bit.ly User Login deleted. You cannot use the Bit.ly API without providing your username. "
|
158 |
msgstr "Sono stati cancellati i dati per il login utente Bit.ly. Non puoi utilizzare la API di Bit.ly senza fornire il tuo nome utente. "
|
159 |
|
160 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
161 |
msgid "Bit.ly Login not added - <a href='http://bit.ly/account/'>get one here</a>! "
|
162 |
msgstr "Non sono stati inseriti i dati per il login a Bit.ly - <a href='http://bit.ly/account/'>vai qui</a>! "
|
163 |
|
164 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
165 |
msgid "No error information is available for your shortener."
|
166 |
msgstr "Nessuna informazione di errore disponibile per il tuo abbreviatore."
|
167 |
|
168 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
169 |
msgid "<li class=\"error\"><strong>WP to Twitter was unable to contact your selected URL shortening service.</strong></li>"
|
170 |
msgstr "<li class=\"error\"><strong>WP to Twitter non é stato in grado di contattare il servizio per gli URL brevi da te selezionato.</strong></li>"
|
171 |
|
172 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
173 |
msgid "<li><strong>WP to Twitter successfully contacted your selected URL shortening service.</strong> The following link should point to your blog homepage:"
|
174 |
msgstr "<li><strong>WP to Twitter ha contattato con successo il servizio per gli URL brevi da te selezionato.</strong> Il seguente link dovrebbe puntare alla homepage del tuo blog:"
|
175 |
|
176 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
177 |
msgid "<li><strong>WP to Twitter successfully submitted a status update to Twitter.</strong></li>"
|
178 |
msgstr "<li><strong>WP to Twitter ha inviato con successo l'aggiornamento dello stato a Twitter.</strong></li>"
|
179 |
|
180 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
181 |
msgid "<li class=\"error\"><strong>WP to Twitter failed to submit an update to Twitter.</strong></li>"
|
182 |
msgstr "<li class=\"error\"><strong>WP to Twitter non é stato in grado di inviare l'aggiornamento a Twitter.</strong></li>"
|
183 |
|
184 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
185 |
msgid "You have not connected WordPress to Twitter."
|
186 |
msgstr "Non hai connesso WordPress a Twitter."
|
187 |
|
188 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
189 |
msgid "<li class=\"error\"><strong>Your server does not appear to support the required methods for WP to Twitter to function.</strong> You can try it anyway - these tests aren't perfect.</li>"
|
190 |
msgstr "<li class=\"error\"><strong>Pare che il tuo server non supporti le funzioni richieste affinché WP to Twitter possa funzionare correttamente.</strong> Puoi comunque provare ugualmente - queste verifiche non sono perfette - garantisco i risultati.</li>"
|
191 |
|
192 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
193 |
msgid "<li><strong>Your server should run WP to Twitter successfully.</strong></li>"
|
194 |
msgstr "<li><strong>WP to Twitter funziona correttamente per il tuo server.</strong></li>"
|
195 |
|
196 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
197 |
msgid "WP to Twitter Options"
|
198 |
msgstr "Opzioni WP to Twitter"
|
199 |
|
200 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
201 |
msgid "Pledge to new features"
|
202 |
msgstr "Nuove funzioni in arrivo"
|
203 |
|
204 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
205 |
-
#: wp-to-twitter/wp-to-twitter.php:
|
206 |
msgid "Make a Donation"
|
207 |
msgstr "Effettua una donazione"
|
208 |
|
209 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
210 |
msgid "View Settings"
|
211 |
msgstr "Visualizza impostazioni"
|
212 |
|
213 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
214 |
-
#: wp-to-twitter/wp-to-twitter.php:
|
215 |
msgid "Get Support"
|
216 |
msgstr "Supporto"
|
217 |
|
218 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
219 |
msgid "Shortcodes available in post update templates:"
|
220 |
msgstr "Shortcode disponibili nei template aggiornamento post:"
|
221 |
|
222 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
223 |
msgid "<code>#title#</code>: the title of your blog post"
|
224 |
msgstr "<code>#title#</code>: il titolo del tuo post"
|
225 |
|
226 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
227 |
msgid "<code>#blog#</code>: the title of your blog"
|
228 |
msgstr "<code>#blog#</code>: il titolo del tuo blog"
|
229 |
|
230 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
231 |
msgid "<code>#post#</code>: a short excerpt of the post content"
|
232 |
msgstr "<code>#post#</code>: un breve riassunto dei contenuti del post"
|
233 |
|
234 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
235 |
msgid "<code>#category#</code>: the first selected category for the post"
|
236 |
msgstr "<code>#category#</code>: la prima categoria selezionata per il post"
|
237 |
|
238 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
239 |
msgid "<code>#date#</code>: the post date"
|
240 |
msgstr "<code>#date#</code>: la data del post"
|
241 |
|
242 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
243 |
msgid "<code>#url#</code>: the post URL"
|
244 |
msgstr "<code>#url#</code>: l'URL del post"
|
245 |
|
246 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
247 |
msgid "<code>#author#</code>: the post author"
|
248 |
msgstr "<code>#author#</code>: l'autore del post"
|
249 |
|
250 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
251 |
msgid "<code>#account#</code>: the twitter @reference for the account (or the author, if author settings are enabled and set.)"
|
252 |
msgstr "<code>#account#</code>: il riferimento Twitter @ per l'account (o per l'autore, previa attivazione ed impostazione.)"
|
253 |
|
254 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
255 |
msgid "You can also create custom shortcodes to access WordPress custom fields. Use doubled square brackets surrounding the name of your custom field to add the value of that custom field to your status update. Example: <code>[[custom_field]]</code></p>"
|
256 |
msgstr "Hai la possibilità di potere creare degli shortcode personalizzati grazie ai campi personalizzati di WordPress. Utilizza le doppie parentesi quadre per avvolgere il nome del tuo campo personalizzato per aggiungere il valore di quel dato campo al tuo stato di aggiornamento. Esempio: <code>[[custom_field]]</code></p>"
|
257 |
|
258 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
259 |
msgid "<p>One or more of your last posts has failed to send it's status update to Twitter. Your Tweet has been saved in your post custom fields, and you can re-Tweet it at your leisure.</p>"
|
260 |
msgstr "<p>Uno o più dei tuoi articoli recenti non é stato in grado di comunicare l'aggiornamento a Twitter. Il tuo messaggio é stato inserito nei dati meta del campo personalizzato del tuo articolo in modo tale che tu possa ripetere l'operazione a tuo piacere.</p>"
|
261 |
|
262 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
263 |
msgid "<p>The query to the URL shortener API failed, and your URL was not shrunk. The full post URL was attached to your Tweet. Check with your URL shortening provider to see if there are any known issues. [<a href=\"http://www.stumbleupon.com/help/how-to-use-supr/\">Su.pr Help</a>] [<a href=\"http://blog.bit.ly\">Bit.ly Blog</a>]</p>"
|
264 |
msgstr "<p>La richiesta alla API é fallita! Non essendo stato possibile abbreviare l'URL abbiamo utilizzato per il messaggio l'URL completo. Verifica la documentazione in merito presso il tuo provider di URL brevi. [<a href=\"http://www.stumbleupon.com/help/how-to-use-supr/\">Su.pr Help</a>] [<a href=\"http://blog.bit.ly\">Bit.ly Blog</a>]</p>"
|
265 |
|
266 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
267 |
msgid "Clear 'WP to Twitter' Error Messages"
|
268 |
msgstr "Svuota i messaggiodi errore 'WP to Twitter'"
|
269 |
|
270 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
271 |
msgid "Basic Settings"
|
272 |
msgstr "Impostazioni di base"
|
273 |
|
274 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
275 |
-
msgid "
|
276 |
-
msgstr "
|
277 |
-
|
278 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:427
|
279 |
-
msgid "Update when a post is published"
|
280 |
-
msgstr "Aggiorna quando viene pubblicato un articolo"
|
281 |
-
|
282 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:427
|
283 |
-
msgid "Text for new post updates:"
|
284 |
-
msgstr "Testo per aggiornamenti articolo:"
|
285 |
-
|
286 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:433
|
287 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:436
|
288 |
-
msgid "Update when a post is edited"
|
289 |
-
msgstr "Aggiorna quando modifichi un articolo"
|
290 |
|
291 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
292 |
-
|
293 |
-
|
294 |
-
msgstr "Testo per aggiornamenti modifiche:"
|
295 |
|
296 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
297 |
-
msgid "
|
298 |
-
msgstr "
|
299 |
|
300 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
301 |
-
msgid "
|
302 |
-
msgstr "
|
303 |
|
304 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
305 |
-
msgid "Text for new page updates:"
|
306 |
-
msgstr "Testo per aggiornamenti articolo:"
|
307 |
-
|
308 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:445
|
309 |
-
msgid "Update Twitter when WordPress Pages are edited"
|
310 |
-
msgstr "Aggiorna Twitter quando viene modificata una pagina WordPress"
|
311 |
-
|
312 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:445
|
313 |
-
msgid "Text for page edit updates:"
|
314 |
-
msgstr "Testo per la pagina di modifica aggiornamenti:"
|
315 |
-
|
316 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:449
|
317 |
msgid "Update Twitter when you post a Blogroll link"
|
318 |
msgstr "Aggiorna Twitter quando viene aggiunto un nuovo link al blogroll"
|
319 |
|
320 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
321 |
msgid "Text for new link updates:"
|
322 |
msgstr "Testo per gli aggiornamenti di un nuovo link:"
|
323 |
|
324 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
325 |
msgid "Available shortcodes: <code>#url#</code>, <code>#title#</code>, and <code>#description#</code>."
|
326 |
msgstr "Shortcode disponibili: <code>#url#</code>, <code>#title#</code> e <code>#description#</code>."
|
327 |
|
328 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
329 |
msgid "Choose your short URL service (account settings below)"
|
330 |
msgstr "Scegli il tuo servizio per gli URL brevi (impostazioni account qui sotto)"
|
331 |
|
332 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
333 |
msgid "Don't shorten URLs."
|
334 |
msgstr "Non usare gli URL brevi"
|
335 |
|
336 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
337 |
msgid "Use Su.pr for my URL shortener."
|
338 |
msgstr "Usa Su.pr per creare gli URL brevi."
|
339 |
|
340 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
341 |
msgid "Use Bit.ly for my URL shortener."
|
342 |
msgstr "Usa Bit.ly per gli URL brevi"
|
343 |
|
344 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
345 |
msgid "YOURLS (installed on this server)"
|
346 |
msgstr "YOURLS (intallato in questo server)"
|
347 |
|
348 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
349 |
msgid "YOURLS (installed on a remote server)"
|
350 |
msgstr "YOURLS (intallato in un server remoto)"
|
351 |
|
352 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
353 |
msgid "Use WordPress as a URL shortener."
|
354 |
msgstr "Usa WordPress per gli URL brevi."
|
355 |
|
356 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
357 |
msgid "Using WordPress as a URL shortener will send URLs to Twitter in the default URL format for WordPress: <code>http://domain.com/wpdir/?p=123</code>. Google Analytics is not available when using WordPress shortened URLs."
|
358 |
msgstr "L'utilizzo di WordPress per la creazione di URL brevi farà sì che verranno inviati a Twitter gli URL nel formato predefinito di WordPress: <code>http://domain.com/wpdir/?p=123</code> . Google Analytics non sarà disponibile durante l'utilizzo di WordPress per la creazione di URL brevi."
|
359 |
|
360 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
361 |
msgid "Save WP->Twitter Options"
|
362 |
msgstr "Salva le opzioni WP->Twitter"
|
363 |
|
364 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
365 |
msgid "<abbr title=\"Uniform Resource Locator\">URL</abbr> Shortener Account Settings"
|
366 |
msgstr "Impostazione account abbreviatore <abbr title=\"Uniform Resource Locator\">URL</abbr>"
|
367 |
|
368 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
369 |
msgid "Your Su.pr account details"
|
370 |
msgstr "Dati account Su.pr"
|
371 |
|
372 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
373 |
msgid "Your Su.pr Username:"
|
374 |
msgstr "Nome utente Su.pr:"
|
375 |
|
376 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
377 |
msgid "Your Su.pr <abbr title='application programming interface'>API</abbr> Key:"
|
378 |
msgstr "La tua chiave <abbr title='application programming interface'>API</abbr> di Su.pr:"
|
379 |
|
380 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
381 |
msgid "Don't have a Su.pr account or API key? <a href='http://su.pr/'>Get one here</a>!<br />You'll need an API key in order to associate the URLs you create with your Su.pr account."
|
382 |
msgstr "Non hai ancora un account oppure una chiave API Su.pr? <a href='http://su.pr/'>Vai qui</a>!<br />E' necessaria una chiave API in modo tale da potere associare gli URL da te creati con il tuo account di Su.pr."
|
383 |
|
384 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
385 |
msgid "Your Bit.ly account details"
|
386 |
msgstr "Dati account Bit.ly"
|
387 |
|
388 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
389 |
msgid "Your Bit.ly username:"
|
390 |
msgstr "Nome utente Bit.ly:"
|
391 |
|
392 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
393 |
msgid "Your Bit.ly <abbr title='application programming interface'>API</abbr> Key:"
|
394 |
msgstr "La tua chiave <abbr title='application programming interface'>API</abbr> di Bit.ly:"
|
395 |
|
396 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
397 |
msgid "Save Bit.ly API Key"
|
398 |
msgstr "Salva la chiave API di Bit.ly"
|
399 |
|
400 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
401 |
msgid "Clear Bit.ly API Key"
|
402 |
msgstr "Svuota la chiave API di Bit.ly"
|
403 |
|
404 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
405 |
msgid "A Bit.ly API key and username is required to shorten URLs via the Bit.ly API and WP to Twitter."
|
406 |
msgstr "E' necessario il nome utente e la chiave API di Bit.ly per potere rendere brevi gli URL via la API di Bit.ly e WP to Twitter."
|
407 |
|
408 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
409 |
msgid "Your YOURLS account details"
|
410 |
msgstr "I dettagli del tuo account YOURLS"
|
411 |
|
412 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
413 |
msgid "Path to your YOURLS config file (Local installations)"
|
414 |
msgstr "Percorso al file di configurazione YOURLS (installazioni locali)"
|
415 |
|
416 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
417 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
418 |
msgid "Example:"
|
419 |
msgstr "Esempio:"
|
420 |
|
421 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
422 |
msgid "URI to the YOURLS API (Remote installations)"
|
423 |
msgstr "URI alla API di YOURLS (installazioni remote)"
|
424 |
|
425 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
426 |
msgid "Your YOURLS username:"
|
427 |
msgstr "Nome utente YOURLS:"
|
428 |
|
429 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
430 |
msgid "Your YOURLS password:"
|
431 |
msgstr "Password YOURLS:"
|
432 |
|
433 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
434 |
msgid "<em>Saved</em>"
|
435 |
msgstr "<em>Salvato</em>"
|
436 |
|
437 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
438 |
msgid "Use Post ID for YOURLS url slug."
|
439 |
msgstr "Utilizza Post ID per lo slug degli url di YOURLS."
|
440 |
|
441 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
442 |
msgid "Save YOURLS Account Info"
|
443 |
msgstr "Salva le info account di YOURLS"
|
444 |
|
445 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
446 |
msgid "Clear YOURLS password"
|
447 |
msgstr "Svuota la password di YOURLS"
|
448 |
|
449 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
450 |
msgid "A YOURLS password and username is required to shorten URLs via the remote YOURLS API and WP to Twitter."
|
451 |
msgstr "E' necessario il nome utente e la password di affinché possano essere abbreviati gli URL via l'API remoto di YOURLS e di WP to Twitter."
|
452 |
|
453 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
454 |
msgid "Advanced Settings"
|
455 |
msgstr "Impostazioni avanzate"
|
456 |
|
457 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
458 |
msgid "Advanced Tweet settings"
|
459 |
msgstr "Opzioni messaggio avanzate"
|
460 |
|
461 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
462 |
msgid "Add tags as hashtags on Tweets"
|
463 |
msgstr "Aggiungi ai messaggi i tag come fossero degli hashtag "
|
464 |
|
465 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
466 |
msgid "Strip nonalphanumeric characters"
|
467 |
msgstr "Rimuovi caratteri non alfanumerici"
|
468 |
|
469 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
470 |
msgid "Spaces replaced with:"
|
471 |
msgstr "Sostituisci gli spazi con:"
|
472 |
|
473 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
474 |
msgid "Default replacement is an underscore (<code>_</code>). Use <code>[ ]</code> to remove spaces entirely."
|
475 |
msgstr "Il sostituto predefinito é un trattino breve (<code>_</code>). Usa <code>[ ]</code> per rimuovere gli spazi completamente."
|
476 |
|
477 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
478 |
msgid "Maximum number of tags to include:"
|
479 |
msgstr "Numero massimo di tag da includere:"
|
480 |
|
481 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
482 |
msgid "Maximum length in characters for included tags:"
|
483 |
msgstr "Lunghezza massima in caratteri per i tag inclusi:"
|
484 |
|
485 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
486 |
msgid "These options allow you to restrict the length and number of WordPress tags sent to Twitter as hashtags. Set to <code>0</code> or leave blank to allow any and all tags."
|
487 |
msgstr "Queste opzioni ti permetteranno di limitare la lunghezza ed il numero dei tag WordPress inviati a Twitter come hashtags. Imposta a <code>0</code> oppure lascia in bianco per permettere ogni tag."
|
488 |
|
489 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
490 |
msgid "Length of post excerpt (in characters):"
|
491 |
msgstr "Lunghezza riassunto messaggi (in caratteri)"
|
492 |
|
493 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
494 |
msgid "By default, extracted from the post itself. If you use the 'Excerpt' field, that will be used instead."
|
495 |
msgstr "Come funzione predefinita, gli estratti verranno generati in automatico. Utilizzassi il campo 'Excerpt', questi avrà la priorità."
|
496 |
|
497 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
498 |
msgid "WP to Twitter Date Formatting:"
|
499 |
msgstr "Formattazione data WP to Twitter:"
|
500 |
|
501 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
502 |
msgid "Default is from your general settings. <a href='http://codex.wordpress.org/Formatting_Date_and_Time'>Date Formatting Documentation</a>."
|
503 |
msgstr "Predefinito dalle impostazioni generali. <a href='http://codex.wordpress.org/Formatting_Date_and_Time'>Info formattazione data</a>."
|
504 |
|
505 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
506 |
msgid "Custom text before all Tweets:"
|
507 |
msgstr "Testo personalizzato prima di tutti i messaggi:"
|
508 |
|
509 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
510 |
msgid "Custom text after all Tweets:"
|
511 |
msgstr "Testo personalizzato dopo tutti i messaggi:"
|
512 |
|
513 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
514 |
msgid "Custom field for an alternate URL to be shortened and Tweeted:"
|
515 |
msgstr "Campo personalizzato riferito ad un URL alternativo da abbreviare ed inviare a Twitter:"
|
516 |
|
517 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
518 |
msgid "You can use a custom field to send an alternate URL for your post. The value is the name of a custom field containing your external URL."
|
519 |
msgstr "Puoi utilizzare un campo personalizzato per inviare un URL alternativo per il tuo articolo. Questo valore é il nome del campo personalizzato che utilizzerai per aggiungere un URL esterno."
|
520 |
|
521 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
522 |
msgid "Special Cases when WordPress should send a Tweet"
|
523 |
msgstr "Casi particolari nei quali WordPress dovrebbe inviare un messaggio"
|
524 |
|
525 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
526 |
msgid "Do not post status updates by default"
|
527 |
msgstr "Non aggiornare lo stato dei post (predefinito)"
|
528 |
|
529 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
530 |
msgid "By default, all posts meeting other requirements will be posted to Twitter. Check this to change your setting."
|
531 |
msgstr "Come funzione predefinita, tutti i post che soddisfano i requisiti saranno pubblicati su Twitter. Metti il segno di spunta per modificare le impostazioni."
|
532 |
|
533 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
534 |
msgid "Send Twitter Updates on remote publication (Post by Email or XMLRPC Client)"
|
535 |
msgstr "Invio degli aggiornamenti di Twitter via punti di pubblicazione remoti (Email o client XMLRPC)"
|
536 |
|
537 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
538 |
-
msgid "I'm using a plugin to post by email, such as Postie. Only check this if your updates do not work."
|
539 |
-
msgstr "Sto utilizzando un plugin per pubblicare gli articoli via email (del tipo Postie). Seleziona qualora gli aggiornamenti non funzionassero."
|
540 |
-
|
541 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:613
|
542 |
msgid "Update Twitter when a post is published using QuickPress"
|
543 |
msgstr "Aggiorna Twitter quando un articolo é stato pubblicato via QuickPress"
|
544 |
|
545 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
546 |
msgid "Google Analytics Settings"
|
547 |
msgstr "Impostazioni Google Analytics"
|
548 |
|
549 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
550 |
msgid "You can track the response from Twitter using Google Analytics by defining a campaign identifier here. You can either define a static identifier or a dynamic identifier. Static identifiers don't change from post to post; dynamic identifiers are derived from information relevant to the specific post. Dynamic identifiers will allow you to break down your statistics by an additional variable."
|
551 |
msgstr "Puoi tracciare la risposta da Twitter utilizzando Google Analytics definendo qui l'identificatore. Puoi definire un identificatore statico oppure uno dinamico. Gli identificatori statici non mutano da post a post mentre quelli dinamici derivano dalle informazioni di maggior rilievo appartenenti a quel post specifico. Gli identificatori dinamici ti permetteranno di analizzare le tue statistiche attraverso una variabile aggiuntiva."
|
552 |
|
553 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
554 |
msgid "Use a Static Identifier with WP-to-Twitter"
|
555 |
msgstr "Utilizza un identificatore statico per WP-to-Twitter"
|
556 |
|
557 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
558 |
msgid "Static Campaign identifier for Google Analytics:"
|
559 |
msgstr "Identificatore statico Google Analytics:"
|
560 |
|
561 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
562 |
msgid "Use a dynamic identifier with Google Analytics and WP-to-Twitter"
|
563 |
msgstr "Utilizza un identificatore dinamico per Google Analytics e WP-to-Twitter"
|
564 |
|
565 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
566 |
msgid "What dynamic identifier would you like to use?"
|
567 |
msgstr "Quale identificatore dinamico desideri utilizzare?"
|
568 |
|
569 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
570 |
msgid "Category"
|
571 |
msgstr "Categoria"
|
572 |
|
573 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
574 |
msgid "Post ID"
|
575 |
msgstr "ID post"
|
576 |
|
577 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
578 |
msgid "Post Title"
|
579 |
msgstr "Titolo post"
|
580 |
|
581 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
582 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
583 |
msgid "Author"
|
584 |
msgstr "Autore"
|
585 |
|
586 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
587 |
msgid "Individual Authors"
|
588 |
msgstr "Autori singoli"
|
589 |
|
590 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
591 |
msgid "Authors have individual Twitter accounts"
|
592 |
msgstr "Gli autori hanno degli account personali su Twitter"
|
593 |
|
594 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
595 |
msgid "Authors can set their username in their user profile. As of version 2.2.0, this feature no longer allows authors to post to their own Twitter accounts. It can only add an @reference to the author. This @reference is placed using the <code>#account#</code> shortcode. (It will pick up the main account if user accounts are not enabled.)"
|
596 |
msgstr "Gli autori possono impostare il proprio nome utente nel loro profilo utente. A partire dalla versione 2.2.0, questa funzione non permetterà più agli autori di inviare i propri messaggi ai loro account di Twitter. Potrà essere aggiunto il solo riferimento @ all'autore. Questo riferimento @ verrà posizionato facendo uso dello shortcode <code>#account#</code>. (Verrà utilizzato l'account principale se gli account utente non saranno attivati.)"
|
597 |
|
598 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
599 |
msgid "Choose the lowest user group that can add their Twitter information"
|
600 |
msgstr "Scegli il ruolo utente di minima che può aggiungere le proprie info Twitter "
|
601 |
|
602 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
603 |
msgid "Subscriber"
|
604 |
msgstr "Sottoscrittore"
|
605 |
|
606 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
607 |
msgid "Contributor"
|
608 |
msgstr "Collaboratore"
|
609 |
|
610 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
611 |
msgid "Editor"
|
612 |
msgstr "Editore"
|
613 |
|
614 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
615 |
msgid "Administrator"
|
616 |
msgstr "Amministratore"
|
617 |
|
618 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
619 |
msgid "Disable Error Messages"
|
620 |
msgstr "Disattiva i messaggi di errore"
|
621 |
|
622 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
623 |
msgid "Disable global URL shortener error messages."
|
624 |
msgstr "Disattiva i messaggi di errore abbreviatore URL globale."
|
625 |
|
626 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
627 |
msgid "Disable global Twitter API error messages."
|
628 |
msgstr "Disattiva i messaggi di errore globali API Twitter."
|
629 |
|
630 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
631 |
msgid "Disable notification to implement OAuth"
|
632 |
msgstr "Disattiva la notifica per implementare OAuth"
|
633 |
|
634 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
635 |
msgid "Get Debugging Data for OAuth Connection"
|
636 |
msgstr "Ottieni i dati di Debugging per la connessione OAuth"
|
637 |
|
638 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
|
|
|
|
|
|
|
|
639 |
msgid "Save Advanced WP->Twitter Options"
|
640 |
msgstr "Salva avanzate WP->Opzioni Twitter"
|
641 |
|
642 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
643 |
msgid "Limit Updating Categories"
|
644 |
msgstr "Limite aggiornamento categorie"
|
645 |
|
646 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
647 |
msgid "Select which blog categories will be Tweeted. Uncheck all categories to disable category limits."
|
648 |
msgstr "Seleziona quali categorie del blog saranno oggetto dei messaggi su Twitter. Seleziona tutte le categorie per disattivare i limiti categoria. "
|
649 |
|
650 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
651 |
msgid "<em>Category limits are disabled.</em>"
|
652 |
msgstr "<em>Le limitazioni alle categorie non sono attive.</em>"
|
653 |
|
654 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
655 |
msgid "Check Support"
|
656 |
msgstr "Supporto"
|
657 |
|
658 |
-
#: wp-to-twitter/wp-to-twitter-manager.php:
|
659 |
msgid "Check whether your server supports <a href=\"http://www.joedolson.com/articles/wp-to-twitter/\">WP to Twitter's</a> queries to the Twitter and URL shortening APIs. This test will send a status update to Twitter and shorten a URL using your selected methods."
|
660 |
msgstr "Metti il segno di spunta nel caso in cui il tuo server supportasse le query di <a href=\"http://www.joedolson.com/articles/wp-to-twitter/\">WP to Twitter</a> per Twitter e per le API per l'abbreviazione degli URL. Questo test invierà a Twitter un aggiornamento dello stato e renderà breve l'URL utilizzando il metodo da te selezionato."
|
661 |
|
@@ -664,6 +638,14 @@ msgstr "Metti il segno di spunta nel caso in cui il tuo server supportasse le qu
|
|
664 |
msgid "Connect to Twitter"
|
665 |
msgstr "Collegati a Twitter"
|
666 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
667 |
#: wp-to-twitter/wp-to-twitter-oauth.php:109
|
668 |
msgid "The process to set up OAuth authentication for your web site is needlessly laborious. It is also confusing. However, this is the only method available from Twitter. Note that you will not add your Twitter username or password to WP to Twitter; they are not used in OAuth authentication."
|
669 |
msgstr "La procedura di impostazione della autentificazione OAuth per il tuo sito é piuttosto laboriosa nonché confusa. Comunque, questa é l'unica soluzione disponibile offertaci da Twitter. Ti ricordo che non potrai, mai ed in nessun caso, inserire il tuo nome utente oppure la password di Twitter in WP to Twitter poiché essi non verranno utilizzati per l'autentificazione OAuth."
|
@@ -772,103 +754,137 @@ msgstr "Token d'accesso - Secret"
|
|
772 |
msgid "Disconnect Your WordPress and Twitter Account"
|
773 |
msgstr "Scollega il tuo account WordPress e Twitter"
|
774 |
|
775 |
-
#: wp-to-twitter/wp-to-twitter.php:
|
776 |
msgid "WP to Twitter requires PHP version 5 or above with cURL support. Please upgrade PHP or install cURL to run WP to Twitter."
|
777 |
msgstr "WP to Twitter richiede una versione PHP 5 o superiore con il supporto cURL. Aggiorna il PHP o installa cURL per usare WP to Twitter."
|
778 |
|
779 |
-
#: wp-to-twitter/wp-to-twitter.php:
|
780 |
msgid "WP to Twitter requires WordPress 2.9.2 or a more recent version. <a href=\"http://codex.wordpress.org/Upgrading_WordPress\">Please update your WordPress version!</a>"
|
781 |
msgstr "WP to Twitter richiede WordPress 2.9.2 o superiore. <a href=\"http://codex.wordpress.org/Upgrading_WordPress\">Aggiorna la tua versione di WordPress!</a>"
|
782 |
|
783 |
-
#: wp-to-twitter/wp-to-twitter.php:
|
784 |
#, php-format
|
785 |
-
msgid "Twitter
|
786 |
-
msgstr "Twitter necessita una autentificazione via OAuth. Aggiorna le tue <a href=\"%s\">impostazioni</a> per
|
787 |
|
788 |
-
#: wp-to-twitter/wp-to-twitter.php:
|
789 |
msgid "200 OK: Success!"
|
790 |
msgstr "200 OK: Successo!"
|
791 |
|
792 |
-
#: wp-to-twitter/wp-to-twitter.php:
|
793 |
msgid "400 Bad Request: The request was invalid. This is the status code returned during rate limiting."
|
794 |
msgstr "400 Bad Request: La richiesta non é valida. L'utilizzo di questo codice é relativo al limite delle chiamate."
|
795 |
|
796 |
-
#: wp-to-twitter/wp-to-twitter.php:
|
797 |
msgid "401 Unauthorized: Authentication credentials were missing or incorrect."
|
798 |
msgstr "401 Unauthorized: quando mancano oppure sono inesatte le credenziali per l'autentificazione."
|
799 |
|
800 |
-
#: wp-to-twitter/wp-to-twitter.php:
|
801 |
msgid "403 Forbidden: The request is understood, but it has been refused. This code is used when requests are understood, but are denied by Twitter. Reasons include exceeding the 140 character limit or the API update limit."
|
802 |
msgstr "403 Forbidden: La richiesta é stata compresa, ma viene rifiutata. Questo codice viene utilizzato per indicare che, sebbene le richieste siano state comprese, vengono rifiutate da Twitter (superamento limite dei 140 caratteri o limite di aggiornamento API)."
|
803 |
|
804 |
-
#: wp-to-twitter/wp-to-twitter.php:
|
805 |
msgid "500 Internal Server Error: Something is broken at Twitter."
|
806 |
msgstr "500 Internal Server Error: problemi interni a Twitter."
|
807 |
|
808 |
-
#: wp-to-twitter/wp-to-twitter.php:
|
809 |
msgid "503 Service Unavailable: The Twitter servers are up, but overloaded with requests Please try again later."
|
810 |
msgstr "503 Service Unavailable: The Twitter servers are up, but overloaded with requests Please try again later."
|
811 |
|
812 |
-
#: wp-to-twitter/wp-to-twitter.php:
|
813 |
msgid "502 Bad Gateway: Twitter is down or being upgraded."
|
814 |
msgstr "502 Bad Gateway: Twitter é down oppure sotto aggiornamento."
|
815 |
|
816 |
-
#: wp-to-twitter/wp-to-twitter.php:
|
817 |
msgid "WP to Twitter"
|
818 |
msgstr "WP to Twitter"
|
819 |
|
820 |
-
#: wp-to-twitter/wp-to-twitter.php:
|
821 |
msgid "Custom Twitter Post"
|
822 |
msgstr "Messaggio personalizzato Twitter"
|
823 |
|
824 |
-
#: wp-to-twitter/wp-to-twitter.php:
|
825 |
msgid "Don't Tweet this post."
|
826 |
msgstr "Non segnalare a Twitter questo articolo."
|
827 |
|
828 |
-
#: wp-to-twitter/wp-to-twitter.php:
|
829 |
msgid "This URL is direct and has not been shortened: "
|
830 |
msgstr "Questo URL é diretto e non può essere abbreviato: "
|
831 |
|
832 |
-
#: wp-to-twitter/wp-to-twitter.php:
|
833 |
msgid "WP to Twitter User Settings"
|
834 |
msgstr "Impostazioni WP to Twitter User"
|
835 |
|
836 |
-
#: wp-to-twitter/wp-to-twitter.php:
|
837 |
msgid "Use My Twitter Username"
|
838 |
msgstr "Utilizza il mio nome utente Twitter"
|
839 |
|
840 |
-
#: wp-to-twitter/wp-to-twitter.php:
|
841 |
msgid "Tweet my posts with an @ reference to my username."
|
842 |
msgstr "Segnala i miei articoli con un riferimento @ correlato al mio nome utente."
|
843 |
|
844 |
-
#: wp-to-twitter/wp-to-twitter.php:
|
845 |
msgid "Tweet my posts with an @ reference to both my username and to the main site username."
|
846 |
msgstr "Segnala i miei articoli con un riferimento @ correlato tanto al mio nome utente per il sito principale quanto al mio nome utente."
|
847 |
|
848 |
-
#: wp-to-twitter/wp-to-twitter.php:
|
849 |
msgid "Your Twitter Username"
|
850 |
msgstr "Nome utente Twitter"
|
851 |
|
852 |
-
#: wp-to-twitter/wp-to-twitter.php:
|
853 |
msgid "Enter your own Twitter username."
|
854 |
msgstr "Inserisci il tuo nome utente Twitter"
|
855 |
|
856 |
-
#: wp-to-twitter/wp-to-twitter.php:
|
857 |
msgid "Check the categories you want to tweet:"
|
858 |
msgstr "Seleziona le gategorie per i messaggi:"
|
859 |
|
860 |
-
#: wp-to-twitter/wp-to-twitter.php:
|
861 |
msgid "Set Categories"
|
862 |
msgstr "Imposta le categorie"
|
863 |
|
864 |
-
#: wp-to-twitter/wp-to-twitter.php:
|
865 |
msgid "<p>Couldn't locate the settings page.</p>"
|
866 |
msgstr "<p>Non é possibile localizzare la pagina delle impostazioni.</p>"
|
867 |
|
868 |
-
#: wp-to-twitter/wp-to-twitter.php:
|
869 |
msgid "Settings"
|
870 |
msgstr "Impostazioni"
|
871 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
872 |
#~ msgid "http://www.joedolson.com/articles/wp-to-twitter/"
|
873 |
#~ msgstr "http://www.joedolson.com/articles/wp-to-twitter/"
|
874 |
|
@@ -987,9 +1003,6 @@ msgstr "Impostazioni"
|
|
987 |
#~ msgid "Post status updates to both Twitter and this service."
|
988 |
#~ msgstr "Aggiornamenti stato del post per Twitter e per questo servizio."
|
989 |
|
990 |
-
#~ msgid "Your service username:"
|
991 |
-
#~ msgstr "Nome utente servizio:"
|
992 |
-
|
993 |
#~ msgid "Your service password:"
|
994 |
#~ msgstr "Password servizio:"
|
995 |
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: WP to Twitter in italiano\n"
|
9 |
"Report-Msgid-Bugs-To: \n"
|
10 |
+
"POT-Creation-Date: 2011-06-26 21:27+0100\n"
|
11 |
+
"PO-Revision-Date: 2011-06-26 21:34+0100\n"
|
12 |
"Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
|
13 |
"Language-Team: Gianni Diurno | gidibao.net\n"
|
14 |
"MIME-Version: 1.0\n"
|
21 |
"X-Poedit-SourceCharset: utf-8\n"
|
22 |
"X-Poedit-SearchPath-0: .\n"
|
23 |
|
24 |
+
#: wp-to-twitter/functions.php:194
|
25 |
msgid "[<a href='options-general.php?page=wp-to-twitter/wp-to-twitter.php'>Hide</a>] If you're experiencing trouble, please copy these settings into any request for support."
|
26 |
msgstr "[<a href='options-general.php?page=wp-to-twitter/wp-to-twitter.php'>Nascondi</a>] Qualora avessi riscontrato dei problemi, allega queste impostazioni alle richieste di supporto."
|
27 |
|
28 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:96
|
29 |
msgid "WP to Twitter is now connected with Twitter."
|
30 |
msgstr "WP to Twitter é ora connesso a Twitter."
|
31 |
|
32 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:106
|
33 |
msgid "OAuth Authentication Data Cleared."
|
34 |
msgstr "I dati della autentificazione OAuth sono stati svuotati."
|
35 |
|
36 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:113
|
37 |
msgid "OAuth Authentication Failed. Your server time is not in sync with the Twitter servers. Talk to your hosting service to see what can be done."
|
38 |
msgstr "Autentificazione OAuth fallita. L'ora del tuo sever non é sicronizzata con i server di Twitter. Comunica il problema al tuo fornitore di hosting."
|
39 |
|
40 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:120
|
41 |
msgid "OAuth Authentication response not understood."
|
42 |
msgstr "Risposta Autentificazione OAuth non valida."
|
43 |
|
44 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:129
|
45 |
msgid "WP to Twitter Errors Cleared"
|
46 |
msgstr "Gli errori WP to Twitter sono stati azzerati"
|
47 |
|
48 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:136
|
49 |
msgid "Sorry! I couldn't get in touch with the Twitter servers to post your new blog post. Your tweet has been stored in a custom field attached to the post, so you can Tweet it manually if you wish! "
|
50 |
msgstr "Non é stato possibile contattare i server di Twitter per comunicare l'aggiornamento avvenuto. Il tuo messaggio é stato inserito in un campo personalizzato in allegato all'articolo in modo tale che tu possa compiere manualmente l'operazione!"
|
51 |
|
52 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:138
|
53 |
msgid "Sorry! I couldn't get in touch with the Twitter servers to post your <strong>new link</strong>! You'll have to post it manually, I'm afraid. "
|
54 |
msgstr "Non é stato possibile contattare i server di Twitter per comunicare il tuo <strong>nuovo link</strong>. Prova a compiere manualmente l'operazione."
|
55 |
|
56 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:174
|
57 |
msgid "WP to Twitter Advanced Options Updated"
|
58 |
msgstr "Le opzioni avanzate di WP to Twitter sono state aggiornate"
|
59 |
|
60 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:197
|
61 |
msgid "You must add your Bit.ly login and API key in order to shorten URLs with Bit.ly."
|
62 |
msgstr "E' necessario che tu inserisca i dati per il login e la chiave API di Bit.ly in modo da potere abbreviare gli URL con Bit.ly."
|
63 |
|
64 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:201
|
65 |
msgid "You must add your YOURLS remote URL, login, and password in order to shorten URLs with a remote installation of YOURLS."
|
66 |
msgstr "E' necessario che tu inserisca il tuo URL remoto a YOURLS, il login e la password in modo da potere abbreviare gli URL attraverso la tua installazione remota di YOURLS."
|
67 |
|
68 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:205
|
69 |
msgid "You must add your YOURLS server path in order to shorten URLs with a remote installation of YOURLS."
|
70 |
msgstr "E' necessario che tu inserisca il percorso al server del tuo YOURLS in modo da potere abbreviare gli URL attraverso la tua installazione remota di YOURLS."
|
71 |
|
72 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:209
|
73 |
msgid "WP to Twitter Options Updated"
|
74 |
msgstr "Le opzioni di WP to Twitter sono state aggiornate"
|
75 |
|
76 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:219
|
77 |
msgid "Category limits updated."
|
78 |
msgstr "I limiti per la categoria sono stati aggiornati."
|
79 |
|
80 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:223
|
81 |
msgid "Category limits unset."
|
82 |
msgstr "Le limitazioni alle categorie non sono state impostate."
|
83 |
|
84 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:231
|
85 |
msgid "YOURLS password updated. "
|
86 |
msgstr "La password di YOURLS é stata aggiornata."
|
87 |
|
88 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:234
|
89 |
msgid "YOURLS password deleted. You will be unable to use your remote YOURLS account to create short URLS."
|
90 |
msgstr "La tua password di YOURLS é stata cancellata. Non potrai utilizzare il tuo account remoto YOURLS per la creazione di URL brevi."
|
91 |
|
92 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:236
|
93 |
msgid "Failed to save your YOURLS password! "
|
94 |
msgstr "Non é stato possibile salvare la tua password di YOURLS!"
|
95 |
|
96 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:240
|
97 |
msgid "YOURLS username added. "
|
98 |
msgstr "Il nome utente YOURLS é stato aggiunto."
|
99 |
|
100 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:244
|
101 |
msgid "YOURLS API url added. "
|
102 |
msgstr "L'url alla API YOURLS é stato aggiunto. "
|
103 |
|
104 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:247
|
105 |
msgid "YOURLS API url removed. "
|
106 |
msgstr "L'url alla API YOURLS é stato rimosso. "
|
107 |
|
108 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:252
|
109 |
msgid "YOURLS local server path added. "
|
110 |
msgstr "Il percorso al server locale di YOURLS é stato aggiunto. "
|
111 |
|
112 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:254
|
113 |
msgid "The path to your YOURLS installation is not correct. "
|
114 |
msgstr "Il percorso alla tua installazione di YOURLS non é corretto. "
|
115 |
|
116 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:258
|
117 |
msgid "YOURLS local server path removed. "
|
118 |
msgstr "Il percorso al server locale di YOURLS é stato rimosso. "
|
119 |
|
120 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:262
|
121 |
msgid "YOURLS will use Post ID for short URL slug."
|
122 |
msgstr "YOURLS utilizzerà Post ID per lo slug degli URL brevi."
|
123 |
|
124 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:265
|
125 |
msgid "YOURLS will not use Post ID for the short URL slug."
|
126 |
msgstr "YOURLS non utilizzerà Post ID per lo slug degli URL brevi."
|
127 |
|
128 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:273
|
129 |
msgid "Su.pr API Key and Username Updated"
|
130 |
msgstr "La chiave API ed il nome utente di Su.pr sono stati aggiornati"
|
131 |
|
132 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:277
|
133 |
msgid "Su.pr API Key and username deleted. Su.pr URLs created by WP to Twitter will no longer be associated with your account. "
|
134 |
msgstr "La chiave API ed il nome utente di Su.pr sono stati cancellati. Gli URL di Su.pr creati da WP to Twitter non saranno più associati al tuo account. "
|
135 |
|
136 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:279
|
137 |
msgid "Su.pr API Key not added - <a href='http://su.pr/'>get one here</a>! "
|
138 |
msgstr "Non é stata inserita la chiave API di Su.pr - <a href='http://su.pr/'>vai qui</a>! "
|
139 |
|
140 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:285
|
141 |
msgid "Bit.ly API Key Updated."
|
142 |
msgstr "La chiave API di Bit.ly é stata aggiornata."
|
143 |
|
144 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:288
|
145 |
msgid "Bit.ly API Key deleted. You cannot use the Bit.ly API without an API key. "
|
146 |
msgstr "La chiave API di Bit.ly é stata cancellata. Non puoi utilizzare la API di Bit.ly senza la chiave API. "
|
147 |
|
148 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:290
|
149 |
msgid "Bit.ly API Key not added - <a href='http://bit.ly/account/'>get one here</a>! An API key is required to use the Bit.ly URL shortening service."
|
150 |
msgstr "La chiave API di Bit.ly non é stata aggiunta - <a href='http://bit.ly/account/'>vai qui</a>! E' necessaria una chiave API affinché il servizio di URL brevi Bit.ly di possa funzionare."
|
151 |
|
152 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:294
|
153 |
msgid " Bit.ly User Login Updated."
|
154 |
msgstr " Il login utente per Bit.ly é stato aggiornato."
|
155 |
|
156 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:297
|
157 |
msgid "Bit.ly User Login deleted. You cannot use the Bit.ly API without providing your username. "
|
158 |
msgstr "Sono stati cancellati i dati per il login utente Bit.ly. Non puoi utilizzare la API di Bit.ly senza fornire il tuo nome utente. "
|
159 |
|
160 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:299
|
161 |
msgid "Bit.ly Login not added - <a href='http://bit.ly/account/'>get one here</a>! "
|
162 |
msgstr "Non sono stati inseriti i dati per il login a Bit.ly - <a href='http://bit.ly/account/'>vai qui</a>! "
|
163 |
|
164 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:328
|
165 |
msgid "No error information is available for your shortener."
|
166 |
msgstr "Nessuna informazione di errore disponibile per il tuo abbreviatore."
|
167 |
|
168 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:330
|
169 |
msgid "<li class=\"error\"><strong>WP to Twitter was unable to contact your selected URL shortening service.</strong></li>"
|
170 |
msgstr "<li class=\"error\"><strong>WP to Twitter non é stato in grado di contattare il servizio per gli URL brevi da te selezionato.</strong></li>"
|
171 |
|
172 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:333
|
173 |
msgid "<li><strong>WP to Twitter successfully contacted your selected URL shortening service.</strong> The following link should point to your blog homepage:"
|
174 |
msgstr "<li><strong>WP to Twitter ha contattato con successo il servizio per gli URL brevi da te selezionato.</strong> Il seguente link dovrebbe puntare alla homepage del tuo blog:"
|
175 |
|
176 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:342
|
177 |
msgid "<li><strong>WP to Twitter successfully submitted a status update to Twitter.</strong></li>"
|
178 |
msgstr "<li><strong>WP to Twitter ha inviato con successo l'aggiornamento dello stato a Twitter.</strong></li>"
|
179 |
|
180 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:345
|
181 |
msgid "<li class=\"error\"><strong>WP to Twitter failed to submit an update to Twitter.</strong></li>"
|
182 |
msgstr "<li class=\"error\"><strong>WP to Twitter non é stato in grado di inviare l'aggiornamento a Twitter.</strong></li>"
|
183 |
|
184 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:349
|
185 |
msgid "You have not connected WordPress to Twitter."
|
186 |
msgstr "Non hai connesso WordPress a Twitter."
|
187 |
|
188 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:353
|
189 |
msgid "<li class=\"error\"><strong>Your server does not appear to support the required methods for WP to Twitter to function.</strong> You can try it anyway - these tests aren't perfect.</li>"
|
190 |
msgstr "<li class=\"error\"><strong>Pare che il tuo server non supporti le funzioni richieste affinché WP to Twitter possa funzionare correttamente.</strong> Puoi comunque provare ugualmente - queste verifiche non sono perfette - garantisco i risultati.</li>"
|
191 |
|
192 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:357
|
193 |
msgid "<li><strong>Your server should run WP to Twitter successfully.</strong></li>"
|
194 |
msgstr "<li><strong>WP to Twitter funziona correttamente per il tuo server.</strong></li>"
|
195 |
|
196 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:374
|
197 |
msgid "WP to Twitter Options"
|
198 |
msgstr "Opzioni WP to Twitter"
|
199 |
|
200 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:384
|
201 |
msgid "Pledge to new features"
|
202 |
msgstr "Nuove funzioni in arrivo"
|
203 |
|
204 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:385
|
205 |
+
#: wp-to-twitter/wp-to-twitter.php:926
|
206 |
msgid "Make a Donation"
|
207 |
msgstr "Effettua una donazione"
|
208 |
|
209 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:385
|
210 |
msgid "View Settings"
|
211 |
msgstr "Visualizza impostazioni"
|
212 |
|
213 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:385
|
214 |
+
#: wp-to-twitter/wp-to-twitter.php:926
|
215 |
msgid "Get Support"
|
216 |
msgstr "Supporto"
|
217 |
|
218 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:412
|
219 |
msgid "Shortcodes available in post update templates:"
|
220 |
msgstr "Shortcode disponibili nei template aggiornamento post:"
|
221 |
|
222 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:414
|
223 |
msgid "<code>#title#</code>: the title of your blog post"
|
224 |
msgstr "<code>#title#</code>: il titolo del tuo post"
|
225 |
|
226 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:415
|
227 |
msgid "<code>#blog#</code>: the title of your blog"
|
228 |
msgstr "<code>#blog#</code>: il titolo del tuo blog"
|
229 |
|
230 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:416
|
231 |
msgid "<code>#post#</code>: a short excerpt of the post content"
|
232 |
msgstr "<code>#post#</code>: un breve riassunto dei contenuti del post"
|
233 |
|
234 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:417
|
235 |
msgid "<code>#category#</code>: the first selected category for the post"
|
236 |
msgstr "<code>#category#</code>: la prima categoria selezionata per il post"
|
237 |
|
238 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:418
|
239 |
msgid "<code>#date#</code>: the post date"
|
240 |
msgstr "<code>#date#</code>: la data del post"
|
241 |
|
242 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:419
|
243 |
msgid "<code>#url#</code>: the post URL"
|
244 |
msgstr "<code>#url#</code>: l'URL del post"
|
245 |
|
246 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:420
|
247 |
msgid "<code>#author#</code>: the post author"
|
248 |
msgstr "<code>#author#</code>: l'autore del post"
|
249 |
|
250 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:421
|
251 |
msgid "<code>#account#</code>: the twitter @reference for the account (or the author, if author settings are enabled and set.)"
|
252 |
msgstr "<code>#account#</code>: il riferimento Twitter @ per l'account (o per l'autore, previa attivazione ed impostazione.)"
|
253 |
|
254 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:423
|
255 |
msgid "You can also create custom shortcodes to access WordPress custom fields. Use doubled square brackets surrounding the name of your custom field to add the value of that custom field to your status update. Example: <code>[[custom_field]]</code></p>"
|
256 |
msgstr "Hai la possibilità di potere creare degli shortcode personalizzati grazie ai campi personalizzati di WordPress. Utilizza le doppie parentesi quadre per avvolgere il nome del tuo campo personalizzato per aggiungere il valore di quel dato campo al tuo stato di aggiornamento. Esempio: <code>[[custom_field]]</code></p>"
|
257 |
|
258 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:428
|
259 |
msgid "<p>One or more of your last posts has failed to send it's status update to Twitter. Your Tweet has been saved in your post custom fields, and you can re-Tweet it at your leisure.</p>"
|
260 |
msgstr "<p>Uno o più dei tuoi articoli recenti non é stato in grado di comunicare l'aggiornamento a Twitter. Il tuo messaggio é stato inserito nei dati meta del campo personalizzato del tuo articolo in modo tale che tu possa ripetere l'operazione a tuo piacere.</p>"
|
261 |
|
262 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:432
|
263 |
msgid "<p>The query to the URL shortener API failed, and your URL was not shrunk. The full post URL was attached to your Tweet. Check with your URL shortening provider to see if there are any known issues. [<a href=\"http://www.stumbleupon.com/help/how-to-use-supr/\">Su.pr Help</a>] [<a href=\"http://blog.bit.ly\">Bit.ly Blog</a>]</p>"
|
264 |
msgstr "<p>La richiesta alla API é fallita! Non essendo stato possibile abbreviare l'URL abbiamo utilizzato per il messaggio l'URL completo. Verifica la documentazione in merito presso il tuo provider di URL brevi. [<a href=\"http://www.stumbleupon.com/help/how-to-use-supr/\">Su.pr Help</a>] [<a href=\"http://blog.bit.ly\">Bit.ly Blog</a>]</p>"
|
265 |
|
266 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:439
|
267 |
msgid "Clear 'WP to Twitter' Error Messages"
|
268 |
msgstr "Svuota i messaggiodi errore 'WP to Twitter'"
|
269 |
|
270 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:452
|
271 |
msgid "Basic Settings"
|
272 |
msgstr "Impostazioni di base"
|
273 |
|
274 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:486
|
275 |
+
msgid "Settings for Comments"
|
276 |
+
msgstr "Impostazioni commenti"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
277 |
|
278 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:489
|
279 |
+
msgid "Update Twitter when new comments are posted"
|
280 |
+
msgstr "Aggiorna Twitter quando vengono inviati nuovi commenti"
|
|
|
281 |
|
282 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:490
|
283 |
+
msgid "Text for new comments:"
|
284 |
+
msgstr "Testo per nuovi commenti:"
|
285 |
|
286 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:494
|
287 |
+
msgid "Settings for Links"
|
288 |
+
msgstr "Impostazioni link"
|
289 |
|
290 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:497
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
291 |
msgid "Update Twitter when you post a Blogroll link"
|
292 |
msgstr "Aggiorna Twitter quando viene aggiunto un nuovo link al blogroll"
|
293 |
|
294 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:498
|
295 |
msgid "Text for new link updates:"
|
296 |
msgstr "Testo per gli aggiornamenti di un nuovo link:"
|
297 |
|
298 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:498
|
299 |
msgid "Available shortcodes: <code>#url#</code>, <code>#title#</code>, and <code>#description#</code>."
|
300 |
msgstr "Shortcode disponibili: <code>#url#</code>, <code>#title#</code> e <code>#description#</code>."
|
301 |
|
302 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:502
|
303 |
msgid "Choose your short URL service (account settings below)"
|
304 |
msgstr "Scegli il tuo servizio per gli URL brevi (impostazioni account qui sotto)"
|
305 |
|
306 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:505
|
307 |
msgid "Don't shorten URLs."
|
308 |
msgstr "Non usare gli URL brevi"
|
309 |
|
310 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:506
|
311 |
msgid "Use Su.pr for my URL shortener."
|
312 |
msgstr "Usa Su.pr per creare gli URL brevi."
|
313 |
|
314 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:507
|
315 |
msgid "Use Bit.ly for my URL shortener."
|
316 |
msgstr "Usa Bit.ly per gli URL brevi"
|
317 |
|
318 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:508
|
319 |
msgid "YOURLS (installed on this server)"
|
320 |
msgstr "YOURLS (intallato in questo server)"
|
321 |
|
322 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:509
|
323 |
msgid "YOURLS (installed on a remote server)"
|
324 |
msgstr "YOURLS (intallato in un server remoto)"
|
325 |
|
326 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:510
|
327 |
msgid "Use WordPress as a URL shortener."
|
328 |
msgstr "Usa WordPress per gli URL brevi."
|
329 |
|
330 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:512
|
331 |
msgid "Using WordPress as a URL shortener will send URLs to Twitter in the default URL format for WordPress: <code>http://domain.com/wpdir/?p=123</code>. Google Analytics is not available when using WordPress shortened URLs."
|
332 |
msgstr "L'utilizzo di WordPress per la creazione di URL brevi farà sì che verranno inviati a Twitter gli URL nel formato predefinito di WordPress: <code>http://domain.com/wpdir/?p=123</code> . Google Analytics non sarà disponibile durante l'utilizzo di WordPress per la creazione di URL brevi."
|
333 |
|
334 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:518
|
335 |
msgid "Save WP->Twitter Options"
|
336 |
msgstr "Salva le opzioni WP->Twitter"
|
337 |
|
338 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:527
|
339 |
msgid "<abbr title=\"Uniform Resource Locator\">URL</abbr> Shortener Account Settings"
|
340 |
msgstr "Impostazione account abbreviatore <abbr title=\"Uniform Resource Locator\">URL</abbr>"
|
341 |
|
342 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:531
|
343 |
msgid "Your Su.pr account details"
|
344 |
msgstr "Dati account Su.pr"
|
345 |
|
346 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:536
|
347 |
msgid "Your Su.pr Username:"
|
348 |
msgstr "Nome utente Su.pr:"
|
349 |
|
350 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:540
|
351 |
msgid "Your Su.pr <abbr title='application programming interface'>API</abbr> Key:"
|
352 |
msgstr "La tua chiave <abbr title='application programming interface'>API</abbr> di Su.pr:"
|
353 |
|
354 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:546
|
355 |
msgid "Don't have a Su.pr account or API key? <a href='http://su.pr/'>Get one here</a>!<br />You'll need an API key in order to associate the URLs you create with your Su.pr account."
|
356 |
msgstr "Non hai ancora un account oppure una chiave API Su.pr? <a href='http://su.pr/'>Vai qui</a>!<br />E' necessaria una chiave API in modo tale da potere associare gli URL da te creati con il tuo account di Su.pr."
|
357 |
|
358 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:552
|
359 |
msgid "Your Bit.ly account details"
|
360 |
msgstr "Dati account Bit.ly"
|
361 |
|
362 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:557
|
363 |
msgid "Your Bit.ly username:"
|
364 |
msgstr "Nome utente Bit.ly:"
|
365 |
|
366 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:561
|
367 |
msgid "Your Bit.ly <abbr title='application programming interface'>API</abbr> Key:"
|
368 |
msgstr "La tua chiave <abbr title='application programming interface'>API</abbr> di Bit.ly:"
|
369 |
|
370 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:568
|
371 |
msgid "Save Bit.ly API Key"
|
372 |
msgstr "Salva la chiave API di Bit.ly"
|
373 |
|
374 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:568
|
375 |
msgid "Clear Bit.ly API Key"
|
376 |
msgstr "Svuota la chiave API di Bit.ly"
|
377 |
|
378 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:568
|
379 |
msgid "A Bit.ly API key and username is required to shorten URLs via the Bit.ly API and WP to Twitter."
|
380 |
msgstr "E' necessario il nome utente e la chiave API di Bit.ly per potere rendere brevi gli URL via la API di Bit.ly e WP to Twitter."
|
381 |
|
382 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:573
|
383 |
msgid "Your YOURLS account details"
|
384 |
msgstr "I dettagli del tuo account YOURLS"
|
385 |
|
386 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:577
|
387 |
msgid "Path to your YOURLS config file (Local installations)"
|
388 |
msgstr "Percorso al file di configurazione YOURLS (installazioni locali)"
|
389 |
|
390 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:578
|
391 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:582
|
392 |
msgid "Example:"
|
393 |
msgstr "Esempio:"
|
394 |
|
395 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:581
|
396 |
msgid "URI to the YOURLS API (Remote installations)"
|
397 |
msgstr "URI alla API di YOURLS (installazioni remote)"
|
398 |
|
399 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:585
|
400 |
msgid "Your YOURLS username:"
|
401 |
msgstr "Nome utente YOURLS:"
|
402 |
|
403 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:589
|
404 |
msgid "Your YOURLS password:"
|
405 |
msgstr "Password YOURLS:"
|
406 |
|
407 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:589
|
408 |
msgid "<em>Saved</em>"
|
409 |
msgstr "<em>Salvato</em>"
|
410 |
|
411 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:593
|
412 |
msgid "Use Post ID for YOURLS url slug."
|
413 |
msgstr "Utilizza Post ID per lo slug degli url di YOURLS."
|
414 |
|
415 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:598
|
416 |
msgid "Save YOURLS Account Info"
|
417 |
msgstr "Salva le info account di YOURLS"
|
418 |
|
419 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:598
|
420 |
msgid "Clear YOURLS password"
|
421 |
msgstr "Svuota la password di YOURLS"
|
422 |
|
423 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:598
|
424 |
msgid "A YOURLS password and username is required to shorten URLs via the remote YOURLS API and WP to Twitter."
|
425 |
msgstr "E' necessario il nome utente e la password di affinché possano essere abbreviati gli URL via l'API remoto di YOURLS e di WP to Twitter."
|
426 |
|
427 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:610
|
428 |
msgid "Advanced Settings"
|
429 |
msgstr "Impostazioni avanzate"
|
430 |
|
431 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:617
|
432 |
msgid "Advanced Tweet settings"
|
433 |
msgstr "Opzioni messaggio avanzate"
|
434 |
|
435 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:619
|
436 |
msgid "Add tags as hashtags on Tweets"
|
437 |
msgstr "Aggiungi ai messaggi i tag come fossero degli hashtag "
|
438 |
|
439 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:619
|
440 |
msgid "Strip nonalphanumeric characters"
|
441 |
msgstr "Rimuovi caratteri non alfanumerici"
|
442 |
|
443 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:620
|
444 |
msgid "Spaces replaced with:"
|
445 |
msgstr "Sostituisci gli spazi con:"
|
446 |
|
447 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:622
|
448 |
msgid "Default replacement is an underscore (<code>_</code>). Use <code>[ ]</code> to remove spaces entirely."
|
449 |
msgstr "Il sostituto predefinito é un trattino breve (<code>_</code>). Usa <code>[ ]</code> per rimuovere gli spazi completamente."
|
450 |
|
451 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:625
|
452 |
msgid "Maximum number of tags to include:"
|
453 |
msgstr "Numero massimo di tag da includere:"
|
454 |
|
455 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:626
|
456 |
msgid "Maximum length in characters for included tags:"
|
457 |
msgstr "Lunghezza massima in caratteri per i tag inclusi:"
|
458 |
|
459 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:627
|
460 |
msgid "These options allow you to restrict the length and number of WordPress tags sent to Twitter as hashtags. Set to <code>0</code> or leave blank to allow any and all tags."
|
461 |
msgstr "Queste opzioni ti permetteranno di limitare la lunghezza ed il numero dei tag WordPress inviati a Twitter come hashtags. Imposta a <code>0</code> oppure lascia in bianco per permettere ogni tag."
|
462 |
|
463 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:630
|
464 |
msgid "Length of post excerpt (in characters):"
|
465 |
msgstr "Lunghezza riassunto messaggi (in caratteri)"
|
466 |
|
467 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:630
|
468 |
msgid "By default, extracted from the post itself. If you use the 'Excerpt' field, that will be used instead."
|
469 |
msgstr "Come funzione predefinita, gli estratti verranno generati in automatico. Utilizzassi il campo 'Excerpt', questi avrà la priorità."
|
470 |
|
471 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:633
|
472 |
msgid "WP to Twitter Date Formatting:"
|
473 |
msgstr "Formattazione data WP to Twitter:"
|
474 |
|
475 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:634
|
476 |
msgid "Default is from your general settings. <a href='http://codex.wordpress.org/Formatting_Date_and_Time'>Date Formatting Documentation</a>."
|
477 |
msgstr "Predefinito dalle impostazioni generali. <a href='http://codex.wordpress.org/Formatting_Date_and_Time'>Info formattazione data</a>."
|
478 |
|
479 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:638
|
480 |
msgid "Custom text before all Tweets:"
|
481 |
msgstr "Testo personalizzato prima di tutti i messaggi:"
|
482 |
|
483 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:639
|
484 |
msgid "Custom text after all Tweets:"
|
485 |
msgstr "Testo personalizzato dopo tutti i messaggi:"
|
486 |
|
487 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:642
|
488 |
msgid "Custom field for an alternate URL to be shortened and Tweeted:"
|
489 |
msgstr "Campo personalizzato riferito ad un URL alternativo da abbreviare ed inviare a Twitter:"
|
490 |
|
491 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:643
|
492 |
msgid "You can use a custom field to send an alternate URL for your post. The value is the name of a custom field containing your external URL."
|
493 |
msgstr "Puoi utilizzare un campo personalizzato per inviare un URL alternativo per il tuo articolo. Questo valore é il nome del campo personalizzato che utilizzerai per aggiungere un URL esterno."
|
494 |
|
495 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:647
|
496 |
msgid "Special Cases when WordPress should send a Tweet"
|
497 |
msgstr "Casi particolari nei quali WordPress dovrebbe inviare un messaggio"
|
498 |
|
499 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:650
|
500 |
msgid "Do not post status updates by default"
|
501 |
msgstr "Non aggiornare lo stato dei post (predefinito)"
|
502 |
|
503 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:651
|
504 |
msgid "By default, all posts meeting other requirements will be posted to Twitter. Check this to change your setting."
|
505 |
msgstr "Come funzione predefinita, tutti i post che soddisfano i requisiti saranno pubblicati su Twitter. Metti il segno di spunta per modificare le impostazioni."
|
506 |
|
507 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:655
|
508 |
msgid "Send Twitter Updates on remote publication (Post by Email or XMLRPC Client)"
|
509 |
msgstr "Invio degli aggiornamenti di Twitter via punti di pubblicazione remoti (Email o client XMLRPC)"
|
510 |
|
511 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:659
|
|
|
|
|
|
|
|
|
512 |
msgid "Update Twitter when a post is published using QuickPress"
|
513 |
msgstr "Aggiorna Twitter quando un articolo é stato pubblicato via QuickPress"
|
514 |
|
515 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:663
|
516 |
msgid "Google Analytics Settings"
|
517 |
msgstr "Impostazioni Google Analytics"
|
518 |
|
519 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:664
|
520 |
msgid "You can track the response from Twitter using Google Analytics by defining a campaign identifier here. You can either define a static identifier or a dynamic identifier. Static identifiers don't change from post to post; dynamic identifiers are derived from information relevant to the specific post. Dynamic identifiers will allow you to break down your statistics by an additional variable."
|
521 |
msgstr "Puoi tracciare la risposta da Twitter utilizzando Google Analytics definendo qui l'identificatore. Puoi definire un identificatore statico oppure uno dinamico. Gli identificatori statici non mutano da post a post mentre quelli dinamici derivano dalle informazioni di maggior rilievo appartenenti a quel post specifico. Gli identificatori dinamici ti permetteranno di analizzare le tue statistiche attraverso una variabile aggiuntiva."
|
522 |
|
523 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:668
|
524 |
msgid "Use a Static Identifier with WP-to-Twitter"
|
525 |
msgstr "Utilizza un identificatore statico per WP-to-Twitter"
|
526 |
|
527 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:669
|
528 |
msgid "Static Campaign identifier for Google Analytics:"
|
529 |
msgstr "Identificatore statico Google Analytics:"
|
530 |
|
531 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:673
|
532 |
msgid "Use a dynamic identifier with Google Analytics and WP-to-Twitter"
|
533 |
msgstr "Utilizza un identificatore dinamico per Google Analytics e WP-to-Twitter"
|
534 |
|
535 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:674
|
536 |
msgid "What dynamic identifier would you like to use?"
|
537 |
msgstr "Quale identificatore dinamico desideri utilizzare?"
|
538 |
|
539 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:676
|
540 |
msgid "Category"
|
541 |
msgstr "Categoria"
|
542 |
|
543 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:677
|
544 |
msgid "Post ID"
|
545 |
msgstr "ID post"
|
546 |
|
547 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:678
|
548 |
msgid "Post Title"
|
549 |
msgstr "Titolo post"
|
550 |
|
551 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:679
|
552 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:693
|
553 |
msgid "Author"
|
554 |
msgstr "Autore"
|
555 |
|
556 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:684
|
557 |
msgid "Individual Authors"
|
558 |
msgstr "Autori singoli"
|
559 |
|
560 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:687
|
561 |
msgid "Authors have individual Twitter accounts"
|
562 |
msgstr "Gli autori hanno degli account personali su Twitter"
|
563 |
|
564 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:687
|
565 |
msgid "Authors can set their username in their user profile. As of version 2.2.0, this feature no longer allows authors to post to their own Twitter accounts. It can only add an @reference to the author. This @reference is placed using the <code>#account#</code> shortcode. (It will pick up the main account if user accounts are not enabled.)"
|
566 |
msgstr "Gli autori possono impostare il proprio nome utente nel loro profilo utente. A partire dalla versione 2.2.0, questa funzione non permetterà più agli autori di inviare i propri messaggi ai loro account di Twitter. Potrà essere aggiunto il solo riferimento @ all'autore. Questo riferimento @ verrà posizionato facendo uso dello shortcode <code>#account#</code>. (Verrà utilizzato l'account principale se gli account utente non saranno attivati.)"
|
567 |
|
568 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:690
|
569 |
msgid "Choose the lowest user group that can add their Twitter information"
|
570 |
msgstr "Scegli il ruolo utente di minima che può aggiungere le proprie info Twitter "
|
571 |
|
572 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:691
|
573 |
msgid "Subscriber"
|
574 |
msgstr "Sottoscrittore"
|
575 |
|
576 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:692
|
577 |
msgid "Contributor"
|
578 |
msgstr "Collaboratore"
|
579 |
|
580 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:694
|
581 |
msgid "Editor"
|
582 |
msgstr "Editore"
|
583 |
|
584 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:695
|
585 |
msgid "Administrator"
|
586 |
msgstr "Amministratore"
|
587 |
|
588 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:700
|
589 |
msgid "Disable Error Messages"
|
590 |
msgstr "Disattiva i messaggi di errore"
|
591 |
|
592 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:703
|
593 |
msgid "Disable global URL shortener error messages."
|
594 |
msgstr "Disattiva i messaggi di errore abbreviatore URL globale."
|
595 |
|
596 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:707
|
597 |
msgid "Disable global Twitter API error messages."
|
598 |
msgstr "Disattiva i messaggi di errore globali API Twitter."
|
599 |
|
600 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:711
|
601 |
msgid "Disable notification to implement OAuth"
|
602 |
msgstr "Disattiva la notifica per implementare OAuth"
|
603 |
|
604 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:715
|
605 |
msgid "Get Debugging Data for OAuth Connection"
|
606 |
msgstr "Ottieni i dati di Debugging per la connessione OAuth"
|
607 |
|
608 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:719
|
609 |
+
msgid "I made a donation, so stop showing me ads, please."
|
610 |
+
msgstr "Ho effettuato una donazione - non mostrare più la pubblicità!"
|
611 |
+
|
612 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:725
|
613 |
msgid "Save Advanced WP->Twitter Options"
|
614 |
msgstr "Salva avanzate WP->Opzioni Twitter"
|
615 |
|
616 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:735
|
617 |
msgid "Limit Updating Categories"
|
618 |
msgstr "Limite aggiornamento categorie"
|
619 |
|
620 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:739
|
621 |
msgid "Select which blog categories will be Tweeted. Uncheck all categories to disable category limits."
|
622 |
msgstr "Seleziona quali categorie del blog saranno oggetto dei messaggi su Twitter. Seleziona tutte le categorie per disattivare i limiti categoria. "
|
623 |
|
624 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:742
|
625 |
msgid "<em>Category limits are disabled.</em>"
|
626 |
msgstr "<em>Le limitazioni alle categorie non sono attive.</em>"
|
627 |
|
628 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:756
|
629 |
msgid "Check Support"
|
630 |
msgstr "Supporto"
|
631 |
|
632 |
+
#: wp-to-twitter/wp-to-twitter-manager.php:756
|
633 |
msgid "Check whether your server supports <a href=\"http://www.joedolson.com/articles/wp-to-twitter/\">WP to Twitter's</a> queries to the Twitter and URL shortening APIs. This test will send a status update to Twitter and shorten a URL using your selected methods."
|
634 |
msgstr "Metti il segno di spunta nel caso in cui il tuo server supportasse le query di <a href=\"http://www.joedolson.com/articles/wp-to-twitter/\">WP to Twitter</a> per Twitter e per le API per l'abbreviazione degli URL. Questo test invierà a Twitter un aggiornamento dello stato e renderà breve l'URL utilizzando il metodo da te selezionato."
|
635 |
|
638 |
msgid "Connect to Twitter"
|
639 |
msgstr "Collegati a Twitter"
|
640 |
|
641 |
+
#: wp-to-twitter/wp-to-twitter-oauth.php:108
|
642 |
+
msgid "Your server time is"
|
643 |
+
msgstr "Ora del tuo server"
|
644 |
+
|
645 |
+
#: wp-to-twitter/wp-to-twitter-oauth.php:108
|
646 |
+
msgid "If this is wrong, your server will not be able to connect with Twitter. (<strong>Note:</strong> your server time may not match your current time, but it should be correct for it's own time zone.)"
|
647 |
+
msgstr "Se errata, il tuo server non sarà in grado di connettersi a Twitter. (<strong>Nota:</strong> l'ora del server potrebbe non coincidere con il tuo fuso orario, ma deve essere esatta in relazione alla proprio.)"
|
648 |
+
|
649 |
#: wp-to-twitter/wp-to-twitter-oauth.php:109
|
650 |
msgid "The process to set up OAuth authentication for your web site is needlessly laborious. It is also confusing. However, this is the only method available from Twitter. Note that you will not add your Twitter username or password to WP to Twitter; they are not used in OAuth authentication."
|
651 |
msgstr "La procedura di impostazione della autentificazione OAuth per il tuo sito é piuttosto laboriosa nonché confusa. Comunque, questa é l'unica soluzione disponibile offertaci da Twitter. Ti ricordo che non potrai, mai ed in nessun caso, inserire il tuo nome utente oppure la password di Twitter in WP to Twitter poiché essi non verranno utilizzati per l'autentificazione OAuth."
|
754 |
msgid "Disconnect Your WordPress and Twitter Account"
|
755 |
msgstr "Scollega il tuo account WordPress e Twitter"
|
756 |
|
757 |
+
#: wp-to-twitter/wp-to-twitter.php:48
|
758 |
msgid "WP to Twitter requires PHP version 5 or above with cURL support. Please upgrade PHP or install cURL to run WP to Twitter."
|
759 |
msgstr "WP to Twitter richiede una versione PHP 5 o superiore con il supporto cURL. Aggiorna il PHP o installa cURL per usare WP to Twitter."
|
760 |
|
761 |
+
#: wp-to-twitter/wp-to-twitter.php:69
|
762 |
msgid "WP to Twitter requires WordPress 2.9.2 or a more recent version. <a href=\"http://codex.wordpress.org/Upgrading_WordPress\">Please update your WordPress version!</a>"
|
763 |
msgstr "WP to Twitter richiede WordPress 2.9.2 o superiore. <a href=\"http://codex.wordpress.org/Upgrading_WordPress\">Aggiorna la tua versione di WordPress!</a>"
|
764 |
|
765 |
+
#: wp-to-twitter/wp-to-twitter.php:83
|
766 |
#, php-format
|
767 |
+
msgid "Twitter requires authentication by OAuth. You will need to <a href=\"%s\">update your settings</a> to complete installation of WP to Twitter."
|
768 |
+
msgstr "Twitter necessita una autentificazione via OAuth. Aggiorna le tue <a href=\"%s\">impostazioni</a> per completare l'installazione di WP to Twitter."
|
769 |
|
770 |
+
#: wp-to-twitter/wp-to-twitter.php:189
|
771 |
msgid "200 OK: Success!"
|
772 |
msgstr "200 OK: Successo!"
|
773 |
|
774 |
+
#: wp-to-twitter/wp-to-twitter.php:193
|
775 |
msgid "400 Bad Request: The request was invalid. This is the status code returned during rate limiting."
|
776 |
msgstr "400 Bad Request: La richiesta non é valida. L'utilizzo di questo codice é relativo al limite delle chiamate."
|
777 |
|
778 |
+
#: wp-to-twitter/wp-to-twitter.php:197
|
779 |
msgid "401 Unauthorized: Authentication credentials were missing or incorrect."
|
780 |
msgstr "401 Unauthorized: quando mancano oppure sono inesatte le credenziali per l'autentificazione."
|
781 |
|
782 |
+
#: wp-to-twitter/wp-to-twitter.php:201
|
783 |
msgid "403 Forbidden: The request is understood, but it has been refused. This code is used when requests are understood, but are denied by Twitter. Reasons include exceeding the 140 character limit or the API update limit."
|
784 |
msgstr "403 Forbidden: La richiesta é stata compresa, ma viene rifiutata. Questo codice viene utilizzato per indicare che, sebbene le richieste siano state comprese, vengono rifiutate da Twitter (superamento limite dei 140 caratteri o limite di aggiornamento API)."
|
785 |
|
786 |
+
#: wp-to-twitter/wp-to-twitter.php:205
|
787 |
msgid "500 Internal Server Error: Something is broken at Twitter."
|
788 |
msgstr "500 Internal Server Error: problemi interni a Twitter."
|
789 |
|
790 |
+
#: wp-to-twitter/wp-to-twitter.php:209
|
791 |
msgid "503 Service Unavailable: The Twitter servers are up, but overloaded with requests Please try again later."
|
792 |
msgstr "503 Service Unavailable: The Twitter servers are up, but overloaded with requests Please try again later."
|
793 |
|
794 |
+
#: wp-to-twitter/wp-to-twitter.php:213
|
795 |
msgid "502 Bad Gateway: Twitter is down or being upgraded."
|
796 |
msgstr "502 Bad Gateway: Twitter é down oppure sotto aggiornamento."
|
797 |
|
798 |
+
#: wp-to-twitter/wp-to-twitter.php:847
|
799 |
msgid "WP to Twitter"
|
800 |
msgstr "WP to Twitter"
|
801 |
|
802 |
+
#: wp-to-twitter/wp-to-twitter.php:917
|
803 |
msgid "Custom Twitter Post"
|
804 |
msgstr "Messaggio personalizzato Twitter"
|
805 |
|
806 |
+
#: wp-to-twitter/wp-to-twitter.php:929
|
807 |
msgid "Don't Tweet this post."
|
808 |
msgstr "Non segnalare a Twitter questo articolo."
|
809 |
|
810 |
+
#: wp-to-twitter/wp-to-twitter.php:939
|
811 |
msgid "This URL is direct and has not been shortened: "
|
812 |
msgstr "Questo URL é diretto e non può essere abbreviato: "
|
813 |
|
814 |
+
#: wp-to-twitter/wp-to-twitter.php:1000
|
815 |
msgid "WP to Twitter User Settings"
|
816 |
msgstr "Impostazioni WP to Twitter User"
|
817 |
|
818 |
+
#: wp-to-twitter/wp-to-twitter.php:1004
|
819 |
msgid "Use My Twitter Username"
|
820 |
msgstr "Utilizza il mio nome utente Twitter"
|
821 |
|
822 |
+
#: wp-to-twitter/wp-to-twitter.php:1005
|
823 |
msgid "Tweet my posts with an @ reference to my username."
|
824 |
msgstr "Segnala i miei articoli con un riferimento @ correlato al mio nome utente."
|
825 |
|
826 |
+
#: wp-to-twitter/wp-to-twitter.php:1006
|
827 |
msgid "Tweet my posts with an @ reference to both my username and to the main site username."
|
828 |
msgstr "Segnala i miei articoli con un riferimento @ correlato tanto al mio nome utente per il sito principale quanto al mio nome utente."
|
829 |
|
830 |
+
#: wp-to-twitter/wp-to-twitter.php:1010
|
831 |
msgid "Your Twitter Username"
|
832 |
msgstr "Nome utente Twitter"
|
833 |
|
834 |
+
#: wp-to-twitter/wp-to-twitter.php:1011
|
835 |
msgid "Enter your own Twitter username."
|
836 |
msgstr "Inserisci il tuo nome utente Twitter"
|
837 |
|
838 |
+
#: wp-to-twitter/wp-to-twitter.php:1050
|
839 |
msgid "Check the categories you want to tweet:"
|
840 |
msgstr "Seleziona le gategorie per i messaggi:"
|
841 |
|
842 |
+
#: wp-to-twitter/wp-to-twitter.php:1067
|
843 |
msgid "Set Categories"
|
844 |
msgstr "Imposta le categorie"
|
845 |
|
846 |
+
#: wp-to-twitter/wp-to-twitter.php:1091
|
847 |
msgid "<p>Couldn't locate the settings page.</p>"
|
848 |
msgstr "<p>Non é possibile localizzare la pagina delle impostazioni.</p>"
|
849 |
|
850 |
+
#: wp-to-twitter/wp-to-twitter.php:1096
|
851 |
msgid "Settings"
|
852 |
msgstr "Impostazioni"
|
853 |
|
854 |
+
#~ msgid "Tweet Templates"
|
855 |
+
#~ msgstr "Template messaggio"
|
856 |
+
|
857 |
+
#~ msgid "Update when a post is published"
|
858 |
+
#~ msgstr "Aggiorna quando viene pubblicato un articolo"
|
859 |
+
|
860 |
+
#~ msgid "Update when a post is edited"
|
861 |
+
#~ msgstr "Aggiorna quando modifichi un articolo"
|
862 |
+
|
863 |
+
#~ msgid "Text for editing updates:"
|
864 |
+
#~ msgstr "Testo per aggiornamenti modifiche:"
|
865 |
+
|
866 |
+
#~ msgid ""
|
867 |
+
#~ "You can not disable updates on edits when using Postie or similar plugins."
|
868 |
+
#~ msgstr ""
|
869 |
+
#~ "Non potrai disattivare gli aggiornamenti durante l'utilizzo di Postie o "
|
870 |
+
#~ "plugin simili."
|
871 |
+
|
872 |
+
#~ msgid "Text for new page updates:"
|
873 |
+
#~ msgstr "Testo per aggiornamenti articolo:"
|
874 |
+
|
875 |
+
#~ msgid "Update Twitter when WordPress Pages are edited"
|
876 |
+
#~ msgstr "Aggiorna Twitter quando viene modificata una pagina WordPress"
|
877 |
+
|
878 |
+
#~ msgid "Text for page edit updates:"
|
879 |
+
#~ msgstr "Testo per la pagina di modifica aggiornamenti:"
|
880 |
+
|
881 |
+
#~ msgid ""
|
882 |
+
#~ "I'm using a plugin to post by email, such as Postie. Only check this if "
|
883 |
+
#~ "your updates do not work."
|
884 |
+
#~ msgstr ""
|
885 |
+
#~ "Sto utilizzando un plugin per pubblicare gli articoli via email (del tipo "
|
886 |
+
#~ "Postie). Seleziona qualora gli aggiornamenti non funzionassero."
|
887 |
+
|
888 |
#~ msgid "http://www.joedolson.com/articles/wp-to-twitter/"
|
889 |
#~ msgstr "http://www.joedolson.com/articles/wp-to-twitter/"
|
890 |
|
1003 |
#~ msgid "Post status updates to both Twitter and this service."
|
1004 |
#~ msgstr "Aggiornamenti stato del post per Twitter e per questo servizio."
|
1005 |
|
|
|
|
|
|
|
1006 |
#~ msgid "Your service password:"
|
1007 |
#~ msgstr "Password servizio:"
|
1008 |
|
wp-to-twitter-ja.mo
ADDED
Binary file
|
wp-to-twitter-ja.po
ADDED
@@ -0,0 +1,892 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2010 WP to Twitter
|
2 |
+
# This file is distributed under the same license as the WP to Twitter package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: WP to Twitter 2.2.9\n"
|
6 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-to-twitter\n"
|
7 |
+
"POT-Creation-Date: 2011-04-12 22:29:25+00:00\n"
|
8 |
+
"PO-Revision-Date: 2011-04-26 18:12+0900\n"
|
9 |
+
"Last-Translator: cat <info@kndb.jp>\n"
|
10 |
+
"Language-Team: \n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Poedit-Language: Japanese\n"
|
15 |
+
"X-Poedit-Country: JAPAN\n"
|
16 |
+
|
17 |
+
#: functions.php:193
|
18 |
+
msgid "[<a href='options-general.php?page=wp-to-twitter/wp-to-twitter.php'>Hide</a>] If you're experiencing trouble, please copy these settings into any request for support."
|
19 |
+
msgstr "[<a href='options-general.php?page=wp-to-twitter/wp-to-twitter.php'>隠す</a>] なにか問題が起こってサポートをリクエストする場合は、この設定をコピーして送信してください。"
|
20 |
+
|
21 |
+
#: wp-to-twitter-oauth.php:105
|
22 |
+
#: wp-to-twitter-oauth.php:144
|
23 |
+
msgid "Connect to Twitter"
|
24 |
+
msgstr "Twitter と連携"
|
25 |
+
|
26 |
+
#: wp-to-twitter-oauth.php:109
|
27 |
+
msgid "The process to set up OAuth authentication for your web site is needlessly laborious. It is also confusing. However, this is the only method available from Twitter. Note that you will not add your Twitter username or password to WP to Twitter; they are not used in OAuth authentication."
|
28 |
+
msgstr "OAuth 認証の設定は無駄に面倒ですし、わけがわからないものでしょう。ですがこれが Twitter で認証するための唯一の方法なのです。 とはいえ WP to Twiitter に Twitter のユーザー名やパスワードを保存する必要がないことに注目してください。 OAuth 認証ではそういうものは必要ないのです。"
|
29 |
+
|
30 |
+
#: wp-to-twitter-oauth.php:112
|
31 |
+
msgid "1. Register this site as an application on "
|
32 |
+
msgstr "1. このサイトをアプリケーションとして登録する: "
|
33 |
+
|
34 |
+
#: wp-to-twitter-oauth.php:112
|
35 |
+
msgid "Twitter's application registration page"
|
36 |
+
msgstr "Twitter アプリケーション登録ページ"
|
37 |
+
|
38 |
+
#: wp-to-twitter-oauth.php:114
|
39 |
+
msgid "If you're not currently logged in, use the Twitter username and password which you want associated with this site"
|
40 |
+
msgstr "Twitter 側で現在ログインしていない場合は、このサイトと結び付けたいアカウントのユーザー名とパスワードでログインしてください"
|
41 |
+
|
42 |
+
#: wp-to-twitter-oauth.php:115
|
43 |
+
msgid "Your Application's Name will be what shows up after \"via\" in your twitter stream. Your application name cannot include the word \"Twitter.\" Use the name of your web site."
|
44 |
+
msgstr "アプリケーション名 (Application's Name) : つぶやきの「○○から」として表示されます。「Twitter」という単語を含めることはできません。サイト名を使うのがいいでしょう。"
|
45 |
+
|
46 |
+
#: wp-to-twitter-oauth.php:116
|
47 |
+
msgid "Your Application Description can be whatever you want."
|
48 |
+
msgstr "アプリケーションの説明 (Application Description) : なんでもお好きなことを書いてください"
|
49 |
+
|
50 |
+
#: wp-to-twitter-oauth.php:117
|
51 |
+
msgid "Application Type should be set on "
|
52 |
+
msgstr "アプリケーションの種類 (Application Type): "
|
53 |
+
|
54 |
+
#: wp-to-twitter-oauth.php:117
|
55 |
+
msgid "Browser"
|
56 |
+
msgstr "ブラウザアプリケーション (Browser)"
|
57 |
+
|
58 |
+
#: wp-to-twitter-oauth.php:118
|
59 |
+
msgid "The Callback URL should be "
|
60 |
+
msgstr "コールバック URL(Callback URL) : "
|
61 |
+
|
62 |
+
#: wp-to-twitter-oauth.php:119
|
63 |
+
msgid "Default Access type must be set to "
|
64 |
+
msgstr "標準のアクセスタイプ(Default Access type) : "
|
65 |
+
|
66 |
+
#: wp-to-twitter-oauth.php:119
|
67 |
+
msgid "Read & Write"
|
68 |
+
msgstr "読み書き (Read & Write)"
|
69 |
+
|
70 |
+
#: wp-to-twitter-oauth.php:119
|
71 |
+
msgid "(this is NOT the default)"
|
72 |
+
msgstr "(デフォルトでは Read-only です)"
|
73 |
+
|
74 |
+
#: wp-to-twitter-oauth.php:121
|
75 |
+
msgid "Once you have registered your site as an application, you will be provided with a consumer key and a consumer secret."
|
76 |
+
msgstr "サイトのアプリケーション登録が完了すると、 Consumer key と Consumer secret が発行されます。"
|
77 |
+
|
78 |
+
#: wp-to-twitter-oauth.php:122
|
79 |
+
msgid "2. Copy and paste your consumer key and consumer secret into the fields below"
|
80 |
+
msgstr "2. Consumer key と Consumer secret を下のフィールドに貼り付ける"
|
81 |
+
|
82 |
+
#: wp-to-twitter-oauth.php:125
|
83 |
+
msgid "Twitter Consumer Key"
|
84 |
+
msgstr "Consumer Key"
|
85 |
+
|
86 |
+
#: wp-to-twitter-oauth.php:129
|
87 |
+
msgid "Twitter Consumer Secret"
|
88 |
+
msgstr "Consumer Secret"
|
89 |
+
|
90 |
+
#: wp-to-twitter-oauth.php:132
|
91 |
+
msgid "3. Copy and paste your Access Token and Access Token Secret into the fields below"
|
92 |
+
msgstr "3. Access token と Access Token Secret を下のフィールドに貼り付ける"
|
93 |
+
|
94 |
+
#: wp-to-twitter-oauth.php:133
|
95 |
+
msgid "On the right hand side of your new application page at Twitter, click on 'My Access Token'."
|
96 |
+
msgstr "アプリケーションページの右サイドバーにある、「My Access Token」をクリックしてください"
|
97 |
+
|
98 |
+
#: wp-to-twitter-oauth.php:135
|
99 |
+
msgid "Access Token"
|
100 |
+
msgstr "Access Token"
|
101 |
+
|
102 |
+
#: wp-to-twitter-oauth.php:139
|
103 |
+
msgid "Access Token Secret"
|
104 |
+
msgstr "Access Token Secret"
|
105 |
+
|
106 |
+
#: wp-to-twitter-oauth.php:154
|
107 |
+
msgid "Disconnect from Twitter"
|
108 |
+
msgstr "Twitter との連携"
|
109 |
+
|
110 |
+
#: wp-to-twitter-oauth.php:161
|
111 |
+
msgid "Twitter Username "
|
112 |
+
msgstr "ユーザー名"
|
113 |
+
|
114 |
+
#: wp-to-twitter-oauth.php:162
|
115 |
+
msgid "Consumer Key "
|
116 |
+
msgstr "Consumer Key "
|
117 |
+
|
118 |
+
#: wp-to-twitter-oauth.php:163
|
119 |
+
msgid "Consumer Secret "
|
120 |
+
msgstr "Consumer Secret "
|
121 |
+
|
122 |
+
#: wp-to-twitter-oauth.php:164
|
123 |
+
msgid "Access Token "
|
124 |
+
msgstr "Access Token "
|
125 |
+
|
126 |
+
#: wp-to-twitter-oauth.php:165
|
127 |
+
msgid "Access Token Secret "
|
128 |
+
msgstr "Access Token Secret "
|
129 |
+
|
130 |
+
#: wp-to-twitter-oauth.php:168
|
131 |
+
msgid "Disconnect Your WordPress and Twitter Account"
|
132 |
+
msgstr "Twitter との連携を解除"
|
133 |
+
|
134 |
+
#: wp-to-twitter.php:49
|
135 |
+
msgid "WP to Twitter requires PHP version 5 or above with cURL support. Please upgrade PHP or install cURL to run WP to Twitter."
|
136 |
+
msgstr "WP to Twitter の動作には PHP 5 以上および cURL のサポートが必要です。 PHP のバージョンアップか cURL のインストールをお願いします。"
|
137 |
+
|
138 |
+
#: wp-to-twitter.php:70
|
139 |
+
msgid "WP to Twitter requires WordPress 2.9.2 or a more recent version. <a href=\"http://codex.wordpress.org/Upgrading_WordPress\">Please update your WordPress version!</a>"
|
140 |
+
msgstr "WP to Twitter の動作には WordPress 2.9.2 以上が必要です。<a href=\"http://wpdocs.sourceforge.jp/WordPress_%E3%81%AE%E3%82%A2%E3%83%83%E3%83%97%E3%82%B0%E3%83%AC%E3%83%BC%E3%83%89\">WordPress をアップグレードしましょう</a>。"
|
141 |
+
|
142 |
+
#: wp-to-twitter.php:84
|
143 |
+
msgid "Twitter now requires authentication by OAuth. You will need you to update your <a href=\"%s\">settings</a> in order to continue to use WP to Twitter."
|
144 |
+
msgstr "Twitter では OAuth 認証が必要になりました。 WP to Twitter を使うためには<a href=\"%s\">プラグイン設定</a>を更新する必要があります。"
|
145 |
+
|
146 |
+
#: wp-to-twitter.php:150
|
147 |
+
msgid "200 OK: Success!"
|
148 |
+
msgstr "200 OK: Success!"
|
149 |
+
|
150 |
+
#: wp-to-twitter.php:154
|
151 |
+
msgid "400 Bad Request: The request was invalid. This is the status code returned during rate limiting."
|
152 |
+
msgstr "400 Bad Request: リクエストが不正です。このエラーは API の使用が制限されているときに出ます。"
|
153 |
+
|
154 |
+
#: wp-to-twitter.php:158
|
155 |
+
msgid "401 Unauthorized: Authentication credentials were missing or incorrect."
|
156 |
+
msgstr "401 Unauthorized: 認証に失敗しました。"
|
157 |
+
|
158 |
+
#: wp-to-twitter.php:162
|
159 |
+
msgid "403 Forbidden: The request is understood, but it has been refused. This code is used when requests are understood, but are denied by Twitter. Reasons include exceeding the 140 character limit or the API update limit."
|
160 |
+
msgstr "403 Forbidden: リクエストされましたが処理できません。このエラーは、リクエストは届いたものの Twitter 側で拒否された際に出ます。ツイートが 140 字以上の場合・API 制限に引っかかった場合にも出ます。"
|
161 |
+
|
162 |
+
#: wp-to-twitter.php:166
|
163 |
+
msgid "500 Internal Server Error: Something is broken at Twitter."
|
164 |
+
msgstr "500 Internal Server Error: Twitter 側でなにかがおかしいようです"
|
165 |
+
|
166 |
+
#: wp-to-twitter.php:170
|
167 |
+
msgid "503 Service Unavailable: The Twitter servers are up, but overloaded with requests Please try again later."
|
168 |
+
msgstr "503 Service Unavailable: Twitter は使えないこともないのですが、負荷が高そうです。またあとで試してください。"
|
169 |
+
|
170 |
+
#: wp-to-twitter.php:174
|
171 |
+
msgid "502 Bad Gateway: Twitter is down or being upgraded."
|
172 |
+
msgstr "502 Bad Gateway: Twitter が落ちているか、アップグレード中です"
|
173 |
+
|
174 |
+
#. #-#-#-#-# plugin.pot (WP to Twitter 2.2.9) #-#-#-#-#
|
175 |
+
#. Plugin Name of the plugin/theme
|
176 |
+
#: wp-to-twitter.php:803
|
177 |
+
msgid "WP to Twitter"
|
178 |
+
msgstr "WP to Twitter"
|
179 |
+
|
180 |
+
#: wp-to-twitter.php:865
|
181 |
+
msgid "Custom Twitter Post"
|
182 |
+
msgstr "カスタムツイート"
|
183 |
+
|
184 |
+
#: wp-to-twitter.php:874
|
185 |
+
#: wp-to-twitter-manager.php:360
|
186 |
+
msgid "Make a Donation"
|
187 |
+
msgstr "寄付する"
|
188 |
+
|
189 |
+
#: wp-to-twitter.php:874
|
190 |
+
#: wp-to-twitter-manager.php:363
|
191 |
+
msgid "Get Support"
|
192 |
+
msgstr "サポート"
|
193 |
+
|
194 |
+
#: wp-to-twitter.php:877
|
195 |
+
msgid "Don't Tweet this post."
|
196 |
+
msgstr "この投稿はツイートしない"
|
197 |
+
|
198 |
+
#: wp-to-twitter.php:887
|
199 |
+
msgid "This URL is direct and has not been shortened: "
|
200 |
+
msgstr "この URL は短縮されていません: "
|
201 |
+
|
202 |
+
#: wp-to-twitter.php:946
|
203 |
+
msgid "WP to Twitter User Settings"
|
204 |
+
msgstr "WP to Twitter 個人設定"
|
205 |
+
|
206 |
+
#: wp-to-twitter.php:950
|
207 |
+
msgid "Use My Twitter Username"
|
208 |
+
msgstr "自分のアカウントを含める"
|
209 |
+
|
210 |
+
#: wp-to-twitter.php:951
|
211 |
+
msgid "Tweet my posts with an @ reference to my username."
|
212 |
+
msgstr "自分のアカウント宛に @ をつけてツイートする"
|
213 |
+
|
214 |
+
#: wp-to-twitter.php:952
|
215 |
+
msgid "Tweet my posts with an @ reference to both my username and to the main site username."
|
216 |
+
msgstr "自分と、サイト設定でのアカウント宛に @ をつけてツイート"
|
217 |
+
|
218 |
+
#: wp-to-twitter.php:956
|
219 |
+
msgid "Your Twitter Username"
|
220 |
+
msgstr "Twitter ユーザー名"
|
221 |
+
|
222 |
+
#: wp-to-twitter.php:957
|
223 |
+
msgid "Enter your own Twitter username."
|
224 |
+
msgstr "あなたの Twitter でのユーザー名を入力してください"
|
225 |
+
|
226 |
+
#: wp-to-twitter.php:996
|
227 |
+
msgid "Check the categories you want to tweet:"
|
228 |
+
msgstr "ツイートしたいカテゴリーを選択してください"
|
229 |
+
|
230 |
+
#: wp-to-twitter.php:1013
|
231 |
+
msgid "Set Categories"
|
232 |
+
msgstr "カテゴリーを登録"
|
233 |
+
|
234 |
+
#: wp-to-twitter.php:1037
|
235 |
+
msgid "<p>Couldn't locate the settings page.</p>"
|
236 |
+
msgstr "<p>設定ページが見つかりません</p>"
|
237 |
+
|
238 |
+
#: wp-to-twitter.php:1042
|
239 |
+
msgid "Settings"
|
240 |
+
msgstr "設定"
|
241 |
+
|
242 |
+
#: wp-to-twitter-manager.php:76
|
243 |
+
msgid "WP to Twitter is now connected with Twitter."
|
244 |
+
msgstr "WP to Twitter は Twitter と連携しました。"
|
245 |
+
|
246 |
+
#: wp-to-twitter-manager.php:86
|
247 |
+
msgid "OAuth Authentication Data Cleared."
|
248 |
+
msgstr "OAuth 認証データを削除しました。"
|
249 |
+
|
250 |
+
#: wp-to-twitter-manager.php:93
|
251 |
+
msgid "OAuth Authentication Failed. Your server time is not in sync with the Twitter servers. Talk to your hosting service to see what can be done."
|
252 |
+
msgstr "OAuth 認証に失敗しました。サーバーの時刻が Twitter サーバーと大幅にずれています。ホスティングサービスに連絡してください。"
|
253 |
+
|
254 |
+
#: wp-to-twitter-manager.php:100
|
255 |
+
msgid "OAuth Authentication response not understood."
|
256 |
+
msgstr "OAuth 認証のレスポンスが変です。設定を見なおしてください。"
|
257 |
+
|
258 |
+
#: wp-to-twitter-manager.php:109
|
259 |
+
msgid "WP to Twitter Errors Cleared"
|
260 |
+
msgstr "WP to Twitter エラーを削除しました。"
|
261 |
+
|
262 |
+
#: wp-to-twitter-manager.php:116
|
263 |
+
msgid "Sorry! I couldn't get in touch with the Twitter servers to post your new blog post. Your tweet has been stored in a custom field attached to the post, so you can Tweet it manually if you wish! "
|
264 |
+
msgstr "ツイートしようとしたのですが、Twitter サーバーに接続できませんでした。ツイートはこの投稿のカスタムフィールド内に保存されました。もしお望みなら手動でツイートすることもできます。"
|
265 |
+
|
266 |
+
#: wp-to-twitter-manager.php:118
|
267 |
+
msgid "Sorry! I couldn't get in touch with the Twitter servers to post your <strong>new link</strong>! You'll have to post it manually, I'm afraid. "
|
268 |
+
msgstr "リンクをツイートしようとしたのですが、Twitter サーバーに接続できませんでした。申し訳ありませんが手動でツイートする必要があります。"
|
269 |
+
|
270 |
+
#: wp-to-twitter-manager.php:156
|
271 |
+
msgid "WP to Twitter Advanced Options Updated"
|
272 |
+
msgstr "詳細設定を保存しました。"
|
273 |
+
|
274 |
+
#: wp-to-twitter-manager.php:173
|
275 |
+
msgid "You must add your Bit.ly login and API key in order to shorten URLs with Bit.ly."
|
276 |
+
msgstr "Bit.ly で URL を短縮するためには、 Bit.ly の ユーザー名と API キーを設定する必要があります"
|
277 |
+
|
278 |
+
#: wp-to-twitter-manager.php:177
|
279 |
+
msgid "You must add your YOURLS remote URL, login, and password in order to shorten URLs with a remote installation of YOURLS."
|
280 |
+
msgstr "リモートの YOURLS で URL を短縮するためには、 YOURLS の URL、ログイン名、パスワードを設定する必要があります。"
|
281 |
+
|
282 |
+
#: wp-to-twitter-manager.php:181
|
283 |
+
msgid "You must add your YOURLS server path in order to shorten URLs with a remote installation of YOURLS."
|
284 |
+
msgstr "リモートの YOURLS で URL を短縮するためには、 YOURLS のインストールパスを設定に追加する必要があります。"
|
285 |
+
|
286 |
+
#: wp-to-twitter-manager.php:185
|
287 |
+
msgid "WP to Twitter Options Updated"
|
288 |
+
msgstr "基本設定を保存しました。"
|
289 |
+
|
290 |
+
#: wp-to-twitter-manager.php:195
|
291 |
+
msgid "Category limits updated."
|
292 |
+
msgstr "カテゴリーフィルタ設定を更新しました。"
|
293 |
+
|
294 |
+
#: wp-to-twitter-manager.php:199
|
295 |
+
msgid "Category limits unset."
|
296 |
+
msgstr "カテゴリーフィルタ設定を削除しました。"
|
297 |
+
|
298 |
+
#: wp-to-twitter-manager.php:207
|
299 |
+
msgid "YOURLS password updated. "
|
300 |
+
msgstr "YOURLS パスワードを更新しました。"
|
301 |
+
|
302 |
+
#: wp-to-twitter-manager.php:210
|
303 |
+
msgid "YOURLS password deleted. You will be unable to use your remote YOURLS account to create short URLS."
|
304 |
+
msgstr "YOURLS パスワードを削除しました。 URL の短縮にリモート YOURLS アカウントを使うことはできません。"
|
305 |
+
|
306 |
+
#: wp-to-twitter-manager.php:212
|
307 |
+
msgid "Failed to save your YOURLS password! "
|
308 |
+
msgstr "YOURLS パスワードの保存に失敗しました!"
|
309 |
+
|
310 |
+
#: wp-to-twitter-manager.php:216
|
311 |
+
msgid "YOURLS username added. "
|
312 |
+
msgstr "YOURLS ユーザー名を追加しました。"
|
313 |
+
|
314 |
+
#: wp-to-twitter-manager.php:220
|
315 |
+
msgid "YOURLS API url added. "
|
316 |
+
msgstr "YOURLS API の URL を追加しました。"
|
317 |
+
|
318 |
+
#: wp-to-twitter-manager.php:223
|
319 |
+
msgid "YOURLS API url removed. "
|
320 |
+
msgstr "YOURLS API の URL を削除しました。"
|
321 |
+
|
322 |
+
#: wp-to-twitter-manager.php:228
|
323 |
+
msgid "YOURLS local server path added. "
|
324 |
+
msgstr "YOURLS ローカルサーバーパスを追加しました。"
|
325 |
+
|
326 |
+
#: wp-to-twitter-manager.php:230
|
327 |
+
msgid "The path to your YOURLS installation is not correct. "
|
328 |
+
msgstr "YOURLS のインストールパスが正しくありません。"
|
329 |
+
|
330 |
+
#: wp-to-twitter-manager.php:234
|
331 |
+
msgid "YOURLS local server path removed. "
|
332 |
+
msgstr "YOURLS ローカルサーバーパスを削除しました。"
|
333 |
+
|
334 |
+
#: wp-to-twitter-manager.php:238
|
335 |
+
msgid "YOURLS will use Post ID for short URL slug."
|
336 |
+
msgstr "YOURLS での短縮に投稿 ID を使用します。"
|
337 |
+
|
338 |
+
#: wp-to-twitter-manager.php:241
|
339 |
+
msgid "YOURLS will not use Post ID for the short URL slug."
|
340 |
+
msgstr "YOURLS での短縮に投稿 ID を使用しません。"
|
341 |
+
|
342 |
+
#: wp-to-twitter-manager.php:249
|
343 |
+
msgid "Su.pr API Key and Username Updated"
|
344 |
+
msgstr "Su.pr API キーとユーザー名を更新しました。"
|
345 |
+
|
346 |
+
#: wp-to-twitter-manager.php:253
|
347 |
+
msgid "Su.pr API Key and username deleted. Su.pr URLs created by WP to Twitter will no longer be associated with your account. "
|
348 |
+
msgstr "Su.pr API キーとユーザー名を削除しました。 WP to Twitter で作成した Su.pr の URL は、もうアカウントと結びついていません。"
|
349 |
+
|
350 |
+
#: wp-to-twitter-manager.php:255
|
351 |
+
msgid "Su.pr API Key not added - <a href='http://su.pr/'>get one here</a>! "
|
352 |
+
msgstr "Su.pr API キーがありません。 <a href='http://su.pr/'>取得してください</a>。"
|
353 |
+
|
354 |
+
#: wp-to-twitter-manager.php:261
|
355 |
+
msgid "Bit.ly API Key Updated."
|
356 |
+
msgstr "Bit.ly API キーを更新しました。"
|
357 |
+
|
358 |
+
#: wp-to-twitter-manager.php:264
|
359 |
+
msgid "Bit.ly API Key deleted. You cannot use the Bit.ly API without an API key. "
|
360 |
+
msgstr "Bit.ly API キーを削除しました。API キーなしでは Bit.ly の API は使えません。"
|
361 |
+
|
362 |
+
#: wp-to-twitter-manager.php:266
|
363 |
+
msgid "Bit.ly API Key not added - <a href='http://bit.ly/account/'>get one here</a>! An API key is required to use the Bit.ly URL shortening service."
|
364 |
+
msgstr "Bit.ly API キーがありません。<a href='http://bit.ly/account/'>取得してください</a>。API キーは Bit.ly API で URL を短縮する際に必要です。"
|
365 |
+
|
366 |
+
#: wp-to-twitter-manager.php:270
|
367 |
+
msgid " Bit.ly User Login Updated."
|
368 |
+
msgstr "Bit.ly ユーザー名を更新しました。"
|
369 |
+
|
370 |
+
#: wp-to-twitter-manager.php:273
|
371 |
+
msgid "Bit.ly User Login deleted. You cannot use the Bit.ly API without providing your username. "
|
372 |
+
msgstr "Bit.ly ユーザー名を削除しました。ユーザー名なしでは Bit.ly の API は使えません。"
|
373 |
+
|
374 |
+
#: wp-to-twitter-manager.php:275
|
375 |
+
msgid "Bit.ly Login not added - <a href='http://bit.ly/account/'>get one here</a>! "
|
376 |
+
msgstr "Bit.ly ユーザー名がありません。<a href='http://bit.ly/account/'>アカウントを作ってください</a>。"
|
377 |
+
|
378 |
+
#: wp-to-twitter-manager.php:304
|
379 |
+
msgid "No error information is available for your shortener."
|
380 |
+
msgstr "短縮 URL に関するエラーはありませんでした"
|
381 |
+
|
382 |
+
#: wp-to-twitter-manager.php:306
|
383 |
+
msgid "<li class=\"error\"><strong>WP to Twitter was unable to contact your selected URL shortening service.</strong></li>"
|
384 |
+
msgstr "<li class=\"error\"><strong>WP to Twitter から指定の短縮 URL プロバイダへの接続に失敗しました</strong></li>"
|
385 |
+
|
386 |
+
#: wp-to-twitter-manager.php:309
|
387 |
+
msgid "<li><strong>WP to Twitter successfully contacted your selected URL shortening service.</strong> The following link should point to your blog homepage:"
|
388 |
+
msgstr "<li><strong>WP to Twitter から指定の短縮 URL プロバイダへの接続に成功しました</strong> サイトのアドレスの短縮 URL:"
|
389 |
+
|
390 |
+
#: wp-to-twitter-manager.php:318
|
391 |
+
msgid "<li><strong>WP to Twitter successfully submitted a status update to Twitter.</strong></li>"
|
392 |
+
msgstr "<li><strong>WP to Twitter は Twitter への投稿に成功しました</strong></li>"
|
393 |
+
|
394 |
+
#: wp-to-twitter-manager.php:321
|
395 |
+
msgid "<li class=\"error\"><strong>WP to Twitter failed to submit an update to Twitter.</strong></li>"
|
396 |
+
msgstr "<li class=\"error\"><strong>WP to Twitter は Twitter への投稿に失敗しました</strong></li>"
|
397 |
+
|
398 |
+
#: wp-to-twitter-manager.php:325
|
399 |
+
msgid "You have not connected WordPress to Twitter."
|
400 |
+
msgstr "この WordPress はまだ Twitter と連携していません。"
|
401 |
+
|
402 |
+
#: wp-to-twitter-manager.php:329
|
403 |
+
msgid "<li class=\"error\"><strong>Your server does not appear to support the required methods for WP to Twitter to function.</strong> You can try it anyway - these tests aren't perfect.</li>"
|
404 |
+
msgstr "<li class=\"error\"><strong>ご利用のサーバーには WP to Twitter に必要な機能がないようです</strong>。それでも試してみることはできます。このテストも完璧ではありませんから。</li>"
|
405 |
+
|
406 |
+
#: wp-to-twitter-manager.php:333
|
407 |
+
msgid "<li><strong>Your server should run WP to Twitter successfully.</strong></li>"
|
408 |
+
msgstr "<li><strong>WP to Twitter はご利用のサーバーで問題なく動きます</strong></li>"
|
409 |
+
|
410 |
+
#: wp-to-twitter-manager.php:350
|
411 |
+
msgid "WP to Twitter Options"
|
412 |
+
msgstr "WP to Twitter 設定"
|
413 |
+
|
414 |
+
#: wp-to-twitter-manager.php:360
|
415 |
+
msgid "Pledge to new features"
|
416 |
+
msgstr "機能リクエスト"
|
417 |
+
|
418 |
+
#: wp-to-twitter-manager.php:363
|
419 |
+
msgid "View Settings"
|
420 |
+
msgstr "設定を表示"
|
421 |
+
|
422 |
+
#: wp-to-twitter-manager.php:378
|
423 |
+
msgid "Shortcodes available in post update templates:"
|
424 |
+
msgstr "ツイート設定内で使えるショートコード: "
|
425 |
+
|
426 |
+
#: wp-to-twitter-manager.php:380
|
427 |
+
msgid "<code>#title#</code>: the title of your blog post"
|
428 |
+
msgstr "<code>#title#</code>: 投稿のタイトル"
|
429 |
+
|
430 |
+
#: wp-to-twitter-manager.php:381
|
431 |
+
msgid "<code>#blog#</code>: the title of your blog"
|
432 |
+
msgstr "<code>#blog#</code>: ブログのタイトル"
|
433 |
+
|
434 |
+
#: wp-to-twitter-manager.php:382
|
435 |
+
msgid "<code>#post#</code>: a short excerpt of the post content"
|
436 |
+
msgstr "<code>#post#</code>: 投稿の抜粋"
|
437 |
+
|
438 |
+
#: wp-to-twitter-manager.php:383
|
439 |
+
msgid "<code>#category#</code>: the first selected category for the post"
|
440 |
+
msgstr "<code>#category#</code>: 投稿のカテゴリー (最初の一つ)"
|
441 |
+
|
442 |
+
#: wp-to-twitter-manager.php:384
|
443 |
+
msgid "<code>#date#</code>: the post date"
|
444 |
+
msgstr "<code>#date#</code>: 投稿の日付"
|
445 |
+
|
446 |
+
#: wp-to-twitter-manager.php:385
|
447 |
+
msgid "<code>#url#</code>: the post URL"
|
448 |
+
msgstr "<code>#url#</code>: 投稿の URL"
|
449 |
+
|
450 |
+
#: wp-to-twitter-manager.php:386
|
451 |
+
msgid "<code>#author#</code>: the post author"
|
452 |
+
msgstr "<code>#author#</code>: 投稿の作成者"
|
453 |
+
|
454 |
+
#: wp-to-twitter-manager.php:387
|
455 |
+
msgid "<code>#account#</code>: the twitter @reference for the account (or the author, if author settings are enabled and set.)"
|
456 |
+
msgstr "<code>#account#</code>: @reference 形式のサイトの Twitter アカウント名 (もしくは、個人設定で値があれば投稿者のアカウント名)"
|
457 |
+
|
458 |
+
#: wp-to-twitter-manager.php:389
|
459 |
+
msgid "You can also create custom shortcodes to access WordPress custom fields. Use doubled square brackets surrounding the name of your custom field to add the value of that custom field to your status update. Example: <code>[[custom_field]]</code></p>"
|
460 |
+
msgstr "カスタムフィールドを表示するショートコードを作ることもできます。ブラケット2つでカスタムフィールド名を囲むと、そのカスタムフィールドの値がツイートに含まれます。 例: <code>[[custom_field]]</code></p>"
|
461 |
+
|
462 |
+
#: wp-to-twitter-manager.php:394
|
463 |
+
msgid "<p>One or more of your last posts has failed to send it's status update to Twitter. Your Tweet has been saved in your post custom fields, and you can re-Tweet it at your leisure.</p>"
|
464 |
+
msgstr "<p>いくつかの投稿が、ステータスの変更時のツイートに失敗しました。ツイートは投稿のカスタムフィールド内に保存されました。あとでお暇なときにツイートし直してください。</p>"
|
465 |
+
|
466 |
+
#: wp-to-twitter-manager.php:398
|
467 |
+
msgid "<p>The query to the URL shortener API failed, and your URL was not shrunk. The full post URL was attached to your Tweet. Check with your URL shortening provider to see if there are any known issues. [<a href=\"http://www.stumbleupon.com/help/how-to-use-supr/\">Su.pr Help</a>] [<a href=\"http://blog.bit.ly\">Bit.ly Blog</a>]</p>"
|
468 |
+
msgstr "<p>短縮 URL API への問い合わせに失敗しました。 URL が短縮できなかったので、ツイートには通常の URL を添付しました。短縮 URL プロバイダでお知らせが出ていないか確認してください。 [<a href=\"http://www.stumbleupon.com/help/how-to-use-supr/\">Su.pr ヘルプ</a>] [<a href=\"http://blog.bit.ly\">Bit.ly Blog</a>]</p>"
|
469 |
+
|
470 |
+
#: wp-to-twitter-manager.php:405
|
471 |
+
msgid "Clear 'WP to Twitter' Error Messages"
|
472 |
+
msgstr "WP to Twitter エラーメッセージを消去する"
|
473 |
+
|
474 |
+
#: wp-to-twitter-manager.php:418
|
475 |
+
msgid "Basic Settings"
|
476 |
+
msgstr "基本設定"
|
477 |
+
|
478 |
+
#: wp-to-twitter-manager.php:424
|
479 |
+
msgid "Tweet Templates"
|
480 |
+
msgstr "ツイート設定"
|
481 |
+
|
482 |
+
#: wp-to-twitter-manager.php:427
|
483 |
+
msgid "Update when a post is published"
|
484 |
+
msgstr "投稿が公開されたらツイート"
|
485 |
+
|
486 |
+
#: wp-to-twitter-manager.php:427
|
487 |
+
msgid "Text for new post updates:"
|
488 |
+
msgstr "投稿公開時: "
|
489 |
+
|
490 |
+
#: wp-to-twitter-manager.php:433
|
491 |
+
#: wp-to-twitter-manager.php:436
|
492 |
+
msgid "Update when a post is edited"
|
493 |
+
msgstr "投稿が編集されたらツイート"
|
494 |
+
|
495 |
+
#: wp-to-twitter-manager.php:433
|
496 |
+
#: wp-to-twitter-manager.php:436
|
497 |
+
msgid "Text for editing updates:"
|
498 |
+
msgstr "投稿編集時"
|
499 |
+
|
500 |
+
#: wp-to-twitter-manager.php:437
|
501 |
+
msgid "You can not disable updates on edits when using Postie or similar plugins."
|
502 |
+
msgstr "Postie あるいは類似のプラグインを使っているので、編集時のツイートを無効にすることはできません"
|
503 |
+
|
504 |
+
#: wp-to-twitter-manager.php:441
|
505 |
+
msgid "Update Twitter when new Wordpress Pages are published"
|
506 |
+
msgstr "ページが公開されたらツイート"
|
507 |
+
|
508 |
+
#: wp-to-twitter-manager.php:441
|
509 |
+
msgid "Text for new page updates:"
|
510 |
+
msgstr "ページ公開時: "
|
511 |
+
|
512 |
+
#: wp-to-twitter-manager.php:445
|
513 |
+
msgid "Update Twitter when WordPress Pages are edited"
|
514 |
+
msgstr "ページが編集されたらツイート"
|
515 |
+
|
516 |
+
#: wp-to-twitter-manager.php:445
|
517 |
+
msgid "Text for page edit updates:"
|
518 |
+
msgstr "ページ編集時:"
|
519 |
+
|
520 |
+
#: wp-to-twitter-manager.php:449
|
521 |
+
msgid "Update Twitter when you post a Blogroll link"
|
522 |
+
msgstr "ブログロールにリンクを追加したらツイート"
|
523 |
+
|
524 |
+
#: wp-to-twitter-manager.php:450
|
525 |
+
msgid "Text for new link updates:"
|
526 |
+
msgstr "新規リンク: "
|
527 |
+
|
528 |
+
#: wp-to-twitter-manager.php:450
|
529 |
+
msgid "Available shortcodes: <code>#url#</code>, <code>#title#</code>, and <code>#description#</code>."
|
530 |
+
msgstr "利用可能なショートコード: <code>#url#</code> <code>#title#</code> <code>#description#</code>"
|
531 |
+
|
532 |
+
#: wp-to-twitter-manager.php:454
|
533 |
+
msgid "Choose your short URL service (account settings below)"
|
534 |
+
msgstr "短縮 URL (アカウント設定は下で行ってください)"
|
535 |
+
|
536 |
+
#: wp-to-twitter-manager.php:457
|
537 |
+
msgid "Don't shorten URLs."
|
538 |
+
msgstr "URL を短縮しない"
|
539 |
+
|
540 |
+
#: wp-to-twitter-manager.php:458
|
541 |
+
msgid "Use Su.pr for my URL shortener."
|
542 |
+
msgstr "Su.pr を使って短縮"
|
543 |
+
|
544 |
+
#: wp-to-twitter-manager.php:459
|
545 |
+
msgid "Use Bit.ly for my URL shortener."
|
546 |
+
msgstr "Bit.ly を使って短縮"
|
547 |
+
|
548 |
+
#: wp-to-twitter-manager.php:460
|
549 |
+
msgid "YOURLS (installed on this server)"
|
550 |
+
msgstr "YOURLS (このサーバー上)"
|
551 |
+
|
552 |
+
#: wp-to-twitter-manager.php:461
|
553 |
+
msgid "YOURLS (installed on a remote server)"
|
554 |
+
msgstr "YOURLS (別のサーバー上)"
|
555 |
+
|
556 |
+
#: wp-to-twitter-manager.php:462
|
557 |
+
msgid "Use WordPress as a URL shortener."
|
558 |
+
msgstr "WordPress の短縮 URL 機能"
|
559 |
+
|
560 |
+
#: wp-to-twitter-manager.php:464
|
561 |
+
msgid "Using WordPress as a URL shortener will send URLs to Twitter in the default URL format for WordPress: <code>http://domain.com/wpdir/?p=123</code>. Google Analytics is not available when using WordPress shortened URLs."
|
562 |
+
msgstr "WordPress の短縮 URL 機能では、パーマリンク設定内の「デフォルト」形式の URL を Twiterへ送信します。 例: <code>http://domain.com/wordpress/?p=123</code> この場合、 Google Analytics での解析はできません。"
|
563 |
+
|
564 |
+
#: wp-to-twitter-manager.php:470
|
565 |
+
msgid "Save WP->Twitter Options"
|
566 |
+
msgstr "基本設定を保存"
|
567 |
+
|
568 |
+
#: wp-to-twitter-manager.php:479
|
569 |
+
msgid "<abbr title=\"Uniform Resource Locator\">URL</abbr> Shortener Account Settings"
|
570 |
+
msgstr "短縮 <abbr title=\"Uniform Resource Locator\">URL</abbr> アカウント設定"
|
571 |
+
|
572 |
+
#: wp-to-twitter-manager.php:483
|
573 |
+
msgid "Your Su.pr account details"
|
574 |
+
msgstr "Su.pr アカウント設定"
|
575 |
+
|
576 |
+
#: wp-to-twitter-manager.php:488
|
577 |
+
msgid "Your Su.pr Username:"
|
578 |
+
msgstr "Su.pr ユーザー名: "
|
579 |
+
|
580 |
+
#: wp-to-twitter-manager.php:492
|
581 |
+
msgid "Your Su.pr <abbr title='application programming interface'>API</abbr> Key:"
|
582 |
+
msgstr "Su.pr <abbr title='application programming interface'>API</abbr> キー:"
|
583 |
+
|
584 |
+
#: wp-to-twitter-manager.php:498
|
585 |
+
msgid "Don't have a Su.pr account or API key? <a href='http://su.pr/'>Get one here</a>!<br />You'll need an API key in order to associate the URLs you create with your Su.pr account."
|
586 |
+
msgstr "Su.pr アカウントもしくは API キーをお持ちでない場合は<a href='http://su.pr/'>取得してください</a>!<br />API キーは短縮した URL をあなたの Su.pr アカウントと結びつけるために必要です。"
|
587 |
+
|
588 |
+
#: wp-to-twitter-manager.php:504
|
589 |
+
msgid "Your Bit.ly account details"
|
590 |
+
msgstr "Bit.ly アカウント設定"
|
591 |
+
|
592 |
+
#: wp-to-twitter-manager.php:509
|
593 |
+
msgid "Your Bit.ly username:"
|
594 |
+
msgstr "Bit.ly ユーザー名: "
|
595 |
+
|
596 |
+
#: wp-to-twitter-manager.php:513
|
597 |
+
msgid "Your Bit.ly <abbr title='application programming interface'>API</abbr> Key:"
|
598 |
+
msgstr "Bit.ly <abbr title='application programming interface'>API</abbr> キー:"
|
599 |
+
|
600 |
+
#: wp-to-twitter-manager.php:520
|
601 |
+
msgid "Save Bit.ly API Key"
|
602 |
+
msgstr "Bit.ly API キーを保存"
|
603 |
+
|
604 |
+
#: wp-to-twitter-manager.php:520
|
605 |
+
msgid "Clear Bit.ly API Key"
|
606 |
+
msgstr "Bit.ly API キーを消去"
|
607 |
+
|
608 |
+
#: wp-to-twitter-manager.php:520
|
609 |
+
msgid "A Bit.ly API key and username is required to shorten URLs via the Bit.ly API and WP to Twitter."
|
610 |
+
msgstr "Bit.ly API キーとユーザー名は Bit.ly API および WP to Twitter から URL を短縮するために必要です。"
|
611 |
+
|
612 |
+
#: wp-to-twitter-manager.php:525
|
613 |
+
msgid "Your YOURLS account details"
|
614 |
+
msgstr "YOURLS アカウント設定"
|
615 |
+
|
616 |
+
#: wp-to-twitter-manager.php:529
|
617 |
+
msgid "Path to your YOURLS config file (Local installations)"
|
618 |
+
msgstr "YOURLS 設定ファイルへのパス (ローカルインストールの場合)"
|
619 |
+
|
620 |
+
#: wp-to-twitter-manager.php:530
|
621 |
+
#: wp-to-twitter-manager.php:534
|
622 |
+
msgid "Example:"
|
623 |
+
msgstr "例:"
|
624 |
+
|
625 |
+
#: wp-to-twitter-manager.php:533
|
626 |
+
msgid "URI to the YOURLS API (Remote installations)"
|
627 |
+
msgstr "YOURLS API へのパス (リモートインストールの場合)"
|
628 |
+
|
629 |
+
#: wp-to-twitter-manager.php:537
|
630 |
+
msgid "Your YOURLS username:"
|
631 |
+
msgstr "YOURLS ユーザー名:"
|
632 |
+
|
633 |
+
#: wp-to-twitter-manager.php:541
|
634 |
+
msgid "Your YOURLS password:"
|
635 |
+
msgstr "YOURLS パスワード:"
|
636 |
+
|
637 |
+
#: wp-to-twitter-manager.php:541
|
638 |
+
msgid "<em>Saved</em>"
|
639 |
+
msgstr "<em>保存しました</em>"
|
640 |
+
|
641 |
+
#: wp-to-twitter-manager.php:545
|
642 |
+
msgid "Use Post ID for YOURLS url slug."
|
643 |
+
msgstr "投稿 ID を YOURLS の短縮名に使う"
|
644 |
+
|
645 |
+
#: wp-to-twitter-manager.php:550
|
646 |
+
msgid "Save YOURLS Account Info"
|
647 |
+
msgstr "YOURLS アカウント設定を保存"
|
648 |
+
|
649 |
+
#: wp-to-twitter-manager.php:550
|
650 |
+
msgid "Clear YOURLS password"
|
651 |
+
msgstr "YOURLS パスワードを消去"
|
652 |
+
|
653 |
+
#: wp-to-twitter-manager.php:550
|
654 |
+
msgid "A YOURLS password and username is required to shorten URLs via the remote YOURLS API and WP to Twitter."
|
655 |
+
msgstr "YOURLS のユーザー名とパスワードは YOURLS API および WP to Twitter から URL を短縮するために必要です。"
|
656 |
+
|
657 |
+
#: wp-to-twitter-manager.php:562
|
658 |
+
msgid "Advanced Settings"
|
659 |
+
msgstr "詳細設定"
|
660 |
+
|
661 |
+
#: wp-to-twitter-manager.php:569
|
662 |
+
msgid "Advanced Tweet settings"
|
663 |
+
msgstr "高度なツイート設定"
|
664 |
+
|
665 |
+
#: wp-to-twitter-manager.php:571
|
666 |
+
msgid "Add tags as hashtags on Tweets"
|
667 |
+
msgstr "投稿タグをハッシュタグとしてツイートする"
|
668 |
+
|
669 |
+
#: wp-to-twitter-manager.php:571
|
670 |
+
msgid "Strip nonalphanumeric characters"
|
671 |
+
msgstr "英数字以外の文字を取り除く"
|
672 |
+
|
673 |
+
#: wp-to-twitter-manager.php:572
|
674 |
+
msgid "Spaces replaced with:"
|
675 |
+
msgstr "空白を置換: "
|
676 |
+
|
677 |
+
#: wp-to-twitter-manager.php:574
|
678 |
+
msgid "Default replacement is an underscore (<code>_</code>). Use <code>[ ]</code> to remove spaces entirely."
|
679 |
+
msgstr "デフォルトの置換文字はアンダースコア (<code>_</code>)です。空白を消去するには <code>[ ]</code> としてください。"
|
680 |
+
|
681 |
+
#: wp-to-twitter-manager.php:577
|
682 |
+
msgid "Maximum number of tags to include:"
|
683 |
+
msgstr "タグの上限数:"
|
684 |
+
|
685 |
+
#: wp-to-twitter-manager.php:578
|
686 |
+
msgid "Maximum length in characters for included tags:"
|
687 |
+
msgstr "タグの最大文字数: "
|
688 |
+
|
689 |
+
#: wp-to-twitter-manager.php:579
|
690 |
+
msgid "These options allow you to restrict the length and number of WordPress tags sent to Twitter as hashtags. Set to <code>0</code> or leave blank to allow any and all tags."
|
691 |
+
msgstr "これらのオプションでは、ハッシュタグとして送信される投稿タグの長さや数を制限できます。すべて許可するには <code>0</code> または空白にしてください。"
|
692 |
+
|
693 |
+
#: wp-to-twitter-manager.php:582
|
694 |
+
msgid "Length of post excerpt (in characters):"
|
695 |
+
msgstr "抜粋の最大文字数:"
|
696 |
+
|
697 |
+
#: wp-to-twitter-manager.php:582
|
698 |
+
msgid "By default, extracted from the post itself. If you use the 'Excerpt' field, that will be used instead."
|
699 |
+
msgstr "デフォルトでは投稿の冒頭が抜き出されます。「抜粋」フィールドがあれば代わりにそちらを使用します。"
|
700 |
+
|
701 |
+
#: wp-to-twitter-manager.php:585
|
702 |
+
msgid "WP to Twitter Date Formatting:"
|
703 |
+
msgstr "日付フォーマット:"
|
704 |
+
|
705 |
+
#: wp-to-twitter-manager.php:586
|
706 |
+
msgid "Default is from your general settings. <a href='http://codex.wordpress.org/Formatting_Date_and_Time'>Date Formatting Documentation</a>."
|
707 |
+
msgstr "デフォルトは「一般設定」での値です。 <a href='http://wpdocs.sourceforge.jp/Formatting_Date_and_Time'>日付と時刻の書式の解説</a>"
|
708 |
+
|
709 |
+
#: wp-to-twitter-manager.php:590
|
710 |
+
msgid "Custom text before all Tweets:"
|
711 |
+
msgstr "ツイートの前につける文字列:"
|
712 |
+
|
713 |
+
#: wp-to-twitter-manager.php:591
|
714 |
+
msgid "Custom text after all Tweets:"
|
715 |
+
msgstr "ツイートの後につける文字列:"
|
716 |
+
|
717 |
+
#: wp-to-twitter-manager.php:594
|
718 |
+
msgid "Custom field for an alternate URL to be shortened and Tweeted:"
|
719 |
+
msgstr "代替 URL を表すカスタムフィールド"
|
720 |
+
|
721 |
+
#: wp-to-twitter-manager.php:595
|
722 |
+
msgid "You can use a custom field to send an alternate URL for your post. The value is the name of a custom field containing your external URL."
|
723 |
+
msgstr "このカスタムフィールドで指定した URL が、通常の URL に代わって短縮・ツイートされます。"
|
724 |
+
|
725 |
+
#: wp-to-twitter-manager.php:599
|
726 |
+
msgid "Special Cases when WordPress should send a Tweet"
|
727 |
+
msgstr "特殊なツイートタイミング設定"
|
728 |
+
|
729 |
+
#: wp-to-twitter-manager.php:602
|
730 |
+
msgid "Do not post status updates by default"
|
731 |
+
msgstr "「この投稿はツイートしない」をデフォルトにする"
|
732 |
+
|
733 |
+
#: wp-to-twitter-manager.php:603
|
734 |
+
msgid "By default, all posts meeting other requirements will be posted to Twitter. Check this to change your setting."
|
735 |
+
msgstr "デフォルトでは、すべての投稿は他の条件に合致すると Twitter へ投稿されます。この設定を変えるにはチェックを入れてください。"
|
736 |
+
|
737 |
+
#: wp-to-twitter-manager.php:607
|
738 |
+
msgid "Send Twitter Updates on remote publication (Post by Email or XMLRPC Client)"
|
739 |
+
msgstr "リモート投稿時にツイートする (メール投稿・XMLRPC クライアント)"
|
740 |
+
|
741 |
+
#: wp-to-twitter-manager.php:609
|
742 |
+
msgid "I'm using a plugin to post by email, such as Postie. Only check this if your updates do not work."
|
743 |
+
msgstr "Postie などのメール投稿プラグインを利用中 (ツイートがうまくいかないときに選択してみてください)"
|
744 |
+
|
745 |
+
#: wp-to-twitter-manager.php:613
|
746 |
+
msgid "Update Twitter when a post is published using QuickPress"
|
747 |
+
msgstr "クイック投稿から公開記事が投稿されたらツイートする"
|
748 |
+
|
749 |
+
#: wp-to-twitter-manager.php:617
|
750 |
+
msgid "Google Analytics Settings"
|
751 |
+
msgstr "Google Analytics 設定"
|
752 |
+
|
753 |
+
#: wp-to-twitter-manager.php:618
|
754 |
+
msgid "You can track the response from Twitter using Google Analytics by defining a campaign identifier here. You can either define a static identifier or a dynamic identifier. Static identifiers don't change from post to post; dynamic identifiers are derived from information relevant to the specific post. Dynamic identifiers will allow you to break down your statistics by an additional variable."
|
755 |
+
msgstr "ここで Google Analytics のキャンペーン ID を指定すると Twitter からの訪問を解析することができます。静的 ID と 動的 ID が利用できます。静的 ID は投稿ごとに変わるということはありません。一方、動的 ID は特定の投稿情報によって変化します。動的 ID を用いると変数を追加して統計結果を分けることができます。"
|
756 |
+
|
757 |
+
#: wp-to-twitter-manager.php:622
|
758 |
+
msgid "Use a Static Identifier with WP-to-Twitter"
|
759 |
+
msgstr "静的 ID を使う"
|
760 |
+
|
761 |
+
#: wp-to-twitter-manager.php:623
|
762 |
+
msgid "Static Campaign identifier for Google Analytics:"
|
763 |
+
msgstr "Google Analytics のキャンペーン ID"
|
764 |
+
|
765 |
+
#: wp-to-twitter-manager.php:627
|
766 |
+
msgid "Use a dynamic identifier with Google Analytics and WP-to-Twitter"
|
767 |
+
msgstr "動的 ID を使う"
|
768 |
+
|
769 |
+
#: wp-to-twitter-manager.php:628
|
770 |
+
msgid "What dynamic identifier would you like to use?"
|
771 |
+
msgstr "動的 ID として使う値"
|
772 |
+
|
773 |
+
#: wp-to-twitter-manager.php:630
|
774 |
+
msgid "Category"
|
775 |
+
msgstr "カテゴリー"
|
776 |
+
|
777 |
+
#: wp-to-twitter-manager.php:631
|
778 |
+
msgid "Post ID"
|
779 |
+
msgstr "投稿 ID"
|
780 |
+
|
781 |
+
#: wp-to-twitter-manager.php:632
|
782 |
+
msgid "Post Title"
|
783 |
+
msgstr "投稿タイトル"
|
784 |
+
|
785 |
+
#: wp-to-twitter-manager.php:633
|
786 |
+
#: wp-to-twitter-manager.php:647
|
787 |
+
msgid "Author"
|
788 |
+
msgstr "投稿者"
|
789 |
+
|
790 |
+
#: wp-to-twitter-manager.php:638
|
791 |
+
msgid "Individual Authors"
|
792 |
+
msgstr "ユーザー設定"
|
793 |
+
|
794 |
+
#: wp-to-twitter-manager.php:641
|
795 |
+
msgid "Authors have individual Twitter accounts"
|
796 |
+
msgstr "ユーザー個人の Twitter アカウントを有効にする"
|
797 |
+
|
798 |
+
#: wp-to-twitter-manager.php:641
|
799 |
+
msgid "Authors can set their username in their user profile. As of version 2.2.0, this feature no longer allows authors to post to their own Twitter accounts. It can only add an @reference to the author. This @reference is placed using the <code>#account#</code> shortcode. (It will pick up the main account if user accounts are not enabled.)"
|
800 |
+
msgstr "ユーザーはプロフィールに自分の Twitter アカウントを設定できます。バージョン 2.2.0 からはこの機能はユーザーごとに自分のアカウントでツイートするものではなくなりました。 @reference のようにユーザーのアカウント名をツイートに追加するだけです。 @reference はショートコード <code>#account#</code> で配置できます。ユーザーアカウントがない場合、このショートコードはサイトのアカウント名になります。"
|
801 |
+
|
802 |
+
#: wp-to-twitter-manager.php:644
|
803 |
+
msgid "Choose the lowest user group that can add their Twitter information"
|
804 |
+
msgstr "Twitter アカウント情報を設定できるユーザーグループ"
|
805 |
+
|
806 |
+
#: wp-to-twitter-manager.php:645
|
807 |
+
msgid "Subscriber"
|
808 |
+
msgstr "購読者"
|
809 |
+
|
810 |
+
#: wp-to-twitter-manager.php:646
|
811 |
+
msgid "Contributor"
|
812 |
+
msgstr "寄稿者"
|
813 |
+
|
814 |
+
#: wp-to-twitter-manager.php:648
|
815 |
+
msgid "Editor"
|
816 |
+
msgstr "編集者"
|
817 |
+
|
818 |
+
#: wp-to-twitter-manager.php:649
|
819 |
+
msgid "Administrator"
|
820 |
+
msgstr "管理者"
|
821 |
+
|
822 |
+
#: wp-to-twitter-manager.php:654
|
823 |
+
msgid "Disable Error Messages"
|
824 |
+
msgstr "エラーメッセージの非表示設定"
|
825 |
+
|
826 |
+
#: wp-to-twitter-manager.php:657
|
827 |
+
msgid "Disable global URL shortener error messages."
|
828 |
+
msgstr "短縮 URL に関するエラーを非表示にする"
|
829 |
+
|
830 |
+
#: wp-to-twitter-manager.php:661
|
831 |
+
msgid "Disable global Twitter API error messages."
|
832 |
+
msgstr "Twitter API に関するエラーを非表示にする"
|
833 |
+
|
834 |
+
#: wp-to-twitter-manager.php:665
|
835 |
+
msgid "Disable notification to implement OAuth"
|
836 |
+
msgstr "OAuth 認証を要請するメッセージを非表示にする"
|
837 |
+
|
838 |
+
#: wp-to-twitter-manager.php:669
|
839 |
+
msgid "Get Debugging Data for OAuth Connection"
|
840 |
+
msgstr "OAuth 接続でのデバッグデータを表示する"
|
841 |
+
|
842 |
+
#: wp-to-twitter-manager.php:675
|
843 |
+
msgid "Save Advanced WP->Twitter Options"
|
844 |
+
msgstr "詳細設定を保存"
|
845 |
+
|
846 |
+
#: wp-to-twitter-manager.php:685
|
847 |
+
msgid "Limit Updating Categories"
|
848 |
+
msgstr "カテゴリーフィルタ設定"
|
849 |
+
|
850 |
+
#: wp-to-twitter-manager.php:689
|
851 |
+
msgid "Select which blog categories will be Tweeted. Uncheck all categories to disable category limits."
|
852 |
+
msgstr "ツイートするカテゴリーを選んでください。すべてのカテゴリーのチェックを外すと、この機能はオフになります。"
|
853 |
+
|
854 |
+
#: wp-to-twitter-manager.php:692
|
855 |
+
msgid "<em>Category limits are disabled.</em>"
|
856 |
+
msgstr "<em>カテゴリーフィルタは現在使われていません</em>"
|
857 |
+
|
858 |
+
#: wp-to-twitter-manager.php:706
|
859 |
+
msgid "Check Support"
|
860 |
+
msgstr "機能チェック"
|
861 |
+
|
862 |
+
#: wp-to-twitter-manager.php:706
|
863 |
+
msgid "Check whether your server supports <a href=\"http://www.joedolson.com/articles/wp-to-twitter/\">WP to Twitter's</a> queries to the Twitter and URL shortening APIs. This test will send a status update to Twitter and shorten a URL using your selected methods."
|
864 |
+
msgstr "このサーバーが <a href=\"http://www.joedolson.com/articles/wp-to-twitter/\">WP to Twitter</a> で使われる Twitter および 短縮 URL の API をサポートしているかどうかをチェックします。このテストでは Twitter にテスト用ツイートを投稿し、上の設定に基づいた URL の短縮を行います。"
|
865 |
+
|
866 |
+
#. Plugin URI of the plugin/theme
|
867 |
+
msgid "http://www.joedolson.com/articles/wp-to-twitter/"
|
868 |
+
msgstr "http://www.joedolson.com/articles/wp-to-twitter/"
|
869 |
+
|
870 |
+
#. Description of the plugin/theme
|
871 |
+
msgid "Posts a Twitter status update when you update your WordPress blog or post to your blogroll, using your chosen URL shortening service. Rich in features for customizing and promoting your Tweets."
|
872 |
+
msgstr "ブログやリンクを更新した際に Twitter にツイートを投稿します。短縮 URL のサービスは自由に選択可能。豊富な機能でツイートのカスタマイズやプロモーションをサポートします。"
|
873 |
+
|
874 |
+
#. Author of the plugin/theme
|
875 |
+
msgid "Joseph Dolson"
|
876 |
+
msgstr "Joseph Dolson"
|
877 |
+
|
878 |
+
#. Author URI of the plugin/theme
|
879 |
+
msgid "http://www.joedolson.com/"
|
880 |
+
msgstr "http://www.joedolson.com/"
|
881 |
+
|
882 |
+
#~ msgid "Your server time is"
|
883 |
+
#~ msgstr "このサーバーの時刻は"
|
884 |
+
|
885 |
+
#~ msgid ""
|
886 |
+
#~ "If this is wrong, your server will not be able to connect with Twitter. "
|
887 |
+
#~ "(<strong>Note:</strong> your server time may not match your current time, "
|
888 |
+
#~ "but it should be correct for it's own time zone.)"
|
889 |
+
#~ msgstr ""
|
890 |
+
#~ "です。これがおかしいと Twitter との連携に失敗する可能性があります。 "
|
891 |
+
#~ "(<strong>注:</strong> サーバーの時刻はあなたの現在位置での現在時刻とは同じ"
|
892 |
+
#~ "ではないかもしれません。ですがタイムゾーンを考慮すると正しいはずです)"
|
wp-to-twitter-manager.php
CHANGED
@@ -1,9 +1,22 @@
|
|
1 |
<?php
|
|
|
2 |
if ( isset($_POST['oauth_settings'] ) ) {
|
3 |
$oauth_message = jd_update_oauth_settings();
|
4 |
}
|
5 |
// FUNCTION to see if checkboxes should be checked
|
6 |
-
function jd_checkCheckbox( $theFieldname ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
if( get_option( $theFieldname ) == '1'){
|
8 |
echo 'checked="checked"';
|
9 |
}
|
@@ -20,21 +33,28 @@
|
|
20 |
|
21 |
// SET DEFAULT OPTIONS
|
22 |
if ( get_option( 'twitterInitialised') != '1' ) {
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
|
|
|
|
|
|
|
|
34 |
|
35 |
update_option( 'jd_twit_blogroll', '1');
|
36 |
update_option( 'newlink-published-text', 'New link: #title# #url#' );
|
37 |
|
|
|
|
|
|
|
38 |
update_option( 'limit_categories','0' );
|
39 |
update_option( 'jd_twit_quickpress', '1' );
|
40 |
update_option( 'jd_shortener', '1' );
|
@@ -122,7 +142,7 @@
|
|
122 |
$wp_to_twitter_failure = '';
|
123 |
}
|
124 |
|
125 |
-
if ( isset($_POST['submit-type']) && $_POST['submit-type'] == 'advanced' ) {
|
126 |
update_option( 'jd_tweet_default', $_POST['jd_tweet_default'] );
|
127 |
update_option( 'jd_twit_remote',$_POST['jd_twit_remote'] );
|
128 |
update_option( 'jd_twit_custom_url', $_POST['jd_twit_custom_url'] );
|
@@ -145,28 +165,32 @@
|
|
145 |
update_option('wtt_user_permissions',$wtt_user_permissions);
|
146 |
update_option( 'disable_url_failure' , $_POST['disable_url_failure'] );
|
147 |
update_option( 'disable_twitter_failure' , $_POST['disable_twitter_failure'] );
|
148 |
-
|
149 |
-
if ( $_POST['jd_twit_postie'] == 1 ) {
|
150 |
-
update_option( 'oldpost-edited-update','1');
|
151 |
-
}
|
152 |
update_option( 'disable_oauth_notice' , $_POST['disable_oauth_notice'] );
|
153 |
update_option( 'wp_debug_oauth' , $_POST['wp_debug_oauth'] );
|
|
|
154 |
|
155 |
|
156 |
$message .= __( 'WP to Twitter Advanced Options Updated' , 'wp-to-twitter');
|
157 |
}
|
158 |
if ( isset($_POST['submit-type']) && $_POST['submit-type'] == 'options' ) {
|
159 |
// UPDATE OPTIONS
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
|
|
|
|
|
|
|
|
168 |
update_option( 'newlink-published-text', $_POST['newlink-published-text'] );
|
169 |
update_option( 'jd_twit_blogroll',$_POST['jd_twit_blogroll'] );
|
|
|
|
|
170 |
update_option( 'jd_shortener', $_POST['jd_shortener'] );
|
171 |
|
172 |
if ( get_option( 'jd_shortener' ) == 2 && ( get_option( 'bitlylogin' ) == "" || get_option( 'bitlyapi' ) == "" ) ) {
|
@@ -357,21 +381,31 @@ $wp_to_twitter_directory = get_bloginfo( 'wpurl' ) . '/' . PLUGINDIR . '/' . dir
|
|
357 |
<div class="resources">
|
358 |
<img src="<?php echo $wp_to_twitter_directory; ?>/wp-to-twitter-logo.png" alt="WP to Twitter" />
|
359 |
<p>
|
360 |
-
<a href="https://fundry.com/project/10-wp-to-twitter"><?php _e("Pledge to new features",'wp-to-twitter'); ?></a
|
361 |
-
|
362 |
-
<p>
|
363 |
-
<a href="?page=wp-to-twitter/wp-to-twitter.php&export=settings"><?php _e("View Settings",'wp-to-twitter'); ?></a> · <a href="http://www.joedolson.com/articles/wp-to-twitter/support/"><?php _e("Get Support",'wp-to-twitter'); ?></a>
|
364 |
</p>
|
|
|
365 |
<div>
|
366 |
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
|
367 |
<div>
|
368 |
<input type="hidden" name="cmd" value="_s-xclick" />
|
369 |
<input type="hidden" name="hosted_button_id" value="8490399" />
|
370 |
-
<input type="image" src="https://www.paypal.com/en_US/i/btn/
|
371 |
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1" />
|
372 |
</div>
|
373 |
</form>
|
374 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
375 |
|
376 |
</div>
|
377 |
|
@@ -419,31 +453,45 @@ $wp_to_twitter_directory = get_bloginfo( 'wpurl' ) . '/' . PLUGINDIR . '/' . dir
|
|
419 |
<div class="inside">
|
420 |
<br class="clear" />
|
421 |
<form method="post" action="">
|
422 |
-
<div>
|
423 |
-
|
424 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
425 |
<p>
|
426 |
-
<input type="checkbox" name="
|
427 |
-
<label for="
|
428 |
</p>
|
429 |
-
|
430 |
<p>
|
431 |
-
|
432 |
-
<input type="
|
433 |
-
<label for="oldpost-edited-update"><strong><?php _e("Update when a post is edited", 'wp-to-twitter'); ?></strong></label><br /><label for="oldpost-edited-text"><?php _e("Text for editing updates:", 'wp-to-twitter'); ?></label> <input type="text" name="oldpost-edited-text" id="oldpost-edited-text" size="60" maxlength="120" value="<?php echo( esc_attr( stripslashes( get_option('oldpost-edited-text' ) ) ) ); ?>" />
|
434 |
-
<?php } else { ?>
|
435 |
-
<input type="checkbox" name="oldpost-edited-update" id="oldpost-edited-update" value="1" disabled="disabled" checked="checked" />
|
436 |
-
<label for="oldpost-edited-update"><strong><?php _e("Update when a post is edited", 'wp-to-twitter'); ?></strong></label><br /><label for="oldpost-edited-text"><?php _e("Text for editing updates:", 'wp-to-twitter'); ?></label> <input type="text" name="oldpost-edited-text" id="oldpost-edited-text" size="60" maxlength="120" value="<?php echo( esc_attr( stripslashes( get_option('oldpost-edited-text' ) ) ) ); ?>" readonly="readonly" />
|
437 |
-
<br /><small><?php _e('You can not disable updates on edits when using Postie or similar plugins.'); ?></small>
|
438 |
-
<?php } ?> </p>
|
439 |
-
<p>
|
440 |
-
<input type="checkbox" name="jd_twit_pages" id="jd_twit_pages" value="1" <?php jd_checkCheckbox('jd_twit_pages')?> />
|
441 |
-
<label for="jd_twit_pages"><strong><?php _e("Update Twitter when new Wordpress Pages are published", 'wp-to-twitter'); ?></strong></label><br /><label for="newpage-published-text"><?php _e("Text for new page updates:", 'wp-to-twitter'); ?></label> <input type="text" name="newpage-published-text" id="newpage-published-text" size="60" maxlength="120" value="<?php echo( esc_attr( stripslashes( get_option('newpage-published-text' ) ) ) ); ?>" />
|
442 |
</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
443 |
<p>
|
444 |
-
<input type="checkbox" name="
|
445 |
-
<label for="
|
|
|
446 |
</p>
|
|
|
|
|
|
|
447 |
<p>
|
448 |
<input type="checkbox" name="jd_twit_blogroll" id="jd_twit_blogroll" value="1" <?php jd_checkCheckbox('jd_twit_blogroll')?> />
|
449 |
<label for="jd_twit_blogroll"><strong><?php _e("Update Twitter when you post a Blogroll link", 'wp-to-twitter'); ?></strong></label><br />
|
@@ -605,8 +653,6 @@ $wp_to_twitter_directory = get_bloginfo( 'wpurl' ) . '/' . PLUGINDIR . '/' . dir
|
|
605 |
<p>
|
606 |
<input type="checkbox" name="jd_twit_remote" id="jd_twit_remote" value="1" <?php jd_checkCheckbox('jd_twit_remote')?> />
|
607 |
<label for="jd_twit_remote"><?php _e("Send Twitter Updates on remote publication (Post by Email or XMLRPC Client)", 'wp-to-twitter'); ?></label><br />
|
608 |
-
<input type="checkbox" name="jd_twit_postie" id="jd_twit_postie" value="1" <?php jd_checkCheckbox('jd_twit_postie')?> />
|
609 |
-
<label for="jd_twit_postie"><?php _e("I'm using a plugin to post by email, such as Postie. Only check this if your updates do not work.", 'wp-to-twitter'); ?></label>
|
610 |
</p>
|
611 |
<p>
|
612 |
<input type="checkbox" name="jd_twit_quickpress" id="jd_twit_quickpress" value="1" <?php jd_checkCheckbox('jd_twit_quickpress')?> />
|
@@ -667,7 +713,11 @@ $wp_to_twitter_directory = get_bloginfo( 'wpurl' ) . '/' . PLUGINDIR . '/' . dir
|
|
667 |
<p>
|
668 |
<input type="checkbox" name="wp_debug_oauth" id="wp_debug_oauth" value="1" <?php jd_checkCheckbox('wp_debug_oauth')?> />
|
669 |
<label for="wp_debug_oauth"><?php _e("Get Debugging Data for OAuth Connection", 'wp-to-twitter'); ?></label>
|
670 |
-
</p>
|
|
|
|
|
|
|
|
|
671 |
</fieldset>
|
672 |
<div>
|
673 |
<input type="hidden" name="submit-type" value="advanced" />
|
@@ -706,7 +756,7 @@ if ( get_option('limit_categories') == '0' ) {
|
|
706 |
<input type="submit" name="submit" value="<?php _e('Check Support','wp-to-twitter'); ?>" class="button-primary" /> <small><?php _e('Check whether your server supports <a href="http://www.joedolson.com/articles/wp-to-twitter/">WP to Twitter\'s</a> queries to the Twitter and URL shortening APIs. This test will send a status update to Twitter and shorten a URL using your selected methods.','wp-to-twitter'); ?></small>
|
707 |
</p>
|
708 |
</fieldset>
|
709 |
-
</form>
|
710 |
</div>
|
711 |
</div>
|
712 |
<?php global $wp_version;
|
1 |
<?php
|
2 |
+
wpt_check_version();
|
3 |
if ( isset($_POST['oauth_settings'] ) ) {
|
4 |
$oauth_message = jd_update_oauth_settings();
|
5 |
}
|
6 |
// FUNCTION to see if checkboxes should be checked
|
7 |
+
function jd_checkCheckbox( $theFieldname,$sub1=false,$sub2='' ) {
|
8 |
+
if ($sub1) {
|
9 |
+
$setting = get_option($theFieldname);
|
10 |
+
if ( $sub2 != '' ) {
|
11 |
+
$value = $setting[$sub1][$sub2];
|
12 |
+
} else {
|
13 |
+
$value = $setting[$sub1];
|
14 |
+
}
|
15 |
+
if ( $value == 1 ) {
|
16 |
+
echo 'checked="checked"';
|
17 |
+
return;
|
18 |
+
}
|
19 |
+
}
|
20 |
if( get_option( $theFieldname ) == '1'){
|
21 |
echo 'checked="checked"';
|
22 |
}
|
33 |
|
34 |
// SET DEFAULT OPTIONS
|
35 |
if ( get_option( 'twitterInitialised') != '1' ) {
|
36 |
+
$initial_settings = array(
|
37 |
+
'post'=> array(
|
38 |
+
'post-published-update'=>1,
|
39 |
+
'post-published-text'=>'New post: #title# #url#',
|
40 |
+
'post-edited-update'=>1,
|
41 |
+
'post-edited-text'=>'Post Edited: #title# #url#'
|
42 |
+
),
|
43 |
+
'page'=> array(
|
44 |
+
'post-published-update'=>0,
|
45 |
+
'post-published-text'=>'New page: #title# #url#',
|
46 |
+
'post-edited-update'=>0,
|
47 |
+
'post-edited-text'=>'Page edited: #title# #url#'
|
48 |
+
)
|
49 |
+
);
|
50 |
+
update_option( 'wpt_post_types', $initial_settings );
|
51 |
|
52 |
update_option( 'jd_twit_blogroll', '1');
|
53 |
update_option( 'newlink-published-text', 'New link: #title# #url#' );
|
54 |
|
55 |
+
update_option( 'comment-published-update', 0 );
|
56 |
+
update_option( 'comment-published-text', 'New comment: #title# #url#' );
|
57 |
+
|
58 |
update_option( 'limit_categories','0' );
|
59 |
update_option( 'jd_twit_quickpress', '1' );
|
60 |
update_option( 'jd_shortener', '1' );
|
142 |
$wp_to_twitter_failure = '';
|
143 |
}
|
144 |
|
145 |
+
if ( isset( $_POST['submit-type'] ) && $_POST['submit-type'] == 'advanced' ) {
|
146 |
update_option( 'jd_tweet_default', $_POST['jd_tweet_default'] );
|
147 |
update_option( 'jd_twit_remote',$_POST['jd_twit_remote'] );
|
148 |
update_option( 'jd_twit_custom_url', $_POST['jd_twit_custom_url'] );
|
165 |
update_option('wtt_user_permissions',$wtt_user_permissions);
|
166 |
update_option( 'disable_url_failure' , $_POST['disable_url_failure'] );
|
167 |
update_option( 'disable_twitter_failure' , $_POST['disable_twitter_failure'] );
|
168 |
+
|
|
|
|
|
|
|
169 |
update_option( 'disable_oauth_notice' , $_POST['disable_oauth_notice'] );
|
170 |
update_option( 'wp_debug_oauth' , $_POST['wp_debug_oauth'] );
|
171 |
+
update_option( 'jd_donations' , $_POST['jd_donations'] );
|
172 |
|
173 |
|
174 |
$message .= __( 'WP to Twitter Advanced Options Updated' , 'wp-to-twitter');
|
175 |
}
|
176 |
if ( isset($_POST['submit-type']) && $_POST['submit-type'] == 'options' ) {
|
177 |
// UPDATE OPTIONS
|
178 |
+
$wpt_settings = get_option('wpt_post_types');
|
179 |
+
foreach($_POST['wpt_post_types'] as $key=>$value) {
|
180 |
+
$array = array(
|
181 |
+
'post-published-update'=>$value["post-published-update"],
|
182 |
+
'post-published-text'=>$value["post-published-text"],
|
183 |
+
'post-edited-update'=>$value["post-edited-update"],
|
184 |
+
'post-edited-text'=>$value["post-edited-text"]
|
185 |
+
);
|
186 |
+
$wpt_settings[$key] = $array;
|
187 |
+
}
|
188 |
+
update_option( 'wpt_post_types', $wpt_settings );
|
189 |
+
|
190 |
update_option( 'newlink-published-text', $_POST['newlink-published-text'] );
|
191 |
update_option( 'jd_twit_blogroll',$_POST['jd_twit_blogroll'] );
|
192 |
+
update_option( 'comment-published-text', $_POST['comment-published-text'] );
|
193 |
+
update_option( 'comment-published-update',$_POST['comment-published-update'] );
|
194 |
update_option( 'jd_shortener', $_POST['jd_shortener'] );
|
195 |
|
196 |
if ( get_option( 'jd_shortener' ) == 2 && ( get_option( 'bitlylogin' ) == "" || get_option( 'bitlyapi' ) == "" ) ) {
|
381 |
<div class="resources">
|
382 |
<img src="<?php echo $wp_to_twitter_directory; ?>/wp-to-twitter-logo.png" alt="WP to Twitter" />
|
383 |
<p>
|
384 |
+
<a href="https://fundry.com/project/10-wp-to-twitter"><?php _e("Pledge to new features",'wp-to-twitter'); ?></a><?php if ( get_option('jd_donations') != 1 ) { ?>
|
385 |
+
· <a href="http://www.joedolson.com/donate.php"><?php _e("Make a Donation",'wp-to-twitter'); ?></a><?php } ?> · <a href="?page=wp-to-twitter/wp-to-twitter.php&export=settings"><?php _e("View Settings",'wp-to-twitter'); ?></a> · <a href="http://www.joedolson.com/articles/wp-to-twitter/support/"><?php _e("Get Support",'wp-to-twitter'); ?></a>
|
|
|
|
|
386 |
</p>
|
387 |
+
<?php if ( get_option('jd_donations') != 1 ) { ?>
|
388 |
<div>
|
389 |
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
|
390 |
<div>
|
391 |
<input type="hidden" name="cmd" value="_s-xclick" />
|
392 |
<input type="hidden" name="hosted_button_id" value="8490399" />
|
393 |
+
<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif" name="submit" alt="Donate" />
|
394 |
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1" />
|
395 |
</div>
|
396 |
</form>
|
397 |
</div>
|
398 |
+
<?php } ?>
|
399 |
+
|
400 |
+
<?php if ( get_option('jd_donations') != 1 ) { ?>
|
401 |
+
<div class="ads">
|
402 |
+
<script type="text/javascript">
|
403 |
+
var psHost = (("https:" == document.location.protocol) ? "https://" : "http://");
|
404 |
+
document.write(unescape("%3Cscript src='" + psHost + "pluginsponsors.com/direct/spsn/display.php?client=wp-to-twitter&spot=' type='text/javascript'%3E%3C/script%3E"));
|
405 |
+
</script>
|
406 |
+
</div>
|
407 |
+
<?php } ?>
|
408 |
+
|
409 |
|
410 |
</div>
|
411 |
|
453 |
<div class="inside">
|
454 |
<br class="clear" />
|
455 |
<form method="post" action="">
|
456 |
+
<div>
|
457 |
+
<?php
|
458 |
+
$post_types = get_post_types( '', 'names' );
|
459 |
+
$wpt_settings = get_option('wpt_post_types');
|
460 |
+
|
461 |
+
foreach( $post_types as $type ) {
|
462 |
+
if ( $type == 'attachment' || $type == 'nav_menu_item' || $type == 'revision' ) {
|
463 |
+
|
464 |
+
} else {
|
465 |
+
$vowels = array( 'a','e','i','o','u' );
|
466 |
+
foreach ( $vowels as $vowel ) {
|
467 |
+
if ( strpos($type, $vowel ) === 0 ) { $word = 'an'; break; } else { $word = 'a'; }
|
468 |
+
}
|
469 |
+
?>
|
470 |
+
<fieldset>
|
471 |
+
<legend><?php _e("Settings for type '$type'",'wp-to-twitter' ); ?></legend>
|
472 |
<p>
|
473 |
+
<input type="checkbox" name="wpt_post_types[<?php echo $type; ?>][post-published-update]" id="<?php echo $type; ?>-post-published-update" value="1" <?php jd_checkCheckbox('wpt_post_types',$type,'post-published-update')?> />
|
474 |
+
<label for="<?php echo $type; ?>-post-published-update"><strong><?php _e("Update when $word $type is published", 'wp-to-twitter'); ?></strong></label> <label for="<?php echo $type; ?>-post-published-text"><br /><?php _e("Text for new $type updates:", 'wp-to-twitter'); ?></label> <input type="text" name="wpt_post_types[<?php echo $type; ?>][post-published-text]" id="<?php echo $type; ?>-post-published-text" size="60" maxlength="120" value="<?php echo( esc_attr( stripslashes( $wpt_settings[$type]['post-published-text'] ) ) ); ?>" />
|
475 |
</p>
|
|
|
476 |
<p>
|
477 |
+
<input type="checkbox" name="wpt_post_types[<?php echo $type; ?>][post-edited-update]" id="<?php echo $type; ?>-post-edited-update" value="1" <?php jd_checkCheckbox('wpt_post_types',$type,'post-edited-update')?> />
|
478 |
+
<label for="<?php echo $type; ?>-post-edited-update"><strong><?php _e("Update when $word $type is edited", 'wp-to-twitter'); ?></strong></label><br /><label for="<?php echo $type; ?>-post-edited-text"><?php _e("Text for $type editing updates:", 'wp-to-twitter'); ?></label> <input type="text" name="wpt_post_types[<?php echo $type; ?>][post-edited-text]" id="<?php echo $type; ?>-post-edited-text" size="60" maxlength="120" value="<?php echo( esc_attr( stripslashes( $wpt_settings[$type]['post-edited-text'] ) ) ); ?>" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
479 |
</p>
|
480 |
+
</fieldset>
|
481 |
+
<?php
|
482 |
+
}
|
483 |
+
}
|
484 |
+
?>
|
485 |
+
<fieldset>
|
486 |
+
<legend><?php _e('Settings for Comments','wp-to-twitter'); ?></legend>
|
487 |
<p>
|
488 |
+
<input type="checkbox" name="comment-published-update" id="comment-published-update" value="1" <?php jd_checkCheckbox('comment-published-update')?> />
|
489 |
+
<label for="comment-published-update"><strong><?php _e("Update Twitter when new comments are posted", 'wp-to-twitter'); ?></strong></label><br />
|
490 |
+
<label for="comment-published-text"><?php _e("Text for new comments:", 'wp-to-twitter'); ?></label> <input type="text" name="comment-published-text" id="comment-published-text" size="60" maxlength="120" value="<?php echo ( esc_attr( stripslashes( get_option( 'comment-published-text' ) ) ) ); ?>" />
|
491 |
</p>
|
492 |
+
</fieldset>
|
493 |
+
<fieldset>
|
494 |
+
<legend><?php _e('Settings for Links','wp-to-twitter'); ?></legend>
|
495 |
<p>
|
496 |
<input type="checkbox" name="jd_twit_blogroll" id="jd_twit_blogroll" value="1" <?php jd_checkCheckbox('jd_twit_blogroll')?> />
|
497 |
<label for="jd_twit_blogroll"><strong><?php _e("Update Twitter when you post a Blogroll link", 'wp-to-twitter'); ?></strong></label><br />
|
653 |
<p>
|
654 |
<input type="checkbox" name="jd_twit_remote" id="jd_twit_remote" value="1" <?php jd_checkCheckbox('jd_twit_remote')?> />
|
655 |
<label for="jd_twit_remote"><?php _e("Send Twitter Updates on remote publication (Post by Email or XMLRPC Client)", 'wp-to-twitter'); ?></label><br />
|
|
|
|
|
656 |
</p>
|
657 |
<p>
|
658 |
<input type="checkbox" name="jd_twit_quickpress" id="jd_twit_quickpress" value="1" <?php jd_checkCheckbox('jd_twit_quickpress')?> />
|
713 |
<p>
|
714 |
<input type="checkbox" name="wp_debug_oauth" id="wp_debug_oauth" value="1" <?php jd_checkCheckbox('wp_debug_oauth')?> />
|
715 |
<label for="wp_debug_oauth"><?php _e("Get Debugging Data for OAuth Connection", 'wp-to-twitter'); ?></label>
|
716 |
+
</p>
|
717 |
+
<p>
|
718 |
+
<input type="checkbox" name="jd_donations" id="jd_donations" value="1" <?php jd_checkCheckbox('jd_donations')?> />
|
719 |
+
<label for="jd_donations"><strong><?php _e("I made a donation, so stop showing me ads, please.", 'wp-to-twitter'); ?></strong></label>
|
720 |
+
</p>
|
721 |
</fieldset>
|
722 |
<div>
|
723 |
<input type="hidden" name="submit-type" value="advanced" />
|
756 |
<input type="submit" name="submit" value="<?php _e('Check Support','wp-to-twitter'); ?>" class="button-primary" /> <small><?php _e('Check whether your server supports <a href="http://www.joedolson.com/articles/wp-to-twitter/">WP to Twitter\'s</a> queries to the Twitter and URL shortening APIs. This test will send a status update to Twitter and shorten a URL using your selected methods.','wp-to-twitter'); ?></small>
|
757 |
</p>
|
758 |
</fieldset>
|
759 |
+
</form>
|
760 |
</div>
|
761 |
</div>
|
762 |
<?php global $wp_version;
|
wp-to-twitter-oauth.php
CHANGED
@@ -123,21 +123,21 @@ $server_time = date_i18n( DATE_COOKIE );
|
|
123 |
|
124 |
<p>
|
125 |
<label for="wtt_app_consumer_key">'.__('Twitter Consumer Key', 'wp-to-twitter').'</label>
|
126 |
-
<input type="text" size="25" name="wtt_app_consumer_key" id="wtt_app_consumer_key" value="'.esc_attr( get_option('app_consumer_key') ).'"
|
127 |
</p>
|
128 |
<p>
|
129 |
<label for="wtt_app_consumer_secret">'.__('Twitter Consumer Secret', 'wp-to-twitter').'</label>
|
130 |
-
<input type="text" size="25" name="wtt_app_consumer_secret" id="wtt_app_consumer_secret" value="'.esc_attr( get_option('app_consumer_secret') ).'"
|
131 |
</p>
|
132 |
<h4>'.__('3. Copy and paste your Access Token and Access Token Secret into the fields below','wp-to-twitter').'</h4>
|
133 |
<p>'.__('On the right hand side of your new application page at Twitter, click on \'My Access Token\'.','wp-to-twitter').'</p>
|
134 |
<p>
|
135 |
<label for="wtt_oauth_token">'.__('Access Token', 'wp-to-twitter').'</label>
|
136 |
-
<input type="text" size="25" name="wtt_oauth_token" id="wtt_oauth_token" value="'.esc_attr( get_option('oauth_token') ).'"
|
137 |
</p>
|
138 |
<p>
|
139 |
<label for="wtt_oauth_token_secret">'.__('Access Token Secret', 'wp-to-twitter').'</label>
|
140 |
-
<input type="text" size="25" name="wtt_oauth_token_secret" id="wtt_oauth_token_secret" value="'.esc_attr( get_option('oauth_token_secret') ).'"
|
141 |
</p>
|
142 |
</fieldset>
|
143 |
<p class="submit">
|
123 |
|
124 |
<p>
|
125 |
<label for="wtt_app_consumer_key">'.__('Twitter Consumer Key', 'wp-to-twitter').'</label>
|
126 |
+
<input type="text" size="25" name="wtt_app_consumer_key" id="wtt_app_consumer_key" value="'.esc_attr( get_option('app_consumer_key') ).'" />
|
127 |
</p>
|
128 |
<p>
|
129 |
<label for="wtt_app_consumer_secret">'.__('Twitter Consumer Secret', 'wp-to-twitter').'</label>
|
130 |
+
<input type="text" size="25" name="wtt_app_consumer_secret" id="wtt_app_consumer_secret" value="'.esc_attr( get_option('app_consumer_secret') ).'" />
|
131 |
</p>
|
132 |
<h4>'.__('3. Copy and paste your Access Token and Access Token Secret into the fields below','wp-to-twitter').'</h4>
|
133 |
<p>'.__('On the right hand side of your new application page at Twitter, click on \'My Access Token\'.','wp-to-twitter').'</p>
|
134 |
<p>
|
135 |
<label for="wtt_oauth_token">'.__('Access Token', 'wp-to-twitter').'</label>
|
136 |
+
<input type="text" size="25" name="wtt_oauth_token" id="wtt_oauth_token" value="'.esc_attr( get_option('oauth_token') ).'" />
|
137 |
</p>
|
138 |
<p>
|
139 |
<label for="wtt_oauth_token_secret">'.__('Access Token Secret', 'wp-to-twitter').'</label>
|
140 |
+
<input type="text" size="25" name="wtt_oauth_token_secret" id="wtt_oauth_token_secret" value="'.esc_attr( get_option('oauth_token_secret') ).'" />
|
141 |
</p>
|
142 |
</fieldset>
|
143 |
<p class="submit">
|
wp-to-twitter.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WP to Twitter
|
4 |
Plugin URI: http://www.joedolson.com/articles/wp-to-twitter/
|
5 |
Description: Posts a Twitter status update when you update your WordPress blog or post to your blogroll, using your chosen URL shortening service. Rich in features for customizing and promoting your Tweets.
|
6 |
-
Version: 2.2
|
7 |
Author: Joseph Dolson
|
8 |
Author URI: http://www.joedolson.com/
|
9 |
*/
|
@@ -44,7 +44,6 @@ $wp_plugin_dir = $wp_content_dir . '/plugins';
|
|
44 |
$wpmu_plugin_url = $wp_content_url . '/mu-plugins';
|
45 |
$wpmu_plugin_dir = $wp_content_dir . '/mu-plugins';
|
46 |
|
47 |
-
|
48 |
if ( version_compare( phpversion(), '5.0', '<' ) || !function_exists( 'curl_init' ) ) {
|
49 |
$warning = __('WP to Twitter requires PHP version 5 or above with cURL support. Please upgrade PHP or install cURL to run WP to Twitter.','wp-to-twitter' );
|
50 |
add_action('admin_notices', create_function( '', "echo \"<div class='error'><p>$warning</p></div>\";" ) );
|
@@ -57,7 +56,7 @@ if ( version_compare( phpversion(), '5.0', '<' ) || !function_exists( 'curl_init
|
|
57 |
require_once( $wp_plugin_dir . '/wp-to-twitter/functions.php' );
|
58 |
|
59 |
global $wp_version,$version,$jd_plugin_url,$jdwp_api_post_status;
|
60 |
-
$version = "2.2
|
61 |
$plugin_dir = basename(dirname(__FILE__));
|
62 |
load_plugin_textdomain( 'wp-to-twitter', false, dirname( plugin_basename( __FILE__ ) ) );
|
63 |
|
@@ -80,9 +79,17 @@ if ( !function_exists('wtt_oauth_test') ) {
|
|
80 |
$oauth = wtt_oauth_test();
|
81 |
}
|
82 |
|
83 |
-
|
84 |
-
|
85 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
|
87 |
function wptotwitter_activate() {
|
88 |
global $version;
|
@@ -105,6 +112,38 @@ $upgrade = version_compare( $prev_version,"2.2.9","<" );
|
|
105 |
delete_option( 'cligslogin' );
|
106 |
delete_option( 'wp_cligs_error' );
|
107 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
update_option( 'wp_to_twitter_version',$version );
|
109 |
}
|
110 |
|
@@ -188,7 +227,6 @@ function jd_doTwitterAPIPost( $twit ) {
|
|
188 |
|
189 |
function fake_normalize( $string ) {
|
190 |
return preg_replace( '~&([a-z]{1,2})(acute|cedil|circ|grave|lig|orn|ring|slash|th|tilde|uml);~i', '$1', htmlentities( $string, ENT_QUOTES, 'UTF-8' ) );
|
191 |
-
//return $string;
|
192 |
}
|
193 |
|
194 |
|
@@ -503,25 +541,33 @@ function jd_get_post_meta( $post_ID, $value, $boolean ) {
|
|
503 |
return $return;
|
504 |
}
|
505 |
|
506 |
-
function jd_twit( $post_ID ) {
|
|
|
507 |
$jd_tweet_this = get_post_meta( $post_ID, '_jd_tweet_this', TRUE);
|
|
|
|
|
|
|
|
|
|
|
508 |
if ( $jd_tweet_this != "no" ) {
|
509 |
$jd_post_info = jd_post_info( $post_ID );
|
510 |
$post_type = $jd_post_info['postType'];
|
511 |
-
|
512 |
-
|
|
|
|
|
513 |
$sentence = '';
|
514 |
$customTweet = stripcslashes( trim( $_POST['_jd_twitter'] ) );
|
515 |
-
if ( ( $jd_post_info['postStatus'] == 'publish' || $_POST['publish'] == 'Publish') && ($_POST['prev_status'] == 'draft' || $_POST['
|
516 |
// publish new post
|
517 |
-
if (
|
518 |
-
$nptext = stripcslashes(
|
519 |
$newpost = true;
|
520 |
}
|
521 |
} else if ( (( $_POST['originalaction'] == "editpost" ) && ( ( $_POST['prev_status'] == 'publish' ) || ($_POST['original_post_status'] == 'publish') ) ) && $jd_post_info['postStatus'] == 'publish') {
|
522 |
// if this is an old post and editing updates are enabled
|
523 |
-
if (
|
524 |
-
$nptext = stripcslashes(
|
525 |
$oldpost = true;
|
526 |
}
|
527 |
}
|
@@ -553,50 +599,10 @@ function jd_twit( $post_ID ) {
|
|
553 |
return $post_ID;
|
554 |
}
|
555 |
|
556 |
-
function jd_twit_page( $post_ID ) {
|
557 |
-
$jd_tweet_this = get_post_meta( $post_ID, '_jd_tweet_this', TRUE);
|
558 |
-
if ( $jd_tweet_this != "no" ) {
|
559 |
-
$jd_post_info = jd_post_info( $post_ID );
|
560 |
-
$sentence = '';
|
561 |
-
$customTweet = stripcslashes( trim( $_POST['_jd_twitter'] ) );
|
562 |
-
if (( $jd_post_info['postStatus'] == 'publish' || $_POST['publish'] == 'Publish') && ($_POST['prev_status'] == 'draft' || $_POST['original_post_status'] == 'draft' || $_POST['original_post_status'] == 'auto-draft' ) ) {
|
563 |
-
$newpost = true; // publish new post
|
564 |
-
if ( get_option( 'jd_twit_pages' ) == '1' ) {
|
565 |
-
$nptext = stripcslashes( get_option( 'newpage-published-text' ) );
|
566 |
-
}
|
567 |
-
} else if ( (( $_POST['originalaction'] == "editpost" ) && ( ( $_POST['prev_status'] == 'publish' ) || ($_POST['original_post_status'] == 'publish') ) ) && $jd_post_info['postStatus'] == 'publish') {
|
568 |
-
$oldpost = true; // if this is an old page and editing updates are enabled
|
569 |
-
if ( get_option( 'jd_twit_edited_pages' ) == '1' ) {
|
570 |
-
$nptext = stripcslashes( get_option( 'oldpage-edited-text' ) );
|
571 |
-
}
|
572 |
-
}
|
573 |
-
if ($newpost || $oldpost) {
|
574 |
-
$sentence = ( $customTweet != "" ) ? $customTweet : $nptext;
|
575 |
-
if ($jd_post_info['shortUrl'] != '') {
|
576 |
-
$shrink = $jd_post_info['shortUrl'];
|
577 |
-
} else {
|
578 |
-
$shrink = jd_shorten_link( $jd_post_info['postLink'], $jd_post_info['postTitle'], $post_ID );
|
579 |
-
store_url( $post_ID, $shrink );
|
580 |
-
}
|
581 |
-
$sentence = custom_shortcodes( $sentence, $post_ID );
|
582 |
-
$sentence = jd_truncate_tweet( $sentence, $jd_post_info['postTitle'], $jd_post_info['blogTitle'], $jd_post_info['postExcerpt'], $shrink, $jd_post_info['category'], $jd_post_info['postDate'], $post_ID, $jd_post_info['authId'] );
|
583 |
-
}
|
584 |
-
if ( $sentence != '' ) {
|
585 |
-
if ( get_option('limit_categories') == '0' || in_allowed_category( $jd_post_info['categoryIds'] ) ) {
|
586 |
-
$sendToTwitter = jd_doTwitterAPIPost( $sentence );
|
587 |
-
update_post_meta( $post_ID,'_jd_wp_twitter',urldecode( $sentence ) );
|
588 |
-
if ( $sendToTwitter == false ) {
|
589 |
-
update_option( 'wp_twitter_failure','1' );
|
590 |
-
}
|
591 |
-
}
|
592 |
-
}
|
593 |
-
}
|
594 |
-
return $post_ID;
|
595 |
-
} // page tweet end
|
596 |
-
|
597 |
// Add Tweets on links in Blogroll
|
598 |
function jd_twit_link( $link_ID ) {
|
599 |
-
|
|
|
600 |
$thislinkprivate = $_POST['link_visible'];
|
601 |
if ($thislinkprivate != 'N') {
|
602 |
$thislinkname = stripcslashes( $_POST['link_name'] );
|
@@ -629,22 +635,27 @@ global $version;
|
|
629 |
|
630 |
// HANDLES SCHEDULED POSTS
|
631 |
function jd_twit_future( $post_ID ) {
|
|
|
632 |
$post_ID = $post_ID->ID;
|
633 |
$jd_tweet_this = get_post_meta( $post_ID, '_jd_tweet_this', TRUE);
|
634 |
-
if ( $jd_tweet_this != "no" ) {
|
635 |
$jd_post_info = jd_post_info( $post_ID );
|
636 |
-
$
|
637 |
-
$
|
638 |
-
$
|
639 |
-
|
|
|
|
|
|
|
|
|
|
|
640 |
// Stores the post's short URL in a custom field for later use as needed.
|
641 |
store_url($post_ID, $shrink);
|
642 |
if ( $customTweet != "" ) {
|
643 |
-
|
644 |
-
}
|
645 |
-
$sentence = custom_shortcodes( $sentence, $post_ID );
|
646 |
-
$sentence = jd_truncate_tweet( $sentence, $jd_post_info['postTitle'], $jd_post_info['blogTitle'], $jd_post_info['postExcerpt'], $shrink, $jd_post_info['category'], $jd_post_info['postDate'], $post_ID, $jd_post_info['authId'] );
|
647 |
-
|
648 |
if ( $sentence != '' ) {
|
649 |
if ( get_option('limit_categories') == '0' || in_allowed_category( $jd_post_info['categoryIds'] ) ) {
|
650 |
$sendToTwitter = jd_doTwitterAPIPost( $sentence );
|
@@ -653,28 +664,36 @@ function jd_twit_future( $post_ID ) {
|
|
653 |
update_option( 'wp_twitter_failure','1' );
|
654 |
}
|
655 |
}
|
656 |
-
}
|
|
|
657 |
return $post_ID;
|
658 |
}
|
659 |
} // END jd_twit_future
|
660 |
|
661 |
// Tweet from QuickPress (no custom fields, so can't control whether to tweet.)
|
662 |
function jd_twit_quickpress( $post_ID ) {
|
|
|
663 |
$post_ID = $post_ID->ID;
|
664 |
$jd_post_info = jd_post_info ( $post_ID );
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
$sentence =
|
671 |
-
$sentence =
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
678 |
}
|
679 |
}
|
680 |
}
|
@@ -683,36 +702,64 @@ function jd_twit_quickpress( $post_ID ) {
|
|
683 |
|
684 |
// HANDLES xmlrpc POSTS
|
685 |
function jd_twit_xmlrpc( $post_ID ) {
|
686 |
-
|
687 |
-
$
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
$sentence = '';
|
694 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
695 |
$shrink = jd_shorten_link( $jd_post_info['postLink'], $jd_post_info['postTitle'], $post_ID );
|
696 |
// Stores the posts CLIG in a custom field for later use as needed.
|
697 |
store_url($post_ID, $shrink);
|
698 |
// Check the length of the tweet and truncate parts as necessary.
|
699 |
$sentence = custom_shortcodes( $sentence, $post_ID );
|
700 |
-
$sentence = jd_truncate_tweet( $sentence, $jd_post_info['postTitle'], $jd_post_info['blogTitle'], $jd_post_info['postExcerpt'], $shrink, $jd_post_info['category'], $jd_post_info['postDate'], $post_ID, $jd_post_info['authId'] );
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
}
|
709 |
-
}
|
710 |
}
|
711 |
-
}
|
712 |
return $post_ID;
|
713 |
}
|
714 |
} // END jd_twit_xmlrpc
|
715 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
716 |
|
717 |
add_action('admin_menu','jd_add_twitter_outer_box');
|
718 |
|
@@ -827,13 +874,21 @@ global $post, $jd_plugin_url, $jd_donate_url;
|
|
827 |
}
|
828 |
$jd_twitter = htmlspecialchars( stripcslashes( get_post_meta($post_id, '_jd_twitter', true ) ) );
|
829 |
$jd_tweet_this = get_post_meta( $post_id, '_jd_tweet_this', true );
|
830 |
-
|
831 |
$jd_selected = ' checked="checked"';
|
832 |
} else {
|
833 |
$jd_selected = '';
|
834 |
}
|
835 |
$jd_short = get_post_meta( $post_id, '_wp_jd_clig', true );
|
836 |
$shortener = "Cli.gs";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
837 |
if ( $jd_short == "" ) {
|
838 |
$jd_short = get_post_meta( $post_id, '_wp_jd_bitly', true );
|
839 |
$shortener = "Bit.ly";
|
@@ -892,17 +947,15 @@ if ($post_status == 'publish') {
|
|
892 |
</p>
|
893 |
<?php }
|
894 |
function jd_add_twitter_outer_box() {
|
|
|
|
|
895 |
if ( function_exists( 'add_meta_box' )) {
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
} else {
|
901 |
-
add_action('dbx_post_advanced', 'jd_add_twitter_old_box' );
|
902 |
-
if ( get_option( 'jd_twit_pages') == '1' ) {
|
903 |
-
add_action('dbx_page_advanced', 'jd_add_twitter_old_box' );
|
904 |
}
|
905 |
-
|
906 |
}
|
907 |
|
908 |
function jd_fix_post_meta( $post_id ) {
|
@@ -920,15 +973,19 @@ function jd_fix_post_meta( $post_id ) {
|
|
920 |
// Post the Custom Tweet into the post meta table
|
921 |
function post_jd_twitter( $id ) {
|
922 |
// update meta data to new format
|
923 |
-
if ( get_post_meta ( $
|
924 |
-
jd_fix_post_meta( $
|
925 |
}
|
926 |
-
|
927 |
-
|
928 |
update_post_meta( $id, '_jd_twitter', $jd_twitter );
|
929 |
}
|
930 |
-
|
931 |
-
|
|
|
|
|
|
|
|
|
932 |
}
|
933 |
|
934 |
|
@@ -1063,66 +1120,30 @@ if ( get_option( 'disable_twitter_failure' ) != '1' ) {
|
|
1063 |
add_action('admin_notices', create_function( '', "if ( ! current_user_can( 'manage_options' ) ) { return; } echo '<div class=\"error\"><p>';_e('There\'s been an error posting your Twitter status! <a href=\"".get_bloginfo('wpurl')."/wp-admin/options-general.php?page=wp-to-twitter/wp-to-twitter.php\">Visit your WP to Twitter settings page</a> to get more information and to clear this error message.','wp-to-twitter'); echo '</p></div>';" ) );
|
1064 |
}
|
1065 |
}
|
1066 |
-
|
1067 |
-
if ( get_option( 'jd_twit_pages' )=='1' ) {
|
1068 |
-
add_action( 'publish_page', 'jd_twit_page' );
|
1069 |
-
}
|
1070 |
-
if ( get_option( 'jd_twit_edited_pages' )=='1' ) {
|
1071 |
-
add_action( 'publish_page', 'jd_twit_page' );
|
1072 |
-
}
|
1073 |
if ( get_option( 'jd_twit_blogroll' ) == '1' ) {
|
1074 |
add_action( 'add_link', 'jd_twit_link' );
|
1075 |
}
|
1076 |
-
add_action( 'future_to_publish', 'jd_twit_future' );
|
1077 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1078 |
|
1079 |
if ( get_option( 'jd_twit_quickpress' ) == '1' ) {
|
1080 |
-
add_action( 'new_to_publish', 'jd_twit_quickpress',
|
1081 |
}
|
1082 |
|
1083 |
if ( get_option( 'jd_twit_remote' ) == '1' ) {
|
1084 |
add_action( 'xmlrpc_publish_post', 'jd_twit_xmlrpc' );
|
1085 |
add_action( 'publish_phone', 'jd_twit_xmlrpc' ); // to add later
|
1086 |
}
|
1087 |
-
|
|
|
|
|
|
|
1088 |
add_action( 'admin_menu', 'jd_addTwitterAdminPages' );
|
1089 |
|
1090 |
-
register_activation_hook( __FILE__, 'wptotwitter_activate' );
|
1091 |
-
/*
|
1092 |
-
// Add function from Luis Nobrega
|
1093 |
-
function jd_twit_comment( $comment_id, $approved ) {
|
1094 |
-
$_t = get_comment( $comment_id );
|
1095 |
-
$post_ID = $_t->comment_post_ID;
|
1096 |
-
$jd_tweet_this = get_post_meta( $post_ID, '_jd_tweet_this', TRUE);
|
1097 |
-
|
1098 |
-
$jd_post_info = jd_post_info( $post_ID );
|
1099 |
-
$sentence = '';
|
1100 |
-
$customTweet = stripcslashes( trim( $_POST['_jd_twitter'] ) );
|
1101 |
-
|
1102 |
-
$nptext = stripcslashes( get_option( 'oldpost-edited-text' ) );
|
1103 |
-
$nptext = str_replace("editada", "respondida", $nptext);
|
1104 |
-
$oldpost = true;
|
1105 |
-
|
1106 |
-
$sentence = ( $customTweet != "" ) ? $customTweet : $nptext;
|
1107 |
-
if ($jd_post_info['shortUrl'] != '') {
|
1108 |
-
$shrink = $jd_post_info['shortUrl'];
|
1109 |
-
} else {
|
1110 |
-
$shrink = jd_shorten_link( $jd_post_info['postLink'], $jd_post_info['postTitle'], $post_ID );
|
1111 |
-
store_url( $post_ID, $shrink );
|
1112 |
-
}
|
1113 |
-
$sentence = custom_shortcodes( $sentence, $post_ID );
|
1114 |
-
$sentence = jd_truncate_tweet( $sentence, $jd_post_info['postTitle'], $jd_post_info['blogTitle'], $jd_post_info['postExcerpt'], $shrink, $jd_post_info['category'], $jd_post_info['postDate'], $post_ID, $jd_post_info['authId'] );
|
1115 |
-
|
1116 |
-
|
1117 |
-
if ( $sentence != '' ) {
|
1118 |
-
|
1119 |
-
if (!in_category("Blog", $post_ID))
|
1120 |
-
$sendToTwitter = ( get_option( 'x_jd_api_post_status' ) == '' )?jd_doTwitterAPIPost( $sentence ):jd_doUnknownAPIPost( $sentence, $jd_post_info['authId'] );
|
1121 |
-
|
1122 |
-
}
|
1123 |
-
|
1124 |
-
return $post_ID;
|
1125 |
-
}
|
1126 |
-
add_action( 'comment_post', 'jd_twit_comment', 10, 2 );
|
1127 |
-
*/
|
1128 |
-
?>
|
3 |
Plugin Name: WP to Twitter
|
4 |
Plugin URI: http://www.joedolson.com/articles/wp-to-twitter/
|
5 |
Description: Posts a Twitter status update when you update your WordPress blog or post to your blogroll, using your chosen URL shortening service. Rich in features for customizing and promoting your Tweets.
|
6 |
+
Version: 2.3.2
|
7 |
Author: Joseph Dolson
|
8 |
Author URI: http://www.joedolson.com/
|
9 |
*/
|
44 |
$wpmu_plugin_url = $wp_content_url . '/mu-plugins';
|
45 |
$wpmu_plugin_dir = $wp_content_dir . '/mu-plugins';
|
46 |
|
|
|
47 |
if ( version_compare( phpversion(), '5.0', '<' ) || !function_exists( 'curl_init' ) ) {
|
48 |
$warning = __('WP to Twitter requires PHP version 5 or above with cURL support. Please upgrade PHP or install cURL to run WP to Twitter.','wp-to-twitter' );
|
49 |
add_action('admin_notices', create_function( '', "echo \"<div class='error'><p>$warning</p></div>\";" ) );
|
56 |
require_once( $wp_plugin_dir . '/wp-to-twitter/functions.php' );
|
57 |
|
58 |
global $wp_version,$version,$jd_plugin_url,$jdwp_api_post_status;
|
59 |
+
$version = "2.3.2";
|
60 |
$plugin_dir = basename(dirname(__FILE__));
|
61 |
load_plugin_textdomain( 'wp-to-twitter', false, dirname( plugin_basename( __FILE__ ) ) );
|
62 |
|
79 |
$oauth = wtt_oauth_test();
|
80 |
}
|
81 |
|
82 |
+
if ( !$oauth && get_option('disable_oauth_notice') != '1' ) {
|
83 |
+
add_action('admin_notices', create_function( '', "if ( ! current_user_can( 'manage_options' ) ) { return; } echo '<div class=\"error\"><p>".sprintf(__('Twitter requires authentication by OAuth. You will need to <a href="%s">update your settings</a> to complete installation of WP to Twitter.', 'wp-to-twitter'), admin_url('options-general.php?page=wp-to-twitter/wp-to-twitter.php'))."</p></div>';" ) );
|
84 |
+
}
|
85 |
+
|
86 |
+
function wpt_check_version() {
|
87 |
+
global $version;
|
88 |
+
$prev_version = get_option( 'wp_to_twitter_version' );
|
89 |
+
if ( version_compare( $prev_version,$version,"<" ) ) {
|
90 |
+
wptotwitter_activate();
|
91 |
+
}
|
92 |
+
}
|
93 |
|
94 |
function wptotwitter_activate() {
|
95 |
global $version;
|
112 |
delete_option( 'cligslogin' );
|
113 |
delete_option( 'wp_cligs_error' );
|
114 |
}
|
115 |
+
$upgrade = version_compare( $prev_version, "2.3.1","<" );
|
116 |
+
if ($upgrade) {
|
117 |
+
$array =
|
118 |
+
array(
|
119 |
+
'post'=> array(
|
120 |
+
'post-published-update'=>get_option('newpost-published-update'),
|
121 |
+
'post-published-text'=>get_option('newpost-published-text'),
|
122 |
+
'post-edited-update'=>get_option('oldpost-edited-update'),
|
123 |
+
'post-edited-text'=>get_option('oldpost-edited-text')
|
124 |
+
),
|
125 |
+
'page'=> array(
|
126 |
+
'post-published-update'=>get_option('jd_twit_pages'),
|
127 |
+
'post-published-text'=>get_option('newpage-published-text'),
|
128 |
+
'post-edited-update'=>get_option('jd_twit_edited_pages'),
|
129 |
+
'post-edited-text'=>get_option('oldpage-edited-text')
|
130 |
+
)
|
131 |
+
);
|
132 |
+
add_option( 'wpt_post_types', $array );
|
133 |
+
add_option( 'comment-published-update', 0 );
|
134 |
+
add_option( 'comment-published-text', 'New comment on #title# #url#' );
|
135 |
+
delete_option('newpost-published-update');
|
136 |
+
delete_option('newpost-published-text');
|
137 |
+
delete_option('oldpost-edited-update');
|
138 |
+
delete_option('oldpost-edited-text');
|
139 |
+
delete_option('newpage-published-text');
|
140 |
+
delete_option('oldpage-edited-text');
|
141 |
+
delete_option( 'newpost-published-showlink' );
|
142 |
+
delete_option( 'oldpost-edited-showlink' );
|
143 |
+
delete_option( 'jd_twit_pages' );
|
144 |
+
delete_option( 'jd_twit_edited_pages' );
|
145 |
+
delete_option('jd_twit_postie');
|
146 |
+
}
|
147 |
update_option( 'wp_to_twitter_version',$version );
|
148 |
}
|
149 |
|
227 |
|
228 |
function fake_normalize( $string ) {
|
229 |
return preg_replace( '~&([a-z]{1,2})(acute|cedil|circ|grave|lig|orn|ring|slash|th|tilde|uml);~i', '$1', htmlentities( $string, ENT_QUOTES, 'UTF-8' ) );
|
|
|
230 |
}
|
231 |
|
232 |
|
541 |
return $return;
|
542 |
}
|
543 |
|
544 |
+
function jd_twit( $post_ID ) {
|
545 |
+
wpt_check_version();
|
546 |
$jd_tweet_this = get_post_meta( $post_ID, '_jd_tweet_this', TRUE);
|
547 |
+
if ( isset($_POST['_jd_tweet_this']) && $_POST['_jd_tweet_this'] == 'no' ) {
|
548 |
+
$jd_tweet_this = 'no';
|
549 |
+
} else if ( !isset($_POST['_jd_tweet_this'] ) && $jd_tweet_this == 'no' ) {
|
550 |
+
$jd_tweet_this = 'yes';
|
551 |
+
}
|
552 |
if ( $jd_tweet_this != "no" ) {
|
553 |
$jd_post_info = jd_post_info( $post_ID );
|
554 |
$post_type = $jd_post_info['postType'];
|
555 |
+
$post_type_settings = get_option('wpt_post_types');
|
556 |
+
$post_types = array_keys($post_type_settings);
|
557 |
+
|
558 |
+
if ( in_array( $post_type, $post_types ) ) {
|
559 |
$sentence = '';
|
560 |
$customTweet = stripcslashes( trim( $_POST['_jd_twitter'] ) );
|
561 |
+
if ( ( $jd_post_info['postStatus'] == 'publish' || $_POST['publish'] == 'Publish') && ( isset($_POST['prev_status']) && ($_POST['prev_status'] == 'draft' || $_POST['prev_status'] == 'pending') || (isset($_POST['original_post_status']) && ( $_POST['original_post_status'] == 'draft' || $_POST['original_post_status'] =='pending' || $_POST['original_post_status'] == 'auto-draft' ) ) ) ) {
|
562 |
// publish new post
|
563 |
+
if ( $post_type_settings[$post_type]['post-published-update'] == '1' ) {
|
564 |
+
$nptext = stripcslashes( $post_type_settings[$post_type]['post-published-text'] );
|
565 |
$newpost = true;
|
566 |
}
|
567 |
} else if ( (( $_POST['originalaction'] == "editpost" ) && ( ( $_POST['prev_status'] == 'publish' ) || ($_POST['original_post_status'] == 'publish') ) ) && $jd_post_info['postStatus'] == 'publish') {
|
568 |
// if this is an old post and editing updates are enabled
|
569 |
+
if ( $post_type_settings[$post_type]['post-edited-update'] == '1' ) {
|
570 |
+
$nptext = stripcslashes( $post_type_settings[$post_type]['post-edited-text'] );
|
571 |
$oldpost = true;
|
572 |
}
|
573 |
}
|
599 |
return $post_ID;
|
600 |
}
|
601 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
602 |
// Add Tweets on links in Blogroll
|
603 |
function jd_twit_link( $link_ID ) {
|
604 |
+
wpt_check_version();
|
605 |
+
global $version;
|
606 |
$thislinkprivate = $_POST['link_visible'];
|
607 |
if ($thislinkprivate != 'N') {
|
608 |
$thislinkname = stripcslashes( $_POST['link_name'] );
|
635 |
|
636 |
// HANDLES SCHEDULED POSTS
|
637 |
function jd_twit_future( $post_ID ) {
|
638 |
+
wpt_check_version();
|
639 |
$post_ID = $post_ID->ID;
|
640 |
$jd_tweet_this = get_post_meta( $post_ID, '_jd_tweet_this', TRUE);
|
641 |
+
if ( $jd_tweet_this != "no" ) {
|
642 |
$jd_post_info = jd_post_info( $post_ID );
|
643 |
+
$post_type = $jd_post_info['postType'];
|
644 |
+
$post_type_settings = get_option('wpt_post_types');
|
645 |
+
$post_types = array_keys($post_type_settings);
|
646 |
+
|
647 |
+
if ( in_array( $post_type, $post_types ) ) {
|
648 |
+
$sentence = '';
|
649 |
+
$customTweet = get_post_meta( $post_ID, '_jd_twitter', TRUE );
|
650 |
+
$sentence = stripcslashes( $post_type_settings[$post_type]['post-published-text'] );
|
651 |
+
$shrink = jd_shorten_link( $jd_post_info['postLink'], $jd_post_info['postTitle'], $post_ID );
|
652 |
// Stores the post's short URL in a custom field for later use as needed.
|
653 |
store_url($post_ID, $shrink);
|
654 |
if ( $customTweet != "" ) {
|
655 |
+
$sentence = $customTweet;
|
656 |
+
}
|
657 |
+
$sentence = custom_shortcodes( $sentence, $post_ID );
|
658 |
+
$sentence = jd_truncate_tweet( $sentence, $jd_post_info['postTitle'], $jd_post_info['blogTitle'], $jd_post_info['postExcerpt'], $shrink, $jd_post_info['category'], $jd_post_info['postDate'], $post_ID, $jd_post_info['authId'] );
|
|
|
659 |
if ( $sentence != '' ) {
|
660 |
if ( get_option('limit_categories') == '0' || in_allowed_category( $jd_post_info['categoryIds'] ) ) {
|
661 |
$sendToTwitter = jd_doTwitterAPIPost( $sentence );
|
664 |
update_option( 'wp_twitter_failure','1' );
|
665 |
}
|
666 |
}
|
667 |
+
}
|
668 |
+
}
|
669 |
return $post_ID;
|
670 |
}
|
671 |
} // END jd_twit_future
|
672 |
|
673 |
// Tweet from QuickPress (no custom fields, so can't control whether to tweet.)
|
674 |
function jd_twit_quickpress( $post_ID ) {
|
675 |
+
wpt_check_version();
|
676 |
$post_ID = $post_ID->ID;
|
677 |
$jd_post_info = jd_post_info ( $post_ID );
|
678 |
+
$post_type = $jd_post_info['postType'];
|
679 |
+
$post_type_settings = get_option('wpt_post_types');
|
680 |
+
$post_types = array_keys($post_type_settings);
|
681 |
+
|
682 |
+
if ( in_array( $post_type, $post_types ) ) {
|
683 |
+
$sentence = '';
|
684 |
+
$sentence = stripcslashes(get_option( $post_type_settings[$post_type]['post-published-text'] ));
|
685 |
+
$shrink = jd_shorten_link( $jd_post_info['postLink'], $jd_post_info['postTitle'], $post_ID );
|
686 |
+
// Stores the posts CLIG in a custom field for later use as needed.
|
687 |
+
store_url($post_ID, $shrink);
|
688 |
+
$sentence = custom_shortcodes( $sentence, $post_ID );
|
689 |
+
$sentence = jd_truncate_tweet( $sentence, $jd_post_info['postTitle'], $jd_post_info['blogTitle'], $jd_post_info['postExcerpt'], $shrink, $jd_post_info['category'], $jd_post_info['postDate'], $post_ID, $jd_post_info['authId'] );
|
690 |
+
if ( $sentence != '' ) {
|
691 |
+
if ( get_option('limit_categories') == '0' || in_allowed_category( $jd_post_info['categoryIds'] ) ) {
|
692 |
+
$sendToTwitter = jd_doTwitterAPIPost( $sentence );
|
693 |
+
update_post_meta( $post_ID,'_jd_wp_twitter',urldecode( $sentence ) );
|
694 |
+
if ($sendToTwitter == false ) {
|
695 |
+
update_option( 'wp_twitter_failure','1' );
|
696 |
+
}
|
697 |
}
|
698 |
}
|
699 |
}
|
702 |
|
703 |
// HANDLES xmlrpc POSTS
|
704 |
function jd_twit_xmlrpc( $post_ID ) {
|
705 |
+
wpt_check_version();
|
706 |
+
$jd_post_info = jd_post_info( $post_ID );
|
707 |
+
$post_type = $jd_post_info['postType'];
|
708 |
+
$post_type_settings = get_option('wpt_post_types');
|
709 |
+
$post_types = array_keys($post_type_settings);
|
710 |
+
|
711 |
+
if ( in_array( $post_type, $post_types ) ) {
|
712 |
+
$sentence = '';
|
713 |
+
if ( get_option('jd_tweet_default') != '1' && get_option('jd_twit_remote') == '1' ) {
|
714 |
+
$poststatus = $jd_post_info['postStatus'];
|
715 |
+
if ( $poststatus == 'publish' ) {
|
716 |
+
$sentence = stripcslashes( $post_type_settings[$post_type]['post-published-text'] );
|
717 |
+
} else {
|
718 |
+
$sentence = stripcslashes( $post_type_settings[$post_type]['post-edited-text'] );
|
719 |
+
}
|
720 |
$shrink = jd_shorten_link( $jd_post_info['postLink'], $jd_post_info['postTitle'], $post_ID );
|
721 |
// Stores the posts CLIG in a custom field for later use as needed.
|
722 |
store_url($post_ID, $shrink);
|
723 |
// Check the length of the tweet and truncate parts as necessary.
|
724 |
$sentence = custom_shortcodes( $sentence, $post_ID );
|
725 |
+
$sentence = jd_truncate_tweet( $sentence, $jd_post_info['postTitle'], $jd_post_info['blogTitle'], $jd_post_info['postExcerpt'], $shrink, $jd_post_info['category'], $jd_post_info['postDate'], $post_ID, $jd_post_info['authId'] );
|
726 |
+
if ( $sentence != '' ) {
|
727 |
+
if ( get_option('limit_categories') == '0' || in_allowed_category( $jd_post_info['categoryIds'] ) ) {
|
728 |
+
$sendToTwitter = jd_doTwitterAPIPost( $sentence );
|
729 |
+
update_post_meta( $post_ID,'_jd_wp_twitter',urldecode( $sentence ) );
|
730 |
+
if ($sendToTwitter == false ) {
|
731 |
+
update_option('wp_twitter_failure','1');
|
732 |
+
}
|
733 |
+
}
|
734 |
+
}
|
735 |
}
|
|
|
736 |
return $post_ID;
|
737 |
}
|
738 |
} // END jd_twit_xmlrpc
|
739 |
|
740 |
+
// Add comment tweet function from Luis Nobrega
|
741 |
+
function jd_twit_comment( $comment_id, $approved ) {
|
742 |
+
$_t = get_comment( $comment_id );
|
743 |
+
$post_ID = $_t->comment_post_ID;
|
744 |
+
$jd_tweet_this = get_post_meta( $post_ID, '_jd_tweet_this', TRUE);
|
745 |
+
if ( $jd_tweet_this != 'no' && $_t->comment_approved == 1 ) { // comments only tweeted on posts which are tweeted
|
746 |
+
$jd_post_info = jd_post_info( $post_ID );
|
747 |
+
$sentence = '';
|
748 |
+
$sentence = stripcslashes( get_option( 'comment-published-text' ) );
|
749 |
+
if ( $jd_post_info['shortUrl'] != '' ) {
|
750 |
+
$shrink = $jd_post_info['shortUrl'];
|
751 |
+
} else {
|
752 |
+
$shrink = jd_shorten_link( $jd_post_info['postLink'], $jd_post_info['postTitle'], $post_ID );
|
753 |
+
store_url( $post_ID, $shrink );
|
754 |
+
}
|
755 |
+
$sentence = jd_truncate_tweet( $sentence, $jd_post_info['postTitle'], $jd_post_info['blogTitle'], $jd_post_info['postExcerpt'], $shrink, $jd_post_info['category'], $jd_post_info['postDate'], $post_ID, $jd_post_info['authId'] );
|
756 |
+
|
757 |
+
if ( $sentence != '' ) {
|
758 |
+
$sendToTwitter = jd_doTwitterAPIPost( $sentence );
|
759 |
+
}
|
760 |
+
}
|
761 |
+
return $post_ID;
|
762 |
+
}
|
763 |
|
764 |
add_action('admin_menu','jd_add_twitter_outer_box');
|
765 |
|
874 |
}
|
875 |
$jd_twitter = htmlspecialchars( stripcslashes( get_post_meta($post_id, '_jd_twitter', true ) ) );
|
876 |
$jd_tweet_this = get_post_meta( $post_id, '_jd_tweet_this', true );
|
877 |
+
if ( ( get_option( 'jd_tweet_default' ) == '1' && $jd_tweet_this != '' ) || $jd_tweet_this == 'no') {
|
878 |
$jd_selected = ' checked="checked"';
|
879 |
} else {
|
880 |
$jd_selected = '';
|
881 |
}
|
882 |
$jd_short = get_post_meta( $post_id, '_wp_jd_clig', true );
|
883 |
$shortener = "Cli.gs";
|
884 |
+
if ( $jd_short == "" ) {
|
885 |
+
$jd_short = get_post_meta( $post_id, '_wp_jd_supr', true );
|
886 |
+
$shortener = "Su.pr";
|
887 |
+
}
|
888 |
+
if ( $jd_short == "" ) {
|
889 |
+
$jd_short = get_post_meta( $post_id, '_wp_jd_ind', true );
|
890 |
+
$shortener = "other";
|
891 |
+
}
|
892 |
if ( $jd_short == "" ) {
|
893 |
$jd_short = get_post_meta( $post_id, '_wp_jd_bitly', true );
|
894 |
$shortener = "Bit.ly";
|
947 |
</p>
|
948 |
<?php }
|
949 |
function jd_add_twitter_outer_box() {
|
950 |
+
wpt_check_version();
|
951 |
+
$wpt_post_types = get_option('wpt_post_types');
|
952 |
if ( function_exists( 'add_meta_box' )) {
|
953 |
+
if ( is_array( $wpt_post_types ) ) {
|
954 |
+
foreach ($wpt_post_types as $key=>$value) {
|
955 |
+
add_meta_box( 'wptotwitter_div','WP to Twitter', 'jd_add_twitter_inner_box', $key, 'advanced' );
|
956 |
+
}
|
|
|
|
|
|
|
|
|
957 |
}
|
958 |
+
}
|
959 |
}
|
960 |
|
961 |
function jd_fix_post_meta( $post_id ) {
|
973 |
// Post the Custom Tweet into the post meta table
|
974 |
function post_jd_twitter( $id ) {
|
975 |
// update meta data to new format
|
976 |
+
if ( get_post_meta ( $id, "_jd_post_meta_fixed", true ) != 'true' ) {
|
977 |
+
jd_fix_post_meta( $id );
|
978 |
}
|
979 |
+
if (isset($_POST[ '_jd_twitter' ])) {
|
980 |
+
$jd_twitter = $_POST[ '_jd_twitter' ];
|
981 |
update_post_meta( $id, '_jd_twitter', $jd_twitter );
|
982 |
}
|
983 |
+
if (isset($_POST[ '_jd_tweet_this' ])) {
|
984 |
+
$jd_tweet_this = esc_attr($_POST[ '_jd_tweet_this' ]);
|
985 |
+
update_post_meta( $id, '_jd_tweet_this', $jd_tweet_this );
|
986 |
+
} else {
|
987 |
+
update_post_meta( $id, '_jd_tweet_this', '' );
|
988 |
+
}
|
989 |
}
|
990 |
|
991 |
|
1120 |
add_action('admin_notices', create_function( '', "if ( ! current_user_can( 'manage_options' ) ) { return; } echo '<div class=\"error\"><p>';_e('There\'s been an error posting your Twitter status! <a href=\"".get_bloginfo('wpurl')."/wp-admin/options-general.php?page=wp-to-twitter/wp-to-twitter.php\">Visit your WP to Twitter settings page</a> to get more information and to clear this error message.','wp-to-twitter'); echo '</p></div>';" ) );
|
1121 |
}
|
1122 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1123 |
if ( get_option( 'jd_twit_blogroll' ) == '1' ) {
|
1124 |
add_action( 'add_link', 'jd_twit_link' );
|
1125 |
}
|
1126 |
+
add_action( 'future_to_publish', 'jd_twit_future', 16, 1 );
|
1127 |
+
$post_type_settings = get_option('wpt_post_types');
|
1128 |
+
if ( is_array( $post_type_settings ) ) {
|
1129 |
+
$post_types = array_keys($post_type_settings);
|
1130 |
+
foreach ($post_types as $value ) {
|
1131 |
+
add_action( 'publish_'.$value, 'jd_twit', 16 );
|
1132 |
+
}
|
1133 |
+
}
|
1134 |
|
1135 |
if ( get_option( 'jd_twit_quickpress' ) == '1' ) {
|
1136 |
+
add_action( 'new_to_publish', 'jd_twit_quickpress', 16 );
|
1137 |
}
|
1138 |
|
1139 |
if ( get_option( 'jd_twit_remote' ) == '1' ) {
|
1140 |
add_action( 'xmlrpc_publish_post', 'jd_twit_xmlrpc' );
|
1141 |
add_action( 'publish_phone', 'jd_twit_xmlrpc' ); // to add later
|
1142 |
}
|
1143 |
+
if ( get_option('comment-published-update') == 1 ) {
|
1144 |
+
add_action( 'comment_post', 'jd_twit_comment', 10, 2 );
|
1145 |
+
}
|
1146 |
+
add_action( 'save_post','post_jd_twitter', 10 );
|
1147 |
add_action( 'admin_menu', 'jd_addTwitterAdminPages' );
|
1148 |
|
1149 |
+
register_activation_hook( __FILE__, 'wptotwitter_activate' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wp-to-twitter.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the WP to Twitter package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: WP to Twitter 2.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-to-twitter\n"
|
7 |
-
"POT-Creation-Date: 2011-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -12,7 +12,7 @@ msgstr ""
|
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
-
#: functions.php:
|
16 |
msgid ""
|
17 |
"[<a href='options-general.php?page=wp-to-twitter/wp-to-twitter.php'>Hide</"
|
18 |
"a>] If you're experiencing trouble, please copy these settings into any "
|
@@ -23,6 +23,17 @@ msgstr ""
|
|
23 |
msgid "Connect to Twitter"
|
24 |
msgstr ""
|
25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
#: wp-to-twitter-oauth.php:109
|
27 |
msgid ""
|
28 |
"The process to set up OAuth authentication for your web site is needlessly "
|
@@ -147,383 +158,383 @@ msgstr ""
|
|
147 |
msgid "Disconnect Your WordPress and Twitter Account"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: wp-to-twitter.php:
|
151 |
msgid ""
|
152 |
"WP to Twitter requires PHP version 5 or above with cURL support. Please "
|
153 |
"upgrade PHP or install cURL to run WP to Twitter."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: wp-to-twitter.php:
|
157 |
msgid ""
|
158 |
"WP to Twitter requires WordPress 2.9.2 or a more recent version. <a href="
|
159 |
"\"http://codex.wordpress.org/Upgrading_WordPress\">Please update your "
|
160 |
"WordPress version!</a>"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: wp-to-twitter.php:
|
164 |
msgid ""
|
165 |
-
"Twitter
|
166 |
-
"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: wp-to-twitter.php:
|
170 |
msgid "200 OK: Success!"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: wp-to-twitter.php:
|
174 |
msgid ""
|
175 |
"400 Bad Request: The request was invalid. This is the status code returned "
|
176 |
"during rate limiting."
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: wp-to-twitter.php:
|
180 |
msgid "401 Unauthorized: Authentication credentials were missing or incorrect."
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: wp-to-twitter.php:
|
184 |
msgid ""
|
185 |
"403 Forbidden: The request is understood, but it has been refused. This code "
|
186 |
"is used when requests are understood, but are denied by Twitter. Reasons "
|
187 |
"include exceeding the 140 character limit or the API update limit."
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: wp-to-twitter.php:
|
191 |
msgid "500 Internal Server Error: Something is broken at Twitter."
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: wp-to-twitter.php:
|
195 |
msgid ""
|
196 |
"503 Service Unavailable: The Twitter servers are up, but overloaded with "
|
197 |
"requests Please try again later."
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: wp-to-twitter.php:
|
201 |
msgid "502 Bad Gateway: Twitter is down or being upgraded."
|
202 |
msgstr ""
|
203 |
|
204 |
-
#. #-#-#-#-# plugin.pot (WP to Twitter 2.
|
205 |
#. Plugin Name of the plugin/theme
|
206 |
-
#: wp-to-twitter.php:
|
207 |
msgid "WP to Twitter"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: wp-to-twitter.php:
|
211 |
msgid "Custom Twitter Post"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: wp-to-twitter.php:
|
215 |
msgid "Make a Donation"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: wp-to-twitter.php:
|
219 |
msgid "Get Support"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: wp-to-twitter.php:
|
223 |
msgid "Don't Tweet this post."
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: wp-to-twitter.php:
|
227 |
msgid "This URL is direct and has not been shortened: "
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: wp-to-twitter.php:
|
231 |
msgid "WP to Twitter User Settings"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: wp-to-twitter.php:
|
235 |
msgid "Use My Twitter Username"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: wp-to-twitter.php:
|
239 |
msgid "Tweet my posts with an @ reference to my username."
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: wp-to-twitter.php:
|
243 |
msgid ""
|
244 |
"Tweet my posts with an @ reference to both my username and to the main site "
|
245 |
"username."
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: wp-to-twitter.php:
|
249 |
msgid "Your Twitter Username"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: wp-to-twitter.php:
|
253 |
msgid "Enter your own Twitter username."
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: wp-to-twitter.php:
|
257 |
msgid "Check the categories you want to tweet:"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: wp-to-twitter.php:
|
261 |
msgid "Set Categories"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: wp-to-twitter.php:
|
265 |
msgid "<p>Couldn't locate the settings page.</p>"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: wp-to-twitter.php:
|
269 |
msgid "Settings"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: wp-to-twitter-manager.php:
|
273 |
msgid "WP to Twitter is now connected with Twitter."
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: wp-to-twitter-manager.php:
|
277 |
msgid "OAuth Authentication Data Cleared."
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: wp-to-twitter-manager.php:
|
281 |
msgid ""
|
282 |
"OAuth Authentication Failed. Your server time is not in sync with the "
|
283 |
"Twitter servers. Talk to your hosting service to see what can be done."
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: wp-to-twitter-manager.php:
|
287 |
msgid "OAuth Authentication response not understood."
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: wp-to-twitter-manager.php:
|
291 |
msgid "WP to Twitter Errors Cleared"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: wp-to-twitter-manager.php:
|
295 |
msgid ""
|
296 |
"Sorry! I couldn't get in touch with the Twitter servers to post your new "
|
297 |
"blog post. Your tweet has been stored in a custom field attached to the "
|
298 |
"post, so you can Tweet it manually if you wish! "
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: wp-to-twitter-manager.php:
|
302 |
msgid ""
|
303 |
"Sorry! I couldn't get in touch with the Twitter servers to post your "
|
304 |
"<strong>new link</strong>! You'll have to post it manually, I'm afraid. "
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: wp-to-twitter-manager.php:
|
308 |
msgid "WP to Twitter Advanced Options Updated"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: wp-to-twitter-manager.php:
|
312 |
msgid ""
|
313 |
"You must add your Bit.ly login and API key in order to shorten URLs with Bit."
|
314 |
"ly."
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: wp-to-twitter-manager.php:
|
318 |
msgid ""
|
319 |
"You must add your YOURLS remote URL, login, and password in order to shorten "
|
320 |
"URLs with a remote installation of YOURLS."
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: wp-to-twitter-manager.php:
|
324 |
msgid ""
|
325 |
"You must add your YOURLS server path in order to shorten URLs with a remote "
|
326 |
"installation of YOURLS."
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: wp-to-twitter-manager.php:
|
330 |
msgid "WP to Twitter Options Updated"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: wp-to-twitter-manager.php:
|
334 |
msgid "Category limits updated."
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: wp-to-twitter-manager.php:
|
338 |
msgid "Category limits unset."
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: wp-to-twitter-manager.php:
|
342 |
msgid "YOURLS password updated. "
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: wp-to-twitter-manager.php:
|
346 |
msgid ""
|
347 |
"YOURLS password deleted. You will be unable to use your remote YOURLS "
|
348 |
"account to create short URLS."
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: wp-to-twitter-manager.php:
|
352 |
msgid "Failed to save your YOURLS password! "
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: wp-to-twitter-manager.php:
|
356 |
msgid "YOURLS username added. "
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: wp-to-twitter-manager.php:
|
360 |
msgid "YOURLS API url added. "
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: wp-to-twitter-manager.php:
|
364 |
msgid "YOURLS API url removed. "
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: wp-to-twitter-manager.php:
|
368 |
msgid "YOURLS local server path added. "
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: wp-to-twitter-manager.php:
|
372 |
msgid "The path to your YOURLS installation is not correct. "
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: wp-to-twitter-manager.php:
|
376 |
msgid "YOURLS local server path removed. "
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: wp-to-twitter-manager.php:
|
380 |
msgid "YOURLS will use Post ID for short URL slug."
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: wp-to-twitter-manager.php:
|
384 |
msgid "YOURLS will not use Post ID for the short URL slug."
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: wp-to-twitter-manager.php:
|
388 |
msgid "Su.pr API Key and Username Updated"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: wp-to-twitter-manager.php:
|
392 |
msgid ""
|
393 |
"Su.pr API Key and username deleted. Su.pr URLs created by WP to Twitter will "
|
394 |
"no longer be associated with your account. "
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: wp-to-twitter-manager.php:
|
398 |
msgid "Su.pr API Key not added - <a href='http://su.pr/'>get one here</a>! "
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: wp-to-twitter-manager.php:
|
402 |
msgid "Bit.ly API Key Updated."
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: wp-to-twitter-manager.php:
|
406 |
msgid ""
|
407 |
"Bit.ly API Key deleted. You cannot use the Bit.ly API without an API key. "
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: wp-to-twitter-manager.php:
|
411 |
msgid ""
|
412 |
"Bit.ly API Key not added - <a href='http://bit.ly/account/'>get one here</"
|
413 |
"a>! An API key is required to use the Bit.ly URL shortening service."
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: wp-to-twitter-manager.php:
|
417 |
msgid " Bit.ly User Login Updated."
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: wp-to-twitter-manager.php:
|
421 |
msgid ""
|
422 |
"Bit.ly User Login deleted. You cannot use the Bit.ly API without providing "
|
423 |
"your username. "
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: wp-to-twitter-manager.php:
|
427 |
msgid ""
|
428 |
"Bit.ly Login not added - <a href='http://bit.ly/account/'>get one here</a>! "
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: wp-to-twitter-manager.php:
|
432 |
msgid "No error information is available for your shortener."
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: wp-to-twitter-manager.php:
|
436 |
msgid ""
|
437 |
"<li class=\"error\"><strong>WP to Twitter was unable to contact your "
|
438 |
"selected URL shortening service.</strong></li>"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: wp-to-twitter-manager.php:
|
442 |
msgid ""
|
443 |
"<li><strong>WP to Twitter successfully contacted your selected URL "
|
444 |
"shortening service.</strong> The following link should point to your blog "
|
445 |
"homepage:"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: wp-to-twitter-manager.php:
|
449 |
msgid ""
|
450 |
"<li><strong>WP to Twitter successfully submitted a status update to Twitter."
|
451 |
"</strong></li>"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: wp-to-twitter-manager.php:
|
455 |
msgid ""
|
456 |
"<li class=\"error\"><strong>WP to Twitter failed to submit an update to "
|
457 |
"Twitter.</strong></li>"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: wp-to-twitter-manager.php:
|
461 |
msgid "You have not connected WordPress to Twitter."
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: wp-to-twitter-manager.php:
|
465 |
msgid ""
|
466 |
"<li class=\"error\"><strong>Your server does not appear to support the "
|
467 |
"required methods for WP to Twitter to function.</strong> You can try it "
|
468 |
"anyway - these tests aren't perfect.</li>"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: wp-to-twitter-manager.php:
|
472 |
msgid ""
|
473 |
"<li><strong>Your server should run WP to Twitter successfully.</strong></li>"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: wp-to-twitter-manager.php:
|
477 |
msgid "WP to Twitter Options"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: wp-to-twitter-manager.php:
|
481 |
msgid "Pledge to new features"
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: wp-to-twitter-manager.php:
|
485 |
msgid "View Settings"
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: wp-to-twitter-manager.php:
|
489 |
msgid "Shortcodes available in post update templates:"
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: wp-to-twitter-manager.php:
|
493 |
msgid "<code>#title#</code>: the title of your blog post"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: wp-to-twitter-manager.php:
|
497 |
msgid "<code>#blog#</code>: the title of your blog"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: wp-to-twitter-manager.php:
|
501 |
msgid "<code>#post#</code>: a short excerpt of the post content"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: wp-to-twitter-manager.php:
|
505 |
msgid "<code>#category#</code>: the first selected category for the post"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: wp-to-twitter-manager.php:
|
509 |
msgid "<code>#date#</code>: the post date"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: wp-to-twitter-manager.php:
|
513 |
msgid "<code>#url#</code>: the post URL"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: wp-to-twitter-manager.php:
|
517 |
msgid "<code>#author#</code>: the post author"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: wp-to-twitter-manager.php:
|
521 |
msgid ""
|
522 |
"<code>#account#</code>: the twitter @reference for the account (or the "
|
523 |
"author, if author settings are enabled and set.)"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: wp-to-twitter-manager.php:
|
527 |
msgid ""
|
528 |
"You can also create custom shortcodes to access WordPress custom fields. Use "
|
529 |
"doubled square brackets surrounding the name of your custom field to add the "
|
@@ -531,14 +542,14 @@ msgid ""
|
|
531 |
"[[custom_field]]</code></p>"
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: wp-to-twitter-manager.php:
|
535 |
msgid ""
|
536 |
"<p>One or more of your last posts has failed to send it's status update to "
|
537 |
"Twitter. Your Tweet has been saved in your post custom fields, and you can "
|
538 |
"re-Tweet it at your leisure.</p>"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: wp-to-twitter-manager.php:
|
542 |
msgid ""
|
543 |
"<p>The query to the URL shortener API failed, and your URL was not shrunk. "
|
544 |
"The full post URL was attached to your Tweet. Check with your URL shortening "
|
@@ -547,320 +558,289 @@ msgid ""
|
|
547 |
"blog.bit.ly\">Bit.ly Blog</a>]</p>"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: wp-to-twitter-manager.php:
|
551 |
msgid "Clear 'WP to Twitter' Error Messages"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: wp-to-twitter-manager.php:
|
555 |
msgid "Basic Settings"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: wp-to-twitter-manager.php:
|
559 |
-
msgid "
|
560 |
-
msgstr ""
|
561 |
-
|
562 |
-
#: wp-to-twitter-manager.php:427
|
563 |
-
msgid "Update when a post is published"
|
564 |
-
msgstr ""
|
565 |
-
|
566 |
-
#: wp-to-twitter-manager.php:427
|
567 |
-
msgid "Text for new post updates:"
|
568 |
-
msgstr ""
|
569 |
-
|
570 |
-
#: wp-to-twitter-manager.php:433 wp-to-twitter-manager.php:436
|
571 |
-
msgid "Update when a post is edited"
|
572 |
-
msgstr ""
|
573 |
-
|
574 |
-
#: wp-to-twitter-manager.php:433 wp-to-twitter-manager.php:436
|
575 |
-
msgid "Text for editing updates:"
|
576 |
-
msgstr ""
|
577 |
-
|
578 |
-
#: wp-to-twitter-manager.php:437
|
579 |
-
msgid ""
|
580 |
-
"You can not disable updates on edits when using Postie or similar plugins."
|
581 |
-
msgstr ""
|
582 |
-
|
583 |
-
#: wp-to-twitter-manager.php:441
|
584 |
-
msgid "Update Twitter when new Wordpress Pages are published"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: wp-to-twitter-manager.php:
|
588 |
-
msgid "
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: wp-to-twitter-manager.php:
|
592 |
-
msgid "
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: wp-to-twitter-manager.php:
|
596 |
-
msgid "
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: wp-to-twitter-manager.php:
|
600 |
msgid "Update Twitter when you post a Blogroll link"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: wp-to-twitter-manager.php:
|
604 |
msgid "Text for new link updates:"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: wp-to-twitter-manager.php:
|
608 |
msgid ""
|
609 |
"Available shortcodes: <code>#url#</code>, <code>#title#</code>, and "
|
610 |
"<code>#description#</code>."
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: wp-to-twitter-manager.php:
|
614 |
msgid "Choose your short URL service (account settings below)"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: wp-to-twitter-manager.php:
|
618 |
msgid "Don't shorten URLs."
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: wp-to-twitter-manager.php:
|
622 |
msgid "Use Su.pr for my URL shortener."
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: wp-to-twitter-manager.php:
|
626 |
msgid "Use Bit.ly for my URL shortener."
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: wp-to-twitter-manager.php:
|
630 |
msgid "YOURLS (installed on this server)"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: wp-to-twitter-manager.php:
|
634 |
msgid "YOURLS (installed on a remote server)"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: wp-to-twitter-manager.php:
|
638 |
msgid "Use WordPress as a URL shortener."
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: wp-to-twitter-manager.php:
|
642 |
msgid ""
|
643 |
"Using WordPress as a URL shortener will send URLs to Twitter in the default "
|
644 |
"URL format for WordPress: <code>http://domain.com/wpdir/?p=123</code>. "
|
645 |
"Google Analytics is not available when using WordPress shortened URLs."
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: wp-to-twitter-manager.php:
|
649 |
msgid "Save WP->Twitter Options"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: wp-to-twitter-manager.php:
|
653 |
msgid ""
|
654 |
"<abbr title=\"Uniform Resource Locator\">URL</abbr> Shortener Account "
|
655 |
"Settings"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: wp-to-twitter-manager.php:
|
659 |
msgid "Your Su.pr account details"
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: wp-to-twitter-manager.php:
|
663 |
msgid "Your Su.pr Username:"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: wp-to-twitter-manager.php:
|
667 |
msgid ""
|
668 |
"Your Su.pr <abbr title='application programming interface'>API</abbr> Key:"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: wp-to-twitter-manager.php:
|
672 |
msgid ""
|
673 |
"Don't have a Su.pr account or API key? <a href='http://su.pr/'>Get one here</"
|
674 |
"a>!<br />You'll need an API key in order to associate the URLs you create "
|
675 |
"with your Su.pr account."
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: wp-to-twitter-manager.php:
|
679 |
msgid "Your Bit.ly account details"
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: wp-to-twitter-manager.php:
|
683 |
msgid "Your Bit.ly username:"
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: wp-to-twitter-manager.php:
|
687 |
msgid ""
|
688 |
"Your Bit.ly <abbr title='application programming interface'>API</abbr> Key:"
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: wp-to-twitter-manager.php:
|
692 |
msgid "Save Bit.ly API Key"
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: wp-to-twitter-manager.php:
|
696 |
msgid "Clear Bit.ly API Key"
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: wp-to-twitter-manager.php:
|
700 |
msgid ""
|
701 |
"A Bit.ly API key and username is required to shorten URLs via the Bit.ly API "
|
702 |
"and WP to Twitter."
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: wp-to-twitter-manager.php:
|
706 |
msgid "Your YOURLS account details"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: wp-to-twitter-manager.php:
|
710 |
msgid "Path to your YOURLS config file (Local installations)"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: wp-to-twitter-manager.php:
|
714 |
msgid "Example:"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: wp-to-twitter-manager.php:
|
718 |
msgid "URI to the YOURLS API (Remote installations)"
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: wp-to-twitter-manager.php:
|
722 |
msgid "Your YOURLS username:"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: wp-to-twitter-manager.php:
|
726 |
msgid "Your YOURLS password:"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: wp-to-twitter-manager.php:
|
730 |
msgid "<em>Saved</em>"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: wp-to-twitter-manager.php:
|
734 |
msgid "Use Post ID for YOURLS url slug."
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: wp-to-twitter-manager.php:
|
738 |
msgid "Save YOURLS Account Info"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: wp-to-twitter-manager.php:
|
742 |
msgid "Clear YOURLS password"
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: wp-to-twitter-manager.php:
|
746 |
msgid ""
|
747 |
"A YOURLS password and username is required to shorten URLs via the remote "
|
748 |
"YOURLS API and WP to Twitter."
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: wp-to-twitter-manager.php:
|
752 |
msgid "Advanced Settings"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: wp-to-twitter-manager.php:
|
756 |
msgid "Advanced Tweet settings"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: wp-to-twitter-manager.php:
|
760 |
msgid "Add tags as hashtags on Tweets"
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: wp-to-twitter-manager.php:
|
764 |
msgid "Strip nonalphanumeric characters"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: wp-to-twitter-manager.php:
|
768 |
msgid "Spaces replaced with:"
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: wp-to-twitter-manager.php:
|
772 |
msgid ""
|
773 |
"Default replacement is an underscore (<code>_</code>). Use <code>[ ]</code> "
|
774 |
"to remove spaces entirely."
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: wp-to-twitter-manager.php:
|
778 |
msgid "Maximum number of tags to include:"
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: wp-to-twitter-manager.php:
|
782 |
msgid "Maximum length in characters for included tags:"
|
783 |
msgstr ""
|
784 |
|
785 |
-
#: wp-to-twitter-manager.php:
|
786 |
msgid ""
|
787 |
"These options allow you to restrict the length and number of WordPress tags "
|
788 |
"sent to Twitter as hashtags. Set to <code>0</code> or leave blank to allow "
|
789 |
"any and all tags."
|
790 |
msgstr ""
|
791 |
|
792 |
-
#: wp-to-twitter-manager.php:
|
793 |
msgid "Length of post excerpt (in characters):"
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: wp-to-twitter-manager.php:
|
797 |
msgid ""
|
798 |
"By default, extracted from the post itself. If you use the 'Excerpt' field, "
|
799 |
"that will be used instead."
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: wp-to-twitter-manager.php:
|
803 |
msgid "WP to Twitter Date Formatting:"
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: wp-to-twitter-manager.php:
|
807 |
msgid ""
|
808 |
"Default is from your general settings. <a href='http://codex.wordpress.org/"
|
809 |
"Formatting_Date_and_Time'>Date Formatting Documentation</a>."
|
810 |
msgstr ""
|
811 |
|
812 |
-
#: wp-to-twitter-manager.php:
|
813 |
msgid "Custom text before all Tweets:"
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: wp-to-twitter-manager.php:
|
817 |
msgid "Custom text after all Tweets:"
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: wp-to-twitter-manager.php:
|
821 |
msgid "Custom field for an alternate URL to be shortened and Tweeted:"
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: wp-to-twitter-manager.php:
|
825 |
msgid ""
|
826 |
"You can use a custom field to send an alternate URL for your post. The value "
|
827 |
"is the name of a custom field containing your external URL."
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: wp-to-twitter-manager.php:
|
831 |
msgid "Special Cases when WordPress should send a Tweet"
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: wp-to-twitter-manager.php:
|
835 |
msgid "Do not post status updates by default"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: wp-to-twitter-manager.php:
|
839 |
msgid ""
|
840 |
"By default, all posts meeting other requirements will be posted to Twitter. "
|
841 |
"Check this to change your setting."
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: wp-to-twitter-manager.php:
|
845 |
msgid ""
|
846 |
"Send Twitter Updates on remote publication (Post by Email or XMLRPC Client)"
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: wp-to-twitter-manager.php:
|
850 |
-
msgid ""
|
851 |
-
"I'm using a plugin to post by email, such as Postie. Only check this if your "
|
852 |
-
"updates do not work."
|
853 |
-
msgstr ""
|
854 |
-
|
855 |
-
#: wp-to-twitter-manager.php:613
|
856 |
msgid "Update Twitter when a post is published using QuickPress"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: wp-to-twitter-manager.php:
|
860 |
msgid "Google Analytics Settings"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: wp-to-twitter-manager.php:
|
864 |
msgid ""
|
865 |
"You can track the response from Twitter using Google Analytics by defining a "
|
866 |
"campaign identifier here. You can either define a static identifier or a "
|
@@ -870,47 +850,47 @@ msgid ""
|
|
870 |
"additional variable."
|
871 |
msgstr ""
|
872 |
|
873 |
-
#: wp-to-twitter-manager.php:
|
874 |
msgid "Use a Static Identifier with WP-to-Twitter"
|
875 |
msgstr ""
|
876 |
|
877 |
-
#: wp-to-twitter-manager.php:
|
878 |
msgid "Static Campaign identifier for Google Analytics:"
|
879 |
msgstr ""
|
880 |
|
881 |
-
#: wp-to-twitter-manager.php:
|
882 |
msgid "Use a dynamic identifier with Google Analytics and WP-to-Twitter"
|
883 |
msgstr ""
|
884 |
|
885 |
-
#: wp-to-twitter-manager.php:
|
886 |
msgid "What dynamic identifier would you like to use?"
|
887 |
msgstr ""
|
888 |
|
889 |
-
#: wp-to-twitter-manager.php:
|
890 |
msgid "Category"
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: wp-to-twitter-manager.php:
|
894 |
msgid "Post ID"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: wp-to-twitter-manager.php:
|
898 |
msgid "Post Title"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: wp-to-twitter-manager.php:
|
902 |
msgid "Author"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: wp-to-twitter-manager.php:
|
906 |
msgid "Individual Authors"
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: wp-to-twitter-manager.php:
|
910 |
msgid "Authors have individual Twitter accounts"
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: wp-to-twitter-manager.php:
|
914 |
msgid ""
|
915 |
"Authors can set their username in their user profile. As of version 2.2.0, "
|
916 |
"this feature no longer allows authors to post to their own Twitter accounts. "
|
@@ -919,69 +899,73 @@ msgid ""
|
|
919 |
"user accounts are not enabled.)"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: wp-to-twitter-manager.php:
|
923 |
msgid "Choose the lowest user group that can add their Twitter information"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: wp-to-twitter-manager.php:
|
927 |
msgid "Subscriber"
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: wp-to-twitter-manager.php:
|
931 |
msgid "Contributor"
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: wp-to-twitter-manager.php:
|
935 |
msgid "Editor"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: wp-to-twitter-manager.php:
|
939 |
msgid "Administrator"
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: wp-to-twitter-manager.php:
|
943 |
msgid "Disable Error Messages"
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: wp-to-twitter-manager.php:
|
947 |
msgid "Disable global URL shortener error messages."
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: wp-to-twitter-manager.php:
|
951 |
msgid "Disable global Twitter API error messages."
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: wp-to-twitter-manager.php:
|
955 |
msgid "Disable notification to implement OAuth"
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: wp-to-twitter-manager.php:
|
959 |
msgid "Get Debugging Data for OAuth Connection"
|
960 |
msgstr ""
|
961 |
|
962 |
-
#: wp-to-twitter-manager.php:
|
|
|
|
|
|
|
|
|
963 |
msgid "Save Advanced WP->Twitter Options"
|
964 |
msgstr ""
|
965 |
|
966 |
-
#: wp-to-twitter-manager.php:
|
967 |
msgid "Limit Updating Categories"
|
968 |
msgstr ""
|
969 |
|
970 |
-
#: wp-to-twitter-manager.php:
|
971 |
msgid ""
|
972 |
"Select which blog categories will be Tweeted. Uncheck all categories to "
|
973 |
"disable category limits."
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: wp-to-twitter-manager.php:
|
977 |
msgid "<em>Category limits are disabled.</em>"
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: wp-to-twitter-manager.php:
|
981 |
msgid "Check Support"
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: wp-to-twitter-manager.php:
|
985 |
msgid ""
|
986 |
"Check whether your server supports <a href=\"http://www.joedolson.com/"
|
987 |
"articles/wp-to-twitter/\">WP to Twitter's</a> queries to the Twitter and URL "
|
2 |
# This file is distributed under the same license as the WP to Twitter package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WP to Twitter 2.3.0\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-to-twitter\n"
|
7 |
+
"POT-Creation-Date: 2011-06-20 21:24:16+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
+
#: functions.php:194
|
16 |
msgid ""
|
17 |
"[<a href='options-general.php?page=wp-to-twitter/wp-to-twitter.php'>Hide</"
|
18 |
"a>] If you're experiencing trouble, please copy these settings into any "
|
23 |
msgid "Connect to Twitter"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: wp-to-twitter-oauth.php:108
|
27 |
+
msgid "Your server time is"
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: wp-to-twitter-oauth.php:108
|
31 |
+
msgid ""
|
32 |
+
"If this is wrong, your server will not be able to connect with Twitter. "
|
33 |
+
"(<strong>Note:</strong> your server time may not match your current time, "
|
34 |
+
"but it should be correct for it's own time zone.)"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
#: wp-to-twitter-oauth.php:109
|
38 |
msgid ""
|
39 |
"The process to set up OAuth authentication for your web site is needlessly "
|
158 |
msgid "Disconnect Your WordPress and Twitter Account"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: wp-to-twitter.php:48
|
162 |
msgid ""
|
163 |
"WP to Twitter requires PHP version 5 or above with cURL support. Please "
|
164 |
"upgrade PHP or install cURL to run WP to Twitter."
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: wp-to-twitter.php:69
|
168 |
msgid ""
|
169 |
"WP to Twitter requires WordPress 2.9.2 or a more recent version. <a href="
|
170 |
"\"http://codex.wordpress.org/Upgrading_WordPress\">Please update your "
|
171 |
"WordPress version!</a>"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: wp-to-twitter.php:83
|
175 |
msgid ""
|
176 |
+
"Twitter requires authentication by OAuth. You will need to <a href=\"%s"
|
177 |
+
"\">update your settings</a> to complete installation of WP to Twitter."
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: wp-to-twitter.php:181
|
181 |
msgid "200 OK: Success!"
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: wp-to-twitter.php:185
|
185 |
msgid ""
|
186 |
"400 Bad Request: The request was invalid. This is the status code returned "
|
187 |
"during rate limiting."
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: wp-to-twitter.php:189
|
191 |
msgid "401 Unauthorized: Authentication credentials were missing or incorrect."
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: wp-to-twitter.php:193
|
195 |
msgid ""
|
196 |
"403 Forbidden: The request is understood, but it has been refused. This code "
|
197 |
"is used when requests are understood, but are denied by Twitter. Reasons "
|
198 |
"include exceeding the 140 character limit or the API update limit."
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: wp-to-twitter.php:197
|
202 |
msgid "500 Internal Server Error: Something is broken at Twitter."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: wp-to-twitter.php:201
|
206 |
msgid ""
|
207 |
"503 Service Unavailable: The Twitter servers are up, but overloaded with "
|
208 |
"requests Please try again later."
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: wp-to-twitter.php:205
|
212 |
msgid "502 Bad Gateway: Twitter is down or being upgraded."
|
213 |
msgstr ""
|
214 |
|
215 |
+
#. #-#-#-#-# plugin.pot (WP to Twitter 2.3.0) #-#-#-#-#
|
216 |
#. Plugin Name of the plugin/theme
|
217 |
+
#: wp-to-twitter.php:834
|
218 |
msgid "WP to Twitter"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: wp-to-twitter.php:904
|
222 |
msgid "Custom Twitter Post"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: wp-to-twitter.php:913 wp-to-twitter-manager.php:384
|
226 |
msgid "Make a Donation"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: wp-to-twitter.php:913 wp-to-twitter-manager.php:384
|
230 |
msgid "Get Support"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: wp-to-twitter.php:916
|
234 |
msgid "Don't Tweet this post."
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: wp-to-twitter.php:926
|
238 |
msgid "This URL is direct and has not been shortened: "
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: wp-to-twitter.php:986
|
242 |
msgid "WP to Twitter User Settings"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: wp-to-twitter.php:990
|
246 |
msgid "Use My Twitter Username"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: wp-to-twitter.php:991
|
250 |
msgid "Tweet my posts with an @ reference to my username."
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: wp-to-twitter.php:992
|
254 |
msgid ""
|
255 |
"Tweet my posts with an @ reference to both my username and to the main site "
|
256 |
"username."
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: wp-to-twitter.php:996
|
260 |
msgid "Your Twitter Username"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: wp-to-twitter.php:997
|
264 |
msgid "Enter your own Twitter username."
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: wp-to-twitter.php:1036
|
268 |
msgid "Check the categories you want to tweet:"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: wp-to-twitter.php:1053
|
272 |
msgid "Set Categories"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: wp-to-twitter.php:1077
|
276 |
msgid "<p>Couldn't locate the settings page.</p>"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: wp-to-twitter.php:1082
|
280 |
msgid "Settings"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: wp-to-twitter-manager.php:95
|
284 |
msgid "WP to Twitter is now connected with Twitter."
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: wp-to-twitter-manager.php:105
|
288 |
msgid "OAuth Authentication Data Cleared."
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: wp-to-twitter-manager.php:112
|
292 |
msgid ""
|
293 |
"OAuth Authentication Failed. Your server time is not in sync with the "
|
294 |
"Twitter servers. Talk to your hosting service to see what can be done."
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: wp-to-twitter-manager.php:119
|
298 |
msgid "OAuth Authentication response not understood."
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: wp-to-twitter-manager.php:128
|
302 |
msgid "WP to Twitter Errors Cleared"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: wp-to-twitter-manager.php:135
|
306 |
msgid ""
|
307 |
"Sorry! I couldn't get in touch with the Twitter servers to post your new "
|
308 |
"blog post. Your tweet has been stored in a custom field attached to the "
|
309 |
"post, so you can Tweet it manually if you wish! "
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: wp-to-twitter-manager.php:137
|
313 |
msgid ""
|
314 |
"Sorry! I couldn't get in touch with the Twitter servers to post your "
|
315 |
"<strong>new link</strong>! You'll have to post it manually, I'm afraid. "
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: wp-to-twitter-manager.php:173
|
319 |
msgid "WP to Twitter Advanced Options Updated"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: wp-to-twitter-manager.php:196
|
323 |
msgid ""
|
324 |
"You must add your Bit.ly login and API key in order to shorten URLs with Bit."
|
325 |
"ly."
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: wp-to-twitter-manager.php:200
|
329 |
msgid ""
|
330 |
"You must add your YOURLS remote URL, login, and password in order to shorten "
|
331 |
"URLs with a remote installation of YOURLS."
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: wp-to-twitter-manager.php:204
|
335 |
msgid ""
|
336 |
"You must add your YOURLS server path in order to shorten URLs with a remote "
|
337 |
"installation of YOURLS."
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: wp-to-twitter-manager.php:208
|
341 |
msgid "WP to Twitter Options Updated"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: wp-to-twitter-manager.php:218
|
345 |
msgid "Category limits updated."
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: wp-to-twitter-manager.php:222
|
349 |
msgid "Category limits unset."
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: wp-to-twitter-manager.php:230
|
353 |
msgid "YOURLS password updated. "
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: wp-to-twitter-manager.php:233
|
357 |
msgid ""
|
358 |
"YOURLS password deleted. You will be unable to use your remote YOURLS "
|
359 |
"account to create short URLS."
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: wp-to-twitter-manager.php:235
|
363 |
msgid "Failed to save your YOURLS password! "
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: wp-to-twitter-manager.php:239
|
367 |
msgid "YOURLS username added. "
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: wp-to-twitter-manager.php:243
|
371 |
msgid "YOURLS API url added. "
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: wp-to-twitter-manager.php:246
|
375 |
msgid "YOURLS API url removed. "
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: wp-to-twitter-manager.php:251
|
379 |
msgid "YOURLS local server path added. "
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: wp-to-twitter-manager.php:253
|
383 |
msgid "The path to your YOURLS installation is not correct. "
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: wp-to-twitter-manager.php:257
|
387 |
msgid "YOURLS local server path removed. "
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: wp-to-twitter-manager.php:261
|
391 |
msgid "YOURLS will use Post ID for short URL slug."
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: wp-to-twitter-manager.php:264
|
395 |
msgid "YOURLS will not use Post ID for the short URL slug."
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: wp-to-twitter-manager.php:272
|
399 |
msgid "Su.pr API Key and Username Updated"
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: wp-to-twitter-manager.php:276
|
403 |
msgid ""
|
404 |
"Su.pr API Key and username deleted. Su.pr URLs created by WP to Twitter will "
|
405 |
"no longer be associated with your account. "
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: wp-to-twitter-manager.php:278
|
409 |
msgid "Su.pr API Key not added - <a href='http://su.pr/'>get one here</a>! "
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: wp-to-twitter-manager.php:284
|
413 |
msgid "Bit.ly API Key Updated."
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: wp-to-twitter-manager.php:287
|
417 |
msgid ""
|
418 |
"Bit.ly API Key deleted. You cannot use the Bit.ly API without an API key. "
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: wp-to-twitter-manager.php:289
|
422 |
msgid ""
|
423 |
"Bit.ly API Key not added - <a href='http://bit.ly/account/'>get one here</"
|
424 |
"a>! An API key is required to use the Bit.ly URL shortening service."
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: wp-to-twitter-manager.php:293
|
428 |
msgid " Bit.ly User Login Updated."
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: wp-to-twitter-manager.php:296
|
432 |
msgid ""
|
433 |
"Bit.ly User Login deleted. You cannot use the Bit.ly API without providing "
|
434 |
"your username. "
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: wp-to-twitter-manager.php:298
|
438 |
msgid ""
|
439 |
"Bit.ly Login not added - <a href='http://bit.ly/account/'>get one here</a>! "
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: wp-to-twitter-manager.php:327
|
443 |
msgid "No error information is available for your shortener."
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: wp-to-twitter-manager.php:329
|
447 |
msgid ""
|
448 |
"<li class=\"error\"><strong>WP to Twitter was unable to contact your "
|
449 |
"selected URL shortening service.</strong></li>"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: wp-to-twitter-manager.php:332
|
453 |
msgid ""
|
454 |
"<li><strong>WP to Twitter successfully contacted your selected URL "
|
455 |
"shortening service.</strong> The following link should point to your blog "
|
456 |
"homepage:"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: wp-to-twitter-manager.php:341
|
460 |
msgid ""
|
461 |
"<li><strong>WP to Twitter successfully submitted a status update to Twitter."
|
462 |
"</strong></li>"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: wp-to-twitter-manager.php:344
|
466 |
msgid ""
|
467 |
"<li class=\"error\"><strong>WP to Twitter failed to submit an update to "
|
468 |
"Twitter.</strong></li>"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: wp-to-twitter-manager.php:348
|
472 |
msgid "You have not connected WordPress to Twitter."
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: wp-to-twitter-manager.php:352
|
476 |
msgid ""
|
477 |
"<li class=\"error\"><strong>Your server does not appear to support the "
|
478 |
"required methods for WP to Twitter to function.</strong> You can try it "
|
479 |
"anyway - these tests aren't perfect.</li>"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: wp-to-twitter-manager.php:356
|
483 |
msgid ""
|
484 |
"<li><strong>Your server should run WP to Twitter successfully.</strong></li>"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: wp-to-twitter-manager.php:373
|
488 |
msgid "WP to Twitter Options"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: wp-to-twitter-manager.php:383
|
492 |
msgid "Pledge to new features"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: wp-to-twitter-manager.php:384
|
496 |
msgid "View Settings"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: wp-to-twitter-manager.php:411
|
500 |
msgid "Shortcodes available in post update templates:"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: wp-to-twitter-manager.php:413
|
504 |
msgid "<code>#title#</code>: the title of your blog post"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: wp-to-twitter-manager.php:414
|
508 |
msgid "<code>#blog#</code>: the title of your blog"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: wp-to-twitter-manager.php:415
|
512 |
msgid "<code>#post#</code>: a short excerpt of the post content"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: wp-to-twitter-manager.php:416
|
516 |
msgid "<code>#category#</code>: the first selected category for the post"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: wp-to-twitter-manager.php:417
|
520 |
msgid "<code>#date#</code>: the post date"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: wp-to-twitter-manager.php:418
|
524 |
msgid "<code>#url#</code>: the post URL"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: wp-to-twitter-manager.php:419
|
528 |
msgid "<code>#author#</code>: the post author"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: wp-to-twitter-manager.php:420
|
532 |
msgid ""
|
533 |
"<code>#account#</code>: the twitter @reference for the account (or the "
|
534 |
"author, if author settings are enabled and set.)"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: wp-to-twitter-manager.php:422
|
538 |
msgid ""
|
539 |
"You can also create custom shortcodes to access WordPress custom fields. Use "
|
540 |
"doubled square brackets surrounding the name of your custom field to add the "
|
542 |
"[[custom_field]]</code></p>"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: wp-to-twitter-manager.php:427
|
546 |
msgid ""
|
547 |
"<p>One or more of your last posts has failed to send it's status update to "
|
548 |
"Twitter. Your Tweet has been saved in your post custom fields, and you can "
|
549 |
"re-Tweet it at your leisure.</p>"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: wp-to-twitter-manager.php:431
|
553 |
msgid ""
|
554 |
"<p>The query to the URL shortener API failed, and your URL was not shrunk. "
|
555 |
"The full post URL was attached to your Tweet. Check with your URL shortening "
|
558 |
"blog.bit.ly\">Bit.ly Blog</a>]</p>"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: wp-to-twitter-manager.php:438
|
562 |
msgid "Clear 'WP to Twitter' Error Messages"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: wp-to-twitter-manager.php:451
|
566 |
msgid "Basic Settings"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: wp-to-twitter-manager.php:485
|
570 |
+
msgid "Settings for Comments"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: wp-to-twitter-manager.php:488
|
574 |
+
msgid "Update Twitter when new comments are posted"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: wp-to-twitter-manager.php:489
|
578 |
+
msgid "Text for new comments:"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: wp-to-twitter-manager.php:493
|
582 |
+
msgid "Settings for Links"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: wp-to-twitter-manager.php:496
|
586 |
msgid "Update Twitter when you post a Blogroll link"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: wp-to-twitter-manager.php:497
|
590 |
msgid "Text for new link updates:"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: wp-to-twitter-manager.php:497
|
594 |
msgid ""
|
595 |
"Available shortcodes: <code>#url#</code>, <code>#title#</code>, and "
|
596 |
"<code>#description#</code>."
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: wp-to-twitter-manager.php:501
|
600 |
msgid "Choose your short URL service (account settings below)"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: wp-to-twitter-manager.php:504
|
604 |
msgid "Don't shorten URLs."
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: wp-to-twitter-manager.php:505
|
608 |
msgid "Use Su.pr for my URL shortener."
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: wp-to-twitter-manager.php:506
|
612 |
msgid "Use Bit.ly for my URL shortener."
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: wp-to-twitter-manager.php:507
|
616 |
msgid "YOURLS (installed on this server)"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: wp-to-twitter-manager.php:508
|
620 |
msgid "YOURLS (installed on a remote server)"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: wp-to-twitter-manager.php:509
|
624 |
msgid "Use WordPress as a URL shortener."
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: wp-to-twitter-manager.php:511
|
628 |
msgid ""
|
629 |
"Using WordPress as a URL shortener will send URLs to Twitter in the default "
|
630 |
"URL format for WordPress: <code>http://domain.com/wpdir/?p=123</code>. "
|
631 |
"Google Analytics is not available when using WordPress shortened URLs."
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: wp-to-twitter-manager.php:517
|
635 |
msgid "Save WP->Twitter Options"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: wp-to-twitter-manager.php:526
|
639 |
msgid ""
|
640 |
"<abbr title=\"Uniform Resource Locator\">URL</abbr> Shortener Account "
|
641 |
"Settings"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: wp-to-twitter-manager.php:530
|
645 |
msgid "Your Su.pr account details"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: wp-to-twitter-manager.php:535
|
649 |
msgid "Your Su.pr Username:"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: wp-to-twitter-manager.php:539
|
653 |
msgid ""
|
654 |
"Your Su.pr <abbr title='application programming interface'>API</abbr> Key:"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: wp-to-twitter-manager.php:545
|
658 |
msgid ""
|
659 |
"Don't have a Su.pr account or API key? <a href='http://su.pr/'>Get one here</"
|
660 |
"a>!<br />You'll need an API key in order to associate the URLs you create "
|
661 |
"with your Su.pr account."
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: wp-to-twitter-manager.php:551
|
665 |
msgid "Your Bit.ly account details"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: wp-to-twitter-manager.php:556
|
669 |
msgid "Your Bit.ly username:"
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: wp-to-twitter-manager.php:560
|
673 |
msgid ""
|
674 |
"Your Bit.ly <abbr title='application programming interface'>API</abbr> Key:"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: wp-to-twitter-manager.php:567
|
678 |
msgid "Save Bit.ly API Key"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: wp-to-twitter-manager.php:567
|
682 |
msgid "Clear Bit.ly API Key"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: wp-to-twitter-manager.php:567
|
686 |
msgid ""
|
687 |
"A Bit.ly API key and username is required to shorten URLs via the Bit.ly API "
|
688 |
"and WP to Twitter."
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: wp-to-twitter-manager.php:572
|
692 |
msgid "Your YOURLS account details"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: wp-to-twitter-manager.php:576
|
696 |
msgid "Path to your YOURLS config file (Local installations)"
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: wp-to-twitter-manager.php:577 wp-to-twitter-manager.php:581
|
700 |
msgid "Example:"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: wp-to-twitter-manager.php:580
|
704 |
msgid "URI to the YOURLS API (Remote installations)"
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: wp-to-twitter-manager.php:584
|
708 |
msgid "Your YOURLS username:"
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: wp-to-twitter-manager.php:588
|
712 |
msgid "Your YOURLS password:"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: wp-to-twitter-manager.php:588
|
716 |
msgid "<em>Saved</em>"
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: wp-to-twitter-manager.php:592
|
720 |
msgid "Use Post ID for YOURLS url slug."
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: wp-to-twitter-manager.php:597
|
724 |
msgid "Save YOURLS Account Info"
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: wp-to-twitter-manager.php:597
|
728 |
msgid "Clear YOURLS password"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: wp-to-twitter-manager.php:597
|
732 |
msgid ""
|
733 |
"A YOURLS password and username is required to shorten URLs via the remote "
|
734 |
"YOURLS API and WP to Twitter."
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: wp-to-twitter-manager.php:609
|
738 |
msgid "Advanced Settings"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: wp-to-twitter-manager.php:616
|
742 |
msgid "Advanced Tweet settings"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: wp-to-twitter-manager.php:618
|
746 |
msgid "Add tags as hashtags on Tweets"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: wp-to-twitter-manager.php:618
|
750 |
msgid "Strip nonalphanumeric characters"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: wp-to-twitter-manager.php:619
|
754 |
msgid "Spaces replaced with:"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: wp-to-twitter-manager.php:621
|
758 |
msgid ""
|
759 |
"Default replacement is an underscore (<code>_</code>). Use <code>[ ]</code> "
|
760 |
"to remove spaces entirely."
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: wp-to-twitter-manager.php:624
|
764 |
msgid "Maximum number of tags to include:"
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: wp-to-twitter-manager.php:625
|
768 |
msgid "Maximum length in characters for included tags:"
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: wp-to-twitter-manager.php:626
|
772 |
msgid ""
|
773 |
"These options allow you to restrict the length and number of WordPress tags "
|
774 |
"sent to Twitter as hashtags. Set to <code>0</code> or leave blank to allow "
|
775 |
"any and all tags."
|
776 |
msgstr ""
|
777 |
|
778 |
+
#: wp-to-twitter-manager.php:629
|
779 |
msgid "Length of post excerpt (in characters):"
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: wp-to-twitter-manager.php:629
|
783 |
msgid ""
|
784 |
"By default, extracted from the post itself. If you use the 'Excerpt' field, "
|
785 |
"that will be used instead."
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: wp-to-twitter-manager.php:632
|
789 |
msgid "WP to Twitter Date Formatting:"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: wp-to-twitter-manager.php:633
|
793 |
msgid ""
|
794 |
"Default is from your general settings. <a href='http://codex.wordpress.org/"
|
795 |
"Formatting_Date_and_Time'>Date Formatting Documentation</a>."
|
796 |
msgstr ""
|
797 |
|
798 |
+
#: wp-to-twitter-manager.php:637
|
799 |
msgid "Custom text before all Tweets:"
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: wp-to-twitter-manager.php:638
|
803 |
msgid "Custom text after all Tweets:"
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: wp-to-twitter-manager.php:641
|
807 |
msgid "Custom field for an alternate URL to be shortened and Tweeted:"
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: wp-to-twitter-manager.php:642
|
811 |
msgid ""
|
812 |
"You can use a custom field to send an alternate URL for your post. The value "
|
813 |
"is the name of a custom field containing your external URL."
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: wp-to-twitter-manager.php:646
|
817 |
msgid "Special Cases when WordPress should send a Tweet"
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: wp-to-twitter-manager.php:649
|
821 |
msgid "Do not post status updates by default"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: wp-to-twitter-manager.php:650
|
825 |
msgid ""
|
826 |
"By default, all posts meeting other requirements will be posted to Twitter. "
|
827 |
"Check this to change your setting."
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: wp-to-twitter-manager.php:654
|
831 |
msgid ""
|
832 |
"Send Twitter Updates on remote publication (Post by Email or XMLRPC Client)"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: wp-to-twitter-manager.php:658
|
|
|
|
|
|
|
|
|
|
|
|
|
836 |
msgid "Update Twitter when a post is published using QuickPress"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: wp-to-twitter-manager.php:662
|
840 |
msgid "Google Analytics Settings"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: wp-to-twitter-manager.php:663
|
844 |
msgid ""
|
845 |
"You can track the response from Twitter using Google Analytics by defining a "
|
846 |
"campaign identifier here. You can either define a static identifier or a "
|
850 |
"additional variable."
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: wp-to-twitter-manager.php:667
|
854 |
msgid "Use a Static Identifier with WP-to-Twitter"
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: wp-to-twitter-manager.php:668
|
858 |
msgid "Static Campaign identifier for Google Analytics:"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: wp-to-twitter-manager.php:672
|
862 |
msgid "Use a dynamic identifier with Google Analytics and WP-to-Twitter"
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: wp-to-twitter-manager.php:673
|
866 |
msgid "What dynamic identifier would you like to use?"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: wp-to-twitter-manager.php:675
|
870 |
msgid "Category"
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: wp-to-twitter-manager.php:676
|
874 |
msgid "Post ID"
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: wp-to-twitter-manager.php:677
|
878 |
msgid "Post Title"
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: wp-to-twitter-manager.php:678 wp-to-twitter-manager.php:692
|
882 |
msgid "Author"
|
883 |
msgstr ""
|
884 |
|
885 |
+
#: wp-to-twitter-manager.php:683
|
886 |
msgid "Individual Authors"
|
887 |
msgstr ""
|
888 |
|
889 |
+
#: wp-to-twitter-manager.php:686
|
890 |
msgid "Authors have individual Twitter accounts"
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: wp-to-twitter-manager.php:686
|
894 |
msgid ""
|
895 |
"Authors can set their username in their user profile. As of version 2.2.0, "
|
896 |
"this feature no longer allows authors to post to their own Twitter accounts. "
|
899 |
"user accounts are not enabled.)"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: wp-to-twitter-manager.php:689
|
903 |
msgid "Choose the lowest user group that can add their Twitter information"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: wp-to-twitter-manager.php:690
|
907 |
msgid "Subscriber"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: wp-to-twitter-manager.php:691
|
911 |
msgid "Contributor"
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: wp-to-twitter-manager.php:693
|
915 |
msgid "Editor"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: wp-to-twitter-manager.php:694
|
919 |
msgid "Administrator"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: wp-to-twitter-manager.php:699
|
923 |
msgid "Disable Error Messages"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: wp-to-twitter-manager.php:702
|
927 |
msgid "Disable global URL shortener error messages."
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: wp-to-twitter-manager.php:706
|
931 |
msgid "Disable global Twitter API error messages."
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: wp-to-twitter-manager.php:710
|
935 |
msgid "Disable notification to implement OAuth"
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: wp-to-twitter-manager.php:714
|
939 |
msgid "Get Debugging Data for OAuth Connection"
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: wp-to-twitter-manager.php:718
|
943 |
+
msgid "I made a donation, so stop showing me ads, please."
|
944 |
+
msgstr ""
|
945 |
+
|
946 |
+
#: wp-to-twitter-manager.php:724
|
947 |
msgid "Save Advanced WP->Twitter Options"
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: wp-to-twitter-manager.php:734
|
951 |
msgid "Limit Updating Categories"
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: wp-to-twitter-manager.php:738
|
955 |
msgid ""
|
956 |
"Select which blog categories will be Tweeted. Uncheck all categories to "
|
957 |
"disable category limits."
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: wp-to-twitter-manager.php:741
|
961 |
msgid "<em>Category limits are disabled.</em>"
|
962 |
msgstr ""
|
963 |
|
964 |
+
#: wp-to-twitter-manager.php:755
|
965 |
msgid "Check Support"
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: wp-to-twitter-manager.php:755
|
969 |
msgid ""
|
970 |
"Check whether your server supports <a href=\"http://www.joedolson.com/"
|
971 |
"articles/wp-to-twitter/\">WP to Twitter's</a> queries to the Twitter and URL "
|