Version Description
- Using tag slug instead of tag name is a problem for languages with characters outside of RFC 1738 URL specs. Transformed into selectable option, default off.
Download this release
Release Info
Developer | joedolson |
Plugin | WP to Twitter |
Version | 2.5.9 |
Comparing to | |
See all releases |
Code changes from version 2.4.5 to 2.5.9
- functions.php +22 -26
- jd_twitterOAuth.php +18 -3
- js/jquery.charcount.js +7 -2
- wp-to-twitter-be_BY.mo → lang/wp-to-twitter-be_BY.mo +0 -0
- wp-to-twitter-be_BY.po → lang/wp-to-twitter-be_BY.po +0 -0
- lang/wp-to-twitter-ca.mo +0 -0
- lang/wp-to-twitter-ca.po +1170 -0
- lang/wp-to-twitter-da_DA.mo +0 -0
- lang/wp-to-twitter-da_DA.po +1158 -0
- lang/wp-to-twitter-de_DE.mo +0 -0
- lang/wp-to-twitter-de_DE.po +1158 -0
- wp-to-twitter-es_ES.mo → lang/wp-to-twitter-es_ES.mo +0 -0
- wp-to-twitter-es_ES.po → lang/wp-to-twitter-es_ES.po +0 -0
- wp-to-twitter-et_ET.mo → lang/wp-to-twitter-et_ET.mo +0 -0
- wp-to-twitter-et_ET.po → lang/wp-to-twitter-et_ET.po +0 -0
- lang/wp-to-twitter-fr_FR.mo +0 -0
- lang/wp-to-twitter-fr_FR.po +1158 -0
- wp-to-twitter-ga_IR.mo → lang/wp-to-twitter-ga_IR.mo +0 -0
- wp-to-twitter-ga_IR.po → lang/wp-to-twitter-ga_IR.po +0 -0
- lang/wp-to-twitter-it_IT.mo +0 -0
- lang/wp-to-twitter-it_IT.po +1158 -0
- wp-to-twitter-ja.mo → lang/wp-to-twitter-ja.mo +0 -0
- wp-to-twitter-ja.po → lang/wp-to-twitter-ja.po +0 -0
- wp-to-twitter-lt_LT.mo → lang/wp-to-twitter-lt_LT.mo +0 -0
- wp-to-twitter-lt_LT.po → lang/wp-to-twitter-lt_LT.po +0 -0
- lang/wp-to-twitter-nl_NL.mo +0 -0
- lang/wp-to-twitter-nl_NL.po +1095 -0
- wp-to-twitter-pt_BR.mo → lang/wp-to-twitter-pt_BR.mo +0 -0
- wp-to-twitter-pt_BR.po → lang/wp-to-twitter-pt_BR.po +0 -0
- wp-to-twitter-ro_RO.mo → lang/wp-to-twitter-ro_RO.mo +0 -0
- wp-to-twitter-ro_RO.po → lang/wp-to-twitter-ro_RO.po +0 -0
- wp-to-twitter-ru_RU.mo → lang/wp-to-twitter-ru_RU.mo +0 -0
- wp-to-twitter-ru_RU.po → lang/wp-to-twitter-ru_RU.po +0 -0
- wp-to-twitter-ua_UA.mo → lang/wp-to-twitter-ua_UA.mo +0 -0
- wp-to-twitter-ua_UA.po → lang/wp-to-twitter-ua_UA.po +0 -0
- wp-to-twitter-zh_CN.mo → lang/wp-to-twitter-zh_CN.mo +0 -0
- wp-to-twitter-zh_CN.po → lang/wp-to-twitter-zh_CN.po +0 -0
- lang/wp-to-twitter-zh_TW.mo +0 -0
- lang/wp-to-twitter-zh_TW.po +1082 -0
- wp-to-twitter.pot → lang/wp-to-twitter.pot +439 -333
- readme.txt +151 -25
- styles.css +3 -2
- uninstall.php +1 -0
- wp-to-twitter-da_DA.mo +0 -0
- wp-to-twitter-da_DA.po +0 -816
- wp-to-twitter-de_DE.mo +0 -0
- wp-to-twitter-de_DE.po +0 -578
- wp-to-twitter-fr_FR.mo +0 -0
- wp-to-twitter-fr_FR.po +0 -763
- wp-to-twitter-it_IT.mo +0 -0
- wp-to-twitter-it_IT.po +0 -1462
- wp-to-twitter-manager.php +234 -130
- wp-to-twitter-nl_NL.mo +0 -0
- wp-to-twitter-nl_NL.po +0 -1094
- wp-to-twitter-oauth.php +27 -11
- wp-to-twitter-shorteners.php +208 -0
- wp-to-twitter-zh_TW.mo +0 -0
- wp-to-twitter-zh_TW.po +0 -1162
- wp-to-twitter.php +663 -553
functions.php
CHANGED
@@ -18,10 +18,10 @@ function jd_remote_json( $url, $array=true ) {
|
|
18 |
|
19 |
function is_valid_url( $url ) {
|
20 |
if (is_string($url)) {
|
21 |
-
|
22 |
-
|
23 |
} else {
|
24 |
-
|
25 |
}
|
26 |
}
|
27 |
// Fetch a remote page. Input url, return content
|
@@ -155,6 +155,7 @@ $options = array(
|
|
155 |
'jd_twit_custom_url'=>get_option( 'jd_twit_custom_url' ),
|
156 |
|
157 |
'jd_tweet_default'=>get_option( 'jd_tweet_default' ),
|
|
|
158 |
'jd_twit_remote'=>get_option( 'jd_twit_remote' ),
|
159 |
|
160 |
'use-twitter-analytics'=>get_option( 'use-twitter-analytics' ),
|
@@ -222,7 +223,7 @@ function wtt_option_selected($field,$value,$type='checkbox') {
|
|
222 |
function wpt_date_compare($early,$late) {
|
223 |
$firstdate = strtotime($early);
|
224 |
$lastdate = strtotime($late);
|
225 |
-
if ($
|
226 |
return 1;
|
227 |
} else {
|
228 |
return 0;
|
@@ -242,15 +243,12 @@ get_currentuserinfo();
|
|
242 |
// send fields for all plugins
|
243 |
$wp_version = get_bloginfo('version');
|
244 |
$home_url = home_url();
|
245 |
-
$wp_url =
|
246 |
$language = get_bloginfo('language');
|
247 |
$charset = get_bloginfo('charset');
|
248 |
// server
|
249 |
$php_version = phpversion();
|
250 |
-
|
251 |
-
$curl_init = ( function_exists('curl_init') )?'yes':'no';
|
252 |
-
$curl_exec = ( function_exists('curl_exec') )?'yes':'no';
|
253 |
-
|
254 |
// theme data
|
255 |
if ( function_exists( 'wp_get_theme' ) ) {
|
256 |
$theme = wp_get_theme();
|
@@ -259,7 +257,7 @@ get_currentuserinfo();
|
|
259 |
$theme_parent = $theme->Template;
|
260 |
$theme_version = $theme->Version;
|
261 |
} else {
|
262 |
-
$theme_path = get_stylesheet_directory().'/style.css';
|
263 |
$theme = get_theme_data($theme_path);
|
264 |
$theme_name = $theme['Name'];
|
265 |
$theme_uri = $theme['ThemeURI'];
|
@@ -282,7 +280,7 @@ get_currentuserinfo();
|
|
282 |
================ Installation Data ====================
|
283 |
==WP to Twitter==
|
284 |
Version: $version
|
285 |
-
Twitter username:
|
286 |
$license
|
287 |
|
288 |
==WordPress:==
|
@@ -296,8 +294,6 @@ Charset: $charset
|
|
296 |
PHP Version: $php_version
|
297 |
Server Software: $_SERVER[SERVER_SOFTWARE]
|
298 |
User Agent: $_SERVER[HTTP_USER_AGENT]
|
299 |
-
cURL Init: $curl_init
|
300 |
-
cURL Exec: $curl_exec
|
301 |
|
302 |
==Theme:==
|
303 |
Name: $theme_name
|
@@ -314,7 +310,7 @@ $plugins_string
|
|
314 |
$request = ( !empty($_POST['support_request']) )?stripslashes($_POST['support_request']):false;
|
315 |
$has_donated = ( $_POST['has_donated'] == 'on')?"Donor":"No donation";
|
316 |
$has_read_faq = ( $_POST['has_read_faq'] == 'on')?"Read FAQ":false;
|
317 |
-
if ( function_exists( 'wpt_pro_exists' ) ) { $pro = " PRO"; } else { $pro = ''; }
|
318 |
$subject = "WP to Twitter$pro support request. $has_donated";
|
319 |
$message = $request ."\n\n". $data;
|
320 |
$from = "From: \"$current_user->display_name\" <$current_user->user_email>\r\n";
|
@@ -326,20 +322,20 @@ $plugins_string
|
|
326 |
} else {
|
327 |
wp_mail( "plugins@joedolson.com",$subject,$message,$from );
|
328 |
if ( $has_donated == 'Donor' || $has_purchased == 'Purchaser' ) {
|
329 |
-
echo "<div class='message updated'><p>".__('Thank you for supporting the continuing development of this plug-in! I\'ll get back to you as soon as I can.','wp-to-twitter')."</p></div>";
|
330 |
} else {
|
331 |
-
echo "<div class='message updated'><p>".__(
|
332 |
}
|
333 |
}
|
334 |
}
|
335 |
-
if ( function_exists( 'wpt_pro_exists' ) ) { $checked="checked='checked'"; } else { $checked=''; }
|
336 |
$admin_url = ( is_plugin_active('wp-tweets-pro/wpt-pro-functions.php') )?admin_url('admin.php?page=wp-tweets-pro'):admin_url('options-general.php?page=wp-to-twitter/wp-to-twitter.php');
|
337 |
|
338 |
echo "
|
339 |
<form method='post' action='$admin_url'>
|
340 |
<div><input type='hidden' name='_wpnonce' value='".wp_create_nonce('wp-to-twitter-nonce')."' /></div>
|
341 |
<div>";
|
342 |
-
if ( function_exists( 'wpt_pro_exists' ) ) {
|
343 |
echo "
|
344 |
<p>".
|
345 |
__('Please include your license key in your support request.','wp-to-twitter')
|
@@ -352,16 +348,16 @@ $plugins_string
|
|
352 |
}
|
353 |
echo "
|
354 |
<p>
|
355 |
-
<code>".__('
|
356 |
-
</p>
|
357 |
-
<p>
|
358 |
-
<input type='checkbox' name='has_read_faq' id='has_read_faq' value='on' /> <label for='has_read_faq'>".__('I have read <a href="http://www.joedolson.com/articles/wp-to-twitter/support-2/">the FAQ for this plug-in</a>.','wp-to-twitter')." <span>(required)</span></label>
|
359 |
-
</p>
|
360 |
-
<p>
|
361 |
-
<input type='checkbox' name='has_donated' id='has_donated' value='on' $checked /> <label for='has_donated'>".__('I have <a href="http://www.joedolson.com/donate.php">made a donation to help support this plug-in</a>.','wp-to-twitter')."</label>
|
362 |
</p>
|
363 |
<p>
|
364 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
365 |
</p>
|
366 |
<p>
|
367 |
<input type='submit' value='".__('Send Support Request','wp-to-twitter')."' name='wpt_support' class='button-primary' />
|
18 |
|
19 |
function is_valid_url( $url ) {
|
20 |
if (is_string($url)) {
|
21 |
+
$url = urldecode($url);
|
22 |
+
return preg_match('|^http(s)?://[a-z0-9-]+(.[a-z0-9-]+)*(:[0-9]+)?(/.*)?$|i', $url);
|
23 |
} else {
|
24 |
+
return false;
|
25 |
}
|
26 |
}
|
27 |
// Fetch a remote page. Input url, return content
|
155 |
'jd_twit_custom_url'=>get_option( 'jd_twit_custom_url' ),
|
156 |
|
157 |
'jd_tweet_default'=>get_option( 'jd_tweet_default' ),
|
158 |
+
'jd_tweet_default_edit'=>get_option( 'jd_tweet_default_edit' ),
|
159 |
'jd_twit_remote'=>get_option( 'jd_twit_remote' ),
|
160 |
|
161 |
'use-twitter-analytics'=>get_option( 'use-twitter-analytics' ),
|
223 |
function wpt_date_compare($early,$late) {
|
224 |
$firstdate = strtotime($early);
|
225 |
$lastdate = strtotime($late);
|
226 |
+
if ($firstdate <= $lastdate ) { // if post_modified is before or equal to post_date
|
227 |
return 1;
|
228 |
} else {
|
229 |
return 0;
|
243 |
// send fields for all plugins
|
244 |
$wp_version = get_bloginfo('version');
|
245 |
$home_url = home_url();
|
246 |
+
$wp_url = site_url();
|
247 |
$language = get_bloginfo('language');
|
248 |
$charset = get_bloginfo('charset');
|
249 |
// server
|
250 |
$php_version = phpversion();
|
251 |
+
|
|
|
|
|
|
|
252 |
// theme data
|
253 |
if ( function_exists( 'wp_get_theme' ) ) {
|
254 |
$theme = wp_get_theme();
|
257 |
$theme_parent = $theme->Template;
|
258 |
$theme_version = $theme->Version;
|
259 |
} else {
|
260 |
+
$theme_path = get_stylesheet_directory().'/style.css';
|
261 |
$theme = get_theme_data($theme_path);
|
262 |
$theme_name = $theme['Name'];
|
263 |
$theme_uri = $theme['ThemeURI'];
|
280 |
================ Installation Data ====================
|
281 |
==WP to Twitter==
|
282 |
Version: $version
|
283 |
+
Twitter username: http://twitter.com/$wtt_twitter_username
|
284 |
$license
|
285 |
|
286 |
==WordPress:==
|
294 |
PHP Version: $php_version
|
295 |
Server Software: $_SERVER[SERVER_SOFTWARE]
|
296 |
User Agent: $_SERVER[HTTP_USER_AGENT]
|
|
|
|
|
297 |
|
298 |
==Theme:==
|
299 |
Name: $theme_name
|
310 |
$request = ( !empty($_POST['support_request']) )?stripslashes($_POST['support_request']):false;
|
311 |
$has_donated = ( $_POST['has_donated'] == 'on')?"Donor":"No donation";
|
312 |
$has_read_faq = ( $_POST['has_read_faq'] == 'on')?"Read FAQ":false;
|
313 |
+
if ( function_exists( 'wpt_pro_exists' ) && wpt_pro_exists() == true ) { $pro = " PRO"; } else { $pro = ''; }
|
314 |
$subject = "WP to Twitter$pro support request. $has_donated";
|
315 |
$message = $request ."\n\n". $data;
|
316 |
$from = "From: \"$current_user->display_name\" <$current_user->user_email>\r\n";
|
322 |
} else {
|
323 |
wp_mail( "plugins@joedolson.com",$subject,$message,$from );
|
324 |
if ( $has_donated == 'Donor' || $has_purchased == 'Purchaser' ) {
|
325 |
+
echo "<div class='message updated'><p>".sprintf(__('Thank you for supporting the continuing development of this plug-in! I\'ll get back to you as soon as I can. Please ensure that you can receive email at <code>%s</code>.','wp-to-twitter'),$current_user->user_email)."</p></div>";
|
326 |
} else {
|
327 |
+
echo "<div class='message updated'><p>".sprintf(__("Thanks for using WP to Twitter. Please ensure that you can receive email at <code>%s</code>.",'wp-to-twitter'),$current_user->user_email)."</p></div>";
|
328 |
}
|
329 |
}
|
330 |
}
|
331 |
+
if ( function_exists( 'wpt_pro_exists' ) && wpt_pro_exists() == true ) { $checked="checked='checked'"; } else { $checked=''; }
|
332 |
$admin_url = ( is_plugin_active('wp-tweets-pro/wpt-pro-functions.php') )?admin_url('admin.php?page=wp-tweets-pro'):admin_url('options-general.php?page=wp-to-twitter/wp-to-twitter.php');
|
333 |
|
334 |
echo "
|
335 |
<form method='post' action='$admin_url'>
|
336 |
<div><input type='hidden' name='_wpnonce' value='".wp_create_nonce('wp-to-twitter-nonce')."' /></div>
|
337 |
<div>";
|
338 |
+
if ( function_exists( 'wpt_pro_exists' ) && wpt_pro_exists() == true ) {
|
339 |
echo "
|
340 |
<p>".
|
341 |
__('Please include your license key in your support request.','wp-to-twitter')
|
348 |
}
|
349 |
echo "
|
350 |
<p>
|
351 |
+
<code>".__('Reply to:','wp-to-twitter')." \"$current_user->display_name\" <$current_user->user_email></code>
|
|
|
|
|
|
|
|
|
|
|
|
|
352 |
</p>
|
353 |
<p>
|
354 |
+
<input type='checkbox' name='has_read_faq' id='has_read_faq' value='on' /> <label for='has_read_faq'>".sprintf(__('I have read <a href="%1$s">the FAQ for this plug-in</a> <span>(required)</span>','wp-to-twitter'),'http://www.joedolson.com/articles/wp-to-twitter/support-2/')."
|
355 |
+
</p>
|
356 |
+
<p>
|
357 |
+
<input type='checkbox' name='has_donated' id='has_donated' value='on' $checked /> <label for='has_donated'>".sprintf(__('I have <a href="%1$s">made a donation to help support this plug-in</a>','wp-to-twitter'),'http://www.joedolson.com/donate.php')."</label>
|
358 |
+
</p>
|
359 |
+
<p>
|
360 |
+
<label for='support_request'>".__('Support Request:','wp-to-twitter')."</label><br /><textarea name='support_request' id='support_request' cols='80' rows='10'>".stripslashes($request)."</textarea>
|
361 |
</p>
|
362 |
<p>
|
363 |
<input type='submit' value='".__('Send Support Request','wp-to-twitter')."' name='wpt_support' class='button-primary' />
|
jd_twitterOAuth.php
CHANGED
@@ -20,7 +20,7 @@ class jd_TwitterOAuth {
|
|
20 |
/* Contains the last API call. */
|
21 |
public $url;
|
22 |
/* Set up the API root URL. */
|
23 |
-
public $host = "http://api.twitter.com/1/";
|
24 |
/* Set timeout default. */
|
25 |
public $format = 'json';
|
26 |
/* Decode returned json data. */
|
@@ -130,6 +130,16 @@ class jd_TwitterOAuth {
|
|
130 |
return $response;
|
131 |
}
|
132 |
/**
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
* Wrapper for GET requests
|
134 |
*/
|
135 |
function get($url, $parameters = array()) {
|
@@ -158,9 +168,14 @@ class jd_TwitterOAuth {
|
|
158 |
case 'POST':
|
159 |
$url = $req->get_normalized_http_url();
|
160 |
$args = wp_parse_args($req->to_postdata());
|
161 |
-
$response = wp_remote_post( $url, array('body'=>$args));
|
162 |
break;
|
163 |
-
|
|
|
|
|
|
|
|
|
|
|
164 |
|
165 |
if ( is_wp_error( $response ) ) return false;
|
166 |
|
20 |
/* Contains the last API call. */
|
21 |
public $url;
|
22 |
/* Set up the API root URL. */
|
23 |
+
public $host = "http://api.twitter.com/1.1/";
|
24 |
/* Set timeout default. */
|
25 |
public $format = 'json';
|
26 |
/* Decode returned json data. */
|
130 |
return $response;
|
131 |
}
|
132 |
/**
|
133 |
+
* Wrapper for MEDIA requests
|
134 |
+
*/
|
135 |
+
function media($url, $parameters = array()) {
|
136 |
+
$response = $this->WPOAuthRequest( $url,$parameters,'MEDIA' );
|
137 |
+
if ($this->format === 'json' && $this->decode_json) {
|
138 |
+
return json_decode($response);
|
139 |
+
}
|
140 |
+
return $response;
|
141 |
+
}
|
142 |
+
/**
|
143 |
* Wrapper for GET requests
|
144 |
*/
|
145 |
function get($url, $parameters = array()) {
|
168 |
case 'POST':
|
169 |
$url = $req->get_normalized_http_url();
|
170 |
$args = wp_parse_args($req->to_postdata());
|
171 |
+
$response = wp_remote_post( $url, array('body'=>$args,'timeout' => 30));
|
172 |
break;
|
173 |
+
case 'MEDIA':
|
174 |
+
$url = $req->get_normalized_http_url();
|
175 |
+
$args = wp_parse_args($req->to_postdata());
|
176 |
+
$response = wp_remote_post( $url, array( 'headers'=>array('Content-type'=>'multipart/form-data'),'body'=>$args,'timeout' => 30 ) );
|
177 |
+
break;
|
178 |
+
}
|
179 |
|
180 |
if ( is_wp_error( $response ) ) return false;
|
181 |
|
js/jquery.charcount.js
CHANGED
@@ -27,12 +27,17 @@
|
|
27 |
cssExceeded: 'exceeded',
|
28 |
counterText: ''
|
29 |
};
|
30 |
-
|
31 |
var options = $.extend(defaults, options);
|
32 |
|
33 |
function calculate(obj){
|
34 |
var count = $(obj).val().length;
|
35 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
if(available <= options.warning && available >= 0){
|
37 |
$(obj).next().addClass(options.cssWarning);
|
38 |
} else {
|
27 |
cssExceeded: 'exceeded',
|
28 |
counterText: ''
|
29 |
};
|
|
|
30 |
var options = $.extend(defaults, options);
|
31 |
|
32 |
function calculate(obj){
|
33 |
var count = $(obj).val().length;
|
34 |
+
// supported shortcodes
|
35 |
+
var urlcount = $(obj).val().indexOf('#url#') > -1 ? 15 : 0;
|
36 |
+
var titlecount = $(obj).val().indexOf('#title#') > -1 ? ($('#title').val().length-7) : 0;
|
37 |
+
var namecount = $(obj).val().indexOf('#blog#') > -1 ? ($('#wp-admin-bar-site-name').val().length-6) : 0;
|
38 |
+
|
39 |
+
var available = options.allowed - (count+urlcount+titlecount+namecount);
|
40 |
+
|
41 |
if(available <= options.warning && available >= 0){
|
42 |
$(obj).next().addClass(options.cssWarning);
|
43 |
} else {
|
wp-to-twitter-be_BY.mo → lang/wp-to-twitter-be_BY.mo
RENAMED
File without changes
|
wp-to-twitter-be_BY.po → lang/wp-to-twitter-be_BY.po
RENAMED
File without changes
|
lang/wp-to-twitter-ca.mo
ADDED
Binary file
|
lang/wp-to-twitter-ca.po
ADDED
@@ -0,0 +1,1170 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of WP to Twitter in Catalan
|
2 |
+
# This file is distributed under the same license as the WP to Twitter package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2013-01-01 21:51:50+0000\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/0.1\n"
|
11 |
+
"Project-Id-Version: WP to Twitter\n"
|
12 |
+
|
13 |
+
#: functions.php:330
|
14 |
+
msgid "Thank you for supporting the continuing development of this plug-in! I'll get back to you as soon as I can. Please ensure that you can receive email at <code>%s</code>."
|
15 |
+
msgstr "Gràcies pel vostre ajut per continuar desenvolupant aquest plug-in! Ens posarem en contacte amb vostè tan aviat com sigui possible, Sisplau, asseguri's que pot rebre emails a <code>%s</code>."
|
16 |
+
|
17 |
+
#: functions.php:332
|
18 |
+
msgid "Thanks for using WP to Twitter. Please ensure that you can receive email at <code>%s</code>."
|
19 |
+
msgstr "Gràcies per utilitzar WP to Twitter. Sisplau, asseguri's que pot rebre emails a <code>%s</code>."
|
20 |
+
|
21 |
+
#: functions.php:356
|
22 |
+
msgid "Reply to:"
|
23 |
+
msgstr "Respondre a:"
|
24 |
+
|
25 |
+
#: wp-to-twitter-manager.php:838
|
26 |
+
msgid "The lowest user group that can add their Twitter information"
|
27 |
+
msgstr "El grup d'usuaris més baix que pot afegir la seva informació de Twitter"
|
28 |
+
|
29 |
+
#: wp-to-twitter-manager.php:843
|
30 |
+
msgid "The lowest user group that can see the Custom Tweet options when posting"
|
31 |
+
msgstr "El grup d'usuaris més baix que pot veure les opcions de tuit personalitzat quan publica"
|
32 |
+
|
33 |
+
#: wp-to-twitter-manager.php:848
|
34 |
+
msgid "The lowest user group that can toggle the Tweet/Don't Tweet option"
|
35 |
+
msgstr "El grup d'usuaris més baix que pot activar/desactivar l'opció \"Tuiteja / No Tuitejis\""
|
36 |
+
|
37 |
+
#: wp-to-twitter-manager.php:853
|
38 |
+
msgid "The lowest user group that can send Twitter updates"
|
39 |
+
msgstr "El grup d'usuaris més baix que pot enviar actualitzacions de Twitter"
|
40 |
+
|
41 |
+
#: wp-to-twitter-manager.php:981
|
42 |
+
msgid "<code>#author#</code>: the post author (@reference if available, otherwise display name)"
|
43 |
+
msgstr "<code>#author#</code>: l'autor de la publicació (@referència si és possible, d'altra banda mostra el nom)"
|
44 |
+
|
45 |
+
#: wp-to-twitter-manager.php:982
|
46 |
+
msgid "<code>#displayname#</code>: post author's display name"
|
47 |
+
msgstr "<code>#displayname#</code>: nom que es mostrarà com a autor de la publicació"
|
48 |
+
|
49 |
+
#: wp-to-twitter.php:73
|
50 |
+
msgid "WP to Twitter requires WordPress 3.0.6 or a more recent version <a href=\"http://codex.wordpress.org/Upgrading_WordPress\">Please update WordPress to continue using WP to Twitter with all features!</a>"
|
51 |
+
msgstr "WP to Twitter requereix WordPress 3.0.6 o una versió més recent <a href=\"http://codex.wordpress.org/Upgrading_WordPress\">Sisplau actualitzeu WordPress per continuar utilitzant WP to Twitter amb totes les seves característiques!"
|
52 |
+
|
53 |
+
#: wp-to-twitter.php:285
|
54 |
+
msgid "This tweet was blank and could not be sent to Twitter."
|
55 |
+
msgstr "Aquest tuit està en blanc i no pot ser enviat a Twitter."
|
56 |
+
|
57 |
+
#: wp-to-twitter.php:336
|
58 |
+
msgid "404 Not Found: The URI requested is invalid or the resource requested does not exist."
|
59 |
+
msgstr "404 No trobat: La direcció demanada és invàlida o el recurs que heu demanat no existeix."
|
60 |
+
|
61 |
+
#: wp-to-twitter.php:340
|
62 |
+
msgid "406 Not Acceptable: Invalid Format Specified."
|
63 |
+
msgstr "406 No acceptable: El format especificat és invàlid."
|
64 |
+
|
65 |
+
#: wp-to-twitter.php:344
|
66 |
+
msgid "429 Too Many Requests: You have exceeded your rate limits."
|
67 |
+
msgstr "429 Massa peticions: Heu excedit el vostre límit de quota."
|
68 |
+
|
69 |
+
#: wp-to-twitter.php:360
|
70 |
+
msgid "504 Gateway Timeout: The Twitter servers are up, but the request couldn't be serviced due to some failure within our stack. Try again later."
|
71 |
+
msgstr "504 Temps vençut d'entrada: Els servidors de Twitter estan funcionant, però la petició no pot ser servida per algun problema a la vostra pila. Torneu-ho a provar més tard."
|
72 |
+
|
73 |
+
#: wp-to-twitter.php:1385
|
74 |
+
msgid "Your prepended Tweet text; not part of your template."
|
75 |
+
msgstr "El text del seu tuit avantposat; no part de la seva plantilla"
|
76 |
+
|
77 |
+
#: wp-to-twitter.php:1388
|
78 |
+
msgid "Your appended Tweet text; not part of your template."
|
79 |
+
msgstr "El seu text del seu tuit afegit; no part de la seva plantilla."
|
80 |
+
|
81 |
+
#: wp-to-twitter.php:1442
|
82 |
+
msgid "Tweets are no more than 140 characters; Twitter counts URLs as 20 characters. Template tags: <code>#url#</code>, <code>#title#</code>, <code>#post#</code>, <code>#category#</code>, <code>#date#</code>, <code>#modified#</code>, <code>#author#</code>, <code>#account#</code>, <code>#tags#</code>, or <code>#blog#</code>."
|
83 |
+
msgstr "Els tuits no poden superar 140 caràcters; Twitter compta les direccions com 20 caràcters. Etiquetes de plantilla: <code>#url#</code>, <code>#title#</code>, <code>#post#</code>, <code>#category#</code>, <code>#date#</code>, <code>#modified#</code>, <code>#author#</code>, <code>#account#</code>, <code>#tags#</code>, o bé <code>#blog#</code>."
|
84 |
+
|
85 |
+
#: wp-to-twitter.php:1454
|
86 |
+
msgid "Your role does not have the ability to Post Tweets from this site."
|
87 |
+
msgstr "El seu perfil no te la possibilitat de postejar tuits des d'aquest lloc."
|
88 |
+
|
89 |
+
#: wp-to-twitter.php:1578
|
90 |
+
msgid "Hide account name in Tweets"
|
91 |
+
msgstr "Ocultar el nom de la compta als tuits"
|
92 |
+
|
93 |
+
#: wp-to-twitter.php:1579
|
94 |
+
msgid "Do not display my account in the #account# template tag."
|
95 |
+
msgstr "No mostris el meu compte a l'etiqueta #account# de plantilla."
|
96 |
+
|
97 |
+
#: functions.php:359
|
98 |
+
msgid "I have read <a href=\"%1$s\">the FAQ for this plug-in</a> <span>(required)</span>"
|
99 |
+
msgstr "He llegit <a href=\"%1$s\">les FAQ per aquest plug-in</a> <span>(requerit)</span>"
|
100 |
+
|
101 |
+
#: functions.php:362
|
102 |
+
msgid "I have <a href=\"%1$s\">made a donation to help support this plug-in</a>"
|
103 |
+
msgstr "He fet <a href=\"%1$s\">una donació per donar suport a aquest plug-in</a>"
|
104 |
+
|
105 |
+
#: functions.php:365
|
106 |
+
msgid "Support Request:"
|
107 |
+
msgstr "Petició de suport:"
|
108 |
+
|
109 |
+
#: wp-to-twitter-manager.php:574
|
110 |
+
msgid "Settings for type \"%1$s\""
|
111 |
+
msgstr "Ajusts pel tipus \"%1$s\""
|
112 |
+
|
113 |
+
#: wp-to-twitter-manager.php:577
|
114 |
+
msgid "Update when %1$s %2$s is published"
|
115 |
+
msgstr "Actualitza quan %1$s %2$s és publicat"
|
116 |
+
|
117 |
+
#: wp-to-twitter-manager.php:577
|
118 |
+
msgid "Text for new %1$s updates"
|
119 |
+
msgstr "Text per a noves actualitzacions de %1$s"
|
120 |
+
|
121 |
+
#: wp-to-twitter-manager.php:581
|
122 |
+
msgid "Update when %1$s %2$s is edited"
|
123 |
+
msgstr "Actualitza quan %1$s %2$s s'edita"
|
124 |
+
|
125 |
+
#: wp-to-twitter-manager.php:581
|
126 |
+
msgid "Text for %1$s editing updates"
|
127 |
+
msgstr "Text per quan s'editen actualitzacions de %1$s"
|
128 |
+
|
129 |
+
#: wp-to-twitter-oauth.php:192
|
130 |
+
msgid "Your server timezone (should be UTC,GMT,Europe/London or equivalent):"
|
131 |
+
msgstr "La zona horària del seu servidor (ha de ser UTC, GMT, Europa/Londres o equivalent):"
|
132 |
+
|
133 |
+
#: wp-to-twitter-manager.php:555
|
134 |
+
msgid "Use Twitter Friendly Links."
|
135 |
+
msgstr "Utilitza enllaços amigables amb Twitter."
|
136 |
+
|
137 |
+
#: wp-to-twitter-manager.php:653
|
138 |
+
msgid "View your Bit.ly username and API key"
|
139 |
+
msgstr "Vegi el seu nom d'usuari de Bit.ly i la seva clau API"
|
140 |
+
|
141 |
+
#: wp-to-twitter-manager.php:697
|
142 |
+
msgid "Your shortener does not require any account settings."
|
143 |
+
msgstr "El seu escurçador no requereix de cap ajust de compte."
|
144 |
+
|
145 |
+
#: wp-to-twitter.php:314
|
146 |
+
msgid "Your Twitter application does not have read and write permissions. Go to <a href=\"%s\">your Twitter apps</a> to modify these settings."
|
147 |
+
msgstr "La seva aplicació de Twitter no té permisos de lectura i escriptura. Vagi a <a href=\"%s\">les seves aplicacions de Twitter</a> per modificar aquests paràmetres."
|
148 |
+
|
149 |
+
#: wp-to-twitter.php:1358
|
150 |
+
msgid "Failed Tweets"
|
151 |
+
msgstr "Tuits que han fallat."
|
152 |
+
|
153 |
+
#: wp-to-twitter.php:1373
|
154 |
+
msgid "No failed tweets on this post."
|
155 |
+
msgstr "No hi ha tuits que han fallat a aquest post."
|
156 |
+
|
157 |
+
#: wp-to-twitter-manager.php:956
|
158 |
+
msgid "Upgrade to <strong>WP Tweets PRO</strong> for more options!"
|
159 |
+
msgstr "Millori a <strong>WP Tweets PRO</strong> per a més opcions!"
|
160 |
+
|
161 |
+
#: wp-to-twitter-manager.php:986
|
162 |
+
msgid "<code>#reference#</code>: Used only in co-tweeting. @reference to main account when posted to author account, @reference to author account in post to main account."
|
163 |
+
msgstr "<code>#reference#</code>: Utilitzat nomes co-tuitejant. @referència a la compta principal quan es posteja des de la compta de l'autor, @referència a la compta d'usuari a post a compta principal."
|
164 |
+
|
165 |
+
#: wp-to-twitter-oauth.php:167
|
166 |
+
msgid "Connection Problems? Try <a href='#wpt_http'>switching to <code>http</code> queries</a>.<br />"
|
167 |
+
msgstr "Problemes de connexió? Prova <a href='#wpt_http'>canviar a <code>http</code> queries</a>.<br />"
|
168 |
+
|
169 |
+
#: wp-to-twitter-oauth.php:261
|
170 |
+
msgid "WP to Twitter could not contact Twitter's remote server. Here is the error triggered: "
|
171 |
+
msgstr "WP to Twitter no pot posar-se en contàcte amb el servidor remot de Twitter. Aquest és l'error que s'ha retornat:"
|
172 |
+
|
173 |
+
#: wp-to-twitter.php:270
|
174 |
+
msgid "This account is not authorized to post to Twitter."
|
175 |
+
msgstr "Aquesta compta no està autoritzada per postejar a Twitter."
|
176 |
+
|
177 |
+
#: wp-to-twitter.php:279
|
178 |
+
msgid "This tweet is identical to another Tweet recently sent to this account."
|
179 |
+
msgstr "Aquest tuit és idèntic a un altre tuit recentment enviat a aquesta compta."
|
180 |
+
|
181 |
+
#: wp-to-twitter.php:1377
|
182 |
+
msgid "WP to Twitter can do more for you! Take a look at WP Tweets Pro!"
|
183 |
+
msgstr "WP to Twitter pot fer més per vostè! Doni un cop d'ull a WP Tweets Pro!"
|
184 |
+
|
185 |
+
#: wp-to-twitter-manager.php:595
|
186 |
+
msgid "In addition to the above short tags, comment templates can use <code>#commenter#</code> to post the commenter's provided name in the Tweet. <em>Use this feature at your own risk</em>, as it will let anybody who can post a comment on your site post a phrase in your Twitter stream."
|
187 |
+
msgstr "Addicionalment a les etiquetes curtes de sobre, les plantilles de comentaris poden utilitzar <code>#commenter#</code> per postejar el nom del comentarista provist al Tuit. <em>Utilitzi aquesta característica al seu propi risc</em>, ja que això permetrà a qualsevol que pugui postejar un comentari al seu lloc publicar una frase al seu Twitter"
|
188 |
+
|
189 |
+
#: wp-to-twitter-manager.php:621
|
190 |
+
msgid "(optional)"
|
191 |
+
msgstr "(opcional)"
|
192 |
+
|
193 |
+
#: wp-to-twitter-manager.php:774
|
194 |
+
msgid "Do not post Tweets by default (editing only)"
|
195 |
+
msgstr "No postejar tuits per defecte (nomès edició)"
|
196 |
+
|
197 |
+
#: wp-to-twitter-manager.php:979
|
198 |
+
msgid "<code>#modified#</code>: the post modified date"
|
199 |
+
msgstr "<code>#modified#</code>: La data modificada del post."
|
200 |
+
|
201 |
+
#: wp-to-twitter-oauth.php:259
|
202 |
+
msgid "Your time stamps are more than 5 minutes apart. Your server could lose its connection with Twitter."
|
203 |
+
msgstr "Les seves empremtes temporals son anteriors a fà 5 minuts. El seu servidor pot perdre la seva connexió amb Twitter."
|
204 |
+
|
205 |
+
#: wp-to-twitter-manager.php:818
|
206 |
+
msgid "Individual Authors"
|
207 |
+
msgstr "Autors individuals."
|
208 |
+
|
209 |
+
#: wp-to-twitter-manager.php:821
|
210 |
+
msgid "Authors have individual Twitter accounts"
|
211 |
+
msgstr "Autors tenen comptes de Twitter individuals"
|
212 |
+
|
213 |
+
#: wp-to-twitter-manager.php:821
|
214 |
+
msgid "Authors can add their username in their user profile. This feature can only add an @reference to the author. The @reference is placed using the <code>#account#</code> shortcode, which will pick up the main account if user accounts are not enabled."
|
215 |
+
msgstr "Autors poden afegir el seu nom d'usuari al seu perfil d'usuari. Aquesta característica pot afegir nomès una @referència al autor. La @referència està posada utilitzant l'abreviatura <code>#account#</code>, la qual agafarà la compta principal si els comptes d'usuari no estan habilitats. "
|
216 |
+
|
217 |
+
#: wp-to-twitter-manager.php:859
|
218 |
+
msgid "Disable Error Messages"
|
219 |
+
msgstr "Deshabilita els missatges d'error"
|
220 |
+
|
221 |
+
#: wp-to-twitter-manager.php:861
|
222 |
+
msgid "Disable global URL shortener error messages."
|
223 |
+
msgstr "Deshabilitar els escurçadors de missatges d'errors d'URLs globals."
|
224 |
+
|
225 |
+
#: wp-to-twitter-manager.php:862
|
226 |
+
msgid "Disable global Twitter API error messages."
|
227 |
+
msgstr "Deshabilitar els errors globals de la API de Twitter"
|
228 |
+
|
229 |
+
#: wp-to-twitter-manager.php:863
|
230 |
+
msgid "Disable notification to implement OAuth"
|
231 |
+
msgstr "Deshabilitar la notificació per implementar OAuth"
|
232 |
+
|
233 |
+
#: wp-to-twitter-manager.php:865
|
234 |
+
msgid "Get Debugging Data for OAuth Connection"
|
235 |
+
msgstr "Aconseguir informació de depuració per la connexió OAuth"
|
236 |
+
|
237 |
+
#: wp-to-twitter-manager.php:867
|
238 |
+
msgid "Switch to <code>http</code> connection. (Default is https)"
|
239 |
+
msgstr "Canvi a connexió <code>http</code>. (Per defecte és https)"
|
240 |
+
|
241 |
+
#: wp-to-twitter-manager.php:869
|
242 |
+
msgid "I made a donation, so stop whinging at me, please."
|
243 |
+
msgstr "He fet una donació, així que prou de queixes, siusplau."
|
244 |
+
|
245 |
+
#: wp-to-twitter-manager.php:883
|
246 |
+
msgid "Limit Updating Categories"
|
247 |
+
msgstr "Límit actualitzant categories"
|
248 |
+
|
249 |
+
#: wp-to-twitter-manager.php:886
|
250 |
+
msgid "If no categories are checked, limiting by category will be ignored, and all categories will be Tweeted."
|
251 |
+
msgstr "Si no hi ha categories seleccionades, el limit per categoria serà ignorat, i totes les categories seran Twittejades"
|
252 |
+
|
253 |
+
#: wp-to-twitter-manager.php:887
|
254 |
+
msgid "<em>Category limits are disabled.</em>"
|
255 |
+
msgstr "<em>Els límits per categories estan deshabilitats.</em>"
|
256 |
+
|
257 |
+
#: wp-to-twitter-manager.php:896
|
258 |
+
msgid "Get Plug-in Support"
|
259 |
+
msgstr "Aconseguir suport per al Plug-in"
|
260 |
+
|
261 |
+
#: wp-to-twitter-manager.php:907
|
262 |
+
msgid "Check Support"
|
263 |
+
msgstr "Comprovar suport"
|
264 |
+
|
265 |
+
#: wp-to-twitter-manager.php:907
|
266 |
+
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."
|
267 |
+
msgstr "Comprova si el teu servidor suporta <a href=\"http://www.joedolson.com/articles/wp-to-twitter/\">WP to Twitter's</a> peticions cap al Twitter i APIs d'escurçadors d'URLs. Aquest test enviarà una actualització d'estat a Twitter i una URL escurçada utilitzant els mètodes seleccionats."
|
268 |
+
|
269 |
+
#: wp-to-twitter-manager.php:925
|
270 |
+
msgid "Support WP to Twitter"
|
271 |
+
msgstr "Dona suport a WP to Twitter"
|
272 |
+
|
273 |
+
#: wp-to-twitter-manager.php:927
|
274 |
+
msgid "WP to Twitter Support"
|
275 |
+
msgstr "WP to Twitter suport"
|
276 |
+
|
277 |
+
#: wp-to-twitter-manager.php:931
|
278 |
+
msgid "View Settings"
|
279 |
+
msgstr "Veure ajusts"
|
280 |
+
|
281 |
+
#: wp-to-twitter-manager.php:933 wp-to-twitter.php:1447 wp-to-twitter.php:1449
|
282 |
+
msgid "Get Support"
|
283 |
+
msgstr "Aconseguir suport"
|
284 |
+
|
285 |
+
#: wp-to-twitter-manager.php:937
|
286 |
+
msgid "<a href=\"http://www.joedolson.com/donate.php\">Make a donation today!</a> Every donation counts - donate $2, $10, or $100 and help me keep this plug-in running!"
|
287 |
+
msgstr "<a href=\"http://www.joedolson.com/donate.php\">Fes una donació avui!</a> Cada donació compta - pots donar $2, $10 o $100 i ajudar-me a mantenir aquest plug-in funcionant!"
|
288 |
+
|
289 |
+
#: wp-to-twitter-manager.php:954
|
290 |
+
msgid "Upgrade Now!"
|
291 |
+
msgstr "Millora ara!"
|
292 |
+
|
293 |
+
#: wp-to-twitter-manager.php:957
|
294 |
+
msgid "Extra features with the PRO upgrade:"
|
295 |
+
msgstr "Característiques extres amb la millora a PRO:"
|
296 |
+
|
297 |
+
#: wp-to-twitter-manager.php:959
|
298 |
+
msgid "Users can post to their own Twitter accounts"
|
299 |
+
msgstr "Els usuaris poden postejar als seus propis comptes de Twitter"
|
300 |
+
|
301 |
+
#: wp-to-twitter-manager.php:960
|
302 |
+
msgid "Set a timer to send your Tweet minutes or hours after you publish the post"
|
303 |
+
msgstr "Posi un temps per enviar els Tweets minuts o hores desprès d'haver publicat el post"
|
304 |
+
|
305 |
+
#: wp-to-twitter-manager.php:961
|
306 |
+
msgid "Automatically re-send Tweets at an assigned time after publishing"
|
307 |
+
msgstr "Re-enviament de Tweets automàticament a un temps assignat desprès de la publicació"
|
308 |
+
|
309 |
+
#: wp-to-twitter-manager.php:970
|
310 |
+
msgid "Shortcodes"
|
311 |
+
msgstr "Codis escurçats"
|
312 |
+
|
313 |
+
#: wp-to-twitter-manager.php:972
|
314 |
+
msgid "Available in post update templates:"
|
315 |
+
msgstr "Disponible a plantilles d'actualització de posts."
|
316 |
+
|
317 |
+
#: wp-to-twitter-manager.php:974
|
318 |
+
msgid "<code>#title#</code>: the title of your blog post"
|
319 |
+
msgstr "<code>#title#</code>: el títol del teu post al blog"
|
320 |
+
|
321 |
+
#: wp-to-twitter-manager.php:975
|
322 |
+
msgid "<code>#blog#</code>: the title of your blog"
|
323 |
+
msgstr "<code>#blog#</code>: el títol del teu blog"
|
324 |
+
|
325 |
+
#: wp-to-twitter-manager.php:976
|
326 |
+
msgid "<code>#post#</code>: a short excerpt of the post content"
|
327 |
+
msgstr "<code>#post#</code>: un petit extracte del contingut del post"
|
328 |
+
|
329 |
+
#: wp-to-twitter-manager.php:977
|
330 |
+
msgid "<code>#category#</code>: the first selected category for the post"
|
331 |
+
msgstr "<code>#category#</code>: la primera categoria seleccionada per al post"
|
332 |
+
|
333 |
+
#: wp-to-twitter-manager.php:978
|
334 |
+
msgid "<code>#date#</code>: the post date"
|
335 |
+
msgstr "<code>#date#</code>: la data del post"
|
336 |
+
|
337 |
+
#: wp-to-twitter-manager.php:980
|
338 |
+
msgid "<code>#url#</code>: the post URL"
|
339 |
+
msgstr "<code>#url#</code>: la direcció URL del post"
|
340 |
+
|
341 |
+
#: wp-to-twitter-manager.php:983
|
342 |
+
msgid "<code>#account#</code>: the twitter @reference for the account (or the author, if author settings are enabled and set.)"
|
343 |
+
msgstr "<code>#account#</code>: la @referència de Twitter per la compta (o l'autor, si els ajustos d'autor estàn habilitats i configurats)."
|
344 |
+
|
345 |
+
#: wp-to-twitter-manager.php:984
|
346 |
+
msgid "<code>#tags#</code>: your tags modified into hashtags. See options in the Advanced Settings section, below."
|
347 |
+
msgstr "<code>#tags#</code>: les teves etiquetes modificades en hashtags. Vegi les opcions a la secció d'Ajustos Avançats, més endevant."
|
348 |
+
|
349 |
+
#: wp-to-twitter-manager.php:989
|
350 |
+
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>"
|
351 |
+
msgstr "També pot crear codis escurçats personalitzats per accedir a camps personalitzats de WordPress. Utilitzi corxets dobles al voltan del nom del seu camp personalitzat per afegir el valor d'aquest camp a la seva actualització d'estat. Exemple: <code>[[camp_personalitzat]]</code></p>"
|
352 |
+
|
353 |
+
#: wp-to-twitter-oauth.php:98
|
354 |
+
msgid "WP to Twitter was unable to establish a connection to Twitter."
|
355 |
+
msgstr "WP to Twitter no ha pogut establir una connexió a Twitter."
|
356 |
+
|
357 |
+
#: wp-to-twitter-oauth.php:168
|
358 |
+
msgid "There was an error querying Twitter's servers"
|
359 |
+
msgstr "Hi ha hagut un error intercanviant informació amb els servidors de Twitter."
|
360 |
+
|
361 |
+
#: wp-to-twitter-oauth.php:184 wp-to-twitter-oauth.php:186
|
362 |
+
msgid "Connect to Twitter"
|
363 |
+
msgstr "Connectar a Twitter"
|
364 |
+
|
365 |
+
#: wp-to-twitter-oauth.php:189
|
366 |
+
msgid "WP to Twitter Set-up"
|
367 |
+
msgstr "WP to Twitter preparació"
|
368 |
+
|
369 |
+
#: wp-to-twitter-oauth.php:190 wp-to-twitter-oauth.php:283
|
370 |
+
msgid "Your server time:"
|
371 |
+
msgstr "L'hora del seu servidor:"
|
372 |
+
|
373 |
+
#: wp-to-twitter-oauth.php:190
|
374 |
+
msgid "Twitter's time:"
|
375 |
+
msgstr "L'hora de Twitter:"
|
376 |
+
|
377 |
+
#: wp-to-twitter-oauth.php:190
|
378 |
+
msgid "If these timestamps are not within 5 minutes of each other, your server will not connect to Twitter."
|
379 |
+
msgstr "Si aquestes empremtes de temps no estan a menys de 5 minuts una de l'altre, el seu servidor no es connectarà a Twitter."
|
380 |
+
|
381 |
+
#: wp-to-twitter-oauth.php:194
|
382 |
+
msgid "<em>Note</em>: you will not add your Twitter user information to WP to Twitter; it is not used in this authentication method."
|
383 |
+
msgstr "<em>Nota</em>: No afegirà la seva informació d'usuari de Twitter a WP to Twitter; no s'utilitza en aquest mètode d'autentificació."
|
384 |
+
|
385 |
+
#: wp-to-twitter-oauth.php:198
|
386 |
+
msgid "1. Register this site as an application on "
|
387 |
+
msgstr "1. Registrar aquest lloc com una aplicació a"
|
388 |
+
|
389 |
+
#: wp-to-twitter-oauth.php:198
|
390 |
+
msgid "Twitter's application registration page"
|
391 |
+
msgstr "Pàgina de registre de l'aplicació de Twitter"
|
392 |
+
|
393 |
+
#: wp-to-twitter-oauth.php:200
|
394 |
+
msgid "If you're not currently logged in to Twitter, log-in to the account you want associated with this site"
|
395 |
+
msgstr "Si no està autentificat a Twitter actualment, accedeixi a la compta que vol associar a aquest lloc"
|
396 |
+
|
397 |
+
#: wp-to-twitter-oauth.php:201
|
398 |
+
msgid "Your Application's Name will show up after \"via\" in your twitter stream. Your application name cannot include the word \"Twitter.\""
|
399 |
+
msgstr "El nom de la seva aplicació es mostrarà darrera la paraula \"via\" al seu stream de Twitter. El nom de la seva aplicació no pot incloure la paraula \"Twitter\"."
|
400 |
+
|
401 |
+
#: wp-to-twitter-oauth.php:202
|
402 |
+
msgid "Your Application Description can be anything."
|
403 |
+
msgstr "La descripció de la seva aplicació pot ser qualsevol cosa."
|
404 |
+
|
405 |
+
#: wp-to-twitter-oauth.php:203
|
406 |
+
msgid "The WebSite and Callback URL should be "
|
407 |
+
msgstr "Els camps WebSite i Callback URL han de ser"
|
408 |
+
|
409 |
+
#: wp-to-twitter-oauth.php:205
|
410 |
+
msgid "Agree to the Developer Rules of the Road and continue."
|
411 |
+
msgstr "Estic d'acord amb les Regles del Desenvolupador a la Carretera i vull continuar."
|
412 |
+
|
413 |
+
#: wp-to-twitter-oauth.php:206
|
414 |
+
msgid "2. Switch to the \"Settings\" tab in Twitter apps"
|
415 |
+
msgstr "2. Canvíi a la pestanya de \"Ajustos\" a dins de Twitter apps."
|
416 |
+
|
417 |
+
#: wp-to-twitter-oauth.php:208
|
418 |
+
msgid "Select \"Read and Write\" for the Application Type"
|
419 |
+
msgstr "Seleccioni \"Lectura i escriptura\" per al tipus d'Aplicació"
|
420 |
+
|
421 |
+
#: wp-to-twitter-oauth.php:209
|
422 |
+
msgid "Update the application settings"
|
423 |
+
msgstr "Actualitzi els ajustos de l'aplicació"
|
424 |
+
|
425 |
+
#: wp-to-twitter-oauth.php:210
|
426 |
+
msgid "Return to the Details tab and create your access token. Refresh page to view your access tokens."
|
427 |
+
msgstr "Torni a la pestanya de Detalls i crei la seva mostra d'accés. Refresqui la pàgina per veure les seves mostres d'accés."
|
428 |
+
|
429 |
+
#: wp-to-twitter-oauth.php:212
|
430 |
+
msgid "Once you have registered your site as an application, you will be provided with four keys."
|
431 |
+
msgstr "Un cop hagi registrat el seu lloc web com a aplicació, serà provist amb quatre claus."
|
432 |
+
|
433 |
+
#: wp-to-twitter-oauth.php:213
|
434 |
+
msgid "3. Copy and paste your consumer key and consumer secret into the fields below"
|
435 |
+
msgstr "3. Copíi i enganxi les seves claus de consumidor i la clau secreta als camps següents"
|
436 |
+
|
437 |
+
#: wp-to-twitter-oauth.php:216
|
438 |
+
msgid "Twitter Consumer Key"
|
439 |
+
msgstr "Clau de Consumidor de Twitter"
|
440 |
+
|
441 |
+
#: wp-to-twitter-oauth.php:220
|
442 |
+
msgid "Twitter Consumer Secret"
|
443 |
+
msgstr "Clau secreta de consumidor de Twitter"
|
444 |
+
|
445 |
+
#: wp-to-twitter-oauth.php:224
|
446 |
+
msgid "4. Copy and paste your Access Token and Access Token Secret into the fields below"
|
447 |
+
msgstr "4. Copíi i enganxi la seva Mostra d'accés i la seva mostra d'accés Secreta als camps següents"
|
448 |
+
|
449 |
+
#: wp-to-twitter-oauth.php:225
|
450 |
+
msgid "If the Access level for your Access Token is not \"<em>Read and write</em>\", you must return to step 2 and generate a new Access Token."
|
451 |
+
msgstr "Si el seu nivell d'accés per a la seva Mostra d'Accés no és \"<em>Lectura i escriptura</em>\", haurà de tornar al pas 2 i generar una nova Mostra d'Accés."
|
452 |
+
|
453 |
+
#: wp-to-twitter-oauth.php:228
|
454 |
+
msgid "Access Token"
|
455 |
+
msgstr "Mostra d'accés"
|
456 |
+
|
457 |
+
#: wp-to-twitter-oauth.php:232
|
458 |
+
msgid "Access Token Secret"
|
459 |
+
msgstr "Mostra d'accés secreta"
|
460 |
+
|
461 |
+
#: wp-to-twitter-oauth.php:251
|
462 |
+
msgid "Disconnect Your WordPress and Twitter Account"
|
463 |
+
msgstr "Desconnecti la seva compta de Wordpress i la de Twitter"
|
464 |
+
|
465 |
+
#: wp-to-twitter-oauth.php:255
|
466 |
+
msgid "Disconnect your WordPress and Twitter Account"
|
467 |
+
msgstr "Desconnecti la seva compta de Wordpress i la de Twitter"
|
468 |
+
|
469 |
+
#: wp-to-twitter-oauth.php:257
|
470 |
+
msgid "<strong>Troubleshooting tip:</strong> Connected, but getting a notice that your Authentication credentials are missing or incorrect? Check whether your Access token has read and write permission. If not, you'll need to create a new token."
|
471 |
+
msgstr "<strong>Consell per solucionar errors:</strong> Connectat, però rebent un avís sobre que les seves credencials s'han perdut o son incorrectes? Comprovi que la seva Mostra d'Accès tingui permissos d'escriptura i de lectura. Si no en té, necessitarà crear una nova mostra."
|
472 |
+
|
473 |
+
#: wp-to-twitter-oauth.php:265
|
474 |
+
msgid "Disconnect from Twitter"
|
475 |
+
msgstr "Desconnecta el Twitter"
|
476 |
+
|
477 |
+
#: wp-to-twitter-oauth.php:271
|
478 |
+
msgid "Twitter Username "
|
479 |
+
msgstr "Nom d'usuari de Twitter"
|
480 |
+
|
481 |
+
#: wp-to-twitter-oauth.php:272
|
482 |
+
msgid "Consumer Key "
|
483 |
+
msgstr "Clau de Consumidor"
|
484 |
+
|
485 |
+
#: wp-to-twitter-oauth.php:273
|
486 |
+
msgid "Consumer Secret "
|
487 |
+
msgstr "Secret de Consumidor"
|
488 |
+
|
489 |
+
#: wp-to-twitter-oauth.php:274
|
490 |
+
msgid "Access Token "
|
491 |
+
msgstr "Mostra d'accés"
|
492 |
+
|
493 |
+
#: wp-to-twitter-oauth.php:275
|
494 |
+
msgid "Access Token Secret "
|
495 |
+
msgstr "Mostra d'accés secreta"
|
496 |
+
|
497 |
+
#: wp-to-twitter-oauth.php:283
|
498 |
+
msgid "Twitter's current server time: "
|
499 |
+
msgstr "Temps actual de servidor de Twitter:"
|
500 |
+
|
501 |
+
#: wp-to-twitter.php:55
|
502 |
+
msgid "WP to Twitter requires PHP version 5 or above. Please upgrade PHP to run WP to Twitter."
|
503 |
+
msgstr "WP to Twitter requereix una versió de PHP 5 o superior. Sisusplau actualitzi PHP per fer funcionar WP to Twitter."
|
504 |
+
|
505 |
+
#: wp-to-twitter.php:91
|
506 |
+
msgid "Twitter requires authentication by OAuth. You will need to <a href='%s'>update your settings</a> to complete installation of WP to Twitter."
|
507 |
+
msgstr "Twitter requereix autentificació per OAuth. Necessitarà <a href='%s'>actualitzar els seus ajustos</a> per completar l'instalació de WP to Twitter"
|
508 |
+
|
509 |
+
#: wp-to-twitter.php:318
|
510 |
+
msgid "200 OK: Success!"
|
511 |
+
msgstr "200 OK: Èxit!"
|
512 |
+
|
513 |
+
#: wp-to-twitter.php:323
|
514 |
+
msgid "400 Bad Request: The request was invalid. This is the status code returned during rate limiting."
|
515 |
+
msgstr "400 Petició dolenta. La petició era invàlida. Aquest és el codi d'estat retornat durant la limitació de transferència."
|
516 |
+
|
517 |
+
#: wp-to-twitter.php:327
|
518 |
+
msgid "401 Unauthorized: Authentication credentials were missing or incorrect."
|
519 |
+
msgstr "401 Desautoritzat: Les credencials d'autentificació eren incorrectes o s'han perdut."
|
520 |
+
|
521 |
+
#: wp-to-twitter.php:332
|
522 |
+
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 can include: Too many Tweets created in a short time or the same Tweet was submitted twice in a row, among others. This is not an error by WP to Twitter."
|
523 |
+
msgstr "403 Prohibit: La petició s'ha entès, però ha estat refusada. Aquest codi s'utilitza quan les peticions s'entenen, però son denegades per Twitter. Les raons poden incloure: Masses Tweets creats durant un curt periode de temps o el mateix Tweet s'ha enviat dos cops en una fila, entre d'altres. Aquest no és un error de WP to Twitter."
|
524 |
+
|
525 |
+
#: wp-to-twitter.php:348
|
526 |
+
msgid "500 Internal Server Error: Something is broken at Twitter."
|
527 |
+
msgstr "500 Error intern del sevidor: Quelcom s'ha trencat a Twitter."
|
528 |
+
|
529 |
+
#: wp-to-twitter.php:356
|
530 |
+
msgid "503 Service Unavailable: The Twitter servers are up, but overloaded with requests - Please try again later."
|
531 |
+
msgstr "503 Servei no disponible. Els servidors de Twitter estan funcionant, però sobrecarregats amb peticions - siusplau, torneu-ho a provar més tard."
|
532 |
+
|
533 |
+
#: wp-to-twitter.php:352
|
534 |
+
msgid "502 Bad Gateway: Twitter is down or being upgraded."
|
535 |
+
msgstr "502 Porta d'acces incorrecta: Twitter està caigut o està sent millorat."
|
536 |
+
|
537 |
+
#: wp-to-twitter.php:390
|
538 |
+
msgid "No Twitter OAuth connection found."
|
539 |
+
msgstr "No s'ha trobat la connexió OAuth amb Twitter"
|
540 |
+
|
541 |
+
#: wp-to-twitter.php:1302
|
542 |
+
msgid "WP Tweets"
|
543 |
+
msgstr "Tweets WP"
|
544 |
+
|
545 |
+
#: wp-to-twitter.php:1344
|
546 |
+
msgid "Previous Tweets"
|
547 |
+
msgstr "Tweets anteriors"
|
548 |
+
|
549 |
+
#: wp-to-twitter.php:1380
|
550 |
+
msgid "Custom Twitter Post"
|
551 |
+
msgstr "Post personalitzat de Twitter"
|
552 |
+
|
553 |
+
#: wp-to-twitter.php:1404
|
554 |
+
msgid "Your template:"
|
555 |
+
msgstr "La seva plantilla:"
|
556 |
+
|
557 |
+
#: wp-to-twitter.php:1409
|
558 |
+
msgid "YOURLS Custom Keyword"
|
559 |
+
msgstr "La clau personalitzada YOURSL"
|
560 |
+
|
561 |
+
#: wp-to-twitter.php:1447
|
562 |
+
msgid "Upgrade to WP Tweets Pro"
|
563 |
+
msgstr "Millori a WP Tweets Pro"
|
564 |
+
|
565 |
+
#: wp-to-twitter.php:1421
|
566 |
+
msgid "Don't Tweet this post."
|
567 |
+
msgstr "No twittejis aquest post."
|
568 |
+
|
569 |
+
#: wp-to-twitter.php:1421
|
570 |
+
msgid "Tweet this post."
|
571 |
+
msgstr "Twitteja aquest post."
|
572 |
+
|
573 |
+
#: wp-to-twitter.php:1433
|
574 |
+
msgid "Access to customizing WP to Twitter values is not allowed for your user role."
|
575 |
+
msgstr "No està permès per al seu rol d'usuari l'accès per modificar els valors de WP to Twitter."
|
576 |
+
|
577 |
+
#: wp-to-twitter.php:1503
|
578 |
+
msgid "Characters left: "
|
579 |
+
msgstr "Caràcters restants:"
|
580 |
+
|
581 |
+
#: wp-to-twitter.php:1564
|
582 |
+
msgid "WP Tweets User Settings"
|
583 |
+
msgstr "Ajustos d'usuari Tweets WP"
|
584 |
+
|
585 |
+
#: wp-to-twitter.php:1568
|
586 |
+
msgid "Use My Twitter Username"
|
587 |
+
msgstr "Utilitza el meu nom d'usuari de Twitter"
|
588 |
+
|
589 |
+
#: wp-to-twitter.php:1569
|
590 |
+
msgid "Tweet my posts with an @ reference to my username."
|
591 |
+
msgstr "Twiteja els meus posts amb una @referència al meu nom d'usuari."
|
592 |
+
|
593 |
+
#: wp-to-twitter.php:1570
|
594 |
+
msgid "Tweet my posts with an @ reference to both my username and to the main site username."
|
595 |
+
msgstr "Twiteja els meus posts amb una @referència tant al meu nom d'usuari com al nom d'usuari principal del lloc web."
|
596 |
+
|
597 |
+
#: wp-to-twitter.php:1574
|
598 |
+
msgid "Your Twitter Username"
|
599 |
+
msgstr "Els seu nom d'usuari de Twitter"
|
600 |
+
|
601 |
+
#: wp-to-twitter.php:1575
|
602 |
+
msgid "Enter your own Twitter username."
|
603 |
+
msgstr "Escrigui el seu propi nom d'usuari de Twitter"
|
604 |
+
|
605 |
+
#: wp-to-twitter.php:1628
|
606 |
+
msgid "Check off categories to tweet"
|
607 |
+
msgstr "Comprova les categories per twittejar"
|
608 |
+
|
609 |
+
#: wp-to-twitter.php:1632
|
610 |
+
msgid "Do not tweet posts in checked categories (Reverses default behavior)"
|
611 |
+
msgstr "No twittejis posts a les categories seleccionades (fa el contrari que el comportament per defecte)"
|
612 |
+
|
613 |
+
#: wp-to-twitter.php:1649
|
614 |
+
msgid "Limits are exclusive. If a post is in one category which should be posted and one category that should not, it will not be posted."
|
615 |
+
msgstr "Els límits son exclusius. Si un post és a una categoria on hauria de ser i a una categoria on no hi hauria de ser, no serà postejat."
|
616 |
+
|
617 |
+
#: wp-to-twitter.php:1652
|
618 |
+
msgid "Set Categories"
|
619 |
+
msgstr "Establir les categories"
|
620 |
+
|
621 |
+
#: wp-to-twitter.php:1675
|
622 |
+
msgid "Settings"
|
623 |
+
msgstr "Ajusts"
|
624 |
+
|
625 |
+
#: wp-to-twitter.php:1710
|
626 |
+
msgid "<br /><strong>Note:</strong> Please review the <a class=\"thickbox\" href=\"%1$s\">changelog</a> before upgrading."
|
627 |
+
msgstr "<br /><strong>Nota:</strong> Siusplau, reviseu el <a class=\"thickbox\" href=\"%1$s\">log de canvis</a> abans d'actualitzar."
|
628 |
+
|
629 |
+
msgid "WP to Twitter"
|
630 |
+
msgstr "WP to Twitter"
|
631 |
+
|
632 |
+
msgid "http://www.joedolson.com/articles/wp-to-twitter/"
|
633 |
+
msgstr "http://www.joedolson.com/articles/wp-to-twitter/"
|
634 |
+
|
635 |
+
msgid "Posts a Tweet 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."
|
636 |
+
msgstr "Posteja un Tweet quan actualitza el seu WordPress blog o posteja el seu blogroll, utilitzant el seu servei d'escurçament de direccións. Ric en característiques per personalitzar i promocionar els seus Tweets"
|
637 |
+
|
638 |
+
msgid "Joseph Dolson"
|
639 |
+
msgstr "Joseph Dolson"
|
640 |
+
|
641 |
+
msgid "http://www.joedolson.com/"
|
642 |
+
msgstr "http://www.joedolson.com/"
|
643 |
+
|
644 |
+
#: functions.php:324
|
645 |
+
msgid "Please read the FAQ and other Help documents before making a support request."
|
646 |
+
msgstr "Sisplau, llegeixi els FAQ i altres documents d'ajuda abans de fer una petició de suport."
|
647 |
+
|
648 |
+
#: functions.php:201
|
649 |
+
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."
|
650 |
+
msgstr "[<a href='options-general.php?page=wp-to-twitter/wp-to-twitter.php'>Hide</a>] Si esteu experimentant problemes, sisplau, copieu aquests ajusts a qualsevol petició de suport."
|
651 |
+
|
652 |
+
#: functions.php:346
|
653 |
+
msgid "Please include your license key in your support request."
|
654 |
+
msgstr "Sisplau, inclogui la seva clau de llicència dins la seva petició de suport."
|
655 |
+
|
656 |
+
#: functions.php:326
|
657 |
+
msgid "Please describe your problem. I'm not psychic."
|
658 |
+
msgstr "Sisplau, descrigui el seu problema. No soc endeví."
|
659 |
+
|
660 |
+
#: functions.php:351
|
661 |
+
msgid "<strong>Please note</strong>: I do keep records of those who have donated, but if your donation came from somebody other than your account at this web site, you must note this in your message."
|
662 |
+
msgstr "<strong>Pari atenció</strong>:Mantinc un registre d'aquells que han fet donacions, però si la vostra donació prové d'algun lloc diferent a la seva compta d'aquesta pàgina, feu el favor de mencionar-ho al vostre missatge."
|
663 |
+
|
664 |
+
#: functions.php:368
|
665 |
+
msgid "Send Support Request"
|
666 |
+
msgstr "Enviar petició de suport"
|
667 |
+
|
668 |
+
#: functions.php:371
|
669 |
+
msgid "The following additional information will be sent with your support request:"
|
670 |
+
msgstr "La següent informació adicional s'enviarà juntament amb la seva petició de suport:"
|
671 |
+
|
672 |
+
#: wp-to-twitter-manager.php:41
|
673 |
+
msgid "No error information is available for your shortener."
|
674 |
+
msgstr "No hi ha informació d'error disponible pel vostre escurçador."
|
675 |
+
|
676 |
+
#: wp-to-twitter-manager.php:43
|
677 |
+
msgid "<li class=\"error\"><strong>WP to Twitter was unable to contact your selected URL shortening service.</strong></li>"
|
678 |
+
msgstr "<li class=\"error\"><strong>WP to Twitter no ha pogut contactar amb el servei d'escurçament de direccions URL que heu seleccionat.</strong></li>"
|
679 |
+
|
680 |
+
#: wp-to-twitter-manager.php:46
|
681 |
+
msgid "<li><strong>WP to Twitter successfully contacted your selected URL shortening service.</strong> The following link should point to your blog homepage:"
|
682 |
+
msgstr "<li><strong>WP to Twitter ha contactat correctament amb el vostre servei d'escurçament de direccions seleccionat.</strong> El següent enllaç hauria d'apuntar a la pàgina principal del seu blog:"
|
683 |
+
|
684 |
+
#: wp-to-twitter-manager.php:54
|
685 |
+
msgid "<li><strong>WP to Twitter successfully submitted a status update to Twitter.</strong></li>"
|
686 |
+
msgstr "<li><strong>WP to Twitter ha enviat amb èxit un estatus d'actualització a Twitter.</strong></li>"
|
687 |
+
|
688 |
+
#: wp-to-twitter-manager.php:57
|
689 |
+
msgid "<li class=\"error\"><strong>WP to Twitter failed to submit an update to Twitter.</strong></li>"
|
690 |
+
msgstr "<li class=\"error\"><strong>WP to Twitter ha fallat alhora d'enviar una actualització a Twitter.</strong></li>"
|
691 |
+
|
692 |
+
#: wp-to-twitter-manager.php:61
|
693 |
+
msgid "You have not connected WordPress to Twitter."
|
694 |
+
msgstr "No heu connectat WordPress a Twitter"
|
695 |
+
|
696 |
+
#: wp-to-twitter-manager.php:65
|
697 |
+
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>"
|
698 |
+
msgstr "<li class=\"error\"><strong>Sembla que el vostre servidor no suporta els mètodes que es requereixen per que WP to Twitter funcioni.</strong> Podeu provar-ho de totes formes - aquestes comprovacions no son perfectes.</li>"
|
699 |
+
|
700 |
+
#: wp-to-twitter-manager.php:69
|
701 |
+
msgid "<li><strong>Your server should run WP to Twitter successfully.</strong></li>"
|
702 |
+
msgstr "<li><strong>El vostre servidor hauria de còrrer WP to Twitter correctament.</strong></li>"
|
703 |
+
|
704 |
+
#: wp-to-twitter-manager.php:87
|
705 |
+
msgid "WP to Twitter Errors Cleared"
|
706 |
+
msgstr "Errors de WP to Twitter netejats"
|
707 |
+
|
708 |
+
#: wp-to-twitter-manager.php:171
|
709 |
+
msgid "WP to Twitter is now connected with Twitter."
|
710 |
+
msgstr "WP to Twitter ja està connectat a Twitter."
|
711 |
+
|
712 |
+
#: wp-to-twitter-manager.php:178
|
713 |
+
msgid "WP to Twitter failed to connect with Twitter. Try enabling OAuth debugging."
|
714 |
+
msgstr "WP to Twitter ha fallat alhora de connectar-se a Twitter. Proveu d'activar l'informació de depuració d'OAuth"
|
715 |
+
|
716 |
+
#: wp-to-twitter-manager.php:185
|
717 |
+
msgid "OAuth Authentication Data Cleared."
|
718 |
+
msgstr "Dades d'autenticació OAuth netejades."
|
719 |
+
|
720 |
+
#: wp-to-twitter-manager.php:192
|
721 |
+
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."
|
722 |
+
msgstr "L'autenticació OAuth ha fallat. L'horari del vostre servidor no està sincronitzat amb els servidors de Twitter. Parleu amb el vostre servei d'allotjament per veure què es pot fer."
|
723 |
+
|
724 |
+
#: wp-to-twitter-manager.php:199
|
725 |
+
msgid "OAuth Authentication response not understood."
|
726 |
+
msgstr "Reposta d'autenticació OAuth no entesa."
|
727 |
+
|
728 |
+
#: wp-to-twitter-manager.php:361
|
729 |
+
msgid "WP to Twitter Advanced Options Updated"
|
730 |
+
msgstr "Opcions avançades de WP to Twitter actualitzades"
|
731 |
+
|
732 |
+
#: wp-to-twitter-manager.php:383
|
733 |
+
msgid "You must add your Bit.ly login and API key in order to shorten URLs with Bit.ly."
|
734 |
+
msgstr "Heu d'afegir el vostre nom d'usuari i la vostra clau d'API de Bit.ly per poguer escurçar direccions URL amb Bit.ly."
|
735 |
+
|
736 |
+
#: wp-to-twitter-manager.php:387
|
737 |
+
msgid "You must add your YOURLS remote URL, login, and password in order to shorten URLs with a remote installation of YOURLS."
|
738 |
+
msgstr "Heu d'afegir el vostre nom d'usuari, password i direcció URL remota de YOURLS per poguer escurçar direccions URL amb una instal·lació remota de YOURLS"
|
739 |
+
|
740 |
+
#: wp-to-twitter-manager.php:391
|
741 |
+
msgid "You must add your YOURLS server path in order to shorten URLs with a remote installation of YOURLS."
|
742 |
+
msgstr "Heu d'afegir la direcció del vostre servidor YOURLS per poguer escurçar direccions URL amb una instal·lació remota de YOURLS."
|
743 |
+
|
744 |
+
#: wp-to-twitter-manager.php:394
|
745 |
+
msgid "WP to Twitter Options Updated"
|
746 |
+
msgstr "Opcions de WP to Twitter actualitzades"
|
747 |
+
|
748 |
+
#: wp-to-twitter-manager.php:403
|
749 |
+
msgid "Category limits updated."
|
750 |
+
msgstr "Límit per categories actualitzat."
|
751 |
+
|
752 |
+
#: wp-to-twitter-manager.php:407
|
753 |
+
msgid "Category limits unset."
|
754 |
+
msgstr "Límit per categories no establert."
|
755 |
+
|
756 |
+
#: wp-to-twitter-manager.php:414
|
757 |
+
msgid "YOURLS password updated. "
|
758 |
+
msgstr "Contrasenya de YOURLS actualitzada."
|
759 |
+
|
760 |
+
#: wp-to-twitter-manager.php:417
|
761 |
+
msgid "YOURLS password deleted. You will be unable to use your remote YOURLS account to create short URLS."
|
762 |
+
msgstr "Contrasenya de YOURLS esborrada. Ja no podreu utilitzar la vostra compta remota de YOURLS per crear direccions URL escurçades."
|
763 |
+
|
764 |
+
#: wp-to-twitter-manager.php:419
|
765 |
+
msgid "Failed to save your YOURLS password! "
|
766 |
+
msgstr "Error a l'hora de gravar la vostra contrasenya de YOURLS!"
|
767 |
+
|
768 |
+
#: wp-to-twitter-manager.php:423
|
769 |
+
msgid "YOURLS username added. "
|
770 |
+
msgstr "Nom d'usuari de YOURLS afegit."
|
771 |
+
|
772 |
+
#: wp-to-twitter-manager.php:427
|
773 |
+
msgid "YOURLS API url added. "
|
774 |
+
msgstr "YOURLS API url afegida."
|
775 |
+
|
776 |
+
#: wp-to-twitter-manager.php:430
|
777 |
+
msgid "YOURLS API url removed. "
|
778 |
+
msgstr "YOURLS API url esborrada."
|
779 |
+
|
780 |
+
#: wp-to-twitter-manager.php:435
|
781 |
+
msgid "YOURLS local server path added. "
|
782 |
+
msgstr "Direcció del servidor local de YOURLS afegida."
|
783 |
+
|
784 |
+
#: wp-to-twitter-manager.php:437
|
785 |
+
msgid "The path to your YOURLS installation is not correct. "
|
786 |
+
msgstr "La direcció cap a la vostra instal·lació de YOURLS no és correcta."
|
787 |
+
|
788 |
+
#: wp-to-twitter-manager.php:441
|
789 |
+
msgid "YOURLS local server path removed. "
|
790 |
+
msgstr "Direcció del servidor local de YOURLS esborrada."
|
791 |
+
|
792 |
+
#: wp-to-twitter-manager.php:446
|
793 |
+
msgid "YOURLS will use Post ID for short URL slug."
|
794 |
+
msgstr "YOURLS utilitzará Post ID per les erugues de les direccions URLs."
|
795 |
+
|
796 |
+
#: wp-to-twitter-manager.php:448
|
797 |
+
msgid "YOURLS will use your custom keyword for short URL slug."
|
798 |
+
msgstr "YOURLS utilitzarà la vostra paraula clau personalitzada per les erugues de les direccions URLs."
|
799 |
+
|
800 |
+
#: wp-to-twitter-manager.php:452
|
801 |
+
msgid "YOURLS will not use Post ID for the short URL slug."
|
802 |
+
msgstr "YOURLS no utilitzarà Post ID per les erugues de les direccions URLs."
|
803 |
+
|
804 |
+
#: wp-to-twitter-manager.php:460
|
805 |
+
msgid "Su.pr API Key and Username Updated"
|
806 |
+
msgstr "Clau de Su.pr API i nom d'usuari actualitzats"
|
807 |
+
|
808 |
+
#: wp-to-twitter-manager.php:464
|
809 |
+
msgid "Su.pr API Key and username deleted. Su.pr URLs created by WP to Twitter will no longer be associated with your account. "
|
810 |
+
msgstr "Clau de Su.pr API i nom d'usuari esborrats. Les direccions URLs de Su.pr creades per WP to Twitter no continuaran associades amb el seu compte."
|
811 |
+
|
812 |
+
#: wp-to-twitter-manager.php:466
|
813 |
+
msgid "Su.pr API Key not added - <a href='http://su.pr/'>get one here</a>! "
|
814 |
+
msgstr "Clau Su.pr API no afegida - <a href='http://su.pr/'>aconsegueixi una</a>! "
|
815 |
+
|
816 |
+
#: wp-to-twitter-manager.php:472
|
817 |
+
msgid "Bit.ly API Key Updated."
|
818 |
+
msgstr "Clau Bit.ly API actualitzada."
|
819 |
+
|
820 |
+
#: wp-to-twitter-manager.php:475
|
821 |
+
msgid "Bit.ly API Key deleted. You cannot use the Bit.ly API without an API key. "
|
822 |
+
msgstr "Clau Bit.ly API esborrada. No pot utilitzar la API de Bit.ly sense una clau API."
|
823 |
+
|
824 |
+
#: wp-to-twitter-manager.php:477
|
825 |
+
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."
|
826 |
+
msgstr "Clau Bit.ly API no afegida - <a href='http://bit.ly/account/'>aconsegueixi una</a>! Es requereix una clau API per utilitzar el servei d'escurçament de direccions URL de Bit.Ly."
|
827 |
+
|
828 |
+
#: wp-to-twitter-manager.php:481
|
829 |
+
msgid " Bit.ly User Login Updated."
|
830 |
+
msgstr "Accès d'usuari Bit.ly actualitzat."
|
831 |
+
|
832 |
+
#: wp-to-twitter-manager.php:484
|
833 |
+
msgid "Bit.ly User Login deleted. You cannot use the Bit.ly API without providing your username. "
|
834 |
+
msgstr "Accès d'usuari Bit.ly esborrat. No pot utilitzar la API Bit.ly sense introduir el seu nom d'usuari."
|
835 |
+
|
836 |
+
#: wp-to-twitter-manager.php:486
|
837 |
+
msgid "Bit.ly Login not added - <a href='http://bit.ly/account/'>get one here</a>! "
|
838 |
+
msgstr "Accès a Bit.ly no afegit - <a href='http://bit.ly/account/'>aconsegueixi un</a>! "
|
839 |
+
|
840 |
+
#: wp-to-twitter-manager.php:502
|
841 |
+
msgid "<p>One or more of your last posts has failed to send a status update to Twitter. The Tweet has been saved, and you can re-Tweet it at your leisure.</p>"
|
842 |
+
msgstr "<p>Un o més dels seus darrers posts ha fallat enviant un estatus d'actualització a Twitter. El tuit s'ha guardat, i ara podeu retuitejar-lo a la vostra conveniència</p>"
|
843 |
+
|
844 |
+
#: wp-to-twitter-manager.php:508
|
845 |
+
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. "
|
846 |
+
msgstr "Ho sentim! No s'ha pogut contactar amb els servidors de Twitter per postejar el seu <strong>nou enllaç</strong>! Haurà de publicar-lo de forma manual, em temo."
|
847 |
+
|
848 |
+
#: wp-to-twitter-manager.php:511
|
849 |
+
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.</p>"
|
850 |
+
msgstr "<p>La petició a la API de l'escurçador de direccions URL ha fallat, i la direcció no s'ha escurçat. La direcció sencera s'ha adjuntat al vostre tuit. Comprovi amb el proveïdor de direccions escurçades si ha patit alguna incidència coneguda</p>"
|
851 |
+
|
852 |
+
#: wp-to-twitter-manager.php:517
|
853 |
+
msgid "Clear 'WP to Twitter' Error Messages"
|
854 |
+
msgstr "Neteja els missatges d'error de WP to Twitter"
|
855 |
+
|
856 |
+
#: wp-to-twitter-manager.php:524
|
857 |
+
msgid "WP to Twitter Options"
|
858 |
+
msgstr "Opcions de WP to Twitter"
|
859 |
+
|
860 |
+
#: wp-to-twitter-manager.php:537
|
861 |
+
msgid "Basic Settings"
|
862 |
+
msgstr "Ajusts bàsics"
|
863 |
+
|
864 |
+
#: wp-to-twitter-manager.php:543 wp-to-twitter-manager.php:609
|
865 |
+
msgid "Save WP->Twitter Options"
|
866 |
+
msgstr "Guarda les opcions WP->Twitter"
|
867 |
+
|
868 |
+
#: wp-to-twitter-manager.php:589
|
869 |
+
msgid "Settings for Comments"
|
870 |
+
msgstr "Ajusts per comentaris"
|
871 |
+
|
872 |
+
#: wp-to-twitter-manager.php:592
|
873 |
+
msgid "Update Twitter when new comments are posted"
|
874 |
+
msgstr "Actualitza Twitter quan es publiquin nous comentaris"
|
875 |
+
|
876 |
+
#: wp-to-twitter-manager.php:593
|
877 |
+
msgid "Text for new comments:"
|
878 |
+
msgstr "Texte pels nous comentaris:"
|
879 |
+
|
880 |
+
#: wp-to-twitter-manager.php:598
|
881 |
+
msgid "Settings for Links"
|
882 |
+
msgstr "Ajusts per enllaços"
|
883 |
+
|
884 |
+
#: wp-to-twitter-manager.php:601
|
885 |
+
msgid "Update Twitter when you post a Blogroll link"
|
886 |
+
msgstr "Actualitza Twitter quan publiquis un enllaç de Blogroll"
|
887 |
+
|
888 |
+
#: wp-to-twitter-manager.php:602
|
889 |
+
msgid "Text for new link updates:"
|
890 |
+
msgstr "Text per a actualitzacions d'enllaços:"
|
891 |
+
|
892 |
+
#: wp-to-twitter-manager.php:602
|
893 |
+
msgid "Available shortcodes: <code>#url#</code>, <code>#title#</code>, and <code>#description#</code>."
|
894 |
+
msgstr "Codis curts disponibles: <code>#url#</code>, <code>#title#</code>, i <code>#description#</code>."
|
895 |
+
|
896 |
+
#: wp-to-twitter-manager.php:545
|
897 |
+
msgid "Choose your short URL service (account settings below)"
|
898 |
+
msgstr "Escolliu el vostre servei d'escurçament de direccions URL (ajusts de la compta a continuació)"
|
899 |
+
|
900 |
+
#: wp-to-twitter-manager.php:548
|
901 |
+
msgid "Don't shorten URLs."
|
902 |
+
msgstr "No escurçis direccions URLs."
|
903 |
+
|
904 |
+
#: wp-to-twitter-manager.php:549
|
905 |
+
msgid "Use Su.pr for my URL shortener."
|
906 |
+
msgstr "Utilitza Su.pr com el meu escurçador de direccions URL."
|
907 |
+
|
908 |
+
#: wp-to-twitter-manager.php:550
|
909 |
+
msgid "Use Bit.ly for my URL shortener."
|
910 |
+
msgstr "Utilitza Bit.ly com el meu escurçador de direccions URL."
|
911 |
+
|
912 |
+
#: wp-to-twitter-manager.php:551
|
913 |
+
msgid "Use Goo.gl as a URL shortener."
|
914 |
+
msgstr "Utilitza Goo.gl com el meu escurçador de direccions URL."
|
915 |
+
|
916 |
+
#: wp-to-twitter-manager.php:552
|
917 |
+
msgid "YOURLS (installed on this server)"
|
918 |
+
msgstr "YOURLS (instal·lat a aquest servidor)"
|
919 |
+
|
920 |
+
#: wp-to-twitter-manager.php:553
|
921 |
+
msgid "YOURLS (installed on a remote server)"
|
922 |
+
msgstr "YOURLS (instal·lat a un servidor remot)"
|
923 |
+
|
924 |
+
#: wp-to-twitter-manager.php:554
|
925 |
+
msgid "Use WordPress as a URL shortener."
|
926 |
+
msgstr "Utilitza WordPress com a escurçador de direccions URL"
|
927 |
+
|
928 |
+
#: wp-to-twitter-manager.php:617
|
929 |
+
msgid "<abbr title=\"Uniform Resource Locator\">URL</abbr> Shortener Account Settings"
|
930 |
+
msgstr "<abbr title=\"Uniform Resource Locator\">URL</abbr> Ajusts de la compta d'escurçador de direccions"
|
931 |
+
|
932 |
+
#: wp-to-twitter-manager.php:621
|
933 |
+
msgid "Your Su.pr account details"
|
934 |
+
msgstr "Els detalls de la seva compta de Su.pr"
|
935 |
+
|
936 |
+
#: wp-to-twitter-manager.php:625
|
937 |
+
msgid "Your Su.pr Username:"
|
938 |
+
msgstr "El seu nom d'usuari de Su.pr:"
|
939 |
+
|
940 |
+
#: wp-to-twitter-manager.php:629
|
941 |
+
msgid "Your Su.pr <abbr title='application programming interface'>API</abbr> Key:"
|
942 |
+
msgstr "La seva clau <abbr title='application programming interface'>API</abbr> de Su.pr:"
|
943 |
+
|
944 |
+
#: wp-to-twitter-manager.php:636
|
945 |
+
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."
|
946 |
+
msgstr "No té una clau API de Su.pr? <a href='http://su.pr/'>Aconsegueixi una</a>!<br />Necessitarà una clau API per associar les direccions URLs que pugui crear amb la seva compta Su.pr."
|
947 |
+
|
948 |
+
#: wp-to-twitter-manager.php:642
|
949 |
+
msgid "Your Bit.ly account details"
|
950 |
+
msgstr "Els detalls de la seva compta Bit.ly"
|
951 |
+
|
952 |
+
#: wp-to-twitter-manager.php:646
|
953 |
+
msgid "Your Bit.ly username:"
|
954 |
+
msgstr "El seu nom d'usuari Bit.ly:"
|
955 |
+
|
956 |
+
#: wp-to-twitter-manager.php:648
|
957 |
+
msgid "This must be a standard Bit.ly account. Your Twitter or Facebook log-in will not work."
|
958 |
+
msgstr "Això ha de ser una compta estàndard Bit.ly. El seu accès a Twitter o Facebook no funcionarà."
|
959 |
+
|
960 |
+
#: wp-to-twitter-manager.php:650
|
961 |
+
msgid "Your Bit.ly <abbr title='application programming interface'>API</abbr> Key:"
|
962 |
+
msgstr "La seva clau <abbr title='application programming interface'>API</abbr> Bit.ly:"
|
963 |
+
|
964 |
+
#: wp-to-twitter-manager.php:658
|
965 |
+
msgid "Save Bit.ly API Key"
|
966 |
+
msgstr "Guardar la clau API Bit.ly"
|
967 |
+
|
968 |
+
#: wp-to-twitter-manager.php:658
|
969 |
+
msgid "Clear Bit.ly API Key"
|
970 |
+
msgstr "Netejar la clau API Bit.ly"
|
971 |
+
|
972 |
+
#: wp-to-twitter-manager.php:658
|
973 |
+
msgid "A Bit.ly API key and username is required to shorten URLs via the Bit.ly API and WP to Twitter."
|
974 |
+
msgstr "Una clau api Bit.ly i un nom d'usuari es requereix per escurçar direccions URLs a travès de l'API Bit.ly i WP to Twitter."
|
975 |
+
|
976 |
+
#: wp-to-twitter-manager.php:664
|
977 |
+
msgid "Your YOURLS account details"
|
978 |
+
msgstr "Els detalls de la seva compta YOURLS"
|
979 |
+
|
980 |
+
#: wp-to-twitter-manager.php:668
|
981 |
+
msgid "Path to your YOURLS config file (Local installations)"
|
982 |
+
msgstr "Direcció de l'arxiu de configuració YOURLS (instal·lacions locals)"
|
983 |
+
|
984 |
+
#: wp-to-twitter-manager.php:669 wp-to-twitter-manager.php:673
|
985 |
+
msgid "Example:"
|
986 |
+
msgstr "Exemple:"
|
987 |
+
|
988 |
+
#: wp-to-twitter-manager.php:672
|
989 |
+
msgid "URI to the YOURLS API (Remote installations)"
|
990 |
+
msgstr "Direcció URI cap a l'API YOURLS (instal·lacions remotes)"
|
991 |
+
|
992 |
+
#: wp-to-twitter-manager.php:676
|
993 |
+
msgid "Your YOURLS username:"
|
994 |
+
msgstr "El vostre nom d'usuari YOURLS:"
|
995 |
+
|
996 |
+
#: wp-to-twitter-manager.php:680
|
997 |
+
msgid "Your YOURLS password:"
|
998 |
+
msgstr "La vostra contrasenya YOURLS:"
|
999 |
+
|
1000 |
+
#: wp-to-twitter-manager.php:680
|
1001 |
+
msgid "<em>Saved</em>"
|
1002 |
+
msgstr "<em>Guardat</em>"
|
1003 |
+
|
1004 |
+
#: wp-to-twitter-manager.php:684
|
1005 |
+
msgid "Post ID for YOURLS url slug."
|
1006 |
+
msgstr "Post ID per les erugues de direcció URL YOURLS"
|
1007 |
+
|
1008 |
+
#: wp-to-twitter-manager.php:685
|
1009 |
+
msgid "Custom keyword for YOURLS url slug."
|
1010 |
+
msgstr "Paraula clau personalitzada per les vostres erugues de direcció URL YOURLS."
|
1011 |
+
|
1012 |
+
#: wp-to-twitter-manager.php:686
|
1013 |
+
msgid "Default: sequential URL numbering."
|
1014 |
+
msgstr "Per defecte: numeració de direccions URL seqüencial."
|
1015 |
+
|
1016 |
+
#: wp-to-twitter-manager.php:692
|
1017 |
+
msgid "Save YOURLS Account Info"
|
1018 |
+
msgstr "Guardi l'informació de compta YOURLS"
|
1019 |
+
|
1020 |
+
#: wp-to-twitter-manager.php:692
|
1021 |
+
msgid "Clear YOURLS password"
|
1022 |
+
msgstr "Neteja la contrasenya YOURLS"
|
1023 |
+
|
1024 |
+
#: wp-to-twitter-manager.php:692
|
1025 |
+
msgid "A YOURLS password and username is required to shorten URLs via the remote YOURLS API and WP to Twitter."
|
1026 |
+
msgstr "Es requereix una contrasenya YOURLS i un nom d'usuari per escurçar direccions URLs via l'API YOURLS remota i WP to Twitter."
|
1027 |
+
|
1028 |
+
#: wp-to-twitter-manager.php:705
|
1029 |
+
msgid "Advanced Settings"
|
1030 |
+
msgstr "Ajusts avançats"
|
1031 |
+
|
1032 |
+
#: wp-to-twitter-manager.php:710 wp-to-twitter-manager.php:875
|
1033 |
+
msgid "Save Advanced WP->Twitter Options"
|
1034 |
+
msgstr "Guardar les opcions d'ajusts avançats WP->Twitter"
|
1035 |
+
|
1036 |
+
#: wp-to-twitter-manager.php:712
|
1037 |
+
msgid "Advanced Tweet settings"
|
1038 |
+
msgstr "Ajusts avançats per tuits"
|
1039 |
+
|
1040 |
+
#: wp-to-twitter-manager.php:714
|
1041 |
+
msgid "Strip nonalphanumeric characters from tags"
|
1042 |
+
msgstr "Talla caràcters no alfanumèrics d'etiquetes"
|
1043 |
+
|
1044 |
+
#: wp-to-twitter-manager.php:715
|
1045 |
+
msgid "Spaces in tags replaced with:"
|
1046 |
+
msgstr "Espais a etiquetes canviats amb:"
|
1047 |
+
|
1048 |
+
#: wp-to-twitter-manager.php:717
|
1049 |
+
msgid "Default replacement is an underscore (<code>_</code>). Use <code>[ ]</code> to remove spaces entirely."
|
1050 |
+
msgstr "El reemplaçament per defecte és un guió baix (<code>_</code>). Utilitzi <code>[ ]</code> per treure per complert tots els espais."
|
1051 |
+
|
1052 |
+
#: wp-to-twitter-manager.php:720
|
1053 |
+
msgid "Maximum number of tags to include:"
|
1054 |
+
msgstr "Nombre màxim d'etiquetes per incloure:"
|
1055 |
+
|
1056 |
+
#: wp-to-twitter-manager.php:721
|
1057 |
+
msgid "Maximum length in characters for included tags:"
|
1058 |
+
msgstr "Longitud màxima en caràcters per a les etiquetes incloses:"
|
1059 |
+
|
1060 |
+
#: wp-to-twitter-manager.php:722
|
1061 |
+
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."
|
1062 |
+
msgstr "Aquestes opcions li permeten restringir la longitud i el nombre d'etiquetes de WordPress enviades a Twitter com a hashtags. Estableixi el valor <code>0</code> o deixi-ho en blanc per permetre totes i cadascuna de les etiquetes."
|
1063 |
+
|
1064 |
+
#: wp-to-twitter-manager.php:725
|
1065 |
+
msgid "Length of post excerpt (in characters):"
|
1066 |
+
msgstr "Longitud de l'extracte de la publicació (en caràcters):"
|
1067 |
+
|
1068 |
+
#: wp-to-twitter-manager.php:725
|
1069 |
+
msgid "By default, extracted from the post itself. If you use the 'Excerpt' field, that will be used instead."
|
1070 |
+
msgstr "Per defecte, extracte de la publicació mateixa. Si utilitza el camp \"Extracte\", aquest serà utilitzat en el seu lloc."
|
1071 |
+
|
1072 |
+
#: wp-to-twitter-manager.php:728
|
1073 |
+
msgid "WP to Twitter Date Formatting:"
|
1074 |
+
msgstr "Format de data de WP to Twitter:"
|
1075 |
+
|
1076 |
+
#: wp-to-twitter-manager.php:729
|
1077 |
+
msgid "Default is from your general settings. <a href='http://codex.wordpress.org/Formatting_Date_and_Time'>Date Formatting Documentation</a>."
|
1078 |
+
msgstr "Per defecte s'utilitzen els seus ajustos generals. <a href='http://codex.wordpress.org/Formatting_Date_and_Time'>Documentació sobre el format de la data</a>."
|
1079 |
+
|
1080 |
+
#: wp-to-twitter-manager.php:733
|
1081 |
+
msgid "Custom text before all Tweets:"
|
1082 |
+
msgstr "Text personalitzat abans de tots els tuits:"
|
1083 |
+
|
1084 |
+
#: wp-to-twitter-manager.php:734
|
1085 |
+
msgid "Custom text after all Tweets:"
|
1086 |
+
msgstr "Text personalitzat desprès de tots els tuits:"
|
1087 |
+
|
1088 |
+
#: wp-to-twitter-manager.php:737
|
1089 |
+
msgid "Custom field for an alternate URL to be shortened and Tweeted:"
|
1090 |
+
msgstr "Camp personalitzat per una direcció URL alternativa per a ser escurçada i tuitejada:"
|
1091 |
+
|
1092 |
+
#: wp-to-twitter-manager.php:738
|
1093 |
+
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."
|
1094 |
+
msgstr "Pot utilitzar un camp personalitzat per enviar una direcció URL alternativa per a la seva publicació. El valor és el nom del camp personalitzat que conté la seva direcció URL externa."
|
1095 |
+
|
1096 |
+
#: wp-to-twitter-manager.php:761
|
1097 |
+
msgid "Preferred status update truncation sequence"
|
1098 |
+
msgstr "Seqüència truncada d'actualització d'estat preferida."
|
1099 |
+
|
1100 |
+
#: wp-to-twitter-manager.php:764
|
1101 |
+
msgid "This is the order in which items will be abbreviated or removed from your status update if it is too long to send to Twitter."
|
1102 |
+
msgstr "Aquest és l'ordre en el qual els ítems seran abreviats o esborrats de la vostra actualització d'estat si aquesta és massa llarga per a ser enviada a Twitter"
|
1103 |
+
|
1104 |
+
#: wp-to-twitter-manager.php:769
|
1105 |
+
msgid "Special Cases when WordPress should send a Tweet"
|
1106 |
+
msgstr "Casos especials per als que WordPress ha d'enviar un tuit"
|
1107 |
+
|
1108 |
+
#: wp-to-twitter-manager.php:772
|
1109 |
+
msgid "Do not post Tweets by default"
|
1110 |
+
msgstr "No publiquis tuits per defecte"
|
1111 |
+
|
1112 |
+
#: wp-to-twitter-manager.php:775
|
1113 |
+
msgid "By default, all posts meeting other requirements will be posted to Twitter. Check this to change your setting."
|
1114 |
+
msgstr "Per defecte, totes les publicacions que compleixin altres requeriments seran publicades a Twitter. Comproveu això per canviar la vostra configuració."
|
1115 |
+
|
1116 |
+
#: wp-to-twitter-manager.php:779
|
1117 |
+
msgid "Allow status updates from Quick Edit"
|
1118 |
+
msgstr "Permet actualitzacions d'estat des de l'edició ràpida"
|
1119 |
+
|
1120 |
+
#: wp-to-twitter-manager.php:780
|
1121 |
+
msgid "If checked, all posts edited individually or in bulk through the Quick Edit feature will be Tweeted."
|
1122 |
+
msgstr "Si està seleccionat, totes les publicacions editades de forma individual o en massa a través de la característica Edició ràpida seran tuitejades."
|
1123 |
+
|
1124 |
+
#: wp-to-twitter-manager.php:785
|
1125 |
+
msgid "Delaying tweets with WP Tweets PRO moves Tweeting to an publishing-independent action."
|
1126 |
+
msgstr "Retrassar tuits amb WP Tweets PRO mou tuitejar cap a una acció de publicació independent."
|
1127 |
+
|
1128 |
+
#: wp-to-twitter-manager.php:792
|
1129 |
+
msgid "Send Twitter Updates on remote publication (Post by Email or XMLRPC Client)"
|
1130 |
+
msgstr "Envia actualitzacions de Twitter quan s'esborri una publicació (publicació per email o client XMLRPC)"
|
1131 |
+
|
1132 |
+
#: wp-to-twitter-manager.php:797
|
1133 |
+
msgid "Google Analytics Settings"
|
1134 |
+
msgstr "Ajusts de Google Analytics"
|
1135 |
+
|
1136 |
+
#: wp-to-twitter-manager.php:798
|
1137 |
+
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."
|
1138 |
+
msgstr "Podeu rastrejar la resposta de Twitter utilitzant Google Analytics si definiu un identificador de campanya aquí. Podeu definir tant un identificador estàtic com un de dinàmic. Els identificadors estàtics no canvien de publicació en publicació; els dinàmics deriven d'una informació rellevant de la publicació específica. Els identificadors dinàmics li permetran trencar les seves estadístiques amb una variable adicional."
|
1139 |
+
|
1140 |
+
#: wp-to-twitter-manager.php:802
|
1141 |
+
msgid "Use a Static Identifier with WP-to-Twitter"
|
1142 |
+
msgstr "Utilitza un identificador estàtic amb WP-to-Twitter"
|
1143 |
+
|
1144 |
+
#: wp-to-twitter-manager.php:803
|
1145 |
+
msgid "Static Campaign identifier for Google Analytics:"
|
1146 |
+
msgstr "Identificador de campanya estàtic per Google Analytics:"
|
1147 |
+
|
1148 |
+
#: wp-to-twitter-manager.php:807
|
1149 |
+
msgid "Use a dynamic identifier with Google Analytics and WP-to-Twitter"
|
1150 |
+
msgstr "Utilitza un identificador dinàmic amb Google Analytics i WP-to-Twitter"
|
1151 |
+
|
1152 |
+
#: wp-to-twitter-manager.php:808
|
1153 |
+
msgid "What dynamic identifier would you like to use?"
|
1154 |
+
msgstr "Quina mena d'identificador dinàmic voleu utilitzar?"
|
1155 |
+
|
1156 |
+
#: wp-to-twitter-manager.php:810
|
1157 |
+
msgid "Category"
|
1158 |
+
msgstr "Categoria"
|
1159 |
+
|
1160 |
+
#: wp-to-twitter-manager.php:811
|
1161 |
+
msgid "Post ID"
|
1162 |
+
msgstr "ID de la publicació"
|
1163 |
+
|
1164 |
+
#: wp-to-twitter-manager.php:812
|
1165 |
+
msgid "Post Title"
|
1166 |
+
msgstr "Títol de la publicació"
|
1167 |
+
|
1168 |
+
#: wp-to-twitter-manager.php:813
|
1169 |
+
msgid "Author"
|
1170 |
+
msgstr "Autor"
|
lang/wp-to-twitter-da_DA.mo
ADDED
Binary file
|
lang/wp-to-twitter-da_DA.po
ADDED
@@ -0,0 +1,1158 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of WP to Twitter in Danish
|
2 |
+
# This file is distributed under the same license as the WP to Twitter package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2013-02-14 00:38:24+0000\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/0.1\n"
|
11 |
+
"Project-Id-Version: WP to Twitter\n"
|
12 |
+
|
13 |
+
#: wp-to-twitter-manager.php:177
|
14 |
+
msgid "WP to Twitter failed to connect with Twitter. Try <a href=\"#wpt_http\">switching to an HTTP connection</a>."
|
15 |
+
msgstr "WP to Twitter kunne ikke forbindelse til Twitter. Prøv at <a href=\"#wpt_http\">skifte til en HTTP forbindelse</a>."
|
16 |
+
|
17 |
+
#: wp-to-twitter-manager.php:544
|
18 |
+
msgid "Choose a short URL service (account settings below)"
|
19 |
+
msgstr "Vælg en short URL service (kontoindstillinger nedenfor)"
|
20 |
+
|
21 |
+
#: wp-to-twitter-manager.php:550
|
22 |
+
msgid "YOURLS (on this server)"
|
23 |
+
msgstr "YOURLS (på denne server)"
|
24 |
+
|
25 |
+
#: wp-to-twitter-manager.php:551
|
26 |
+
msgid "YOURLS (on a remote server)"
|
27 |
+
msgstr "YOURLS (på en fjernserver)"
|
28 |
+
|
29 |
+
#: wp-to-twitter-manager.php:592
|
30 |
+
msgid "In addition to standard template tags, comments can use <code>#commenter#</code> to post the commenter's name in the Tweet. <em>Use this at your own risk</em>, as it lets anybody who can post a comment on your site post a phrase in your Twitter stream."
|
31 |
+
msgstr "Foruden de almindelige standard skabelon-tags, kan kommentatorer benytte <code>#commenter#</code> for at skrive kommentator-navn i Tweets. <em>Brug på egen risiko</em>, da det lader hvem som helst der kan skrive kommentarer på dit netsted skrive en sætning i din Twitter strøm."
|
32 |
+
|
33 |
+
#: wp-to-twitter-manager.php:645
|
34 |
+
msgid "Get your Bit.ly API information."
|
35 |
+
msgstr "Hent din Bit.ly API information."
|
36 |
+
|
37 |
+
#: wp-to-twitter.php:63
|
38 |
+
msgid "The current version of WP Tweets PRO is <strong>%s</strong>. Upgrade for best compatibility!"
|
39 |
+
msgstr "Den nuværende version af WP Tweets PRO er <strong>%s</strong>. Opgradér for bedre kompatibilitet!"
|
40 |
+
|
41 |
+
#: functions.php:325
|
42 |
+
msgid "Thank you for supporting the continuing development of this plug-in! I'll get back to you as soon as I can. Please ensure that you can receive email at <code>%s</code>."
|
43 |
+
msgstr "Tak fordi du støtter den fortsatte udvikling af dette plugin! Jeg vender tilbage til dig, så hurtigt det er muligt. Sørg venligst for at du kan modtage e-mail på <code>%s</code>."
|
44 |
+
|
45 |
+
#: functions.php:327
|
46 |
+
msgid "Thanks for using WP to Twitter. Please ensure that you can receive email at <code>%s</code>."
|
47 |
+
msgstr "Tak fordi du benytter WP to Twitter. Sørg venligst for at du kan modtage e-mail på <code>%s</code>."
|
48 |
+
|
49 |
+
#: functions.php:351
|
50 |
+
msgid "Reply to:"
|
51 |
+
msgstr "Svar til:"
|
52 |
+
|
53 |
+
#: wp-to-twitter-manager.php:835
|
54 |
+
msgid "The lowest user group that can add their Twitter information"
|
55 |
+
msgstr "Den laveste brugergruppe der kan tilføje deres Twitter information"
|
56 |
+
|
57 |
+
#: wp-to-twitter-manager.php:840
|
58 |
+
msgid "The lowest user group that can see the Custom Tweet options when posting"
|
59 |
+
msgstr "Den laveste brugergruppe der kan se den brugerdefineret tweet-funktion når der skrives."
|
60 |
+
|
61 |
+
#: wp-to-twitter-manager.php:845
|
62 |
+
msgid "The lowest user group that can toggle the Tweet/Don't Tweet option"
|
63 |
+
msgstr "Den laveste brugergruppe der kan skifte mellem funktionen Tweet/Tweet-ikke"
|
64 |
+
|
65 |
+
#: wp-to-twitter-manager.php:850
|
66 |
+
msgid "The lowest user group that can send Twitter updates"
|
67 |
+
msgstr "Den laveste brugergruppe der kan sende Twitter opdateringer"
|
68 |
+
|
69 |
+
#: wp-to-twitter-manager.php:982
|
70 |
+
msgid "<code>#author#</code>: the post author (@reference if available, otherwise display name)"
|
71 |
+
msgstr "<code>#author#</code>: Indlægsforfatter (@reference hvis tilgængelig, ellers display name)"
|
72 |
+
|
73 |
+
#: wp-to-twitter-manager.php:983
|
74 |
+
msgid "<code>#displayname#</code>: post author's display name"
|
75 |
+
msgstr "<code>#displayname#</code>: send forfatters display name"
|
76 |
+
|
77 |
+
#: wp-to-twitter.php:74
|
78 |
+
msgid "WP to Twitter requires WordPress 3.0.6 or a more recent version <a href=\"http://codex.wordpress.org/Upgrading_WordPress\">Please update WordPress to continue using WP to Twitter with all features!</a>"
|
79 |
+
msgstr "WP to Twitter forudsætter WordPress 3.0.6 eller en nyere version <a href=\"http://codex.wordpress.org/Upgrading_WordPress\">Opgradér venligst WordPress for at fortsætte med at benytte WP to Twitter med alle funktioner!</a>"
|
80 |
+
|
81 |
+
#: wp-to-twitter.php:285
|
82 |
+
msgid "This tweet was blank and could not be sent to Twitter."
|
83 |
+
msgstr "Denne tweet var blank og kunne ikke sendes til Twitter."
|
84 |
+
|
85 |
+
#: wp-to-twitter.php:336
|
86 |
+
msgid "404 Not Found: The URI requested is invalid or the resource requested does not exist."
|
87 |
+
msgstr "404 Ikke fundet: Den anmodede URL er ugyldig eller den anmodede ressource findes ikke."
|
88 |
+
|
89 |
+
#: wp-to-twitter.php:340
|
90 |
+
msgid "406 Not Acceptable: Invalid Format Specified."
|
91 |
+
msgstr "406 Ikke acceptabel: Ugyldigt format angivet."
|
92 |
+
|
93 |
+
#: wp-to-twitter.php:344
|
94 |
+
msgid "429 Too Many Requests: You have exceeded your rate limits."
|
95 |
+
msgstr "429 For mange anmodninger: Du har overskredet dine rate-begrænsninger."
|
96 |
+
|
97 |
+
#: wp-to-twitter.php:360
|
98 |
+
msgid "504 Gateway Timeout: The Twitter servers are up, but the request couldn't be serviced due to some failure within our stack. Try again later."
|
99 |
+
msgstr "504 Gateway Timeout: Twitter serverne fungerer, men forespørgslen kunne ikke behandles på grund af nogle fejl i vores datastruktur. Prøv igen senere."
|
100 |
+
|
101 |
+
#: wp-to-twitter.php:1162
|
102 |
+
msgid "Your prepended Tweet text; not part of your template."
|
103 |
+
msgstr "Din foranstillet Tweet-tekst; ikke en del af din skabelon."
|
104 |
+
|
105 |
+
#: wp-to-twitter.php:1165
|
106 |
+
msgid "Your appended Tweet text; not part of your template."
|
107 |
+
msgstr "Din tilføjede Tweet tekst; ikke en del af din skabelon."
|
108 |
+
|
109 |
+
#: wp-to-twitter.php:1219
|
110 |
+
msgid "Tweets are no more than 140 characters; Twitter counts URLs as 20 characters. Template tags: <code>#url#</code>, <code>#title#</code>, <code>#post#</code>, <code>#category#</code>, <code>#date#</code>, <code>#modified#</code>, <code>#author#</code>, <code>#account#</code>, <code>#tags#</code>, or <code>#blog#</code>."
|
111 |
+
msgstr "Tweets er ikke mere end 140 tegn; Twitter beregner URLs som 20 tegn. Skabelon tags: <code>#url#</code>, <code>#title#</code>, <code>#post#</code>, <code>#category#</code>, <code>#date#</code>, <code>#modified#</code>, <code>#author#</code>, <code>#account#</code>, <code>#tags#</code>, or <code>#blog#</code>."
|
112 |
+
|
113 |
+
#: wp-to-twitter.php:1231
|
114 |
+
msgid "Your role does not have the ability to Post Tweets from this site."
|
115 |
+
msgstr "Din brugerrolle har ikke rettigheder til at skrive Tweets fra dette netsted."
|
116 |
+
|
117 |
+
#: wp-to-twitter.php:1355
|
118 |
+
msgid "Hide account name in Tweets"
|
119 |
+
msgstr "Gem kontonavn i Tweets"
|
120 |
+
|
121 |
+
#: wp-to-twitter.php:1356
|
122 |
+
msgid "Do not display my account in the #account# template tag."
|
123 |
+
msgstr "Vis ikke min konto i #account# skabelon tag."
|
124 |
+
|
125 |
+
#: functions.php:354
|
126 |
+
msgid "I have read <a href=\"%1$s\">the FAQ for this plug-in</a> <span>(required)</span>"
|
127 |
+
msgstr "Jeg har læst <a href=\"%1$s\">FAQ for denne plug-in</a> <span>(påkrævet)</span>"
|
128 |
+
|
129 |
+
#: functions.php:357
|
130 |
+
msgid "I have <a href=\"%1$s\">made a donation to help support this plug-in</a>"
|
131 |
+
msgstr "Jeg har <a href=\"%1$s\">givet en donation som støtte til denne plug-in</a>"
|
132 |
+
|
133 |
+
#: functions.php:360
|
134 |
+
msgid "Support Request:"
|
135 |
+
msgstr "Support anmodning:"
|
136 |
+
|
137 |
+
#: wp-to-twitter-manager.php:571
|
138 |
+
msgid "Settings for type \"%1$s\""
|
139 |
+
msgstr "Indstillinger for type \"%1$s\""
|
140 |
+
|
141 |
+
#: wp-to-twitter-manager.php:574
|
142 |
+
msgid "Update when %1$s %2$s is published"
|
143 |
+
msgstr "Opdater når %1$s %2$s er udgivet"
|
144 |
+
|
145 |
+
#: wp-to-twitter-manager.php:574
|
146 |
+
msgid "Text for new %1$s updates"
|
147 |
+
msgstr "Tekst for nye %1$s opdateringer"
|
148 |
+
|
149 |
+
#: wp-to-twitter-manager.php:578
|
150 |
+
msgid "Update when %1$s %2$s is edited"
|
151 |
+
msgstr "Opdater når %1$s %2$s redigeres"
|
152 |
+
|
153 |
+
#: wp-to-twitter-manager.php:578
|
154 |
+
msgid "Text for %1$s editing updates"
|
155 |
+
msgstr "Tekst for %1$s redigerings-opdateringer"
|
156 |
+
|
157 |
+
#: wp-to-twitter-oauth.php:190
|
158 |
+
msgid "Your server timezone (should be UTC,GMT,Europe/London or equivalent):"
|
159 |
+
msgstr "Din server tidszone (bør være UTC,GMT,Europe/London eller tilsvarende):"
|
160 |
+
|
161 |
+
#: wp-to-twitter-manager.php:553
|
162 |
+
msgid "Use Twitter Friendly Links."
|
163 |
+
msgstr "Benyt Twitter venlige genveje."
|
164 |
+
|
165 |
+
#: wp-to-twitter-manager.php:650
|
166 |
+
msgid "View your Bit.ly username and API key"
|
167 |
+
msgstr "Se dit Bit.ly brugernavn og API nøgle"
|
168 |
+
|
169 |
+
#: wp-to-twitter-manager.php:694
|
170 |
+
msgid "Your shortener does not require any account settings."
|
171 |
+
msgstr "Din shortener kræver ingen kontoindstillinger."
|
172 |
+
|
173 |
+
#: wp-to-twitter.php:314
|
174 |
+
msgid "Your Twitter application does not have read and write permissions. Go to <a href=\"%s\">your Twitter apps</a> to modify these settings."
|
175 |
+
msgstr "Din Twitter applikation har ikke læse- og skriverettigheder. Gå til <a href=\"%s\">dine Twitter apps</a> for at tilpasse disse indstillinger."
|
176 |
+
|
177 |
+
#: wp-to-twitter.php:1135
|
178 |
+
msgid "Failed Tweets"
|
179 |
+
msgstr "Mislykket Tweets"
|
180 |
+
|
181 |
+
#: wp-to-twitter.php:1150
|
182 |
+
msgid "No failed tweets on this post."
|
183 |
+
msgstr "Ingen mislykket tweets i dette indlæg."
|
184 |
+
|
185 |
+
#: wp-to-twitter-manager.php:957
|
186 |
+
msgid "Upgrade to <strong>WP Tweets PRO</strong> for more options!"
|
187 |
+
msgstr "Opgrader til <strong>WP Tweets PRO</strong> for flere funktioner!"
|
188 |
+
|
189 |
+
#: wp-to-twitter-manager.php:987
|
190 |
+
msgid "<code>#reference#</code>: Used only in co-tweeting. @reference to main account when posted to author account, @reference to author account in post to main account."
|
191 |
+
msgstr "<code>#reference#</code>: Benyttes kun ved co-tweeting. @reference til hovedkonto for indlæg på en forfatter-konto, @reference til forfatter-konto for indlæg på en hovedkonto."
|
192 |
+
|
193 |
+
#: wp-to-twitter-oauth.php:165
|
194 |
+
msgid "Connection Problems? Try <a href='#wpt_http'>switching to <code>http</code> queries</a>.<br />"
|
195 |
+
msgstr "Forbindelsesproblemer? Prøv at <a href='#wpt_http'>skifte til <code>http</code> forespørgsler</a>.<br />"
|
196 |
+
|
197 |
+
#: wp-to-twitter-oauth.php:259
|
198 |
+
msgid "WP to Twitter could not contact Twitter's remote server. Here is the error triggered: "
|
199 |
+
msgstr "WP to Twitter klunne ikke kontakte Twitter's fjernserver. Her er den udløste fejl: "
|
200 |
+
|
201 |
+
#: wp-to-twitter.php:271
|
202 |
+
msgid "This account is not authorized to post to Twitter."
|
203 |
+
msgstr "Denne konto er ikke godkendt til at skrive indlæg på Twitter."
|
204 |
+
|
205 |
+
#: wp-to-twitter.php:279
|
206 |
+
msgid "This tweet is identical to another Tweet recently sent to this account."
|
207 |
+
msgstr "Denne tweet er identisk med en anden Tweet der for nylig er sendt til denne konto."
|
208 |
+
|
209 |
+
#: wp-to-twitter.php:1154
|
210 |
+
msgid "WP to Twitter can do more for you! Take a look at WP Tweets Pro!"
|
211 |
+
msgstr "WP to Twitter kan gøre mere for dig! Tag et kig på WP Tweets Pro!"
|
212 |
+
|
213 |
+
#: wp-to-twitter-manager.php:618
|
214 |
+
msgid "(optional)"
|
215 |
+
msgstr "(valgfri)"
|
216 |
+
|
217 |
+
#: wp-to-twitter-manager.php:771
|
218 |
+
msgid "Do not post Tweets by default (editing only)"
|
219 |
+
msgstr "Send ikke Tweets som standard (gælder kun redigering)"
|
220 |
+
|
221 |
+
#: wp-to-twitter-manager.php:980
|
222 |
+
msgid "<code>#modified#</code>: the post modified date"
|
223 |
+
msgstr "<code>#modified#</code>: redigeringsdato for indlæg"
|
224 |
+
|
225 |
+
#: wp-to-twitter-oauth.php:257
|
226 |
+
msgid "Your time stamps are more than 5 minutes apart. Your server could lose its connection with Twitter."
|
227 |
+
msgstr "Der er mere end 5 minutter imellem dine tidsstempler. Din server kan miste sin forbindelse med Twitter."
|
228 |
+
|
229 |
+
#: wp-to-twitter-manager.php:815
|
230 |
+
msgid "Individual Authors"
|
231 |
+
msgstr "Individuelle Forfattere"
|
232 |
+
|
233 |
+
#: wp-to-twitter-manager.php:818
|
234 |
+
msgid "Authors have individual Twitter accounts"
|
235 |
+
msgstr "Forfattere har individuelle Twitter konti"
|
236 |
+
|
237 |
+
#: wp-to-twitter-manager.php:818
|
238 |
+
msgid "Authors can add their username in their user profile. This feature can only add an @reference to the author. The @reference is placed using the <code>#account#</code> shortcode, which will pick up the main account if user accounts are not enabled."
|
239 |
+
msgstr "Forfattere kan tilføje deres brugernavn i deres brugerprofil. Denne funktion tilføjer kun en @reference til forfatteren. @referencen placeres ved brug af <code>#account#</code> shortcode, som henter hovedkontoen hvis brugerkonti ikke er aktiveret."
|
240 |
+
|
241 |
+
#: wp-to-twitter-manager.php:856
|
242 |
+
msgid "Disable Error Messages"
|
243 |
+
msgstr "Deaktiver fejlmeddelelser"
|
244 |
+
|
245 |
+
#: wp-to-twitter-manager.php:858
|
246 |
+
msgid "Disable global URL shortener error messages."
|
247 |
+
msgstr "Deaktiver globale URL shortener fejlmeddelelser"
|
248 |
+
|
249 |
+
#: wp-to-twitter-manager.php:859
|
250 |
+
msgid "Disable global Twitter API error messages."
|
251 |
+
msgstr "Deaktiver globale Twitter API fejlmeddelelser"
|
252 |
+
|
253 |
+
#: wp-to-twitter-manager.php:860
|
254 |
+
msgid "Disable notification to implement OAuth"
|
255 |
+
msgstr "Deaktiver note om at implementere OAuth"
|
256 |
+
|
257 |
+
#: wp-to-twitter-manager.php:862
|
258 |
+
msgid "Get Debugging Data for OAuth Connection"
|
259 |
+
msgstr "Få debug data fra OAuth forbindelse"
|
260 |
+
|
261 |
+
#: wp-to-twitter-manager.php:864
|
262 |
+
msgid "Switch to <code>http</code> connection. (Default is https)"
|
263 |
+
msgstr "Skift til <code>http</code> forbindelse. (Standard er https)"
|
264 |
+
|
265 |
+
#: wp-to-twitter-manager.php:866
|
266 |
+
msgid "I made a donation, so stop whinging at me, please."
|
267 |
+
msgstr "Jeg har doneret, så vær rar og stop med at plage mig"
|
268 |
+
|
269 |
+
#: wp-to-twitter-manager.php:880
|
270 |
+
msgid "Limit Updating Categories"
|
271 |
+
msgstr "Begræsning på opdatering af Kategorier"
|
272 |
+
|
273 |
+
#: wp-to-twitter-manager.php:883
|
274 |
+
msgid "If no categories are checked, limiting by category will be ignored, and all categories will be Tweeted."
|
275 |
+
msgstr "Hvis der ikke er markeret en kategori, ignoreres kategoribegrænsning og alle kategorier Tweetes."
|
276 |
+
|
277 |
+
#: wp-to-twitter-manager.php:884
|
278 |
+
msgid "<em>Category limits are disabled.</em>"
|
279 |
+
msgstr "<em>Kategoribegrænsninger er fjernet.</em>"
|
280 |
+
|
281 |
+
#: wp-to-twitter-manager.php:893
|
282 |
+
msgid "Get Plug-in Support"
|
283 |
+
msgstr "Anmod om Plug-in support"
|
284 |
+
|
285 |
+
#: wp-to-twitter-manager.php:904
|
286 |
+
msgid "Check Support"
|
287 |
+
msgstr "Tjek Support"
|
288 |
+
|
289 |
+
#: wp-to-twitter-manager.php:904
|
290 |
+
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."
|
291 |
+
msgstr "Tjek om din server supporterer <a href=\"http://www.joedolson.com/articles/wp-to-twitter/\">WP to Twitter's</a> forespørgelser til Twitter og URL shortening APIs. Testen her vil sende en status opdatering til Twitter og forkorte en URL ved at benytte de valgte metoder."
|
292 |
+
|
293 |
+
#: wp-to-twitter-manager.php:922
|
294 |
+
msgid "Support WP to Twitter"
|
295 |
+
msgstr "Støt WP to Twitter"
|
296 |
+
|
297 |
+
#: wp-to-twitter-manager.php:924
|
298 |
+
msgid "WP to Twitter Support"
|
299 |
+
msgstr "WP to Twitter Support"
|
300 |
+
|
301 |
+
#: wp-to-twitter-manager.php:932
|
302 |
+
msgid "View Settings"
|
303 |
+
msgstr "Se indstillinger"
|
304 |
+
|
305 |
+
#: wp-to-twitter-manager.php:934 wp-to-twitter.php:1224 wp-to-twitter.php:1226
|
306 |
+
msgid "Get Support"
|
307 |
+
msgstr "Anmod om support"
|
308 |
+
|
309 |
+
#: wp-to-twitter-manager.php:938
|
310 |
+
msgid "<a href=\"http://www.joedolson.com/donate.php\">Make a donation today!</a> Every donation counts - donate $2, $10, or $100 and help me keep this plug-in running!"
|
311 |
+
msgstr "<a href=\"http://www.joedolson.com/donate.php\">Giv en donation i dag!</a> Hver eneste donation tæller- donér $2, $10, eller $100 og hjælp mig med at holde denne plug-in kørende!"
|
312 |
+
|
313 |
+
#: wp-to-twitter-manager.php:955
|
314 |
+
msgid "Upgrade Now!"
|
315 |
+
msgstr "Opgradér nu!"
|
316 |
+
|
317 |
+
#: wp-to-twitter-manager.php:958
|
318 |
+
msgid "Extra features with the PRO upgrade:"
|
319 |
+
msgstr "Ekstra funktioner med PRO opgradering:"
|
320 |
+
|
321 |
+
#: wp-to-twitter-manager.php:960
|
322 |
+
msgid "Users can post to their own Twitter accounts"
|
323 |
+
msgstr "Brugere kan sende indlæg til deres egne Twitter konti"
|
324 |
+
|
325 |
+
#: wp-to-twitter-manager.php:961
|
326 |
+
msgid "Set a timer to send your Tweet minutes or hours after you publish the post"
|
327 |
+
msgstr "Indstil en timer til at sende dit Tweet minutter eller timer efter du udgiver indlægget"
|
328 |
+
|
329 |
+
#: wp-to-twitter-manager.php:962
|
330 |
+
msgid "Automatically re-send Tweets at an assigned time after publishing"
|
331 |
+
msgstr "Gensend automatisk Tweets på et planlagt tidspunkt efter udgivelse."
|
332 |
+
|
333 |
+
#: wp-to-twitter-manager.php:971
|
334 |
+
msgid "Shortcodes"
|
335 |
+
msgstr "Shortcodes"
|
336 |
+
|
337 |
+
#: wp-to-twitter-manager.php:973
|
338 |
+
msgid "Available in post update templates:"
|
339 |
+
msgstr "Tilgængelig i indlægs-opdateringsskabeloner:"
|
340 |
+
|
341 |
+
#: wp-to-twitter-manager.php:975
|
342 |
+
msgid "<code>#title#</code>: the title of your blog post"
|
343 |
+
msgstr "<code>#title#</code>: titlen på dit indlæg"
|
344 |
+
|
345 |
+
#: wp-to-twitter-manager.php:976
|
346 |
+
msgid "<code>#blog#</code>: the title of your blog"
|
347 |
+
msgstr "<code>#blog#</code>: titlen på din blog"
|
348 |
+
|
349 |
+
#: wp-to-twitter-manager.php:977
|
350 |
+
msgid "<code>#post#</code>: a short excerpt of the post content"
|
351 |
+
msgstr "<code>#post#</code>: en kort beskrivelse af indlæggets indhold"
|
352 |
+
|
353 |
+
#: wp-to-twitter-manager.php:978
|
354 |
+
msgid "<code>#category#</code>: the first selected category for the post"
|
355 |
+
msgstr "<code>#category#</code>: den første valgte kategori for indlægget"
|
356 |
+
|
357 |
+
#: wp-to-twitter-manager.php:979
|
358 |
+
msgid "<code>#date#</code>: the post date"
|
359 |
+
msgstr "<code>#date#</code>: dato for indlæg"
|
360 |
+
|
361 |
+
#: wp-to-twitter-manager.php:981
|
362 |
+
msgid "<code>#url#</code>: the post URL"
|
363 |
+
msgstr "<code>#url#</code>: Indlæg URL"
|
364 |
+
|
365 |
+
#: wp-to-twitter-manager.php:984
|
366 |
+
msgid "<code>#account#</code>: the twitter @reference for the account (or the author, if author settings are enabled and set.)"
|
367 |
+
msgstr "<code>#account#</code>: Twitter @reference for kontoen (eller forfatteren, hvis forfatterindstillinger er aktiveret og indsat.)"
|
368 |
+
|
369 |
+
#: wp-to-twitter-manager.php:985
|
370 |
+
msgid "<code>#tags#</code>: your tags modified into hashtags. See options in the Advanced Settings section, below."
|
371 |
+
msgstr "<code>#tags#</code>: dine tags ændret til hashtags. Se valgmuligheder under avancerede indstillinger herunder."
|
372 |
+
|
373 |
+
#: wp-to-twitter-manager.php:990
|
374 |
+
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>"
|
375 |
+
msgstr "Du kan også generere specielle shortcodes for at få adgang til WordPress custom felter. Brug firkantede klammer omkring navnet på dit custom felt for at tilføje navnet til din status opdatering. Eksempel: <code>[[custom_field]]</code></p>"
|
376 |
+
|
377 |
+
#: wp-to-twitter-oauth.php:96
|
378 |
+
msgid "WP to Twitter was unable to establish a connection to Twitter."
|
379 |
+
msgstr "WP to Twitter kunne oprette en forbindelse til Twitter."
|
380 |
+
|
381 |
+
#: wp-to-twitter-oauth.php:166
|
382 |
+
msgid "There was an error querying Twitter's servers"
|
383 |
+
msgstr "Der opstod en fejl ved forespørgsler på Twitter's servere"
|
384 |
+
|
385 |
+
#: wp-to-twitter-oauth.php:182 wp-to-twitter-oauth.php:184
|
386 |
+
msgid "Connect to Twitter"
|
387 |
+
msgstr "Forbind til Twitter."
|
388 |
+
|
389 |
+
#: wp-to-twitter-oauth.php:187
|
390 |
+
msgid "WP to Twitter Set-up"
|
391 |
+
msgstr "WP to Twitter opsætning"
|
392 |
+
|
393 |
+
#: wp-to-twitter-oauth.php:188 wp-to-twitter-oauth.php:281
|
394 |
+
msgid "Your server time:"
|
395 |
+
msgstr "Din server tid:"
|
396 |
+
|
397 |
+
#: wp-to-twitter-oauth.php:188
|
398 |
+
msgid "Twitter's time:"
|
399 |
+
msgstr "Twitter's tid:"
|
400 |
+
|
401 |
+
#: wp-to-twitter-oauth.php:188
|
402 |
+
msgid "If these timestamps are not within 5 minutes of each other, your server will not connect to Twitter."
|
403 |
+
msgstr "Hvis disse tidsstempler ligger længere end 5 minutter fra hinanden, vil din server ikke forbinde til Twitter. "
|
404 |
+
|
405 |
+
#: wp-to-twitter-oauth.php:192
|
406 |
+
msgid "<em>Note</em>: you will not add your Twitter user information to WP to Twitter; it is not used in this authentication method."
|
407 |
+
msgstr "<em>Bemærk</em>: du vil ikke tilføje dine Twitter brugeroplysninger til WP to Twitter; det benyttes ikke i denne godkendelsesmetode."
|
408 |
+
|
409 |
+
#: wp-to-twitter-oauth.php:196
|
410 |
+
msgid "1. Register this site as an application on "
|
411 |
+
msgstr "1. Registrér dette netsted som en applikation på"
|
412 |
+
|
413 |
+
#: wp-to-twitter-oauth.php:196
|
414 |
+
msgid "Twitter's application registration page"
|
415 |
+
msgstr "Twitter's application registreringsside"
|
416 |
+
|
417 |
+
#: wp-to-twitter-oauth.php:198
|
418 |
+
msgid "If you're not currently logged in to Twitter, log-in to the account you want associated with this site"
|
419 |
+
msgstr "Hvis du ikke er logget ind på Twitter, logind med den konto du vil knytte til denne hjemmeside"
|
420 |
+
|
421 |
+
#: wp-to-twitter-oauth.php:199
|
422 |
+
msgid "Your Application's Name will show up after \"via\" in your twitter stream. Your application name cannot include the word \"Twitter.\""
|
423 |
+
msgstr "Dit applikationnavn vises efter \"via\" i din twitter strøm. Dit applikationnavn må ikke indeholde ordet \"Twitter\"."
|
424 |
+
|
425 |
+
#: wp-to-twitter-oauth.php:200
|
426 |
+
msgid "Your Application Description can be anything."
|
427 |
+
msgstr "Din applikationsbeskrivelse kan være hvad som helst."
|
428 |
+
|
429 |
+
#: wp-to-twitter-oauth.php:201
|
430 |
+
msgid "The WebSite and Callback URL should be "
|
431 |
+
msgstr "Hjemmeside- og Callback URL skal være"
|
432 |
+
|
433 |
+
#: wp-to-twitter-oauth.php:203
|
434 |
+
msgid "Agree to the Developer Rules of the Road and continue."
|
435 |
+
msgstr "Erklær dig enig i regler for udvikler og fortsæt."
|
436 |
+
|
437 |
+
#: wp-to-twitter-oauth.php:204
|
438 |
+
msgid "2. Switch to the \"Settings\" tab in Twitter apps"
|
439 |
+
msgstr "2. Skift til fanebladet \"Indstillinger\" i Twitter apps"
|
440 |
+
|
441 |
+
#: wp-to-twitter-oauth.php:206
|
442 |
+
msgid "Select \"Read and Write\" for the Application Type"
|
443 |
+
msgstr "Vælg \"Read and Write\" for applikationstype"
|
444 |
+
|
445 |
+
#: wp-to-twitter-oauth.php:207
|
446 |
+
msgid "Update the application settings"
|
447 |
+
msgstr "Opdatér applikationsindstillingerne"
|
448 |
+
|
449 |
+
#: wp-to-twitter-oauth.php:208
|
450 |
+
msgid "Return to the Details tab and create your access token. Refresh page to view your access tokens."
|
451 |
+
msgstr "Vend tilbage til fanebladet detaljer og opret dit access token. Genindlæs side for at se dine access tokens."
|
452 |
+
|
453 |
+
#: wp-to-twitter-oauth.php:210
|
454 |
+
msgid "Once you have registered your site as an application, you will be provided with four keys."
|
455 |
+
msgstr "Når du har registreret dit netsted som en applikation modtager du fire nøgler."
|
456 |
+
|
457 |
+
#: wp-to-twitter-oauth.php:211
|
458 |
+
msgid "3. Copy and paste your consumer key and consumer secret into the fields below"
|
459 |
+
msgstr "3. Kopier og indsæt din consumer key og consumer secret ind i nedenstående felter"
|
460 |
+
|
461 |
+
#: wp-to-twitter-oauth.php:214
|
462 |
+
msgid "Twitter Consumer Key"
|
463 |
+
msgstr "Twitter Consumer Key"
|
464 |
+
|
465 |
+
#: wp-to-twitter-oauth.php:218
|
466 |
+
msgid "Twitter Consumer Secret"
|
467 |
+
msgstr "Twitter Consumer Secret"
|
468 |
+
|
469 |
+
#: wp-to-twitter-oauth.php:222
|
470 |
+
msgid "4. Copy and paste your Access Token and Access Token Secret into the fields below"
|
471 |
+
msgstr "4. Kopier og indsæt din Access Token og Access Token Secret ind i nedenstående felter"
|
472 |
+
|
473 |
+
#: wp-to-twitter-oauth.php:223
|
474 |
+
msgid "If the Access level for your Access Token is not \"<em>Read and write</em>\", you must return to step 2 and generate a new Access Token."
|
475 |
+
msgstr "Hvis Adgangsniveau for din Access Token ikke er \"<em>Read and write</em>\", skal du vende tilbage til trin 2 og generere en ny Access Token."
|
476 |
+
|
477 |
+
#: wp-to-twitter-oauth.php:226
|
478 |
+
msgid "Access Token"
|
479 |
+
msgstr "Access Token"
|
480 |
+
|
481 |
+
#: wp-to-twitter-oauth.php:230
|
482 |
+
msgid "Access Token Secret"
|
483 |
+
msgstr "Access Token Secret"
|
484 |
+
|
485 |
+
#: wp-to-twitter-oauth.php:249
|
486 |
+
msgid "Disconnect Your WordPress and Twitter Account"
|
487 |
+
msgstr "Frakobl din Wordpress og Twitter konto"
|
488 |
+
|
489 |
+
#: wp-to-twitter-oauth.php:253
|
490 |
+
msgid "Disconnect your WordPress and Twitter Account"
|
491 |
+
msgstr "Afbryd din WordPress og Twitter konto"
|
492 |
+
|
493 |
+
#: wp-to-twitter-oauth.php:255
|
494 |
+
msgid "<strong>Troubleshooting tip:</strong> Connected, but getting a notice that your Authentication credentials are missing or incorrect? Check whether your Access token has read and write permission. If not, you'll need to create a new token."
|
495 |
+
msgstr "<strong>Fejlfindings-tip:</strong> Forbundet, men får en besked om at Authentication credentials mangler eller er forkerte? Kontrollér om din Access token har læse og skrive rettigheder. Hvis det ikke er tilfældet skal du oprette en ny token."
|
496 |
+
|
497 |
+
#: wp-to-twitter-oauth.php:263
|
498 |
+
msgid "Disconnect from Twitter"
|
499 |
+
msgstr "Deaktiver Twitter"
|
500 |
+
|
501 |
+
#: wp-to-twitter-oauth.php:269
|
502 |
+
msgid "Twitter Username "
|
503 |
+
msgstr "Twitter brugernavn"
|
504 |
+
|
505 |
+
#: wp-to-twitter-oauth.php:270
|
506 |
+
msgid "Consumer Key "
|
507 |
+
msgstr "Consumer Key "
|
508 |
+
|
509 |
+
#: wp-to-twitter-oauth.php:271
|
510 |
+
msgid "Consumer Secret "
|
511 |
+
msgstr "Consumer Secret "
|
512 |
+
|
513 |
+
#: wp-to-twitter-oauth.php:272
|
514 |
+
msgid "Access Token "
|
515 |
+
msgstr "Access Token "
|
516 |
+
|
517 |
+
#: wp-to-twitter-oauth.php:273
|
518 |
+
msgid "Access Token Secret "
|
519 |
+
msgstr "Access Token Secret "
|
520 |
+
|
521 |
+
#: wp-to-twitter-oauth.php:281
|
522 |
+
msgid "Twitter's current server time: "
|
523 |
+
msgstr "Twitter's nuværende server tid: "
|
524 |
+
|
525 |
+
#: wp-to-twitter.php:45
|
526 |
+
msgid "WP to Twitter requires PHP version 5 or above. Please upgrade PHP to run WP to Twitter."
|
527 |
+
msgstr "WP to Twitter kræver PHP version 5 eller derover. Opgradér venligst PHP for at benytte WP to Twitter."
|
528 |
+
|
529 |
+
#: wp-to-twitter.php:92
|
530 |
+
msgid "Twitter requires authentication by OAuth. You will need to <a href='%s'>update your settings</a> to complete installation of WP to Twitter."
|
531 |
+
msgstr "Twitter kræver authentication by OAuth. Du skal <a href='%s'>opdatere dine indstillinger</a> for at fuldføre installationen af WP to Twitter."
|
532 |
+
|
533 |
+
#: wp-to-twitter.php:318
|
534 |
+
msgid "200 OK: Success!"
|
535 |
+
msgstr "200 OK: Succes!"
|
536 |
+
|
537 |
+
#: wp-to-twitter.php:323
|
538 |
+
msgid "400 Bad Request: The request was invalid. This is the status code returned during rate limiting."
|
539 |
+
msgstr "400 Forkert forespørgsel: Forespørgslen var ikke korrekt. Det er status koden der returneres i løbet af hastighedsbegræsning."
|
540 |
+
|
541 |
+
#: wp-to-twitter.php:327
|
542 |
+
msgid "401 Unauthorized: Authentication credentials were missing or incorrect."
|
543 |
+
msgstr "401 Ikke godkent: Login detaljer manglede eller var ikke korrekte."
|
544 |
+
|
545 |
+
#: wp-to-twitter.php:332
|
546 |
+
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 can include: Too many Tweets created in a short time or the same Tweet was submitted twice in a row, among others. This is not an error by WP to Twitter."
|
547 |
+
msgstr "403 Forbudt: Forespørgsel er forstået men er blevet afvist. Denne kode benyttes når forespørgsler forstås men afvises af Twitter. Årsager hertil kan være: For mange Tweets blev oprettet inden for kort tid, eller den samme Tweet blev tilføjet to gange i træk, osv. Dette er ikke en WP to Twitter fejl."
|
548 |
+
|
549 |
+
#: wp-to-twitter.php:348
|
550 |
+
msgid "500 Internal Server Error: Something is broken at Twitter."
|
551 |
+
msgstr "500 Intern Serverfejl: Twitter melder fejl."
|
552 |
+
|
553 |
+
#: wp-to-twitter.php:356
|
554 |
+
msgid "503 Service Unavailable: The Twitter servers are up, but overloaded with requests - Please try again later."
|
555 |
+
msgstr "503 Service utilgængelig: Twitter serverne kører, men er overbelastet med forespørgsler - Prøv venligst igen senere."
|
556 |
+
|
557 |
+
#: wp-to-twitter.php:352
|
558 |
+
msgid "502 Bad Gateway: Twitter is down or being upgraded."
|
559 |
+
msgstr "502 Forkert Gateway: Twitter er nede eller bliver opdateret"
|
560 |
+
|
561 |
+
#: wp-to-twitter.php:390
|
562 |
+
msgid "No Twitter OAuth connection found."
|
563 |
+
msgstr "Twitter OAuth forbindelse ikke fundet."
|
564 |
+
|
565 |
+
#: wp-to-twitter.php:1079
|
566 |
+
msgid "WP Tweets"
|
567 |
+
msgstr "WP Tweets"
|
568 |
+
|
569 |
+
#: wp-to-twitter.php:1121
|
570 |
+
msgid "Previous Tweets"
|
571 |
+
msgstr "Tidligere Tweets"
|
572 |
+
|
573 |
+
#: wp-to-twitter.php:1157
|
574 |
+
msgid "Custom Twitter Post"
|
575 |
+
msgstr "Tilpasset Twitter indlæg"
|
576 |
+
|
577 |
+
#: wp-to-twitter.php:1181
|
578 |
+
msgid "Your template:"
|
579 |
+
msgstr "Din skabelon:"
|
580 |
+
|
581 |
+
#: wp-to-twitter.php:1186
|
582 |
+
msgid "YOURLS Custom Keyword"
|
583 |
+
msgstr "YOURLS brugerdefineret nøgleord"
|
584 |
+
|
585 |
+
#: wp-to-twitter.php:1224
|
586 |
+
msgid "Upgrade to WP Tweets Pro"
|
587 |
+
msgstr "Opgradér til WP Tweets Pro"
|
588 |
+
|
589 |
+
#: wp-to-twitter.php:1198
|
590 |
+
msgid "Don't Tweet this post."
|
591 |
+
msgstr "Tweet ikke dette indlæg."
|
592 |
+
|
593 |
+
#: wp-to-twitter.php:1198
|
594 |
+
msgid "Tweet this post."
|
595 |
+
msgstr "Tweet dette indlæg."
|
596 |
+
|
597 |
+
#: wp-to-twitter.php:1210
|
598 |
+
msgid "Access to customizing WP to Twitter values is not allowed for your user role."
|
599 |
+
msgstr "Adgang til ændring af WP to Twitter værdier er ikke tilladt for din user role."
|
600 |
+
|
601 |
+
#: wp-to-twitter.php:1280
|
602 |
+
msgid "Characters left: "
|
603 |
+
msgstr "Karakterer tilbage:"
|
604 |
+
|
605 |
+
#: wp-to-twitter.php:1341
|
606 |
+
msgid "WP Tweets User Settings"
|
607 |
+
msgstr "WP Tweets brugerindstillinger"
|
608 |
+
|
609 |
+
#: wp-to-twitter.php:1345
|
610 |
+
msgid "Use My Twitter Username"
|
611 |
+
msgstr "Brug mit Twitter brugernavn"
|
612 |
+
|
613 |
+
#: wp-to-twitter.php:1346
|
614 |
+
msgid "Tweet my posts with an @ reference to my username."
|
615 |
+
msgstr "Tweet mit indlæg med en @ reference til mit brugernavn."
|
616 |
+
|
617 |
+
#: wp-to-twitter.php:1347
|
618 |
+
msgid "Tweet my posts with an @ reference to both my username and to the main site username."
|
619 |
+
msgstr "Tweet mit indlæg med en @ reference til både mit brugernavn og til hovedsitets brugernavn."
|
620 |
+
|
621 |
+
#: wp-to-twitter.php:1351
|
622 |
+
msgid "Your Twitter Username"
|
623 |
+
msgstr "Dit Twitter brugernavn"
|
624 |
+
|
625 |
+
#: wp-to-twitter.php:1352
|
626 |
+
msgid "Enter your own Twitter username."
|
627 |
+
msgstr "Indtast dit Twitter brugernavn."
|
628 |
+
|
629 |
+
#: wp-to-twitter.php:1405
|
630 |
+
msgid "Check off categories to tweet"
|
631 |
+
msgstr "Marker kategorier der skal Tweetes"
|
632 |
+
|
633 |
+
#: wp-to-twitter.php:1409
|
634 |
+
msgid "Do not tweet posts in checked categories (Reverses default behavior)"
|
635 |
+
msgstr "Tweet ikke indlæg i markerede kategorier (vender standardfunktionsmåde)"
|
636 |
+
|
637 |
+
#: wp-to-twitter.php:1426
|
638 |
+
msgid "Limits are exclusive. If a post is in one category which should be posted and one category that should not, it will not be posted."
|
639 |
+
msgstr "Grænseværdier er eksklusive. Hvis et indlæg er i en kategori som skal sendes, og en kategori der ikke bør sendes vil det ikke blive offentliggjort."
|
640 |
+
|
641 |
+
#: wp-to-twitter.php:1429
|
642 |
+
msgid "Set Categories"
|
643 |
+
msgstr "Sæt Kategorier"
|
644 |
+
|
645 |
+
#: wp-to-twitter.php:1451
|
646 |
+
msgid "Settings"
|
647 |
+
msgstr "Indstillinger"
|
648 |
+
|
649 |
+
#: wp-to-twitter.php:1486
|
650 |
+
msgid "<br /><strong>Note:</strong> Please review the <a class=\"thickbox\" href=\"%1$s\">changelog</a> before upgrading."
|
651 |
+
msgstr "<br /><strong>Bemærk:</strong> Gennemgå venligst <a class=\"thickbox\" href=\"%1$s\">changelog</a> før opgradering."
|
652 |
+
|
653 |
+
msgid "WP to Twitter"
|
654 |
+
msgstr "WP to Twitter"
|
655 |
+
|
656 |
+
msgid "http://www.joedolson.com/articles/wp-to-twitter/"
|
657 |
+
msgstr "http://www.joedolson.com/articles/wp-to-twitter/"
|
658 |
+
|
659 |
+
msgid "Posts a Tweet 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."
|
660 |
+
msgstr "Skriv et Tweet når du opdaterer din WordPress blog eller skriver til din blogroll med din valgte URL shortening service. Rig på funktioner for tilpasning og reklamering for dine Tweets."
|
661 |
+
|
662 |
+
msgid "Joseph Dolson"
|
663 |
+
msgstr "Joseph Dolson"
|
664 |
+
|
665 |
+
msgid "http://www.joedolson.com/"
|
666 |
+
msgstr "http://www.joedolson.com/"
|
667 |
+
|
668 |
+
#: functions.php:319
|
669 |
+
msgid "Please read the FAQ and other Help documents before making a support request."
|
670 |
+
msgstr "Læs venligst FAQ og andre hjælpe-dokumenter før du sender en support-anmodning."
|
671 |
+
|
672 |
+
#: functions.php:201
|
673 |
+
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."
|
674 |
+
msgstr "[<a href='options-general.php?page=wp-to-twitter/wp-to-twitter.php'>Skjul</a>] Hvis du oplever problemer, kopiér indstillingerne her og send dem til support."
|
675 |
+
|
676 |
+
#: functions.php:341
|
677 |
+
msgid "Please include your license key in your support request."
|
678 |
+
msgstr "Inkluder venligst din licensnøgle i din support-anmodning."
|
679 |
+
|
680 |
+
#: functions.php:321
|
681 |
+
msgid "Please describe your problem. I'm not psychic."
|
682 |
+
msgstr "Beskriv venligst dit problem. Jeg er ikke synsk."
|
683 |
+
|
684 |
+
#: functions.php:346
|
685 |
+
msgid "<strong>Please note</strong>: I do keep records of those who have donated, but if your donation came from somebody other than your account at this web site, you must note this in your message."
|
686 |
+
msgstr "<strong>Bemærk venligst</strong>: Jeg føre register over dem der har doneret, men hvis din donation kom fra en anden konto end din egen på dette netsted, skal du skrive dette i din besked."
|
687 |
+
|
688 |
+
#: functions.php:363
|
689 |
+
msgid "Send Support Request"
|
690 |
+
msgstr "Send en support anmodning"
|
691 |
+
|
692 |
+
#: functions.php:366
|
693 |
+
msgid "The following additional information will be sent with your support request:"
|
694 |
+
msgstr "Følgende supplerende oplysninger vil blive sendt med din support anmodning:"
|
695 |
+
|
696 |
+
#: wp-to-twitter-manager.php:40
|
697 |
+
msgid "No error information is available for your shortener."
|
698 |
+
msgstr "Der er ingen fejlinformation tilgængelig for din url forkorter."
|
699 |
+
|
700 |
+
#: wp-to-twitter-manager.php:42
|
701 |
+
msgid "<li class=\"error\"><strong>WP to Twitter was unable to contact your selected URL shortening service.</strong></li>"
|
702 |
+
msgstr "<li class=\"error\"><strong>WP to Twitter kunne ikke komme i kontakt med din valgte URL shortening service.</strong></li>"
|
703 |
+
|
704 |
+
#: wp-to-twitter-manager.php:45
|
705 |
+
msgid "<li><strong>WP to Twitter successfully contacted your selected URL shortening service.</strong> The following link should point to your blog homepage:"
|
706 |
+
msgstr "<li><strong>WP to Twitter kontaktede din valgte URL shortening service.</strong> Det følgende link bør pege på din blog homepage:successfully contacted your selected URL shortening service.</strong> The following link should point to your blog homepage:"
|
707 |
+
|
708 |
+
#: wp-to-twitter-manager.php:53
|
709 |
+
msgid "<li><strong>WP to Twitter successfully submitted a status update to Twitter.</strong></li>"
|
710 |
+
msgstr "<li><strong>WP to Twitter sendte succesfuldt en status opdatering til Twitter.</strong></li>"
|
711 |
+
|
712 |
+
#: wp-to-twitter-manager.php:56
|
713 |
+
msgid "<li class=\"error\"><strong>WP to Twitter failed to submit an update to Twitter.</strong></li>"
|
714 |
+
msgstr "<li class=\"error\"><strong>Det lykkedes ikke at sende en opdatering til Twitter med WP to Twitter.</strong></li>"
|
715 |
+
|
716 |
+
#: wp-to-twitter-manager.php:60
|
717 |
+
msgid "You have not connected WordPress to Twitter."
|
718 |
+
msgstr "Du har ikke forbundet Wordpress til Twitter"
|
719 |
+
|
720 |
+
#: wp-to-twitter-manager.php:64
|
721 |
+
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>"
|
722 |
+
msgstr "<li class=\"error\"><strong>Din server ser ikke ud til at supportere de krævede WP to Twitter funktioner.</strong> Du kan prøve alligevel - de her tests er ikke perfekte.</li>"
|
723 |
+
|
724 |
+
#: wp-to-twitter-manager.php:68
|
725 |
+
msgid "<li><strong>Your server should run WP to Twitter successfully.</strong></li>"
|
726 |
+
msgstr "<li><strong>Din server skulle køre WP to Twitter optimalt.</strong></li>"
|
727 |
+
|
728 |
+
#: wp-to-twitter-manager.php:86
|
729 |
+
msgid "WP to Twitter Errors Cleared"
|
730 |
+
msgstr "WP to Twitter fejl er løst"
|
731 |
+
|
732 |
+
#: wp-to-twitter-manager.php:170
|
733 |
+
msgid "WP to Twitter is now connected with Twitter."
|
734 |
+
msgstr "WP to Twitter forbinder nu til Twitter"
|
735 |
+
|
736 |
+
#: wp-to-twitter-manager.php:184
|
737 |
+
msgid "OAuth Authentication Data Cleared."
|
738 |
+
msgstr "OAuth Authentication Data nulstillet."
|
739 |
+
|
740 |
+
#: wp-to-twitter-manager.php:191
|
741 |
+
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."
|
742 |
+
msgstr "OAuth Authentication fejlet. Din server tid er ikke synkroniseret med Twitter serverne. Tal med din hosting-tjeneste for at se, hvad der kan gøres."
|
743 |
+
|
744 |
+
#: wp-to-twitter-manager.php:198
|
745 |
+
msgid "OAuth Authentication response not understood."
|
746 |
+
msgstr "OAuth Authentication svar blev ikke forstået"
|
747 |
+
|
748 |
+
#: wp-to-twitter-manager.php:360
|
749 |
+
msgid "WP to Twitter Advanced Options Updated"
|
750 |
+
msgstr "WP to Twitter udvidede muligheder er opdateret. "
|
751 |
+
|
752 |
+
#: wp-to-twitter-manager.php:382
|
753 |
+
msgid "You must add your Bit.ly login and API key in order to shorten URLs with Bit.ly."
|
754 |
+
msgstr "Du skal tilføje dit Bit.ly login og API nøgle for at forkorte URLs med Bit.ly."
|
755 |
+
|
756 |
+
#: wp-to-twitter-manager.php:386
|
757 |
+
msgid "You must add your YOURLS remote URL, login, and password in order to shorten URLs with a remote installation of YOURLS."
|
758 |
+
msgstr "Du skal tilføje dit YOURLS remote URL, login og password for at forkorte URLs med en fjern installation af YOURLS."
|
759 |
+
|
760 |
+
#: wp-to-twitter-manager.php:390
|
761 |
+
msgid "You must add your YOURLS server path in order to shorten URLs with a remote installation of YOURLS."
|
762 |
+
msgstr "Du skal tilføje din YOURLS server sti for at kunne forkorte URLs med en remote installation af YOURLS."
|
763 |
+
|
764 |
+
#: wp-to-twitter-manager.php:393
|
765 |
+
msgid "WP to Twitter Options Updated"
|
766 |
+
msgstr "WP to Twitter indstillinger er opdateret"
|
767 |
+
|
768 |
+
#: wp-to-twitter-manager.php:402
|
769 |
+
msgid "Category limits updated."
|
770 |
+
msgstr "Kategoribegrænsninger er opdateret"
|
771 |
+
|
772 |
+
#: wp-to-twitter-manager.php:406
|
773 |
+
msgid "Category limits unset."
|
774 |
+
msgstr "Kategori begræsninger fjernet."
|
775 |
+
|
776 |
+
#: wp-to-twitter-manager.php:413
|
777 |
+
msgid "YOURLS password updated. "
|
778 |
+
msgstr "YOURLS password opdateret. "
|
779 |
+
|
780 |
+
#: wp-to-twitter-manager.php:416
|
781 |
+
msgid "YOURLS password deleted. You will be unable to use your remote YOURLS account to create short URLS."
|
782 |
+
msgstr "YOURLS password slettet. Du kan ikke længere bruge din remote YOURLS konto til at udarbejde short URLS."
|
783 |
+
|
784 |
+
#: wp-to-twitter-manager.php:418
|
785 |
+
msgid "Failed to save your YOURLS password! "
|
786 |
+
msgstr "Det mislykkedes at gemme dit YOURLS password! "
|
787 |
+
|
788 |
+
#: wp-to-twitter-manager.php:422
|
789 |
+
msgid "YOURLS username added. "
|
790 |
+
msgstr "YOURLS brugernavn tilføjet"
|
791 |
+
|
792 |
+
#: wp-to-twitter-manager.php:426
|
793 |
+
msgid "YOURLS API url added. "
|
794 |
+
msgstr "YOURLS API url tilføjet. "
|
795 |
+
|
796 |
+
#: wp-to-twitter-manager.php:429
|
797 |
+
msgid "YOURLS API url removed. "
|
798 |
+
msgstr "YOURLS API url fjernet."
|
799 |
+
|
800 |
+
#: wp-to-twitter-manager.php:434
|
801 |
+
msgid "YOURLS local server path added. "
|
802 |
+
msgstr "YOURLS local server sti tilføjet."
|
803 |
+
|
804 |
+
#: wp-to-twitter-manager.php:436
|
805 |
+
msgid "The path to your YOURLS installation is not correct. "
|
806 |
+
msgstr "Stien til din YOURLS installation er ikke korrekt."
|
807 |
+
|
808 |
+
#: wp-to-twitter-manager.php:440
|
809 |
+
msgid "YOURLS local server path removed. "
|
810 |
+
msgstr "YOURLS local server sti slettet. "
|
811 |
+
|
812 |
+
#: wp-to-twitter-manager.php:445
|
813 |
+
msgid "YOURLS will use Post ID for short URL slug."
|
814 |
+
msgstr "YOURLS vil bruge Post ID som short URL adresse."
|
815 |
+
|
816 |
+
#: wp-to-twitter-manager.php:447
|
817 |
+
msgid "YOURLS will use your custom keyword for short URL slug."
|
818 |
+
msgstr "YOURLS benytter dit brugerdefinerede nøgleord for short URL slug."
|
819 |
+
|
820 |
+
#: wp-to-twitter-manager.php:451
|
821 |
+
msgid "YOURLS will not use Post ID for the short URL slug."
|
822 |
+
msgstr "YOURLS vil ikke bruge Post ID som short URL adresse."
|
823 |
+
|
824 |
+
#: wp-to-twitter-manager.php:459
|
825 |
+
msgid "Su.pr API Key and Username Updated"
|
826 |
+
msgstr "Su.pr API nøgle og brugernavn opdateret"
|
827 |
+
|
828 |
+
#: wp-to-twitter-manager.php:463
|
829 |
+
msgid "Su.pr API Key and username deleted. Su.pr URLs created by WP to Twitter will no longer be associated with your account. "
|
830 |
+
msgstr "Su.pr API Key og brugernavn slettet. Su.pr URLs oprettet af WP to Twitter vil ikke længere være tilknyttet din konto. "
|
831 |
+
|
832 |
+
#: wp-to-twitter-manager.php:465
|
833 |
+
msgid "Su.pr API Key not added - <a href='http://su.pr/'>get one here</a>! "
|
834 |
+
msgstr "Su.pr API nøgle ikke tilføjet - <a href='http://su.pr/'>få en her</a>! "
|
835 |
+
|
836 |
+
#: wp-to-twitter-manager.php:471
|
837 |
+
msgid "Bit.ly API Key Updated."
|
838 |
+
msgstr "Bit.ly API nøgle opdateret"
|
839 |
+
|
840 |
+
#: wp-to-twitter-manager.php:474
|
841 |
+
msgid "Bit.ly API Key deleted. You cannot use the Bit.ly API without an API key. "
|
842 |
+
msgstr "Bit.ly API nøgle slettet. Du kan ikke bruge Bit.ly API uden en API nøgle."
|
843 |
+
|
844 |
+
#: wp-to-twitter-manager.php:476
|
845 |
+
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."
|
846 |
+
msgstr "Bit.ly API nøgle ikke tilføjet - <a href='http://bit.ly/account/'>få en her</a>! En API nøgle er påkrævet for at bruge Bit.ly's URL forkorter service."
|
847 |
+
|
848 |
+
#: wp-to-twitter-manager.php:480
|
849 |
+
msgid " Bit.ly User Login Updated."
|
850 |
+
msgstr "Bit.ly brugernavn opdateret"
|
851 |
+
|
852 |
+
#: wp-to-twitter-manager.php:483
|
853 |
+
msgid "Bit.ly User Login deleted. You cannot use the Bit.ly API without providing your username. "
|
854 |
+
msgstr "Bit.ly User Login slettet. Du kan ikke benytte Bit.ly API uden at opgive dit brugernavn."
|
855 |
+
|
856 |
+
#: wp-to-twitter-manager.php:485
|
857 |
+
msgid "Bit.ly Login not added - <a href='http://bit.ly/account/'>get one here</a>! "
|
858 |
+
msgstr "Bit.ly Login ikke tilføjet - <a href='http://bit.ly/account/'>få et her</a>! "
|
859 |
+
|
860 |
+
#: wp-to-twitter-manager.php:501
|
861 |
+
msgid "<p>One or more of your last posts has failed to send a status update to Twitter. The Tweet has been saved, and you can re-Tweet it at your leisure.</p>"
|
862 |
+
msgstr "<p>Status opdatering for en eller flere af dine sidst udgivet indlæg til Twitter er fejlet. Din Tweet er gemt og du kan re-Tweet denne når det passer dig.</p>"
|
863 |
+
|
864 |
+
#: wp-to-twitter-manager.php:507
|
865 |
+
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. "
|
866 |
+
msgstr "Beklager! Jeg kunne ikke få forbindelse med Twitter serverne og udgive din <strong>nye genvej</strong>! Du er desværre nødt til udgive den manuelt."
|
867 |
+
|
868 |
+
#: wp-to-twitter-manager.php:510
|
869 |
+
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.</p>"
|
870 |
+
msgstr "<p>Forespørgslen til URL shortener API fejlet, din URL blev ikke forkortet. Den komplette URL for indlægget blev vedhæftet din Tweet. Kontrollér med din URL forkorter service for at se om der er nogle kendte problemstillinger.</p>"
|
871 |
+
|
872 |
+
#: wp-to-twitter-manager.php:516
|
873 |
+
msgid "Clear 'WP to Twitter' Error Messages"
|
874 |
+
msgstr "Nulstil 'WP to Twitter' fejlbeskeder"
|
875 |
+
|
876 |
+
#: wp-to-twitter-manager.php:523
|
877 |
+
msgid "WP to Twitter Options"
|
878 |
+
msgstr "WP to Twitter indstillinger"
|
879 |
+
|
880 |
+
#: wp-to-twitter-manager.php:536
|
881 |
+
msgid "Basic Settings"
|
882 |
+
msgstr "Normale indstillinger"
|
883 |
+
|
884 |
+
#: wp-to-twitter-manager.php:542 wp-to-twitter-manager.php:606
|
885 |
+
msgid "Save WP->Twitter Options"
|
886 |
+
msgstr "Gem WP->Twitter indstillinger"
|
887 |
+
|
888 |
+
#: wp-to-twitter-manager.php:586
|
889 |
+
msgid "Settings for Comments"
|
890 |
+
msgstr "Indstillinger for kommentarer"
|
891 |
+
|
892 |
+
#: wp-to-twitter-manager.php:589
|
893 |
+
msgid "Update Twitter when new comments are posted"
|
894 |
+
msgstr "Opdater Twitter når nye kommentarer sendes"
|
895 |
+
|
896 |
+
#: wp-to-twitter-manager.php:590
|
897 |
+
msgid "Text for new comments:"
|
898 |
+
msgstr "Tekst for nye kommentarer:"
|
899 |
+
|
900 |
+
#: wp-to-twitter-manager.php:595
|
901 |
+
msgid "Settings for Links"
|
902 |
+
msgstr "Indstillinger for genveje"
|
903 |
+
|
904 |
+
#: wp-to-twitter-manager.php:598
|
905 |
+
msgid "Update Twitter when you post a Blogroll link"
|
906 |
+
msgstr "Opdatér Twitter når du poster et Blogroll link"
|
907 |
+
|
908 |
+
#: wp-to-twitter-manager.php:599
|
909 |
+
msgid "Text for new link updates:"
|
910 |
+
msgstr "Tekst for nye link opdateringer:"
|
911 |
+
|
912 |
+
#: wp-to-twitter-manager.php:599
|
913 |
+
msgid "Available shortcodes: <code>#url#</code>, <code>#title#</code>, and <code>#description#</code>."
|
914 |
+
msgstr "Mulige shortcodes: <code>#url#</code>, <code>#title#</code>, og <code>#description#</code>."
|
915 |
+
|
916 |
+
#: wp-to-twitter-manager.php:546
|
917 |
+
msgid "Don't shorten URLs."
|
918 |
+
msgstr "Forkort ikke URLs"
|
919 |
+
|
920 |
+
#: wp-to-twitter-manager.php:614
|
921 |
+
msgid "<abbr title=\"Uniform Resource Locator\">URL</abbr> Shortener Account Settings"
|
922 |
+
msgstr "<abbr title=\"Uniform Resource Locator\">URL</abbr> forkorter Kontoindstillinger"
|
923 |
+
|
924 |
+
#: wp-to-twitter-manager.php:618
|
925 |
+
msgid "Your Su.pr account details"
|
926 |
+
msgstr "Dine Su.pr konto detaljer"
|
927 |
+
|
928 |
+
#: wp-to-twitter-manager.php:622
|
929 |
+
msgid "Your Su.pr Username:"
|
930 |
+
msgstr "Dit Su.pr brugernavn:"
|
931 |
+
|
932 |
+
#: wp-to-twitter-manager.php:626
|
933 |
+
msgid "Your Su.pr <abbr title='application programming interface'>API</abbr> Key:"
|
934 |
+
msgstr "Din Su.pr <abbr title='application programming interface'>API</abbr> Key:"
|
935 |
+
|
936 |
+
#: wp-to-twitter-manager.php:633
|
937 |
+
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."
|
938 |
+
msgstr "Har du ikke en Su.pr konto eller API nøgle? <a href='http://su.pr/'>Få en her</a>!<br />Du har brug for en API nøgle for at tilknytte de URLs du opretter med din Su.pr konto."
|
939 |
+
|
940 |
+
#: wp-to-twitter-manager.php:639
|
941 |
+
msgid "Your Bit.ly account details"
|
942 |
+
msgstr "Din Bit.ly konto indstillinger"
|
943 |
+
|
944 |
+
#: wp-to-twitter-manager.php:643
|
945 |
+
msgid "Your Bit.ly username:"
|
946 |
+
msgstr "Dit Bit.ly brugernavn"
|
947 |
+
|
948 |
+
#: wp-to-twitter-manager.php:647
|
949 |
+
msgid "Your Bit.ly <abbr title='application programming interface'>API</abbr> Key:"
|
950 |
+
msgstr "Din Bit.ly <abbr title='application programming interface'>API</abbr> Key:"
|
951 |
+
|
952 |
+
#: wp-to-twitter-manager.php:655
|
953 |
+
msgid "Save Bit.ly API Key"
|
954 |
+
msgstr "Gem Bit.ly API Key"
|
955 |
+
|
956 |
+
#: wp-to-twitter-manager.php:655
|
957 |
+
msgid "Clear Bit.ly API Key"
|
958 |
+
msgstr "Nustil Bit.ly API Key"
|
959 |
+
|
960 |
+
#: wp-to-twitter-manager.php:655
|
961 |
+
msgid "A Bit.ly API key and username is required to shorten URLs via the Bit.ly API and WP to Twitter."
|
962 |
+
msgstr "En Bit.ly API ey og brugernavn er nødvendigt for at forkorte URLs via Bit.ly API og WP to Twitter."
|
963 |
+
|
964 |
+
#: wp-to-twitter-manager.php:661
|
965 |
+
msgid "Your YOURLS account details"
|
966 |
+
msgstr "Din YOURLS kontodetaljer"
|
967 |
+
|
968 |
+
#: wp-to-twitter-manager.php:665
|
969 |
+
msgid "Path to your YOURLS config file (Local installations)"
|
970 |
+
msgstr "Sti til din YOURLS config fil (lokale installationer)"
|
971 |
+
|
972 |
+
#: wp-to-twitter-manager.php:666 wp-to-twitter-manager.php:670
|
973 |
+
msgid "Example:"
|
974 |
+
msgstr "Eksempel:"
|
975 |
+
|
976 |
+
#: wp-to-twitter-manager.php:669
|
977 |
+
msgid "URI to the YOURLS API (Remote installations)"
|
978 |
+
msgstr "URI til YOURLS API (Remote installationer)"
|
979 |
+
|
980 |
+
#: wp-to-twitter-manager.php:673
|
981 |
+
msgid "Your YOURLS username:"
|
982 |
+
msgstr "Dit YOURLS brugernavn:"
|
983 |
+
|
984 |
+
#: wp-to-twitter-manager.php:677
|
985 |
+
msgid "Your YOURLS password:"
|
986 |
+
msgstr "Dit YOURLS password:"
|
987 |
+
|
988 |
+
#: wp-to-twitter-manager.php:677
|
989 |
+
msgid "<em>Saved</em>"
|
990 |
+
msgstr "<em>Gemt</em>"
|
991 |
+
|
992 |
+
#: wp-to-twitter-manager.php:681
|
993 |
+
msgid "Post ID for YOURLS url slug."
|
994 |
+
msgstr "Indlæg ID for YOURLS url slug."
|
995 |
+
|
996 |
+
#: wp-to-twitter-manager.php:682
|
997 |
+
msgid "Custom keyword for YOURLS url slug."
|
998 |
+
msgstr "Brugerdefineret nøgleord for YOURLS url slug."
|
999 |
+
|
1000 |
+
#: wp-to-twitter-manager.php:683
|
1001 |
+
msgid "Default: sequential URL numbering."
|
1002 |
+
msgstr "Standard: sekventiel URL nummerering."
|
1003 |
+
|
1004 |
+
#: wp-to-twitter-manager.php:689
|
1005 |
+
msgid "Save YOURLS Account Info"
|
1006 |
+
msgstr "Gem YOURLS konto info"
|
1007 |
+
|
1008 |
+
#: wp-to-twitter-manager.php:689
|
1009 |
+
msgid "Clear YOURLS password"
|
1010 |
+
msgstr "Nulstil YOURLS password"
|
1011 |
+
|
1012 |
+
#: wp-to-twitter-manager.php:689
|
1013 |
+
msgid "A YOURLS password and username is required to shorten URLs via the remote YOURLS API and WP to Twitter."
|
1014 |
+
msgstr "Et YOURLS password og brugernavn er nødvendigt for at forkorte URLs via remote YOURLS API og WP to Twitter."
|
1015 |
+
|
1016 |
+
#: wp-to-twitter-manager.php:702
|
1017 |
+
msgid "Advanced Settings"
|
1018 |
+
msgstr "Avancerede indstillinger"
|
1019 |
+
|
1020 |
+
#: wp-to-twitter-manager.php:707 wp-to-twitter-manager.php:872
|
1021 |
+
msgid "Save Advanced WP->Twitter Options"
|
1022 |
+
msgstr "Gem Avancerede WP-> Twitter indstillinger"
|
1023 |
+
|
1024 |
+
#: wp-to-twitter-manager.php:709
|
1025 |
+
msgid "Advanced Tweet settings"
|
1026 |
+
msgstr "Avancerede Tweet indstillinger"
|
1027 |
+
|
1028 |
+
#: wp-to-twitter-manager.php:711
|
1029 |
+
msgid "Strip nonalphanumeric characters from tags"
|
1030 |
+
msgstr "Strip nonalphanumeric tegn fra tags"
|
1031 |
+
|
1032 |
+
#: wp-to-twitter-manager.php:712
|
1033 |
+
msgid "Spaces in tags replaced with:"
|
1034 |
+
msgstr "Mellemrum i tags erstattes af:"
|
1035 |
+
|
1036 |
+
#: wp-to-twitter-manager.php:714
|
1037 |
+
msgid "Default replacement is an underscore (<code>_</code>). Use <code>[ ]</code> to remove spaces entirely."
|
1038 |
+
msgstr "Default måde at erstatte er underscore (<code>_</code>). Brug <code>[ ]</code> for at fjerne mellemrum helt."
|
1039 |
+
|
1040 |
+
#: wp-to-twitter-manager.php:717
|
1041 |
+
msgid "Maximum number of tags to include:"
|
1042 |
+
msgstr "Maksimum antal tags der skal inkluderes"
|
1043 |
+
|
1044 |
+
#: wp-to-twitter-manager.php:718
|
1045 |
+
msgid "Maximum length in characters for included tags:"
|
1046 |
+
msgstr "Maksimum længde i karakterer for inkluderede tags:"
|
1047 |
+
|
1048 |
+
#: wp-to-twitter-manager.php:719
|
1049 |
+
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."
|
1050 |
+
msgstr "Disse muligheder gør det muligt at begrænse længden og antal af Wordpress tags sendt til Twitter som hastags. "
|
1051 |
+
|
1052 |
+
#: wp-to-twitter-manager.php:722
|
1053 |
+
msgid "Length of post excerpt (in characters):"
|
1054 |
+
msgstr "Længde af uddrag (i bogstaver)"
|
1055 |
+
|
1056 |
+
#: wp-to-twitter-manager.php:722
|
1057 |
+
msgid "By default, extracted from the post itself. If you use the 'Excerpt' field, that will be used instead."
|
1058 |
+
msgstr "Trækkes som standard fra indlægget. Hvis du anvender 'Uddrags' feltet benyttes dette i stedet."
|
1059 |
+
|
1060 |
+
#: wp-to-twitter-manager.php:725
|
1061 |
+
msgid "WP to Twitter Date Formatting:"
|
1062 |
+
msgstr "WP to Twitter Dato formattering:"
|
1063 |
+
|
1064 |
+
#: wp-to-twitter-manager.php:726
|
1065 |
+
msgid "Default is from your general settings. <a href='http://codex.wordpress.org/Formatting_Date_and_Time'>Date Formatting Documentation</a>."
|
1066 |
+
msgstr "Default er fra dine generelle indstillinger. <a href='http://codex.wordpress.org/Formatting_Date_and_Time'>Dokumentation for Dato formattering</a>."
|
1067 |
+
|
1068 |
+
#: wp-to-twitter-manager.php:730
|
1069 |
+
msgid "Custom text before all Tweets:"
|
1070 |
+
msgstr "Brugerdefineret tekst før alle Tweets:"
|
1071 |
+
|
1072 |
+
#: wp-to-twitter-manager.php:731
|
1073 |
+
msgid "Custom text after all Tweets:"
|
1074 |
+
msgstr "Brugerdefineret tekst efter alle Tweets:"
|
1075 |
+
|
1076 |
+
#: wp-to-twitter-manager.php:734
|
1077 |
+
msgid "Custom field for an alternate URL to be shortened and Tweeted:"
|
1078 |
+
msgstr "Brugerdefineret felt for at en alternativ URL kan blive forkortet og Tweeted:"
|
1079 |
+
|
1080 |
+
#: wp-to-twitter-manager.php:735
|
1081 |
+
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."
|
1082 |
+
msgstr "Du kan bruge et brugerdefineret felt til at sende en alternativ URL for dit indlæg. Det du skal indsætte er navnet for dit brugerdefinerede felt, der indeholder din eksterne URL."
|
1083 |
+
|
1084 |
+
#: wp-to-twitter-manager.php:758
|
1085 |
+
msgid "Preferred status update truncation sequence"
|
1086 |
+
msgstr "Foretrukken afkortningssekvens for statusopdatering "
|
1087 |
+
|
1088 |
+
#: wp-to-twitter-manager.php:761
|
1089 |
+
msgid "This is the order in which items will be abbreviated or removed from your status update if it is too long to send to Twitter."
|
1090 |
+
msgstr "Dette er rækkefølgen hvormed elementer bliver forkortet eller fjernet fra din statusopdatering hvis den er for lang til Twitter."
|
1091 |
+
|
1092 |
+
#: wp-to-twitter-manager.php:766
|
1093 |
+
msgid "Special Cases when WordPress should send a Tweet"
|
1094 |
+
msgstr "Specielle tilfælde hvor Wordpress skal sende et Tweet"
|
1095 |
+
|
1096 |
+
#: wp-to-twitter-manager.php:769
|
1097 |
+
msgid "Do not post Tweets by default"
|
1098 |
+
msgstr "Send ikke Tweets som standard"
|
1099 |
+
|
1100 |
+
#: wp-to-twitter-manager.php:772
|
1101 |
+
msgid "By default, all posts meeting other requirements will be posted to Twitter. Check this to change your setting."
|
1102 |
+
msgstr "Per default, alle indlæg der opfylder andre betingelser vil blive sendt via Twitter. Tjek det for at ændre dine indstillinger."
|
1103 |
+
|
1104 |
+
#: wp-to-twitter-manager.php:776
|
1105 |
+
msgid "Allow status updates from Quick Edit"
|
1106 |
+
msgstr "Tillad statusopdateringer fra Hurtig-redigering"
|
1107 |
+
|
1108 |
+
#: wp-to-twitter-manager.php:777
|
1109 |
+
msgid "If checked, all posts edited individually or in bulk through the Quick Edit feature will be Tweeted."
|
1110 |
+
msgstr "Hvis markeret, vil alle indlæg der redigeres individuelt eller masseredigeres gennem Hurtig-redigering funktionen blive Tweeted."
|
1111 |
+
|
1112 |
+
#: wp-to-twitter-manager.php:782
|
1113 |
+
msgid "Delaying tweets with WP Tweets PRO moves Tweeting to an publishing-independent action."
|
1114 |
+
msgstr "Forsinkelse af Tweets med WP Tweets PRO flytter Tweeting til en udgivelses-uafhængig aktion."
|
1115 |
+
|
1116 |
+
#: wp-to-twitter-manager.php:789
|
1117 |
+
msgid "Send Twitter Updates on remote publication (Post by Email or XMLRPC Client)"
|
1118 |
+
msgstr "Send Twitter opdateringer via remote publikation (Send indlæg via mail eller XMLRPC klient)"
|
1119 |
+
|
1120 |
+
#: wp-to-twitter-manager.php:794
|
1121 |
+
msgid "Google Analytics Settings"
|
1122 |
+
msgstr "Google Analytics Indstillinger"
|
1123 |
+
|
1124 |
+
#: wp-to-twitter-manager.php:795
|
1125 |
+
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."
|
1126 |
+
msgstr "Du kan måle antallet af hits fra Twitter ved at bruge Google Analytics og definere en kampagne identifikator her. Du kan enten definere en statisk identifikator eller en dynamisk identifikator. Statiske identifikatorer skifter ikke fra indlæg til indlæg; dynamiske identifikatorer er dannet ud fra information relevant til det specifikke indlæg. Dynamiske identifikatorer vil give dig mulighed for nedbryde din statistik med en ekstra variabel."
|
1127 |
+
|
1128 |
+
#: wp-to-twitter-manager.php:799
|
1129 |
+
msgid "Use a Static Identifier with WP-to-Twitter"
|
1130 |
+
msgstr "Brug en statisk identifikator med WP-to-Twitter"
|
1131 |
+
|
1132 |
+
#: wp-to-twitter-manager.php:800
|
1133 |
+
msgid "Static Campaign identifier for Google Analytics:"
|
1134 |
+
msgstr "Statisk kampagne identifikator for Google Analytics"
|
1135 |
+
|
1136 |
+
#: wp-to-twitter-manager.php:804
|
1137 |
+
msgid "Use a dynamic identifier with Google Analytics and WP-to-Twitter"
|
1138 |
+
msgstr "Brug en dynamisk identifikator med Google Analytics og WP-to-Twitter"
|
1139 |
+
|
1140 |
+
#: wp-to-twitter-manager.php:805
|
1141 |
+
msgid "What dynamic identifier would you like to use?"
|
1142 |
+
msgstr "Hvilken dynamisk identifikator vil du benytte?"
|
1143 |
+
|
1144 |
+
#: wp-to-twitter-manager.php:807
|
1145 |
+
msgid "Category"
|
1146 |
+
msgstr "Kategori"
|
1147 |
+
|
1148 |
+
#: wp-to-twitter-manager.php:808
|
1149 |
+
msgid "Post ID"
|
1150 |
+
msgstr "Indlæg ID"
|
1151 |
+
|
1152 |
+
#: wp-to-twitter-manager.php:809
|
1153 |
+
msgid "Post Title"
|
1154 |
+
msgstr "Indlæg titel"
|
1155 |
+
|
1156 |
+
#: wp-to-twitter-manager.php:810
|
1157 |
+
msgid "Author"
|
1158 |
+
msgstr "Forfatter"
|
lang/wp-to-twitter-de_DE.mo
ADDED
Binary file
|
lang/wp-to-twitter-de_DE.po
ADDED
@@ -0,0 +1,1158 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of WP to Twitter in German
|
2 |
+
# This file is distributed under the same license as the WP to Twitter package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2013-02-14 00:39:16+0000\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/0.1\n"
|
11 |
+
"Project-Id-Version: WP to Twitter\n"
|
12 |
+
|
13 |
+
#: wp-to-twitter-manager.php:177
|
14 |
+
msgid "WP to Twitter failed to connect with Twitter. Try <a href=\"#wpt_http\">switching to an HTTP connection</a>."
|
15 |
+
msgstr "WP to Twitter konnte nicht mit Twitter verbinden. Versuche <a href=\"#wpt_http\">zu einer HTTP Verbindung zu wechseln</a>."
|
16 |
+
|
17 |
+
#: wp-to-twitter-manager.php:544
|
18 |
+
msgid "Choose a short URL service (account settings below)"
|
19 |
+
msgstr "Wähle einen Kürz-URL Dienst (Konto-Einstellungen unten)"
|
20 |
+
|
21 |
+
#: wp-to-twitter-manager.php:550
|
22 |
+
msgid "YOURLS (on this server)"
|
23 |
+
msgstr "YOURLS (in diesem Server)"
|
24 |
+
|
25 |
+
#: wp-to-twitter-manager.php:551
|
26 |
+
msgid "YOURLS (on a remote server)"
|
27 |
+
msgstr "YOURLS (in einem externen Server)"
|
28 |
+
|
29 |
+
#: wp-to-twitter-manager.php:592
|
30 |
+
msgid "In addition to standard template tags, comments can use <code>#commenter#</code> to post the commenter's name in the Tweet. <em>Use this at your own risk</em>, as it lets anybody who can post a comment on your site post a phrase in your Twitter stream."
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: wp-to-twitter-manager.php:645
|
34 |
+
msgid "Get your Bit.ly API information."
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: wp-to-twitter.php:63
|
38 |
+
msgid "The current version of WP Tweets PRO is <strong>%s</strong>. Upgrade for best compatibility!"
|
39 |
+
msgstr "Die aktuelle Version von WP Tweets PRO ist <strong>%s</strong>. Bitte upgraden für eine bessere Kompatibilität!"
|
40 |
+
|
41 |
+
#: functions.php:325
|
42 |
+
msgid "Thank you for supporting the continuing development of this plug-in! I'll get back to you as soon as I can. Please ensure that you can receive email at <code>%s</code>."
|
43 |
+
msgstr "Vielen Dank, dass Sie die Weiterentwicklung dieses Plugins unterstützen! Ich werde mich so bald wie möglich bei Ihnen melden. Bitte stellen Sie sicher, dass Sie E-Mails an <code>%s</code> empfangen können."
|
44 |
+
|
45 |
+
#: functions.php:327
|
46 |
+
msgid "Thanks for using WP to Twitter. Please ensure that you can receive email at <code>%s</code>."
|
47 |
+
msgstr "Vielen Dank für die Benutzung von WP to Twitter. Bitte stellen Sie sicher, dass Sie E-Mails an <code>%s</code> empfangen können."
|
48 |
+
|
49 |
+
#: functions.php:351
|
50 |
+
msgid "Reply to:"
|
51 |
+
msgstr "Antwort an:"
|
52 |
+
|
53 |
+
#: wp-to-twitter-manager.php:835
|
54 |
+
msgid "The lowest user group that can add their Twitter information"
|
55 |
+
msgstr "Der niedrigste Benutzer-Grupper, der seine Twitter Information eintragen kann."
|
56 |
+
|
57 |
+
#: wp-to-twitter-manager.php:840
|
58 |
+
msgid "The lowest user group that can see the Custom Tweet options when posting"
|
59 |
+
msgstr "Der niedrigste Benutzer-Grupper, der die benutzerdefinierte Tweet Optionen beim Posten sehen kann."
|
60 |
+
|
61 |
+
#: wp-to-twitter-manager.php:845
|
62 |
+
msgid "The lowest user group that can toggle the Tweet/Don't Tweet option"
|
63 |
+
msgstr "Der niedrigste Benutzer-Grupper, der die Tweetern/Nicht tweetern Option umschalten kann. "
|
64 |
+
|
65 |
+
#: wp-to-twitter-manager.php:850
|
66 |
+
msgid "The lowest user group that can send Twitter updates"
|
67 |
+
msgstr "Der niedrigste Benutzer-Grupper, der Twitter Updates senden kann. "
|
68 |
+
|
69 |
+
#: wp-to-twitter-manager.php:982
|
70 |
+
msgid "<code>#author#</code>: the post author (@reference if available, otherwise display name)"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: wp-to-twitter-manager.php:983
|
74 |
+
msgid "<code>#displayname#</code>: post author's display name"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: wp-to-twitter.php:74
|
78 |
+
msgid "WP to Twitter requires WordPress 3.0.6 or a more recent version <a href=\"http://codex.wordpress.org/Upgrading_WordPress\">Please update WordPress to continue using WP to Twitter with all features!</a>"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: wp-to-twitter.php:285
|
82 |
+
msgid "This tweet was blank and could not be sent to Twitter."
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: wp-to-twitter.php:336
|
86 |
+
msgid "404 Not Found: The URI requested is invalid or the resource requested does not exist."
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: wp-to-twitter.php:340
|
90 |
+
msgid "406 Not Acceptable: Invalid Format Specified."
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: wp-to-twitter.php:344
|
94 |
+
msgid "429 Too Many Requests: You have exceeded your rate limits."
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: wp-to-twitter.php:360
|
98 |
+
msgid "504 Gateway Timeout: The Twitter servers are up, but the request couldn't be serviced due to some failure within our stack. Try again later."
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: wp-to-twitter.php:1162
|
102 |
+
msgid "Your prepended Tweet text; not part of your template."
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: wp-to-twitter.php:1165
|
106 |
+
msgid "Your appended Tweet text; not part of your template."
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: wp-to-twitter.php:1219
|
110 |
+
msgid "Tweets are no more than 140 characters; Twitter counts URLs as 20 characters. Template tags: <code>#url#</code>, <code>#title#</code>, <code>#post#</code>, <code>#category#</code>, <code>#date#</code>, <code>#modified#</code>, <code>#author#</code>, <code>#account#</code>, <code>#tags#</code>, or <code>#blog#</code>."
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: wp-to-twitter.php:1231
|
114 |
+
msgid "Your role does not have the ability to Post Tweets from this site."
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: wp-to-twitter.php:1355
|
118 |
+
msgid "Hide account name in Tweets"
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: wp-to-twitter.php:1356
|
122 |
+
msgid "Do not display my account in the #account# template tag."
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: functions.php:354
|
126 |
+
msgid "I have read <a href=\"%1$s\">the FAQ for this plug-in</a> <span>(required)</span>"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: functions.php:357
|
130 |
+
msgid "I have <a href=\"%1$s\">made a donation to help support this plug-in</a>"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: functions.php:360
|
134 |
+
msgid "Support Request:"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: wp-to-twitter-manager.php:571
|
138 |
+
msgid "Settings for type \"%1$s\""
|
139 |
+
msgstr ""
|
140 |
+
|
141 |
+
#: wp-to-twitter-manager.php:574
|
142 |
+
msgid "Update when %1$s %2$s is published"
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#: wp-to-twitter-manager.php:574
|
146 |
+
msgid "Text for new %1$s updates"
|
147 |
+
msgstr ""
|
148 |
+
|
149 |
+
#: wp-to-twitter-manager.php:578
|
150 |
+
msgid "Update when %1$s %2$s is edited"
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#: wp-to-twitter-manager.php:578
|
154 |
+
msgid "Text for %1$s editing updates"
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#: wp-to-twitter-oauth.php:190
|
158 |
+
msgid "Your server timezone (should be UTC,GMT,Europe/London or equivalent):"
|
159 |
+
msgstr ""
|
160 |
+
|
161 |
+
#: wp-to-twitter-manager.php:553
|
162 |
+
msgid "Use Twitter Friendly Links."
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#: wp-to-twitter-manager.php:650
|
166 |
+
msgid "View your Bit.ly username and API key"
|
167 |
+
msgstr ""
|
168 |
+
|
169 |
+
#: wp-to-twitter-manager.php:694
|
170 |
+
msgid "Your shortener does not require any account settings."
|
171 |
+
msgstr ""
|
172 |
+
|
173 |
+
#: wp-to-twitter.php:314
|
174 |
+
msgid "Your Twitter application does not have read and write permissions. Go to <a href=\"%s\">your Twitter apps</a> to modify these settings."
|
175 |
+
msgstr ""
|
176 |
+
|
177 |
+
#: wp-to-twitter.php:1135
|
178 |
+
msgid "Failed Tweets"
|
179 |
+
msgstr ""
|
180 |
+
|
181 |
+
#: wp-to-twitter.php:1150
|
182 |
+
msgid "No failed tweets on this post."
|
183 |
+
msgstr ""
|
184 |
+
|
185 |
+
#: wp-to-twitter-manager.php:957
|
186 |
+
msgid "Upgrade to <strong>WP Tweets PRO</strong> for more options!"
|
187 |
+
msgstr ""
|
188 |
+
|
189 |
+
#: wp-to-twitter-manager.php:987
|
190 |
+
msgid "<code>#reference#</code>: Used only in co-tweeting. @reference to main account when posted to author account, @reference to author account in post to main account."
|
191 |
+
msgstr ""
|
192 |
+
|
193 |
+
#: wp-to-twitter-oauth.php:165
|
194 |
+
msgid "Connection Problems? Try <a href='#wpt_http'>switching to <code>http</code> queries</a>.<br />"
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
+
#: wp-to-twitter-oauth.php:259
|
198 |
+
msgid "WP to Twitter could not contact Twitter's remote server. Here is the error triggered: "
|
199 |
+
msgstr ""
|
200 |
+
|
201 |
+
#: wp-to-twitter.php:271
|
202 |
+
msgid "This account is not authorized to post to Twitter."
|
203 |
+
msgstr ""
|
204 |
+
|
205 |
+
#: wp-to-twitter.php:279
|
206 |
+
msgid "This tweet is identical to another Tweet recently sent to this account."
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: wp-to-twitter.php:1154
|
210 |
+
msgid "WP to Twitter can do more for you! Take a look at WP Tweets Pro!"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: wp-to-twitter-manager.php:618
|
214 |
+
msgid "(optional)"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: wp-to-twitter-manager.php:771
|
218 |
+
msgid "Do not post Tweets by default (editing only)"
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: wp-to-twitter-manager.php:980
|
222 |
+
msgid "<code>#modified#</code>: the post modified date"
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: wp-to-twitter-oauth.php:257
|
226 |
+
msgid "Your time stamps are more than 5 minutes apart. Your server could lose its connection with Twitter."
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: wp-to-twitter-manager.php:815
|
230 |
+
msgid "Individual Authors"
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: wp-to-twitter-manager.php:818
|
234 |
+
msgid "Authors have individual Twitter accounts"
|
235 |
+
msgstr "Autoren haben individuelle Twitter Accounts"
|
236 |
+
|
237 |
+
#: wp-to-twitter-manager.php:818
|
238 |
+
msgid "Authors can add their username in their user profile. This feature can only add an @reference to the author. The @reference is placed using the <code>#account#</code> shortcode, which will pick up the main account if user accounts are not enabled."
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: wp-to-twitter-manager.php:856
|
242 |
+
msgid "Disable Error Messages"
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
+
#: wp-to-twitter-manager.php:858
|
246 |
+
msgid "Disable global URL shortener error messages."
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: wp-to-twitter-manager.php:859
|
250 |
+
msgid "Disable global Twitter API error messages."
|
251 |
+
msgstr ""
|
252 |
+
|
253 |
+
#: wp-to-twitter-manager.php:860
|
254 |
+
msgid "Disable notification to implement OAuth"
|
255 |
+
msgstr ""
|
256 |
+
|
257 |
+
#: wp-to-twitter-manager.php:862
|
258 |
+
msgid "Get Debugging Data for OAuth Connection"
|
259 |
+
msgstr ""
|
260 |
+
|
261 |
+
#: wp-to-twitter-manager.php:864
|
262 |
+
msgid "Switch to <code>http</code> connection. (Default is https)"
|
263 |
+
msgstr ""
|
264 |
+
|
265 |
+
#: wp-to-twitter-manager.php:866
|
266 |
+
msgid "I made a donation, so stop whinging at me, please."
|
267 |
+
msgstr ""
|
268 |
+
|
269 |
+
#: wp-to-twitter-manager.php:880
|
270 |
+
msgid "Limit Updating Categories"
|
271 |
+
msgstr ""
|
272 |
+
|
273 |
+
#: wp-to-twitter-manager.php:883
|
274 |
+
msgid "If no categories are checked, limiting by category will be ignored, and all categories will be Tweeted."
|
275 |
+
msgstr ""
|
276 |
+
|
277 |
+
#: wp-to-twitter-manager.php:884
|
278 |
+
msgid "<em>Category limits are disabled.</em>"
|
279 |
+
msgstr ""
|
280 |
+
|
281 |
+
#: wp-to-twitter-manager.php:893
|
282 |
+
msgid "Get Plug-in Support"
|
283 |
+
msgstr ""
|
284 |
+
|
285 |
+
#: wp-to-twitter-manager.php:904
|
286 |
+
msgid "Check Support"
|
287 |
+
msgstr "Hilfe Ansehen"
|
288 |
+
|
289 |
+
#: wp-to-twitter-manager.php:904
|
290 |
+
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."
|
291 |
+
msgstr ""
|
292 |
+
|
293 |
+
#: wp-to-twitter-manager.php:922
|
294 |
+
msgid "Support WP to Twitter"
|
295 |
+
msgstr ""
|
296 |
+
|
297 |
+
#: wp-to-twitter-manager.php:924
|
298 |
+
msgid "WP to Twitter Support"
|
299 |
+
msgstr ""
|
300 |
+
|
301 |
+
#: wp-to-twitter-manager.php:932
|
302 |
+
msgid "View Settings"
|
303 |
+
msgstr ""
|
304 |
+
|
305 |
+
#: wp-to-twitter-manager.php:934 wp-to-twitter.php:1224 wp-to-twitter.php:1226
|
306 |
+
msgid "Get Support"
|
307 |
+
msgstr "Hilfe anfordern"
|
308 |
+
|
309 |
+
#: wp-to-twitter-manager.php:938
|
310 |
+
msgid "<a href=\"http://www.joedolson.com/donate.php\">Make a donation today!</a> Every donation counts - donate $2, $10, or $100 and help me keep this plug-in running!"
|
311 |
+
msgstr ""
|
312 |
+
|
313 |
+
#: wp-to-twitter-manager.php:955
|
314 |
+
msgid "Upgrade Now!"
|
315 |
+
msgstr ""
|
316 |
+
|
317 |
+
#: wp-to-twitter-manager.php:958
|
318 |
+
msgid "Extra features with the PRO upgrade:"
|
319 |
+
msgstr ""
|
320 |
+
|
321 |
+
#: wp-to-twitter-manager.php:960
|
322 |
+
msgid "Users can post to their own Twitter accounts"
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: wp-to-twitter-manager.php:961
|
326 |
+
msgid "Set a timer to send your Tweet minutes or hours after you publish the post"
|
327 |
+
msgstr ""
|
328 |
+
|
329 |
+
#: wp-to-twitter-manager.php:962
|
330 |
+
msgid "Automatically re-send Tweets at an assigned time after publishing"
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
+
#: wp-to-twitter-manager.php:971
|
334 |
+
msgid "Shortcodes"
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
+
#: wp-to-twitter-manager.php:973
|
338 |
+
msgid "Available in post update templates:"
|
339 |
+
msgstr ""
|
340 |
+
|
341 |
+
#: wp-to-twitter-manager.php:975
|
342 |
+
msgid "<code>#title#</code>: the title of your blog post"
|
343 |
+
msgstr ""
|
344 |
+
|
345 |
+
#: wp-to-twitter-manager.php:976
|
346 |
+
msgid "<code>#blog#</code>: the title of your blog"
|
347 |
+
msgstr ""
|
348 |
+
|
349 |
+
#: wp-to-twitter-manager.php:977
|
350 |
+
msgid "<code>#post#</code>: a short excerpt of the post content"
|
351 |
+
msgstr ""
|
352 |
+
|
353 |
+
#: wp-to-twitter-manager.php:978
|
354 |
+
msgid "<code>#category#</code>: the first selected category for the post"
|
355 |
+
msgstr ""
|
356 |
+
|
357 |
+
#: wp-to-twitter-manager.php:979
|
358 |
+
msgid "<code>#date#</code>: the post date"
|
359 |
+
msgstr ""
|
360 |
+
|
361 |
+
#: wp-to-twitter-manager.php:981
|
362 |
+
msgid "<code>#url#</code>: the post URL"
|
363 |
+
msgstr ""
|
364 |
+
|
365 |
+
#: wp-to-twitter-manager.php:984
|
366 |
+
msgid "<code>#account#</code>: the twitter @reference for the account (or the author, if author settings are enabled and set.)"
|
367 |
+
msgstr ""
|
368 |
+
|
369 |
+
#: wp-to-twitter-manager.php:985
|
370 |
+
msgid "<code>#tags#</code>: your tags modified into hashtags. See options in the Advanced Settings section, below."
|
371 |
+
msgstr ""
|
372 |
+
|
373 |
+
#: wp-to-twitter-manager.php:990
|
374 |
+
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>"
|
375 |
+
msgstr ""
|
376 |
+
|
377 |
+
#: wp-to-twitter-oauth.php:96
|
378 |
+
msgid "WP to Twitter was unable to establish a connection to Twitter."
|
379 |
+
msgstr ""
|
380 |
+
|
381 |
+
#: wp-to-twitter-oauth.php:166
|
382 |
+
msgid "There was an error querying Twitter's servers"
|
383 |
+
msgstr ""
|
384 |
+
|
385 |
+
#: wp-to-twitter-oauth.php:182 wp-to-twitter-oauth.php:184
|
386 |
+
msgid "Connect to Twitter"
|
387 |
+
msgstr ""
|
388 |
+
|
389 |
+
#: wp-to-twitter-oauth.php:187
|
390 |
+
msgid "WP to Twitter Set-up"
|
391 |
+
msgstr ""
|
392 |
+
|
393 |
+
#: wp-to-twitter-oauth.php:188 wp-to-twitter-oauth.php:281
|
394 |
+
msgid "Your server time:"
|
395 |
+
msgstr ""
|
396 |
+
|
397 |
+
#: wp-to-twitter-oauth.php:188
|
398 |
+
msgid "Twitter's time:"
|
399 |
+
msgstr ""
|
400 |
+
|
401 |
+
#: wp-to-twitter-oauth.php:188
|
402 |
+
msgid "If these timestamps are not within 5 minutes of each other, your server will not connect to Twitter."
|
403 |
+
msgstr ""
|
404 |
+
|
405 |
+
#: wp-to-twitter-oauth.php:192
|
406 |
+
msgid "<em>Note</em>: you will not add your Twitter user information to WP to Twitter; it is not used in this authentication method."
|
407 |
+
msgstr ""
|
408 |
+
|
409 |
+
#: wp-to-twitter-oauth.php:196
|
410 |
+
msgid "1. Register this site as an application on "
|
411 |
+
msgstr ""
|
412 |
+
|
413 |
+
#: wp-to-twitter-oauth.php:196
|
414 |
+
msgid "Twitter's application registration page"
|
415 |
+
msgstr ""
|
416 |
+
|
417 |
+
#: wp-to-twitter-oauth.php:198
|
418 |
+
msgid "If you're not currently logged in to Twitter, log-in to the account you want associated with this site"
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: wp-to-twitter-oauth.php:199
|
422 |
+
msgid "Your Application's Name will show up after \"via\" in your twitter stream. Your application name cannot include the word \"Twitter.\""
|
423 |
+
msgstr ""
|
424 |
+
|
425 |
+
#: wp-to-twitter-oauth.php:200
|
426 |
+
msgid "Your Application Description can be anything."
|
427 |
+
msgstr ""
|
428 |
+
|
429 |
+
#: wp-to-twitter-oauth.php:201
|
430 |
+
msgid "The WebSite and Callback URL should be "
|
431 |
+
msgstr ""
|
432 |
+
|
433 |
+
#: wp-to-twitter-oauth.php:203
|
434 |
+
msgid "Agree to the Developer Rules of the Road and continue."
|
435 |
+
msgstr ""
|
436 |
+
|
437 |
+
#: wp-to-twitter-oauth.php:204
|
438 |
+
msgid "2. Switch to the \"Settings\" tab in Twitter apps"
|
439 |
+
msgstr ""
|
440 |
+
|
441 |
+
#: wp-to-twitter-oauth.php:206
|
442 |
+
msgid "Select \"Read and Write\" for the Application Type"
|
443 |
+
msgstr ""
|
444 |
+
|
445 |
+
#: wp-to-twitter-oauth.php:207
|
446 |
+
msgid "Update the application settings"
|
447 |
+
msgstr ""
|
448 |
+
|
449 |
+
#: wp-to-twitter-oauth.php:208
|
450 |
+
msgid "Return to the Details tab and create your access token. Refresh page to view your access tokens."
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: wp-to-twitter-oauth.php:210
|
454 |
+
msgid "Once you have registered your site as an application, you will be provided with four keys."
|
455 |
+
msgstr ""
|
456 |
+
|
457 |
+
#: wp-to-twitter-oauth.php:211
|
458 |
+
msgid "3. Copy and paste your consumer key and consumer secret into the fields below"
|
459 |
+
msgstr ""
|
460 |
+
|
461 |
+
#: wp-to-twitter-oauth.php:214
|
462 |
+
msgid "Twitter Consumer Key"
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
#: wp-to-twitter-oauth.php:218
|
466 |
+
msgid "Twitter Consumer Secret"
|
467 |
+
msgstr ""
|
468 |
+
|
469 |
+
#: wp-to-twitter-oauth.php:222
|
470 |
+
msgid "4. Copy and paste your Access Token and Access Token Secret into the fields below"
|
471 |
+
msgstr ""
|
472 |
+
|
473 |
+
#: wp-to-twitter-oauth.php:223
|
474 |
+
msgid "If the Access level for your Access Token is not \"<em>Read and write</em>\", you must return to step 2 and generate a new Access Token."
|
475 |
+
msgstr ""
|
476 |
+
|
477 |
+
#: wp-to-twitter-oauth.php:226
|
478 |
+
msgid "Access Token"
|
479 |
+
msgstr ""
|
480 |
+
|
481 |
+
#: wp-to-twitter-oauth.php:230
|
482 |
+
msgid "Access Token Secret"
|
483 |
+
msgstr ""
|
484 |
+
|
485 |
+
#: wp-to-twitter-oauth.php:249
|
486 |
+
msgid "Disconnect Your WordPress and Twitter Account"
|
487 |
+
msgstr ""
|
488 |
+
|
489 |
+
#: wp-to-twitter-oauth.php:253
|
490 |
+
msgid "Disconnect your WordPress and Twitter Account"
|
491 |
+
msgstr ""
|
492 |
+
|
493 |
+
#: wp-to-twitter-oauth.php:255
|
494 |
+
msgid "<strong>Troubleshooting tip:</strong> Connected, but getting a notice that your Authentication credentials are missing or incorrect? Check whether your Access token has read and write permission. If not, you'll need to create a new token."
|
495 |
+
msgstr ""
|
496 |
+
|
497 |
+
#: wp-to-twitter-oauth.php:263
|
498 |
+
msgid "Disconnect from Twitter"
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
+
#: wp-to-twitter-oauth.php:269
|
502 |
+
msgid "Twitter Username "
|
503 |
+
msgstr ""
|
504 |
+
|
505 |
+
#: wp-to-twitter-oauth.php:270
|
506 |
+
msgid "Consumer Key "
|
507 |
+
msgstr ""
|
508 |
+
|
509 |
+
#: wp-to-twitter-oauth.php:271
|
510 |
+
msgid "Consumer Secret "
|
511 |
+
msgstr ""
|
512 |
+
|
513 |
+
#: wp-to-twitter-oauth.php:272
|
514 |
+
msgid "Access Token "
|
515 |
+
msgstr ""
|
516 |
+
|
517 |
+
#: wp-to-twitter-oauth.php:273
|
518 |
+
msgid "Access Token Secret "
|
519 |
+
msgstr ""
|
520 |
+
|
521 |
+
#: wp-to-twitter-oauth.php:281
|
522 |
+
msgid "Twitter's current server time: "
|
523 |
+
msgstr ""
|
524 |
+
|
525 |
+
#: wp-to-twitter.php:45
|
526 |
+
msgid "WP to Twitter requires PHP version 5 or above. Please upgrade PHP to run WP to Twitter."
|
527 |
+
msgstr ""
|
528 |
+
|
529 |
+
#: wp-to-twitter.php:92
|
530 |
+
msgid "Twitter requires authentication by OAuth. You will need to <a href='%s'>update your settings</a> to complete installation of WP to Twitter."
|
531 |
+
msgstr ""
|
532 |
+
|
533 |
+
#: wp-to-twitter.php:318
|
534 |
+
msgid "200 OK: Success!"
|
535 |
+
msgstr ""
|
536 |
+
|
537 |
+
#: wp-to-twitter.php:323
|
538 |
+
msgid "400 Bad Request: The request was invalid. This is the status code returned during rate limiting."
|
539 |
+
msgstr ""
|
540 |
+
|
541 |
+
#: wp-to-twitter.php:327
|
542 |
+
msgid "401 Unauthorized: Authentication credentials were missing or incorrect."
|
543 |
+
msgstr ""
|
544 |
+
|
545 |
+
#: wp-to-twitter.php:332
|
546 |
+
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 can include: Too many Tweets created in a short time or the same Tweet was submitted twice in a row, among others. This is not an error by WP to Twitter."
|
547 |
+
msgstr ""
|
548 |
+
|
549 |
+
#: wp-to-twitter.php:348
|
550 |
+
msgid "500 Internal Server Error: Something is broken at Twitter."
|
551 |
+
msgstr ""
|
552 |
+
|
553 |
+
#: wp-to-twitter.php:356
|
554 |
+
msgid "503 Service Unavailable: The Twitter servers are up, but overloaded with requests - Please try again later."
|
555 |
+
msgstr ""
|
556 |
+
|
557 |
+
#: wp-to-twitter.php:352
|
558 |
+
msgid "502 Bad Gateway: Twitter is down or being upgraded."
|
559 |
+
msgstr ""
|
560 |
+
|
561 |
+
#: wp-to-twitter.php:390
|
562 |
+
msgid "No Twitter OAuth connection found."
|
563 |
+
msgstr ""
|
564 |
+
|
565 |
+
#: wp-to-twitter.php:1079
|
566 |
+
msgid "WP Tweets"
|
567 |
+
msgstr ""
|
568 |
+
|
569 |
+
#: wp-to-twitter.php:1121
|
570 |
+
msgid "Previous Tweets"
|
571 |
+
msgstr ""
|
572 |
+
|
573 |
+
#: wp-to-twitter.php:1157
|
574 |
+
msgid "Custom Twitter Post"
|
575 |
+
msgstr ""
|
576 |
+
|
577 |
+
#: wp-to-twitter.php:1181
|
578 |
+
msgid "Your template:"
|
579 |
+
msgstr ""
|
580 |
+
|
581 |
+
#: wp-to-twitter.php:1186
|
582 |
+
msgid "YOURLS Custom Keyword"
|
583 |
+
msgstr ""
|
584 |
+
|
585 |
+
#: wp-to-twitter.php:1224
|
586 |
+
msgid "Upgrade to WP Tweets Pro"
|
587 |
+
msgstr ""
|
588 |
+
|
589 |
+
#: wp-to-twitter.php:1198
|
590 |
+
msgid "Don't Tweet this post."
|
591 |
+
msgstr "Diesen Eintrag nicht twittern."
|
592 |
+
|
593 |
+
#: wp-to-twitter.php:1198
|
594 |
+
msgid "Tweet this post."
|
595 |
+
msgstr ""
|
596 |
+
|
597 |
+
#: wp-to-twitter.php:1210
|
598 |
+
msgid "Access to customizing WP to Twitter values is not allowed for your user role."
|
599 |
+
msgstr ""
|
600 |
+
|
601 |
+
#: wp-to-twitter.php:1280
|
602 |
+
msgid "Characters left: "
|
603 |
+
msgstr ""
|
604 |
+
|
605 |
+
#: wp-to-twitter.php:1341
|
606 |
+
msgid "WP Tweets User Settings"
|
607 |
+
msgstr ""
|
608 |
+
|
609 |
+
#: wp-to-twitter.php:1345
|
610 |
+
msgid "Use My Twitter Username"
|
611 |
+
msgstr ""
|
612 |
+
|
613 |
+
#: wp-to-twitter.php:1346
|
614 |
+
msgid "Tweet my posts with an @ reference to my username."
|
615 |
+
msgstr ""
|
616 |
+
|
617 |
+
#: wp-to-twitter.php:1347
|
618 |
+
msgid "Tweet my posts with an @ reference to both my username and to the main site username."
|
619 |
+
msgstr ""
|
620 |
+
|
621 |
+
#: wp-to-twitter.php:1351
|
622 |
+
msgid "Your Twitter Username"
|
623 |
+
msgstr "Dein Twitter Benutzername"
|
624 |
+
|
625 |
+
#: wp-to-twitter.php:1352
|
626 |
+
msgid "Enter your own Twitter username."
|
627 |
+
msgstr "Gib deinen Twitter Benutzernamen ein."
|
628 |
+
|
629 |
+
#: wp-to-twitter.php:1405
|
630 |
+
msgid "Check off categories to tweet"
|
631 |
+
msgstr ""
|
632 |
+
|
633 |
+
#: wp-to-twitter.php:1409
|
634 |
+
msgid "Do not tweet posts in checked categories (Reverses default behavior)"
|
635 |
+
msgstr ""
|
636 |
+
|
637 |
+
#: wp-to-twitter.php:1426
|
638 |
+
msgid "Limits are exclusive. If a post is in one category which should be posted and one category that should not, it will not be posted."
|
639 |
+
msgstr ""
|
640 |
+
|
641 |
+
#: wp-to-twitter.php:1429
|
642 |
+
msgid "Set Categories"
|
643 |
+
msgstr ""
|
644 |
+
|
645 |
+
#: wp-to-twitter.php:1451
|
646 |
+
msgid "Settings"
|
647 |
+
msgstr "Einstellungen"
|
648 |
+
|
649 |
+
#: wp-to-twitter.php:1486
|
650 |
+
msgid "<br /><strong>Note:</strong> Please review the <a class=\"thickbox\" href=\"%1$s\">changelog</a> before upgrading."
|
651 |
+
msgstr ""
|
652 |
+
|
653 |
+
msgid "WP to Twitter"
|
654 |
+
msgstr "WP to Twitter"
|
655 |
+
|
656 |
+
msgid "http://www.joedolson.com/articles/wp-to-twitter/"
|
657 |
+
msgstr "http://www.joedolson.com/articles/wp-to-twitter/"
|
658 |
+
|
659 |
+
msgid "Posts a Tweet 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."
|
660 |
+
msgstr ""
|
661 |
+
|
662 |
+
msgid "Joseph Dolson"
|
663 |
+
msgstr "Joseph Dolson"
|
664 |
+
|
665 |
+
msgid "http://www.joedolson.com/"
|
666 |
+
msgstr "http://www.joedolson.com/"
|
667 |
+
|
668 |
+
#: functions.php:319
|
669 |
+
msgid "Please read the FAQ and other Help documents before making a support request."
|
670 |
+
msgstr ""
|
671 |
+
|
672 |
+
#: functions.php:201
|
673 |
+
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."
|
674 |
+
msgstr "[<a href='options-general.php?page=wp-to-twitter/wp-to-twitter.php'>Hide</a>] Falls Du Probleme hast, kopiere bitte deine Einstellungen in die Supportanfrage."
|
675 |
+
|
676 |
+
#: functions.php:341
|
677 |
+
msgid "Please include your license key in your support request."
|
678 |
+
msgstr ""
|
679 |
+
|
680 |
+
#: functions.php:321
|
681 |
+
msgid "Please describe your problem. I'm not psychic."
|
682 |
+
msgstr ""
|
683 |
+
|
684 |
+
#: functions.php:346
|
685 |
+
msgid "<strong>Please note</strong>: I do keep records of those who have donated, but if your donation came from somebody other than your account at this web site, you must note this in your message."
|
686 |
+
msgstr ""
|
687 |
+
|
688 |
+
#: functions.php:363
|
689 |
+
msgid "Send Support Request"
|
690 |
+
msgstr ""
|
691 |
+
|
692 |
+
#: functions.php:366
|
693 |
+
msgid "The following additional information will be sent with your support request:"
|
694 |
+
msgstr ""
|
695 |
+
|
696 |
+
#: wp-to-twitter-manager.php:40
|
697 |
+
msgid "No error information is available for your shortener."
|
698 |
+
msgstr ""
|
699 |
+
|
700 |
+
#: wp-to-twitter-manager.php:42
|
701 |
+
msgid "<li class=\"error\"><strong>WP to Twitter was unable to contact your selected URL shortening service.</strong></li>"
|
702 |
+
msgstr ""
|
703 |
+
|
704 |
+
#: wp-to-twitter-manager.php:45
|
705 |
+
msgid "<li><strong>WP to Twitter successfully contacted your selected URL shortening service.</strong> The following link should point to your blog homepage:"
|
706 |
+
msgstr ""
|
707 |
+
|
708 |
+
#: wp-to-twitter-manager.php:53
|
709 |
+
msgid "<li><strong>WP to Twitter successfully submitted a status update to Twitter.</strong></li>"
|
710 |
+
msgstr ""
|
711 |
+
|
712 |
+
#: wp-to-twitter-manager.php:56
|
713 |
+
msgid "<li class=\"error\"><strong>WP to Twitter failed to submit an update to Twitter.</strong></li>"
|
714 |
+
msgstr ""
|
715 |
+
|
716 |
+
#: wp-to-twitter-manager.php:60
|
717 |
+
msgid "You have not connected WordPress to Twitter."
|
718 |
+
msgstr ""
|
719 |
+
|
720 |
+
#: wp-to-twitter-manager.php:64
|
721 |
+
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>"
|
722 |
+
msgstr ""
|
723 |
+
|
724 |
+
#: wp-to-twitter-manager.php:68
|
725 |
+
msgid "<li><strong>Your server should run WP to Twitter successfully.</strong></li>"
|
726 |
+
msgstr "<li><strong>Dein Server sollte WP to Twitter problemlos ausführen.</strong></li>"
|
727 |
+
|
728 |
+
#: wp-to-twitter-manager.php:86
|
729 |
+
msgid "WP to Twitter Errors Cleared"
|
730 |
+
msgstr "WP to Twitter Fehlermeldung gelöscht."
|
731 |
+
|
732 |
+
#: wp-to-twitter-manager.php:170
|
733 |
+
msgid "WP to Twitter is now connected with Twitter."
|
734 |
+
msgstr ""
|
735 |
+
|
736 |
+
#: wp-to-twitter-manager.php:184
|
737 |
+
msgid "OAuth Authentication Data Cleared."
|
738 |
+
msgstr ""
|
739 |
+
|
740 |
+
#: wp-to-twitter-manager.php:191
|
741 |
+
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."
|
742 |
+
msgstr ""
|
743 |
+
|
744 |
+
#: wp-to-twitter-manager.php:198
|
745 |
+
msgid "OAuth Authentication response not understood."
|
746 |
+
msgstr ""
|
747 |
+
|
748 |
+
#: wp-to-twitter-manager.php:360
|
749 |
+
msgid "WP to Twitter Advanced Options Updated"
|
750 |
+
msgstr ""
|
751 |
+
|
752 |
+
#: wp-to-twitter-manager.php:382
|
753 |
+
msgid "You must add your Bit.ly login and API key in order to shorten URLs with Bit.ly."
|
754 |
+
msgstr "Du musst deinen Bit.ly Login und API Key eingeben um die URLs mit Bit.ly zu kürzen."
|
755 |
+
|
756 |
+
#: wp-to-twitter-manager.php:386
|
757 |
+
msgid "You must add your YOURLS remote URL, login, and password in order to shorten URLs with a remote installation of YOURLS."
|
758 |
+
msgstr ""
|
759 |
+
|
760 |
+
#: wp-to-twitter-manager.php:390
|
761 |
+
msgid "You must add your YOURLS server path in order to shorten URLs with a remote installation of YOURLS."
|
762 |
+
msgstr ""
|
763 |
+
|
764 |
+
#: wp-to-twitter-manager.php:393
|
765 |
+
msgid "WP to Twitter Options Updated"
|
766 |
+
msgstr "WP to Twitter Einstellungen Aktualisiert"
|
767 |
+
|
768 |
+
#: wp-to-twitter-manager.php:402
|
769 |
+
msgid "Category limits updated."
|
770 |
+
msgstr ""
|
771 |
+
|
772 |
+
#: wp-to-twitter-manager.php:406
|
773 |
+
msgid "Category limits unset."
|
774 |
+
msgstr ""
|
775 |
+
|
776 |
+
#: wp-to-twitter-manager.php:413
|
777 |
+
msgid "YOURLS password updated. "
|
778 |
+
msgstr ""
|
779 |
+
|
780 |
+
#: wp-to-twitter-manager.php:416
|
781 |
+
msgid "YOURLS password deleted. You will be unable to use your remote YOURLS account to create short URLS."
|
782 |
+
msgstr ""
|
783 |
+
|
784 |
+
#: wp-to-twitter-manager.php:418
|
785 |
+
msgid "Failed to save your YOURLS password! "
|
786 |
+
msgstr ""
|
787 |
+
|
788 |
+
#: wp-to-twitter-manager.php:422
|
789 |
+
msgid "YOURLS username added. "
|
790 |
+
msgstr ""
|
791 |
+
|
792 |
+
#: wp-to-twitter-manager.php:426
|
793 |
+
msgid "YOURLS API url added. "
|
794 |
+
msgstr ""
|
795 |
+
|
796 |
+
#: wp-to-twitter-manager.php:429
|
797 |
+
msgid "YOURLS API url removed. "
|
798 |
+
msgstr ""
|
799 |
+
|
800 |
+
#: wp-to-twitter-manager.php:434
|
801 |
+
msgid "YOURLS local server path added. "
|
802 |
+
msgstr ""
|
803 |
+
|
804 |
+
#: wp-to-twitter-manager.php:436
|
805 |
+
msgid "The path to your YOURLS installation is not correct. "
|
806 |
+
msgstr ""
|
807 |
+
|
808 |
+
#: wp-to-twitter-manager.php:440
|
809 |
+
msgid "YOURLS local server path removed. "
|
810 |
+
msgstr ""
|
811 |
+
|
812 |
+
#: wp-to-twitter-manager.php:445
|
813 |
+
msgid "YOURLS will use Post ID for short URL slug."
|
814 |
+
msgstr ""
|
815 |
+
|
816 |
+
#: wp-to-twitter-manager.php:447
|
817 |
+
msgid "YOURLS will use your custom keyword for short URL slug."
|
818 |
+
msgstr ""
|
819 |
+
|
820 |
+
#: wp-to-twitter-manager.php:451
|
821 |
+
msgid "YOURLS will not use Post ID for the short URL slug."
|
822 |
+
msgstr ""
|
823 |
+
|
824 |
+
#: wp-to-twitter-manager.php:459
|
825 |
+
msgid "Su.pr API Key and Username Updated"
|
826 |
+
msgstr ""
|
827 |
+
|
828 |
+
#: wp-to-twitter-manager.php:463
|
829 |
+
msgid "Su.pr API Key and username deleted. Su.pr URLs created by WP to Twitter will no longer be associated with your account. "
|
830 |
+
msgstr ""
|
831 |
+
|
832 |
+
#: wp-to-twitter-manager.php:465
|
833 |
+
msgid "Su.pr API Key not added - <a href='http://su.pr/'>get one here</a>! "
|
834 |
+
msgstr ""
|
835 |
+
|
836 |
+
#: wp-to-twitter-manager.php:471
|
837 |
+
msgid "Bit.ly API Key Updated."
|
838 |
+
msgstr "Bit.ly API Key aktualisiert."
|
839 |
+
|
840 |
+
#: wp-to-twitter-manager.php:474
|
841 |
+
msgid "Bit.ly API Key deleted. You cannot use the Bit.ly API without an API key. "
|
842 |
+
msgstr "Bit.ly API Key gelöscht. Du kannst die Bit.ly API nicht ohne API Key verwenden."
|
843 |
+
|
844 |
+
#: wp-to-twitter-manager.php:476
|
845 |
+
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."
|
846 |
+
msgstr "Bit.ly API Key nicht hinzugefügt - <a href='http://bit.ly/account/'>HIER anfordern</a>! Ein API Key wird für den Bit.ly Dienst benötigt."
|
847 |
+
|
848 |
+
#: wp-to-twitter-manager.php:480
|
849 |
+
msgid " Bit.ly User Login Updated."
|
850 |
+
msgstr "Bit.ly Benutzer Login aktualisiert."
|
851 |
+
|
852 |
+
#: wp-to-twitter-manager.php:483
|
853 |
+
msgid "Bit.ly User Login deleted. You cannot use the Bit.ly API without providing your username. "
|
854 |
+
msgstr "Bit.ly Benutzer Login gelöscht. Du kannst die Bit.ly API nicht ohne Benutzernamen verwenden."
|
855 |
+
|
856 |
+
#: wp-to-twitter-manager.php:485
|
857 |
+
msgid "Bit.ly Login not added - <a href='http://bit.ly/account/'>get one here</a>! "
|
858 |
+
msgstr "Bit.ly Login nicht hinzugefügt - <a href='http://bit.ly/account/'>HIER</a> klicken zum Anlegen!"
|
859 |
+
|
860 |
+
#: wp-to-twitter-manager.php:501
|
861 |
+
msgid "<p>One or more of your last posts has failed to send a status update to Twitter. The Tweet has been saved, and you can re-Tweet it at your leisure.</p>"
|
862 |
+
msgstr ""
|
863 |
+
|
864 |
+
#: wp-to-twitter-manager.php:507
|
865 |
+
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. "
|
866 |
+
msgstr "Sorry! Ich konnte den Twitter Server nicht erreichten, um einen Tweet über deinen neuen <strong>neuen Link</strong> zu veröffentlichen! Ich befürchte, du musst ihn manuell veröffentlichen."
|
867 |
+
|
868 |
+
#: wp-to-twitter-manager.php:510
|
869 |
+
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.</p>"
|
870 |
+
msgstr ""
|
871 |
+
|
872 |
+
#: wp-to-twitter-manager.php:516
|
873 |
+
msgid "Clear 'WP to Twitter' Error Messages"
|
874 |
+
msgstr "'WP to Twitter' Fehlermeldung löschen"
|
875 |
+
|
876 |
+
#: wp-to-twitter-manager.php:523
|
877 |
+
msgid "WP to Twitter Options"
|
878 |
+
msgstr "WP to Twitter Einstellungen"
|
879 |
+
|
880 |
+
#: wp-to-twitter-manager.php:536
|
881 |
+
msgid "Basic Settings"
|
882 |
+
msgstr ""
|
883 |
+
|
884 |
+
#: wp-to-twitter-manager.php:542 wp-to-twitter-manager.php:606
|
885 |
+
msgid "Save WP->Twitter Options"
|
886 |
+
msgstr "WP->Twitter Einstellungen sichern"
|
887 |
+
|
888 |
+
#: wp-to-twitter-manager.php:586
|
889 |
+
msgid "Settings for Comments"
|
890 |
+
msgstr ""
|
891 |
+
|
892 |
+
#: wp-to-twitter-manager.php:589
|
893 |
+
msgid "Update Twitter when new comments are posted"
|
894 |
+
msgstr ""
|
895 |
+
|
896 |
+
#: wp-to-twitter-manager.php:590
|
897 |
+
msgid "Text for new comments:"
|
898 |
+
msgstr ""
|
899 |
+
|
900 |
+
#: wp-to-twitter-manager.php:595
|
901 |
+
msgid "Settings for Links"
|
902 |
+
msgstr ""
|
903 |
+
|
904 |
+
#: wp-to-twitter-manager.php:598
|
905 |
+
msgid "Update Twitter when you post a Blogroll link"
|
906 |
+
msgstr "Aktualisiere Twitter wenn du einen neuen Blogroll Link veröffentlichst."
|
907 |
+
|
908 |
+
#: wp-to-twitter-manager.php:599
|
909 |
+
msgid "Text for new link updates:"
|
910 |
+
msgstr "Text für neue Link Aktualisierung: "
|
911 |
+
|
912 |
+
#: wp-to-twitter-manager.php:599
|
913 |
+
msgid "Available shortcodes: <code>#url#</code>, <code>#title#</code>, and <code>#description#</code>."
|
914 |
+
msgstr "Vorhandene Codes: <code>#url#</code>, <code>#title#</code>, and <code>#description#</code>."
|
915 |
+
|
916 |
+
#: wp-to-twitter-manager.php:546
|
917 |
+
msgid "Don't shorten URLs."
|
918 |
+
msgstr "URLs nicht kürzen."
|
919 |
+
|
920 |
+
#: wp-to-twitter-manager.php:614
|
921 |
+
msgid "<abbr title=\"Uniform Resource Locator\">URL</abbr> Shortener Account Settings"
|
922 |
+
msgstr ""
|
923 |
+
|
924 |
+
#: wp-to-twitter-manager.php:618
|
925 |
+
msgid "Your Su.pr account details"
|
926 |
+
msgstr ""
|
927 |
+
|
928 |
+
#: wp-to-twitter-manager.php:622
|
929 |
+
msgid "Your Su.pr Username:"
|
930 |
+
msgstr ""
|
931 |
+
|
932 |
+
#: wp-to-twitter-manager.php:626
|
933 |
+
msgid "Your Su.pr <abbr title='application programming interface'>API</abbr> Key:"
|
934 |
+
msgstr ""
|
935 |
+
|
936 |
+
#: wp-to-twitter-manager.php:633
|
937 |
+
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."
|
938 |
+
msgstr ""
|
939 |
+
|
940 |
+
#: wp-to-twitter-manager.php:639
|
941 |
+
msgid "Your Bit.ly account details"
|
942 |
+
msgstr "Deine Bit.ly Account Informationen"
|
943 |
+
|
944 |
+
#: wp-to-twitter-manager.php:643
|
945 |
+
msgid "Your Bit.ly username:"
|
946 |
+
msgstr "Dein Bit.ly Benutzername:"
|
947 |
+
|
948 |
+
#: wp-to-twitter-manager.php:647
|
949 |
+
msgid "Your Bit.ly <abbr title='application programming interface'>API</abbr> Key:"
|
950 |
+
msgstr "Dein Bit.ly <abbr title='application programming interface'>API</abbr> Key:"
|
951 |
+
|
952 |
+
#: wp-to-twitter-manager.php:655
|
953 |
+
msgid "Save Bit.ly API Key"
|
954 |
+
msgstr "Bit.ly API Key gespeichert"
|
955 |
+
|
956 |
+
#: wp-to-twitter-manager.php:655
|
957 |
+
msgid "Clear Bit.ly API Key"
|
958 |
+
msgstr "Bit.ly API Key entfernen"
|
959 |
+
|
960 |
+
#: wp-to-twitter-manager.php:655
|
961 |
+
msgid "A Bit.ly API key and username is required to shorten URLs via the Bit.ly API and WP to Twitter."
|
962 |
+
msgstr "Ein Bit.ly API Key und Benutzernamen werden für den URL Kürzer von der Bit.ly API und WP to Twitter benötigt."
|
963 |
+
|
964 |
+
#: wp-to-twitter-manager.php:661
|
965 |
+
msgid "Your YOURLS account details"
|
966 |
+
msgstr ""
|
967 |
+
|
968 |
+
#: wp-to-twitter-manager.php:665
|
969 |
+
msgid "Path to your YOURLS config file (Local installations)"
|
970 |
+
msgstr ""
|
971 |
+
|
972 |
+
#: wp-to-twitter-manager.php:666 wp-to-twitter-manager.php:670
|
973 |
+
msgid "Example:"
|
974 |
+
msgstr ""
|
975 |
+
|
976 |
+
#: wp-to-twitter-manager.php:669
|
977 |
+
msgid "URI to the YOURLS API (Remote installations)"
|
978 |
+
msgstr ""
|
979 |
+
|
980 |
+
#: wp-to-twitter-manager.php:673
|
981 |
+
msgid "Your YOURLS username:"
|
982 |
+
msgstr ""
|
983 |
+
|
984 |
+
#: wp-to-twitter-manager.php:677
|
985 |
+
msgid "Your YOURLS password:"
|
986 |
+
msgstr ""
|
987 |
+
|
988 |
+
#: wp-to-twitter-manager.php:677
|
989 |
+
msgid "<em>Saved</em>"
|
990 |
+
msgstr ""
|
991 |
+
|
992 |
+
#: wp-to-twitter-manager.php:681
|
993 |
+
msgid "Post ID for YOURLS url slug."
|
994 |
+
msgstr ""
|
995 |
+
|
996 |
+
#: wp-to-twitter-manager.php:682
|
997 |
+
msgid "Custom keyword for YOURLS url slug."
|
998 |
+
msgstr ""
|
999 |
+
|
1000 |
+
#: wp-to-twitter-manager.php:683
|
1001 |
+
msgid "Default: sequential URL numbering."
|
1002 |
+
msgstr ""
|
1003 |
+
|
1004 |
+
#: wp-to-twitter-manager.php:689
|
1005 |
+
msgid "Save YOURLS Account Info"
|
1006 |
+
msgstr ""
|
1007 |
+
|
1008 |
+
#: wp-to-twitter-manager.php:689
|
1009 |
+
msgid "Clear YOURLS password"
|
1010 |
+
msgstr ""
|
1011 |
+
|
1012 |
+
#: wp-to-twitter-manager.php:689
|
1013 |
+
msgid "A YOURLS password and username is required to shorten URLs via the remote YOURLS API and WP to Twitter."
|
1014 |
+
msgstr ""
|
1015 |
+
|
1016 |
+
#: wp-to-twitter-manager.php:702
|
1017 |
+
msgid "Advanced Settings"
|
1018 |
+
msgstr ""
|
1019 |
+
|
1020 |
+
#: wp-to-twitter-manager.php:707 wp-to-twitter-manager.php:872
|
1021 |
+
msgid "Save Advanced WP->Twitter Options"
|
1022 |
+
msgstr ""
|
1023 |
+
|
1024 |
+
#: wp-to-twitter-manager.php:709
|
1025 |
+
msgid "Advanced Tweet settings"
|
1026 |
+
msgstr ""
|
1027 |
+
|
1028 |
+
#: wp-to-twitter-manager.php:711
|
1029 |
+
msgid "Strip nonalphanumeric characters from tags"
|
1030 |
+
msgstr ""
|
1031 |
+
|
1032 |
+
#: wp-to-twitter-manager.php:712
|
1033 |
+
msgid "Spaces in tags replaced with:"
|
1034 |
+
msgstr ""
|
1035 |
+
|
1036 |
+
#: wp-to-twitter-manager.php:714
|
1037 |
+
msgid "Default replacement is an underscore (<code>_</code>). Use <code>[ ]</code> to remove spaces entirely."
|
1038 |
+
msgstr "Standardmäßig wird es mit einem Unterstrich ersetzt (<code>_</code>). Verwende <code>[ ]</code> um das Leerzeichen komplett zu entfernen."
|
1039 |
+
|
1040 |
+
#: wp-to-twitter-manager.php:717
|
1041 |
+
msgid "Maximum number of tags to include:"
|
1042 |
+
msgstr "Maximale Anzahl von Tags pro Tweet:"
|
1043 |
+
|
1044 |
+
#: wp-to-twitter-manager.php:718
|
1045 |
+
msgid "Maximum length in characters for included tags:"
|
1046 |
+
msgstr "Maximale Länge von Zeichen inklusive Tags:"
|
1047 |
+
|
1048 |
+
#: wp-to-twitter-manager.php:719
|
1049 |
+
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."
|
1050 |
+
msgstr "Diese Option erlaubt Dir die Länge und Anzahl von WordPress Tags, die als Twitter Hashtags erscheinen festzulegen. Mit <code>0</code> oder ohne Wert werden alle Tags übernommen."
|
1051 |
+
|
1052 |
+
#: wp-to-twitter-manager.php:722
|
1053 |
+
msgid "Length of post excerpt (in characters):"
|
1054 |
+
msgstr "Länge des Blogeintrag Auszugs (in Zeichen):"
|
1055 |
+
|
1056 |
+
#: wp-to-twitter-manager.php:722
|
1057 |
+
msgid "By default, extracted from the post itself. If you use the 'Excerpt' field, that will be used instead."
|
1058 |
+
msgstr "Standardmäßig, Auszug aus dem Blogeintrag selbst. Wenn du das 'Auszug' Feld verwendest, wird dieser Text verwendet."
|
1059 |
+
|
1060 |
+
#: wp-to-twitter-manager.php:725
|
1061 |
+
msgid "WP to Twitter Date Formatting:"
|
1062 |
+
msgstr "WP to Twitter Datums Format:"
|
1063 |
+
|
1064 |
+
#: wp-to-twitter-manager.php:726
|
1065 |
+
msgid "Default is from your general settings. <a href='http://codex.wordpress.org/Formatting_Date_and_Time'>Date Formatting Documentation</a>."
|
1066 |
+
msgstr "Der Standard ist aus den Allgemeinen Einstellungne. <a href='http://codex.wordpress.org/Formatting_Date_and_Time'>Datumsformat Dokumentation</a>."
|
1067 |
+
|
1068 |
+
#: wp-to-twitter-manager.php:730
|
1069 |
+
msgid "Custom text before all Tweets:"
|
1070 |
+
msgstr ""
|
1071 |
+
|
1072 |
+
#: wp-to-twitter-manager.php:731
|
1073 |
+
msgid "Custom text after all Tweets:"
|
1074 |
+
msgstr ""
|
1075 |
+
|
1076 |
+
#: wp-to-twitter-manager.php:734
|
1077 |
+
msgid "Custom field for an alternate URL to be shortened and Tweeted:"
|
1078 |
+
msgstr "Benutzerfeld für eine alternative URL zum Verkürzen und Tweeten:"
|
1079 |
+
|
1080 |
+
#: wp-to-twitter-manager.php:735
|
1081 |
+
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."
|
1082 |
+
msgstr ""
|
1083 |
+
|
1084 |
+
#: wp-to-twitter-manager.php:758
|
1085 |
+
msgid "Preferred status update truncation sequence"
|
1086 |
+
msgstr ""
|
1087 |
+
|
1088 |
+
#: wp-to-twitter-manager.php:761
|
1089 |
+
msgid "This is the order in which items will be abbreviated or removed from your status update if it is too long to send to Twitter."
|
1090 |
+
msgstr ""
|
1091 |
+
|
1092 |
+
#: wp-to-twitter-manager.php:766
|
1093 |
+
msgid "Special Cases when WordPress should send a Tweet"
|
1094 |
+
msgstr "Spezialfälle wenn WordPress einen Tweet senden soll"
|
1095 |
+
|
1096 |
+
#: wp-to-twitter-manager.php:769
|
1097 |
+
msgid "Do not post Tweets by default"
|
1098 |
+
msgstr ""
|
1099 |
+
|
1100 |
+
#: wp-to-twitter-manager.php:772
|
1101 |
+
msgid "By default, all posts meeting other requirements will be posted to Twitter. Check this to change your setting."
|
1102 |
+
msgstr ""
|
1103 |
+
|
1104 |
+
#: wp-to-twitter-manager.php:776
|
1105 |
+
msgid "Allow status updates from Quick Edit"
|
1106 |
+
msgstr ""
|
1107 |
+
|
1108 |
+
#: wp-to-twitter-manager.php:777
|
1109 |
+
msgid "If checked, all posts edited individually or in bulk through the Quick Edit feature will be Tweeted."
|
1110 |
+
msgstr ""
|
1111 |
+
|
1112 |
+
#: wp-to-twitter-manager.php:782
|
1113 |
+
msgid "Delaying tweets with WP Tweets PRO moves Tweeting to an publishing-independent action."
|
1114 |
+
msgstr ""
|
1115 |
+
|
1116 |
+
#: wp-to-twitter-manager.php:789
|
1117 |
+
msgid "Send Twitter Updates on remote publication (Post by Email or XMLRPC Client)"
|
1118 |
+
msgstr "Twitter Aktualisierungen bei Remote Veröffentlichungen (Einträge per Email oder XMLRPC Client)"
|
1119 |
+
|
1120 |
+
#: wp-to-twitter-manager.php:794
|
1121 |
+
msgid "Google Analytics Settings"
|
1122 |
+
msgstr ""
|
1123 |
+
|
1124 |
+
#: wp-to-twitter-manager.php:795
|
1125 |
+
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."
|
1126 |
+
msgstr ""
|
1127 |
+
|
1128 |
+
#: wp-to-twitter-manager.php:799
|
1129 |
+
msgid "Use a Static Identifier with WP-to-Twitter"
|
1130 |
+
msgstr ""
|
1131 |
+
|
1132 |
+
#: wp-to-twitter-manager.php:800
|
1133 |
+
msgid "Static Campaign identifier for Google Analytics:"
|
1134 |
+
msgstr ""
|
1135 |
+
|
1136 |
+
#: wp-to-twitter-manager.php:804
|
1137 |
+
msgid "Use a dynamic identifier with Google Analytics and WP-to-Twitter"
|
1138 |
+
msgstr ""
|
1139 |
+
|
1140 |
+
#: wp-to-twitter-manager.php:805
|
1141 |
+
msgid "What dynamic identifier would you like to use?"
|
1142 |
+
msgstr ""
|
1143 |
+
|
1144 |
+
#: wp-to-twitter-manager.php:807
|
1145 |
+
msgid "Category"
|
1146 |
+
msgstr ""
|
1147 |
+
|
1148 |
+
#: wp-to-twitter-manager.php:808
|
1149 |
+
msgid "Post ID"
|
1150 |
+
msgstr ""
|
1151 |
+
|
1152 |
+
#: wp-to-twitter-manager.php:809
|
1153 |
+
msgid "Post Title"
|
1154 |
+
msgstr ""
|
1155 |
+
|
1156 |
+
#: wp-to-twitter-manager.php:810
|
1157 |
+
msgid "Author"
|
1158 |
+
msgstr ""
|
wp-to-twitter-es_ES.mo → lang/wp-to-twitter-es_ES.mo
RENAMED
File without changes
|
wp-to-twitter-es_ES.po → lang/wp-to-twitter-es_ES.po
RENAMED
File without changes
|
wp-to-twitter-et_ET.mo → lang/wp-to-twitter-et_ET.mo
RENAMED
File without changes
|
wp-to-twitter-et_ET.po → lang/wp-to-twitter-et_ET.po
RENAMED
File without changes
|
lang/wp-to-twitter-fr_FR.mo
ADDED
Binary file
|
lang/wp-to-twitter-fr_FR.po
ADDED
@@ -0,0 +1,1158 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of WP to Twitter in French (France)
|
2 |
+
# This file is distributed under the same license as the WP to Twitter package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2013-02-14 00:37:44+0000\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
10 |
+
"X-Generator: GlotPress/0.1\n"
|
11 |
+
"Project-Id-Version: WP to Twitter\n"
|
12 |
+
|
13 |
+
#: wp-to-twitter-manager.php:177
|
14 |
+
msgid "WP to Twitter failed to connect with Twitter. Try <a href=\"#wpt_http\">switching to an HTTP connection</a>."
|
15 |
+
msgstr "Wp to Twitter n'a pas réussi à se connecter à Twitter. Essayer de <a href=\"#wpt_http\">passer à une connexion HTTP</a>."
|
16 |
+
|
17 |
+
#: wp-to-twitter-manager.php:544
|
18 |
+
msgid "Choose a short URL service (account settings below)"
|
19 |
+
msgstr "Choisir votre service de réduction d'URL"
|
20 |
+
|
21 |
+
#: wp-to-twitter-manager.php:550
|
22 |
+
msgid "YOURLS (on this server)"
|
23 |
+
msgstr "YOURLS (installé en local sur ce serveur)"
|
24 |
+
|
25 |
+
#: wp-to-twitter-manager.php:551
|
26 |
+
msgid "YOURLS (on a remote server)"
|
27 |
+
msgstr "YOURLS (installé sur un serveur distant)"
|
28 |
+
|
29 |
+
#: wp-to-twitter-manager.php:592
|
30 |
+
msgid "In addition to standard template tags, comments can use <code>#commenter#</code> to post the commenter's name in the Tweet. <em>Use this at your own risk</em>, as it lets anybody who can post a comment on your site post a phrase in your Twitter stream."
|
31 |
+
msgstr "En plus des balises courtes ci-dessus, les modèles de commentaire pouvent utiliser <code>#commenter#</code> pour afficher le nom du commentateur dans le Tweet. <em> Utilisez cette fonction à vos risques et périls </em>, car elle permettra à quiconque qui peut publier un commentaire sur votre site de publier une phrase dans votre flux Twitter."
|
32 |
+
|
33 |
+
#: wp-to-twitter-manager.php:645
|
34 |
+
msgid "Get your Bit.ly API information."
|
35 |
+
msgstr "Voir vos informations de l'API de Bit.ly"
|
36 |
+
|
37 |
+
#: wp-to-twitter.php:63
|
38 |
+
msgid "The current version of WP Tweets PRO is <strong>%s</strong>. Upgrade for best compatibility!"
|
39 |
+
msgstr "La version actuelle de WP Tweets PRO est la <strong>%s</strong>. Mettez à jour pour une meilleure compatibilité !"
|
40 |
+
|
41 |
+
#: functions.php:325
|
42 |
+
msgid "Thank you for supporting the continuing development of this plug-in! I'll get back to you as soon as I can. Please ensure that you can receive email at <code>%s</code>."
|
43 |
+
msgstr "Merci de soutenir le développement continu de cette extension ! Je vous recontacterais dès que possible. S'il vous plaît assurez-vous que vous pouvez recevoir des e-mails sur <code>% s </code>."
|
44 |
+
|
45 |
+
#: functions.php:327
|
46 |
+
msgid "Thanks for using WP to Twitter. Please ensure that you can receive email at <code>%s</code>."
|
47 |
+
msgstr "Merci d'utiliser WP to Twitter. S'il vous plaît assurez-vous que vous pouvez recevoir des e-mails sur <code>% s </code>."
|
48 |
+
|
49 |
+
#: functions.php:351
|
50 |
+
msgid "Reply to:"
|
51 |
+
msgstr "Répondre à :"
|
52 |
+
|
53 |
+
#: wp-to-twitter-manager.php:835
|
54 |
+
msgid "The lowest user group that can add their Twitter information"
|
55 |
+
msgstr "Choisissez le groupe d'utilisateur le plus bas pouvant ajouter ses infos Twitter"
|
56 |
+
|
57 |
+
#: wp-to-twitter-manager.php:840
|
58 |
+
msgid "The lowest user group that can see the Custom Tweet options when posting"
|
59 |
+
msgstr "Choisissez le groupe d'utilisateur le plus bas pouvant voir les options de Tweet personnalisés lors de la publication"
|
60 |
+
|
61 |
+
#: wp-to-twitter-manager.php:845
|
62 |
+
msgid "The lowest user group that can toggle the Tweet/Don't Tweet option"
|
63 |
+
msgstr "Choisissez le groupe d'utilisateur le plus bas pouvant modifier l'option Tweeter/Pas Tweeter"
|
64 |
+
|
65 |
+
#: wp-to-twitter-manager.php:850
|
66 |
+
msgid "The lowest user group that can send Twitter updates"
|
67 |
+
msgstr "Choisissez le groupe d'utilisateur le plus bas pouvant envoyer des mises à jour Twitter"
|
68 |
+
|
69 |
+
#: wp-to-twitter-manager.php:982
|
70 |
+
msgid "<code>#author#</code>: the post author (@reference if available, otherwise display name)"
|
71 |
+
msgstr "<code>#author#</code> : l'auteur de l'article (référence@ si disponible, sinon affiche le nom)"
|
72 |
+
|
73 |
+
#: wp-to-twitter-manager.php:983
|
74 |
+
msgid "<code>#displayname#</code>: post author's display name"
|
75 |
+
msgstr "<code>#displayname#</code> : affiche le nom de l'auteur de l'article"
|
76 |
+
|
77 |
+
#: wp-to-twitter.php:74
|
78 |
+
msgid "WP to Twitter requires WordPress 3.0.6 or a more recent version <a href=\"http://codex.wordpress.org/Upgrading_WordPress\">Please update WordPress to continue using WP to Twitter with all features!</a>"
|
79 |
+
msgstr "WP to Twitter necessite WordPress 3.0.6 ou une version plus récente <a href=\"http://codex.wordpress.org/Upgrading_WordPress\"> S'il vous plaît mettez à jour WordPress pour continuer à utiliser WP to Twitter avec toutes ses fonctionnalités ! </a>"
|
80 |
+
|
81 |
+
#: wp-to-twitter.php:285
|
82 |
+
msgid "This tweet was blank and could not be sent to Twitter."
|
83 |
+
msgstr "Ce tweet est vide et ne peux pas être envoyé sur Twitter."
|
84 |
+
|
85 |
+
#: wp-to-twitter.php:336
|
86 |
+
msgid "404 Not Found: The URI requested is invalid or the resource requested does not exist."
|
87 |
+
msgstr "404 Non trouvé : L'URL demandée est invalide ou à la ressource demandée n'existe pas."
|
88 |
+
|
89 |
+
#: wp-to-twitter.php:340
|
90 |
+
msgid "406 Not Acceptable: Invalid Format Specified."
|
91 |
+
msgstr "406 Non Acceptable : Format spécifié invalide."
|
92 |
+
|
93 |
+
#: wp-to-twitter.php:344
|
94 |
+
msgid "429 Too Many Requests: You have exceeded your rate limits."
|
95 |
+
msgstr "429 Trop de requêtes : Vous avez dépassé vos limites."
|
96 |
+
|
97 |
+
#: wp-to-twitter.php:360
|
98 |
+
msgid "504 Gateway Timeout: The Twitter servers are up, but the request couldn't be serviced due to some failure within our stack. Try again later."
|
99 |
+
msgstr "504 Gateway Timeout : Les serveurs de Twitter fonctionnent, mais la demande n'a pas pu être éxécuté en raison d'une défaillance au sein de notre file d'attente. Réessayez plus tard."
|
100 |
+
|
101 |
+
#: wp-to-twitter.php:1162
|
102 |
+
msgid "Your prepended Tweet text; not part of your template."
|
103 |
+
msgstr "Votre texte de Tweet préfixé; ne fait pas partie de votre modèle."
|
104 |
+
|
105 |
+
#: wp-to-twitter.php:1165
|
106 |
+
msgid "Your appended Tweet text; not part of your template."
|
107 |
+
msgstr "Votre texte de Tweet annexé; ne fait pas partie de votre modèle."
|
108 |
+
|
109 |
+
#: wp-to-twitter.php:1219
|
110 |
+
msgid "Tweets are no more than 140 characters; Twitter counts URLs as 20 characters. Template tags: <code>#url#</code>, <code>#title#</code>, <code>#post#</code>, <code>#category#</code>, <code>#date#</code>, <code>#modified#</code>, <code>#author#</code>, <code>#account#</code>, <code>#tags#</code>, or <code>#blog#</code>."
|
111 |
+
msgstr "Les messages Twitter font un maximum de 140 caractères; l'url Twitter compte pour 20 caractères. Balises de modèle : <code>#url#</code>, <code>#title#</code>, <code>#post#</code>, <code>#category#</code>, <code>#date#</code>, <code>#modified#</code>, <code>#author#</code>, <code>#account#</code>, <code>#tags#</code>, ou <code>#blog#</code>."
|
112 |
+
|
113 |
+
#: wp-to-twitter.php:1231
|
114 |
+
msgid "Your role does not have the ability to Post Tweets from this site."
|
115 |
+
msgstr "Votre rôle n'a pas la capacité de publier des Tweets à partir de ce site."
|
116 |
+
|
117 |
+
#: wp-to-twitter.php:1355
|
118 |
+
msgid "Hide account name in Tweets"
|
119 |
+
msgstr "Cacher le nom du compte dans les Tweets"
|
120 |
+
|
121 |
+
#: wp-to-twitter.php:1356
|
122 |
+
msgid "Do not display my account in the #account# template tag."
|
123 |
+
msgstr "Ne pas afficher mon compte dans la balise de modèle #account#."
|
124 |
+
|
125 |
+
#: functions.php:354
|
126 |
+
msgid "I have read <a href=\"%1$s\">the FAQ for this plug-in</a> <span>(required)</span>"
|
127 |
+
msgstr "J'ai lu <a href=\"%1$s\">la FAQ de l'extension</a> <span>(obligatoire)</span>"
|
128 |
+
|
129 |
+
#: functions.php:357
|
130 |
+
msgid "I have <a href=\"%1$s\">made a donation to help support this plug-in</a>"
|
131 |
+
msgstr "J'ai <a href=\"%1$s\">fait un don pour supporter cette extension</a>"
|
132 |
+
|
133 |
+
#: functions.php:360
|
134 |
+
msgid "Support Request:"
|
135 |
+
msgstr "Demande de soutien :"
|
136 |
+
|
137 |
+
#: wp-to-twitter-manager.php:571
|
138 |
+
msgid "Settings for type \"%1$s\""
|
139 |
+
msgstr "Réglages pour le type \"%1$s\""
|
140 |
+
|
141 |
+
#: wp-to-twitter-manager.php:574
|
142 |
+
msgid "Update when %1$s %2$s is published"
|
143 |
+
msgstr "Mettre à jour quand %1$s %2$s est publié"
|
144 |
+
|
145 |
+
#: wp-to-twitter-manager.php:574
|
146 |
+
msgid "Text for new %1$s updates"
|
147 |
+
msgstr "Texte pour une nouvelle mise à jour de %1$s"
|
148 |
+
|
149 |
+
#: wp-to-twitter-manager.php:578
|
150 |
+
msgid "Update when %1$s %2$s is edited"
|
151 |
+
msgstr "Mettre à jour quand %1$s %2$s est modifié"
|
152 |
+
|
153 |
+
#: wp-to-twitter-manager.php:578
|
154 |
+
msgid "Text for %1$s editing updates"
|
155 |
+
msgstr "Texte pour une nouvelle mise à jour de %1$s"
|
156 |
+
|
157 |
+
#: wp-to-twitter-oauth.php:190
|
158 |
+
msgid "Your server timezone (should be UTC,GMT,Europe/London or equivalent):"
|
159 |
+
msgstr "Votre fuseau horaire du serveur (devrait être UTC, GMT, Europe/Londres ou équivalent) :"
|
160 |
+
|
161 |
+
#: wp-to-twitter-manager.php:553
|
162 |
+
msgid "Use Twitter Friendly Links."
|
163 |
+
msgstr "Utiliser les Liens Twitter Amicaux."
|
164 |
+
|
165 |
+
#: wp-to-twitter-manager.php:650
|
166 |
+
msgid "View your Bit.ly username and API key"
|
167 |
+
msgstr "Voir votre nom d'utilisateur Bit.ly and la clef API"
|
168 |
+
|
169 |
+
#: wp-to-twitter-manager.php:694
|
170 |
+
msgid "Your shortener does not require any account settings."
|
171 |
+
msgstr "Votre raccourcisseur ne nécessite pas de paramètres de compte."
|
172 |
+
|
173 |
+
#: wp-to-twitter.php:314
|
174 |
+
msgid "Your Twitter application does not have read and write permissions. Go to <a href=\"%s\">your Twitter apps</a> to modify these settings."
|
175 |
+
msgstr "Votre application Twitter n'a pas les droits en lecture et en écriture. Aller à la <a href=\"%s\"> votre application Twitter </a> pour modifier ces paramètres."
|
176 |
+
|
177 |
+
#: wp-to-twitter.php:1135
|
178 |
+
msgid "Failed Tweets"
|
179 |
+
msgstr "Tweets raté"
|
180 |
+
|
181 |
+
#: wp-to-twitter.php:1150
|
182 |
+
msgid "No failed tweets on this post."
|
183 |
+
msgstr "Pas de tweet raté sur cette article."
|
184 |
+
|
185 |
+
#: wp-to-twitter-manager.php:957
|
186 |
+
msgid "Upgrade to <strong>WP Tweets PRO</strong> for more options!"
|
187 |
+
msgstr "Mettre à jour vers <strong>WP Tweets PRO</strong> pour plus d'options !"
|
188 |
+
|
189 |
+
#: wp-to-twitter-manager.php:987
|
190 |
+
msgid "<code>#reference#</code>: Used only in co-tweeting. @reference to main account when posted to author account, @reference to author account in post to main account."
|
191 |
+
msgstr "<code>#reference#</code> : utilisé uniquement en co-tweeting. référence@ au compte principal lorsque publié pour compte d'auteur, référence@ au compte de l'auteur lorsque publié pour le compte principal."
|
192 |
+
|
193 |
+
#: wp-to-twitter-oauth.php:165
|
194 |
+
msgid "Connection Problems? Try <a href='#wpt_http'>switching to <code>http</code> queries</a>.<br />"
|
195 |
+
msgstr "Problèmes de connexion ? Essayer <a href='#wpt_http'>de passer en requète <code>http</code></a>.<br />"
|
196 |
+
|
197 |
+
#: wp-to-twitter-oauth.php:259
|
198 |
+
msgid "WP to Twitter could not contact Twitter's remote server. Here is the error triggered: "
|
199 |
+
msgstr "WP to Twitter n'a pas pu contacter le serveur distant de Twitter. Voici l'erreur trouvée :"
|
200 |
+
|
201 |
+
#: wp-to-twitter.php:271
|
202 |
+
msgid "This account is not authorized to post to Twitter."
|
203 |
+
msgstr "Ce compte n'est pas autorisé à publier sur Twitter."
|
204 |
+
|
205 |
+
#: wp-to-twitter.php:279
|
206 |
+
msgid "This tweet is identical to another Tweet recently sent to this account."
|
207 |
+
msgstr "Ce tweeter est identique à un autre Tweet récemment envoyé à ce compte."
|
208 |
+
|
209 |
+
#: wp-to-twitter.php:1154
|
210 |
+
msgid "WP to Twitter can do more for you! Take a look at WP Tweets Pro!"
|
211 |
+
msgstr "WP to Twitter peut faire plus pour vous ! Jetez un oeil à WP Tweets Pro !"
|
212 |
+
|
213 |
+
#: wp-to-twitter-manager.php:618
|
214 |
+
msgid "(optional)"
|
215 |
+
msgstr "(optionnel)"
|
216 |
+
|
217 |
+
#: wp-to-twitter-manager.php:771
|
218 |
+
msgid "Do not post Tweets by default (editing only)"
|
219 |
+
msgstr "Ne pas publier de Tweets par défaut (modification uniquement)"
|
220 |
+
|
221 |
+
#: wp-to-twitter-manager.php:980
|
222 |
+
msgid "<code>#modified#</code>: the post modified date"
|
223 |
+
msgstr "<code>#modified#</code> : la date de modification de l'article."
|
224 |
+
|
225 |
+
#: wp-to-twitter-oauth.php:257
|
226 |
+
msgid "Your time stamps are more than 5 minutes apart. Your server could lose its connection with Twitter."
|
227 |
+
msgstr "Vos horodatages ont plus de 5 minutes d'intervalle. Votre serveur peut perdre sa connexion avec Twitter."
|
228 |
+
|
229 |
+
#: wp-to-twitter-manager.php:815
|
230 |
+
msgid "Individual Authors"
|
231 |
+
msgstr "Auteurs individuels"
|
232 |
+
|
233 |
+
#: wp-to-twitter-manager.php:818
|
234 |
+
msgid "Authors have individual Twitter accounts"
|
235 |
+
msgstr "Auteurs avec compte Twitter personnel"
|
236 |
+
|
237 |
+
#: wp-to-twitter-manager.php:818
|
238 |
+
msgid "Authors can add their username in their user profile. This feature can only add an @reference to the author. The @reference is placed using the <code>#account#</code> shortcode, which will pick up the main account if user accounts are not enabled."
|
239 |
+
msgstr "Les auteurs peuvent ajouter leur nom d'utilisateur dans leur profil utilisateur. Cette fonction ne peut ajouter une référence@ à l'auteur. La référence@ est placé en utilisant le raccourci <code>#account#</code>, qui reprendra le compte principal, si les comptes d'utilisateurs ne sont pas activés."
|
240 |
+
|
241 |
+
#: wp-to-twitter-manager.php:856
|
242 |
+
msgid "Disable Error Messages"
|
243 |
+
msgstr "Désactiver les messages d'erreurs"
|
244 |
+
|
245 |
+
#: wp-to-twitter-manager.php:858
|
246 |
+
msgid "Disable global URL shortener error messages."
|
247 |
+
msgstr "Désactiver l'ensemble des messages d'erreurs de réduction d'URL."
|
248 |
+
|
249 |
+
#: wp-to-twitter-manager.php:859
|
250 |
+
msgid "Disable global Twitter API error messages."
|
251 |
+
msgstr "Désactiver l'ensemble des messages d'erreurs d'API sur Twitter."
|
252 |
+
|
253 |
+
#: wp-to-twitter-manager.php:860
|
254 |
+
msgid "Disable notification to implement OAuth"
|
255 |
+
msgstr "Désactiver la notification d'implementation d'OAuth"
|
256 |
+
|
257 |
+
#: wp-to-twitter-manager.php:862
|
258 |
+
msgid "Get Debugging Data for OAuth Connection"
|
259 |
+
msgstr "Obtenir le débogage des données pour la connexion OAuth"
|
260 |
+
|
261 |
+
#: wp-to-twitter-manager.php:864
|
262 |
+
msgid "Switch to <code>http</code> connection. (Default is https)"
|
263 |
+
msgstr "Passer en connexion<code>http </code>. (La valeur par défaut est https)"
|
264 |
+
|
265 |
+
#: wp-to-twitter-manager.php:866
|
266 |
+
msgid "I made a donation, so stop whinging at me, please."
|
267 |
+
msgstr "J'ai fait un don, vous pouvez arrêter de me demander maintenant, s'il vous plaît."
|
268 |
+
|
269 |
+
#: wp-to-twitter-manager.php:880
|
270 |
+
msgid "Limit Updating Categories"
|
271 |
+
msgstr "Limitation des catégories mises à jour"
|
272 |
+
|
273 |
+
#: wp-to-twitter-manager.php:883
|
274 |
+
msgid "If no categories are checked, limiting by category will be ignored, and all categories will be Tweeted."
|
275 |
+
msgstr "Si aucune catégorie n'est cochée, la limitation par catégorie sera ignorée, et toutes les catégories seront tweetées."
|
276 |
+
|
277 |
+
#: wp-to-twitter-manager.php:884
|
278 |
+
msgid "<em>Category limits are disabled.</em>"
|
279 |
+
msgstr " <em>Les limitations de catégories sont désactivées.</em>"
|
280 |
+
|
281 |
+
#: wp-to-twitter-manager.php:893
|
282 |
+
msgid "Get Plug-in Support"
|
283 |
+
msgstr "Besoin d'aide ?"
|
284 |
+
|
285 |
+
#: wp-to-twitter-manager.php:904
|
286 |
+
msgid "Check Support"
|
287 |
+
msgstr "Support de vérification"
|
288 |
+
|
289 |
+
#: wp-to-twitter-manager.php:904
|
290 |
+
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."
|
291 |
+
msgstr "Vérifiez que votre serveur supporte les demandes de <a href=\"http://www.joedolson.com/articles/wp-to-twitter/\">l'extension WP to Twitter</a> vers Twitter et les API de réduction d'URL. Une mise à jour de statut sera envoyée à Twitter ainsi qu'une réduction d'URL réalisée en utilisant les méthodes que vous aurez choisies."
|
292 |
+
|
293 |
+
#: wp-to-twitter-manager.php:922
|
294 |
+
msgid "Support WP to Twitter"
|
295 |
+
msgstr "Soutenir WP to Twitter"
|
296 |
+
|
297 |
+
#: wp-to-twitter-manager.php:924
|
298 |
+
msgid "WP to Twitter Support"
|
299 |
+
msgstr "Soutenir WP to Twitter"
|
300 |
+
|
301 |
+
#: wp-to-twitter-manager.php:932
|
302 |
+
msgid "View Settings"
|
303 |
+
msgstr "Afficher les réglages"
|
304 |
+
|
305 |
+
#: wp-to-twitter-manager.php:934 wp-to-twitter.php:1224 wp-to-twitter.php:1226
|
306 |
+
msgid "Get Support"
|
307 |
+
msgstr "Obtenir de l'aide"
|
308 |
+
|
309 |
+
#: wp-to-twitter-manager.php:938
|
310 |
+
msgid "<a href=\"http://www.joedolson.com/donate.php\">Make a donation today!</a> Every donation counts - donate $2, $10, or $100 and help me keep this plug-in running!"
|
311 |
+
msgstr "<a href=\"http://www.joedolson.com/donate.php\">Faites un don aujourd'hui !</a> Tous les dons comptent - donner $2, $10, or $100 et aider moi à garder cette extension au top !"
|
312 |
+
|
313 |
+
#: wp-to-twitter-manager.php:955
|
314 |
+
msgid "Upgrade Now!"
|
315 |
+
msgstr "Mettre à jour maintenant !"
|
316 |
+
|
317 |
+
#: wp-to-twitter-manager.php:958
|
318 |
+
msgid "Extra features with the PRO upgrade:"
|
319 |
+
msgstr "Les fonctionnalités supplémentaires avec la version PRO :"
|
320 |
+
|
321 |
+
#: wp-to-twitter-manager.php:960
|
322 |
+
msgid "Users can post to their own Twitter accounts"
|
323 |
+
msgstr "Les utilisateurs peuvent publier sur leurs propres comptes Twitter"
|
324 |
+
|
325 |
+
#: wp-to-twitter-manager.php:961
|
326 |
+
msgid "Set a timer to send your Tweet minutes or hours after you publish the post"
|
327 |
+
msgstr "Réglez une minuterie pour envoyer vos Tweets à un moment différents de l'heure de publication de l'article"
|
328 |
+
|
329 |
+
#: wp-to-twitter-manager.php:962
|
330 |
+
msgid "Automatically re-send Tweets at an assigned time after publishing"
|
331 |
+
msgstr "Automatiquement ré-envoyer les tweets à un temps imparti après la publication"
|
332 |
+
|
333 |
+
#: wp-to-twitter-manager.php:971
|
334 |
+
msgid "Shortcodes"
|
335 |
+
msgstr "Raccourcis"
|
336 |
+
|
337 |
+
#: wp-to-twitter-manager.php:973
|
338 |
+
msgid "Available in post update templates:"
|
339 |
+
msgstr "Raccourcis disponibles dans les modèles de mises à jour d'article :"
|
340 |
+
|
341 |
+
#: wp-to-twitter-manager.php:975
|
342 |
+
msgid "<code>#title#</code>: the title of your blog post"
|
343 |
+
msgstr "<code>#title#</code> : le titre de votre article"
|
344 |
+
|
345 |
+
#: wp-to-twitter-manager.php:976
|
346 |
+
msgid "<code>#blog#</code>: the title of your blog"
|
347 |
+
msgstr "<code>#blog#</code> : titre de votre blog"
|
348 |
+
|
349 |
+
#: wp-to-twitter-manager.php:977
|
350 |
+
msgid "<code>#post#</code>: a short excerpt of the post content"
|
351 |
+
msgstr "<code>#post#</code> : un court extrait du contenu de l'article"
|
352 |
+
|
353 |
+
#: wp-to-twitter-manager.php:978
|
354 |
+
msgid "<code>#category#</code>: the first selected category for the post"
|
355 |
+
msgstr "<code>#category#</code>: la première catégorie sélectionnée pour l'article"
|
356 |
+
|
357 |
+
#: wp-to-twitter-manager.php:979
|
358 |
+
msgid "<code>#date#</code>: the post date"
|
359 |
+
msgstr "<code>#date#</code> : la date de l'article"
|
360 |
+
|
361 |
+
#: wp-to-twitter-manager.php:981
|
362 |
+
msgid "<code>#url#</code>: the post URL"
|
363 |
+
msgstr "<code>#url#</code> : l'URL de l'article"
|
364 |
+
|
365 |
+
#: wp-to-twitter-manager.php:984
|
366 |
+
msgid "<code>#account#</code>: the twitter @reference for the account (or the author, if author settings are enabled and set.)"
|
367 |
+
msgstr "<code>#account#</code> : la référence twitter @ pour le compte (ou l'auteur, si les paramètres d'auteur sont activés et réglés.)"
|
368 |
+
|
369 |
+
#: wp-to-twitter-manager.php:985
|
370 |
+
msgid "<code>#tags#</code>: your tags modified into hashtags. See options in the Advanced Settings section, below."
|
371 |
+
msgstr "<code>#tags#</code>: vos mots-clefs changés en hashtags. Voir les options dans la section Réglages avancés, ci-dessous."
|
372 |
+
|
373 |
+
#: wp-to-twitter-manager.php:990
|
374 |
+
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>"
|
375 |
+
msgstr "Vous pouvez également créer des raccourcis personnalisés afin d'accéder aux champs personnalisés de WordPress. Utiliser les doubles crochets pour encadrer le nom de votre champ personnalisé afin d'ajouter la valeur de ce champ à la mise à jour de votre statut. Exemple : <code>[[champ_personnalisé]]</code></p>"
|
376 |
+
|
377 |
+
#: wp-to-twitter-oauth.php:96
|
378 |
+
msgid "WP to Twitter was unable to establish a connection to Twitter."
|
379 |
+
msgstr "WP to Twitter est incapable d'établir la connexion avec Twitter."
|
380 |
+
|
381 |
+
#: wp-to-twitter-oauth.php:166
|
382 |
+
msgid "There was an error querying Twitter's servers"
|
383 |
+
msgstr "Il y a eu une erreur en interrogeant les serveurs de Twitter"
|
384 |
+
|
385 |
+
#: wp-to-twitter-oauth.php:182 wp-to-twitter-oauth.php:184
|
386 |
+
msgid "Connect to Twitter"
|
387 |
+
msgstr "Connectez-vous à Twitter"
|
388 |
+
|
389 |
+
#: wp-to-twitter-oauth.php:187
|
390 |
+
msgid "WP to Twitter Set-up"
|
391 |
+
msgstr "Configuration de WP to Twitter"
|
392 |
+
|
393 |
+
#: wp-to-twitter-oauth.php:188 wp-to-twitter-oauth.php:281
|
394 |
+
msgid "Your server time:"
|
395 |
+
msgstr "Heure de votre serveur : "
|
396 |
+
|
397 |
+
#: wp-to-twitter-oauth.php:188
|
398 |
+
msgid "Twitter's time:"
|
399 |
+
msgstr "Heure Twitter :"
|
400 |
+
|
401 |
+
#: wp-to-twitter-oauth.php:188
|
402 |
+
msgid "If these timestamps are not within 5 minutes of each other, your server will not connect to Twitter."
|
403 |
+
msgstr "Si ces horodatages ne sont pas séparés de moins de 5 minutes l'un de l'autre, votre serveur ne se connectera pas à Twitter."
|
404 |
+
|
405 |
+
#: wp-to-twitter-oauth.php:192
|
406 |
+
msgid "<em>Note</em>: you will not add your Twitter user information to WP to Twitter; it is not used in this authentication method."
|
407 |
+
msgstr "<em>Remarque </em>: vous n'ajouterez pas vos informations d'utilisateur Twitter à WP to Twitter, elles ne sont pas utilisées dans cette méthode d'authentification."
|
408 |
+
|
409 |
+
#: wp-to-twitter-oauth.php:196
|
410 |
+
msgid "1. Register this site as an application on "
|
411 |
+
msgstr "1. Enregistrer ce site comme une application sur "
|
412 |
+
|
413 |
+
#: wp-to-twitter-oauth.php:196
|
414 |
+
msgid "Twitter's application registration page"
|
415 |
+
msgstr "la page Twitter d'enregistrement d'application"
|
416 |
+
|
417 |
+
#: wp-to-twitter-oauth.php:198
|
418 |
+
msgid "If you're not currently logged in to Twitter, log-in to the account you want associated with this site"
|
419 |
+
msgstr "Si vous n'êtes pas actuellement connecté à Twitter, connectez-vous au compte que vous souhaitez associer à ce site"
|
420 |
+
|
421 |
+
#: wp-to-twitter-oauth.php:199
|
422 |
+
msgid "Your Application's Name will show up after \"via\" in your twitter stream. Your application name cannot include the word \"Twitter.\""
|
423 |
+
msgstr "Le nom de votre application sera affiché après \"via \" dans votre flux twitter. Votre nom d'application ne peut pas inclure le mot \"Twitter.\""
|
424 |
+
|
425 |
+
#: wp-to-twitter-oauth.php:200
|
426 |
+
msgid "Your Application Description can be anything."
|
427 |
+
msgstr "La description de votre application peut être n'importe quoi"
|
428 |
+
|
429 |
+
#: wp-to-twitter-oauth.php:201
|
430 |
+
msgid "The WebSite and Callback URL should be "
|
431 |
+
msgstr "L'URL du site et de callback doit être "
|
432 |
+
|
433 |
+
#: wp-to-twitter-oauth.php:203
|
434 |
+
msgid "Agree to the Developer Rules of the Road and continue."
|
435 |
+
msgstr "Accepter 'the Developper Rules of the Road' et continuer."
|
436 |
+
|
437 |
+
#: wp-to-twitter-oauth.php:204
|
438 |
+
msgid "2. Switch to the \"Settings\" tab in Twitter apps"
|
439 |
+
msgstr "2. Passez dans l'onglet \"Settings\" de l'application Twitter"
|
440 |
+
|
441 |
+
#: wp-to-twitter-oauth.php:206
|
442 |
+
msgid "Select \"Read and Write\" for the Application Type"
|
443 |
+
msgstr "Sélectionnez \"Read and Write\" pour le type d'application"
|
444 |
+
|
445 |
+
#: wp-to-twitter-oauth.php:207
|
446 |
+
msgid "Update the application settings"
|
447 |
+
msgstr "Mettez à jour les réglages de l'application"
|
448 |
+
|
449 |
+
#: wp-to-twitter-oauth.php:208
|
450 |
+
msgid "Return to the Details tab and create your access token. Refresh page to view your access tokens."
|
451 |
+
msgstr "Revenez à l'onglet Détails et créez votre jeton d'accès. Actualiser la page pour voir vos jetons d'accès."
|
452 |
+
|
453 |
+
#: wp-to-twitter-oauth.php:210
|
454 |
+
msgid "Once you have registered your site as an application, you will be provided with four keys."
|
455 |
+
msgstr "Une fois que vous avez enregistré votre site en tant qu'application, il vous sera fourni quatre clefs."
|
456 |
+
|
457 |
+
#: wp-to-twitter-oauth.php:211
|
458 |
+
msgid "3. Copy and paste your consumer key and consumer secret into the fields below"
|
459 |
+
msgstr "3. Copiez et collez votre clef (consumer key) et votre clef secrète (consumer secret) dans les champs ci-dessous"
|
460 |
+
|
461 |
+
#: wp-to-twitter-oauth.php:214
|
462 |
+
msgid "Twitter Consumer Key"
|
463 |
+
msgstr "Twitter Consumer Key"
|
464 |
+
|
465 |
+
#: wp-to-twitter-oauth.php:218
|
466 |
+
msgid "Twitter Consumer Secret"
|
467 |
+
msgstr "Twitter Consumer Secret"
|
468 |
+
|
469 |
+
#: wp-to-twitter-oauth.php:222
|
470 |
+
msgid "4. Copy and paste your Access Token and Access Token Secret into the fields below"
|
471 |
+
msgstr "4. Copiez et collez votre jeton d'accès et votre jeton d'accès secret (Token and Access Token Secret ) dans les champs ci-dessous"
|
472 |
+
|
473 |
+
#: wp-to-twitter-oauth.php:223
|
474 |
+
msgid "If the Access level for your Access Token is not \"<em>Read and write</em>\", you must return to step 2 and generate a new Access Token."
|
475 |
+
msgstr "Si le niveau d'accès pour votre jeton d'accès (Access Token) n'est pas \"<em>Read and write</em>\", vous devez retourner à l'étape 2 et générer un nouveau jeton d'accès"
|
476 |
+
|
477 |
+
#: wp-to-twitter-oauth.php:226
|
478 |
+
msgid "Access Token"
|
479 |
+
msgstr "Access Token"
|
480 |
+
|
481 |
+
#: wp-to-twitter-oauth.php:230
|
482 |
+
msgid "Access Token Secret"
|
483 |
+
msgstr "Access Token Secret"
|
484 |
+
|
485 |
+
#: wp-to-twitter-oauth.php:249
|
486 |
+
msgid "Disconnect Your WordPress and Twitter Account"
|
487 |
+
msgstr "Déconnecter votre WordPress de votre compte Twitter"
|
488 |
+
|
489 |
+
#: wp-to-twitter-oauth.php:253
|
490 |
+
msgid "Disconnect your WordPress and Twitter Account"
|
491 |
+
msgstr "Déconnecter votre WordPress de votre compte Twitter"
|
492 |
+
|
493 |
+
#: wp-to-twitter-oauth.php:255
|
494 |
+
msgid "<strong>Troubleshooting tip:</strong> Connected, but getting a notice that your Authentication credentials are missing or incorrect? Check whether your Access token has read and write permission. If not, you'll need to create a new token."
|
495 |
+
msgstr "<strong>Astuce de Dépannage : </strong> Connecté, mais recevant un avis que vos informations d'authentification sont manquantes ou incorrectes? Vérifiez si votre jeton d'accès a la permission de lecture et d'écriture. Si non, vous aurez besoin pour créer un nouveau jeton."
|
496 |
+
|
497 |
+
#: wp-to-twitter-oauth.php:263
|
498 |
+
msgid "Disconnect from Twitter"
|
499 |
+
msgstr "Vous deconnectez de Twitter"
|
500 |
+
|
501 |
+
#: wp-to-twitter-oauth.php:269
|
502 |
+
msgid "Twitter Username "
|
503 |
+
msgstr "Nom d'utilisateur Twitter"
|
504 |
+
|
505 |
+
#: wp-to-twitter-oauth.php:270
|
506 |
+
msgid "Consumer Key "
|
507 |
+
msgstr "Consumer Key "
|
508 |
+
|
509 |
+
#: wp-to-twitter-oauth.php:271
|
510 |
+
msgid "Consumer Secret "
|
511 |
+
msgstr "Secret d'utilisateur"
|
512 |
+
|
513 |
+
#: wp-to-twitter-oauth.php:272
|
514 |
+
msgid "Access Token "
|
515 |
+
msgstr "Access Token "
|
516 |
+
|
517 |
+
#: wp-to-twitter-oauth.php:273
|
518 |
+
msgid "Access Token Secret "
|
519 |
+
msgstr "Access Token Secret "
|
520 |
+
|
521 |
+
#: wp-to-twitter-oauth.php:281
|
522 |
+
msgid "Twitter's current server time: "
|
523 |
+
msgstr "Heure actuelle du serveur Twitter :"
|
524 |
+
|
525 |
+
#: wp-to-twitter.php:45
|
526 |
+
msgid "WP to Twitter requires PHP version 5 or above. Please upgrade PHP to run WP to Twitter."
|
527 |
+
msgstr "WP to Twitter requiert la version PHP 5 ou supérieur. S'il vous plaît mettre à jour PHP pour exécuter WP to Twitter."
|
528 |
+
|
529 |
+
#: wp-to-twitter.php:92
|
530 |
+
msgid "Twitter requires authentication by OAuth. You will need to <a href='%s'>update your settings</a> to complete installation of WP to Twitter."
|
531 |
+
msgstr "Twitter requiert une authentification par OAuth. Vous avez besoin de <a href='%s'>mettre à jour</a> vos réglages pour terminer l'installation de WP to Twitter."
|
532 |
+
|
533 |
+
#: wp-to-twitter.php:318
|
534 |
+
msgid "200 OK: Success!"
|
535 |
+
msgstr "200 OK : Succès !"
|
536 |
+
|
537 |
+
#: wp-to-twitter.php:323
|
538 |
+
msgid "400 Bad Request: The request was invalid. This is the status code returned during rate limiting."
|
539 |
+
msgstr "400 Bad Request : La demande n'était pas valide. C'est le code d'état retourné lors de la limitation du débit."
|
540 |
+
|
541 |
+
#: wp-to-twitter.php:327
|
542 |
+
msgid "401 Unauthorized: Authentication credentials were missing or incorrect."
|
543 |
+
msgstr "401 Unauthorized : informations d'authentification sont manquantes ou incorrectes."
|
544 |
+
|
545 |
+
#: wp-to-twitter.php:332
|
546 |
+
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 can include: Too many Tweets created in a short time or the same Tweet was submitted twice in a row, among others. This is not an error by WP to Twitter."
|
547 |
+
msgstr "403 Forbidden : La requète est comprise, mais a été refusée. Ce code est utilisé lorsque les requètes sont comprises, mais sont refusées par Twitter. Ces raisons peuvent inclure : Trop de Tweets créés dans un laps de temps trop court ou le même Tweet a été présenté deux fois de suite, entre autres. Ce n'est pas une erreur de WP to Twitter."
|
548 |
+
|
549 |
+
#: wp-to-twitter.php:348
|
550 |
+
msgid "500 Internal Server Error: Something is broken at Twitter."
|
551 |
+
msgstr "500 Internal Server Error : Quelque chose est cassé chez Twitter."
|
552 |
+
|
553 |
+
#: wp-to-twitter.php:356
|
554 |
+
msgid "503 Service Unavailable: The Twitter servers are up, but overloaded with requests - Please try again later."
|
555 |
+
msgstr "503 Service Unavailable : Les serveurs de Twitter fonctionnent, mais sont surchargés de demandes - Veuillez réessayer plus tard."
|
556 |
+
|
557 |
+
#: wp-to-twitter.php:352
|
558 |
+
msgid "502 Bad Gateway: Twitter is down or being upgraded."
|
559 |
+
msgstr "502 Bad Gateway : Twitter est en panne ou en cours de mis à jour."
|
560 |
+
|
561 |
+
#: wp-to-twitter.php:390
|
562 |
+
msgid "No Twitter OAuth connection found."
|
563 |
+
msgstr "Pas de connexion Twitter OAuth trouvé."
|
564 |
+
|
565 |
+
#: wp-to-twitter.php:1079
|
566 |
+
msgid "WP Tweets"
|
567 |
+
msgstr "WP Tweets"
|
568 |
+
|
569 |
+
#: wp-to-twitter.php:1121
|
570 |
+
msgid "Previous Tweets"
|
571 |
+
msgstr "Tweets précédents"
|
572 |
+
|
573 |
+
#: wp-to-twitter.php:1157
|
574 |
+
msgid "Custom Twitter Post"
|
575 |
+
msgstr "Message personnalisé Twitter"
|
576 |
+
|
577 |
+
#: wp-to-twitter.php:1181
|
578 |
+
msgid "Your template:"
|
579 |
+
msgstr "Votre modèle :"
|
580 |
+
|
581 |
+
#: wp-to-twitter.php:1186
|
582 |
+
msgid "YOURLS Custom Keyword"
|
583 |
+
msgstr "Mot-clef personnalisé de YOURLS"
|
584 |
+
|
585 |
+
#: wp-to-twitter.php:1224
|
586 |
+
msgid "Upgrade to WP Tweets Pro"
|
587 |
+
msgstr "Mise à niveau vers WP Tweets Pro"
|
588 |
+
|
589 |
+
#: wp-to-twitter.php:1198
|
590 |
+
msgid "Don't Tweet this post."
|
591 |
+
msgstr "Ne pas publier cet article sur Twitter."
|
592 |
+
|
593 |
+
#: wp-to-twitter.php:1198
|
594 |
+
msgid "Tweet this post."
|
595 |
+
msgstr "Tweeter cet article."
|
596 |
+
|
597 |
+
#: wp-to-twitter.php:1210
|
598 |
+
msgid "Access to customizing WP to Twitter values is not allowed for your user role."
|
599 |
+
msgstr "L'accès à la personnalisation des valeurs de WP to Twitter n'est pas autorisée pour votre rôle d'utilisateur."
|
600 |
+
|
601 |
+
#: wp-to-twitter.php:1280
|
602 |
+
msgid "Characters left: "
|
603 |
+
msgstr "Caractères restants :"
|
604 |
+
|
605 |
+
#: wp-to-twitter.php:1341
|
606 |
+
msgid "WP Tweets User Settings"
|
607 |
+
msgstr "Réglages de l'utilisateur de WP to Twitter"
|
608 |
+
|
609 |
+
#: wp-to-twitter.php:1345
|
610 |
+
msgid "Use My Twitter Username"
|
611 |
+
msgstr "Utiliser votre nom d'utilisateur Twitter"
|
612 |
+
|
613 |
+
#: wp-to-twitter.php:1346
|
614 |
+
msgid "Tweet my posts with an @ reference to my username."
|
615 |
+
msgstr "Tweeter mes articles avec une référence @ à mon nom d'utilisateur."
|
616 |
+
|
617 |
+
#: wp-to-twitter.php:1347
|
618 |
+
msgid "Tweet my posts with an @ reference to both my username and to the main site username."
|
619 |
+
msgstr "Tweeter mes articles avec une référence @ à la fois à mon nom d'utilisateur et au nom d'utilisateur du site principal."
|
620 |
+
|
621 |
+
#: wp-to-twitter.php:1351
|
622 |
+
msgid "Your Twitter Username"
|
623 |
+
msgstr "Nom d'utilisateur Twitter"
|
624 |
+
|
625 |
+
#: wp-to-twitter.php:1352
|
626 |
+
msgid "Enter your own Twitter username."
|
627 |
+
msgstr "Saisissez votre nom d'utilisateur Twitter."
|
628 |
+
|
629 |
+
#: wp-to-twitter.php:1405
|
630 |
+
msgid "Check off categories to tweet"
|
631 |
+
msgstr "Cochez les catégories que vous souhaitez tweeter"
|
632 |
+
|
633 |
+
#: wp-to-twitter.php:1409
|
634 |
+
msgid "Do not tweet posts in checked categories (Reverses default behavior)"
|
635 |
+
msgstr "Ne pas tweeter les articles dans les catégories cochées (Inverse le comportement par défaut)"
|
636 |
+
|
637 |
+
#: wp-to-twitter.php:1426
|
638 |
+
msgid "Limits are exclusive. If a post is in one category which should be posted and one category that should not, it will not be posted."
|
639 |
+
msgstr "Les limitations sont exclusives. Si un article est dans une catégorie qui devrait être affichée et une catégorie qui ne devrait pas, il ne sera pas affiché."
|
640 |
+
|
641 |
+
#: wp-to-twitter.php:1429
|
642 |
+
msgid "Set Categories"
|
643 |
+
msgstr "Configurer les catégories"
|
644 |
+
|
645 |
+
#: wp-to-twitter.php:1451
|
646 |
+
msgid "Settings"
|
647 |
+
msgstr "Réglages"
|
648 |
+
|
649 |
+
#: wp-to-twitter.php:1486
|
650 |
+
msgid "<br /><strong>Note:</strong> Please review the <a class=\"thickbox\" href=\"%1$s\">changelog</a> before upgrading."
|
651 |
+
msgstr "<br /><strong>Remarque :</strong> S'il vous plaît examiner le <a class=\"thickbox\" href=\"%1$s\">changelog</a> avant de faire la mise à jour."
|
652 |
+
|
653 |
+
msgid "WP to Twitter"
|
654 |
+
msgstr "Plugin WP to Twitter"
|
655 |
+
|
656 |
+
msgid "http://www.joedolson.com/articles/wp-to-twitter/"
|
657 |
+
msgstr "http://www.joedolson.com/articles/wp-to-twitter/"
|
658 |
+
|
659 |
+
msgid "Posts a Tweet 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."
|
660 |
+
msgstr "Publier un Tweet lorsque vous mettez à jour votre blog WordPress ou publiez sur votre blogroll, à l'aide de votre service de raccourcissement d'URL choisie. Riche en fonctionnalités pour la personnalisation et la promotion de vos tweets."
|
661 |
+
|
662 |
+
msgid "Joseph Dolson"
|
663 |
+
msgstr "Joseph Dolson"
|
664 |
+
|
665 |
+
msgid "http://www.joedolson.com/"
|
666 |
+
msgstr "http://www.joedolson.com/"
|
667 |
+
|
668 |
+
#: functions.php:319
|
669 |
+
msgid "Please read the FAQ and other Help documents before making a support request."
|
670 |
+
msgstr "S'il vous plaît lire la FAQ et les autres documents de l'aide avant de faire une demande de soutien."
|
671 |
+
|
672 |
+
#: functions.php:201
|
673 |
+
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."
|
674 |
+
msgstr "[<a href='options-general.php?page=wp-to-twitter/wp-to-twitter.php'>Masquer</a>] Si vous rencontrez des problèmes, merci de copier ces réglages dans le formulaire de soutien."
|
675 |
+
|
676 |
+
#: functions.php:341
|
677 |
+
msgid "Please include your license key in your support request."
|
678 |
+
msgstr "S'il vous plaît inclure votre clé de licence dans votre demande de soutien."
|
679 |
+
|
680 |
+
#: functions.php:321
|
681 |
+
msgid "Please describe your problem. I'm not psychic."
|
682 |
+
msgstr "S'il vous plaît décrire votre problème. Je ne suis pas mentaliste."
|
683 |
+
|
684 |
+
#: functions.php:346
|
685 |
+
msgid "<strong>Please note</strong>: I do keep records of those who have donated, but if your donation came from somebody other than your account at this web site, you must note this in your message."
|
686 |
+
msgstr "<strong> S'il vous plaît noter </strong>: je tiens un registre de ceux qui ont donné, mais si votre don est venu de quelqu'un d'autre que de votre compte sur ce site web, vous devez l'indiquer dans votre message."
|
687 |
+
|
688 |
+
#: functions.php:363
|
689 |
+
msgid "Send Support Request"
|
690 |
+
msgstr "Envoyer la demande de soutien"
|
691 |
+
|
692 |
+
#: functions.php:366
|
693 |
+
msgid "The following additional information will be sent with your support request:"
|
694 |
+
msgstr "Les informations supplémentaires suivantes seront envoyées avec votre demande de soutien :"
|
695 |
+
|
696 |
+
#: wp-to-twitter-manager.php:40
|
697 |
+
msgid "No error information is available for your shortener."
|
698 |
+
msgstr "Aucune information d'erreur est disponible pour votre raccourcisseur."
|
699 |
+
|
700 |
+
#: wp-to-twitter-manager.php:42
|
701 |
+
msgid "<li class=\"error\"><strong>WP to Twitter was unable to contact your selected URL shortening service.</strong></li>"
|
702 |
+
msgstr "<li class=\"error\"><strong>L'extension WP to Twitter n'a pas réussi à se connecter au service de réduction d'URL que vous avez choisi.</strong></li>"
|
703 |
+
|
704 |
+
#: wp-to-twitter-manager.php:45
|
705 |
+
msgid "<li><strong>WP to Twitter successfully contacted your selected URL shortening service.</strong> The following link should point to your blog homepage:"
|
706 |
+
msgstr "<li><strong>L'extension WP to Twitter s'est connecté avec succés au service de réduction d'URL que vous avez choisi.</strong> Le lien suivant doit renvoyer à la page d'accueil de votre blog :"
|
707 |
+
|
708 |
+
#: wp-to-twitter-manager.php:53
|
709 |
+
msgid "<li><strong>WP to Twitter successfully submitted a status update to Twitter.</strong></li>"
|
710 |
+
msgstr "<li><strong>WP to Twitter a soumis avec succès une mise à jour de statut sur Twitter.</strong></li>"
|
711 |
+
|
712 |
+
#: wp-to-twitter-manager.php:56
|
713 |
+
msgid "<li class=\"error\"><strong>WP to Twitter failed to submit an update to Twitter.</strong></li>"
|
714 |
+
msgstr "<li class=\"error\"><strong>WP to Twitter n'a pas réussi à soumettre une mise à jour du statut sur Twitter.</strong></li>"
|
715 |
+
|
716 |
+
#: wp-to-twitter-manager.php:60
|
717 |
+
msgid "You have not connected WordPress to Twitter."
|
718 |
+
msgstr "Vous n'avez pas connecter WordPress à Twitter."
|
719 |
+
|
720 |
+
#: wp-to-twitter-manager.php:64
|
721 |
+
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>"
|
722 |
+
msgstr "<li class=\"error\"><strong>Votre serveur ne semble pas supporter les méthodes nécessaires au fonctionnement de Twitter.</strong> Cependant, vous pouvez réessayer car ces tests ne sont pas parfaits.</li>"
|
723 |
+
|
724 |
+
#: wp-to-twitter-manager.php:68
|
725 |
+
msgid "<li><strong>Your server should run WP to Twitter successfully.</strong></li>"
|
726 |
+
msgstr "<li><strong>Votre serveur devrait correctement exécuter l'extension WP to Twitter.</strong></li>"
|
727 |
+
|
728 |
+
#: wp-to-twitter-manager.php:86
|
729 |
+
msgid "WP to Twitter Errors Cleared"
|
730 |
+
msgstr "Erreurs de l'extension WP to Twitter effacées"
|
731 |
+
|
732 |
+
#: wp-to-twitter-manager.php:170
|
733 |
+
msgid "WP to Twitter is now connected with Twitter."
|
734 |
+
msgstr "WP to Twitter est maintenat connecté avec Twitter."
|
735 |
+
|
736 |
+
#: wp-to-twitter-manager.php:184
|
737 |
+
msgid "OAuth Authentication Data Cleared."
|
738 |
+
msgstr "Données d'authentification OAuth éffacées."
|
739 |
+
|
740 |
+
#: wp-to-twitter-manager.php:191
|
741 |
+
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."
|
742 |
+
msgstr "Échec de l'authentification OAuth. L'heure de votre serveur n'est pas synchronisée avec les serveurs de Twitter. Parlez-en à votre service d'hébergement pour voir ce qui peut être fait."
|
743 |
+
|
744 |
+
#: wp-to-twitter-manager.php:198
|
745 |
+
msgid "OAuth Authentication response not understood."
|
746 |
+
msgstr "Réponse d'authentification OAuth non comprise."
|
747 |
+
|
748 |
+
#: wp-to-twitter-manager.php:360
|
749 |
+
msgid "WP to Twitter Advanced Options Updated"
|
750 |
+
msgstr "Options avancées de WP to Twitter mises à jour"
|
751 |
+
|
752 |
+
#: wp-to-twitter-manager.php:382
|
753 |
+
msgid "You must add your Bit.ly login and API key in order to shorten URLs with Bit.ly."
|
754 |
+
msgstr "Vous devez renseigner votre nom d'utilisateur et votre clef API afin de pouvoir réduire des URLs à l'aide de Bit.ly."
|
755 |
+
|
756 |
+
#: wp-to-twitter-manager.php:386
|
757 |
+
msgid "You must add your YOURLS remote URL, login, and password in order to shorten URLs with a remote installation of YOURLS."
|
758 |
+
msgstr "Vous devez ajouter votre URL distante YOURLS, votre nom d'utilisateur et votre mot de passe afin de pouvoir réduire les URL avec une installation distante de YOURLS."
|
759 |
+
|
760 |
+
#: wp-to-twitter-manager.php:390
|
761 |
+
msgid "You must add your YOURLS server path in order to shorten URLs with a remote installation of YOURLS."
|
762 |
+
msgstr "Vous devez ajouter le chemin de votre serveur YOURLS afin de réduire les URL avec une installation distante de YOURLS."
|
763 |
+
|
764 |
+
#: wp-to-twitter-manager.php:393
|
765 |
+
msgid "WP to Twitter Options Updated"
|
766 |
+
msgstr "Options de WP to Twitter mises à jours"
|
767 |
+
|
768 |
+
#: wp-to-twitter-manager.php:402
|
769 |
+
msgid "Category limits updated."
|
770 |
+
msgstr "Limitations de catégories mises à jour."
|
771 |
+
|
772 |
+
#: wp-to-twitter-manager.php:406
|
773 |
+
msgid "Category limits unset."
|
774 |
+
msgstr "Limitations de catégories mises à zéro."
|
775 |
+
|
776 |
+
#: wp-to-twitter-manager.php:413
|
777 |
+
msgid "YOURLS password updated. "
|
778 |
+
msgstr "Mot de passe YOURLS mis à jour."
|
779 |
+
|
780 |
+
#: wp-to-twitter-manager.php:416
|
781 |
+
msgid "YOURLS password deleted. You will be unable to use your remote YOURLS account to create short URLS."
|
782 |
+
msgstr "Mot de passe YOURLS supprimé. Vous ne pourrez plus utiliser votre compte YOURLS distant pour créer vos réductions d'urls."
|
783 |
+
|
784 |
+
#: wp-to-twitter-manager.php:418
|
785 |
+
msgid "Failed to save your YOURLS password! "
|
786 |
+
msgstr "Une erreur est survenue lors de l'enregistrement du mot de passe YOURLS !"
|
787 |
+
|
788 |
+
#: wp-to-twitter-manager.php:422
|
789 |
+
msgid "YOURLS username added. "
|
790 |
+
msgstr "Nom d'utilisateur YOURLS enregistré."
|
791 |
+
|
792 |
+
#: wp-to-twitter-manager.php:426
|
793 |
+
msgid "YOURLS API url added. "
|
794 |
+
msgstr "API-URL YOURLS enregistrée."
|
795 |
+
|
796 |
+
#: wp-to-twitter-manager.php:429
|
797 |
+
msgid "YOURLS API url removed. "
|
798 |
+
msgstr "API-URL YOURLS supprimé."
|
799 |
+
|
800 |
+
#: wp-to-twitter-manager.php:434
|
801 |
+
msgid "YOURLS local server path added. "
|
802 |
+
msgstr "Chemin de serveur local YOURLS enregistré."
|
803 |
+
|
804 |
+
#: wp-to-twitter-manager.php:436
|
805 |
+
msgid "The path to your YOURLS installation is not correct. "
|
806 |
+
msgstr "Le chemin vers l'installation de YOURLS est incorrect."
|
807 |
+
|
808 |
+
#: wp-to-twitter-manager.php:440
|
809 |
+
msgid "YOURLS local server path removed. "
|
810 |
+
msgstr "Chemin de serveur local YOURLS supprimé."
|
811 |
+
|
812 |
+
#: wp-to-twitter-manager.php:445
|
813 |
+
msgid "YOURLS will use Post ID for short URL slug."
|
814 |
+
msgstr "YOURLS utilisera l'identifiant de l'article dans le raccourci de l'URL réduite."
|
815 |
+
|
816 |
+
#: wp-to-twitter-manager.php:447
|
817 |
+
msgid "YOURLS will use your custom keyword for short URL slug."
|
818 |
+
msgstr "YOURLS utilisera votre mot-clef personnalisé pour l'identifiant de URL courte."
|
819 |
+
|
820 |
+
#: wp-to-twitter-manager.php:451
|
821 |
+
msgid "YOURLS will not use Post ID for the short URL slug."
|
822 |
+
msgstr "YOURLS n'utilisera pas l'ID de l'article dans le raccourci de l'URL réduite."
|
823 |
+
|
824 |
+
#: wp-to-twitter-manager.php:459
|
825 |
+
msgid "Su.pr API Key and Username Updated"
|
826 |
+
msgstr "Clef API Su.pr et nom d'utilisateur mis à jour"
|
827 |
+
|
828 |
+
#: wp-to-twitter-manager.php:463
|
829 |
+
msgid "Su.pr API Key and username deleted. Su.pr URLs created by WP to Twitter will no longer be associated with your account. "
|
830 |
+
msgstr "Clef API Su.pr et nom d'utilisateur supprimé. Les URL Su.pr créées par WP to Twitter ne sont plus associées à votre compte."
|
831 |
+
|
832 |
+
#: wp-to-twitter-manager.php:465
|
833 |
+
msgid "Su.pr API Key not added - <a href='http://su.pr/'>get one here</a>! "
|
834 |
+
msgstr "Clef API Su.pr non ajoutée - <a href='http://su.pr/'>Cliquez pour en obtenir une</a>!"
|
835 |
+
|
836 |
+
#: wp-to-twitter-manager.php:471
|
837 |
+
msgid "Bit.ly API Key Updated."
|
838 |
+
msgstr "Clef API Bit.ly mise à jour."
|
839 |
+
|
840 |
+
#: wp-to-twitter-manager.php:474
|
841 |
+
msgid "Bit.ly API Key deleted. You cannot use the Bit.ly API without an API key. "
|
842 |
+
msgstr "Clef API Bit.ly supprimée. Vous ne pouvez pas utiliser Bt.ly si vous ne disposez pas d'une clef API."
|
843 |
+
|
844 |
+
#: wp-to-twitter-manager.php:476
|
845 |
+
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."
|
846 |
+
msgstr "Clef API Bit.ly manquante - <a href='http://bit.ly/account/'>Obtenez-en une</a>! Une clef API est nécessaire à l'utilisation du service de réduction d'URL Bit.ly."
|
847 |
+
|
848 |
+
#: wp-to-twitter-manager.php:480
|
849 |
+
msgid " Bit.ly User Login Updated."
|
850 |
+
msgstr "Nom d'utilisateur Bit.ly mis à jour."
|
851 |
+
|
852 |
+
#: wp-to-twitter-manager.php:483
|
853 |
+
msgid "Bit.ly User Login deleted. You cannot use the Bit.ly API without providing your username. "
|
854 |
+
msgstr "Nom d'utilisateur Bit.ly supprimé. Vous ne pouvez pas utiliser d'API Bit.ly sans préciser votre nom d'utilisateur."
|
855 |
+
|
856 |
+
#: wp-to-twitter-manager.php:485
|
857 |
+
msgid "Bit.ly Login not added - <a href='http://bit.ly/account/'>get one here</a>! "
|
858 |
+
msgstr "Nom d'utilisateur Bit.ly manquant - <a href='http://bit.ly/account/'>Obtenez-en un</a>!"
|
859 |
+
|
860 |
+
#: wp-to-twitter-manager.php:501
|
861 |
+
msgid "<p>One or more of your last posts has failed to send a status update to Twitter. The Tweet has been saved, and you can re-Tweet it at your leisure.</p>"
|
862 |
+
msgstr "<p>Un ou plusieurs de vos derniers articles n'ont pas réussi à envoyer la mise à jour de leur statut à Twitter. Votre tweet a été enregistré dans vos champs personnalisés, vous pouvez le re-tweeter si vous le désirez.</p>"
|
863 |
+
|
864 |
+
#: wp-to-twitter-manager.php:507
|
865 |
+
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. "
|
866 |
+
msgstr "Désolé ! Je n'ai pas réussi à me connecter aux serveurs Twitter afin de poster votre <strong>nouveau lien</strong>! Je crains que vous ne deviez le poster manuellement."
|
867 |
+
|
868 |
+
#: wp-to-twitter-manager.php:510
|
869 |
+
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.</p>"
|
870 |
+
msgstr "<p>Votre demande vers l'API du réducteur d'URL a échoué, votre URL n'a pas été réduite. L'URL complète de l'article a été jointe à votre tweet. Vérifier que votre réducteur d'URL ne rencontre aucun problème connu.</p>"
|
871 |
+
|
872 |
+
#: wp-to-twitter-manager.php:516
|
873 |
+
msgid "Clear 'WP to Twitter' Error Messages"
|
874 |
+
msgstr "Effacer les messages d'erreur \"WP to Twitter\""
|
875 |
+
|
876 |
+
#: wp-to-twitter-manager.php:523
|
877 |
+
msgid "WP to Twitter Options"
|
878 |
+
msgstr "Options WP to Twitter"
|
879 |
+
|
880 |
+
#: wp-to-twitter-manager.php:536
|
881 |
+
msgid "Basic Settings"
|
882 |
+
msgstr "Réglages de bases"
|
883 |
+
|
884 |
+
#: wp-to-twitter-manager.php:542 wp-to-twitter-manager.php:606
|
885 |
+
msgid "Save WP->Twitter Options"
|
886 |
+
msgstr "Enregistrer les options de WP -> Twitter"
|
887 |
+
|
888 |
+
#: wp-to-twitter-manager.php:586
|
889 |
+
msgid "Settings for Comments"
|
890 |
+
msgstr "Réglages des commentaires"
|
891 |
+
|
892 |
+
#: wp-to-twitter-manager.php:589
|
893 |
+
msgid "Update Twitter when new comments are posted"
|
894 |
+
msgstr "Mettre à jour Twitter lorsque de nouveaux commentaires sont publiés"
|
895 |
+
|
896 |
+
#: wp-to-twitter-manager.php:590
|
897 |
+
msgid "Text for new comments:"
|
898 |
+
msgstr "Texte pour les nouveaux commentaires :"
|
899 |
+
|
900 |
+
#: wp-to-twitter-manager.php:595
|
901 |
+
msgid "Settings for Links"
|
902 |
+
msgstr "Réglages des liens."
|
903 |
+
|
904 |
+
#: wp-to-twitter-manager.php:598
|
905 |
+
msgid "Update Twitter when you post a Blogroll link"
|
906 |
+
msgstr "Mettre à jour Twitter lorsque vous publier un lien dans votre Blogroll"
|
907 |
+
|
908 |
+
#: wp-to-twitter-manager.php:599
|
909 |
+
msgid "Text for new link updates:"
|
910 |
+
msgstr "Texte pour l'annonce d'un nouveau lien :"
|
911 |
+
|
912 |
+
#: wp-to-twitter-manager.php:599
|
913 |
+
msgid "Available shortcodes: <code>#url#</code>, <code>#title#</code>, and <code>#description#</code>."
|
914 |
+
msgstr "Raccourcis disponibles : <code>#url#</code>, <code>#title#</code>, et <code>#description#</code>."
|
915 |
+
|
916 |
+
#: wp-to-twitter-manager.php:546
|
917 |
+
msgid "Don't shorten URLs."
|
918 |
+
msgstr "Ne pas réduire les URLs."
|
919 |
+
|
920 |
+
#: wp-to-twitter-manager.php:614
|
921 |
+
msgid "<abbr title=\"Uniform Resource Locator\">URL</abbr> Shortener Account Settings"
|
922 |
+
msgstr "<abbr title=\"Adresse Universelle\">URL</abbr> Réglages du compte raccourcisseur"
|
923 |
+
|
924 |
+
#: wp-to-twitter-manager.php:618
|
925 |
+
msgid "Your Su.pr account details"
|
926 |
+
msgstr "Détails de votre compte Su.pr"
|
927 |
+
|
928 |
+
#: wp-to-twitter-manager.php:622
|
929 |
+
msgid "Your Su.pr Username:"
|
930 |
+
msgstr "Votre identifiant Su.pr :"
|
931 |
+
|
932 |
+
#: wp-to-twitter-manager.php:626
|
933 |
+
msgid "Your Su.pr <abbr title='application programming interface'>API</abbr> Key:"
|
934 |
+
msgstr "Votre clef <abbr title='application programming interface'>API</abbr> Su.pr :"
|
935 |
+
|
936 |
+
#: wp-to-twitter-manager.php:633
|
937 |
+
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."
|
938 |
+
msgstr "Vous n'avez pas de compte ou de clef API Su.pr ? <a href='http://su.pr/'>Obtenez-en une gratuitement </a>!<br /> Vous aurez besoin d'une clef API afin d'associer vos URLs à votre compte Su.pr."
|
939 |
+
|
940 |
+
#: wp-to-twitter-manager.php:639
|
941 |
+
msgid "Your Bit.ly account details"
|
942 |
+
msgstr "Détails de votre compte Bit.ly"
|
943 |
+
|
944 |
+
#: wp-to-twitter-manager.php:643
|
945 |
+
msgid "Your Bit.ly username:"
|
946 |
+
msgstr "Votre nom d'utilisateur Bit.ly :"
|
947 |
+
|
948 |
+
#: wp-to-twitter-manager.php:647
|
949 |
+
msgid "Your Bit.ly <abbr title='application programming interface'>API</abbr> Key:"
|
950 |
+
msgstr "Votre clef <abbr title='application programming interface'>API</abbr> Bit.ly :"
|
951 |
+
|
952 |
+
#: wp-to-twitter-manager.php:655
|
953 |
+
msgid "Save Bit.ly API Key"
|
954 |
+
msgstr "Enregistrer votre clef API Bit.ly"
|
955 |
+
|
956 |
+
#: wp-to-twitter-manager.php:655
|
957 |
+
msgid "Clear Bit.ly API Key"
|
958 |
+
msgstr "Effacer votre clef API Bit.ly"
|
959 |
+
|
960 |
+
#: wp-to-twitter-manager.php:655
|
961 |
+
msgid "A Bit.ly API key and username is required to shorten URLs via the Bit.ly API and WP to Twitter."
|
962 |
+
msgstr "Une clef API et un nom d'utilisateur Bit.ly sont nécessaires à la réduction d'URL via l'API de Bit.ly et l'extension WP toTwitter."
|
963 |
+
|
964 |
+
#: wp-to-twitter-manager.php:661
|
965 |
+
msgid "Your YOURLS account details"
|
966 |
+
msgstr "Détails de votre compte YOURLS"
|
967 |
+
|
968 |
+
#: wp-to-twitter-manager.php:665
|
969 |
+
msgid "Path to your YOURLS config file (Local installations)"
|
970 |
+
msgstr "Chemin vers votre fichier de configuration de YOURLS (installations locales)"
|
971 |
+
|
972 |
+
#: wp-to-twitter-manager.php:666 wp-to-twitter-manager.php:670
|
973 |
+
msgid "Example:"
|
974 |
+
msgstr "Exemple :"
|
975 |
+
|
976 |
+
#: wp-to-twitter-manager.php:669
|
977 |
+
msgid "URI to the YOURLS API (Remote installations)"
|
978 |
+
msgstr "URI vers l'API YOURLS (installation distante)"
|
979 |
+
|
980 |
+
#: wp-to-twitter-manager.php:673
|
981 |
+
msgid "Your YOURLS username:"
|
982 |
+
msgstr "Votre nom d'utilisateur YOURLS :"
|
983 |
+
|
984 |
+
#: wp-to-twitter-manager.php:677
|
985 |
+
msgid "Your YOURLS password:"
|
986 |
+
msgstr "Votre mot de passe YOURLS :"
|
987 |
+
|
988 |
+
#: wp-to-twitter-manager.php:677
|
989 |
+
msgid "<em>Saved</em>"
|
990 |
+
msgstr "<em>Enregistré</em>"
|
991 |
+
|
992 |
+
#: wp-to-twitter-manager.php:681
|
993 |
+
msgid "Post ID for YOURLS url slug."
|
994 |
+
msgstr "Utiliser un identifiant d'article pour l'identifiant votre URL YOURLS"
|
995 |
+
|
996 |
+
#: wp-to-twitter-manager.php:682
|
997 |
+
msgid "Custom keyword for YOURLS url slug."
|
998 |
+
msgstr "Utiliser un identifiant d'article pour l'identifiant de votre URL YOURLS"
|
999 |
+
|
1000 |
+
#: wp-to-twitter-manager.php:683
|
1001 |
+
msgid "Default: sequential URL numbering."
|
1002 |
+
msgstr "Par défaut: numérotation URL séquentielle."
|
1003 |
+
|
1004 |
+
#: wp-to-twitter-manager.php:689
|
1005 |
+
msgid "Save YOURLS Account Info"
|
1006 |
+
msgstr "Enregistrer les informations de votre compte YOURLS"
|
1007 |
+
|
1008 |
+
#: wp-to-twitter-manager.php:689
|
1009 |
+
msgid "Clear YOURLS password"
|
1010 |
+
msgstr "Effacer votre mot de passe YOURLS"
|
1011 |
+
|
1012 |
+
#: wp-to-twitter-manager.php:689
|
1013 |
+
msgid "A YOURLS password and username is required to shorten URLs via the remote YOURLS API and WP to Twitter."
|
1014 |
+
msgstr "Un mot de passe et un nom d'utilisateur YOURLS sont nécessaires à la réduction d'URL via l'API distante de YOURLS et l'extension WP to Twitter."
|
1015 |
+
|
1016 |
+
#: wp-to-twitter-manager.php:702
|
1017 |
+
msgid "Advanced Settings"
|
1018 |
+
msgstr "Réglages avancés"
|
1019 |
+
|
1020 |
+
#: wp-to-twitter-manager.php:707 wp-to-twitter-manager.php:872
|
1021 |
+
msgid "Save Advanced WP->Twitter Options"
|
1022 |
+
msgstr "Enregistrer les options avancées de WP->Twitter "
|
1023 |
+
|
1024 |
+
#: wp-to-twitter-manager.php:709
|
1025 |
+
msgid "Advanced Tweet settings"
|
1026 |
+
msgstr "Réglages avancés des Tweets"
|
1027 |
+
|
1028 |
+
#: wp-to-twitter-manager.php:711
|
1029 |
+
msgid "Strip nonalphanumeric characters from tags"
|
1030 |
+
msgstr "Retirer les caractères non alphanumériques à partir des mots-clefs"
|
1031 |
+
|
1032 |
+
#: wp-to-twitter-manager.php:712
|
1033 |
+
msgid "Spaces in tags replaced with:"
|
1034 |
+
msgstr "Les espaces dans les mots-clefs remplacées par :"
|
1035 |
+
|
1036 |
+
#: wp-to-twitter-manager.php:714
|
1037 |
+
msgid "Default replacement is an underscore (<code>_</code>). Use <code>[ ]</code> to remove spaces entirely."
|
1038 |
+
msgstr "Par défaut, le caractère de remplacement est un underscore (<code>_</code>). Pour supprimer entièrement les espaces, utilisez le code suivant : <code>[ ]</code>."
|
1039 |
+
|
1040 |
+
#: wp-to-twitter-manager.php:717
|
1041 |
+
msgid "Maximum number of tags to include:"
|
1042 |
+
msgstr "Nombre maximal de mots-clefs à ajouter :"
|
1043 |
+
|
1044 |
+
#: wp-to-twitter-manager.php:718
|
1045 |
+
msgid "Maximum length in characters for included tags:"
|
1046 |
+
msgstr "Nombre de caractères maximum pour un mot-clef ajouté :"
|
1047 |
+
|
1048 |
+
#: wp-to-twitter-manager.php:719
|
1049 |
+
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."
|
1050 |
+
msgstr "Ces options vous permettent de restreindre la longueur et le nombre de mots-clefs WordPress envoyés sur Twitter sous forme de hashtags. Configurer ainsi : <code>0</code> ou laisser un espace vide pour autoriser toute sorte de mots-clefs."
|
1051 |
+
|
1052 |
+
#: wp-to-twitter-manager.php:722
|
1053 |
+
msgid "Length of post excerpt (in characters):"
|
1054 |
+
msgstr "Longueur de l'extrait de l'article (en nombre de caractères) :"
|
1055 |
+
|
1056 |
+
#: wp-to-twitter-manager.php:722
|
1057 |
+
msgid "By default, extracted from the post itself. If you use the 'Excerpt' field, that will be used instead."
|
1058 |
+
msgstr "Par défaut extrait du contenu de l'article. Si vous spécifiez le champ \"Excerpt\", son contenu sera utilisé à la place."
|
1059 |
+
|
1060 |
+
#: wp-to-twitter-manager.php:725
|
1061 |
+
msgid "WP to Twitter Date Formatting:"
|
1062 |
+
msgstr "Date de formatage de l'extension WP to Twitter :"
|
1063 |
+
|
1064 |
+
#: wp-to-twitter-manager.php:726
|
1065 |
+
msgid "Default is from your general settings. <a href='http://codex.wordpress.org/Formatting_Date_and_Time'>Date Formatting Documentation</a>."
|
1066 |
+
msgstr "L'ensemble de vos réglages sont des réglages par défaut. <a href='http://codex.wordpress.org/Formatting_Date_and_Time'>Informations sur la date de formatage</a>."
|
1067 |
+
|
1068 |
+
#: wp-to-twitter-manager.php:730
|
1069 |
+
msgid "Custom text before all Tweets:"
|
1070 |
+
msgstr "Personnaliser le texte avant chaque tweet :"
|
1071 |
+
|
1072 |
+
#: wp-to-twitter-manager.php:731
|
1073 |
+
msgid "Custom text after all Tweets:"
|
1074 |
+
msgstr "Personnaliser le texte après chaque tweet :"
|
1075 |
+
|
1076 |
+
#: wp-to-twitter-manager.php:734
|
1077 |
+
msgid "Custom field for an alternate URL to be shortened and Tweeted:"
|
1078 |
+
msgstr "Personnaliser le champ pour une URL alternative à réduire et à publier sur Twitter :"
|
1079 |
+
|
1080 |
+
#: wp-to-twitter-manager.php:735
|
1081 |
+
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."
|
1082 |
+
msgstr "Vous pouvez utiliser un champ personnalisé pour envoyer une URL alternative pour vos articles. La valeur est le nom d'un champ personnalisé contenant votre URL externe."
|
1083 |
+
|
1084 |
+
#: wp-to-twitter-manager.php:758
|
1085 |
+
msgid "Preferred status update truncation sequence"
|
1086 |
+
msgstr "Séquence d'abbreviation préférée de la mise a jour de votre statut"
|
1087 |
+
|
1088 |
+
#: wp-to-twitter-manager.php:761
|
1089 |
+
msgid "This is the order in which items will be abbreviated or removed from your status update if it is too long to send to Twitter."
|
1090 |
+
msgstr "C'est l'ordre dans lequel les articles seront abrégés ou supprimés de votre mise à jour de statut s'il est trop long pour être envoyé sur Twitter."
|
1091 |
+
|
1092 |
+
#: wp-to-twitter-manager.php:766
|
1093 |
+
msgid "Special Cases when WordPress should send a Tweet"
|
1094 |
+
msgstr "Cas particuliers lorsque WordPress doit envoyer un tweet"
|
1095 |
+
|
1096 |
+
#: wp-to-twitter-manager.php:769
|
1097 |
+
msgid "Do not post Tweets by default"
|
1098 |
+
msgstr "Ne pas publier de Tweets par défaut"
|
1099 |
+
|
1100 |
+
#: wp-to-twitter-manager.php:772
|
1101 |
+
msgid "By default, all posts meeting other requirements will be posted to Twitter. Check this to change your setting."
|
1102 |
+
msgstr "Tous les articles répondant à d'autres modalités seront postés par défaut sur Twitter. Cochez cette case pour changer le réglage."
|
1103 |
+
|
1104 |
+
#: wp-to-twitter-manager.php:776
|
1105 |
+
msgid "Allow status updates from Quick Edit"
|
1106 |
+
msgstr "Autoriser les mises à jour de statut dans le Press-Minute"
|
1107 |
+
|
1108 |
+
#: wp-to-twitter-manager.php:777
|
1109 |
+
msgid "If checked, all posts edited individually or in bulk through the Quick Edit feature will be Tweeted."
|
1110 |
+
msgstr "Si cochée, tous les articles modifiés individuellement ou en actions groupées grâce à la fonction Modification Rapide seront tweetés."
|
1111 |
+
|
1112 |
+
#: wp-to-twitter-manager.php:782
|
1113 |
+
msgid "Delaying tweets with WP Tweets PRO moves Tweeting to an publishing-independent action."
|
1114 |
+
msgstr "Retarder les tweets avec WP Tweets PRO transforme le tweeting en une action d'édition indépendante."
|
1115 |
+
|
1116 |
+
#: wp-to-twitter-manager.php:789
|
1117 |
+
msgid "Send Twitter Updates on remote publication (Post by Email or XMLRPC Client)"
|
1118 |
+
msgstr "Envoyer les mises à jour Twitter sur publication distante (Envoyé par e-mail ou par Client XMLRPC)"
|
1119 |
+
|
1120 |
+
#: wp-to-twitter-manager.php:794
|
1121 |
+
msgid "Google Analytics Settings"
|
1122 |
+
msgstr "Réglages Google Analytics"
|
1123 |
+
|
1124 |
+
#: wp-to-twitter-manager.php:795
|
1125 |
+
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."
|
1126 |
+
msgstr "Vous pouvez suivre la réponse depuis Twitter grâce à Google Analytics en spécifiant un identifiant de campagne. Vous avez le choix entre un identifiant statique ou dynamique. Les identifiants statiques ne changent pas d'un article à un autre tandis que les dynamiques sont tirés d'informations liées à un article spécifique. Les identifiants dynamiques vous permettront d'analyser vos statistiques par variable additionnelle."
|
1127 |
+
|
1128 |
+
#: wp-to-twitter-manager.php:799
|
1129 |
+
msgid "Use a Static Identifier with WP-to-Twitter"
|
1130 |
+
msgstr "Choisir un identifiant statique avec l'extension WP to Twitter"
|
1131 |
+
|
1132 |
+
#: wp-to-twitter-manager.php:800
|
1133 |
+
msgid "Static Campaign identifier for Google Analytics:"
|
1134 |
+
msgstr "Identifiant de campagne statique pour Google Analytics :"
|
1135 |
+
|
1136 |
+
#: wp-to-twitter-manager.php:804
|
1137 |
+
msgid "Use a dynamic identifier with Google Analytics and WP-to-Twitter"
|
1138 |
+
msgstr "Choisir un identifiant dynamique avec Google Analytics et l'extension WP to Twitter"
|
1139 |
+
|
1140 |
+
#: wp-to-twitter-manager.php:805
|
1141 |
+
msgid "What dynamic identifier would you like to use?"
|
1142 |
+
msgstr "Quel identifiant dynamique choisissez-vous ?"
|
1143 |
+
|
1144 |
+
#: wp-to-twitter-manager.php:807
|
1145 |
+
msgid "Category"
|
1146 |
+
msgstr "Catégorie"
|
1147 |
+
|
1148 |
+
#: wp-to-twitter-manager.php:808
|
1149 |
+
msgid "Post ID"
|
1150 |
+
msgstr "ID de l'article"
|
1151 |
+
|
1152 |
+
#: wp-to-twitter-manager.php:809
|
1153 |
+
msgid "Post Title"
|
1154 |
+
msgstr "Titre de l'article"
|
1155 |
+
|
1156 |
+
#: wp-to-twitter-manager.php:810
|
1157 |
+
msgid "Author"
|
1158 |
+
msgstr "Auteur"
|
wp-to-twitter-ga_IR.mo → lang/wp-to-twitter-ga_IR.mo
RENAMED
File without changes
|
wp-to-twitter-ga_IR.po → lang/wp-to-twitter-ga_IR.po
RENAMED
File without changes
|
lang/wp-to-twitter-it_IT.mo
ADDED
Binary file
|
lang/wp-to-twitter-it_IT.po
ADDED
@@ -0,0 +1,1158 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of WP to Twitter in Italian
|
2 |
+
# This file is distributed under the same license as the WP to Twitter package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2013-01-08 20:00:57+0000\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/0.1\n"
|
11 |
+
"Project-Id-Version: WP to Twitter\n"
|
12 |
+
|
13 |
+
#: wp-to-twitter-manager.php:177
|
14 |
+
msgid "WP to Twitter failed to connect with Twitter. Try <a href=\"#wpt_http\">switching to an HTTP connection</a>."
|
15 |
+
msgstr "WP to Twitter ha fallito nel connettersi a Twitter. Prova <a href=\"#wpt_http\">a passare ad una connessione di tipo HTTP</a>."
|
16 |
+
|
17 |
+
#: wp-to-twitter-manager.php:544
|
18 |
+
msgid "Choose a short URL service (account settings below)"
|
19 |
+
msgstr "Scegli un servizio di abbreviazione degli URL (impostazioni dell'account di seguito)"
|
20 |
+
|
21 |
+
#: wp-to-twitter-manager.php:550
|
22 |
+
msgid "YOURLS (on this server)"
|
23 |
+
msgstr "YOURLS (su questo server)"
|
24 |
+
|
25 |
+
#: wp-to-twitter-manager.php:551
|
26 |
+
msgid "YOURLS (on a remote server)"
|
27 |
+
msgstr "YOURLS (sul server remoto)"
|
28 |
+
|
29 |
+
#: wp-to-twitter-manager.php:592
|
30 |
+
msgid "In addition to standard template tags, comments can use <code>#commenter#</code> to post the commenter's name in the Tweet. <em>Use this at your own risk</em>, as it lets anybody who can post a comment on your site post a phrase in your Twitter stream."
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: wp-to-twitter-manager.php:645
|
34 |
+
msgid "Get your Bit.ly API information."
|
35 |
+
msgstr "Recupera i tuoi dati delle API di Bit.ly"
|
36 |
+
|
37 |
+
#: wp-to-twitter.php:63
|
38 |
+
msgid "The current version of WP Tweets PRO is <strong>%s</strong>. Upgrade for best compatibility!"
|
39 |
+
msgstr "La versione attuale di WP Tweets PRO è <strong>%s</strong>. Aggiorna per avere una migliore compatibilità!"
|
40 |
+
|
41 |
+
#: functions.php:325
|
42 |
+
msgid "Thank you for supporting the continuing development of this plug-in! I'll get back to you as soon as I can. Please ensure that you can receive email at <code>%s</code>."
|
43 |
+
msgstr "Grazie per supportare il proseguimento dello sviluppo di questo plug-in! Mi farò vivo appena possibile. Per favore, assicurati che tu possa ricevere le email a <code>%s</code>."
|
44 |
+
|
45 |
+
#: functions.php:327
|
46 |
+
msgid "Thanks for using WP to Twitter. Please ensure that you can receive email at <code>%s</code>."
|
47 |
+
msgstr "Grazie per l'uso di WP to Twitter. Per favore assicurati di poter ricevere email a <code>%s</code>."
|
48 |
+
|
49 |
+
#: functions.php:351
|
50 |
+
msgid "Reply to:"
|
51 |
+
msgstr "Rispondi a:"
|
52 |
+
|
53 |
+
#: wp-to-twitter-manager.php:835
|
54 |
+
msgid "The lowest user group that can add their Twitter information"
|
55 |
+
msgstr "Il gruppo di livello più basso che può aggiungere le proprie informazioni di Twitter"
|
56 |
+
|
57 |
+
#: wp-to-twitter-manager.php:840
|
58 |
+
msgid "The lowest user group that can see the Custom Tweet options when posting"
|
59 |
+
msgstr "Il gruppo di livello più basso che può vedere l'opzione Tweet personalizzato quando scrive un articolo"
|
60 |
+
|
61 |
+
#: wp-to-twitter-manager.php:845
|
62 |
+
msgid "The lowest user group that can toggle the Tweet/Don't Tweet option"
|
63 |
+
msgstr "Il gruppo di livello più basso che può attivare o disattivare l'opzione Inviare/Non inviare Tweet"
|
64 |
+
|
65 |
+
#: wp-to-twitter-manager.php:850
|
66 |
+
msgid "The lowest user group that can send Twitter updates"
|
67 |
+
msgstr "Il gruppo di livello più basso che può inviare aggiornamenti su Twitter"
|
68 |
+
|
69 |
+
#: wp-to-twitter-manager.php:982
|
70 |
+
msgid "<code>#author#</code>: the post author (@reference if available, otherwise display name)"
|
71 |
+
msgstr "<code>#author#</code>: l'autore dell'articolo (@account se disponibile, il nome da visualizzare altrimenti)"
|
72 |
+
|
73 |
+
#: wp-to-twitter-manager.php:983
|
74 |
+
msgid "<code>#displayname#</code>: post author's display name"
|
75 |
+
msgstr "<code>#displayname#</code>: Il nome da visualizzare per l'autore dell'articolo"
|
76 |
+
|
77 |
+
#: wp-to-twitter.php:74
|
78 |
+
msgid "WP to Twitter requires WordPress 3.0.6 or a more recent version <a href=\"http://codex.wordpress.org/Upgrading_WordPress\">Please update WordPress to continue using WP to Twitter with all features!</a>"
|
79 |
+
msgstr "WP to Twitter richiede la versione 3.0.6 di WordPress o superiori. <a href=\"http://codex.wordpress.org/Upgrading_WordPress\">Per favore aggiorna la tua versione di WordPress per continuare ad usare WP to Twitter e tutte le sue funzionalità!</a>"
|
80 |
+
|
81 |
+
#: wp-to-twitter.php:285
|
82 |
+
msgid "This tweet was blank and could not be sent to Twitter."
|
83 |
+
msgstr "Questo tweet è vuoto e non può essere inviato a Twitter."
|
84 |
+
|
85 |
+
#: wp-to-twitter.php:336
|
86 |
+
msgid "404 Not Found: The URI requested is invalid or the resource requested does not exist."
|
87 |
+
msgstr "404 Not Found: L'URI richiesto non è valido o la risorsa richiesta non esiste."
|
88 |
+
|
89 |
+
#: wp-to-twitter.php:340
|
90 |
+
msgid "406 Not Acceptable: Invalid Format Specified."
|
91 |
+
msgstr "406 Not Acceptable: Il formato specificato non è valido."
|
92 |
+
|
93 |
+
#: wp-to-twitter.php:344
|
94 |
+
msgid "429 Too Many Requests: You have exceeded your rate limits."
|
95 |
+
msgstr "429 Too Many Requests: Hai raggiunto la tua quota limite."
|
96 |
+
|
97 |
+
#: wp-to-twitter.php:360
|
98 |
+
msgid "504 Gateway Timeout: The Twitter servers are up, but the request couldn't be serviced due to some failure within our stack. Try again later."
|
99 |
+
msgstr "504 Gateway Timeout: I server di Twitter funzionano ma la richiesta non è stata soddisfatta a causa di qualche errore. Per favore, riprova in seguito."
|
100 |
+
|
101 |
+
#: wp-to-twitter.php:1162
|
102 |
+
msgid "Your prepended Tweet text; not part of your template."
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: wp-to-twitter.php:1165
|
106 |
+
msgid "Your appended Tweet text; not part of your template."
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: wp-to-twitter.php:1219
|
110 |
+
msgid "Tweets are no more than 140 characters; Twitter counts URLs as 20 characters. Template tags: <code>#url#</code>, <code>#title#</code>, <code>#post#</code>, <code>#category#</code>, <code>#date#</code>, <code>#modified#</code>, <code>#author#</code>, <code>#account#</code>, <code>#tags#</code>, or <code>#blog#</code>."
|
111 |
+
msgstr "I Tweet non devono essere più lunghi di 140 caratteri; Twitter conta gli URL come 20 caratteri. Template tag disponibili: <code>#url#</code>, <code>#title#</code>, <code>#post#</code>, <code>#category#</code>, <code>#date#</code>, <code>#modified#</code>, <code>#author#</code>, <code>#account#</code>, <code>#tags#</code>, o <code>#blog#</code>."
|
112 |
+
|
113 |
+
#: wp-to-twitter.php:1231
|
114 |
+
msgid "Your role does not have the ability to Post Tweets from this site."
|
115 |
+
msgstr "Il tuo ruolo non permette di inviare Tweet da questo sito."
|
116 |
+
|
117 |
+
#: wp-to-twitter.php:1355
|
118 |
+
msgid "Hide account name in Tweets"
|
119 |
+
msgstr "Nascondi il nome dell'account nei Tweet"
|
120 |
+
|
121 |
+
#: wp-to-twitter.php:1356
|
122 |
+
msgid "Do not display my account in the #account# template tag."
|
123 |
+
msgstr "Non visualizzare il mio account nel template #account#."
|
124 |
+
|
125 |
+
#: functions.php:354
|
126 |
+
msgid "I have read <a href=\"%1$s\">the FAQ for this plug-in</a> <span>(required)</span>"
|
127 |
+
msgstr "Io ho letto <a href=\"%1$s\">le FAQ di questo plug-in</a> <span>(obbligatorio)</span>"
|
128 |
+
|
129 |
+
#: functions.php:357
|
130 |
+
msgid "I have <a href=\"%1$s\">made a donation to help support this plug-in</a>"
|
131 |
+
msgstr "Io ho <a href=\"%1$s\"> fatto una donazione per supportare questo plugin</a>"
|
132 |
+
|
133 |
+
#: functions.php:360
|
134 |
+
msgid "Support Request:"
|
135 |
+
msgstr "Richiesta di supporto:"
|
136 |
+
|
137 |
+
#: wp-to-twitter-manager.php:571
|
138 |
+
msgid "Settings for type \"%1$s\""
|
139 |
+
msgstr "Impostazioni per il tipo \"%1$s\""
|
140 |
+
|
141 |
+
#: wp-to-twitter-manager.php:574
|
142 |
+
msgid "Update when %1$s %2$s is published"
|
143 |
+
msgstr "Aggiorna quando %1$s %2$s è pubblicato"
|
144 |
+
|
145 |
+
#: wp-to-twitter-manager.php:574
|
146 |
+
msgid "Text for new %1$s updates"
|
147 |
+
msgstr "Testo per nuovo %1$s aggiornato"
|
148 |
+
|
149 |
+
#: wp-to-twitter-manager.php:578
|
150 |
+
msgid "Update when %1$s %2$s is edited"
|
151 |
+
msgstr "Aggiorna quando %1$s %2$s è modificato"
|
152 |
+
|
153 |
+
#: wp-to-twitter-manager.php:578
|
154 |
+
msgid "Text for %1$s editing updates"
|
155 |
+
msgstr "Testo per %1$s aggiornato"
|
156 |
+
|
157 |
+
#: wp-to-twitter-oauth.php:190
|
158 |
+
msgid "Your server timezone (should be UTC,GMT,Europe/London or equivalent):"
|
159 |
+
msgstr "Il fuso orario del tuo server (dovrebbe essere UTC,GMT,Europe/London o equivalente):"
|
160 |
+
|
161 |
+
#: wp-to-twitter-manager.php:553
|
162 |
+
msgid "Use Twitter Friendly Links."
|
163 |
+
msgstr "Utilizza Link in formato gradito a Twitter."
|
164 |
+
|
165 |
+
#: wp-to-twitter-manager.php:650
|
166 |
+
msgid "View your Bit.ly username and API key"
|
167 |
+
msgstr "Visualizza il tuo username di Bit.ly e la API key"
|
168 |
+
|
169 |
+
#: wp-to-twitter-manager.php:694
|
170 |
+
msgid "Your shortener does not require any account settings."
|
171 |
+
msgstr "Il tuo abbreviatore di URL non richiede alcun impostazione."
|
172 |
+
|
173 |
+
#: wp-to-twitter.php:314
|
174 |
+
msgid "Your Twitter application does not have read and write permissions. Go to <a href=\"%s\">your Twitter apps</a> to modify these settings."
|
175 |
+
msgstr "La tua applicazione Twitter non ha i permessi di lettura e scrittura. Vai alle <a href=\"%s\">tue applicazioni Twitter</a> per modificare queste impostazioni."
|
176 |
+
|
177 |
+
#: wp-to-twitter.php:1135
|
178 |
+
msgid "Failed Tweets"
|
179 |
+
msgstr "Tweet falliti"
|
180 |
+
|
181 |
+
#: wp-to-twitter.php:1150
|
182 |
+
msgid "No failed tweets on this post."
|
183 |
+
msgstr "Non ci sono tweet falliti in questo articolo."
|
184 |
+
|
185 |
+
#: wp-to-twitter-manager.php:957
|
186 |
+
msgid "Upgrade to <strong>WP Tweets PRO</strong> for more options!"
|
187 |
+
msgstr "Aggiorna a <strong>WP Tweets PRO</strong> per avere più opzioni!"
|
188 |
+
|
189 |
+
#: wp-to-twitter-manager.php:987
|
190 |
+
msgid "<code>#reference#</code>: Used only in co-tweeting. @reference to main account when posted to author account, @reference to author account in post to main account."
|
191 |
+
msgstr "<code>#reference#</code>: Usato solo nel co-tweeting. @riferisce all'account principale quando è inviato all'account dell'autore, @riferisce all'account dell'autore per i post all'account principale."
|
192 |
+
|
193 |
+
#: wp-to-twitter-oauth.php:165
|
194 |
+
msgid "Connection Problems? Try <a href='#wpt_http'>switching to <code>http</code> queries</a>.<br />"
|
195 |
+
msgstr "Problemi di connessione? Prova a <a href='#wpt_http'>passare alle richieste <code>http</code></a>.<br />"
|
196 |
+
|
197 |
+
#: wp-to-twitter-oauth.php:259
|
198 |
+
msgid "WP to Twitter could not contact Twitter's remote server. Here is the error triggered: "
|
199 |
+
msgstr "WP to Twitter non è riuscito a contattare i server di Twitter. Questo è l'errore ottenuto:"
|
200 |
+
|
201 |
+
#: wp-to-twitter.php:271
|
202 |
+
msgid "This account is not authorized to post to Twitter."
|
203 |
+
msgstr "Questo account non è autorizzato per inviare messaggi su Twitter."
|
204 |
+
|
205 |
+
#: wp-to-twitter.php:279
|
206 |
+
msgid "This tweet is identical to another Tweet recently sent to this account."
|
207 |
+
msgstr "Questo tweet è identico ad un altro tweet recentemente inviato a questo account."
|
208 |
+
|
209 |
+
#: wp-to-twitter.php:1154
|
210 |
+
msgid "WP to Twitter can do more for you! Take a look at WP Tweets Pro!"
|
211 |
+
msgstr "WP to Twitter può fare molto altro per te! Dai uno sguardo a WP Tweets Pro!"
|
212 |
+
|
213 |
+
#: wp-to-twitter-manager.php:618
|
214 |
+
msgid "(optional)"
|
215 |
+
msgstr "(facoltativo)"
|
216 |
+
|
217 |
+
#: wp-to-twitter-manager.php:771
|
218 |
+
msgid "Do not post Tweets by default (editing only)"
|
219 |
+
msgstr "Di default non inviare i Tweet (solo modifica)"
|
220 |
+
|
221 |
+
#: wp-to-twitter-manager.php:980
|
222 |
+
msgid "<code>#modified#</code>: the post modified date"
|
223 |
+
msgstr "<code>#modified#</code>: la data di modifica del post"
|
224 |
+
|
225 |
+
#: wp-to-twitter-oauth.php:257
|
226 |
+
msgid "Your time stamps are more than 5 minutes apart. Your server could lose its connection with Twitter."
|
227 |
+
msgstr "Il tuo orario ha più di 5 minuti di differenza con Twitter e pertanto il tuo server potrebbe perdere la connessione con i loro."
|
228 |
+
|
229 |
+
#: wp-to-twitter-manager.php:815
|
230 |
+
msgid "Individual Authors"
|
231 |
+
msgstr "Autori singoli"
|
232 |
+
|
233 |
+
#: wp-to-twitter-manager.php:818
|
234 |
+
msgid "Authors have individual Twitter accounts"
|
235 |
+
msgstr "Gli autori hanno degli account personali su Twitter"
|
236 |
+
|
237 |
+
#: wp-to-twitter-manager.php:818
|
238 |
+
msgid "Authors can add their username in their user profile. This feature can only add an @reference to the author. The @reference is placed using the <code>#account#</code> shortcode, which will pick up the main account if user accounts are not enabled."
|
239 |
+
msgstr "Gli autori possono impostare il proprio nome utente nel loro profilo utente. 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.)"
|
240 |
+
|
241 |
+
#: wp-to-twitter-manager.php:856
|
242 |
+
msgid "Disable Error Messages"
|
243 |
+
msgstr "Disattiva i messaggi di errore"
|
244 |
+
|
245 |
+
#: wp-to-twitter-manager.php:858
|
246 |
+
msgid "Disable global URL shortener error messages."
|
247 |
+
msgstr "Disattiva i messaggi di errore abbreviatore URL globale."
|
248 |
+
|
249 |
+
#: wp-to-twitter-manager.php:859
|
250 |
+
msgid "Disable global Twitter API error messages."
|
251 |
+
msgstr "Disattiva i messaggi di errore globali API Twitter."
|
252 |
+
|
253 |
+
#: wp-to-twitter-manager.php:860
|
254 |
+
msgid "Disable notification to implement OAuth"
|
255 |
+
msgstr "Disattiva la notifica per implementare OAuth"
|
256 |
+
|
257 |
+
#: wp-to-twitter-manager.php:862
|
258 |
+
msgid "Get Debugging Data for OAuth Connection"
|
259 |
+
msgstr "Ottieni i dati di Debugging per la connessione OAuth"
|
260 |
+
|
261 |
+
#: wp-to-twitter-manager.php:864
|
262 |
+
msgid "Switch to <code>http</code> connection. (Default is https)"
|
263 |
+
msgstr "Passa alla connessione <code>http</code>. (Quella di default è https)"
|
264 |
+
|
265 |
+
#: wp-to-twitter-manager.php:866
|
266 |
+
msgid "I made a donation, so stop whinging at me, please."
|
267 |
+
msgstr "Ho effettuato una donazione."
|
268 |
+
|
269 |
+
#: wp-to-twitter-manager.php:880
|
270 |
+
msgid "Limit Updating Categories"
|
271 |
+
msgstr "Limite aggiornamento categorie"
|
272 |
+
|
273 |
+
#: wp-to-twitter-manager.php:883
|
274 |
+
msgid "If no categories are checked, limiting by category will be ignored, and all categories will be Tweeted."
|
275 |
+
msgstr "Se non ci sono categorie selezionate il blocco di alcune sarà ignorato e tutte le categorie verranno prese in considerazione per i Tweet."
|
276 |
+
|
277 |
+
#: wp-to-twitter-manager.php:884
|
278 |
+
msgid "<em>Category limits are disabled.</em>"
|
279 |
+
msgstr "<em>Le limitazioni alle categorie non sono attive.</em>"
|
280 |
+
|
281 |
+
#: wp-to-twitter-manager.php:893
|
282 |
+
msgid "Get Plug-in Support"
|
283 |
+
msgstr "Ottieni supporto per il plugin"
|
284 |
+
|
285 |
+
#: wp-to-twitter-manager.php:904
|
286 |
+
msgid "Check Support"
|
287 |
+
msgstr "Verifica assistenza"
|
288 |
+
|
289 |
+
#: wp-to-twitter-manager.php:904
|
290 |
+
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."
|
291 |
+
msgstr "Utilizzare 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."
|
292 |
+
|
293 |
+
#: wp-to-twitter-manager.php:922
|
294 |
+
msgid "Support WP to Twitter"
|
295 |
+
msgstr "Supporta WP to Twitter"
|
296 |
+
|
297 |
+
#: wp-to-twitter-manager.php:924
|
298 |
+
msgid "WP to Twitter Support"
|
299 |
+
msgstr "Assistenza WP to Twitter"
|
300 |
+
|
301 |
+
#: wp-to-twitter-manager.php:932
|
302 |
+
msgid "View Settings"
|
303 |
+
msgstr "Visualizza impostazioni"
|
304 |
+
|
305 |
+
#: wp-to-twitter-manager.php:934 wp-to-twitter.php:1224 wp-to-twitter.php:1226
|
306 |
+
msgid "Get Support"
|
307 |
+
msgstr "Ottieni assistenza"
|
308 |
+
|
309 |
+
#: wp-to-twitter-manager.php:938
|
310 |
+
msgid "<a href=\"http://www.joedolson.com/donate.php\">Make a donation today!</a> Every donation counts - donate $2, $10, or $100 and help me keep this plug-in running!"
|
311 |
+
msgstr "<a href=\"http://www.joedolson.com/donate.php\">Fai una donazione oggi!</a> Ogni donazione conta - dona $2, $10, o $100 e aiutami a mantenere attivo questo plug-in!"
|
312 |
+
|
313 |
+
#: wp-to-twitter-manager.php:955
|
314 |
+
msgid "Upgrade Now!"
|
315 |
+
msgstr "Aggiorna ora!"
|
316 |
+
|
317 |
+
#: wp-to-twitter-manager.php:958
|
318 |
+
msgid "Extra features with the PRO upgrade:"
|
319 |
+
msgstr "Funzionalità extra che avrai con WP Tweets PRO:"
|
320 |
+
|
321 |
+
#: wp-to-twitter-manager.php:960
|
322 |
+
msgid "Users can post to their own Twitter accounts"
|
323 |
+
msgstr "Gli utenti possono inviare i post al loro account Twitter"
|
324 |
+
|
325 |
+
#: wp-to-twitter-manager.php:961
|
326 |
+
msgid "Set a timer to send your Tweet minutes or hours after you publish the post"
|
327 |
+
msgstr "Imposta un timer per inviare i tuoi Tweet dopo minuti oppure ore dalla pubblicazione del post"
|
328 |
+
|
329 |
+
#: wp-to-twitter-manager.php:962
|
330 |
+
msgid "Automatically re-send Tweets at an assigned time after publishing"
|
331 |
+
msgstr "Invia nuovamente i Tweet dopo un certo periodo dopo la pubblicazione"
|
332 |
+
|
333 |
+
#: wp-to-twitter-manager.php:971
|
334 |
+
msgid "Shortcodes"
|
335 |
+
msgstr "Codici brevi"
|
336 |
+
|
337 |
+
#: wp-to-twitter-manager.php:973
|
338 |
+
msgid "Available in post update templates:"
|
339 |
+
msgstr "Disponibili nei template di aggiornamento del post:"
|
340 |
+
|
341 |
+
#: wp-to-twitter-manager.php:975
|
342 |
+
msgid "<code>#title#</code>: the title of your blog post"
|
343 |
+
msgstr "<code>#title#</code>: il titolo del tuo post"
|
344 |
+
|
345 |
+
#: wp-to-twitter-manager.php:976
|
346 |
+
msgid "<code>#blog#</code>: the title of your blog"
|
347 |
+
msgstr "<code>#blog#</code>: il titolo del tuo blog"
|
348 |
+
|
349 |
+
#: wp-to-twitter-manager.php:977
|
350 |
+
msgid "<code>#post#</code>: a short excerpt of the post content"
|
351 |
+
msgstr "<code>#post#</code>: un breve riassunto dei contenuti del post"
|
352 |
+
|
353 |
+
#: wp-to-twitter-manager.php:978
|
354 |
+
msgid "<code>#category#</code>: the first selected category for the post"
|
355 |
+
msgstr "<code>#category#</code>: la prima categoria selezionata per il post"
|
356 |
+
|
357 |
+
#: wp-to-twitter-manager.php:979
|
358 |
+
msgid "<code>#date#</code>: the post date"
|
359 |
+
msgstr "<code>#date#</code>: la data del post"
|
360 |
+
|
361 |
+
#: wp-to-twitter-manager.php:981
|
362 |
+
msgid "<code>#url#</code>: the post URL"
|
363 |
+
msgstr "<code>#url#</code>: l'URL del post"
|
364 |
+
|
365 |
+
#: wp-to-twitter-manager.php:984
|
366 |
+
msgid "<code>#account#</code>: the twitter @reference for the account (or the author, if author settings are enabled and set.)"
|
367 |
+
msgstr "<code>#account#</code>: il riferimento Twitter @ per l'account (o per l'autore, previa attivazione ed impostazione.)"
|
368 |
+
|
369 |
+
#: wp-to-twitter-manager.php:985
|
370 |
+
msgid "<code>#tags#</code>: your tags modified into hashtags. See options in the Advanced Settings section, below."
|
371 |
+
msgstr "<code>#tags#</code>: i tuoi tag modificati in hashtag. Vedi le opzioni nelle Impostazioni Avanzate più in basso."
|
372 |
+
|
373 |
+
#: wp-to-twitter-manager.php:990
|
374 |
+
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>"
|
375 |
+
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>"
|
376 |
+
|
377 |
+
#: wp-to-twitter-oauth.php:96
|
378 |
+
msgid "WP to Twitter was unable to establish a connection to Twitter."
|
379 |
+
msgstr "WP to Twitter non è riuscito a stabilire una connessione con Twitter."
|
380 |
+
|
381 |
+
#: wp-to-twitter-oauth.php:166
|
382 |
+
msgid "There was an error querying Twitter's servers"
|
383 |
+
msgstr "C'è stato un errore nell'interrogare i server di Twitter"
|
384 |
+
|
385 |
+
#: wp-to-twitter-oauth.php:182 wp-to-twitter-oauth.php:184
|
386 |
+
msgid "Connect to Twitter"
|
387 |
+
msgstr "Collegati a Twitter"
|
388 |
+
|
389 |
+
#: wp-to-twitter-oauth.php:187
|
390 |
+
msgid "WP to Twitter Set-up"
|
391 |
+
msgstr "Impostazioni WP to Twitter"
|
392 |
+
|
393 |
+
#: wp-to-twitter-oauth.php:188 wp-to-twitter-oauth.php:281
|
394 |
+
msgid "Your server time:"
|
395 |
+
msgstr "Ora del tuo server:"
|
396 |
+
|
397 |
+
#: wp-to-twitter-oauth.php:188
|
398 |
+
msgid "Twitter's time:"
|
399 |
+
msgstr "Orario di Twitter:"
|
400 |
+
|
401 |
+
#: wp-to-twitter-oauth.php:188
|
402 |
+
msgid "If these timestamps are not within 5 minutes of each other, your server will not connect to Twitter."
|
403 |
+
msgstr "Se questi orari non sono distanti al più 5 minuti l'uno dall'altro, il tuo server non sarà in grado di connettersi a Twitter."
|
404 |
+
|
405 |
+
#: wp-to-twitter-oauth.php:192
|
406 |
+
msgid "<em>Note</em>: you will not add your Twitter user information to WP to Twitter; it is not used in this authentication method."
|
407 |
+
msgstr "<em>Nota</em>: non aggiungerai le tue informazioni personali di Twitter in WP to Twitter; non sono usate in questo metodo di autenticazione."
|
408 |
+
|
409 |
+
#: wp-to-twitter-oauth.php:196
|
410 |
+
msgid "1. Register this site as an application on "
|
411 |
+
msgstr "1. Registra questo sito come una applicazione sulla "
|
412 |
+
|
413 |
+
#: wp-to-twitter-oauth.php:196
|
414 |
+
msgid "Twitter's application registration page"
|
415 |
+
msgstr "pagina di registrazione applicazione Twitter"
|
416 |
+
|
417 |
+
#: wp-to-twitter-oauth.php:198
|
418 |
+
msgid "If you're not currently logged in to Twitter, log-in to the account you want associated with this site"
|
419 |
+
msgstr "Se non sei ancora loggato in Twitter, effettua il login nell'account che vuoi associare al sito"
|
420 |
+
|
421 |
+
#: wp-to-twitter-oauth.php:199
|
422 |
+
msgid "Your Application's Name will show up after \"via\" in your twitter stream. Your application name cannot include the word \"Twitter.\""
|
423 |
+
msgstr "Il nome della tua applicazione (Application's Name) verrà mostrato dopo \"via\" nei tuoi tweet. Il nome della tua applicazione non può includere la parola \"Twitter\"."
|
424 |
+
|
425 |
+
#: wp-to-twitter-oauth.php:200
|
426 |
+
msgid "Your Application Description can be anything."
|
427 |
+
msgstr "La descrizione dell'applicazione (Application Description) può essere qualsiasi cosa."
|
428 |
+
|
429 |
+
#: wp-to-twitter-oauth.php:201
|
430 |
+
msgid "The WebSite and Callback URL should be "
|
431 |
+
msgstr "Il sito web ed il Callback URL dovrebbere essere "
|
432 |
+
|
433 |
+
#: wp-to-twitter-oauth.php:203
|
434 |
+
msgid "Agree to the Developer Rules of the Road and continue."
|
435 |
+
msgstr "Acconsenti a Developer Rules of the Road e prosegui."
|
436 |
+
|
437 |
+
#: wp-to-twitter-oauth.php:204
|
438 |
+
msgid "2. Switch to the \"Settings\" tab in Twitter apps"
|
439 |
+
msgstr "2. Passa alla scheda \"Impostazioni\" (\"Settings\") nelle app di Twitter"
|
440 |
+
|
441 |
+
#: wp-to-twitter-oauth.php:206
|
442 |
+
msgid "Select \"Read and Write\" for the Application Type"
|
443 |
+
msgstr "Seleziona \"Read and Write\" per il tipo di applicazione"
|
444 |
+
|
445 |
+
#: wp-to-twitter-oauth.php:207
|
446 |
+
msgid "Update the application settings"
|
447 |
+
msgstr "Aggiorna impostazioni applicazione"
|
448 |
+
|
449 |
+
#: wp-to-twitter-oauth.php:208
|
450 |
+
msgid "Return to the Details tab and create your access token. Refresh page to view your access tokens."
|
451 |
+
msgstr "Ritorna alla scheda \"Dettagli\" (\"Details\") e crea il tuo token di accesso. Aggiorna la pagina per vedere i tuoi token di accesso."
|
452 |
+
|
453 |
+
#: wp-to-twitter-oauth.php:210
|
454 |
+
msgid "Once you have registered your site as an application, you will be provided with four keys."
|
455 |
+
msgstr "Una volta registrato il tuo sito come applicazione, ti saranno fornite quattro chiavi."
|
456 |
+
|
457 |
+
#: wp-to-twitter-oauth.php:211
|
458 |
+
msgid "3. Copy and paste your consumer key and consumer secret into the fields below"
|
459 |
+
msgstr "2. Copia ed incolla nei campi qui sotto la tua consumer key ed il consumer secret"
|
460 |
+
|
461 |
+
#: wp-to-twitter-oauth.php:214
|
462 |
+
msgid "Twitter Consumer Key"
|
463 |
+
msgstr "Twitter Consumer Key"
|
464 |
+
|
465 |
+
#: wp-to-twitter-oauth.php:218
|
466 |
+
msgid "Twitter Consumer Secret"
|
467 |
+
msgstr "Twitter Consumer Secret"
|
468 |
+
|
469 |
+
#: wp-to-twitter-oauth.php:222
|
470 |
+
msgid "4. Copy and paste your Access Token and Access Token Secret into the fields below"
|
471 |
+
msgstr "3. Copia ed incolla nei campi qui sotto il tuo token di accesso e secret"
|
472 |
+
|
473 |
+
#: wp-to-twitter-oauth.php:223
|
474 |
+
msgid "If the Access level for your Access Token is not \"<em>Read and write</em>\", you must return to step 2 and generate a new Access Token."
|
475 |
+
msgstr "Se il livello di accesso per il tuo token di accesso non è \"<em>Lettura e Scrittura</em>\", devi ritornare al passo 2 e generare un nuovo token di accesso."
|
476 |
+
|
477 |
+
#: wp-to-twitter-oauth.php:226
|
478 |
+
msgid "Access Token"
|
479 |
+
msgstr "Token d'accesso"
|
480 |
+
|
481 |
+
#: wp-to-twitter-oauth.php:230
|
482 |
+
msgid "Access Token Secret"
|
483 |
+
msgstr "Token d'accesso - Secret"
|
484 |
+
|
485 |
+
#: wp-to-twitter-oauth.php:249
|
486 |
+
msgid "Disconnect Your WordPress and Twitter Account"
|
487 |
+
msgstr "Scollega il tuo account WordPress e Twitter"
|
488 |
+
|
489 |
+
#: wp-to-twitter-oauth.php:253
|
490 |
+
msgid "Disconnect your WordPress and Twitter Account"
|
491 |
+
msgstr "Disconnetti il tuo account WordPress e Twitter"
|
492 |
+
|
493 |
+
#: wp-to-twitter-oauth.php:255
|
494 |
+
msgid "<strong>Troubleshooting tip:</strong> Connected, but getting a notice that your Authentication credentials are missing or incorrect? Check whether your Access token has read and write permission. If not, you'll need to create a new token."
|
495 |
+
msgstr "<strong>Suggerimento:</strong> Sei connesso ma ricevi un avviso nel quale viene indicato che le tue credenziali non sono corrette o inesistenti? Controlla se il tuo token di accesso abbia i permessi di scrittura. Se così non fosse, crea un nuovo token."
|
496 |
+
|
497 |
+
#: wp-to-twitter-oauth.php:263
|
498 |
+
msgid "Disconnect from Twitter"
|
499 |
+
msgstr "Disconnettiti da Twitter"
|
500 |
+
|
501 |
+
#: wp-to-twitter-oauth.php:269
|
502 |
+
msgid "Twitter Username "
|
503 |
+
msgstr "Nome utente Twitter"
|
504 |
+
|
505 |
+
#: wp-to-twitter-oauth.php:270
|
506 |
+
msgid "Consumer Key "
|
507 |
+
msgstr "Consumer Key "
|
508 |
+
|
509 |
+
#: wp-to-twitter-oauth.php:271
|
510 |
+
msgid "Consumer Secret "
|
511 |
+
msgstr "Consumer Secret "
|
512 |
+
|
513 |
+
#: wp-to-twitter-oauth.php:272
|
514 |
+
msgid "Access Token "
|
515 |
+
msgstr "Token d'accesso"
|
516 |
+
|
517 |
+
#: wp-to-twitter-oauth.php:273
|
518 |
+
msgid "Access Token Secret "
|
519 |
+
msgstr "Token d'accesso - Secret"
|
520 |
+
|
521 |
+
#: wp-to-twitter-oauth.php:281
|
522 |
+
msgid "Twitter's current server time: "
|
523 |
+
msgstr "Ora del server di Twitter:"
|
524 |
+
|
525 |
+
#: wp-to-twitter.php:45
|
526 |
+
msgid "WP to Twitter requires PHP version 5 or above. Please upgrade PHP to run WP to Twitter."
|
527 |
+
msgstr "WP to Twitter richiede una versione pari a o maggiore di PHP 5. Per favore aggiorna la tua versione di PHP per poter utilizzare WP to Twitter."
|
528 |
+
|
529 |
+
#: wp-to-twitter.php:92
|
530 |
+
msgid "Twitter requires authentication by OAuth. You will need to <a href='%s'>update your settings</a> to complete installation of WP to Twitter."
|
531 |
+
msgstr "Twitter necessita una autentificazione via OAuth. Aggiorna le tue <a href='%s'>impostazioni</a> per completare l'installazione di WP to Twitter."
|
532 |
+
|
533 |
+
#: wp-to-twitter.php:318
|
534 |
+
msgid "200 OK: Success!"
|
535 |
+
msgstr "200 OK: Successo!"
|
536 |
+
|
537 |
+
#: wp-to-twitter.php:323
|
538 |
+
msgid "400 Bad Request: The request was invalid. This is the status code returned during rate limiting."
|
539 |
+
msgstr "400 Bad Request: La richiesta non é valida. L'utilizzo di questo codice é relativo al limite delle chiamate."
|
540 |
+
|
541 |
+
#: wp-to-twitter.php:327
|
542 |
+
msgid "401 Unauthorized: Authentication credentials were missing or incorrect."
|
543 |
+
msgstr "401 Unauthorized: quando mancano oppure sono inesatte le credenziali per l'autentificazione."
|
544 |
+
|
545 |
+
#: wp-to-twitter.php:332
|
546 |
+
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 can include: Too many Tweets created in a short time or the same Tweet was submitted twice in a row, among others. This is not an error by WP to Twitter."
|
547 |
+
msgstr "\"403 Forbidden: The request is understood, but it has been refused\". Questo codice è usato quando le richieste sono comprese ma rifiutate da Twitter. Le ragioni di ciò includono anche: Troppi Tweet creati in breve tempo oppure lo stesso Tweet è stato inviato due volte. Questo errore non è di WP to Twitter."
|
548 |
+
|
549 |
+
#: wp-to-twitter.php:348
|
550 |
+
msgid "500 Internal Server Error: Something is broken at Twitter."
|
551 |
+
msgstr "500 Internal Server Error: problemi interni a Twitter."
|
552 |
+
|
553 |
+
#: wp-to-twitter.php:356
|
554 |
+
msgid "503 Service Unavailable: The Twitter servers are up, but overloaded with requests - Please try again later."
|
555 |
+
msgstr "503 Service Unavailable: i server di Twitter funzionano, ma sono sommersi di richieste. Prova più tardi."
|
556 |
+
|
557 |
+
#: wp-to-twitter.php:352
|
558 |
+
msgid "502 Bad Gateway: Twitter is down or being upgraded."
|
559 |
+
msgstr "502 Bad Gateway: Twitter é down oppure sotto aggiornamento."
|
560 |
+
|
561 |
+
#: wp-to-twitter.php:390
|
562 |
+
msgid "No Twitter OAuth connection found."
|
563 |
+
msgstr "Non è stata trovata la connessione a Twitter OAuth."
|
564 |
+
|
565 |
+
#: wp-to-twitter.php:1079
|
566 |
+
msgid "WP Tweets"
|
567 |
+
msgstr "WP Tweet"
|
568 |
+
|
569 |
+
#: wp-to-twitter.php:1121
|
570 |
+
msgid "Previous Tweets"
|
571 |
+
msgstr "Tweet precedenti"
|
572 |
+
|
573 |
+
#: wp-to-twitter.php:1157
|
574 |
+
msgid "Custom Twitter Post"
|
575 |
+
msgstr "Messaggio personalizzato Twitter"
|
576 |
+
|
577 |
+
#: wp-to-twitter.php:1181
|
578 |
+
msgid "Your template:"
|
579 |
+
msgstr "Il tuo template:"
|
580 |
+
|
581 |
+
#: wp-to-twitter.php:1186
|
582 |
+
msgid "YOURLS Custom Keyword"
|
583 |
+
msgstr "YOURLS - Custom Keyword"
|
584 |
+
|
585 |
+
#: wp-to-twitter.php:1224
|
586 |
+
msgid "Upgrade to WP Tweets Pro"
|
587 |
+
msgstr "Aggiorna a WP Tweets Pro"
|
588 |
+
|
589 |
+
#: wp-to-twitter.php:1198
|
590 |
+
msgid "Don't Tweet this post."
|
591 |
+
msgstr "Non segnalare a Twitter questo articolo."
|
592 |
+
|
593 |
+
#: wp-to-twitter.php:1198
|
594 |
+
msgid "Tweet this post."
|
595 |
+
msgstr "Segnala a Twitter questo articolo."
|
596 |
+
|
597 |
+
#: wp-to-twitter.php:1210
|
598 |
+
msgid "Access to customizing WP to Twitter values is not allowed for your user role."
|
599 |
+
msgstr "L'accesso alla personalizzazione dei valori per WP to Twitter non è permessa ad utenti col tuo ruolo."
|
600 |
+
|
601 |
+
#: wp-to-twitter.php:1280
|
602 |
+
msgid "Characters left: "
|
603 |
+
msgstr "Caratteri mancanti:"
|
604 |
+
|
605 |
+
#: wp-to-twitter.php:1341
|
606 |
+
msgid "WP Tweets User Settings"
|
607 |
+
msgstr "Impostazioni utente di WP Tweets"
|
608 |
+
|
609 |
+
#: wp-to-twitter.php:1345
|
610 |
+
msgid "Use My Twitter Username"
|
611 |
+
msgstr "Utilizza il mio nome utente Twitter"
|
612 |
+
|
613 |
+
#: wp-to-twitter.php:1346
|
614 |
+
msgid "Tweet my posts with an @ reference to my username."
|
615 |
+
msgstr "Segnala i miei articoli con un riferimento @ correlato al mio nome utente."
|
616 |
+
|
617 |
+
#: wp-to-twitter.php:1347
|
618 |
+
msgid "Tweet my posts with an @ reference to both my username and to the main site username."
|
619 |
+
msgstr "Segnala i miei articoli con un riferimento @ correlato tanto al mio nome utente per il sito principale quanto al mio nome utente."
|
620 |
+
|
621 |
+
#: wp-to-twitter.php:1351
|
622 |
+
msgid "Your Twitter Username"
|
623 |
+
msgstr "Nome utente Twitter"
|
624 |
+
|
625 |
+
#: wp-to-twitter.php:1352
|
626 |
+
msgid "Enter your own Twitter username."
|
627 |
+
msgstr "Inserisci il tuo nome utente Twitter"
|
628 |
+
|
629 |
+
#: wp-to-twitter.php:1405
|
630 |
+
msgid "Check off categories to tweet"
|
631 |
+
msgstr "Togli la spunta alle categorie per le quali inviare i tweet"
|
632 |
+
|
633 |
+
#: wp-to-twitter.php:1409
|
634 |
+
msgid "Do not tweet posts in checked categories (Reverses default behavior)"
|
635 |
+
msgstr "Non inviare i tweet per le categorie selezionate (Inverte il comportamento di default)"
|
636 |
+
|
637 |
+
#: wp-to-twitter.php:1426
|
638 |
+
msgid "Limits are exclusive. If a post is in one category which should be posted and one category that should not, it will not be posted."
|
639 |
+
msgstr "I limiti sono esclusivi. Se un post è in una categoria che dovrebbe essere inviata ed una che non lo dovrebbe, il Tweet non verrà inviato."
|
640 |
+
|
641 |
+
#: wp-to-twitter.php:1429
|
642 |
+
msgid "Set Categories"
|
643 |
+
msgstr "Imposta le categorie"
|
644 |
+
|
645 |
+
#: wp-to-twitter.php:1451
|
646 |
+
msgid "Settings"
|
647 |
+
msgstr "Impostazioni"
|
648 |
+
|
649 |
+
#: wp-to-twitter.php:1486
|
650 |
+
msgid "<br /><strong>Note:</strong> Please review the <a class=\"thickbox\" href=\"%1$s\">changelog</a> before upgrading."
|
651 |
+
msgstr "<br /><strong>Nota:</strong> Leggi il <a class=\"thickbox\" href=\"%1$s\">changelog</a> prima di aggiornare."
|
652 |
+
|
653 |
+
msgid "WP to Twitter"
|
654 |
+
msgstr "WP to Twitter"
|
655 |
+
|
656 |
+
msgid "http://www.joedolson.com/articles/wp-to-twitter/"
|
657 |
+
msgstr "http://www.joedolson.com/articles/wp-to-twitter/"
|
658 |
+
|
659 |
+
msgid "Posts a Tweet 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."
|
660 |
+
msgstr "Invia un Tweet quanto aggiorni il tuo blog WordPress o il tuo blogroll usando il servizio di abbreviazione URL di tua scelta. Ricco di funzioni per la personalizzazione e la promozione dei tuoi Tweet."
|
661 |
+
|
662 |
+
msgid "Joseph Dolson"
|
663 |
+
msgstr "Joseph Dolson"
|
664 |
+
|
665 |
+
msgid "http://www.joedolson.com/"
|
666 |
+
msgstr "http://www.joedolson.com/"
|
667 |
+
|
668 |
+
#: functions.php:319
|
669 |
+
msgid "Please read the FAQ and other Help documents before making a support request."
|
670 |
+
msgstr "Leggi le FAQ e le documentazioni di aiuto prima di inviare una richiesta di supporto."
|
671 |
+
|
672 |
+
#: functions.php:201
|
673 |
+
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."
|
674 |
+
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."
|
675 |
+
|
676 |
+
#: functions.php:341
|
677 |
+
msgid "Please include your license key in your support request."
|
678 |
+
msgstr "Per favore inserisci il tuo codice di licenza nella richiesta di supporto."
|
679 |
+
|
680 |
+
#: functions.php:321
|
681 |
+
msgid "Please describe your problem. I'm not psychic."
|
682 |
+
msgstr "Descrivi il tuo problema. Grazie."
|
683 |
+
|
684 |
+
#: functions.php:346
|
685 |
+
msgid "<strong>Please note</strong>: I do keep records of those who have donated, but if your donation came from somebody other than your account at this web site, you must note this in your message."
|
686 |
+
msgstr "<strong>Nota</strong>: sebbene conservi un elenco dei donatori e la tua donazione provenisse da un nome differente da quello indicato nel tuo account, ti invito a indicarlo nel tuo messaggio."
|
687 |
+
|
688 |
+
#: functions.php:363
|
689 |
+
msgid "Send Support Request"
|
690 |
+
msgstr "Invia richiesta supporto"
|
691 |
+
|
692 |
+
#: functions.php:366
|
693 |
+
msgid "The following additional information will be sent with your support request:"
|
694 |
+
msgstr "Le seguenti informazioni saranno inviate insieme alla tua richiesta:"
|
695 |
+
|
696 |
+
#: wp-to-twitter-manager.php:40
|
697 |
+
msgid "No error information is available for your shortener."
|
698 |
+
msgstr "Nessuna informazione di errore disponibile per il tuo abbreviatore."
|
699 |
+
|
700 |
+
#: wp-to-twitter-manager.php:42
|
701 |
+
msgid "<li class=\"error\"><strong>WP to Twitter was unable to contact your selected URL shortening service.</strong></li>"
|
702 |
+
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>"
|
703 |
+
|
704 |
+
#: wp-to-twitter-manager.php:45
|
705 |
+
msgid "<li><strong>WP to Twitter successfully contacted your selected URL shortening service.</strong> The following link should point to your blog homepage:"
|
706 |
+
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:"
|
707 |
+
|
708 |
+
#: wp-to-twitter-manager.php:53
|
709 |
+
msgid "<li><strong>WP to Twitter successfully submitted a status update to Twitter.</strong></li>"
|
710 |
+
msgstr "<li><strong>WP to Twitter ha inviato con successo l'aggiornamento dello stato a Twitter.</strong></li>"
|
711 |
+
|
712 |
+
#: wp-to-twitter-manager.php:56
|
713 |
+
msgid "<li class=\"error\"><strong>WP to Twitter failed to submit an update to Twitter.</strong></li>"
|
714 |
+
msgstr "<li class=\"error\"><strong>WP to Twitter non é stato in grado di inviare l'aggiornamento a Twitter.</strong></li>"
|
715 |
+
|
716 |
+
#: wp-to-twitter-manager.php:60
|
717 |
+
msgid "You have not connected WordPress to Twitter."
|
718 |
+
msgstr "Non hai connesso WordPress a Twitter."
|
719 |
+
|
720 |
+
#: wp-to-twitter-manager.php:64
|
721 |
+
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>"
|
722 |
+
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>"
|
723 |
+
|
724 |
+
#: wp-to-twitter-manager.php:68
|
725 |
+
msgid "<li><strong>Your server should run WP to Twitter successfully.</strong></li>"
|
726 |
+
msgstr "<li><strong>WP to Twitter funziona correttamente per il tuo server.</strong></li>"
|
727 |
+
|
728 |
+
#: wp-to-twitter-manager.php:86
|
729 |
+
msgid "WP to Twitter Errors Cleared"
|
730 |
+
msgstr "Gli errori WP to Twitter sono stati azzerati"
|
731 |
+
|
732 |
+
#: wp-to-twitter-manager.php:170
|
733 |
+
msgid "WP to Twitter is now connected with Twitter."
|
734 |
+
msgstr "WP to Twitter é ora connesso a Twitter."
|
735 |
+
|
736 |
+
#: wp-to-twitter-manager.php:184
|
737 |
+
msgid "OAuth Authentication Data Cleared."
|
738 |
+
msgstr "I dati della autentificazione OAuth sono stati svuotati."
|
739 |
+
|
740 |
+
#: wp-to-twitter-manager.php:191
|
741 |
+
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."
|
742 |
+
msgstr "Autentificazione OAuth fallita. L'ora del tuo sever non é sicronizzata con i server di Twitter. Comunica il problema al tuo fornitore di hosting."
|
743 |
+
|
744 |
+
#: wp-to-twitter-manager.php:198
|
745 |
+
msgid "OAuth Authentication response not understood."
|
746 |
+
msgstr "Risposta Autentificazione OAuth non valida."
|
747 |
+
|
748 |
+
#: wp-to-twitter-manager.php:360
|
749 |
+
msgid "WP to Twitter Advanced Options Updated"
|
750 |
+
msgstr "Le opzioni avanzate di WP to Twitter sono state aggiornate"
|
751 |
+
|
752 |
+
#: wp-to-twitter-manager.php:382
|
753 |
+
msgid "You must add your Bit.ly login and API key in order to shorten URLs with Bit.ly."
|
754 |
+
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."
|
755 |
+
|
756 |
+
#: wp-to-twitter-manager.php:386
|
757 |
+
msgid "You must add your YOURLS remote URL, login, and password in order to shorten URLs with a remote installation of YOURLS."
|
758 |
+
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."
|
759 |
+
|
760 |
+
#: wp-to-twitter-manager.php:390
|
761 |
+
msgid "You must add your YOURLS server path in order to shorten URLs with a remote installation of YOURLS."
|
762 |
+
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."
|
763 |
+
|
764 |
+
#: wp-to-twitter-manager.php:393
|
765 |
+
msgid "WP to Twitter Options Updated"
|
766 |
+
msgstr "Le opzioni di WP to Twitter sono state aggiornate"
|
767 |
+
|
768 |
+
#: wp-to-twitter-manager.php:402
|
769 |
+
msgid "Category limits updated."
|
770 |
+
msgstr "I limiti per la categoria sono stati aggiornati."
|
771 |
+
|
772 |
+
#: wp-to-twitter-manager.php:406
|
773 |
+
msgid "Category limits unset."
|
774 |
+
msgstr "Le limitazioni alle categorie non sono state impostate."
|
775 |
+
|
776 |
+
#: wp-to-twitter-manager.php:413
|
777 |
+
msgid "YOURLS password updated. "
|
778 |
+
msgstr "La password di YOURLS é stata aggiornata."
|
779 |
+
|
780 |
+
#: wp-to-twitter-manager.php:416
|
781 |
+
msgid "YOURLS password deleted. You will be unable to use your remote YOURLS account to create short URLS."
|
782 |
+
msgstr "La tua password di YOURLS é stata cancellata. Non potrai utilizzare il tuo account remoto YOURLS per la creazione di URL brevi."
|
783 |
+
|
784 |
+
#: wp-to-twitter-manager.php:418
|
785 |
+
msgid "Failed to save your YOURLS password! "
|
786 |
+
msgstr "Non é stato possibile salvare la tua password di YOURLS!"
|
787 |
+
|
788 |
+
#: wp-to-twitter-manager.php:422
|
789 |
+
msgid "YOURLS username added. "
|
790 |
+
msgstr "Il nome utente YOURLS é stato aggiunto."
|
791 |
+
|
792 |
+
#: wp-to-twitter-manager.php:426
|
793 |
+
msgid "YOURLS API url added. "
|
794 |
+
msgstr "L'url alla API YOURLS é stato aggiunto. "
|
795 |
+
|
796 |
+
#: wp-to-twitter-manager.php:429
|
797 |
+
msgid "YOURLS API url removed. "
|
798 |
+
msgstr "L'url alla API YOURLS é stato rimosso. "
|
799 |
+
|
800 |
+
#: wp-to-twitter-manager.php:434
|
801 |
+
msgid "YOURLS local server path added. "
|
802 |
+
msgstr "Il percorso al server locale di YOURLS é stato aggiunto. "
|
803 |
+
|
804 |
+
#: wp-to-twitter-manager.php:436
|
805 |
+
msgid "The path to your YOURLS installation is not correct. "
|
806 |
+
msgstr "Il percorso alla tua installazione di YOURLS non é corretto. "
|
807 |
+
|
808 |
+
#: wp-to-twitter-manager.php:440
|
809 |
+
msgid "YOURLS local server path removed. "
|
810 |
+
msgstr "Il percorso al server locale di YOURLS é stato rimosso. "
|
811 |
+
|
812 |
+
#: wp-to-twitter-manager.php:445
|
813 |
+
msgid "YOURLS will use Post ID for short URL slug."
|
814 |
+
msgstr "YOURLS utilizzerà Post ID per lo slug degli URL brevi."
|
815 |
+
|
816 |
+
#: wp-to-twitter-manager.php:447
|
817 |
+
msgid "YOURLS will use your custom keyword for short URL slug."
|
818 |
+
msgstr "YOURLS utilizzerà la tua keyword personalizzata per lo slug degli URL brevi."
|
819 |
+
|
820 |
+
#: wp-to-twitter-manager.php:451
|
821 |
+
msgid "YOURLS will not use Post ID for the short URL slug."
|
822 |
+
msgstr "YOURLS non utilizzerà Post ID per lo slug degli URL brevi."
|
823 |
+
|
824 |
+
#: wp-to-twitter-manager.php:459
|
825 |
+
msgid "Su.pr API Key and Username Updated"
|
826 |
+
msgstr "La chiave API ed il nome utente di Su.pr sono stati aggiornati"
|
827 |
+
|
828 |
+
#: wp-to-twitter-manager.php:463
|
829 |
+
msgid "Su.pr API Key and username deleted. Su.pr URLs created by WP to Twitter will no longer be associated with your account. "
|
830 |
+
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. "
|
831 |
+
|
832 |
+
#: wp-to-twitter-manager.php:465
|
833 |
+
msgid "Su.pr API Key not added - <a href='http://su.pr/'>get one here</a>! "
|
834 |
+
msgstr "Non é stata inserita la chiave API di Su.pr - <a href='http://su.pr/'>vai qui</a>! "
|
835 |
+
|
836 |
+
#: wp-to-twitter-manager.php:471
|
837 |
+
msgid "Bit.ly API Key Updated."
|
838 |
+
msgstr "La chiave API di Bit.ly é stata aggiornata."
|
839 |
+
|
840 |
+
#: wp-to-twitter-manager.php:474
|
841 |
+
msgid "Bit.ly API Key deleted. You cannot use the Bit.ly API without an API key. "
|
842 |
+
msgstr "La chiave API di Bit.ly é stata cancellata. Non puoi utilizzare la API di Bit.ly senza la chiave API. "
|
843 |
+
|
844 |
+
#: wp-to-twitter-manager.php:476
|
845 |
+
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."
|
846 |
+
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."
|
847 |
+
|
848 |
+
#: wp-to-twitter-manager.php:480
|
849 |
+
msgid " Bit.ly User Login Updated."
|
850 |
+
msgstr " Il login utente per Bit.ly é stato aggiornato."
|
851 |
+
|
852 |
+
#: wp-to-twitter-manager.php:483
|
853 |
+
msgid "Bit.ly User Login deleted. You cannot use the Bit.ly API without providing your username. "
|
854 |
+
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. "
|
855 |
+
|
856 |
+
#: wp-to-twitter-manager.php:485
|
857 |
+
msgid "Bit.ly Login not added - <a href='http://bit.ly/account/'>get one here</a>! "
|
858 |
+
msgstr "Non sono stati inseriti i dati per il login a Bit.ly - <a href='http://bit.ly/account/'>vai qui</a>! "
|
859 |
+
|
860 |
+
#: wp-to-twitter-manager.php:501
|
861 |
+
msgid "<p>One or more of your last posts has failed to send a status update to Twitter. The Tweet has been saved, and you can re-Tweet it at your leisure.</p>"
|
862 |
+
msgstr "<p>Uno o più dei tuoi ultimi post ha fallito nell'inviare la richiesta di aggiornamento di stato a Twitter. Il Tweet comunque è stato salvato e puoi inviarlo nuovamente quando ti è più comodo.</p>"
|
863 |
+
|
864 |
+
#: wp-to-twitter-manager.php:507
|
865 |
+
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. "
|
866 |
+
msgstr "Non é stato possibile contattare i server di Twitter per comunicare il tuo <strong>nuovo link</strong>. Prova a compiere manualmente l'operazione."
|
867 |
+
|
868 |
+
#: wp-to-twitter-manager.php:510
|
869 |
+
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.</p>"
|
870 |
+
msgstr "<p>La richiesta alle API per il servizio di abbreviazione degli URL è fallita e quindi il tuo URL non è stato abbreviato. L'url esteso al tuo post è stato allegato al tuo Tweet. Contatta il tuo fornitore di URL abbreviati per verificare se ci sono problemi col servizio.</p>"
|
871 |
+
|
872 |
+
#: wp-to-twitter-manager.php:516
|
873 |
+
msgid "Clear 'WP to Twitter' Error Messages"
|
874 |
+
msgstr "Svuota i messaggiodi errore 'WP to Twitter'"
|
875 |
+
|
876 |
+
#: wp-to-twitter-manager.php:523
|
877 |
+
msgid "WP to Twitter Options"
|
878 |
+
msgstr "Opzioni WP to Twitter"
|
879 |
+
|
880 |
+
#: wp-to-twitter-manager.php:536
|
881 |
+
msgid "Basic Settings"
|
882 |
+
msgstr "Impostazioni di base"
|
883 |
+
|
884 |
+
#: wp-to-twitter-manager.php:542 wp-to-twitter-manager.php:606
|
885 |
+
msgid "Save WP->Twitter Options"
|
886 |
+
msgstr "Salva le opzioni WP->Twitter"
|
887 |
+
|
888 |
+
#: wp-to-twitter-manager.php:586
|
889 |
+
msgid "Settings for Comments"
|
890 |
+
msgstr "Impostazioni commenti"
|
891 |
+
|
892 |
+
#: wp-to-twitter-manager.php:589
|
893 |
+
msgid "Update Twitter when new comments are posted"
|
894 |
+
msgstr "Aggiorna Twitter quando vengono inviati nuovi commenti"
|
895 |
+
|
896 |
+
#: wp-to-twitter-manager.php:590
|
897 |
+
msgid "Text for new comments:"
|
898 |
+
msgstr "Testo per nuovi commenti:"
|
899 |
+
|
900 |
+
#: wp-to-twitter-manager.php:595
|
901 |
+
msgid "Settings for Links"
|
902 |
+
msgstr "Impostazioni link"
|
903 |
+
|
904 |
+
#: wp-to-twitter-manager.php:598
|
905 |
+
msgid "Update Twitter when you post a Blogroll link"
|
906 |
+
msgstr "Aggiorna Twitter quando viene aggiunto un nuovo link al blogroll"
|
907 |
+
|
908 |
+
#: wp-to-twitter-manager.php:599
|
909 |
+
msgid "Text for new link updates:"
|
910 |
+
msgstr "Testo per gli aggiornamenti di un nuovo link:"
|
911 |
+
|
912 |
+
#: wp-to-twitter-manager.php:599
|
913 |
+
msgid "Available shortcodes: <code>#url#</code>, <code>#title#</code>, and <code>#description#</code>."
|
914 |
+
msgstr "Shortcode disponibili: <code>#url#</code>, <code>#title#</code> e <code>#description#</code>."
|
915 |
+
|
916 |
+
#: wp-to-twitter-manager.php:546
|
917 |
+
msgid "Don't shorten URLs."
|
918 |
+
msgstr "Non usare gli URL brevi"
|
919 |
+
|
920 |
+
#: wp-to-twitter-manager.php:614
|
921 |
+
msgid "<abbr title=\"Uniform Resource Locator\">URL</abbr> Shortener Account Settings"
|
922 |
+
msgstr "Impostazione account abbreviatore <abbr title=\"Uniform Resource Locator\">URL</abbr>"
|
923 |
+
|
924 |
+
#: wp-to-twitter-manager.php:618
|
925 |
+
msgid "Your Su.pr account details"
|
926 |
+
msgstr "Dati account Su.pr"
|
927 |
+
|
928 |
+
#: wp-to-twitter-manager.php:622
|
929 |
+
msgid "Your Su.pr Username:"
|
930 |
+
msgstr "Nome utente Su.pr:"
|
931 |
+
|
932 |
+
#: wp-to-twitter-manager.php:626
|
933 |
+
msgid "Your Su.pr <abbr title='application programming interface'>API</abbr> Key:"
|
934 |
+
msgstr "La tua chiave <abbr title='application programming interface'>API</abbr> di Su.pr:"
|
935 |
+
|
936 |
+
#: wp-to-twitter-manager.php:633
|
937 |
+
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."
|
938 |
+
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."
|
939 |
+
|
940 |
+
#: wp-to-twitter-manager.php:639
|
941 |
+
msgid "Your Bit.ly account details"
|
942 |
+
msgstr "Dati account Bit.ly"
|
943 |
+
|
944 |
+
#: wp-to-twitter-manager.php:643
|
945 |
+
msgid "Your Bit.ly username:"
|
946 |
+
msgstr "Nome utente Bit.ly:"
|
947 |
+
|
948 |
+
#: wp-to-twitter-manager.php:647
|
949 |
+
msgid "Your Bit.ly <abbr title='application programming interface'>API</abbr> Key:"
|
950 |
+
msgstr "La tua chiave <abbr title='application programming interface'>API</abbr> di Bit.ly:"
|
951 |
+
|
952 |
+
#: wp-to-twitter-manager.php:655
|
953 |
+
msgid "Save Bit.ly API Key"
|
954 |
+
msgstr "Salva la chiave API di Bit.ly"
|
955 |
+
|
956 |
+
#: wp-to-twitter-manager.php:655
|
957 |
+
msgid "Clear Bit.ly API Key"
|
958 |
+
msgstr "Svuota la chiave API di Bit.ly"
|
959 |
+
|
960 |
+
#: wp-to-twitter-manager.php:655
|
961 |
+
msgid "A Bit.ly API key and username is required to shorten URLs via the Bit.ly API and WP to Twitter."
|
962 |
+
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."
|
963 |
+
|
964 |
+
#: wp-to-twitter-manager.php:661
|
965 |
+
msgid "Your YOURLS account details"
|
966 |
+
msgstr "I dettagli del tuo account YOURLS"
|
967 |
+
|
968 |
+
#: wp-to-twitter-manager.php:665
|
969 |
+
msgid "Path to your YOURLS config file (Local installations)"
|
970 |
+
msgstr "Percorso al file di configurazione YOURLS (installazioni locali)"
|
971 |
+
|
972 |
+
#: wp-to-twitter-manager.php:666 wp-to-twitter-manager.php:670
|
973 |
+
msgid "Example:"
|
974 |
+
msgstr "Esempio:"
|
975 |
+
|
976 |
+
#: wp-to-twitter-manager.php:669
|
977 |
+
msgid "URI to the YOURLS API (Remote installations)"
|
978 |
+
msgstr "URI alla API di YOURLS (installazioni remote)"
|
979 |
+
|
980 |
+
#: wp-to-twitter-manager.php:673
|
981 |
+
msgid "Your YOURLS username:"
|
982 |
+
msgstr "Nome utente YOURLS:"
|
983 |
+
|
984 |
+
#: wp-to-twitter-manager.php:677
|
985 |
+
msgid "Your YOURLS password:"
|
986 |
+
msgstr "Password YOURLS:"
|
987 |
+
|
988 |
+
#: wp-to-twitter-manager.php:677
|
989 |
+
msgid "<em>Saved</em>"
|
990 |
+
msgstr "<em>Salvato</em>"
|
991 |
+
|
992 |
+
#: wp-to-twitter-manager.php:681
|
993 |
+
msgid "Post ID for YOURLS url slug."
|
994 |
+
msgstr "ID post per lo slug degli url di YOURLS."
|
995 |
+
|
996 |
+
#: wp-to-twitter-manager.php:682
|
997 |
+
msgid "Custom keyword for YOURLS url slug."
|
998 |
+
msgstr "Keyword personalizzata per lo slug degli url di YOURLS."
|
999 |
+
|
1000 |
+
#: wp-to-twitter-manager.php:683
|
1001 |
+
msgid "Default: sequential URL numbering."
|
1002 |
+
msgstr "Predefinito: numerazione sequenziale URL."
|
1003 |
+
|
1004 |
+
#: wp-to-twitter-manager.php:689
|
1005 |
+
msgid "Save YOURLS Account Info"
|
1006 |
+
msgstr "Salva le info account di YOURLS"
|
1007 |
+
|
1008 |
+
#: wp-to-twitter-manager.php:689
|
1009 |
+
msgid "Clear YOURLS password"
|
1010 |
+
msgstr "Svuota la password di YOURLS"
|
1011 |
+
|
1012 |
+
#: wp-to-twitter-manager.php:689
|
1013 |
+
msgid "A YOURLS password and username is required to shorten URLs via the remote YOURLS API and WP to Twitter."
|
1014 |
+
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."
|
1015 |
+
|
1016 |
+
#: wp-to-twitter-manager.php:702
|
1017 |
+
msgid "Advanced Settings"
|
1018 |
+
msgstr "Impostazioni avanzate"
|
1019 |
+
|
1020 |
+
#: wp-to-twitter-manager.php:707 wp-to-twitter-manager.php:872
|
1021 |
+
msgid "Save Advanced WP->Twitter Options"
|
1022 |
+
msgstr "Salva avanzate WP->Opzioni Twitter"
|
1023 |
+
|
1024 |
+
#: wp-to-twitter-manager.php:709
|
1025 |
+
msgid "Advanced Tweet settings"
|
1026 |
+
msgstr "Opzioni messaggio avanzate"
|
1027 |
+
|
1028 |
+
#: wp-to-twitter-manager.php:711
|
1029 |
+
msgid "Strip nonalphanumeric characters from tags"
|
1030 |
+
msgstr "Rimuovi i caratteri non alfanumerici dai tag"
|
1031 |
+
|
1032 |
+
#: wp-to-twitter-manager.php:712
|
1033 |
+
msgid "Spaces in tags replaced with:"
|
1034 |
+
msgstr "Sostituisci gli spazi trai tag con:"
|
1035 |
+
|
1036 |
+
#: wp-to-twitter-manager.php:714
|
1037 |
+
msgid "Default replacement is an underscore (<code>_</code>). Use <code>[ ]</code> to remove spaces entirely."
|
1038 |
+
msgstr "Il sostituto predefinito é un trattino breve (<code>_</code>). Usa <code>[ ]</code> per rimuovere gli spazi completamente."
|
1039 |
+
|
1040 |
+
#: wp-to-twitter-manager.php:717
|
1041 |
+
msgid "Maximum number of tags to include:"
|
1042 |
+
msgstr "Numero massimo di tag da includere:"
|
1043 |
+
|
1044 |
+
#: wp-to-twitter-manager.php:718
|
1045 |
+
msgid "Maximum length in characters for included tags:"
|
1046 |
+
msgstr "Lunghezza massima in caratteri per i tag inclusi:"
|
1047 |
+
|
1048 |
+
#: wp-to-twitter-manager.php:719
|
1049 |
+
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."
|
1050 |
+
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."
|
1051 |
+
|
1052 |
+
#: wp-to-twitter-manager.php:722
|
1053 |
+
msgid "Length of post excerpt (in characters):"
|
1054 |
+
msgstr "Lunghezza riassunto messaggi (in caratteri)"
|
1055 |
+
|
1056 |
+
#: wp-to-twitter-manager.php:722
|
1057 |
+
msgid "By default, extracted from the post itself. If you use the 'Excerpt' field, that will be used instead."
|
1058 |
+
msgstr "Come funzione predefinita, gli estratti verranno generati in automatico. Utilizzassi il campo 'Excerpt', questi avrà la priorità."
|
1059 |
+
|
1060 |
+
#: wp-to-twitter-manager.php:725
|
1061 |
+
msgid "WP to Twitter Date Formatting:"
|
1062 |
+
msgstr "Formattazione data WP to Twitter:"
|
1063 |
+
|
1064 |
+
#: wp-to-twitter-manager.php:726
|
1065 |
+
msgid "Default is from your general settings. <a href='http://codex.wordpress.org/Formatting_Date_and_Time'>Date Formatting Documentation</a>."
|
1066 |
+
msgstr "Predefinito dalle impostazioni generali. <a href='http://codex.wordpress.org/Formatting_Date_and_Time'>Info formattazione data</a>."
|
1067 |
+
|
1068 |
+
#: wp-to-twitter-manager.php:730
|
1069 |
+
msgid "Custom text before all Tweets:"
|
1070 |
+
msgstr "Testo personalizzato prima di tutti i messaggi:"
|
1071 |
+
|
1072 |
+
#: wp-to-twitter-manager.php:731
|
1073 |
+
msgid "Custom text after all Tweets:"
|
1074 |
+
msgstr "Testo personalizzato dopo tutti i messaggi:"
|
1075 |
+
|
1076 |
+
#: wp-to-twitter-manager.php:734
|
1077 |
+
msgid "Custom field for an alternate URL to be shortened and Tweeted:"
|
1078 |
+
msgstr "Campo personalizzato riferito ad un URL alternativo da abbreviare ed inviare a Twitter:"
|
1079 |
+
|
1080 |
+
#: wp-to-twitter-manager.php:735
|
1081 |
+
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."
|
1082 |
+
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."
|
1083 |
+
|
1084 |
+
#: wp-to-twitter-manager.php:758
|
1085 |
+
msgid "Preferred status update truncation sequence"
|
1086 |
+
msgstr "Sequenza di troncamento preferita per l'aggiornamento dello stato"
|
1087 |
+
|
1088 |
+
#: wp-to-twitter-manager.php:761
|
1089 |
+
msgid "This is the order in which items will be abbreviated or removed from your status update if it is too long to send to Twitter."
|
1090 |
+
msgstr "Questo è l'ordine in cui gli oggetti verranno abbreviati o rimossi dal tuo aggiornamento di status se esso è troppo lungo da inviare a Twitter."
|
1091 |
+
|
1092 |
+
#: wp-to-twitter-manager.php:766
|
1093 |
+
msgid "Special Cases when WordPress should send a Tweet"
|
1094 |
+
msgstr "Casi particolari nei quali WordPress dovrebbe inviare un messaggio"
|
1095 |
+
|
1096 |
+
#: wp-to-twitter-manager.php:769
|
1097 |
+
msgid "Do not post Tweets by default"
|
1098 |
+
msgstr "Di default non inviare i Tweet"
|
1099 |
+
|
1100 |
+
#: wp-to-twitter-manager.php:772
|
1101 |
+
msgid "By default, all posts meeting other requirements will be posted to Twitter. Check this to change your setting."
|
1102 |
+
msgstr "Come funzione predefinita, tutti i post che soddisfano i requisiti saranno pubblicati su Twitter. Metti il segno di spunta per modificare le impostazioni."
|
1103 |
+
|
1104 |
+
#: wp-to-twitter-manager.php:776
|
1105 |
+
msgid "Allow status updates from Quick Edit"
|
1106 |
+
msgstr "Permetti aggiornamenti stato via Quick Edit"
|
1107 |
+
|
1108 |
+
#: wp-to-twitter-manager.php:777
|
1109 |
+
msgid "If checked, all posts edited individually or in bulk through the Quick Edit feature will be Tweeted."
|
1110 |
+
msgstr "Se selezionata, tutti i post modificati uno per uno o in gruppo attraverso la funzione di Modifica veloce verranno inviati come Tweet."
|
1111 |
+
|
1112 |
+
#: wp-to-twitter-manager.php:782
|
1113 |
+
msgid "Delaying tweets with WP Tweets PRO moves Tweeting to an publishing-independent action."
|
1114 |
+
msgstr "Ritardare i tweet con WP Tweets PRO sposta i Tweet verso un'azione di pubblicazione indipendente."
|
1115 |
+
|
1116 |
+
#: wp-to-twitter-manager.php:789
|
1117 |
+
msgid "Send Twitter Updates on remote publication (Post by Email or XMLRPC Client)"
|
1118 |
+
msgstr "Invio degli aggiornamenti di Twitter via punti di pubblicazione remoti (Email o client XMLRPC)"
|
1119 |
+
|
1120 |
+
#: wp-to-twitter-manager.php:794
|
1121 |
+
msgid "Google Analytics Settings"
|
1122 |
+
msgstr "Impostazioni Google Analytics"
|
1123 |
+
|
1124 |
+
#: wp-to-twitter-manager.php:795
|
1125 |
+
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."
|
1126 |
+
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."
|
1127 |
+
|
1128 |
+
#: wp-to-twitter-manager.php:799
|
1129 |
+
msgid "Use a Static Identifier with WP-to-Twitter"
|
1130 |
+
msgstr "Utilizza un identificatore statico per WP-to-Twitter"
|
1131 |
+
|
1132 |
+
#: wp-to-twitter-manager.php:800
|
1133 |
+
msgid "Static Campaign identifier for Google Analytics:"
|
1134 |
+
msgstr "Identificatore statico Google Analytics:"
|
1135 |
+
|
1136 |
+
#: wp-to-twitter-manager.php:804
|
1137 |
+
msgid "Use a dynamic identifier with Google Analytics and WP-to-Twitter"
|
1138 |
+
msgstr "Utilizza un identificatore dinamico per Google Analytics e WP-to-Twitter"
|
1139 |
+
|
1140 |
+
#: wp-to-twitter-manager.php:805
|
1141 |
+
msgid "What dynamic identifier would you like to use?"
|
1142 |
+
msgstr "Quale identificatore dinamico desideri utilizzare?"
|
1143 |
+
|
1144 |
+
#: wp-to-twitter-manager.php:807
|
1145 |
+
msgid "Category"
|
1146 |
+
msgstr "Categoria"
|
1147 |
+
|
1148 |
+
#: wp-to-twitter-manager.php:808
|
1149 |
+
msgid "Post ID"
|
1150 |
+
msgstr "ID post"
|
1151 |
+
|
1152 |
+
#: wp-to-twitter-manager.php:809
|
1153 |
+
msgid "Post Title"
|
1154 |
+
msgstr "Titolo post"
|
1155 |
+
|
1156 |
+
#: wp-to-twitter-manager.php:810
|
1157 |
+
msgid "Author"
|
1158 |
+
msgstr "Autore"
|
wp-to-twitter-ja.mo → lang/wp-to-twitter-ja.mo
RENAMED
File without changes
|
wp-to-twitter-ja.po → lang/wp-to-twitter-ja.po
RENAMED
File without changes
|
wp-to-twitter-lt_LT.mo → lang/wp-to-twitter-lt_LT.mo
RENAMED
File without changes
|
wp-to-twitter-lt_LT.po → lang/wp-to-twitter-lt_LT.po
RENAMED
File without changes
|
lang/wp-to-twitter-nl_NL.mo
ADDED
Binary file
|
lang/wp-to-twitter-nl_NL.po
ADDED
@@ -0,0 +1,1095 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of WP to Twitter in Dutch
|
2 |
+
# This file is distributed under the same license as the WP to Twitter package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2012-08-30 22:09:56+0000\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/0.1\n"
|
11 |
+
"Project-Id-Version: WP to Twitter\n"
|
12 |
+
|
13 |
+
#: wp-to-twitter-manager.php:860
|
14 |
+
msgid "Upgrade to <strong>WP Tweets PRO</strong> for more options!"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: wp-to-twitter-manager.php:889
|
18 |
+
msgid "<code>#reference#</code>: Used only in co-tweeting. @reference to main account when posted to author account, @reference to author account in post to main account."
|
19 |
+
msgstr ""
|
20 |
+
|
21 |
+
#: wp-to-twitter-oauth.php:168
|
22 |
+
msgid "Connection Problems? Try <a href='#wpt_http'>switching to <code>http</code> queries</a>.<br />"
|
23 |
+
msgstr ""
|
24 |
+
|
25 |
+
#: wp-to-twitter-oauth.php:260
|
26 |
+
msgid "WP to Twitter could not contact Twitter's remote server. Here is the error triggered: "
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: wp-to-twitter.php:251
|
30 |
+
msgid "This account is not authorized to post to Twitter."
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: wp-to-twitter.php:259
|
34 |
+
msgid "This tweet is identical to another Tweet recently sent to this account."
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: wp-to-twitter.php:1215
|
38 |
+
msgid "WP to Twitter can do more for you! Take a look at WP Tweets Pro!"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: wp-to-twitter-manager.php:502
|
42 |
+
msgid "In addition to the above short tags, comment templates can use <code>#commenter#</code> to post the commenter's provided name in the Tweet. <em>Use this feature at your own risk</em>, as it will let anybody who can post a comment on your site post a phrase in your Twitter stream."
|
43 |
+
msgstr "In aanvulling op bovenstaande verkorte tags, comment templates kunnen <code>#commenter#</code> bevatten om de opgegeven naam van de commentator in de Tweet op te nemen. <em>Het gebruik van deze mogelijkheid is op eigen risico!</em>, omdat het iedereen die op uw blog kan reageren, de mogelijkheid biedt teksten via uw Twitterfeed te verspreiden."
|
44 |
+
|
45 |
+
#: wp-to-twitter-manager.php:540
|
46 |
+
msgid "(optional)"
|
47 |
+
msgstr "(optioneel)"
|
48 |
+
|
49 |
+
#: wp-to-twitter-manager.php:689
|
50 |
+
msgid "Do not post Tweets by default (editing only)"
|
51 |
+
msgstr "Post tweets niet als default waarde (alleen bij editing)"
|
52 |
+
|
53 |
+
#: wp-to-twitter-manager.php:883
|
54 |
+
msgid "<code>#modified#</code>: the post modified date"
|
55 |
+
msgstr "<code>#modified#</code>: tijdstip waarop post is aangepast"
|
56 |
+
|
57 |
+
#: wp-to-twitter-oauth.php:258
|
58 |
+
msgid "Your time stamps are more than 5 minutes apart. Your server could lose its connection with Twitter."
|
59 |
+
msgstr "Er zit meer dan 5 minuten verschil tussen uw server en Twitter. Uw server connectie met Twitter kan hierdoor verbroken worden."
|
60 |
+
|
61 |
+
#: wp-to-twitter.php:1269
|
62 |
+
msgid "Twitter posts are a maximum of 140 characters; Twitter counts URLs as 19 characters. Template tags: <code>#url#</code>, <code>#title#</code>, <code>#post#</code>, <code>#category#</code>, <code>#date#</code>, <code>#modified#</code>, <code>#author#</code>, <code>#account#</code>, <code>#tags#</code>, or <code>#blog#</code>."
|
63 |
+
msgstr "Twitter posts zijn max. 140 karakters; Twitter telt URLs als 19 karakters. Template tags: <code>#url#</code>, <code>#title#</code>, <code>#post#</code>, <code>#category#</code>, <code>#date#</code>, <code>#modified#</code>, <code>#author#</code>, <code>#account#</code>, <code>#tags#</code>, or <code>#blog#</code>."
|
64 |
+
|
65 |
+
#: wp-to-twitter-manager.php:733
|
66 |
+
msgid "Individual Authors"
|
67 |
+
msgstr "Individuele Auteurs"
|
68 |
+
|
69 |
+
#: wp-to-twitter-manager.php:736
|
70 |
+
msgid "Authors have individual Twitter accounts"
|
71 |
+
msgstr ""
|
72 |
+
"Auteurs hebben individuele Twitter accounts\n"
|
73 |
+
"-alternatief-\n"
|
74 |
+
"Auteurs hebben afzonderlijkse Twitter accounts"
|
75 |
+
|
76 |
+
#: wp-to-twitter-manager.php:736
|
77 |
+
msgid "Authors can add their username in their user profile. This feature can only add an @reference to the author. The @reference is placed using the <code>#account#</code> shortcode, which will pick up the main account if user accounts are not enabled."
|
78 |
+
msgstr ""
|
79 |
+
"Auteurs kunnen hun gebruikersnaam aan hun gebruikersprofiel toevoegen. Deze functie voegt\n"
|
80 |
+
"alleen een @verwijzing naar de auteur toe. De @verwijzing wordt toegepast met behulp van\n"
|
81 |
+
"de <code>#account#</code> shortcode, die voor het hoofdaccount kiest als er geen\n"
|
82 |
+
"gebruikersaccounts zijn ingeschakeld."
|
83 |
+
|
84 |
+
#: wp-to-twitter-manager.php:751
|
85 |
+
msgid "Choose the lowest user group that can add their Twitter information"
|
86 |
+
msgstr ""
|
87 |
+
"\n"
|
88 |
+
"Kies de laagste /usergroup/gebruikersgroep die hun Twitter informatie kunnen toevoegen"
|
89 |
+
|
90 |
+
#: wp-to-twitter-manager.php:756
|
91 |
+
msgid "Choose the lowest user group that can see the Custom Tweet options when posting"
|
92 |
+
msgstr "Kies de laagste gebruikersgroep die de Custom Tweet opties kunnen zijn tijdens het posten"
|
93 |
+
|
94 |
+
#: wp-to-twitter-manager.php:761
|
95 |
+
msgid "User groups above this can toggle the Tweet/Don't Tweet option, but not see other custom tweet options."
|
96 |
+
msgstr "Gebruikersgroepen boven deze kunt kiezen voor de Tweet / Tweet Niet optie, maar zien niet de andere tweet opties"
|
97 |
+
|
98 |
+
#: wp-to-twitter-manager.php:767
|
99 |
+
msgid "Disable Error Messages"
|
100 |
+
msgstr "Uitschakelen Foutmeldingen"
|
101 |
+
|
102 |
+
#: wp-to-twitter-manager.php:769
|
103 |
+
msgid "Disable global URL shortener error messages."
|
104 |
+
msgstr "Uitschakelen globale URL verkorter foutmeldingen."
|
105 |
+
|
106 |
+
#: wp-to-twitter-manager.php:770
|
107 |
+
msgid "Disable global Twitter API error messages."
|
108 |
+
msgstr "Uitschakelen globale Twitter API foutmeldingen."
|
109 |
+
|
110 |
+
#: wp-to-twitter-manager.php:771
|
111 |
+
msgid "Disable notification to implement OAuth"
|
112 |
+
msgstr "Uitschakelen melding om OAuth te implementeren"
|
113 |
+
|
114 |
+
#: wp-to-twitter-manager.php:773
|
115 |
+
msgid "Get Debugging Data for OAuth Connection"
|
116 |
+
msgstr "Verkrijg debugging data voor OAuth connectie"
|
117 |
+
|
118 |
+
#: wp-to-twitter-manager.php:775
|
119 |
+
msgid "Switch to <code>http</code> connection. (Default is https)"
|
120 |
+
msgstr "kies voor <code>http</code> connectie (Default is https) "
|
121 |
+
|
122 |
+
#: wp-to-twitter-manager.php:777
|
123 |
+
msgid "I made a donation, so stop whinging at me, please."
|
124 |
+
msgstr "Ik heb al een donatie gemaakt, dus stop a.u.b. met zeuren."
|
125 |
+
|
126 |
+
#: wp-to-twitter-manager.php:791
|
127 |
+
msgid "Limit Updating Categories"
|
128 |
+
msgstr "Limiteer Updaten Categorieën"
|
129 |
+
|
130 |
+
#: wp-to-twitter-manager.php:794
|
131 |
+
msgid "If no categories are checked, limiting by category will be ignored, and all categories will be Tweeted."
|
132 |
+
msgstr "Als er geen categorieën worden gekozen, werkt limiteren per categorie niet zullen alle categorieën getweet worden"
|
133 |
+
|
134 |
+
#: wp-to-twitter-manager.php:795
|
135 |
+
msgid "<em>Category limits are disabled.</em>"
|
136 |
+
msgstr "<em>Categorie limieten zijn uitgeschakeld.</em>"
|
137 |
+
|
138 |
+
#: wp-to-twitter-manager.php:804
|
139 |
+
msgid "Get Plug-in Support"
|
140 |
+
msgstr "Vraag Plug-in Support "
|
141 |
+
|
142 |
+
#: wp-to-twitter-manager.php:807
|
143 |
+
msgid "Support requests without a donation will not be answered, but will be treated as bug reports."
|
144 |
+
msgstr "Verzoeken voor support zonder donatie worden niet beantwoord, maar beschouwd als een bug rapport"
|
145 |
+
|
146 |
+
#: wp-to-twitter-manager.php:818
|
147 |
+
msgid "Check Support"
|
148 |
+
msgstr "Ondersteuning Raadplegen"
|
149 |
+
|
150 |
+
#: wp-to-twitter-manager.php:818
|
151 |
+
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."
|
152 |
+
msgstr "Selecteer of je server <a href=\"http://www.joedolson.com/articles/wp-to-twitter/\">WP to Twitter's</a> queries ondersteund naar de Twitter en URL verkorter API's. Deze test zal een status update sturen naar Twitter en een URL verkorten met gebruik van jouw geselecteerde methodes."
|
153 |
+
|
154 |
+
#: wp-to-twitter-manager.php:829
|
155 |
+
msgid "Support WP to Twitter"
|
156 |
+
msgstr "Support WP to Twitter "
|
157 |
+
|
158 |
+
#: wp-to-twitter-manager.php:831
|
159 |
+
msgid "WP to Twitter Support"
|
160 |
+
msgstr "WP to Twitter Support "
|
161 |
+
|
162 |
+
#: wp-to-twitter-manager.php:835
|
163 |
+
msgid "View Settings"
|
164 |
+
msgstr "bekijk instellingen"
|
165 |
+
|
166 |
+
#: wp-to-twitter-manager.php:837 wp-to-twitter.php:1273 wp-to-twitter.php:1275
|
167 |
+
msgid "Get Support"
|
168 |
+
msgstr "Verkrijg Ondersteuning"
|
169 |
+
|
170 |
+
#: wp-to-twitter-manager.php:841
|
171 |
+
msgid "<a href=\"http://www.joedolson.com/donate.php\">Make a donation today!</a> Every donation counts - donate $2, $10, or $100 and help me keep this plug-in running!"
|
172 |
+
msgstr "<a href=\"http://www.joedolson.com/donate.php\">Maak vandaag nog een donatie!!</a> Elke donatie telt - geef $2, $10, of $100 en help me deze plug-in te onderhouden"
|
173 |
+
|
174 |
+
#: wp-to-twitter-manager.php:858
|
175 |
+
msgid "Upgrade Now!"
|
176 |
+
msgstr "Upgrade nu!"
|
177 |
+
|
178 |
+
#: wp-to-twitter-manager.php:861
|
179 |
+
msgid "Extra features with the PRO upgrade:"
|
180 |
+
msgstr "Extra features van de PRO upgrade: "
|
181 |
+
|
182 |
+
#: wp-to-twitter-manager.php:863
|
183 |
+
msgid "Users can post to their own Twitter accounts"
|
184 |
+
msgstr "Users kunnen posten via hun eigen Twitter accounts "
|
185 |
+
|
186 |
+
#: wp-to-twitter-manager.php:864
|
187 |
+
msgid "Set a timer to send your Tweet minutes or hours after you publish the post"
|
188 |
+
msgstr "Stel de timer in om uw Tweet minuten of uren te versturen na publicatie van de post"
|
189 |
+
|
190 |
+
#: wp-to-twitter-manager.php:865
|
191 |
+
msgid "Automatically re-send Tweets at an assigned time after publishing"
|
192 |
+
msgstr "Verzend Tweets automatisch opnieuw op een zelfgekozen tijdstip na publicatie"
|
193 |
+
|
194 |
+
#: wp-to-twitter-manager.php:874
|
195 |
+
msgid "Shortcodes"
|
196 |
+
msgstr "Shortcodes"
|
197 |
+
|
198 |
+
#: wp-to-twitter-manager.php:876
|
199 |
+
msgid "Available in post update templates:"
|
200 |
+
msgstr "Beschikbaar in post update templates"
|
201 |
+
|
202 |
+
#: wp-to-twitter-manager.php:878
|
203 |
+
msgid "<code>#title#</code>: the title of your blog post"
|
204 |
+
msgstr "<code>#title#</code>: de titel van je blog bericht"
|
205 |
+
|
206 |
+
#: wp-to-twitter-manager.php:879
|
207 |
+
msgid "<code>#blog#</code>: the title of your blog"
|
208 |
+
msgstr "<code>#blog#</code>: de titel van je blog"
|
209 |
+
|
210 |
+
#: wp-to-twitter-manager.php:880
|
211 |
+
msgid "<code>#post#</code>: a short excerpt of the post content"
|
212 |
+
msgstr "<code>#post#</code>: een korte samenvatting van het bericht"
|
213 |
+
|
214 |
+
#: wp-to-twitter-manager.php:881
|
215 |
+
msgid "<code>#category#</code>: the first selected category for the post"
|
216 |
+
msgstr "<code>#category#</code>: de eerste geselecteerde categorie voor het bericht"
|
217 |
+
|
218 |
+
#: wp-to-twitter-manager.php:882
|
219 |
+
msgid "<code>#date#</code>: the post date"
|
220 |
+
msgstr "<code>#date#</code>: de bericht datum"
|
221 |
+
|
222 |
+
#: wp-to-twitter-manager.php:884
|
223 |
+
msgid "<code>#url#</code>: the post URL"
|
224 |
+
msgstr "<code>#url#</code>: de bericht URL"
|
225 |
+
|
226 |
+
#: wp-to-twitter-manager.php:885
|
227 |
+
msgid "<code>#author#</code>: the post author"
|
228 |
+
msgstr "<code>#author#</code>: de bericht auteur"
|
229 |
+
|
230 |
+
#: wp-to-twitter-manager.php:886
|
231 |
+
msgid "<code>#account#</code>: the twitter @reference for the account (or the author, if author settings are enabled and set.)"
|
232 |
+
msgstr "<code>#account#</ code>: de twitter @referentie voor het account (of auteur, als auteurs-settings aanstaan en zijn ingesteld"
|
233 |
+
|
234 |
+
#: wp-to-twitter-manager.php:887
|
235 |
+
msgid "<code>#tags#</code>: your tags modified into hashtags. See options in the Advanced Settings section, below."
|
236 |
+
msgstr "Gebruikersgroepen boven deze kunt kiezen voor de Tweet / Tweet Niet optie, maar zien niet de andere tweet opties"
|
237 |
+
|
238 |
+
#: wp-to-twitter-manager.php:892
|
239 |
+
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>"
|
240 |
+
msgstr "Je kan ook aangepaste shortcodes creëeren voor toegang tot aangepaste WordPress velden. Gebruik dubbele [ ] om de naam van je aangepast veld om de waarde hiervan toe te voegen aan je status update. Voorbeeld: <code>[[custom_field]]</code></p>"
|
241 |
+
|
242 |
+
#: wp-to-twitter-oauth.php:99
|
243 |
+
msgid "WP to Twitter was unable to establish a connection to Twitter."
|
244 |
+
msgstr "WP to Twitter kon geen verbinding maken met Twitter. "
|
245 |
+
|
246 |
+
#: wp-to-twitter-oauth.php:169
|
247 |
+
msgid "There was an error querying Twitter's servers"
|
248 |
+
msgstr "Er trad een fout op tijdens het bevragen van de Twitter servers"
|
249 |
+
|
250 |
+
#: wp-to-twitter-oauth.php:185 wp-to-twitter-oauth.php:187
|
251 |
+
msgid "Connect to Twitter"
|
252 |
+
msgstr "Verbinding maken met Twitter"
|
253 |
+
|
254 |
+
#: wp-to-twitter-oauth.php:190
|
255 |
+
msgid "WP to Twitter Set-up"
|
256 |
+
msgstr "WP to Twitter Set-up "
|
257 |
+
|
258 |
+
#: wp-to-twitter-oauth.php:191 wp-to-twitter-oauth.php:282
|
259 |
+
msgid "Your server time:"
|
260 |
+
msgstr "code> # account # </ code>: de twitter @referentie voor het account (of auteur, als auteurs-settings aanstaan en zijn ingesteld"
|
261 |
+
|
262 |
+
#: wp-to-twitter-oauth.php:191
|
263 |
+
msgid "Twitter's time:"
|
264 |
+
msgstr "Twitter's time: "
|
265 |
+
|
266 |
+
#: wp-to-twitter-oauth.php:191
|
267 |
+
msgid "If these timestamps are not within 5 minutes of each other, your server will not connect to Twitter."
|
268 |
+
msgstr "Als deze timestamps niet binnen 5 minuten op elkaar volgen, zal uw server niet kunnen connecten met Twitter."
|
269 |
+
|
270 |
+
#: wp-to-twitter-oauth.php:193
|
271 |
+
msgid "<em>Note</em>: you will not add your Twitter user information to WP to Twitter; it is not used in this authentication method."
|
272 |
+
msgstr "<em>Opmerking</em>: Je zult je Twitter gebruikers informatie niet gebruiken voor WP to Twitter; het wordt niet gebruikt voor deze authenticatie methode."
|
273 |
+
|
274 |
+
#: wp-to-twitter-oauth.php:197
|
275 |
+
msgid "1. Register this site as an application on "
|
276 |
+
msgstr "1. Registreer deze site als een applicatie op "
|
277 |
+
|
278 |
+
#: wp-to-twitter-oauth.php:197
|
279 |
+
msgid "Twitter's application registration page"
|
280 |
+
msgstr "Twitter's applicatie registratie pagina"
|
281 |
+
|
282 |
+
#: wp-to-twitter-oauth.php:199
|
283 |
+
msgid "If you're not currently logged in to Twitter, log-in to the account you want associated with this site"
|
284 |
+
msgstr "Als u nog niet bent momenteel aangemeld bij Twitter, log dan in met het account dat u voor deze site wilt gebruiken"
|
285 |
+
|
286 |
+
#: wp-to-twitter-oauth.php:200
|
287 |
+
msgid "Your Application's Name will show up after \"via\" in your twitter stream. Your application name cannot include the word \"Twitter.\""
|
288 |
+
msgstr "De naam van uw Application verschijnt na \"via\" in je twitter stream. De naam van de Application mag niet het woord 'Twitter' bevatten."
|
289 |
+
|
290 |
+
#: wp-to-twitter-oauth.php:201
|
291 |
+
msgid "Your Application Description can be anything."
|
292 |
+
msgstr "De beschrijving van de Application kan van alles zijn."
|
293 |
+
|
294 |
+
#: wp-to-twitter-oauth.php:202
|
295 |
+
msgid "The WebSite and Callback URL should be "
|
296 |
+
msgstr "De WebSite en Callback URL moeten zijn:"
|
297 |
+
|
298 |
+
#: wp-to-twitter-oauth.php:204
|
299 |
+
msgid "Agree to the Developer Rules of the Road and continue."
|
300 |
+
msgstr ""
|
301 |
+
"Agree to the Developer Rules of the Road and continue ( to nice to translate)\n"
|
302 |
+
"Kies voor Akoord met de verkeersregels van de develop en ga door"
|
303 |
+
|
304 |
+
#: wp-to-twitter-oauth.php:205
|
305 |
+
msgid "2. Switch to the \"Settings\" tab in Twitter apps"
|
306 |
+
msgstr "2. Kies \"Settings\" tabblad in Twitter apps"
|
307 |
+
|
308 |
+
#: wp-to-twitter-oauth.php:207
|
309 |
+
msgid "Select \"Read and Write\" for the Application Type"
|
310 |
+
msgstr ""
|
311 |
+
"Kies \"Read and Write\" als Application Type \n"
|
312 |
+
"-OF- kies voor\"Lezen en Schrijven\" als applicatie type"
|
313 |
+
|
314 |
+
#: wp-to-twitter-oauth.php:208
|
315 |
+
msgid "Update the application settings"
|
316 |
+
msgstr "Update de application settings "
|
317 |
+
|
318 |
+
#: wp-to-twitter-oauth.php:209
|
319 |
+
msgid "Return to the Details tab and create your access token. Refresh page to view your access tokens."
|
320 |
+
msgstr "Keer terug naar het tabblad Details en creëer je toegang token (\"access token\"). Herlaad de pagina om uw toegang tokens te bekijken."
|
321 |
+
|
322 |
+
#: wp-to-twitter-oauth.php:211
|
323 |
+
msgid "Once you have registered your site as an application, you will be provided with four keys."
|
324 |
+
msgstr "Als u de website heeft geregistreerd als een application, zullen er 4 sleutels worden verstrekt"
|
325 |
+
|
326 |
+
#: wp-to-twitter-oauth.php:212
|
327 |
+
msgid "3. Copy and paste your consumer key and consumer secret into the fields below"
|
328 |
+
msgstr "3. Copy and paste (kopieer en plak) je sleutel (\"consumer key\") en geheim (\"consumer secret\") in de onderstaande velden ->Note to JD: CK and CR are in English on twitter pages so no translation needed"
|
329 |
+
|
330 |
+
#: wp-to-twitter-oauth.php:215
|
331 |
+
msgid "Twitter Consumer Key"
|
332 |
+
msgstr "Twitter Gebruiker Sleutel"
|
333 |
+
|
334 |
+
#: wp-to-twitter-oauth.php:219
|
335 |
+
msgid "Twitter Consumer Secret"
|
336 |
+
msgstr "Twitter Gebruiker Geheim"
|
337 |
+
|
338 |
+
#: wp-to-twitter-oauth.php:223
|
339 |
+
msgid "4. Copy and paste your Access Token and Access Token Secret into the fields below"
|
340 |
+
msgstr "4. Copy and paste het Access Token en Access Token Secret in onderstaande velden"
|
341 |
+
|
342 |
+
#: wp-to-twitter-oauth.php:224
|
343 |
+
msgid "If the Access level for your Access Token is not \"<em>Read and write</em>\", you must return to step 2 and generate a new Access Token."
|
344 |
+
msgstr "Als het Access level (\"Access niveau\") voor uw Access Token is niet \"<em>Read and Write </em>\" (\"Lezen en Schrijven\"), moet u terug naar stap 2 en een nieuwe Access Token genereren."
|
345 |
+
|
346 |
+
#: wp-to-twitter-oauth.php:227
|
347 |
+
msgid "Access Token"
|
348 |
+
msgstr "Toegangsbewijs"
|
349 |
+
|
350 |
+
#: wp-to-twitter-oauth.php:231
|
351 |
+
msgid "Access Token Secret"
|
352 |
+
msgstr "Toegangsbewijs Geheim"
|
353 |
+
|
354 |
+
#: wp-to-twitter-oauth.php:250
|
355 |
+
msgid "Disconnect Your WordPress and Twitter Account"
|
356 |
+
msgstr "Verbreek de verbinding met WordPress en Twitter"
|
357 |
+
|
358 |
+
#: wp-to-twitter-oauth.php:254
|
359 |
+
msgid "Disconnect your WordPress and Twitter Account"
|
360 |
+
msgstr "Log uit bij WordPress en van het Twitter Account "
|
361 |
+
|
362 |
+
#: wp-to-twitter-oauth.php:256
|
363 |
+
msgid "<strong>Troubleshooting tip:</strong> Connected, but getting a notice that your Authentication credentials are missing or incorrect? Check whether your Access token has read and write permission. If not, you'll need to create a new token."
|
364 |
+
msgstr "Troubleshooting tip: Verbinding, maar u krijgt het bericht dat login-gegevens ontbreken of onjuist? Controleer of uw Access token lees-en schrijfrechten heeft. Zo niet, dan moet u een nieuw token te creëren."
|
365 |
+
|
366 |
+
#: wp-to-twitter-oauth.php:264
|
367 |
+
msgid "Disconnect from Twitter"
|
368 |
+
msgstr "Twitter verbinding verbreken"
|
369 |
+
|
370 |
+
#: wp-to-twitter-oauth.php:270
|
371 |
+
msgid "Twitter Username "
|
372 |
+
msgstr "Twitter Gebruikersnaam"
|
373 |
+
|
374 |
+
#: wp-to-twitter-oauth.php:271
|
375 |
+
msgid "Consumer Key "
|
376 |
+
msgstr "Gebruikerssleutel"
|
377 |
+
|
378 |
+
#: wp-to-twitter-oauth.php:272
|
379 |
+
msgid "Consumer Secret "
|
380 |
+
msgstr "Gebruikersgeheim"
|
381 |
+
|
382 |
+
#: wp-to-twitter-oauth.php:273
|
383 |
+
msgid "Access Token "
|
384 |
+
msgstr "Toegangsbewijs"
|
385 |
+
|
386 |
+
#: wp-to-twitter-oauth.php:274
|
387 |
+
msgid "Access Token Secret "
|
388 |
+
msgstr "Toegangsbewijs Geheim"
|
389 |
+
|
390 |
+
#: wp-to-twitter-oauth.php:282
|
391 |
+
msgid "Twitter's current server time: "
|
392 |
+
msgstr "Twitter's huidige server tijd "
|
393 |
+
|
394 |
+
#: wp-to-twitter.php:51
|
395 |
+
msgid "WP to Twitter requires PHP version 5 or above. Please upgrade PHP to run WP to Twitter."
|
396 |
+
msgstr "WP to Twitter vereist PHP versie 5 of hoger. Upgrade a.u.b. PHP om WP to Twitter te kunnen gebruiken"
|
397 |
+
|
398 |
+
#: wp-to-twitter.php:72
|
399 |
+
msgid "WP to Twitter requires WordPress 2.9.2 or a more recent version, but some features will not work below 3.0.6. <a href=\"http://codex.wordpress.org/Upgrading_WordPress\">Please update WordPress to continue using WP to Twitter with all features!</a>"
|
400 |
+
msgstr "WP to Twitter vereist WordPress 2.9.2 of een recentere versie, maar sommige functies werken niet onder 3.0.6. <a href=\"http://codex.wordpress.org/Upgrading_WordPress\">Upgrade WordPress om gebruik te blijven maken van WP naar Twitter met alle functies! </a>"
|
401 |
+
|
402 |
+
#: wp-to-twitter.php:90
|
403 |
+
msgid "Twitter requires authentication by OAuth. You will need to <a href='%s'>update your settings</a> to complete installation of WP to Twitter."
|
404 |
+
msgstr "Twitter vereist OAuth authentificatie. U dient uw <a href='%s'> instellingen te updaten</a> om de installatie van WP to Twitter te kunnen voltooien."
|
405 |
+
|
406 |
+
#: wp-to-twitter.php:275
|
407 |
+
msgid "200 OK: Success!"
|
408 |
+
msgstr "200 OK: Success!"
|
409 |
+
|
410 |
+
#: wp-to-twitter.php:280
|
411 |
+
msgid "400 Bad Request: The request was invalid. This is the status code returned during rate limiting."
|
412 |
+
msgstr "400 Bad Request: De aanvraag was onjuist. Dit is de status code welke wordt teruggegeven met waardebeperking."
|
413 |
+
|
414 |
+
#: wp-to-twitter.php:284
|
415 |
+
msgid "401 Unauthorized: Authentication credentials were missing or incorrect."
|
416 |
+
msgstr "401 Unauthorized: Authenticatie login gegevens zijn onvolledig of onjuist."
|
417 |
+
|
418 |
+
#: wp-to-twitter.php:289
|
419 |
+
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 can include: Too many Tweets created in a short time or the same Tweet was submitted twice in a row, among others. This is not an error by WP to Twitter."
|
420 |
+
msgstr "403 Forbidden: Het verzoek is begrepen, maar geweigerd. Deze melding wordt gebruikt als het verzoek bekend is, maar door Twitter wordt geblokkeerd. Redenen hiervoor zijn onder andere: te veel tweets in een te korte tijd of te vaak dezelfde tweet verzonden. Deze foutmelding is niet afkomstig van WP to Twitter. "
|
421 |
+
|
422 |
+
#: wp-to-twitter.php:293
|
423 |
+
msgid "500 Internal Server Error: Something is broken at Twitter."
|
424 |
+
msgstr "500 Internal Server Error: Er is iets kapot bij Twitter."
|
425 |
+
|
426 |
+
#: wp-to-twitter.php:297
|
427 |
+
msgid "503 Service Unavailable: The Twitter servers are up, but overloaded with requests - Please try again later."
|
428 |
+
msgstr "503 Service Unavailable: De Twitter servers zijn beschikbaar, maar overloaded met verzoeken - probeer het later nog eens"
|
429 |
+
|
430 |
+
#: wp-to-twitter.php:301
|
431 |
+
msgid "502 Bad Gateway: Twitter is down or being upgraded."
|
432 |
+
msgstr "502 Bad Gateway: Twitter is buiten werking of wordt bijgewerkt."
|
433 |
+
|
434 |
+
#: wp-to-twitter.php:330
|
435 |
+
msgid "No Twitter OAuth connection found."
|
436 |
+
msgstr "Geen Twitter OAuth verbinding of connectie gevonden"
|
437 |
+
|
438 |
+
#: wp-to-twitter.php:1155
|
439 |
+
msgid "WP Tweets"
|
440 |
+
msgstr "WP Tweets "
|
441 |
+
|
442 |
+
#: wp-to-twitter.php:1202
|
443 |
+
msgid "Previous Tweets"
|
444 |
+
msgstr "Vorige tweets"
|
445 |
+
|
446 |
+
#: wp-to-twitter.php:1218
|
447 |
+
msgid "Custom Twitter Post"
|
448 |
+
msgstr "Pas Twitter Post aan (custom as in to customize?)"
|
449 |
+
|
450 |
+
#: wp-to-twitter.php:1220
|
451 |
+
msgid "Your template:"
|
452 |
+
msgstr "Uw template: "
|
453 |
+
|
454 |
+
#: wp-to-twitter.php:1224
|
455 |
+
msgid "YOURLS Custom Keyword"
|
456 |
+
msgstr "YOURLS Aangepaste trefwoord (trefwoorden if n= >1)"
|
457 |
+
|
458 |
+
#: wp-to-twitter.php:1273
|
459 |
+
msgid "Upgrade to WP Tweets Pro"
|
460 |
+
msgstr "Upgrade naar WP Tweets Pro "
|
461 |
+
|
462 |
+
#: wp-to-twitter.php:1234
|
463 |
+
msgid "Don't Tweet this post."
|
464 |
+
msgstr "Dit bericht niet twitteren."
|
465 |
+
|
466 |
+
#: wp-to-twitter.php:1234
|
467 |
+
msgid "Tweet this post."
|
468 |
+
msgstr "Tweet deze posting"
|
469 |
+
|
470 |
+
#: wp-to-twitter.php:1244
|
471 |
+
msgid "Access to customizing WP to Twitter values is not allowed for your user role."
|
472 |
+
msgstr "Aanpassen van WP naar Twitter instellingen is niet toegestaan voor uw gebruikersrol."
|
473 |
+
|
474 |
+
#: wp-to-twitter.php:1263
|
475 |
+
msgid "This URL is direct and has not been shortened: "
|
476 |
+
msgstr "Deze URL is direct en is niet verkort:"
|
477 |
+
|
478 |
+
#: wp-to-twitter.php:1319
|
479 |
+
msgid "Characters left: "
|
480 |
+
msgstr "Aantal karakters over:"
|
481 |
+
|
482 |
+
#: wp-to-twitter.php:1380
|
483 |
+
msgid "WP Tweets User Settings"
|
484 |
+
msgstr "WP Tweets Gebruikers instellingen "
|
485 |
+
|
486 |
+
#: wp-to-twitter.php:1384
|
487 |
+
msgid "Use My Twitter Username"
|
488 |
+
msgstr "Gebruik je Twitter gebruikersnaam"
|
489 |
+
|
490 |
+
#: wp-to-twitter.php:1385
|
491 |
+
msgid "Tweet my posts with an @ reference to my username."
|
492 |
+
msgstr "Tweet mijn berichten met een @ referentie naar mijn gebruikersnaam."
|
493 |
+
|
494 |
+
#: wp-to-twitter.php:1386
|
495 |
+
msgid "Tweet my posts with an @ reference to both my username and to the main site username."
|
496 |
+
msgstr "Tweet mijn berichten met een @ referentie naar mijn gebruikersnaam en de algemene site gebruikersnaam."
|
497 |
+
|
498 |
+
#: wp-to-twitter.php:1390
|
499 |
+
msgid "Your Twitter Username"
|
500 |
+
msgstr "Uw Twitter Username (gebruikersnaam)"
|
501 |
+
|
502 |
+
#: wp-to-twitter.php:1391
|
503 |
+
msgid "Enter your own Twitter username."
|
504 |
+
msgstr "Geef je eigen Twitter gebruikersnaam in."
|
505 |
+
|
506 |
+
#: wp-to-twitter.php:1396
|
507 |
+
msgid "Note: if all site administrators have set-up their own Twitter accounts, the primary site account (as set on the settings page) is not required, and won't be used."
|
508 |
+
msgstr "Als alle beheerders van de website hun eigen Twitter account hebben ingesteld, is het primaire site account (zoals vermeld op de pagina met instellingen) niet nodig en wordt het ook niet gebruikt."
|
509 |
+
|
510 |
+
#: wp-to-twitter.php:1439
|
511 |
+
msgid "Check off categories to tweet"
|
512 |
+
msgstr "Vink de te tweeten categoriën UIT"
|
513 |
+
|
514 |
+
#: wp-to-twitter.php:1443
|
515 |
+
msgid "Do not tweet posts in checked categories (Reverses default behavior)"
|
516 |
+
msgstr "Tweet geen posts uit de aangegeven categoriën (keert standaard gedrag om) "
|
517 |
+
|
518 |
+
#: wp-to-twitter.php:1460
|
519 |
+
msgid "Limits are exclusive. If a post is in one category which should be posted and one category that should not, it will not be posted."
|
520 |
+
msgstr "De limiteringen zijn exclusief. Dus als een post behoort tot een categorie die gepost wordt en tot een categorie die niet gepost wordt, dan wordt deze post niet gepost. "
|
521 |
+
|
522 |
+
#: wp-to-twitter.php:1463
|
523 |
+
msgid "Set Categories"
|
524 |
+
msgstr "Categorieen Instellen"
|
525 |
+
|
526 |
+
#: wp-to-twitter.php:1487
|
527 |
+
msgid "Settings"
|
528 |
+
msgstr "Instellingen"
|
529 |
+
|
530 |
+
#: wp-to-twitter.php:1522
|
531 |
+
msgid "<br /><strong>Note:</strong> Please review the <a class=\"thickbox\" href=\"%1$s\">changelog</a> before upgrading."
|
532 |
+
msgstr "<br /><strong>Opmerking:</strong>Controleer SVP de <a class=\"thickbox\" href=\"%1$s\">changelog</a> voor het upgraden."
|
533 |
+
|
534 |
+
msgid "WP to Twitter"
|
535 |
+
msgstr "WP to Twitter"
|
536 |
+
|
537 |
+
msgid "http://www.joedolson.com/articles/wp-to-twitter/"
|
538 |
+
msgstr "http://www.joedolson.com/articles/wp-to-twitter/"
|
539 |
+
|
540 |
+
msgid "Posts a Tweet 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."
|
541 |
+
msgstr "Posts een Tweet wanneer een WordPress blogof post naar uw blogroll wordt geupdate , gebruikmakend van de door U gekozen URL verkorter. Veel mogelijkheden tot het aanpassen en promoten van Uw Tweets. "
|
542 |
+
|
543 |
+
msgid "Joseph Dolson"
|
544 |
+
msgstr "Joseph Dolson"
|
545 |
+
|
546 |
+
msgid "http://www.joedolson.com/"
|
547 |
+
msgstr "http://www.joedolson.com/"
|
548 |
+
|
549 |
+
#: functions.php:329
|
550 |
+
msgid "Thank you for supporting the continuing development of this plug-in! I'll get back to you as soon as I can."
|
551 |
+
msgstr "Dank U voor het steunen van de peramente ontwikkeling van deze plug-in! Ik neem zo speodig mogelijk contact met U op."
|
552 |
+
|
553 |
+
#: functions.php:323
|
554 |
+
msgid "Please read the FAQ and other Help documents before making a support request."
|
555 |
+
msgstr "Lees SVP de FAQ en andere Help bestanden door voor het stellen van een support vraag."
|
556 |
+
|
557 |
+
#: functions.php:200
|
558 |
+
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."
|
559 |
+
msgstr "[<a href='options-general.php?page=wp-to-twitter/wp-to-twitter.php'>Verberg</a>] Wanneer je problemen hebt kopieer deze instellingen in je bericht om verzoek tot hulp."
|
560 |
+
|
561 |
+
#: functions.php:345
|
562 |
+
msgid "Please include your license key in your support request."
|
563 |
+
msgstr "Vermeld SVP de licentie code in het verzoek om support."
|
564 |
+
|
565 |
+
#: functions.php:331
|
566 |
+
msgid "I cannot provide free support, but will treat your request as a bug report, and will incorporate any permanent solutions I discover into the plug-in."
|
567 |
+
msgstr "Ik kan U geen gratis support verlenen, maar zal het verzoek behandelen als een gerapporteerde bug en permanente verbeteringen die ik ontdek in de plug-in verwerken."
|
568 |
+
|
569 |
+
#: functions.php:325
|
570 |
+
msgid "Please describe your problem. I'm not psychic."
|
571 |
+
msgstr "Beschrijf SVP Uw probleem, ik ben geen helderziende. "
|
572 |
+
|
573 |
+
#: functions.php:350
|
574 |
+
msgid "<strong>Please note</strong>: I do keep records of those who have donated, but if your donation came from somebody other than your account at this web site, you must note this in your message."
|
575 |
+
msgstr "<strong>Opmerking</strong>: Ik hou bij wie allemaal een donatie hebben gemaakt, maar als de donatie afkomstig is van iemand anders dan het account op deze website, vermeld dat dan SVP in uw bericht."
|
576 |
+
|
577 |
+
#: functions.php:355
|
578 |
+
msgid "From:"
|
579 |
+
msgstr "Van"
|
580 |
+
|
581 |
+
#: functions.php:358
|
582 |
+
msgid "I have read <a href=\"http://www.joedolson.com/articles/wp-to-twitter/support-2/\">the FAQ for this plug-in</a>."
|
583 |
+
msgstr "Ik heb de <a href=\"http://www.joedolson.com/articles/wp-to-twitter/support-2/\">FAQ voor deze plug-in</a> gelezen. "
|
584 |
+
|
585 |
+
#: functions.php:361
|
586 |
+
msgid "I have <a href=\"http://www.joedolson.com/donate.php\">made a donation to help support this plug-in</a>."
|
587 |
+
msgstr "Ik heb <a href=\"http://www.joedolson.com/donate.php\">gedoneerd ter ondersteuning van deze plug-in</a>. "
|
588 |
+
|
589 |
+
#: functions.php:367
|
590 |
+
msgid "Send Support Request"
|
591 |
+
msgstr "Verstuur verzoek om support"
|
592 |
+
|
593 |
+
#: functions.php:370
|
594 |
+
msgid "The following additional information will be sent with your support request:"
|
595 |
+
msgstr "De volgende additionele informatie wordt meegestuurd met Uw support aanvraag: "
|
596 |
+
|
597 |
+
#: wp-to-twitter-manager.php:41
|
598 |
+
msgid "No error information is available for your shortener."
|
599 |
+
msgstr "Er is geen informatie beschikbaar over je URL verkorter."
|
600 |
+
|
601 |
+
#: wp-to-twitter-manager.php:43
|
602 |
+
msgid "<li class=\"error\"><strong>WP to Twitter was unable to contact your selected URL shortening service.</strong></li>"
|
603 |
+
msgstr "<li class=\"error\"><strong>WP to Twitter kon geen contact maken met je geselecteerde URL verkorter.</strong></li>"
|
604 |
+
|
605 |
+
#: wp-to-twitter-manager.php:46
|
606 |
+
msgid "<li><strong>WP to Twitter successfully contacted your selected URL shortening service.</strong> The following link should point to your blog homepage:"
|
607 |
+
msgstr "<li><strong>WP to Twitter heeft succesvol contact gemaakt met je geselecteerde URL verkorter.</strong> De volgende link moet naar je blog homepage wijzen:"
|
608 |
+
|
609 |
+
#: wp-to-twitter-manager.php:54
|
610 |
+
msgid "<li><strong>WP to Twitter successfully submitted a status update to Twitter.</strong></li>"
|
611 |
+
msgstr "<li><strong>WP to Twitter heeft succesvol een status update geplaatst op Twitter.</strong></li>"
|
612 |
+
|
613 |
+
#: wp-to-twitter-manager.php:57
|
614 |
+
msgid "<li class=\"error\"><strong>WP to Twitter failed to submit an update to Twitter.</strong></li>"
|
615 |
+
msgstr "<li class=\"error\"><strong>Het is WP to Twitter niet gelukt om een update naar Twitter te sturen.</strong></li>"
|
616 |
+
|
617 |
+
#: wp-to-twitter-manager.php:61
|
618 |
+
msgid "You have not connected WordPress to Twitter."
|
619 |
+
msgstr "Je hebt geen connectie met WordPress to Twitter."
|
620 |
+
|
621 |
+
#: wp-to-twitter-manager.php:65
|
622 |
+
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>"
|
623 |
+
msgstr "<li class=\"error\"><strong>Je server lijkt niet de benodigde methodes te ondersteunen om WP to Twitter te laten functioneren.</strong> Je kunt het altijd proberen - deze tests zijn niet perfect</li>"
|
624 |
+
|
625 |
+
#: wp-to-twitter-manager.php:69
|
626 |
+
msgid "<li><strong>Your server should run WP to Twitter successfully.</strong></li>"
|
627 |
+
msgstr "<li><strong>WP to Twitter zou probleemloos op je server moeten werken.</strong></li>"
|
628 |
+
|
629 |
+
#: wp-to-twitter-manager.php:87
|
630 |
+
msgid "WP to Twitter Errors Cleared"
|
631 |
+
msgstr "WP to Twitter Foutmeldingen Verwijderd"
|
632 |
+
|
633 |
+
#: wp-to-twitter-manager.php:163
|
634 |
+
msgid "WP to Twitter is now connected with Twitter."
|
635 |
+
msgstr "WP to Twitter is nu verbonden met Twitter."
|
636 |
+
|
637 |
+
#: wp-to-twitter-manager.php:170
|
638 |
+
msgid "WP to Twitter failed to connect with Twitter. Try enabling OAuth debugging."
|
639 |
+
msgstr "WP to Twitter kon geen verbinding krijgen met Twitter. Probeer OAuth debugging aan te zetten."
|
640 |
+
|
641 |
+
#: wp-to-twitter-manager.php:177
|
642 |
+
msgid "OAuth Authentication Data Cleared."
|
643 |
+
msgstr "OAuth authenticatie data gewist."
|
644 |
+
|
645 |
+
#: wp-to-twitter-manager.php:184
|
646 |
+
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."
|
647 |
+
msgstr "OAuth Authentication mislukt. Uw servertijd loopt niet gelijk aan die van de Twitterservers. Neem contact op met Uw hoster en vraag wat zijn hieraan kunnen doen."
|
648 |
+
|
649 |
+
#: wp-to-twitter-manager.php:191
|
650 |
+
msgid "OAuth Authentication response not understood."
|
651 |
+
msgstr "OAuth Authentificatie respons is niet begrepen."
|
652 |
+
|
653 |
+
#: wp-to-twitter-manager.php:285
|
654 |
+
msgid "WP to Twitter Advanced Options Updated"
|
655 |
+
msgstr "WP to Twitter Geavanceerde Opties Bijgewerkt"
|
656 |
+
|
657 |
+
#: wp-to-twitter-manager.php:307
|
658 |
+
msgid "You must add your Bit.ly login and API key in order to shorten URLs with Bit.ly."
|
659 |
+
msgstr "Je moet je Bit.ly login en API sleutel ingeven om URL's te verkorten met Bit.ly."
|
660 |
+
|
661 |
+
#: wp-to-twitter-manager.php:311
|
662 |
+
msgid "You must add your YOURLS remote URL, login, and password in order to shorten URLs with a remote installation of YOURLS."
|
663 |
+
msgstr "Je moet je YOURLS remote URL, login en wachtwoord toevoegen om URL's te verkorten met een installatie op afstand van YOURLS."
|
664 |
+
|
665 |
+
#: wp-to-twitter-manager.php:315
|
666 |
+
msgid "You must add your YOURLS server path in order to shorten URLs with a remote installation of YOURLS."
|
667 |
+
msgstr "Je moet je YOURLS server pad ingeven om URL's te verkorten met een installatie op afstand van YOURLS."
|
668 |
+
|
669 |
+
#: wp-to-twitter-manager.php:318
|
670 |
+
msgid "WP to Twitter Options Updated"
|
671 |
+
msgstr "WP to Twitter Opties Bijgewerkt"
|
672 |
+
|
673 |
+
#: wp-to-twitter-manager.php:327
|
674 |
+
msgid "Category limits updated."
|
675 |
+
msgstr "Categorie limieten bijgewerkt."
|
676 |
+
|
677 |
+
#: wp-to-twitter-manager.php:331
|
678 |
+
msgid "Category limits unset."
|
679 |
+
msgstr "Categorie limieten uitgezet"
|
680 |
+
|
681 |
+
#: wp-to-twitter-manager.php:338
|
682 |
+
msgid "YOURLS password updated. "
|
683 |
+
msgstr "YOURLS wachtwoord bijgewerkt. "
|
684 |
+
|
685 |
+
#: wp-to-twitter-manager.php:341
|
686 |
+
msgid "YOURLS password deleted. You will be unable to use your remote YOURLS account to create short URLS."
|
687 |
+
msgstr "YOURLS wachtwoord verwijderd. Je kunt je remote YOURLS account niet gebruiken om verkorte URL's te creëeren."
|
688 |
+
|
689 |
+
#: wp-to-twitter-manager.php:343
|
690 |
+
msgid "Failed to save your YOURLS password! "
|
691 |
+
msgstr "YOURLS wachtwoord opslaan is mislukt! "
|
692 |
+
|
693 |
+
#: wp-to-twitter-manager.php:347
|
694 |
+
msgid "YOURLS username added. "
|
695 |
+
msgstr "YOURLS gebruikersnaam toegevoegd. "
|
696 |
+
|
697 |
+
#: wp-to-twitter-manager.php:351
|
698 |
+
msgid "YOURLS API url added. "
|
699 |
+
msgstr "YOURLS API url toegevoegd. "
|
700 |
+
|
701 |
+
#: wp-to-twitter-manager.php:354
|
702 |
+
msgid "YOURLS API url removed. "
|
703 |
+
msgstr "YOURLS API url verwijderd. "
|
704 |
+
|
705 |
+
#: wp-to-twitter-manager.php:359
|
706 |
+
msgid "YOURLS local server path added. "
|
707 |
+
msgstr "YOURLS lokaal server pad toegevoegd. "
|
708 |
+
|
709 |
+
#: wp-to-twitter-manager.php:361
|
710 |
+
msgid "The path to your YOURLS installation is not correct. "
|
711 |
+
msgstr "Het pad naar je YOURLS installatie is niet correct."
|
712 |
+
|
713 |
+
#: wp-to-twitter-manager.php:365
|
714 |
+
msgid "YOURLS local server path removed. "
|
715 |
+
msgstr "YOURLS lokaal server pad verwijderd. "
|
716 |
+
|
717 |
+
#: wp-to-twitter-manager.php:370
|
718 |
+
msgid "YOURLS will use Post ID for short URL slug."
|
719 |
+
msgstr "YOURLS zal een bericht ID gebruiken voor een korte URL slug."
|
720 |
+
|
721 |
+
#: wp-to-twitter-manager.php:372
|
722 |
+
msgid "YOURLS will use your custom keyword for short URL slug."
|
723 |
+
msgstr "YOURLS gebruikt Uw aangepaste trefwoord voor de short URL slug. "
|
724 |
+
|
725 |
+
#: wp-to-twitter-manager.php:376
|
726 |
+
msgid "YOURLS will not use Post ID for the short URL slug."
|
727 |
+
msgstr "YOURLS zal geen bericht ID gebruiken voor een korte URL slug."
|
728 |
+
|
729 |
+
#: wp-to-twitter-manager.php:384
|
730 |
+
msgid "Su.pr API Key and Username Updated"
|
731 |
+
msgstr "Su.pr API Key en gebruikersnaam (\"Username\") zijn geupdate "
|
732 |
+
|
733 |
+
#: wp-to-twitter-manager.php:388
|
734 |
+
msgid "Su.pr API Key and username deleted. Su.pr URLs created by WP to Twitter will no longer be associated with your account. "
|
735 |
+
msgstr "Su.pr API Key en gebruikersnaam (\"username\") zijn verwijderd. Su.pr URLs aangemaakt door WP to Twitter zullen niet langer geassocieerd worden met Uw account."
|
736 |
+
|
737 |
+
#: wp-to-twitter-manager.php:390
|
738 |
+
msgid "Su.pr API Key not added - <a href='http://su.pr/'>get one here</a>! "
|
739 |
+
msgstr "Su.pr API Key niet toegevoegd - <a href='http://su.pr/'>Hier verkrijgbaar</a>! "
|
740 |
+
|
741 |
+
#: wp-to-twitter-manager.php:396
|
742 |
+
msgid "Bit.ly API Key Updated."
|
743 |
+
msgstr "Bit.ly API sleutel bijgewerkt."
|
744 |
+
|
745 |
+
#: wp-to-twitter-manager.php:399
|
746 |
+
msgid "Bit.ly API Key deleted. You cannot use the Bit.ly API without an API key. "
|
747 |
+
msgstr "Bit.ly API sleutel verwijderd. Je kan de Bit.ly API niet geberuiken zonder API sleutel. "
|
748 |
+
|
749 |
+
#: wp-to-twitter-manager.php:401
|
750 |
+
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."
|
751 |
+
msgstr "Bit.ly API sleutel niet toegevoegd - <a href='http://bit.ly/account/'>HIER aanvragen</a>! Een API sleutel is nodig om de Bit.ly URL verkorter te gebruiken."
|
752 |
+
|
753 |
+
#: wp-to-twitter-manager.php:405
|
754 |
+
msgid " Bit.ly User Login Updated."
|
755 |
+
msgstr " Bit.ly gebruikerslogin bijgewerkt."
|
756 |
+
|
757 |
+
#: wp-to-twitter-manager.php:408
|
758 |
+
msgid "Bit.ly User Login deleted. You cannot use the Bit.ly API without providing your username. "
|
759 |
+
msgstr "Bit.ly gebruikerslogin verwijderd. Je kan niet de Bit.ly API gebruiken zonder je gebruikersnaam in te voeren. "
|
760 |
+
|
761 |
+
#: wp-to-twitter-manager.php:410
|
762 |
+
msgid "Bit.ly Login not added - <a href='http://bit.ly/account/'>get one here</a>! "
|
763 |
+
msgstr "Bit.ly Login niet toegevoegd - maak <a href='http://bit.ly/account/'>HIER</a> een account aan!"
|
764 |
+
|
765 |
+
#: wp-to-twitter-manager.php:426
|
766 |
+
msgid "<p>One or more of your last posts has failed to send a status update to Twitter. The Tweet has been saved, and you can re-Tweet it at your leisure.</p>"
|
767 |
+
msgstr "<p>Een of meer van Uw laatste postings konden geen status update naar Twitter sturen. De Tweet is opgeslagen en U kunt deze desgewenst re-Tweeten.</p>"
|
768 |
+
|
769 |
+
#: wp-to-twitter-manager.php:432
|
770 |
+
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. "
|
771 |
+
msgstr "Sorry! Ik kon de Twitter servers niet bereiken om je <strong>nieuwe link</strong> te plaatsen! Ik ben bang dat je het zelf manueel moet plaatsen. "
|
772 |
+
|
773 |
+
#: wp-to-twitter-manager.php:435
|
774 |
+
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.</p>"
|
775 |
+
msgstr "<p>De query van de URL verkorter API is mislukt, en Uw URL is niet ingekort. De volledige URL van de post was toegevoegd aan Uw tweet. Controleer bij aanbieder van Uw URL verkorter of er storingen zijn.</p> "
|
776 |
+
|
777 |
+
#: wp-to-twitter-manager.php:441
|
778 |
+
msgid "Clear 'WP to Twitter' Error Messages"
|
779 |
+
msgstr "Verwijderden 'WP to Twitter' Foutmeldingen"
|
780 |
+
|
781 |
+
#: wp-to-twitter-manager.php:448
|
782 |
+
msgid "WP to Twitter Options"
|
783 |
+
msgstr "WP to Twitter Opties"
|
784 |
+
|
785 |
+
#: wp-to-twitter-manager.php:461
|
786 |
+
msgid "Basic Settings"
|
787 |
+
msgstr "Basis Instellingen"
|
788 |
+
|
789 |
+
#: wp-to-twitter-manager.php:466 wp-to-twitter-manager.php:529
|
790 |
+
msgid "Save WP->Twitter Options"
|
791 |
+
msgstr "WP->Twitter Instellingen opslaan"
|
792 |
+
|
793 |
+
#: wp-to-twitter-manager.php:496
|
794 |
+
msgid "Settings for Comments"
|
795 |
+
msgstr "Settings voor reacties"
|
796 |
+
|
797 |
+
#: wp-to-twitter-manager.php:499
|
798 |
+
msgid "Update Twitter when new comments are posted"
|
799 |
+
msgstr "Update Twitter als nieuwe reacties zijn gepost"
|
800 |
+
|
801 |
+
#: wp-to-twitter-manager.php:500
|
802 |
+
msgid "Text for new comments:"
|
803 |
+
msgstr "Tekst voor nieuwe reacties: "
|
804 |
+
|
805 |
+
#: wp-to-twitter-manager.php:505
|
806 |
+
msgid "Settings for Links"
|
807 |
+
msgstr "Instellingen voor Links "
|
808 |
+
|
809 |
+
#: wp-to-twitter-manager.php:508
|
810 |
+
msgid "Update Twitter when you post a Blogroll link"
|
811 |
+
msgstr "Bijwerken Twitter wanneer je een blogrol link plaatst"
|
812 |
+
|
813 |
+
#: wp-to-twitter-manager.php:509
|
814 |
+
msgid "Text for new link updates:"
|
815 |
+
msgstr "Tekst voor nieuwe link updates:"
|
816 |
+
|
817 |
+
#: wp-to-twitter-manager.php:509
|
818 |
+
msgid "Available shortcodes: <code>#url#</code>, <code>#title#</code>, and <code>#description#</code>."
|
819 |
+
msgstr "Beschikbare shortcodes: <code>#url#</code>, <code>#title#</code> en <code>#description#</code>."
|
820 |
+
|
821 |
+
#: wp-to-twitter-manager.php:513
|
822 |
+
msgid "Choose your short URL service (account settings below)"
|
823 |
+
msgstr "Kies je verkorte URL service (account instelllingen onder)"
|
824 |
+
|
825 |
+
#: wp-to-twitter-manager.php:516
|
826 |
+
msgid "Don't shorten URLs."
|
827 |
+
msgstr "URL's niet verkorten."
|
828 |
+
|
829 |
+
#: wp-to-twitter-manager.php:517
|
830 |
+
msgid "Use Su.pr for my URL shortener."
|
831 |
+
msgstr "Gebruik Su.pr als mijn URL verkorter. "
|
832 |
+
|
833 |
+
#: wp-to-twitter-manager.php:518
|
834 |
+
msgid "Use Bit.ly for my URL shortener."
|
835 |
+
msgstr "Gebruik Bit.ly voor mijn URL verkorter."
|
836 |
+
|
837 |
+
#: wp-to-twitter-manager.php:519
|
838 |
+
msgid "Use Goo.gl as a URL shortener."
|
839 |
+
msgstr "Gebruik Goo.gl als URL verkorter"
|
840 |
+
|
841 |
+
#: wp-to-twitter-manager.php:520
|
842 |
+
msgid "YOURLS (installed on this server)"
|
843 |
+
msgstr "YOURLS (geïnstalleerd op deze server)"
|
844 |
+
|
845 |
+
#: wp-to-twitter-manager.php:521
|
846 |
+
msgid "YOURLS (installed on a remote server)"
|
847 |
+
msgstr "YOURLS (geïnstalleerd op een remote server)"
|
848 |
+
|
849 |
+
#: wp-to-twitter-manager.php:522
|
850 |
+
msgid "Use WordPress as a URL shortener."
|
851 |
+
msgstr "Gebruik WordPress voor mijn URL verkorter."
|
852 |
+
|
853 |
+
#: wp-to-twitter-manager.php:537
|
854 |
+
msgid "<abbr title=\"Uniform Resource Locator\">URL</abbr> Shortener Account Settings"
|
855 |
+
msgstr "<abbr title=\"Uniform Resource Locator\">URL</abbr> Verkorter Account Instellingen"
|
856 |
+
|
857 |
+
#: wp-to-twitter-manager.php:540
|
858 |
+
msgid "Your Su.pr account details"
|
859 |
+
msgstr "Uw Su.pr account details "
|
860 |
+
|
861 |
+
#: wp-to-twitter-manager.php:544
|
862 |
+
msgid "Your Su.pr Username:"
|
863 |
+
msgstr "Uw Su.pr gebruikersnaam (\"Username\"): "
|
864 |
+
|
865 |
+
#: wp-to-twitter-manager.php:548
|
866 |
+
msgid "Your Su.pr <abbr title='application programming interface'>API</abbr> Key:"
|
867 |
+
msgstr "Uw Su.pr <abbr title='application programming interface'>API</abbr> Key: "
|
868 |
+
|
869 |
+
#: wp-to-twitter-manager.php:555
|
870 |
+
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."
|
871 |
+
msgstr "Geen Su.pr account of API key? <a href='http://su.pr/'>Die zijn hier verkrijgbaar</a>!<br />U heeft ook een API key nodig om de URLs die U maakt te kunnen koppelen aan het Su.pr account. "
|
872 |
+
|
873 |
+
#: wp-to-twitter-manager.php:560
|
874 |
+
msgid "Your Bit.ly account details"
|
875 |
+
msgstr "Je Biy.ly account informatie"
|
876 |
+
|
877 |
+
#: wp-to-twitter-manager.php:564
|
878 |
+
msgid "Your Bit.ly username:"
|
879 |
+
msgstr "Je Bit.ly gebruikersnaam:"
|
880 |
+
|
881 |
+
#: wp-to-twitter-manager.php:566
|
882 |
+
msgid "This must be a standard Bit.ly account. Your Twitter or Facebook log-in will not work."
|
883 |
+
msgstr "Dit moet een standaard Bit.ly account zijn, Uw Twitter of Facebook log-in werken hier niet."
|
884 |
+
|
885 |
+
#: wp-to-twitter-manager.php:568
|
886 |
+
msgid "Your Bit.ly <abbr title='application programming interface'>API</abbr> Key:"
|
887 |
+
msgstr "Je Bit.ly <abbr title='application programming interface'>API</abbr> sleutel:"
|
888 |
+
|
889 |
+
#: wp-to-twitter-manager.php:576
|
890 |
+
msgid "Save Bit.ly API Key"
|
891 |
+
msgstr "Opslaan Bit.ly API sleutel"
|
892 |
+
|
893 |
+
#: wp-to-twitter-manager.php:576
|
894 |
+
msgid "Clear Bit.ly API Key"
|
895 |
+
msgstr "Verwijderen Bit.ly API sleutel"
|
896 |
+
|
897 |
+
#: wp-to-twitter-manager.php:576
|
898 |
+
msgid "A Bit.ly API key and username is required to shorten URLs via the Bit.ly API and WP to Twitter."
|
899 |
+
msgstr "Een Bit.ly API en gebruikersnaam is nodig om URL's te verkorten met de Bit.ly API en WP to Twitter."
|
900 |
+
|
901 |
+
#: wp-to-twitter-manager.php:581
|
902 |
+
msgid "Your YOURLS account details"
|
903 |
+
msgstr "Jouw YOURLS account informatie"
|
904 |
+
|
905 |
+
#: wp-to-twitter-manager.php:585
|
906 |
+
msgid "Path to your YOURLS config file (Local installations)"
|
907 |
+
msgstr "Pad van Uw YOURLS config file (Local installations) "
|
908 |
+
|
909 |
+
#: wp-to-twitter-manager.php:586 wp-to-twitter-manager.php:590
|
910 |
+
msgid "Example:"
|
911 |
+
msgstr "Voorbeeld:"
|
912 |
+
|
913 |
+
#: wp-to-twitter-manager.php:589
|
914 |
+
msgid "URI to the YOURLS API (Remote installations)"
|
915 |
+
msgstr "URI naar de YOURLS API (Remote installaties)"
|
916 |
+
|
917 |
+
#: wp-to-twitter-manager.php:593
|
918 |
+
msgid "Your YOURLS username:"
|
919 |
+
msgstr "Je YOURLS gebruikersnaam:"
|
920 |
+
|
921 |
+
#: wp-to-twitter-manager.php:597
|
922 |
+
msgid "Your YOURLS password:"
|
923 |
+
msgstr "Jouw YOURLS wachtwoord:"
|
924 |
+
|
925 |
+
#: wp-to-twitter-manager.php:597
|
926 |
+
msgid "<em>Saved</em>"
|
927 |
+
msgstr "<em>Opgeslagen</em>"
|
928 |
+
|
929 |
+
#: wp-to-twitter-manager.php:601
|
930 |
+
msgid "Post ID for YOURLS url slug."
|
931 |
+
msgstr "Post ID voor YOURLS url slug. "
|
932 |
+
|
933 |
+
#: wp-to-twitter-manager.php:602
|
934 |
+
msgid "Custom keyword for YOURLS url slug."
|
935 |
+
msgstr "Aangepast trefwoord voor YOURLS url slug. "
|
936 |
+
|
937 |
+
#: wp-to-twitter-manager.php:603
|
938 |
+
msgid "Default: sequential URL numbering."
|
939 |
+
msgstr "Standaard: sequentiële URL nummering. "
|
940 |
+
|
941 |
+
#: wp-to-twitter-manager.php:609
|
942 |
+
msgid "Save YOURLS Account Info"
|
943 |
+
msgstr "Opslaan YOURLS Account Info"
|
944 |
+
|
945 |
+
#: wp-to-twitter-manager.php:609
|
946 |
+
msgid "Clear YOURLS password"
|
947 |
+
msgstr "Wissen YOURLS wachtwoord"
|
948 |
+
|
949 |
+
#: wp-to-twitter-manager.php:609
|
950 |
+
msgid "A YOURLS password and username is required to shorten URLs via the remote YOURLS API and WP to Twitter."
|
951 |
+
msgstr "Een YOURLS wachtwoord en gebruikersnaam is nodig om URL's te verkorten met de YOURLS API en WP to Twitter."
|
952 |
+
|
953 |
+
#: wp-to-twitter-manager.php:620
|
954 |
+
msgid "Advanced Settings"
|
955 |
+
msgstr "Geavanceerde Instellingen"
|
956 |
+
|
957 |
+
#: wp-to-twitter-manager.php:625 wp-to-twitter-manager.php:783
|
958 |
+
msgid "Save Advanced WP->Twitter Options"
|
959 |
+
msgstr "WP->Twitter Geavanceerde Instellingen Opslaan"
|
960 |
+
|
961 |
+
#: wp-to-twitter-manager.php:627
|
962 |
+
msgid "Advanced Tweet settings"
|
963 |
+
msgstr "Geavanceerde Tweet instellingen"
|
964 |
+
|
965 |
+
#: wp-to-twitter-manager.php:629
|
966 |
+
msgid "Strip nonalphanumeric characters from tags"
|
967 |
+
msgstr "Verwijder nonalphanumerieke karakters uit tags "
|
968 |
+
|
969 |
+
#: wp-to-twitter-manager.php:630
|
970 |
+
msgid "Spaces in tags replaced with:"
|
971 |
+
msgstr "Vervang spaties in tags voor: "
|
972 |
+
|
973 |
+
#: wp-to-twitter-manager.php:632
|
974 |
+
msgid "Default replacement is an underscore (<code>_</code>). Use <code>[ ]</code> to remove spaces entirely."
|
975 |
+
msgstr "Standaard vervanging is een underscore (<code>_</code>). Gebruik <code>[ ]</code> om spaties geheel te verwijderen."
|
976 |
+
|
977 |
+
#: wp-to-twitter-manager.php:635
|
978 |
+
msgid "Maximum number of tags to include:"
|
979 |
+
msgstr "Maximaal aantal tags om in te voegen:"
|
980 |
+
|
981 |
+
#: wp-to-twitter-manager.php:636
|
982 |
+
msgid "Maximum length in characters for included tags:"
|
983 |
+
msgstr "Maximale lengte in karakters voor ingevoegde tags:"
|
984 |
+
|
985 |
+
#: wp-to-twitter-manager.php:637
|
986 |
+
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."
|
987 |
+
msgstr "Deze opties maken het mogelijk om de lengte en het aantal tags te beperken welke naar Twitter verzonden worden als hashtags. Ingesteld op <code>0</code> of laat leeg om alle tags toe te staan."
|
988 |
+
|
989 |
+
#: wp-to-twitter-manager.php:640
|
990 |
+
msgid "Length of post excerpt (in characters):"
|
991 |
+
msgstr "Lengte van de bericht samenvatting (in karakters):"
|
992 |
+
|
993 |
+
#: wp-to-twitter-manager.php:640
|
994 |
+
msgid "By default, extracted from the post itself. If you use the 'Excerpt' field, that will be used instead."
|
995 |
+
msgstr "Standaard, verkregen van het bericht zelf. Wanneer je het 'Excerpt' veld gebruikt zal dit hiervoor gebruikt worden."
|
996 |
+
|
997 |
+
#: wp-to-twitter-manager.php:643
|
998 |
+
msgid "WP to Twitter Date Formatting:"
|
999 |
+
msgstr "WP to Twitter Datum Opmaak:"
|
1000 |
+
|
1001 |
+
#: wp-to-twitter-manager.php:644
|
1002 |
+
msgid "Default is from your general settings. <a href='http://codex.wordpress.org/Formatting_Date_and_Time'>Date Formatting Documentation</a>."
|
1003 |
+
msgstr "Standaard is van je algemene instellingen. <a href='http://codex.wordpress.org/Formatting_Date_and_Time'>Documentatie Datum Opmaak (Eng)</a>."
|
1004 |
+
|
1005 |
+
#: wp-to-twitter-manager.php:648
|
1006 |
+
msgid "Custom text before all Tweets:"
|
1007 |
+
msgstr "Aangepaste tekst vóór alle Tweets:"
|
1008 |
+
|
1009 |
+
#: wp-to-twitter-manager.php:649
|
1010 |
+
msgid "Custom text after all Tweets:"
|
1011 |
+
msgstr "Aangepaste tekst ná alle Tweets:"
|
1012 |
+
|
1013 |
+
#: wp-to-twitter-manager.php:652
|
1014 |
+
msgid "Custom field for an alternate URL to be shortened and Tweeted:"
|
1015 |
+
msgstr "Aangepast veld voor een alternatieve URL om te verkorten en tweeten:"
|
1016 |
+
|
1017 |
+
#: wp-to-twitter-manager.php:653
|
1018 |
+
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."
|
1019 |
+
msgstr "Je kan een aangepast veld gebruiken om een alternatieve URL te sturen voor je bericht. De waarde is de naam van het aangepast veld met de externe URL."
|
1020 |
+
|
1021 |
+
#: wp-to-twitter-manager.php:676
|
1022 |
+
msgid "Preferred status update truncation sequence"
|
1023 |
+
msgstr "Gewenste status update truncation volgorde"
|
1024 |
+
|
1025 |
+
#: wp-to-twitter-manager.php:679
|
1026 |
+
msgid "This is the order in which items will be abbreviated or removed from your status update if it is too long to send to Twitter."
|
1027 |
+
msgstr "In deze volgorde zullen items worden afgekort of verwijderd uit je status update als ze te lang zijn om naarTwitter gestuurd te worden ."
|
1028 |
+
|
1029 |
+
#: wp-to-twitter-manager.php:684
|
1030 |
+
msgid "Special Cases when WordPress should send a Tweet"
|
1031 |
+
msgstr "Speciale gevallen wanneer WordPress een Tweet moet versturen"
|
1032 |
+
|
1033 |
+
#: wp-to-twitter-manager.php:687
|
1034 |
+
msgid "Do not post Tweets by default"
|
1035 |
+
msgstr "Post geen Tweets als standaard instelling"
|
1036 |
+
|
1037 |
+
#: wp-to-twitter-manager.php:690
|
1038 |
+
msgid "By default, all posts meeting other requirements will be posted to Twitter. Check this to change your setting."
|
1039 |
+
msgstr "Standaard zullen alle berichten welke voldoen aan andere eisen verstuurd worden naar Twitter. Selecteer dit om de instelling te veranderen."
|
1040 |
+
|
1041 |
+
#: wp-to-twitter-manager.php:694
|
1042 |
+
msgid "Allow status updates from Quick Edit"
|
1043 |
+
msgstr "Sta status updates toe via Quick Edit "
|
1044 |
+
|
1045 |
+
#: wp-to-twitter-manager.php:695
|
1046 |
+
msgid "If checked, all posts edited individually or in bulk through the Quick Edit feature will be Tweeted."
|
1047 |
+
msgstr "Indien aangevinkt, worden alle posts die individueel of in bulk via de Quick Edit optie zijn ge-edit , ge-Tweet. "
|
1048 |
+
|
1049 |
+
#: wp-to-twitter-manager.php:700
|
1050 |
+
msgid "Delaying tweets with WP Tweets PRO moves Tweeting to an publishing-independent action."
|
1051 |
+
msgstr "Vertraagd Tweeten met WP Tweets PRO maakt van Tweeting een van het publishen onafhanklijke activiteit."
|
1052 |
+
|
1053 |
+
#: wp-to-twitter-manager.php:707
|
1054 |
+
msgid "Send Twitter Updates on remote publication (Post by Email or XMLRPC Client)"
|
1055 |
+
msgstr "Twitter updates verzenden met publicatie op afstand (per email of XMLRPC Client)"
|
1056 |
+
|
1057 |
+
#: wp-to-twitter-manager.php:712
|
1058 |
+
msgid "Google Analytics Settings"
|
1059 |
+
msgstr "Google Analytics Instellingen"
|
1060 |
+
|
1061 |
+
#: wp-to-twitter-manager.php:713
|
1062 |
+
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."
|
1063 |
+
msgstr "Je kunt de respons van Twitter bijhouden met gebruik van Google Analytics door een campagne ID te definiëren. Je kan zowel een statische als een dynamische ID definiëren. Statische ID's wijzigen niet van bericht tot bericht; dynamische ID's worden afgeleid van informatie relevant aan het specifieke bericht. Dynamische ID's stellen je in staat om statistieken onder te verdelen met een extra variabele."
|
1064 |
+
|
1065 |
+
#: wp-to-twitter-manager.php:717
|
1066 |
+
msgid "Use a Static Identifier with WP-to-Twitter"
|
1067 |
+
msgstr "Gebruik statische identifier met WP-to-Twitter"
|
1068 |
+
|
1069 |
+
#: wp-to-twitter-manager.php:718
|
1070 |
+
msgid "Static Campaign identifier for Google Analytics:"
|
1071 |
+
msgstr "Statische Campagne Identifier voor Google Analytics:"
|
1072 |
+
|
1073 |
+
#: wp-to-twitter-manager.php:722
|
1074 |
+
msgid "Use a dynamic identifier with Google Analytics and WP-to-Twitter"
|
1075 |
+
msgstr "Gebruik een dynamische identifier met Google Analytics en WP-to-Twitter"
|
1076 |
+
|
1077 |
+
#: wp-to-twitter-manager.php:723
|
1078 |
+
msgid "What dynamic identifier would you like to use?"
|
1079 |
+
msgstr "Welke dynamische ID wil je gebruiken?"
|
1080 |
+
|
1081 |
+
#: wp-to-twitter-manager.php:725
|
1082 |
+
msgid "Category"
|
1083 |
+
msgstr "Categorie"
|
1084 |
+
|
1085 |
+
#: wp-to-twitter-manager.php:726
|
1086 |
+
msgid "Post ID"
|
1087 |
+
msgstr "Bericht ID"
|
1088 |
+
|
1089 |
+
#: wp-to-twitter-manager.php:727
|
1090 |
+
msgid "Post Title"
|
1091 |
+
msgstr "Bericht Titel"
|
1092 |
+
|
1093 |
+
#: wp-to-twitter-manager.php:728
|
1094 |
+
msgid "Author"
|
1095 |
+
msgstr "Auteur"
|
wp-to-twitter-pt_BR.mo → lang/wp-to-twitter-pt_BR.mo
RENAMED
File without changes
|
wp-to-twitter-pt_BR.po → lang/wp-to-twitter-pt_BR.po
RENAMED
File without changes
|
wp-to-twitter-ro_RO.mo → lang/wp-to-twitter-ro_RO.mo
RENAMED
File without changes
|
wp-to-twitter-ro_RO.po → lang/wp-to-twitter-ro_RO.po
RENAMED
File without changes
|
wp-to-twitter-ru_RU.mo → lang/wp-to-twitter-ru_RU.mo
RENAMED
File without changes
|
wp-to-twitter-ru_RU.po → lang/wp-to-twitter-ru_RU.po
RENAMED
File without changes
|
wp-to-twitter-ua_UA.mo → lang/wp-to-twitter-ua_UA.mo
RENAMED
File without changes
|
wp-to-twitter-ua_UA.po → lang/wp-to-twitter-ua_UA.po
RENAMED
File without changes
|
wp-to-twitter-zh_CN.mo → lang/wp-to-twitter-zh_CN.mo
RENAMED
File without changes
|
wp-to-twitter-zh_CN.po → lang/wp-to-twitter-zh_CN.po
RENAMED
File without changes
|
lang/wp-to-twitter-zh_TW.mo
ADDED
Binary file
|
lang/wp-to-twitter-zh_TW.po
ADDED
@@ -0,0 +1,1082 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of WP to Twitter in Chinese (Taiwan)
|
2 |
+
# This file is distributed under the same license as the WP to Twitter package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2012-08-30 22:11:08+0000\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
10 |
+
"X-Generator: GlotPress/0.1\n"
|
11 |
+
"Project-Id-Version: WP to Twitter\n"
|
12 |
+
|
13 |
+
#: wp-to-twitter-manager.php:860
|
14 |
+
msgid "Upgrade to <strong>WP Tweets PRO</strong> for more options!"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: wp-to-twitter-manager.php:889
|
18 |
+
msgid "<code>#reference#</code>: Used only in co-tweeting. @reference to main account when posted to author account, @reference to author account in post to main account."
|
19 |
+
msgstr ""
|
20 |
+
|
21 |
+
#: wp-to-twitter-oauth.php:168
|
22 |
+
msgid "Connection Problems? Try <a href='#wpt_http'>switching to <code>http</code> queries</a>.<br />"
|
23 |
+
msgstr ""
|
24 |
+
|
25 |
+
#: wp-to-twitter-oauth.php:260
|
26 |
+
msgid "WP to Twitter could not contact Twitter's remote server. Here is the error triggered: "
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: wp-to-twitter.php:251
|
30 |
+
msgid "This account is not authorized to post to Twitter."
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: wp-to-twitter.php:259
|
34 |
+
msgid "This tweet is identical to another Tweet recently sent to this account."
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: wp-to-twitter.php:1215
|
38 |
+
msgid "WP to Twitter can do more for you! Take a look at WP Tweets Pro!"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: wp-to-twitter-manager.php:502
|
42 |
+
msgid "In addition to the above short tags, comment templates can use <code>#commenter#</code> to post the commenter's provided name in the Tweet. <em>Use this feature at your own risk</em>, as it will let anybody who can post a comment on your site post a phrase in your Twitter stream."
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: wp-to-twitter-manager.php:540
|
46 |
+
msgid "(optional)"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: wp-to-twitter-manager.php:689
|
50 |
+
msgid "Do not post Tweets by default (editing only)"
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: wp-to-twitter-manager.php:883
|
54 |
+
msgid "<code>#modified#</code>: the post modified date"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: wp-to-twitter-oauth.php:258
|
58 |
+
msgid "Your time stamps are more than 5 minutes apart. Your server could lose its connection with Twitter."
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: wp-to-twitter.php:1269
|
62 |
+
msgid "Twitter posts are a maximum of 140 characters; Twitter counts URLs as 19 characters. Template tags: <code>#url#</code>, <code>#title#</code>, <code>#post#</code>, <code>#category#</code>, <code>#date#</code>, <code>#modified#</code>, <code>#author#</code>, <code>#account#</code>, <code>#tags#</code>, or <code>#blog#</code>."
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: wp-to-twitter-manager.php:733
|
66 |
+
msgid "Individual Authors"
|
67 |
+
msgstr "獨立的作者"
|
68 |
+
|
69 |
+
#: wp-to-twitter-manager.php:736
|
70 |
+
msgid "Authors have individual Twitter accounts"
|
71 |
+
msgstr "作者有獨立的Twitter賬戶"
|
72 |
+
|
73 |
+
#: wp-to-twitter-manager.php:736
|
74 |
+
msgid "Authors can add their username in their user profile. This feature can only add an @reference to the author. The @reference is placed using the <code>#account#</code> shortcode, which will pick up the main account if user accounts are not enabled."
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: wp-to-twitter-manager.php:751
|
78 |
+
msgid "Choose the lowest user group that can add their Twitter information"
|
79 |
+
msgstr "選擇具有添加Twitter賬戶權限的最低用戶組"
|
80 |
+
|
81 |
+
#: wp-to-twitter-manager.php:756
|
82 |
+
msgid "Choose the lowest user group that can see the Custom Tweet options when posting"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: wp-to-twitter-manager.php:761
|
86 |
+
msgid "User groups above this can toggle the Tweet/Don't Tweet option, but not see other custom tweet options."
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: wp-to-twitter-manager.php:767
|
90 |
+
msgid "Disable Error Messages"
|
91 |
+
msgstr "禁用錯誤信息"
|
92 |
+
|
93 |
+
#: wp-to-twitter-manager.php:769
|
94 |
+
msgid "Disable global URL shortener error messages."
|
95 |
+
msgstr "全局禁用短域名服務的錯誤信息。"
|
96 |
+
|
97 |
+
#: wp-to-twitter-manager.php:770
|
98 |
+
msgid "Disable global Twitter API error messages."
|
99 |
+
msgstr "全局禁用Twitter API的錯誤信息。"
|
100 |
+
|
101 |
+
#: wp-to-twitter-manager.php:771
|
102 |
+
msgid "Disable notification to implement OAuth"
|
103 |
+
msgstr "禁用OAuth請求的通知"
|
104 |
+
|
105 |
+
#: wp-to-twitter-manager.php:773
|
106 |
+
msgid "Get Debugging Data for OAuth Connection"
|
107 |
+
msgstr "OAuth連接的調試信息"
|
108 |
+
|
109 |
+
#: wp-to-twitter-manager.php:775
|
110 |
+
msgid "Switch to <code>http</code> connection. (Default is https)"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: wp-to-twitter-manager.php:777
|
114 |
+
msgid "I made a donation, so stop whinging at me, please."
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: wp-to-twitter-manager.php:791
|
118 |
+
msgid "Limit Updating Categories"
|
119 |
+
msgstr "限制更新分類"
|
120 |
+
|
121 |
+
#: wp-to-twitter-manager.php:794
|
122 |
+
msgid "If no categories are checked, limiting by category will be ignored, and all categories will be Tweeted."
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: wp-to-twitter-manager.php:795
|
126 |
+
msgid "<em>Category limits are disabled.</em>"
|
127 |
+
msgstr "<em>分類限制已被禁用。</em>"
|
128 |
+
|
129 |
+
#: wp-to-twitter-manager.php:804
|
130 |
+
msgid "Get Plug-in Support"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: wp-to-twitter-manager.php:807
|
134 |
+
msgid "Support requests without a donation will not be answered, but will be treated as bug reports."
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: wp-to-twitter-manager.php:818
|
138 |
+
msgid "Check Support"
|
139 |
+
msgstr "查看支持"
|
140 |
+
|
141 |
+
#: wp-to-twitter-manager.php:818
|
142 |
+
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."
|
143 |
+
msgstr "測試你的服務器是否支持<a href=\"http://www.joedolson.com/articles/wp-to-twitter/\">WP to Twitter</a>的Twitter同步功能和短域名服務。這項測試會在你的Twitter賬戶中發一條帶短域名的推。"
|
144 |
+
|
145 |
+
#: wp-to-twitter-manager.php:829
|
146 |
+
msgid "Support WP to Twitter"
|
147 |
+
msgstr ""
|
148 |
+
|
149 |
+
#: wp-to-twitter-manager.php:831
|
150 |
+
msgid "WP to Twitter Support"
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#: wp-to-twitter-manager.php:835
|
154 |
+
msgid "View Settings"
|
155 |
+
msgstr "查看設置"
|
156 |
+
|
157 |
+
#: wp-to-twitter-manager.php:837 wp-to-twitter.php:1273 wp-to-twitter.php:1275
|
158 |
+
msgid "Get Support"
|
159 |
+
msgstr "獲得支持"
|
160 |
+
|
161 |
+
#: wp-to-twitter-manager.php:841
|
162 |
+
msgid "<a href=\"http://www.joedolson.com/donate.php\">Make a donation today!</a> Every donation counts - donate $2, $10, or $100 and help me keep this plug-in running!"
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#: wp-to-twitter-manager.php:858
|
166 |
+
msgid "Upgrade Now!"
|
167 |
+
msgstr ""
|
168 |
+
|
169 |
+
#: wp-to-twitter-manager.php:861
|
170 |
+
msgid "Extra features with the PRO upgrade:"
|
171 |
+
msgstr ""
|
172 |
+
|
173 |
+
#: wp-to-twitter-manager.php:863
|
174 |
+
msgid "Users can post to their own Twitter accounts"
|
175 |
+
msgstr ""
|
176 |
+
|
177 |
+
#: wp-to-twitter-manager.php:864
|
178 |
+
msgid "Set a timer to send your Tweet minutes or hours after you publish the post"
|
179 |
+
msgstr ""
|
180 |
+
|
181 |
+
#: wp-to-twitter-manager.php:865
|
182 |
+
msgid "Automatically re-send Tweets at an assigned time after publishing"
|
183 |
+
msgstr ""
|
184 |
+
|
185 |
+
#: wp-to-twitter-manager.php:874
|
186 |
+
msgid "Shortcodes"
|
187 |
+
msgstr ""
|
188 |
+
|
189 |
+
#: wp-to-twitter-manager.php:876
|
190 |
+
msgid "Available in post update templates:"
|
191 |
+
msgstr ""
|
192 |
+
|
193 |
+
#: wp-to-twitter-manager.php:878
|
194 |
+
msgid "<code>#title#</code>: the title of your blog post"
|
195 |
+
msgstr "<code>#title#</code>: 博文的標題"
|
196 |
+
|
197 |
+
#: wp-to-twitter-manager.php:879
|
198 |
+
msgid "<code>#blog#</code>: the title of your blog"
|
199 |
+
msgstr "<code>#blog#</code>: 博客的站名"
|
200 |
+
|
201 |
+
#: wp-to-twitter-manager.php:880
|
202 |
+
msgid "<code>#post#</code>: a short excerpt of the post content"
|
203 |
+
msgstr "<code>#post#</code>: 博文概要"
|
204 |
+
|
205 |
+
#: wp-to-twitter-manager.php:881
|
206 |
+
msgid "<code>#category#</code>: the first selected category for the post"
|
207 |
+
msgstr "<code>#category#</code>: 博文的第一個分類"
|
208 |
+
|
209 |
+
#: wp-to-twitter-manager.php:882
|
210 |
+
msgid "<code>#date#</code>: the post date"
|
211 |
+
msgstr "<code>#date#</code>: 發布日期"
|
212 |
+
|
213 |
+
#: wp-to-twitter-manager.php:884
|
214 |
+
msgid "<code>#url#</code>: the post URL"
|
215 |
+
msgstr "<code>#url#</code>: 博文地址"
|
216 |
+
|
217 |
+
#: wp-to-twitter-manager.php:885
|
218 |
+
msgid "<code>#author#</code>: the post author"
|
219 |
+
msgstr "<code>#author#</code>: 博文作者"
|
220 |
+
|
221 |
+
#: wp-to-twitter-manager.php:886
|
222 |
+
msgid "<code>#account#</code>: the twitter @reference for the account (or the author, if author settings are enabled and set.)"
|
223 |
+
msgstr "<code>#account#</code>: 用@通知當前用戶的twitter賬戶(如果啟用了作者選項,則是作者)"
|
224 |
+
|
225 |
+
#: wp-to-twitter-manager.php:887
|
226 |
+
msgid "<code>#tags#</code>: your tags modified into hashtags. See options in the Advanced Settings section, below."
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: wp-to-twitter-manager.php:892
|
230 |
+
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>"
|
231 |
+
msgstr "你可以自定義短碼,以便於引用那些自定義的字段。要在推文中加入自定義字段,請用兩個方括號將自己字段的名字括起來。如: <code>[[custom_field]]</code></p>"
|
232 |
+
|
233 |
+
#: wp-to-twitter-oauth.php:99
|
234 |
+
msgid "WP to Twitter was unable to establish a connection to Twitter."
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
+
#: wp-to-twitter-oauth.php:169
|
238 |
+
msgid "There was an error querying Twitter's servers"
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: wp-to-twitter-oauth.php:185 wp-to-twitter-oauth.php:187
|
242 |
+
msgid "Connect to Twitter"
|
243 |
+
msgstr "連接到Twitter"
|
244 |
+
|
245 |
+
#: wp-to-twitter-oauth.php:190
|
246 |
+
msgid "WP to Twitter Set-up"
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: wp-to-twitter-oauth.php:191 wp-to-twitter-oauth.php:282
|
250 |
+
msgid "Your server time:"
|
251 |
+
msgstr "你服務器的時間:"
|
252 |
+
|
253 |
+
#: wp-to-twitter-oauth.php:191
|
254 |
+
msgid "Twitter's time:"
|
255 |
+
msgstr ""
|
256 |
+
|
257 |
+
#: wp-to-twitter-oauth.php:191
|
258 |
+
msgid "If these timestamps are not within 5 minutes of each other, your server will not connect to Twitter."
|
259 |
+
msgstr ""
|
260 |
+
|
261 |
+
#: wp-to-twitter-oauth.php:193
|
262 |
+
msgid "<em>Note</em>: you will not add your Twitter user information to WP to Twitter; it is not used in this authentication method."
|
263 |
+
msgstr ""
|
264 |
+
|
265 |
+
#: wp-to-twitter-oauth.php:197
|
266 |
+
msgid "1. Register this site as an application on "
|
267 |
+
msgstr "1. 將本站註冊為一個應用:"
|
268 |
+
|
269 |
+
#: wp-to-twitter-oauth.php:197
|
270 |
+
msgid "Twitter's application registration page"
|
271 |
+
msgstr "Twitter應用的註冊頁面"
|
272 |
+
|
273 |
+
#: wp-to-twitter-oauth.php:199
|
274 |
+
msgid "If you're not currently logged in to Twitter, log-in to the account you want associated with this site"
|
275 |
+
msgstr ""
|
276 |
+
|
277 |
+
#: wp-to-twitter-oauth.php:200
|
278 |
+
msgid "Your Application's Name will show up after \"via\" in your twitter stream. Your application name cannot include the word \"Twitter.\""
|
279 |
+
msgstr ""
|
280 |
+
|
281 |
+
#: wp-to-twitter-oauth.php:201
|
282 |
+
msgid "Your Application Description can be anything."
|
283 |
+
msgstr ""
|
284 |
+
|
285 |
+
#: wp-to-twitter-oauth.php:202
|
286 |
+
msgid "The WebSite and Callback URL should be "
|
287 |
+
msgstr "WebSite和Callback URL應該是"
|
288 |
+
|
289 |
+
#: wp-to-twitter-oauth.php:204
|
290 |
+
msgid "Agree to the Developer Rules of the Road and continue."
|
291 |
+
msgstr "同意開發者協議,並繼續。"
|
292 |
+
|
293 |
+
#: wp-to-twitter-oauth.php:205
|
294 |
+
msgid "2. Switch to the \"Settings\" tab in Twitter apps"
|
295 |
+
msgstr ""
|
296 |
+
|
297 |
+
#: wp-to-twitter-oauth.php:207
|
298 |
+
msgid "Select \"Read and Write\" for the Application Type"
|
299 |
+
msgstr "應用程序類型選擇\"Read and Write\""
|
300 |
+
|
301 |
+
#: wp-to-twitter-oauth.php:208
|
302 |
+
msgid "Update the application settings"
|
303 |
+
msgstr "更新程序設置"
|
304 |
+
|
305 |
+
#: wp-to-twitter-oauth.php:209
|
306 |
+
msgid "Return to the Details tab and create your access token. Refresh page to view your access tokens."
|
307 |
+
msgstr ""
|
308 |
+
|
309 |
+
#: wp-to-twitter-oauth.php:211
|
310 |
+
msgid "Once you have registered your site as an application, you will be provided with four keys."
|
311 |
+
msgstr "應用程序註冊成功後,你要輸入Twitter所提示的4個Key。"
|
312 |
+
|
313 |
+
#: wp-to-twitter-oauth.php:212
|
314 |
+
msgid "3. Copy and paste your consumer key and consumer secret into the fields below"
|
315 |
+
msgstr "3. 將你的Consumer Key和Consumer Secert復制到下面"
|
316 |
+
|
317 |
+
#: wp-to-twitter-oauth.php:215
|
318 |
+
msgid "Twitter Consumer Key"
|
319 |
+
msgstr "Twitter Consumer Key"
|
320 |
+
|
321 |
+
#: wp-to-twitter-oauth.php:219
|
322 |
+
msgid "Twitter Consumer Secret"
|
323 |
+
msgstr "Twitter Consumer Secret"
|
324 |
+
|
325 |
+
#: wp-to-twitter-oauth.php:223
|
326 |
+
msgid "4. Copy and paste your Access Token and Access Token Secret into the fields below"
|
327 |
+
msgstr "4. 將你的Access Token和Access Token Secret復制至下面"
|
328 |
+
|
329 |
+
#: wp-to-twitter-oauth.php:224
|
330 |
+
msgid "If the Access level for your Access Token is not \"<em>Read and write</em>\", you must return to step 2 and generate a new Access Token."
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
+
#: wp-to-twitter-oauth.php:227
|
334 |
+
msgid "Access Token"
|
335 |
+
msgstr "Access Token"
|
336 |
+
|
337 |
+
#: wp-to-twitter-oauth.php:231
|
338 |
+
msgid "Access Token Secret"
|
339 |
+
msgstr "Access Token Secret"
|
340 |
+
|
341 |
+
#: wp-to-twitter-oauth.php:250
|
342 |
+
msgid "Disconnect Your WordPress and Twitter Account"
|
343 |
+
msgstr "斷開你的Wordpress與Twitter連接"
|
344 |
+
|
345 |
+
#: wp-to-twitter-oauth.php:254
|
346 |
+
msgid "Disconnect your WordPress and Twitter Account"
|
347 |
+
msgstr ""
|
348 |
+
|
349 |
+
#: wp-to-twitter-oauth.php:256
|
350 |
+
msgid "<strong>Troubleshooting tip:</strong> Connected, but getting a notice that your Authentication credentials are missing or incorrect? Check whether your Access token has read and write permission. If not, you'll need to create a new token."
|
351 |
+
msgstr ""
|
352 |
+
|
353 |
+
#: wp-to-twitter-oauth.php:264
|
354 |
+
msgid "Disconnect from Twitter"
|
355 |
+
msgstr "已與Twitter斷開連接"
|
356 |
+
|
357 |
+
#: wp-to-twitter-oauth.php:270
|
358 |
+
msgid "Twitter Username "
|
359 |
+
msgstr "Twitter的用戶名"
|
360 |
+
|
361 |
+
#: wp-to-twitter-oauth.php:271
|
362 |
+
msgid "Consumer Key "
|
363 |
+
msgstr "Consumer Key "
|
364 |
+
|
365 |
+
#: wp-to-twitter-oauth.php:272
|
366 |
+
msgid "Consumer Secret "
|
367 |
+
msgstr "Consumer Secret "
|
368 |
+
|
369 |
+
#: wp-to-twitter-oauth.php:273
|
370 |
+
msgid "Access Token "
|
371 |
+
msgstr "Access Token "
|
372 |
+
|
373 |
+
#: wp-to-twitter-oauth.php:274
|
374 |
+
msgid "Access Token Secret "
|
375 |
+
msgstr "Access Token Secret "
|
376 |
+
|
377 |
+
#: wp-to-twitter-oauth.php:282
|
378 |
+
msgid "Twitter's current server time: "
|
379 |
+
msgstr "Twitter服務器的當前時間:"
|
380 |
+
|
381 |
+
#: wp-to-twitter.php:51
|
382 |
+
msgid "WP to Twitter requires PHP version 5 or above. Please upgrade PHP to run WP to Twitter."
|
383 |
+
msgstr ""
|
384 |
+
|
385 |
+
#: wp-to-twitter.php:72
|
386 |
+
msgid "WP to Twitter requires WordPress 2.9.2 or a more recent version, but some features will not work below 3.0.6. <a href=\"http://codex.wordpress.org/Upgrading_WordPress\">Please update WordPress to continue using WP to Twitter with all features!</a>"
|
387 |
+
msgstr ""
|
388 |
+
|
389 |
+
#: wp-to-twitter.php:90
|
390 |
+
msgid "Twitter requires authentication by OAuth. You will need to <a href='%s'>update your settings</a> to complete installation of WP to Twitter."
|
391 |
+
msgstr "Twitter需要OAuth驗證。若要完成安裝,請先<a href='%s'>更新設置</a>。"
|
392 |
+
|
393 |
+
#: wp-to-twitter.php:275
|
394 |
+
msgid "200 OK: Success!"
|
395 |
+
msgstr "200 OK: 成功!"
|
396 |
+
|
397 |
+
#: wp-to-twitter.php:280
|
398 |
+
msgid "400 Bad Request: The request was invalid. This is the status code returned during rate limiting."
|
399 |
+
msgstr "400 無效請求:請求無效。在請求頻率限制的範圍內返回了400的狀態碼。"
|
400 |
+
|
401 |
+
#: wp-to-twitter.php:284
|
402 |
+
msgid "401 Unauthorized: Authentication credentials were missing or incorrect."
|
403 |
+
msgstr "401 未授權:授權證書丟失或不正確。"
|
404 |
+
|
405 |
+
#: wp-to-twitter.php:289
|
406 |
+
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 can include: Too many Tweets created in a short time or the same Tweet was submitted twice in a row, among others. This is not an error by WP to Twitter."
|
407 |
+
msgstr ""
|
408 |
+
|
409 |
+
#: wp-to-twitter.php:293
|
410 |
+
msgid "500 Internal Server Error: Something is broken at Twitter."
|
411 |
+
msgstr "500 內部錯誤:Twitter服務器發生了內部錯誤。"
|
412 |
+
|
413 |
+
#: wp-to-twitter.php:297
|
414 |
+
msgid "503 Service Unavailable: The Twitter servers are up, but overloaded with requests - Please try again later."
|
415 |
+
msgstr ""
|
416 |
+
|
417 |
+
#: wp-to-twitter.php:301
|
418 |
+
msgid "502 Bad Gateway: Twitter is down or being upgraded."
|
419 |
+
msgstr "502 錯誤的網關:Twitter服務器宕機或升級中。"
|
420 |
+
|
421 |
+
#: wp-to-twitter.php:330
|
422 |
+
msgid "No Twitter OAuth connection found."
|
423 |
+
msgstr ""
|
424 |
+
|
425 |
+
#: wp-to-twitter.php:1155
|
426 |
+
msgid "WP Tweets"
|
427 |
+
msgstr ""
|
428 |
+
|
429 |
+
#: wp-to-twitter.php:1202
|
430 |
+
msgid "Previous Tweets"
|
431 |
+
msgstr ""
|
432 |
+
|
433 |
+
#: wp-to-twitter.php:1218
|
434 |
+
msgid "Custom Twitter Post"
|
435 |
+
msgstr "定制推文"
|
436 |
+
|
437 |
+
#: wp-to-twitter.php:1220
|
438 |
+
msgid "Your template:"
|
439 |
+
msgstr ""
|
440 |
+
|
441 |
+
#: wp-to-twitter.php:1224
|
442 |
+
msgid "YOURLS Custom Keyword"
|
443 |
+
msgstr ""
|
444 |
+
|
445 |
+
#: wp-to-twitter.php:1273
|
446 |
+
msgid "Upgrade to WP Tweets Pro"
|
447 |
+
msgstr ""
|
448 |
+
|
449 |
+
#: wp-to-twitter.php:1234
|
450 |
+
msgid "Don't Tweet this post."
|
451 |
+
msgstr "不要將這篇日誌同步至Twitter"
|
452 |
+
|
453 |
+
#: wp-to-twitter.php:1234
|
454 |
+
msgid "Tweet this post."
|
455 |
+
msgstr "推這篇博文。"
|
456 |
+
|
457 |
+
#: wp-to-twitter.php:1244
|
458 |
+
msgid "Access to customizing WP to Twitter values is not allowed for your user role."
|
459 |
+
msgstr ""
|
460 |
+
|
461 |
+
#: wp-to-twitter.php:1263
|
462 |
+
msgid "This URL is direct and has not been shortened: "
|
463 |
+
msgstr "URL沒有使用短域名服務:"
|
464 |
+
|
465 |
+
#: wp-to-twitter.php:1319
|
466 |
+
msgid "Characters left: "
|
467 |
+
msgstr ""
|
468 |
+
|
469 |
+
#: wp-to-twitter.php:1380
|
470 |
+
msgid "WP Tweets User Settings"
|
471 |
+
msgstr ""
|
472 |
+
|
473 |
+
#: wp-to-twitter.php:1384
|
474 |
+
msgid "Use My Twitter Username"
|
475 |
+
msgstr "使用我Twitter的用戶名"
|
476 |
+
|
477 |
+
#: wp-to-twitter.php:1385
|
478 |
+
msgid "Tweet my posts with an @ reference to my username."
|
479 |
+
msgstr "同步日誌到Twitter後,使用@通知我的Twitter賬戶。"
|
480 |
+
|
481 |
+
#: wp-to-twitter.php:1386
|
482 |
+
msgid "Tweet my posts with an @ reference to both my username and to the main site username."
|
483 |
+
msgstr "如果如果同步日誌到Twitter後,使用@通知我的Twitter賬戶以及博客的主Twitter賬戶。"
|
484 |
+
|
485 |
+
#: wp-to-twitter.php:1390
|
486 |
+
msgid "Your Twitter Username"
|
487 |
+
msgstr "你的Twitter用戶名"
|
488 |
+
|
489 |
+
#: wp-to-twitter.php:1391
|
490 |
+
msgid "Enter your own Twitter username."
|
491 |
+
msgstr "輸入你的Twitter用戶名。"
|
492 |
+
|
493 |
+
#: wp-to-twitter.php:1396
|
494 |
+
msgid "Note: if all site administrators have set-up their own Twitter accounts, the primary site account (as set on the settings page) is not required, and won't be used."
|
495 |
+
msgstr ""
|
496 |
+
|
497 |
+
#: wp-to-twitter.php:1439
|
498 |
+
msgid "Check off categories to tweet"
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
+
#: wp-to-twitter.php:1443
|
502 |
+
msgid "Do not tweet posts in checked categories (Reverses default behavior)"
|
503 |
+
msgstr ""
|
504 |
+
|
505 |
+
#: wp-to-twitter.php:1460
|
506 |
+
msgid "Limits are exclusive. If a post is in one category which should be posted and one category that should not, it will not be posted."
|
507 |
+
msgstr ""
|
508 |
+
|
509 |
+
#: wp-to-twitter.php:1463
|
510 |
+
msgid "Set Categories"
|
511 |
+
msgstr "設定分類"
|
512 |
+
|
513 |
+
#: wp-to-twitter.php:1487
|
514 |
+
msgid "Settings"
|
515 |
+
msgstr "設置"
|
516 |
+
|
517 |
+
#: wp-to-twitter.php:1522
|
518 |
+
msgid "<br /><strong>Note:</strong> Please review the <a class=\"thickbox\" href=\"%1$s\">changelog</a> before upgrading."
|
519 |
+
msgstr ""
|
520 |
+
|
521 |
+
msgid "WP to Twitter"
|
522 |
+
msgstr "WP to Twitter"
|
523 |
+
|
524 |
+
msgid "http://www.joedolson.com/articles/wp-to-twitter/"
|
525 |
+
msgstr "http://www.joedolson.com/articles/wp-to-twitter/"
|
526 |
+
|
527 |
+
msgid "Posts a Tweet 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."
|
528 |
+
msgstr ""
|
529 |
+
|
530 |
+
msgid "Joseph Dolson"
|
531 |
+
msgstr "Joseph Dolson"
|
532 |
+
|
533 |
+
msgid "http://www.joedolson.com/"
|
534 |
+
msgstr "http://www.joedolson.com/"
|
535 |
+
|
536 |
+
#: functions.php:329
|
537 |
+
msgid "Thank you for supporting the continuing development of this plug-in! I'll get back to you as soon as I can."
|
538 |
+
msgstr ""
|
539 |
+
|
540 |
+
#: functions.php:323
|
541 |
+
msgid "Please read the FAQ and other Help documents before making a support request."
|
542 |
+
msgstr ""
|
543 |
+
|
544 |
+
#: functions.php:200
|
545 |
+
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."
|
546 |
+
msgstr "[<a href='options-general.php?page=wp-to-twitter/wp-to-twitter.php'>隱藏</a>]如果你在使用中遇到錯誤,請復制這些設置信息給我們以獲得技術支持。"
|
547 |
+
|
548 |
+
#: functions.php:345
|
549 |
+
msgid "Please include your license key in your support request."
|
550 |
+
msgstr ""
|
551 |
+
|
552 |
+
#: functions.php:331
|
553 |
+
msgid "I cannot provide free support, but will treat your request as a bug report, and will incorporate any permanent solutions I discover into the plug-in."
|
554 |
+
msgstr ""
|
555 |
+
|
556 |
+
#: functions.php:325
|
557 |
+
msgid "Please describe your problem. I'm not psychic."
|
558 |
+
msgstr ""
|
559 |
+
|
560 |
+
#: functions.php:350
|
561 |
+
msgid "<strong>Please note</strong>: I do keep records of those who have donated, but if your donation came from somebody other than your account at this web site, you must note this in your message."
|
562 |
+
msgstr ""
|
563 |
+
|
564 |
+
#: functions.php:355
|
565 |
+
msgid "From:"
|
566 |
+
msgstr ""
|
567 |
+
|
568 |
+
#: functions.php:358
|
569 |
+
msgid "I have read <a href=\"http://www.joedolson.com/articles/wp-to-twitter/support-2/\">the FAQ for this plug-in</a>."
|
570 |
+
msgstr ""
|
571 |
+
|
572 |
+
#: functions.php:361
|
573 |
+
msgid "I have <a href=\"http://www.joedolson.com/donate.php\">made a donation to help support this plug-in</a>."
|
574 |
+
msgstr ""
|
575 |
+
|
576 |
+
#: functions.php:367
|
577 |
+
msgid "Send Support Request"
|
578 |
+
msgstr ""
|
579 |
+
|
580 |
+
#: functions.php:370
|
581 |
+
msgid "The following additional information will be sent with your support request:"
|
582 |
+
msgstr ""
|
583 |
+
|
584 |
+
#: wp-to-twitter-manager.php:41
|
585 |
+
msgid "No error information is available for your shortener."
|
586 |
+
msgstr "短語名服務發生未知錯誤。"
|
587 |
+
|
588 |
+
#: wp-to-twitter-manager.php:43
|
589 |
+
msgid "<li class=\"error\"><strong>WP to Twitter was unable to contact your selected URL shortening service.</strong></li>"
|
590 |
+
msgstr "<li class=\"error\"><strong>WP to Twitter無法連接到所選的短域名服務。</strong></li>"
|
591 |
+
|
592 |
+
#: wp-to-twitter-manager.php:46
|
593 |
+
msgid "<li><strong>WP to Twitter successfully contacted your selected URL shortening service.</strong> The following link should point to your blog homepage:"
|
594 |
+
msgstr "<li><strong>WP to Twitter成功的連接到所選的短域名服務。</strong> 下面的鏈接會指向你的博客首頁。"
|
595 |
+
|
596 |
+
#: wp-to-twitter-manager.php:54
|
597 |
+
msgid "<li><strong>WP to Twitter successfully submitted a status update to Twitter.</strong></li>"
|
598 |
+
msgstr "<li><strong>WP to Twitter成功的更新了一條推。</strong></li>"
|
599 |
+
|
600 |
+
#: wp-to-twitter-manager.php:57
|
601 |
+
msgid "<li class=\"error\"><strong>WP to Twitter failed to submit an update to Twitter.</strong></li>"
|
602 |
+
msgstr "<li class=\"error\"><strong>WP to Twitter更新Twitter失敗。</strong></li>"
|
603 |
+
|
604 |
+
#: wp-to-twitter-manager.php:61
|
605 |
+
msgid "You have not connected WordPress to Twitter."
|
606 |
+
msgstr "你還沒有建立Wordpress到Twitter的連接。"
|
607 |
+
|
608 |
+
#: wp-to-twitter-manager.php:65
|
609 |
+
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>"
|
610 |
+
msgstr "<li><strong>你的服務器可能缺少一些WP to Twitter需要的PHP函數。</strong>你可以繼續嘗試,因為這些測試結果並不保證是正確的。</li>"
|
611 |
+
|
612 |
+
#: wp-to-twitter-manager.php:69
|
613 |
+
msgid "<li><strong>Your server should run WP to Twitter successfully.</strong></li>"
|
614 |
+
msgstr "<li><strong>你的服務器應該可以正常運行WP to Twitter。</strong></li>"
|
615 |
+
|
616 |
+
#: wp-to-twitter-manager.php:87
|
617 |
+
msgid "WP to Twitter Errors Cleared"
|
618 |
+
msgstr "WP to Twitter 的錯誤信息已清除"
|
619 |
+
|
620 |
+
#: wp-to-twitter-manager.php:163
|
621 |
+
msgid "WP to Twitter is now connected with Twitter."
|
622 |
+
msgstr "WP to Twitter已連接到Twitter服務器。"
|
623 |
+
|
624 |
+
#: wp-to-twitter-manager.php:170
|
625 |
+
msgid "WP to Twitter failed to connect with Twitter. Try enabling OAuth debugging."
|
626 |
+
msgstr ""
|
627 |
+
|
628 |
+
#: wp-to-twitter-manager.php:177
|
629 |
+
msgid "OAuth Authentication Data Cleared."
|
630 |
+
msgstr "OAuth驗證信息已被清除。"
|
631 |
+
|
632 |
+
#: wp-to-twitter-manager.php:184
|
633 |
+
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."
|
634 |
+
msgstr "OAuth驗證失敗。你服務器的時間與Twitter的時間不同步。請聯系你服務器的管理員。"
|
635 |
+
|
636 |
+
#: wp-to-twitter-manager.php:191
|
637 |
+
msgid "OAuth Authentication response not understood."
|
638 |
+
msgstr "OAuth驗證的返回信息無法別解析。"
|
639 |
+
|
640 |
+
#: wp-to-twitter-manager.php:285
|
641 |
+
msgid "WP to Twitter Advanced Options Updated"
|
642 |
+
msgstr "WP to Twitter高級選項"
|
643 |
+
|
644 |
+
#: wp-to-twitter-manager.php:307
|
645 |
+
msgid "You must add your Bit.ly login and API key in order to shorten URLs with Bit.ly."
|
646 |
+
msgstr "如果你想使用Bit.ly提供的URL縮短功能,就必須添加Bit.ly登錄信息和API Key。"
|
647 |
+
|
648 |
+
#: wp-to-twitter-manager.php:311
|
649 |
+
msgid "You must add your YOURLS remote URL, login, and password in order to shorten URLs with a remote installation of YOURLS."
|
650 |
+
msgstr "要使用遠程的YOURLS短域名服務,請先添加你的YOURLS的URL,用戶名和密碼。"
|
651 |
+
|
652 |
+
#: wp-to-twitter-manager.php:315
|
653 |
+
msgid "You must add your YOURLS server path in order to shorten URLs with a remote installation of YOURLS."
|
654 |
+
msgstr "要使用本機的YOURLS短域名服務,請先添加你的YOURLS路徑。"
|
655 |
+
|
656 |
+
#: wp-to-twitter-manager.php:318
|
657 |
+
msgid "WP to Twitter Options Updated"
|
658 |
+
msgstr "WP to Twitter 的設置已經更新"
|
659 |
+
|
660 |
+
#: wp-to-twitter-manager.php:327
|
661 |
+
msgid "Category limits updated."
|
662 |
+
msgstr "分類的限制已更新。"
|
663 |
+
|
664 |
+
#: wp-to-twitter-manager.php:331
|
665 |
+
msgid "Category limits unset."
|
666 |
+
msgstr "分類的限制未設定。"
|
667 |
+
|
668 |
+
#: wp-to-twitter-manager.php:338
|
669 |
+
msgid "YOURLS password updated. "
|
670 |
+
msgstr "YOURLS的密碼已經更新。"
|
671 |
+
|
672 |
+
#: wp-to-twitter-manager.php:341
|
673 |
+
msgid "YOURLS password deleted. You will be unable to use your remote YOURLS account to create short URLS."
|
674 |
+
msgstr "YOURLS的密碼已刪除。你將無法使用YOURLS短域名服務來縮短域名。"
|
675 |
+
|
676 |
+
#: wp-to-twitter-manager.php:343
|
677 |
+
msgid "Failed to save your YOURLS password! "
|
678 |
+
msgstr "YOURLS的密碼保存失敗!"
|
679 |
+
|
680 |
+
#: wp-to-twitter-manager.php:347
|
681 |
+
msgid "YOURLS username added. "
|
682 |
+
msgstr "YOURLS的用戶名已添加。"
|
683 |
+
|
684 |
+
#: wp-to-twitter-manager.php:351
|
685 |
+
msgid "YOURLS API url added. "
|
686 |
+
msgstr "YOURLS的API URL已添加。"
|
687 |
+
|
688 |
+
#: wp-to-twitter-manager.php:354
|
689 |
+
msgid "YOURLS API url removed. "
|
690 |
+
msgstr "YOURLS的API URL已移除。"
|
691 |
+
|
692 |
+
#: wp-to-twitter-manager.php:359
|
693 |
+
msgid "YOURLS local server path added. "
|
694 |
+
msgstr "本地YOURLS服務的路徑地址已添加。"
|
695 |
+
|
696 |
+
#: wp-to-twitter-manager.php:361
|
697 |
+
msgid "The path to your YOURLS installation is not correct. "
|
698 |
+
msgstr "所輸入的YOURLS的路徑無效。"
|
699 |
+
|
700 |
+
#: wp-to-twitter-manager.php:365
|
701 |
+
msgid "YOURLS local server path removed. "
|
702 |
+
msgstr "YOURLS的路徑地址已刪除。"
|
703 |
+
|
704 |
+
#: wp-to-twitter-manager.php:370
|
705 |
+
msgid "YOURLS will use Post ID for short URL slug."
|
706 |
+
msgstr "YOURLS采用博文的ID來縮短域名。"
|
707 |
+
|
708 |
+
#: wp-to-twitter-manager.php:372
|
709 |
+
msgid "YOURLS will use your custom keyword for short URL slug."
|
710 |
+
msgstr ""
|
711 |
+
|
712 |
+
#: wp-to-twitter-manager.php:376
|
713 |
+
msgid "YOURLS will not use Post ID for the short URL slug."
|
714 |
+
msgstr "YOURLS不采用博文的ID來縮短域名。"
|
715 |
+
|
716 |
+
#: wp-to-twitter-manager.php:384
|
717 |
+
msgid "Su.pr API Key and Username Updated"
|
718 |
+
msgstr "Su.pr API Key和用戶名已更新"
|
719 |
+
|
720 |
+
#: wp-to-twitter-manager.php:388
|
721 |
+
msgid "Su.pr API Key and username deleted. Su.pr URLs created by WP to Twitter will no longer be associated with your account. "
|
722 |
+
msgstr "Su.pr API Key已經被刪除。WP to Twitter將不再與Su.pr關聯。"
|
723 |
+
|
724 |
+
#: wp-to-twitter-manager.php:390
|
725 |
+
msgid "Su.pr API Key not added - <a href='http://su.pr/'>get one here</a>! "
|
726 |
+
msgstr "Su.pr API Key 還沒有添加 - <a href='http://cli.gs/user/api/'>這裏</a>來獲取一個吧!"
|
727 |
+
|
728 |
+
#: wp-to-twitter-manager.php:396
|
729 |
+
msgid "Bit.ly API Key Updated."
|
730 |
+
msgstr "Bit.ly API Key 已經更新"
|
731 |
+
|
732 |
+
#: wp-to-twitter-manager.php:399
|
733 |
+
msgid "Bit.ly API Key deleted. You cannot use the Bit.ly API without an API key. "
|
734 |
+
msgstr "Bit.ly API Key 已經刪除。如果沒有 API,將無法使用Bit.ly提供的服務。"
|
735 |
+
|
736 |
+
#: wp-to-twitter-manager.php:401
|
737 |
+
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."
|
738 |
+
msgstr "Bit.ly的API還沒有添加 - <a href='http://bit.ly/account/'>這裏</a>獲得一個吧! 如果你想使用URL縮短功能,就必須提供一個Bit.ly的API。"
|
739 |
+
|
740 |
+
#: wp-to-twitter-manager.php:405
|
741 |
+
msgid " Bit.ly User Login Updated."
|
742 |
+
msgstr "Bit.ly登錄信息已經更新。"
|
743 |
+
|
744 |
+
#: wp-to-twitter-manager.php:408
|
745 |
+
msgid "Bit.ly User Login deleted. You cannot use the Bit.ly API without providing your username. "
|
746 |
+
msgstr "Bit.ly登錄信息已經刪除。沒有了登錄信息,你將不能使用Bit.ly。"
|
747 |
+
|
748 |
+
#: wp-to-twitter-manager.php:410
|
749 |
+
msgid "Bit.ly Login not added - <a href='http://bit.ly/account/'>get one here</a>! "
|
750 |
+
msgstr "Bit.ly 登錄信息沒有添加 - <a href='http://bit.ly/account/'>這裏</a>來獲取一個吧!"
|
751 |
+
|
752 |
+
#: wp-to-twitter-manager.php:426
|
753 |
+
msgid "<p>One or more of your last posts has failed to send a status update to Twitter. The Tweet has been saved, and you can re-Tweet it at your leisure.</p>"
|
754 |
+
msgstr ""
|
755 |
+
|
756 |
+
#: wp-to-twitter-manager.php:432
|
757 |
+
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. "
|
758 |
+
msgstr "抱歉! 不能連接Twitter服務器來將你的<strong>新鏈接</strong>同步至Twitter! 我恐怕你得手動發這個推了。"
|
759 |
+
|
760 |
+
#: wp-to-twitter-manager.php:435
|
761 |
+
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.</p>"
|
762 |
+
msgstr ""
|
763 |
+
|
764 |
+
#: wp-to-twitter-manager.php:441
|
765 |
+
msgid "Clear 'WP to Twitter' Error Messages"
|
766 |
+
msgstr "清除WP to Twitter的錯誤信息"
|
767 |
+
|
768 |
+
#: wp-to-twitter-manager.php:448
|
769 |
+
msgid "WP to Twitter Options"
|
770 |
+
msgstr "WP to Twitter 選項"
|
771 |
+
|
772 |
+
#: wp-to-twitter-manager.php:461
|
773 |
+
msgid "Basic Settings"
|
774 |
+
msgstr "基本設置"
|
775 |
+
|
776 |
+
#: wp-to-twitter-manager.php:466 wp-to-twitter-manager.php:529
|
777 |
+
msgid "Save WP->Twitter Options"
|
778 |
+
msgstr "保存 WP to Twitter 選項"
|
779 |
+
|
780 |
+
#: wp-to-twitter-manager.php:496
|
781 |
+
msgid "Settings for Comments"
|
782 |
+
msgstr "評論設置"
|
783 |
+
|
784 |
+
#: wp-to-twitter-manager.php:499
|
785 |
+
msgid "Update Twitter when new comments are posted"
|
786 |
+
msgstr "當添加評論時同步至Twitter"
|
787 |
+
|
788 |
+
#: wp-to-twitter-manager.php:500
|
789 |
+
msgid "Text for new comments:"
|
790 |
+
msgstr "發表新評論時,推的內容:"
|
791 |
+
|
792 |
+
#: wp-to-twitter-manager.php:505
|
793 |
+
msgid "Settings for Links"
|
794 |
+
msgstr "鏈接設置"
|
795 |
+
|
796 |
+
#: wp-to-twitter-manager.php:508
|
797 |
+
msgid "Update Twitter when you post a Blogroll link"
|
798 |
+
msgstr "當Blogroll鏈接更新時同步至Twitter"
|
799 |
+
|
800 |
+
#: wp-to-twitter-manager.php:509
|
801 |
+
msgid "Text for new link updates:"
|
802 |
+
msgstr "添加新鏈接時,推的內容:"
|
803 |
+
|
804 |
+
#: wp-to-twitter-manager.php:509
|
805 |
+
msgid "Available shortcodes: <code>#url#</code>, <code>#title#</code>, and <code>#description#</code>."
|
806 |
+
msgstr "支持的簡碼:<code>#url#</code>,<code>#title#</code>,<code>#description#</code>。"
|
807 |
+
|
808 |
+
#: wp-to-twitter-manager.php:513
|
809 |
+
msgid "Choose your short URL service (account settings below)"
|
810 |
+
msgstr "選擇你的短域名服務(賬戶設置在下面)"
|
811 |
+
|
812 |
+
#: wp-to-twitter-manager.php:516
|
813 |
+
msgid "Don't shorten URLs."
|
814 |
+
msgstr "不要縮短URL。"
|
815 |
+
|
816 |
+
#: wp-to-twitter-manager.php:517
|
817 |
+
msgid "Use Su.pr for my URL shortener."
|
818 |
+
msgstr "使用<strong>Su.pr</strong>來為我縮短URL。"
|
819 |
+
|
820 |
+
#: wp-to-twitter-manager.php:518
|
821 |
+
msgid "Use Bit.ly for my URL shortener."
|
822 |
+
msgstr "使用<strong>Bit.ly</strong>短域名服務。"
|
823 |
+
|
824 |
+
#: wp-to-twitter-manager.php:519
|
825 |
+
msgid "Use Goo.gl as a URL shortener."
|
826 |
+
msgstr ""
|
827 |
+
|
828 |
+
#: wp-to-twitter-manager.php:520
|
829 |
+
msgid "YOURLS (installed on this server)"
|
830 |
+
msgstr "YOURLS (安裝在這臺服務器上)"
|
831 |
+
|
832 |
+
#: wp-to-twitter-manager.php:521
|
833 |
+
msgid "YOURLS (installed on a remote server)"
|
834 |
+
msgstr "YOURLS(安裝在遠程的服務器上)"
|
835 |
+
|
836 |
+
#: wp-to-twitter-manager.php:522
|
837 |
+
msgid "Use WordPress as a URL shortener."
|
838 |
+
msgstr "使用<strong>Wordpress</strong>短域名服務。"
|
839 |
+
|
840 |
+
#: wp-to-twitter-manager.php:537
|
841 |
+
msgid "<abbr title=\"Uniform Resource Locator\">URL</abbr> Shortener Account Settings"
|
842 |
+
msgstr "<abbr title=\"統一資源定位符\">URL</abbr>短域名賬戶設置"
|
843 |
+
|
844 |
+
#: wp-to-twitter-manager.php:540
|
845 |
+
msgid "Your Su.pr account details"
|
846 |
+
msgstr "你的Su.pr賬戶信息:"
|
847 |
+
|
848 |
+
#: wp-to-twitter-manager.php:544
|
849 |
+
msgid "Your Su.pr Username:"
|
850 |
+
msgstr "你的Su.pr用戶名:"
|
851 |
+
|
852 |
+
#: wp-to-twitter-manager.php:548
|
853 |
+
msgid "Your Su.pr <abbr title='application programming interface'>API</abbr> Key:"
|
854 |
+
msgstr "你的Su.pr<abbr title='應用程序接口'>API</abbr> Key:"
|
855 |
+
|
856 |
+
#: wp-to-twitter-manager.php:555
|
857 |
+
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."
|
858 |
+
msgstr "你還沒有Su.pr賬戶或者Su.pr的API Key麽? 那快來<a href='http://cli.gs/user/api/'>這裏</a>免費獲取一個吧!<br />如果你需要關聯你的Su.pr賬戶,你還需要一個API Key。"
|
859 |
+
|
860 |
+
#: wp-to-twitter-manager.php:560
|
861 |
+
msgid "Your Bit.ly account details"
|
862 |
+
msgstr "你的Bit.ly賬戶信息"
|
863 |
+
|
864 |
+
#: wp-to-twitter-manager.php:564
|
865 |
+
msgid "Your Bit.ly username:"
|
866 |
+
msgstr "你的Bit.ly用戶名:"
|
867 |
+
|
868 |
+
#: wp-to-twitter-manager.php:566
|
869 |
+
msgid "This must be a standard Bit.ly account. Your Twitter or Facebook log-in will not work."
|
870 |
+
msgstr ""
|
871 |
+
|
872 |
+
#: wp-to-twitter-manager.php:568
|
873 |
+
msgid "Your Bit.ly <abbr title='application programming interface'>API</abbr> Key:"
|
874 |
+
msgstr "你Bit.ly<abbr title='應用程序接口'>API</abbr> Key:"
|
875 |
+
|
876 |
+
#: wp-to-twitter-manager.php:576
|
877 |
+
msgid "Save Bit.ly API Key"
|
878 |
+
msgstr "保存Bit.ly API Key"
|
879 |
+
|
880 |
+
#: wp-to-twitter-manager.php:576
|
881 |
+
msgid "Clear Bit.ly API Key"
|
882 |
+
msgstr "清除Bit.ly API Key"
|
883 |
+
|
884 |
+
#: wp-to-twitter-manager.php:576
|
885 |
+
msgid "A Bit.ly API key and username is required to shorten URLs via the Bit.ly API and WP to Twitter."
|
886 |
+
msgstr "當通過Bit.ly API縮短URL時,需要Bit.ly的API Key和用戶名。"
|
887 |
+
|
888 |
+
#: wp-to-twitter-manager.php:581
|
889 |
+
msgid "Your YOURLS account details"
|
890 |
+
msgstr "你的YOURLS賬戶信息:"
|
891 |
+
|
892 |
+
#: wp-to-twitter-manager.php:585
|
893 |
+
msgid "Path to your YOURLS config file (Local installations)"
|
894 |
+
msgstr "本地YOURLS的配置文件(本地安裝)"
|
895 |
+
|
896 |
+
#: wp-to-twitter-manager.php:586 wp-to-twitter-manager.php:590
|
897 |
+
msgid "Example:"
|
898 |
+
msgstr "如:"
|
899 |
+
|
900 |
+
#: wp-to-twitter-manager.php:589
|
901 |
+
msgid "URI to the YOURLS API (Remote installations)"
|
902 |
+
msgstr "YOURLS API的URI地址(遠程安裝)"
|
903 |
+
|
904 |
+
#: wp-to-twitter-manager.php:593
|
905 |
+
msgid "Your YOURLS username:"
|
906 |
+
msgstr "你的YOURLS用戶名:"
|
907 |
+
|
908 |
+
#: wp-to-twitter-manager.php:597
|
909 |
+
msgid "Your YOURLS password:"
|
910 |
+
msgstr "你的YOURLS的密碼:"
|
911 |
+
|
912 |
+
#: wp-to-twitter-manager.php:597
|
913 |
+
msgid "<em>Saved</em>"
|
914 |
+
msgstr "<em>已保存</em>"
|
915 |
+
|
916 |
+
#: wp-to-twitter-manager.php:601
|
917 |
+
msgid "Post ID for YOURLS url slug."
|
918 |
+
msgstr ""
|
919 |
+
|
920 |
+
#: wp-to-twitter-manager.php:602
|
921 |
+
msgid "Custom keyword for YOURLS url slug."
|
922 |
+
msgstr ""
|
923 |
+
|
924 |
+
#: wp-to-twitter-manager.php:603
|
925 |
+
msgid "Default: sequential URL numbering."
|
926 |
+
msgstr ""
|
927 |
+
|
928 |
+
#: wp-to-twitter-manager.php:609
|
929 |
+
msgid "Save YOURLS Account Info"
|
930 |
+
msgstr "保存YOURLS賬戶信息"
|
931 |
+
|
932 |
+
#: wp-to-twitter-manager.php:609
|
933 |
+
msgid "Clear YOURLS password"
|
934 |
+
msgstr "清除YOURLS的密碼"
|
935 |
+
|
936 |
+
#: wp-to-twitter-manager.php:609
|
937 |
+
msgid "A YOURLS password and username is required to shorten URLs via the remote YOURLS API and WP to Twitter."
|
938 |
+
msgstr "當通過YOURLS API縮短URL時,需要YOURLS的用戶名和密碼。"
|
939 |
+
|
940 |
+
#: wp-to-twitter-manager.php:620
|
941 |
+
msgid "Advanced Settings"
|
942 |
+
msgstr "高級設置"
|
943 |
+
|
944 |
+
#: wp-to-twitter-manager.php:625 wp-to-twitter-manager.php:783
|
945 |
+
msgid "Save Advanced WP->Twitter Options"
|
946 |
+
msgstr "保存WP To Twitter的高級選項"
|
947 |
+
|
948 |
+
#: wp-to-twitter-manager.php:627
|
949 |
+
msgid "Advanced Tweet settings"
|
950 |
+
msgstr "高級推文設置"
|
951 |
+
|
952 |
+
#: wp-to-twitter-manager.php:629
|
953 |
+
msgid "Strip nonalphanumeric characters from tags"
|
954 |
+
msgstr ""
|
955 |
+
|
956 |
+
#: wp-to-twitter-manager.php:630
|
957 |
+
msgid "Spaces in tags replaced with:"
|
958 |
+
msgstr ""
|
959 |
+
|
960 |
+
#: wp-to-twitter-manager.php:632
|
961 |
+
msgid "Default replacement is an underscore (<code>_</code>). Use <code>[ ]</code> to remove spaces entirely."
|
962 |
+
msgstr "默認替換為下劃線(<code>_</code>)。使用<code>[ ]</code>來刪除日誌中的空格。"
|
963 |
+
|
964 |
+
#: wp-to-twitter-manager.php:635
|
965 |
+
msgid "Maximum number of tags to include:"
|
966 |
+
msgstr "包含Tag的最大數量:"
|
967 |
+
|
968 |
+
#: wp-to-twitter-manager.php:636
|
969 |
+
msgid "Maximum length in characters for included tags:"
|
970 |
+
msgstr "包含Tag的最大長度:"
|
971 |
+
|
972 |
+
#: wp-to-twitter-manager.php:637
|
973 |
+
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."
|
974 |
+
msgstr "這些選項可以讓你限制WP日誌中,Tag的數量和長度。設置<code>0</code>或者留空來顯示所有的標簽。"
|
975 |
+
|
976 |
+
#: wp-to-twitter-manager.php:640
|
977 |
+
msgid "Length of post excerpt (in characters):"
|
978 |
+
msgstr "日誌摘要的長度(以字符計算):"
|
979 |
+
|
980 |
+
#: wp-to-twitter-manager.php:640
|
981 |
+
msgid "By default, extracted from the post itself. If you use the 'Excerpt' field, that will be used instead."
|
982 |
+
msgstr "默認的,將會從日誌內提取,如果你使用了‘摘要’這個自定義域,將會自動替換為你自定義的內容。"
|
983 |
+
|
984 |
+
#: wp-to-twitter-manager.php:643
|
985 |
+
msgid "WP to Twitter Date Formatting:"
|
986 |
+
msgstr "WP to Twitter 日期格式:"
|
987 |
+
|
988 |
+
#: wp-to-twitter-manager.php:644
|
989 |
+
msgid "Default is from your general settings. <a href='http://codex.wordpress.org/Formatting_Date_and_Time'>Date Formatting Documentation</a>."
|
990 |
+
msgstr "默認將會使用通用設置。請參考<a href='http://codex.wordpress.org/Formatting_Date_and_Time'>時間格式文檔</a>。"
|
991 |
+
|
992 |
+
#: wp-to-twitter-manager.php:648
|
993 |
+
msgid "Custom text before all Tweets:"
|
994 |
+
msgstr "每條推前的自定義文字:"
|
995 |
+
|
996 |
+
#: wp-to-twitter-manager.php:649
|
997 |
+
msgid "Custom text after all Tweets:"
|
998 |
+
msgstr "每條推後的自定義文字:"
|
999 |
+
|
1000 |
+
#: wp-to-twitter-manager.php:652
|
1001 |
+
msgid "Custom field for an alternate URL to be shortened and Tweeted:"
|
1002 |
+
msgstr "會替換為短URL並且同步至至Twitter的域的名稱:"
|
1003 |
+
|
1004 |
+
#: wp-to-twitter-manager.php:653
|
1005 |
+
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."
|
1006 |
+
msgstr "你可以用自定義字段同步一些其實的鏈接。這裏的值就是那個字段的名稱。"
|
1007 |
+
|
1008 |
+
#: wp-to-twitter-manager.php:676
|
1009 |
+
msgid "Preferred status update truncation sequence"
|
1010 |
+
msgstr ""
|
1011 |
+
|
1012 |
+
#: wp-to-twitter-manager.php:679
|
1013 |
+
msgid "This is the order in which items will be abbreviated or removed from your status update if it is too long to send to Twitter."
|
1014 |
+
msgstr ""
|
1015 |
+
|
1016 |
+
#: wp-to-twitter-manager.php:684
|
1017 |
+
msgid "Special Cases when WordPress should send a Tweet"
|
1018 |
+
msgstr "Wordpress同步博文的條件"
|
1019 |
+
|
1020 |
+
#: wp-to-twitter-manager.php:687
|
1021 |
+
msgid "Do not post Tweets by default"
|
1022 |
+
msgstr ""
|
1023 |
+
|
1024 |
+
#: wp-to-twitter-manager.php:690
|
1025 |
+
msgid "By default, all posts meeting other requirements will be posted to Twitter. Check this to change your setting."
|
1026 |
+
msgstr "默認情況下,所有的博文滿足其他需求的,會被發表到Twitter。點擊這裏更改設置。"
|
1027 |
+
|
1028 |
+
#: wp-to-twitter-manager.php:694
|
1029 |
+
msgid "Allow status updates from Quick Edit"
|
1030 |
+
msgstr "允許在快速編輯中更新狀態"
|
1031 |
+
|
1032 |
+
#: wp-to-twitter-manager.php:695
|
1033 |
+
msgid "If checked, all posts edited individually or in bulk through the Quick Edit feature will be Tweeted."
|
1034 |
+
msgstr ""
|
1035 |
+
|
1036 |
+
#: wp-to-twitter-manager.php:700
|
1037 |
+
msgid "Delaying tweets with WP Tweets PRO moves Tweeting to an publishing-independent action."
|
1038 |
+
msgstr ""
|
1039 |
+
|
1040 |
+
#: wp-to-twitter-manager.php:707
|
1041 |
+
msgid "Send Twitter Updates on remote publication (Post by Email or XMLRPC Client)"
|
1042 |
+
msgstr "當遠程發布日誌的時候(通過EMail或者XMLRPC客戶端),同步至Twitter"
|
1043 |
+
|
1044 |
+
#: wp-to-twitter-manager.php:712
|
1045 |
+
msgid "Google Analytics Settings"
|
1046 |
+
msgstr "Google Analytics設置"
|
1047 |
+
|
1048 |
+
#: wp-to-twitter-manager.php:713
|
1049 |
+
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."
|
1050 |
+
msgstr "通過定義一個標識,你可以用Google Analytics跟蹤Twitter的反響。標識包含靜態和動態的兩種:靜態標識這所有博文公用的,不會改變。動態標識依據博文不同而不同。動態標識可以幫助你更細的拆分統計結果。"
|
1051 |
+
|
1052 |
+
#: wp-to-twitter-manager.php:717
|
1053 |
+
msgid "Use a Static Identifier with WP-to-Twitter"
|
1054 |
+
msgstr "WP to Twitter使用靜態標識"
|
1055 |
+
|
1056 |
+
#: wp-to-twitter-manager.php:718
|
1057 |
+
msgid "Static Campaign identifier for Google Analytics:"
|
1058 |
+
msgstr "Google Analytics的靜態標識符"
|
1059 |
+
|
1060 |
+
#: wp-to-twitter-manager.php:722
|
1061 |
+
msgid "Use a dynamic identifier with Google Analytics and WP-to-Twitter"
|
1062 |
+
msgstr "WP to Twitter為Google Analysis使用動態標識"
|
1063 |
+
|
1064 |
+
#: wp-to-twitter-manager.php:723
|
1065 |
+
msgid "What dynamic identifier would you like to use?"
|
1066 |
+
msgstr "你想選擇什麽樣的動態標識?"
|
1067 |
+
|
1068 |
+
#: wp-to-twitter-manager.php:725
|
1069 |
+
msgid "Category"
|
1070 |
+
msgstr "分類"
|
1071 |
+
|
1072 |
+
#: wp-to-twitter-manager.php:726
|
1073 |
+
msgid "Post ID"
|
1074 |
+
msgstr "博文ID"
|
1075 |
+
|
1076 |
+
#: wp-to-twitter-manager.php:727
|
1077 |
+
msgid "Post Title"
|
1078 |
+
msgstr "博文標題"
|
1079 |
+
|
1080 |
+
#: wp-to-twitter-manager.php:728
|
1081 |
+
msgid "Author"
|
1082 |
+
msgstr "作者"
|
wp-to-twitter.pot → lang/wp-to-twitter.pot
RENAMED
@@ -1,637 +1,656 @@
|
|
1 |
-
# Copyright (C)
|
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:
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"PO-Revision-Date:
|
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 "
|
19 |
"request for support."
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: functions.php:
|
23 |
msgid ""
|
24 |
"Please read the FAQ and other Help documents before making a support request."
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: functions.php:
|
28 |
msgid "Please describe your problem. I'm not psychic."
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: functions.php:
|
32 |
msgid ""
|
33 |
"Thank you for supporting the continuing development of this plug-in! I'll "
|
34 |
-
"get back to you as soon as I can."
|
|
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: functions.php:
|
38 |
msgid ""
|
39 |
-
"
|
40 |
-
"
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: functions.php:
|
44 |
msgid "Please include your license key in your support request."
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: functions.php:
|
48 |
msgid ""
|
49 |
"<strong>Please note</strong>: I do keep records of those who have donated, "
|
50 |
"but if your donation came from somebody other than your account at this web "
|
51 |
"site, you must note this in your message."
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: functions.php:
|
55 |
-
msgid "
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: functions.php:
|
59 |
msgid ""
|
60 |
-
"I have read <a href=\"
|
61 |
-
"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: functions.php:
|
65 |
msgid ""
|
66 |
-
"I have <a href=\"
|
67 |
-
|
|
|
|
|
|
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: functions.php:
|
71 |
msgid "Send Support Request"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: functions.php:
|
75 |
msgid ""
|
76 |
"The following additional information will be sent with your support request:"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: wp-to-twitter-manager.php:
|
80 |
msgid "No error information is available for your shortener."
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: wp-to-twitter-manager.php:
|
84 |
msgid ""
|
85 |
"<li class=\"error\"><strong>WP to Twitter was unable to contact your "
|
86 |
"selected URL shortening service.</strong></li>"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: wp-to-twitter-manager.php:
|
90 |
msgid ""
|
91 |
"<li><strong>WP to Twitter successfully contacted your selected URL "
|
92 |
"shortening service.</strong> The following link should point to your blog "
|
93 |
"homepage:"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: wp-to-twitter-manager.php:
|
97 |
msgid ""
|
98 |
"<li><strong>WP to Twitter successfully submitted a status update to Twitter."
|
99 |
"</strong></li>"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: wp-to-twitter-manager.php:
|
103 |
msgid ""
|
104 |
"<li class=\"error\"><strong>WP to Twitter failed to submit an update to "
|
105 |
"Twitter.</strong></li>"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: wp-to-twitter-manager.php:
|
109 |
msgid "You have not connected WordPress to Twitter."
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: wp-to-twitter-manager.php:
|
113 |
msgid ""
|
114 |
"<li class=\"error\"><strong>Your server does not appear to support the "
|
115 |
"required methods for WP to Twitter to function.</strong> You can try it "
|
116 |
"anyway - these tests aren't perfect.</li>"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: wp-to-twitter-manager.php:
|
120 |
msgid ""
|
121 |
"<li><strong>Your server should run WP to Twitter successfully.</strong></li>"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: wp-to-twitter-manager.php:
|
125 |
msgid "WP to Twitter Errors Cleared"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: wp-to-twitter-manager.php:
|
129 |
msgid "WP to Twitter is now connected with Twitter."
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: wp-to-twitter-manager.php:
|
133 |
msgid ""
|
134 |
-
"WP to Twitter failed to connect with Twitter. Try
|
|
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: wp-to-twitter-manager.php:
|
138 |
msgid "OAuth Authentication Data Cleared."
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: wp-to-twitter-manager.php:
|
142 |
msgid ""
|
143 |
"OAuth Authentication Failed. Your server time is not in sync with the "
|
144 |
"Twitter servers. Talk to your hosting service to see what can be done."
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: wp-to-twitter-manager.php:
|
148 |
msgid "OAuth Authentication response not understood."
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: wp-to-twitter-manager.php:
|
152 |
msgid "WP to Twitter Advanced Options Updated"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: wp-to-twitter-manager.php:
|
156 |
msgid ""
|
157 |
"You must add your Bit.ly login and API key in order to shorten URLs with Bit."
|
158 |
"ly."
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: wp-to-twitter-manager.php:
|
162 |
msgid ""
|
163 |
"You must add your YOURLS remote URL, login, and password in order to shorten "
|
164 |
"URLs with a remote installation of YOURLS."
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: wp-to-twitter-manager.php:
|
168 |
msgid ""
|
169 |
"You must add your YOURLS server path in order to shorten URLs with a remote "
|
170 |
"installation of YOURLS."
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: wp-to-twitter-manager.php:
|
174 |
msgid "WP to Twitter Options Updated"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: wp-to-twitter-manager.php:
|
178 |
msgid "Category limits updated."
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: wp-to-twitter-manager.php:
|
182 |
msgid "Category limits unset."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: wp-to-twitter-manager.php:
|
186 |
msgid "YOURLS password updated. "
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: wp-to-twitter-manager.php:
|
190 |
msgid ""
|
191 |
"YOURLS password deleted. You will be unable to use your remote YOURLS "
|
192 |
"account to create short URLS."
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: wp-to-twitter-manager.php:
|
196 |
msgid "Failed to save your YOURLS password! "
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: wp-to-twitter-manager.php:
|
200 |
msgid "YOURLS username added. "
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: wp-to-twitter-manager.php:
|
204 |
msgid "YOURLS API url added. "
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: wp-to-twitter-manager.php:
|
208 |
msgid "YOURLS API url removed. "
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: wp-to-twitter-manager.php:
|
212 |
msgid "YOURLS local server path added. "
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: wp-to-twitter-manager.php:
|
216 |
msgid "The path to your YOURLS installation is not correct. "
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: wp-to-twitter-manager.php:
|
220 |
msgid "YOURLS local server path removed. "
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: wp-to-twitter-manager.php:
|
224 |
msgid "YOURLS will use Post ID for short URL slug."
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: wp-to-twitter-manager.php:
|
228 |
msgid "YOURLS will use your custom keyword for short URL slug."
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: wp-to-twitter-manager.php:
|
232 |
msgid "YOURLS will not use Post ID for the short URL slug."
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: wp-to-twitter-manager.php:
|
236 |
msgid "Su.pr API Key and Username Updated"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: wp-to-twitter-manager.php:
|
240 |
msgid ""
|
241 |
"Su.pr API Key and username deleted. Su.pr URLs created by WP to Twitter will "
|
242 |
"no longer be associated with your account. "
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: wp-to-twitter-manager.php:
|
246 |
msgid "Su.pr API Key not added - <a href='http://su.pr/'>get one here</a>! "
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: wp-to-twitter-manager.php:
|
250 |
msgid "Bit.ly API Key Updated."
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: wp-to-twitter-manager.php:
|
254 |
msgid ""
|
255 |
"Bit.ly API Key deleted. You cannot use the Bit.ly API without an API key. "
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: wp-to-twitter-manager.php:
|
259 |
msgid ""
|
260 |
"Bit.ly API Key not added - <a href='http://bit.ly/account/'>get one here</"
|
261 |
"a>! An API key is required to use the Bit.ly URL shortening service."
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: wp-to-twitter-manager.php:
|
265 |
msgid " Bit.ly User Login Updated."
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: wp-to-twitter-manager.php:
|
269 |
msgid ""
|
270 |
"Bit.ly User Login deleted. You cannot use the Bit.ly API without providing "
|
271 |
"your username. "
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: wp-to-twitter-manager.php:
|
275 |
msgid ""
|
276 |
"Bit.ly Login not added - <a href='http://bit.ly/account/'>get one here</a>! "
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: wp-to-twitter-manager.php:
|
280 |
msgid ""
|
281 |
"<p>One or more of your last posts has failed to send a status update to "
|
282 |
"Twitter. The Tweet has been saved, and you can re-Tweet it at your leisure.</"
|
283 |
"p>"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: wp-to-twitter-manager.php:
|
287 |
msgid ""
|
288 |
"Sorry! I couldn't get in touch with the Twitter servers to post your "
|
289 |
"<strong>new link</strong>! You'll have to post it manually, I'm afraid. "
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: wp-to-twitter-manager.php:
|
293 |
msgid ""
|
294 |
"<p>The query to the URL shortener API failed, and your URL was not shrunk. "
|
295 |
"The full post URL was attached to your Tweet. Check with your URL shortening "
|
296 |
"provider to see if there are any known issues.</p>"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: wp-to-twitter-manager.php:
|
300 |
msgid "Clear 'WP to Twitter' Error Messages"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: wp-to-twitter-manager.php:
|
304 |
msgid "WP to Twitter Options"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: wp-to-twitter-manager.php:
|
308 |
msgid "Basic Settings"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: wp-to-twitter-manager.php:
|
312 |
msgid "Save WP->Twitter Options"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: wp-to-twitter-manager.php:
|
316 |
-
msgid "
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: wp-to-twitter-manager.php:
|
320 |
-
msgid "
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: wp-to-twitter-manager.php:
|
324 |
-
msgid "
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: wp-to-twitter-manager.php:
|
328 |
-
msgid ""
|
329 |
-
"In addition to the above short tags, comment templates can use "
|
330 |
-
"<code>#commenter#</code> to post the commenter's provided name in the Tweet. "
|
331 |
-
"<strong>Use this feature at your own risk</strong>, as it provides the "
|
332 |
-
"ability for anybody who can post a comment on your site to post a phrase of "
|
333 |
-
"their choice in your Twitter stream."
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: wp-to-twitter-manager.php:
|
337 |
-
msgid "
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: wp-to-twitter-manager.php:
|
341 |
-
msgid "
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: wp-to-twitter-manager.php:
|
345 |
-
msgid "
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: wp-to-twitter-manager.php:
|
349 |
-
msgid ""
|
350 |
-
"Available shortcodes: <code>#url#</code>, <code>#title#</code>, and "
|
351 |
-
"<code>#description#</code>."
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: wp-to-twitter-manager.php:
|
355 |
-
msgid "
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: wp-to-twitter-manager.php:
|
359 |
-
msgid "
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: wp-to-twitter-manager.php:
|
363 |
-
msgid "
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: wp-to-twitter-manager.php:
|
367 |
-
msgid "
|
|
|
|
|
|
|
|
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: wp-to-twitter-manager.php:
|
371 |
-
msgid "
|
|
|
|
|
|
|
|
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: wp-to-twitter-manager.php:
|
375 |
-
msgid "
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: wp-to-twitter-manager.php:
|
379 |
-
msgid "
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: wp-to-twitter-manager.php:
|
383 |
-
msgid "
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: wp-to-twitter-manager.php:
|
387 |
msgid ""
|
388 |
-
"
|
389 |
-
"
|
390 |
-
"Google Analytics is not available when using WordPress shortened URLs."
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: wp-to-twitter-manager.php:
|
394 |
msgid ""
|
395 |
"<abbr title=\"Uniform Resource Locator\">URL</abbr> Shortener Account "
|
396 |
"Settings"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: wp-to-twitter-manager.php:
|
400 |
msgid "Your Su.pr account details"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: wp-to-twitter-manager.php:
|
|
|
|
|
|
|
|
|
404 |
msgid "Your Su.pr Username:"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: wp-to-twitter-manager.php:
|
408 |
msgid ""
|
409 |
"Your Su.pr <abbr title='application programming interface'>API</abbr> Key:"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: wp-to-twitter-manager.php:
|
413 |
msgid ""
|
414 |
"Don't have a Su.pr account or API key? <a href='http://su.pr/'>Get one here</"
|
415 |
"a>!<br />You'll need an API key in order to associate the URLs you create "
|
416 |
"with your Su.pr account."
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: wp-to-twitter-manager.php:
|
420 |
msgid "Your Bit.ly account details"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: wp-to-twitter-manager.php:
|
424 |
msgid "Your Bit.ly username:"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: wp-to-twitter-manager.php:
|
428 |
-
msgid ""
|
429 |
-
"This must be a standard Bit.ly account. Your Twitter or Facebook log-in will "
|
430 |
-
"not work."
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: wp-to-twitter-manager.php:
|
434 |
msgid ""
|
435 |
"Your Bit.ly <abbr title='application programming interface'>API</abbr> Key:"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: wp-to-twitter-manager.php:
|
|
|
|
|
|
|
|
|
439 |
msgid "Save Bit.ly API Key"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: wp-to-twitter-manager.php:
|
443 |
msgid "Clear Bit.ly API Key"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: wp-to-twitter-manager.php:
|
447 |
msgid ""
|
448 |
"A Bit.ly API key and username is required to shorten URLs via the Bit.ly API "
|
449 |
"and WP to Twitter."
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: wp-to-twitter-manager.php:
|
453 |
msgid "Your YOURLS account details"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: wp-to-twitter-manager.php:
|
457 |
msgid "Path to your YOURLS config file (Local installations)"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: wp-to-twitter-manager.php:
|
461 |
msgid "Example:"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: wp-to-twitter-manager.php:
|
465 |
msgid "URI to the YOURLS API (Remote installations)"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: wp-to-twitter-manager.php:
|
469 |
msgid "Your YOURLS username:"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: wp-to-twitter-manager.php:
|
473 |
msgid "Your YOURLS password:"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: wp-to-twitter-manager.php:
|
477 |
msgid "<em>Saved</em>"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: wp-to-twitter-manager.php:
|
481 |
msgid "Post ID for YOURLS url slug."
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: wp-to-twitter-manager.php:
|
485 |
msgid "Custom keyword for YOURLS url slug."
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: wp-to-twitter-manager.php:
|
489 |
msgid "Default: sequential URL numbering."
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: wp-to-twitter-manager.php:
|
493 |
msgid "Save YOURLS Account Info"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: wp-to-twitter-manager.php:
|
497 |
msgid "Clear YOURLS password"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: wp-to-twitter-manager.php:
|
501 |
msgid ""
|
502 |
"A YOURLS password and username is required to shorten URLs via the remote "
|
503 |
"YOURLS API and WP to Twitter."
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: wp-to-twitter-manager.php:
|
|
|
|
|
|
|
|
|
507 |
msgid "Advanced Settings"
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: wp-to-twitter-manager.php:
|
511 |
msgid "Save Advanced WP->Twitter Options"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: wp-to-twitter-manager.php:
|
515 |
msgid "Advanced Tweet settings"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: wp-to-twitter-manager.php:
|
519 |
msgid "Strip nonalphanumeric characters from tags"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: wp-to-twitter-manager.php:
|
523 |
msgid "Spaces in tags replaced with:"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: wp-to-twitter-manager.php:
|
527 |
msgid ""
|
528 |
"Default replacement is an underscore (<code>_</code>). Use <code>[ ]</code> "
|
529 |
"to remove spaces entirely."
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: wp-to-twitter-manager.php:
|
533 |
msgid "Maximum number of tags to include:"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: wp-to-twitter-manager.php:
|
537 |
msgid "Maximum length in characters for included tags:"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: wp-to-twitter-manager.php:
|
541 |
msgid ""
|
542 |
"These options allow you to restrict the length and number of WordPress tags "
|
543 |
"sent to Twitter as hashtags. Set to <code>0</code> or leave blank to allow "
|
544 |
"any and all tags."
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: wp-to-twitter-manager.php:
|
548 |
msgid "Length of post excerpt (in characters):"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: wp-to-twitter-manager.php:
|
552 |
msgid ""
|
553 |
"By default, extracted from the post itself. If you use the 'Excerpt' field, "
|
554 |
"that will be used instead."
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: wp-to-twitter-manager.php:
|
558 |
msgid "WP to Twitter Date Formatting:"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: wp-to-twitter-manager.php:
|
562 |
msgid ""
|
563 |
"Default is from your general settings. <a href='http://codex.wordpress.org/"
|
564 |
"Formatting_Date_and_Time'>Date Formatting Documentation</a>."
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: wp-to-twitter-manager.php:
|
568 |
msgid "Custom text before all Tweets:"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: wp-to-twitter-manager.php:
|
572 |
msgid "Custom text after all Tweets:"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: wp-to-twitter-manager.php:
|
576 |
msgid "Custom field for an alternate URL to be shortened and Tweeted:"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: wp-to-twitter-manager.php:
|
580 |
msgid ""
|
581 |
"You can use a custom field to send an alternate URL for your post. The value "
|
582 |
"is the name of a custom field containing your external URL."
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: wp-to-twitter-manager.php:
|
586 |
msgid "Preferred status update truncation sequence"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: wp-to-twitter-manager.php:
|
590 |
msgid ""
|
591 |
"This is the order in which items will be abbreviated or removed from your "
|
592 |
"status update if it is too long to send to Twitter."
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: wp-to-twitter-manager.php:
|
596 |
msgid "Special Cases when WordPress should send a Tweet"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: wp-to-twitter-manager.php:
|
600 |
msgid "Do not post Tweets by default"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: wp-to-twitter-manager.php:
|
|
|
|
|
|
|
|
|
604 |
msgid ""
|
605 |
"By default, all posts meeting other requirements will be posted to Twitter. "
|
606 |
"Check this to change your setting."
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: wp-to-twitter-manager.php:
|
610 |
msgid "Allow status updates from Quick Edit"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: wp-to-twitter-manager.php:
|
614 |
msgid ""
|
615 |
"If checked, all posts edited individually or in bulk through the Quick Edit "
|
616 |
"feature will be Tweeted."
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: wp-to-twitter-manager.php:
|
620 |
msgid ""
|
621 |
"Delaying tweets with WP Tweets PRO moves Tweeting to an publishing-"
|
622 |
"independent action."
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: wp-to-twitter-manager.php:
|
626 |
msgid ""
|
627 |
"Send Twitter Updates on remote publication (Post by Email or XMLRPC Client)"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: wp-to-twitter-manager.php:
|
631 |
msgid "Google Analytics Settings"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: wp-to-twitter-manager.php:
|
635 |
msgid ""
|
636 |
"You can track the response from Twitter using Google Analytics by defining a "
|
637 |
"campaign identifier here. You can either define a static identifier or a "
|
@@ -641,47 +660,47 @@ msgid ""
|
|
641 |
"additional variable."
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: wp-to-twitter-manager.php:
|
645 |
msgid "Use a Static Identifier with WP-to-Twitter"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: wp-to-twitter-manager.php:
|
649 |
msgid "Static Campaign identifier for Google Analytics:"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: wp-to-twitter-manager.php:
|
653 |
msgid "Use a dynamic identifier with Google Analytics and WP-to-Twitter"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: wp-to-twitter-manager.php:
|
657 |
msgid "What dynamic identifier would you like to use?"
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: wp-to-twitter-manager.php:
|
661 |
msgid "Category"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: wp-to-twitter-manager.php:
|
665 |
msgid "Post ID"
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: wp-to-twitter-manager.php:
|
669 |
msgid "Post Title"
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: wp-to-twitter-manager.php:
|
673 |
msgid "Author"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: wp-to-twitter-manager.php:
|
677 |
msgid "Individual Authors"
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: wp-to-twitter-manager.php:
|
681 |
msgid "Authors have individual Twitter accounts"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: wp-to-twitter-manager.php:
|
685 |
msgid ""
|
686 |
"Authors can add their username in their user profile. This feature can only "
|
687 |
"add an @reference to the author. The @reference is placed using the "
|
@@ -689,79 +708,74 @@ msgid ""
|
|
689 |
"user accounts are not enabled."
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: wp-to-twitter-manager.php:
|
693 |
-
msgid "
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: wp-to-twitter-manager.php:
|
697 |
msgid ""
|
698 |
-
"
|
699 |
-
"posting"
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: wp-to-twitter-manager.php:
|
703 |
-
msgid ""
|
704 |
-
"User groups above this can toggle the Tweet/Don't Tweet option, but not see "
|
705 |
-
"other custom tweet options."
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: wp-to-twitter-manager.php:
|
|
|
|
|
|
|
|
|
709 |
msgid "Disable Error Messages"
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: wp-to-twitter-manager.php:
|
713 |
msgid "Disable global URL shortener error messages."
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: wp-to-twitter-manager.php:
|
717 |
msgid "Disable global Twitter API error messages."
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: wp-to-twitter-manager.php:
|
721 |
msgid "Disable notification to implement OAuth"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: wp-to-twitter-manager.php:
|
725 |
msgid "Get Debugging Data for OAuth Connection"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: wp-to-twitter-manager.php:
|
729 |
msgid "Switch to <code>http</code> connection. (Default is https)"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: wp-to-twitter-manager.php:
|
733 |
msgid "I made a donation, so stop whinging at me, please."
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: wp-to-twitter-manager.php:
|
737 |
msgid "Limit Updating Categories"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: wp-to-twitter-manager.php:
|
741 |
msgid ""
|
742 |
"If no categories are checked, limiting by category will be ignored, and all "
|
743 |
"categories will be Tweeted."
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: wp-to-twitter-manager.php:
|
747 |
msgid "<em>Category limits are disabled.</em>"
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: wp-to-twitter-manager.php:
|
751 |
msgid "Get Plug-in Support"
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: wp-to-twitter-manager.php:
|
755 |
-
msgid ""
|
756 |
-
"Support requests without a donation will not be answered, but will be "
|
757 |
-
"treated as bug reports."
|
758 |
-
msgstr ""
|
759 |
-
|
760 |
-
#: wp-to-twitter-manager.php:817
|
761 |
msgid "Check Support"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: wp-to-twitter-manager.php:
|
765 |
msgid ""
|
766 |
"Check whether your server supports <a href=\"http://www.joedolson.com/"
|
767 |
"articles/wp-to-twitter/\">WP to Twitter's</a> queries to the Twitter and URL "
|
@@ -769,107 +783,120 @@ msgid ""
|
|
769 |
"a URL using your selected methods."
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: wp-to-twitter-manager.php:
|
773 |
msgid "Support WP to Twitter"
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: wp-to-twitter-manager.php:
|
777 |
msgid "WP to Twitter Support"
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: wp-to-twitter-manager.php:
|
781 |
msgid "View Settings"
|
782 |
msgstr ""
|
783 |
|
784 |
-
#: wp-to-twitter-manager.php:
|
785 |
msgid "Get Support"
|
786 |
msgstr ""
|
787 |
|
788 |
-
#: wp-to-twitter-manager.php:
|
789 |
msgid ""
|
790 |
"<a href=\"http://www.joedolson.com/donate.php\">Make a donation today!</a> "
|
791 |
"Every donation counts - donate $2, $10, or $100 and help me keep this plug-"
|
792 |
"in running!"
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: wp-to-twitter-manager.php:
|
796 |
msgid "Upgrade Now!"
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: wp-to-twitter-manager.php:
|
800 |
-
msgid "Upgrade to <strong>WP Tweets PRO</strong> for more
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: wp-to-twitter-manager.php:
|
804 |
msgid "Extra features with the PRO upgrade:"
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: wp-to-twitter-manager.php:
|
808 |
msgid "Users can post to their own Twitter accounts"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: wp-to-twitter-manager.php:
|
812 |
msgid ""
|
813 |
"Set a timer to send your Tweet minutes or hours after you publish the post"
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: wp-to-twitter-manager.php:
|
817 |
msgid "Automatically re-send Tweets at an assigned time after publishing"
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: wp-to-twitter-manager.php:
|
821 |
msgid "Shortcodes"
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: wp-to-twitter-manager.php:
|
825 |
msgid "Available in post update templates:"
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: wp-to-twitter-manager.php:
|
829 |
msgid "<code>#title#</code>: the title of your blog post"
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: wp-to-twitter-manager.php:
|
833 |
msgid "<code>#blog#</code>: the title of your blog"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: wp-to-twitter-manager.php:
|
837 |
msgid "<code>#post#</code>: a short excerpt of the post content"
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: wp-to-twitter-manager.php:
|
841 |
msgid "<code>#category#</code>: the first selected category for the post"
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: wp-to-twitter-manager.php:
|
845 |
msgid "<code>#date#</code>: the post date"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: wp-to-twitter-manager.php:
|
849 |
-
msgid "<code>#modified
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: wp-to-twitter-manager.php:
|
853 |
msgid "<code>#url#</code>: the post URL"
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: wp-to-twitter-manager.php:
|
857 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: wp-to-twitter-manager.php:
|
861 |
msgid ""
|
862 |
"<code>#account#</code>: the twitter @reference for the account (or the "
|
863 |
"author, if author settings are enabled and set.)"
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: wp-to-twitter-manager.php:
|
867 |
msgid ""
|
868 |
"<code>#tags#</code>: your tags modified into hashtags. See options in the "
|
869 |
"Advanced Settings section, below."
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: wp-to-twitter-manager.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
873 |
msgid ""
|
874 |
"You can also create custom shortcodes to access WordPress custom fields. Use "
|
875 |
"doubled square brackets surrounding the name of your custom field to add the "
|
@@ -877,150 +904,150 @@ msgid ""
|
|
877 |
"[[custom_field]]</code></p>"
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: wp-to-twitter-oauth.php:
|
881 |
msgid "WP to Twitter was unable to establish a connection to Twitter."
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: wp-to-twitter-oauth.php:
|
885 |
msgid ""
|
886 |
-
"
|
887 |
"queries</a>.<br />"
|
888 |
msgstr ""
|
889 |
|
890 |
#: wp-to-twitter-oauth.php:166
|
891 |
-
msgid "Error Message:"
|
892 |
-
msgstr ""
|
893 |
-
|
894 |
-
#: wp-to-twitter-oauth.php:167
|
895 |
msgid "There was an error querying Twitter's servers"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: wp-to-twitter-oauth.php:
|
899 |
msgid "Connect to Twitter"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: wp-to-twitter-oauth.php:
|
903 |
msgid "WP to Twitter Set-up"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: wp-to-twitter-oauth.php:
|
907 |
msgid "Your server time:"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: wp-to-twitter-oauth.php:
|
911 |
msgid "Twitter's time:"
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: wp-to-twitter-oauth.php:
|
915 |
msgid ""
|
916 |
"If these timestamps are not within 5 minutes of each other, your server will "
|
917 |
"not connect to Twitter."
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: wp-to-twitter-oauth.php:
|
|
|
|
|
|
|
|
|
921 |
msgid ""
|
922 |
"<em>Note</em>: you will not add your Twitter user information to WP to "
|
923 |
"Twitter; it is not used in this authentication method."
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: wp-to-twitter-oauth.php:
|
927 |
msgid "1. Register this site as an application on "
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: wp-to-twitter-oauth.php:
|
931 |
msgid "Twitter's application registration page"
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: wp-to-twitter-oauth.php:
|
935 |
msgid ""
|
936 |
"If you're not currently logged in to Twitter, log-in to the account you want "
|
937 |
"associated with this site"
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: wp-to-twitter-oauth.php:
|
941 |
msgid ""
|
942 |
"Your Application's Name will show up after \"via\" in your twitter stream. "
|
943 |
"Your application name cannot include the word \"Twitter.\""
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: wp-to-twitter-oauth.php:
|
947 |
msgid "Your Application Description can be anything."
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: wp-to-twitter-oauth.php:
|
951 |
msgid "The WebSite and Callback URL should be "
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: wp-to-twitter-oauth.php:
|
955 |
msgid "Agree to the Developer Rules of the Road and continue."
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: wp-to-twitter-oauth.php:
|
959 |
msgid "2. Switch to the \"Settings\" tab in Twitter apps"
|
960 |
msgstr ""
|
961 |
|
962 |
-
#: wp-to-twitter-oauth.php:
|
963 |
msgid "Select \"Read and Write\" for the Application Type"
|
964 |
msgstr ""
|
965 |
|
966 |
-
#: wp-to-twitter-oauth.php:
|
967 |
msgid "Update the application settings"
|
968 |
msgstr ""
|
969 |
|
970 |
-
#: wp-to-twitter-oauth.php:
|
971 |
msgid ""
|
972 |
"Return to the Details tab and create your access token. Refresh page to view "
|
973 |
"your access tokens."
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: wp-to-twitter-oauth.php:
|
977 |
msgid ""
|
978 |
"Once you have registered your site as an application, you will be provided "
|
979 |
"with four keys."
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: wp-to-twitter-oauth.php:
|
983 |
msgid ""
|
984 |
"3. Copy and paste your consumer key and consumer secret into the fields below"
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: wp-to-twitter-oauth.php:
|
988 |
msgid "Twitter Consumer Key"
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: wp-to-twitter-oauth.php:
|
992 |
msgid "Twitter Consumer Secret"
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: wp-to-twitter-oauth.php:
|
996 |
msgid ""
|
997 |
"4. Copy and paste your Access Token and Access Token Secret into the fields "
|
998 |
"below"
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: wp-to-twitter-oauth.php:
|
1002 |
msgid ""
|
1003 |
"If the Access level for your Access Token is not \"<em>Read and write</em>"
|
1004 |
"\", you must return to step 2 and generate a new Access Token."
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: wp-to-twitter-oauth.php:
|
1008 |
msgid "Access Token"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: wp-to-twitter-oauth.php:
|
1012 |
msgid "Access Token Secret"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: wp-to-twitter-oauth.php:
|
1016 |
msgid "Disconnect Your WordPress and Twitter Account"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: wp-to-twitter-oauth.php:
|
1020 |
msgid "Disconnect your WordPress and Twitter Account"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: wp-to-twitter-oauth.php:
|
1024 |
msgid ""
|
1025 |
"<strong>Troubleshooting tip:</strong> Connected, but getting a notice that "
|
1026 |
"your Authentication credentials are missing or incorrect? Check whether your "
|
@@ -1029,74 +1056,103 @@ msgid ""
|
|
1029 |
msgstr ""
|
1030 |
|
1031 |
#: wp-to-twitter-oauth.php:257
|
1032 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1033 |
msgstr ""
|
1034 |
|
1035 |
#: wp-to-twitter-oauth.php:263
|
|
|
|
|
|
|
|
|
1036 |
msgid "Twitter Username "
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: wp-to-twitter-oauth.php:
|
1040 |
msgid "Consumer Key "
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: wp-to-twitter-oauth.php:
|
1044 |
msgid "Consumer Secret "
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: wp-to-twitter-oauth.php:
|
1048 |
msgid "Access Token "
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: wp-to-twitter-oauth.php:
|
1052 |
msgid "Access Token Secret "
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: wp-to-twitter-oauth.php:
|
1056 |
msgid "Twitter's current server time: "
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: wp-to-twitter
|
1060 |
msgid ""
|
1061 |
-
"
|
1062 |
-
"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: wp-to-twitter.php:
|
1066 |
msgid ""
|
1067 |
-
"
|
1068 |
-
"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: wp-to-twitter.php:
|
1072 |
msgid ""
|
1073 |
-
"WP to Twitter requires WordPress
|
1074 |
-
"
|
1075 |
-
"
|
1076 |
-
"Twitter with all features!</a>"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: wp-to-twitter.php:
|
1080 |
msgid ""
|
1081 |
"Twitter requires authentication by OAuth. You will need to <a "
|
1082 |
"href='%s'>update your settings</a> to complete installation of WP to Twitter."
|
1083 |
msgstr ""
|
1084 |
|
1085 |
-
#: wp-to-twitter.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1086 |
msgid "200 OK: Success!"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: wp-to-twitter.php:
|
1090 |
msgid ""
|
1091 |
"400 Bad Request: The request was invalid. This is the status code returned "
|
1092 |
"during rate limiting."
|
1093 |
msgstr ""
|
1094 |
|
1095 |
-
#: wp-to-twitter.php:
|
1096 |
msgid "401 Unauthorized: Authentication credentials were missing or incorrect."
|
1097 |
msgstr ""
|
1098 |
|
1099 |
-
#: wp-to-twitter.php:
|
1100 |
msgid ""
|
1101 |
"403 Forbidden: The request is understood, but it has been refused. This code "
|
1102 |
"is used when requests are understood, but are denied by Twitter. Reasons can "
|
@@ -1105,125 +1161,175 @@ msgid ""
|
|
1105 |
"Twitter."
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: wp-to-twitter.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1109 |
msgid "500 Internal Server Error: Something is broken at Twitter."
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#: wp-to-twitter.php:
|
|
|
|
|
|
|
|
|
1113 |
msgid ""
|
1114 |
"503 Service Unavailable: The Twitter servers are up, but overloaded with "
|
1115 |
"requests - Please try again later."
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#: wp-to-twitter.php:
|
1119 |
-
msgid "
|
|
|
|
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: wp-to-twitter.php:
|
1123 |
msgid "No Twitter OAuth connection found."
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: wp-to-twitter.php:
|
1127 |
msgid "WP Tweets"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
-
#: wp-to-twitter.php:
|
1131 |
msgid "Previous Tweets"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: wp-to-twitter.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1135 |
msgid "Custom Twitter Post"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: wp-to-twitter.php:
|
1139 |
-
msgid "Your template
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#: wp-to-twitter.php:
|
1143 |
-
msgid "
|
1144 |
msgstr ""
|
1145 |
|
1146 |
-
#: wp-to-twitter.php:
|
1147 |
-
msgid "
|
|
|
|
|
|
|
|
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: wp-to-twitter.php:
|
1151 |
msgid "Don't Tweet this post."
|
1152 |
msgstr ""
|
1153 |
|
1154 |
-
#: wp-to-twitter.php:
|
1155 |
msgid "Tweet this post."
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: wp-to-twitter.php:
|
1159 |
msgid ""
|
1160 |
"Access to customizing WP to Twitter values is not allowed for your user role."
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: wp-to-twitter.php:
|
1164 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: wp-to-twitter.php:
|
|
|
|
|
|
|
|
|
1168 |
msgid "Characters left: "
|
1169 |
msgstr ""
|
1170 |
|
1171 |
-
#: wp-to-twitter.php:
|
1172 |
msgid "WP Tweets User Settings"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
-
#: wp-to-twitter.php:
|
1176 |
msgid "Use My Twitter Username"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
-
#: wp-to-twitter.php:
|
1180 |
msgid "Tweet my posts with an @ reference to my username."
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: wp-to-twitter.php:
|
1184 |
msgid ""
|
1185 |
"Tweet my posts with an @ reference to both my username and to the main site "
|
1186 |
"username."
|
1187 |
msgstr ""
|
1188 |
|
1189 |
-
#: wp-to-twitter.php:
|
1190 |
msgid "Your Twitter Username"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
-
#: wp-to-twitter.php:
|
1194 |
msgid "Enter your own Twitter username."
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: wp-to-twitter.php:
|
1198 |
-
msgid ""
|
1199 |
-
"Note: if all site administrators have set-up their own Twitter accounts, the "
|
1200 |
-
"primary site account (as set on the settings page) is not required, and "
|
1201 |
-
"won't be used."
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: wp-to-twitter.php:
|
|
|
|
|
|
|
|
|
1205 |
msgid "Check off categories to tweet"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: wp-to-twitter.php:
|
1209 |
msgid "Do not tweet posts in checked categories (Reverses default behavior)"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#: wp-to-twitter.php:
|
1213 |
msgid ""
|
1214 |
"Limits are exclusive. If a post is in one category which should be posted "
|
1215 |
"and one category that should not, it will not be posted."
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: wp-to-twitter.php:
|
1219 |
msgid "Set Categories"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: wp-to-twitter.php:
|
1223 |
msgid "Settings"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#: wp-to-twitter.php:
|
1227 |
msgid ""
|
1228 |
"<br /><strong>Note:</strong> Please review the <a class=\"thickbox\" href="
|
1229 |
"\"%1$s\">changelog</a> before upgrading."
|
1 |
+
# Copyright (C) 2013 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.5.3\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-to-twitter\n"
|
7 |
+
"POT-Creation-Date: 2013-01-02 22:48:56+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2013-MO-DA HO:MI+ZONE\n"
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
+
#: functions.php:201
|
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 "
|
19 |
"request for support."
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: functions.php:319
|
23 |
msgid ""
|
24 |
"Please read the FAQ and other Help documents before making a support request."
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: functions.php:321
|
28 |
msgid "Please describe your problem. I'm not psychic."
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: functions.php:325
|
32 |
msgid ""
|
33 |
"Thank you for supporting the continuing development of this plug-in! I'll "
|
34 |
+
"get back to you as soon as I can. Please ensure that you can receive email "
|
35 |
+
"at <code>%s</code>."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: functions.php:327
|
39 |
msgid ""
|
40 |
+
"Thanks for using WP to Twitter. Please ensure that you can receive email at "
|
41 |
+
"<code>%s</code>."
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: functions.php:341
|
45 |
msgid "Please include your license key in your support request."
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: functions.php:346
|
49 |
msgid ""
|
50 |
"<strong>Please note</strong>: I do keep records of those who have donated, "
|
51 |
"but if your donation came from somebody other than your account at this web "
|
52 |
"site, you must note this in your message."
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: functions.php:351
|
56 |
+
msgid "Reply to:"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: functions.php:354
|
60 |
msgid ""
|
61 |
+
"I have read <a href=\"%1$s\">the FAQ for this plug-in</a> <span>(required)</"
|
62 |
+
"span>"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: functions.php:357
|
66 |
msgid ""
|
67 |
+
"I have <a href=\"%1$s\">made a donation to help support this plug-in</a>"
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#: functions.php:360
|
71 |
+
msgid "Support Request:"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: functions.php:363
|
75 |
msgid "Send Support Request"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: functions.php:366
|
79 |
msgid ""
|
80 |
"The following additional information will be sent with your support request:"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: wp-to-twitter-manager.php:40
|
84 |
msgid "No error information is available for your shortener."
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: wp-to-twitter-manager.php:42
|
88 |
msgid ""
|
89 |
"<li class=\"error\"><strong>WP to Twitter was unable to contact your "
|
90 |
"selected URL shortening service.</strong></li>"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: wp-to-twitter-manager.php:45
|
94 |
msgid ""
|
95 |
"<li><strong>WP to Twitter successfully contacted your selected URL "
|
96 |
"shortening service.</strong> The following link should point to your blog "
|
97 |
"homepage:"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: wp-to-twitter-manager.php:53
|
101 |
msgid ""
|
102 |
"<li><strong>WP to Twitter successfully submitted a status update to Twitter."
|
103 |
"</strong></li>"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: wp-to-twitter-manager.php:56
|
107 |
msgid ""
|
108 |
"<li class=\"error\"><strong>WP to Twitter failed to submit an update to "
|
109 |
"Twitter.</strong></li>"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: wp-to-twitter-manager.php:60
|
113 |
msgid "You have not connected WordPress to Twitter."
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: wp-to-twitter-manager.php:64
|
117 |
msgid ""
|
118 |
"<li class=\"error\"><strong>Your server does not appear to support the "
|
119 |
"required methods for WP to Twitter to function.</strong> You can try it "
|
120 |
"anyway - these tests aren't perfect.</li>"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: wp-to-twitter-manager.php:68
|
124 |
msgid ""
|
125 |
"<li><strong>Your server should run WP to Twitter successfully.</strong></li>"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: wp-to-twitter-manager.php:86
|
129 |
msgid "WP to Twitter Errors Cleared"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: wp-to-twitter-manager.php:170
|
133 |
msgid "WP to Twitter is now connected with Twitter."
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: wp-to-twitter-manager.php:177
|
137 |
msgid ""
|
138 |
+
"WP to Twitter failed to connect with Twitter. Try <a href=\"#wpt_http"
|
139 |
+
"\">switching to an HTTP connection</a>."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: wp-to-twitter-manager.php:184
|
143 |
msgid "OAuth Authentication Data Cleared."
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: wp-to-twitter-manager.php:191
|
147 |
msgid ""
|
148 |
"OAuth Authentication Failed. Your server time is not in sync with the "
|
149 |
"Twitter servers. Talk to your hosting service to see what can be done."
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: wp-to-twitter-manager.php:198
|
153 |
msgid "OAuth Authentication response not understood."
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: wp-to-twitter-manager.php:360
|
157 |
msgid "WP to Twitter Advanced Options Updated"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: wp-to-twitter-manager.php:382
|
161 |
msgid ""
|
162 |
"You must add your Bit.ly login and API key in order to shorten URLs with Bit."
|
163 |
"ly."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: wp-to-twitter-manager.php:386
|
167 |
msgid ""
|
168 |
"You must add your YOURLS remote URL, login, and password in order to shorten "
|
169 |
"URLs with a remote installation of YOURLS."
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: wp-to-twitter-manager.php:390
|
173 |
msgid ""
|
174 |
"You must add your YOURLS server path in order to shorten URLs with a remote "
|
175 |
"installation of YOURLS."
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: wp-to-twitter-manager.php:393
|
179 |
msgid "WP to Twitter Options Updated"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: wp-to-twitter-manager.php:402
|
183 |
msgid "Category limits updated."
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: wp-to-twitter-manager.php:406
|
187 |
msgid "Category limits unset."
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: wp-to-twitter-manager.php:413
|
191 |
msgid "YOURLS password updated. "
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: wp-to-twitter-manager.php:416
|
195 |
msgid ""
|
196 |
"YOURLS password deleted. You will be unable to use your remote YOURLS "
|
197 |
"account to create short URLS."
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: wp-to-twitter-manager.php:418
|
201 |
msgid "Failed to save your YOURLS password! "
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: wp-to-twitter-manager.php:422
|
205 |
msgid "YOURLS username added. "
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: wp-to-twitter-manager.php:426
|
209 |
msgid "YOURLS API url added. "
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: wp-to-twitter-manager.php:429
|
213 |
msgid "YOURLS API url removed. "
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: wp-to-twitter-manager.php:434
|
217 |
msgid "YOURLS local server path added. "
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: wp-to-twitter-manager.php:436
|
221 |
msgid "The path to your YOURLS installation is not correct. "
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: wp-to-twitter-manager.php:440
|
225 |
msgid "YOURLS local server path removed. "
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: wp-to-twitter-manager.php:445
|
229 |
msgid "YOURLS will use Post ID for short URL slug."
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: wp-to-twitter-manager.php:447
|
233 |
msgid "YOURLS will use your custom keyword for short URL slug."
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: wp-to-twitter-manager.php:451
|
237 |
msgid "YOURLS will not use Post ID for the short URL slug."
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: wp-to-twitter-manager.php:459
|
241 |
msgid "Su.pr API Key and Username Updated"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: wp-to-twitter-manager.php:463
|
245 |
msgid ""
|
246 |
"Su.pr API Key and username deleted. Su.pr URLs created by WP to Twitter will "
|
247 |
"no longer be associated with your account. "
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: wp-to-twitter-manager.php:465
|
251 |
msgid "Su.pr API Key not added - <a href='http://su.pr/'>get one here</a>! "
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: wp-to-twitter-manager.php:471
|
255 |
msgid "Bit.ly API Key Updated."
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: wp-to-twitter-manager.php:474
|
259 |
msgid ""
|
260 |
"Bit.ly API Key deleted. You cannot use the Bit.ly API without an API key. "
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: wp-to-twitter-manager.php:476
|
264 |
msgid ""
|
265 |
"Bit.ly API Key not added - <a href='http://bit.ly/account/'>get one here</"
|
266 |
"a>! An API key is required to use the Bit.ly URL shortening service."
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: wp-to-twitter-manager.php:480
|
270 |
msgid " Bit.ly User Login Updated."
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: wp-to-twitter-manager.php:483
|
274 |
msgid ""
|
275 |
"Bit.ly User Login deleted. You cannot use the Bit.ly API without providing "
|
276 |
"your username. "
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: wp-to-twitter-manager.php:485
|
280 |
msgid ""
|
281 |
"Bit.ly Login not added - <a href='http://bit.ly/account/'>get one here</a>! "
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: wp-to-twitter-manager.php:501
|
285 |
msgid ""
|
286 |
"<p>One or more of your last posts has failed to send a status update to "
|
287 |
"Twitter. The Tweet has been saved, and you can re-Tweet it at your leisure.</"
|
288 |
"p>"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: wp-to-twitter-manager.php:507
|
292 |
msgid ""
|
293 |
"Sorry! I couldn't get in touch with the Twitter servers to post your "
|
294 |
"<strong>new link</strong>! You'll have to post it manually, I'm afraid. "
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: wp-to-twitter-manager.php:510
|
298 |
msgid ""
|
299 |
"<p>The query to the URL shortener API failed, and your URL was not shrunk. "
|
300 |
"The full post URL was attached to your Tweet. Check with your URL shortening "
|
301 |
"provider to see if there are any known issues.</p>"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: wp-to-twitter-manager.php:516
|
305 |
msgid "Clear 'WP to Twitter' Error Messages"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: wp-to-twitter-manager.php:523
|
309 |
msgid "WP to Twitter Options"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: wp-to-twitter-manager.php:536
|
313 |
msgid "Basic Settings"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: wp-to-twitter-manager.php:542 wp-to-twitter-manager.php:606
|
317 |
msgid "Save WP->Twitter Options"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: wp-to-twitter-manager.php:544
|
321 |
+
msgid "Choose a short URL service (account settings below)"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: wp-to-twitter-manager.php:546
|
325 |
+
msgid "Don't shorten URLs."
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: wp-to-twitter-manager.php:550
|
329 |
+
msgid "YOURLS (on this server)"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: wp-to-twitter-manager.php:551
|
333 |
+
msgid "YOURLS (on a remote server)"
|
|
|
|
|
|
|
|
|
|
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: wp-to-twitter-manager.php:553
|
337 |
+
msgid "Use Twitter Friendly Links."
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: wp-to-twitter-manager.php:571
|
341 |
+
msgid "Settings for type \"%1$s\""
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: wp-to-twitter-manager.php:574
|
345 |
+
msgid "Update when %1$s %2$s is published"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: wp-to-twitter-manager.php:574
|
349 |
+
msgid "Text for new %1$s updates"
|
|
|
|
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: wp-to-twitter-manager.php:578
|
353 |
+
msgid "Update when %1$s %2$s is edited"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: wp-to-twitter-manager.php:578
|
357 |
+
msgid "Text for %1$s editing updates"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: wp-to-twitter-manager.php:586
|
361 |
+
msgid "Settings for Comments"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: wp-to-twitter-manager.php:589
|
365 |
+
msgid "Update Twitter when new comments are posted"
|
366 |
+
msgstr ""
|
367 |
+
|
368 |
+
#: wp-to-twitter-manager.php:590
|
369 |
+
msgid "Text for new comments:"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: wp-to-twitter-manager.php:592
|
373 |
+
msgid ""
|
374 |
+
"In addition to standard template tags, comments can use <code>#commenter#</"
|
375 |
+
"code> to post the commenter's name in the Tweet. <em>Use this at your own "
|
376 |
+
"risk</em>, as it lets anybody who can post a comment on your site post a "
|
377 |
+
"phrase in your Twitter stream."
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: wp-to-twitter-manager.php:595
|
381 |
+
msgid "Settings for Links"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: wp-to-twitter-manager.php:598
|
385 |
+
msgid "Update Twitter when you post a Blogroll link"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: wp-to-twitter-manager.php:599
|
389 |
+
msgid "Text for new link updates:"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: wp-to-twitter-manager.php:599
|
393 |
msgid ""
|
394 |
+
"Available shortcodes: <code>#url#</code>, <code>#title#</code>, and "
|
395 |
+
"<code>#description#</code>."
|
|
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: wp-to-twitter-manager.php:614
|
399 |
msgid ""
|
400 |
"<abbr title=\"Uniform Resource Locator\">URL</abbr> Shortener Account "
|
401 |
"Settings"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: wp-to-twitter-manager.php:618
|
405 |
msgid "Your Su.pr account details"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: wp-to-twitter-manager.php:618
|
409 |
+
msgid "(optional)"
|
410 |
+
msgstr ""
|
411 |
+
|
412 |
+
#: wp-to-twitter-manager.php:622
|
413 |
msgid "Your Su.pr Username:"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: wp-to-twitter-manager.php:626
|
417 |
msgid ""
|
418 |
"Your Su.pr <abbr title='application programming interface'>API</abbr> Key:"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: wp-to-twitter-manager.php:633
|
422 |
msgid ""
|
423 |
"Don't have a Su.pr account or API key? <a href='http://su.pr/'>Get one here</"
|
424 |
"a>!<br />You'll need an API key in order to associate the URLs you create "
|
425 |
"with your Su.pr account."
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: wp-to-twitter-manager.php:639
|
429 |
msgid "Your Bit.ly account details"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: wp-to-twitter-manager.php:643
|
433 |
msgid "Your Bit.ly username:"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: wp-to-twitter-manager.php:645
|
437 |
+
msgid "Get your Bit.ly API information."
|
|
|
|
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: wp-to-twitter-manager.php:647
|
441 |
msgid ""
|
442 |
"Your Bit.ly <abbr title='application programming interface'>API</abbr> Key:"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: wp-to-twitter-manager.php:650
|
446 |
+
msgid "View your Bit.ly username and API key"
|
447 |
+
msgstr ""
|
448 |
+
|
449 |
+
#: wp-to-twitter-manager.php:655
|
450 |
msgid "Save Bit.ly API Key"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: wp-to-twitter-manager.php:655
|
454 |
msgid "Clear Bit.ly API Key"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: wp-to-twitter-manager.php:655
|
458 |
msgid ""
|
459 |
"A Bit.ly API key and username is required to shorten URLs via the Bit.ly API "
|
460 |
"and WP to Twitter."
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: wp-to-twitter-manager.php:661
|
464 |
msgid "Your YOURLS account details"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: wp-to-twitter-manager.php:665
|
468 |
msgid "Path to your YOURLS config file (Local installations)"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: wp-to-twitter-manager.php:666 wp-to-twitter-manager.php:670
|
472 |
msgid "Example:"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: wp-to-twitter-manager.php:669
|
476 |
msgid "URI to the YOURLS API (Remote installations)"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: wp-to-twitter-manager.php:673
|
480 |
msgid "Your YOURLS username:"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: wp-to-twitter-manager.php:677
|
484 |
msgid "Your YOURLS password:"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: wp-to-twitter-manager.php:677
|
488 |
msgid "<em>Saved</em>"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: wp-to-twitter-manager.php:681
|
492 |
msgid "Post ID for YOURLS url slug."
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: wp-to-twitter-manager.php:682
|
496 |
msgid "Custom keyword for YOURLS url slug."
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: wp-to-twitter-manager.php:683
|
500 |
msgid "Default: sequential URL numbering."
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: wp-to-twitter-manager.php:689
|
504 |
msgid "Save YOURLS Account Info"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: wp-to-twitter-manager.php:689
|
508 |
msgid "Clear YOURLS password"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: wp-to-twitter-manager.php:689
|
512 |
msgid ""
|
513 |
"A YOURLS password and username is required to shorten URLs via the remote "
|
514 |
"YOURLS API and WP to Twitter."
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: wp-to-twitter-manager.php:694
|
518 |
+
msgid "Your shortener does not require any account settings."
|
519 |
+
msgstr ""
|
520 |
+
|
521 |
+
#: wp-to-twitter-manager.php:702
|
522 |
msgid "Advanced Settings"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: wp-to-twitter-manager.php:707 wp-to-twitter-manager.php:872
|
526 |
msgid "Save Advanced WP->Twitter Options"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: wp-to-twitter-manager.php:709
|
530 |
msgid "Advanced Tweet settings"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: wp-to-twitter-manager.php:711
|
534 |
msgid "Strip nonalphanumeric characters from tags"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: wp-to-twitter-manager.php:712
|
538 |
msgid "Spaces in tags replaced with:"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: wp-to-twitter-manager.php:714
|
542 |
msgid ""
|
543 |
"Default replacement is an underscore (<code>_</code>). Use <code>[ ]</code> "
|
544 |
"to remove spaces entirely."
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: wp-to-twitter-manager.php:717
|
548 |
msgid "Maximum number of tags to include:"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: wp-to-twitter-manager.php:718
|
552 |
msgid "Maximum length in characters for included tags:"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: wp-to-twitter-manager.php:719
|
556 |
msgid ""
|
557 |
"These options allow you to restrict the length and number of WordPress tags "
|
558 |
"sent to Twitter as hashtags. Set to <code>0</code> or leave blank to allow "
|
559 |
"any and all tags."
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: wp-to-twitter-manager.php:722
|
563 |
msgid "Length of post excerpt (in characters):"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: wp-to-twitter-manager.php:722
|
567 |
msgid ""
|
568 |
"By default, extracted from the post itself. If you use the 'Excerpt' field, "
|
569 |
"that will be used instead."
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: wp-to-twitter-manager.php:725
|
573 |
msgid "WP to Twitter Date Formatting:"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: wp-to-twitter-manager.php:726
|
577 |
msgid ""
|
578 |
"Default is from your general settings. <a href='http://codex.wordpress.org/"
|
579 |
"Formatting_Date_and_Time'>Date Formatting Documentation</a>."
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: wp-to-twitter-manager.php:730
|
583 |
msgid "Custom text before all Tweets:"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: wp-to-twitter-manager.php:731
|
587 |
msgid "Custom text after all Tweets:"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: wp-to-twitter-manager.php:734
|
591 |
msgid "Custom field for an alternate URL to be shortened and Tweeted:"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: wp-to-twitter-manager.php:735
|
595 |
msgid ""
|
596 |
"You can use a custom field to send an alternate URL for your post. The value "
|
597 |
"is the name of a custom field containing your external URL."
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: wp-to-twitter-manager.php:758
|
601 |
msgid "Preferred status update truncation sequence"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: wp-to-twitter-manager.php:761
|
605 |
msgid ""
|
606 |
"This is the order in which items will be abbreviated or removed from your "
|
607 |
"status update if it is too long to send to Twitter."
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: wp-to-twitter-manager.php:766
|
611 |
msgid "Special Cases when WordPress should send a Tweet"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: wp-to-twitter-manager.php:769
|
615 |
msgid "Do not post Tweets by default"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: wp-to-twitter-manager.php:771
|
619 |
+
msgid "Do not post Tweets by default (editing only)"
|
620 |
+
msgstr ""
|
621 |
+
|
622 |
+
#: wp-to-twitter-manager.php:772
|
623 |
msgid ""
|
624 |
"By default, all posts meeting other requirements will be posted to Twitter. "
|
625 |
"Check this to change your setting."
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: wp-to-twitter-manager.php:776
|
629 |
msgid "Allow status updates from Quick Edit"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: wp-to-twitter-manager.php:777
|
633 |
msgid ""
|
634 |
"If checked, all posts edited individually or in bulk through the Quick Edit "
|
635 |
"feature will be Tweeted."
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: wp-to-twitter-manager.php:782
|
639 |
msgid ""
|
640 |
"Delaying tweets with WP Tweets PRO moves Tweeting to an publishing-"
|
641 |
"independent action."
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: wp-to-twitter-manager.php:789
|
645 |
msgid ""
|
646 |
"Send Twitter Updates on remote publication (Post by Email or XMLRPC Client)"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: wp-to-twitter-manager.php:794
|
650 |
msgid "Google Analytics Settings"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: wp-to-twitter-manager.php:795
|
654 |
msgid ""
|
655 |
"You can track the response from Twitter using Google Analytics by defining a "
|
656 |
"campaign identifier here. You can either define a static identifier or a "
|
660 |
"additional variable."
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: wp-to-twitter-manager.php:799
|
664 |
msgid "Use a Static Identifier with WP-to-Twitter"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: wp-to-twitter-manager.php:800
|
668 |
msgid "Static Campaign identifier for Google Analytics:"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: wp-to-twitter-manager.php:804
|
672 |
msgid "Use a dynamic identifier with Google Analytics and WP-to-Twitter"
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: wp-to-twitter-manager.php:805
|
676 |
msgid "What dynamic identifier would you like to use?"
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: wp-to-twitter-manager.php:807
|
680 |
msgid "Category"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: wp-to-twitter-manager.php:808
|
684 |
msgid "Post ID"
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: wp-to-twitter-manager.php:809
|
688 |
msgid "Post Title"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: wp-to-twitter-manager.php:810
|
692 |
msgid "Author"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: wp-to-twitter-manager.php:815
|
696 |
msgid "Individual Authors"
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: wp-to-twitter-manager.php:818
|
700 |
msgid "Authors have individual Twitter accounts"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: wp-to-twitter-manager.php:818
|
704 |
msgid ""
|
705 |
"Authors can add their username in their user profile. This feature can only "
|
706 |
"add an @reference to the author. The @reference is placed using the "
|
708 |
"user accounts are not enabled."
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: wp-to-twitter-manager.php:835
|
712 |
+
msgid "The lowest user group that can add their Twitter information"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: wp-to-twitter-manager.php:840
|
716 |
msgid ""
|
717 |
+
"The lowest user group that can see the Custom Tweet options when posting"
|
|
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: wp-to-twitter-manager.php:845
|
721 |
+
msgid "The lowest user group that can toggle the Tweet/Don't Tweet option"
|
|
|
|
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: wp-to-twitter-manager.php:850
|
725 |
+
msgid "The lowest user group that can send Twitter updates"
|
726 |
+
msgstr ""
|
727 |
+
|
728 |
+
#: wp-to-twitter-manager.php:856
|
729 |
msgid "Disable Error Messages"
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: wp-to-twitter-manager.php:858
|
733 |
msgid "Disable global URL shortener error messages."
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: wp-to-twitter-manager.php:859
|
737 |
msgid "Disable global Twitter API error messages."
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: wp-to-twitter-manager.php:860
|
741 |
msgid "Disable notification to implement OAuth"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: wp-to-twitter-manager.php:862
|
745 |
msgid "Get Debugging Data for OAuth Connection"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: wp-to-twitter-manager.php:864
|
749 |
msgid "Switch to <code>http</code> connection. (Default is https)"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: wp-to-twitter-manager.php:866
|
753 |
msgid "I made a donation, so stop whinging at me, please."
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: wp-to-twitter-manager.php:880
|
757 |
msgid "Limit Updating Categories"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: wp-to-twitter-manager.php:883
|
761 |
msgid ""
|
762 |
"If no categories are checked, limiting by category will be ignored, and all "
|
763 |
"categories will be Tweeted."
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: wp-to-twitter-manager.php:884
|
767 |
msgid "<em>Category limits are disabled.</em>"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: wp-to-twitter-manager.php:893
|
771 |
msgid "Get Plug-in Support"
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: wp-to-twitter-manager.php:904
|
|
|
|
|
|
|
|
|
|
|
|
|
775 |
msgid "Check Support"
|
776 |
msgstr ""
|
777 |
|
778 |
+
#: wp-to-twitter-manager.php:904
|
779 |
msgid ""
|
780 |
"Check whether your server supports <a href=\"http://www.joedolson.com/"
|
781 |
"articles/wp-to-twitter/\">WP to Twitter's</a> queries to the Twitter and URL "
|
783 |
"a URL using your selected methods."
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: wp-to-twitter-manager.php:922
|
787 |
msgid "Support WP to Twitter"
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: wp-to-twitter-manager.php:924
|
791 |
msgid "WP to Twitter Support"
|
792 |
msgstr ""
|
793 |
|
794 |
+
#: wp-to-twitter-manager.php:932
|
795 |
msgid "View Settings"
|
796 |
msgstr ""
|
797 |
|
798 |
+
#: wp-to-twitter-manager.php:934 wp-to-twitter.php:1224 wp-to-twitter.php:1226
|
799 |
msgid "Get Support"
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: wp-to-twitter-manager.php:938
|
803 |
msgid ""
|
804 |
"<a href=\"http://www.joedolson.com/donate.php\">Make a donation today!</a> "
|
805 |
"Every donation counts - donate $2, $10, or $100 and help me keep this plug-"
|
806 |
"in running!"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: wp-to-twitter-manager.php:955
|
810 |
msgid "Upgrade Now!"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: wp-to-twitter-manager.php:957
|
814 |
+
msgid "Upgrade to <strong>WP Tweets PRO</strong> for more options!"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: wp-to-twitter-manager.php:958
|
818 |
msgid "Extra features with the PRO upgrade:"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: wp-to-twitter-manager.php:960
|
822 |
msgid "Users can post to their own Twitter accounts"
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: wp-to-twitter-manager.php:961
|
826 |
msgid ""
|
827 |
"Set a timer to send your Tweet minutes or hours after you publish the post"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: wp-to-twitter-manager.php:962
|
831 |
msgid "Automatically re-send Tweets at an assigned time after publishing"
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: wp-to-twitter-manager.php:971
|
835 |
msgid "Shortcodes"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: wp-to-twitter-manager.php:973
|
839 |
msgid "Available in post update templates:"
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: wp-to-twitter-manager.php:975
|
843 |
msgid "<code>#title#</code>: the title of your blog post"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: wp-to-twitter-manager.php:976
|
847 |
msgid "<code>#blog#</code>: the title of your blog"
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: wp-to-twitter-manager.php:977
|
851 |
msgid "<code>#post#</code>: a short excerpt of the post content"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: wp-to-twitter-manager.php:978
|
855 |
msgid "<code>#category#</code>: the first selected category for the post"
|
856 |
msgstr ""
|
857 |
|
858 |
+
#: wp-to-twitter-manager.php:979
|
859 |
msgid "<code>#date#</code>: the post date"
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: wp-to-twitter-manager.php:980
|
863 |
+
msgid "<code>#modified#</code>: the post modified date"
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: wp-to-twitter-manager.php:981
|
867 |
msgid "<code>#url#</code>: the post URL"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: wp-to-twitter-manager.php:982
|
871 |
+
msgid ""
|
872 |
+
"<code>#author#</code>: the post author (@reference if available, otherwise "
|
873 |
+
"display name)"
|
874 |
+
msgstr ""
|
875 |
+
|
876 |
+
#: wp-to-twitter-manager.php:983
|
877 |
+
msgid "<code>#displayname#</code>: post author's display name"
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: wp-to-twitter-manager.php:984
|
881 |
msgid ""
|
882 |
"<code>#account#</code>: the twitter @reference for the account (or the "
|
883 |
"author, if author settings are enabled and set.)"
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: wp-to-twitter-manager.php:985
|
887 |
msgid ""
|
888 |
"<code>#tags#</code>: your tags modified into hashtags. See options in the "
|
889 |
"Advanced Settings section, below."
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: wp-to-twitter-manager.php:987
|
893 |
+
msgid ""
|
894 |
+
"<code>#reference#</code>: Used only in co-tweeting. @reference to main "
|
895 |
+
"account when posted to author account, @reference to author account in post "
|
896 |
+
"to main account."
|
897 |
+
msgstr ""
|
898 |
+
|
899 |
+
#: wp-to-twitter-manager.php:990
|
900 |
msgid ""
|
901 |
"You can also create custom shortcodes to access WordPress custom fields. Use "
|
902 |
"doubled square brackets surrounding the name of your custom field to add the "
|
904 |
"[[custom_field]]</code></p>"
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: wp-to-twitter-oauth.php:96
|
908 |
msgid "WP to Twitter was unable to establish a connection to Twitter."
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: wp-to-twitter-oauth.php:165
|
912 |
msgid ""
|
913 |
+
"Connection Problems? Try <a href='#wpt_http'>switching to <code>http</code> "
|
914 |
"queries</a>.<br />"
|
915 |
msgstr ""
|
916 |
|
917 |
#: wp-to-twitter-oauth.php:166
|
|
|
|
|
|
|
|
|
918 |
msgid "There was an error querying Twitter's servers"
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: wp-to-twitter-oauth.php:182 wp-to-twitter-oauth.php:184
|
922 |
msgid "Connect to Twitter"
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: wp-to-twitter-oauth.php:187
|
926 |
msgid "WP to Twitter Set-up"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: wp-to-twitter-oauth.php:188 wp-to-twitter-oauth.php:281
|
930 |
msgid "Your server time:"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: wp-to-twitter-oauth.php:188
|
934 |
msgid "Twitter's time:"
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: wp-to-twitter-oauth.php:188
|
938 |
msgid ""
|
939 |
"If these timestamps are not within 5 minutes of each other, your server will "
|
940 |
"not connect to Twitter."
|
941 |
msgstr ""
|
942 |
|
943 |
+
#: wp-to-twitter-oauth.php:190
|
944 |
+
msgid "Your server timezone (should be UTC,GMT,Europe/London or equivalent):"
|
945 |
+
msgstr ""
|
946 |
+
|
947 |
+
#: wp-to-twitter-oauth.php:192
|
948 |
msgid ""
|
949 |
"<em>Note</em>: you will not add your Twitter user information to WP to "
|
950 |
"Twitter; it is not used in this authentication method."
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: wp-to-twitter-oauth.php:196
|
954 |
msgid "1. Register this site as an application on "
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: wp-to-twitter-oauth.php:196
|
958 |
msgid "Twitter's application registration page"
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: wp-to-twitter-oauth.php:198
|
962 |
msgid ""
|
963 |
"If you're not currently logged in to Twitter, log-in to the account you want "
|
964 |
"associated with this site"
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: wp-to-twitter-oauth.php:199
|
968 |
msgid ""
|
969 |
"Your Application's Name will show up after \"via\" in your twitter stream. "
|
970 |
"Your application name cannot include the word \"Twitter.\""
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: wp-to-twitter-oauth.php:200
|
974 |
msgid "Your Application Description can be anything."
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: wp-to-twitter-oauth.php:201
|
978 |
msgid "The WebSite and Callback URL should be "
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: wp-to-twitter-oauth.php:203
|
982 |
msgid "Agree to the Developer Rules of the Road and continue."
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: wp-to-twitter-oauth.php:204
|
986 |
msgid "2. Switch to the \"Settings\" tab in Twitter apps"
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: wp-to-twitter-oauth.php:206
|
990 |
msgid "Select \"Read and Write\" for the Application Type"
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: wp-to-twitter-oauth.php:207
|
994 |
msgid "Update the application settings"
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: wp-to-twitter-oauth.php:208
|
998 |
msgid ""
|
999 |
"Return to the Details tab and create your access token. Refresh page to view "
|
1000 |
"your access tokens."
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: wp-to-twitter-oauth.php:210
|
1004 |
msgid ""
|
1005 |
"Once you have registered your site as an application, you will be provided "
|
1006 |
"with four keys."
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: wp-to-twitter-oauth.php:211
|
1010 |
msgid ""
|
1011 |
"3. Copy and paste your consumer key and consumer secret into the fields below"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
+
#: wp-to-twitter-oauth.php:214
|
1015 |
msgid "Twitter Consumer Key"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
+
#: wp-to-twitter-oauth.php:218
|
1019 |
msgid "Twitter Consumer Secret"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
+
#: wp-to-twitter-oauth.php:222
|
1023 |
msgid ""
|
1024 |
"4. Copy and paste your Access Token and Access Token Secret into the fields "
|
1025 |
"below"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: wp-to-twitter-oauth.php:223
|
1029 |
msgid ""
|
1030 |
"If the Access level for your Access Token is not \"<em>Read and write</em>"
|
1031 |
"\", you must return to step 2 and generate a new Access Token."
|
1032 |
msgstr ""
|
1033 |
|
1034 |
+
#: wp-to-twitter-oauth.php:226
|
1035 |
msgid "Access Token"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: wp-to-twitter-oauth.php:230
|
1039 |
msgid "Access Token Secret"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
#: wp-to-twitter-oauth.php:249
|
1043 |
msgid "Disconnect Your WordPress and Twitter Account"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: wp-to-twitter-oauth.php:253
|
1047 |
msgid "Disconnect your WordPress and Twitter Account"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: wp-to-twitter-oauth.php:255
|
1051 |
msgid ""
|
1052 |
"<strong>Troubleshooting tip:</strong> Connected, but getting a notice that "
|
1053 |
"your Authentication credentials are missing or incorrect? Check whether your "
|
1056 |
msgstr ""
|
1057 |
|
1058 |
#: wp-to-twitter-oauth.php:257
|
1059 |
+
msgid ""
|
1060 |
+
"Your time stamps are more than 5 minutes apart. Your server could lose its "
|
1061 |
+
"connection with Twitter."
|
1062 |
+
msgstr ""
|
1063 |
+
|
1064 |
+
#: wp-to-twitter-oauth.php:259
|
1065 |
+
msgid ""
|
1066 |
+
"WP to Twitter could not contact Twitter's remote server. Here is the error "
|
1067 |
+
"triggered: "
|
1068 |
msgstr ""
|
1069 |
|
1070 |
#: wp-to-twitter-oauth.php:263
|
1071 |
+
msgid "Disconnect from Twitter"
|
1072 |
+
msgstr ""
|
1073 |
+
|
1074 |
+
#: wp-to-twitter-oauth.php:269
|
1075 |
msgid "Twitter Username "
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: wp-to-twitter-oauth.php:270
|
1079 |
msgid "Consumer Key "
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: wp-to-twitter-oauth.php:271
|
1083 |
msgid "Consumer Secret "
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: wp-to-twitter-oauth.php:272
|
1087 |
msgid "Access Token "
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: wp-to-twitter-oauth.php:273
|
1091 |
msgid "Access Token Secret "
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: wp-to-twitter-oauth.php:281
|
1095 |
msgid "Twitter's current server time: "
|
1096 |
msgstr ""
|
1097 |
|
1098 |
+
#: wp-to-twitter.php:45
|
1099 |
msgid ""
|
1100 |
+
"WP to Twitter requires PHP version 5 or above. Please upgrade PHP to run WP "
|
1101 |
+
"to Twitter."
|
1102 |
msgstr ""
|
1103 |
|
1104 |
+
#: wp-to-twitter.php:63
|
1105 |
msgid ""
|
1106 |
+
"The current version of WP Tweets PRO is <strong>%s</strong>. Upgrade for "
|
1107 |
+
"best compatibility!"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
+
#: wp-to-twitter.php:74
|
1111 |
msgid ""
|
1112 |
+
"WP to Twitter requires WordPress 3.0.6 or a more recent version <a href="
|
1113 |
+
"\"http://codex.wordpress.org/Upgrading_WordPress\">Please update WordPress "
|
1114 |
+
"to continue using WP to Twitter with all features!</a>"
|
|
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
#: wp-to-twitter.php:92
|
1118 |
msgid ""
|
1119 |
"Twitter requires authentication by OAuth. You will need to <a "
|
1120 |
"href='%s'>update your settings</a> to complete installation of WP to Twitter."
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: wp-to-twitter.php:271
|
1124 |
+
msgid "This account is not authorized to post to Twitter."
|
1125 |
+
msgstr ""
|
1126 |
+
|
1127 |
+
#: wp-to-twitter.php:279
|
1128 |
+
msgid "This tweet is identical to another Tweet recently sent to this account."
|
1129 |
+
msgstr ""
|
1130 |
+
|
1131 |
+
#: wp-to-twitter.php:285
|
1132 |
+
msgid "This tweet was blank and could not be sent to Twitter."
|
1133 |
+
msgstr ""
|
1134 |
+
|
1135 |
+
#: wp-to-twitter.php:314
|
1136 |
+
msgid ""
|
1137 |
+
"Your Twitter application does not have read and write permissions. Go to <a "
|
1138 |
+
"href=\"%s\">your Twitter apps</a> to modify these settings."
|
1139 |
+
msgstr ""
|
1140 |
+
|
1141 |
+
#: wp-to-twitter.php:318
|
1142 |
msgid "200 OK: Success!"
|
1143 |
msgstr ""
|
1144 |
|
1145 |
+
#: wp-to-twitter.php:323
|
1146 |
msgid ""
|
1147 |
"400 Bad Request: The request was invalid. This is the status code returned "
|
1148 |
"during rate limiting."
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: wp-to-twitter.php:327
|
1152 |
msgid "401 Unauthorized: Authentication credentials were missing or incorrect."
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: wp-to-twitter.php:332
|
1156 |
msgid ""
|
1157 |
"403 Forbidden: The request is understood, but it has been refused. This code "
|
1158 |
"is used when requests are understood, but are denied by Twitter. Reasons can "
|
1161 |
"Twitter."
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: wp-to-twitter.php:336
|
1165 |
+
msgid ""
|
1166 |
+
"404 Not Found: The URI requested is invalid or the resource requested does "
|
1167 |
+
"not exist."
|
1168 |
+
msgstr ""
|
1169 |
+
|
1170 |
+
#: wp-to-twitter.php:340
|
1171 |
+
msgid "406 Not Acceptable: Invalid Format Specified."
|
1172 |
+
msgstr ""
|
1173 |
+
|
1174 |
+
#: wp-to-twitter.php:344
|
1175 |
+
msgid "429 Too Many Requests: You have exceeded your rate limits."
|
1176 |
+
msgstr ""
|
1177 |
+
|
1178 |
+
#: wp-to-twitter.php:348
|
1179 |
msgid "500 Internal Server Error: Something is broken at Twitter."
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: wp-to-twitter.php:352
|
1183 |
+
msgid "502 Bad Gateway: Twitter is down or being upgraded."
|
1184 |
+
msgstr ""
|
1185 |
+
|
1186 |
+
#: wp-to-twitter.php:356
|
1187 |
msgid ""
|
1188 |
"503 Service Unavailable: The Twitter servers are up, but overloaded with "
|
1189 |
"requests - Please try again later."
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: wp-to-twitter.php:360
|
1193 |
+
msgid ""
|
1194 |
+
"504 Gateway Timeout: The Twitter servers are up, but the request couldn't be "
|
1195 |
+
"serviced due to some failure within our stack. Try again later."
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: wp-to-twitter.php:390
|
1199 |
msgid "No Twitter OAuth connection found."
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: wp-to-twitter.php:1079
|
1203 |
msgid "WP Tweets"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: wp-to-twitter.php:1121
|
1207 |
msgid "Previous Tweets"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: wp-to-twitter.php:1135
|
1211 |
+
msgid "Failed Tweets"
|
1212 |
+
msgstr ""
|
1213 |
+
|
1214 |
+
#: wp-to-twitter.php:1150
|
1215 |
+
msgid "No failed tweets on this post."
|
1216 |
+
msgstr ""
|
1217 |
+
|
1218 |
+
#: wp-to-twitter.php:1154
|
1219 |
+
msgid "WP to Twitter can do more for you! Take a look at WP Tweets Pro!"
|
1220 |
+
msgstr ""
|
1221 |
+
|
1222 |
+
#: wp-to-twitter.php:1157
|
1223 |
msgid "Custom Twitter Post"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
+
#: wp-to-twitter.php:1162
|
1227 |
+
msgid "Your prepended Tweet text; not part of your template."
|
1228 |
msgstr ""
|
1229 |
|
1230 |
+
#: wp-to-twitter.php:1165
|
1231 |
+
msgid "Your appended Tweet text; not part of your template."
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: wp-to-twitter.php:1181
|
1235 |
+
msgid "Your template:"
|
1236 |
+
msgstr ""
|
1237 |
+
|
1238 |
+
#: wp-to-twitter.php:1186
|
1239 |
+
msgid "YOURLS Custom Keyword"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: wp-to-twitter.php:1198
|
1243 |
msgid "Don't Tweet this post."
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: wp-to-twitter.php:1198
|
1247 |
msgid "Tweet this post."
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: wp-to-twitter.php:1210
|
1251 |
msgid ""
|
1252 |
"Access to customizing WP to Twitter values is not allowed for your user role."
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: wp-to-twitter.php:1219
|
1256 |
+
msgid ""
|
1257 |
+
"Tweets are no more than 140 characters; Twitter counts URLs as 20 "
|
1258 |
+
"characters. Template tags: <code>#url#</code>, <code>#title#</code>, "
|
1259 |
+
"<code>#post#</code>, <code>#category#</code>, <code>#date#</code>, "
|
1260 |
+
"<code>#modified#</code>, <code>#author#</code>, <code>#account#</code>, "
|
1261 |
+
"<code>#tags#</code>, or <code>#blog#</code>."
|
1262 |
+
msgstr ""
|
1263 |
+
|
1264 |
+
#: wp-to-twitter.php:1224
|
1265 |
+
msgid "Upgrade to WP Tweets Pro"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: wp-to-twitter.php:1231
|
1269 |
+
msgid "Your role does not have the ability to Post Tweets from this site."
|
1270 |
+
msgstr ""
|
1271 |
+
|
1272 |
+
#: wp-to-twitter.php:1280
|
1273 |
msgid "Characters left: "
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: wp-to-twitter.php:1341
|
1277 |
msgid "WP Tweets User Settings"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: wp-to-twitter.php:1345
|
1281 |
msgid "Use My Twitter Username"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: wp-to-twitter.php:1346
|
1285 |
msgid "Tweet my posts with an @ reference to my username."
|
1286 |
msgstr ""
|
1287 |
|
1288 |
+
#: wp-to-twitter.php:1347
|
1289 |
msgid ""
|
1290 |
"Tweet my posts with an @ reference to both my username and to the main site "
|
1291 |
"username."
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: wp-to-twitter.php:1351
|
1295 |
msgid "Your Twitter Username"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: wp-to-twitter.php:1352
|
1299 |
msgid "Enter your own Twitter username."
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: wp-to-twitter.php:1355
|
1303 |
+
msgid "Hide account name in Tweets"
|
|
|
|
|
|
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: wp-to-twitter.php:1356
|
1307 |
+
msgid "Do not display my account in the #account# template tag."
|
1308 |
+
msgstr ""
|
1309 |
+
|
1310 |
+
#: wp-to-twitter.php:1405
|
1311 |
msgid "Check off categories to tweet"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
+
#: wp-to-twitter.php:1409
|
1315 |
msgid "Do not tweet posts in checked categories (Reverses default behavior)"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
#: wp-to-twitter.php:1426
|
1319 |
msgid ""
|
1320 |
"Limits are exclusive. If a post is in one category which should be posted "
|
1321 |
"and one category that should not, it will not be posted."
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: wp-to-twitter.php:1429
|
1325 |
msgid "Set Categories"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
#: wp-to-twitter.php:1451
|
1329 |
msgid "Settings"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: wp-to-twitter.php:1486
|
1333 |
msgid ""
|
1334 |
"<br /><strong>Note:</strong> Please review the <a class=\"thickbox\" href="
|
1335 |
"\"%1$s\">changelog</a> before upgrading."
|
readme.txt
CHANGED
@@ -2,17 +2,18 @@
|
|
2 |
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:
|
6 |
-
Tested up to: 3.
|
|
|
7 |
Stable tag: trunk
|
8 |
|
9 |
-
|
10 |
|
11 |
== Description ==
|
12 |
|
13 |
-
WP to Twitter posts a
|
14 |
|
15 |
-
The plugin supports a
|
16 |
|
17 |
Additional features include:
|
18 |
|
@@ -20,30 +21,30 @@ Additional features include:
|
|
20 |
* Use alternate URLs in place of post permalinks
|
21 |
* Support for Google Analytics
|
22 |
* Support for XMLRPC remote clients
|
|
|
|
|
|
|
|
|
23 |
|
24 |
-
|
25 |
|
26 |
-
|
|
|
|
|
|
|
|
|
27 |
|
28 |
Translations:
|
29 |
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
* French: [Frédéric Million](http://www.traducteurs.com)
|
40 |
-
* Estonian: [Raivo Ratsep](http://raivoratsep.com)
|
41 |
-
* Dutch: [Rene at WPwebshop](http://wpwebshop.com/premium-wordpress-plugins/)
|
42 |
-
* Romanian: [Jibo](http://jibo.ro)
|
43 |
-
* Danish: [Rasmus Himmelstrup](http://seoanalyst.dk)
|
44 |
-
* Japanese: [kndb](http://blog.layer8.sh/)
|
45 |
-
|
46 |
-
New translations are always welcome! The translation source file is in the WP to Twitter download.
|
47 |
|
48 |
Credits:
|
49 |
|
@@ -51,6 +52,131 @@ Contributions by [Thor Erik](http://www.thorerik.net), Bill Berry and [Andrea Ba
|
|
51 |
|
52 |
== Changelog ==
|
53 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
= 2.4.5 =
|
55 |
|
56 |
* Added #modified# to use post modified date in templates.
|
@@ -653,4 +779,4 @@ Writing and maintaining a plug-in is a lot of work. You can help me by providing
|
|
653 |
|
654 |
== Upgrade Notice ==
|
655 |
|
656 |
-
* 2.
|
2 |
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: 3.0.6
|
6 |
+
Tested up to: 3.5.1
|
7 |
+
License: GPLv2 or later
|
8 |
Stable tag: trunk
|
9 |
|
10 |
+
Auto-posts a Twitter update when you update your WordPress blog or blogroll, with your chosen URL shortening service. Requires PHP 5.
|
11 |
|
12 |
== Description ==
|
13 |
|
14 |
+
WP to Twitter automatically posts a Tweet from your WordPress blog to Twitter using your URL shortening service to provide a link back to your post from Twitter.
|
15 |
|
16 |
+
The plugin supports a customizable Tweet template for updating or editing posts and pages, supports your custom post types, and allows you to write a custom Tweet for each post, using a selection of custom template tags to generate the text.
|
17 |
|
18 |
Additional features include:
|
19 |
|
21 |
* Use alternate URLs in place of post permalinks
|
22 |
* Support for Google Analytics
|
23 |
* Support for XMLRPC remote clients
|
24 |
+
* Support for Google Analytics
|
25 |
+
* Limiting Tweeting from specific categories
|
26 |
+
|
27 |
+
Any status update you write which is longer than 140 characters will be truncated by the plugin.
|
28 |
|
29 |
+
Upgrade to [WP Tweets Pro](http://www.joedolson.com/articles/wp-tweets-pro/) for extra features, including:
|
30 |
|
31 |
+
* Each author can set up their own Twitter account
|
32 |
+
* Time delayed Tweeting
|
33 |
+
* Scheduled Tweet management
|
34 |
+
* Co-Tweet to site and author Twitter accounts
|
35 |
+
* [and more!](http://www.joedolson.com/articles/wp-tweets-pro/)
|
36 |
|
37 |
Translations:
|
38 |
|
39 |
+
Visit the [WP to Twitter translations page](http://translate.joedolson.com/projects/wp-to-twitter) to see how complete these are.
|
40 |
+
|
41 |
+
Languages available (in order of completeness):
|
42 |
+
French, Italian, Dutch, Chinese, Portuguese, Japanese, Romanian, Danish, Estonian, Russian, Lithuanian, Belarusian, Ukrainian, German, Irish, Spanish, Turkish, Persian
|
43 |
+
|
44 |
+
Translator Credits (in no particular order)*:
|
45 |
+
[Ale Gonzalez](http://60rpm.tv/i), [Outshine Solutions](http://outshinesolutions.com), [Jakob Smith](http://www.omkalfatring.dk/),, [globus2008](http://wordpress.org/support/profile/globus2008), Frederic Escallier, Luud Heck, Wim Strijbos, [Daisuke Abe](http://www.alter-ego.jp/), [Alex](http://blog.sotvoril.ru/), Mehmet Koçali, Uwe Jonas, Florian Edelmann, Efva Nyberg, [Sabir Musta](http://mustaphasabir.altervista.org), Massimo Sgobino, Leonardo Kfoury, Alexandre Carvalho, Amir Khalilnejad, [Aurelio De Rosa](http://www.audero.it/), Bayram Dede, Dani Locasati, Dario Nunez, Dirk Ginader, Evren Erten, Flávio Pereira, Francois-Xavier Benard, [Gianni Diurno](http://www.gidibao.net), Giksi, Heinz Ochsner, Kazuyuki Kumai, Liam Boogar, Maks, Mano, Massimo Sgobino, Mohsen Aghaei, Oscar Romero, [Rashid Niamat](http://niamatmediagroup.nl/), Stefan Wikstrom, Thomas Meyer, Vedar Ozdemir, [Vikas Arora](http://www.wiznicworld.com), [Miriam de Paula](http://wpmidia.com.br), [HostUCan](http://www.hostucan.com), [Alex Alexandrov](http://www.webhostingrating.com), [Alyona Lompar](http://www.webhostinggeeks.com), [David Gil Pérez](http://www.sohelet.com), [Burkov Boris](http://chernobog.ru), [Raivo Ratsep](http://raivoratsep.com), [Jibo](http://jibo.ro), [Rasmus Himmelstrup](http://seoanalyst.dk), [kndb](http://blog.layer8.sh/)
|
46 |
+
|
47 |
+
Translating my plug-ins is always appreciated. Visit <a href="http://translate.joedolson.com">my translations site</a> to start getting your language into shape!
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
|
49 |
Credits:
|
50 |
|
52 |
|
53 |
== Changelog ==
|
54 |
|
55 |
+
= 2.5.9 =
|
56 |
+
|
57 |
+
* Using tag slug instead of tag name is a problem for languages with characters outside of [RFC 1738](http://www.faqs.org/rfcs/rfc1738.html) URL specs. Transformed into selectable option, default off.
|
58 |
+
|
59 |
+
= 2.5.8 =
|
60 |
+
|
61 |
+
* WP to Twitter now uses tag slug instead of tag name to convert tags into hashtags. Allows you to customize the hashtag sent for each tag.
|
62 |
+
* Set up changes necessary for pending t.co URL length change on 2/20/2013. [Blog post](https://dev.twitter.com/blog/upcoming-tco-changes)
|
63 |
+
* Updated: Danish, French, German translations.
|
64 |
+
|
65 |
+
= 2.5.7 =
|
66 |
+
|
67 |
+
* Minor fixes for stupid mistakes. I apologize for the inconvenience.
|
68 |
+
|
69 |
+
= 2.5.6 =
|
70 |
+
|
71 |
+
* Various fixes related to WP Tweets PRO updates.
|
72 |
+
|
73 |
+
= 2.5.5 =
|
74 |
+
|
75 |
+
* Backed out an efficiency tweak that didn't work as expected.
|
76 |
+
|
77 |
+
= 2.5.4 =
|
78 |
+
|
79 |
+
* Modified system for handling scheduled posts to get around recent issues with Tweeting scheduled posts.
|
80 |
+
* Update to Italian translation
|
81 |
+
|
82 |
+
= 2.5.3 =
|
83 |
+
|
84 |
+
* Truncation fix: Tweet not truncated if no template tags in use.
|
85 |
+
* Now sanitizing titles and categories when using for Google analytics
|
86 |
+
* Updated Italian translation, added Catalan translation.
|
87 |
+
|
88 |
+
= 2.5.2 =
|
89 |
+
|
90 |
+
* Another bug fix to truncating.
|
91 |
+
* Updated Italian translation.
|
92 |
+
|
93 |
+
= 2.5.1 =
|
94 |
+
|
95 |
+
* Removed hardcoding of /wp-content/
|
96 |
+
* Fixed truncation bug causing Tweets to be truncated when unnecessary.
|
97 |
+
* Improved error messages.
|
98 |
+
|
99 |
+
= 2.5.0 =
|
100 |
+
|
101 |
+
* Updated French Translation
|
102 |
+
* Fixed issue with multiple-savings of post meta data
|
103 |
+
* Added #displayname# template tag.
|
104 |
+
* Deprecated support for WordPress versions before 3.0.6.
|
105 |
+
* Updated to Twitter API endpoint version 1.1
|
106 |
+
* Updated: t.co URLs are now 20 characters. (Were 19.)
|
107 |
+
* Change: length of any prepended or appended text is included in character counts.
|
108 |
+
* Bug fix: Prepend/Append fields not stripped.
|
109 |
+
* Bug fix: undefined variable when Tweeting links
|
110 |
+
* Bug fix: truncating of Tweets when no URL shortcode is included.
|
111 |
+
* Bug fix: Post had to have a successful previous tweet in order to display failed tweets.
|
112 |
+
* Bug fix: if your Twitter application has read/write/dm capabilities, will no longer claim you don't have read/write caps.
|
113 |
+
* Improved information in failed tweet listing
|
114 |
+
* Clear admin message immediately when clearing errors.
|
115 |
+
* Change: test type for default Tweet is positive test if Tweets should be posted by default; negative if not.
|
116 |
+
* Verified: WP 3.5 compatibility.
|
117 |
+
|
118 |
+
= 2.4.13 =
|
119 |
+
|
120 |
+
* Issue if standard roles had been removed.
|
121 |
+
* Added option to hide account information in Tweets as a user profile setting. (If checked, return #account# as blank for that user.)
|
122 |
+
|
123 |
+
= 2.4.12 =
|
124 |
+
|
125 |
+
* Bug fix: Issues with permissions disallowing some behaviors incorrectly.
|
126 |
+
* Bug fix: Stripping of nonalphanumerics in hashtags is now UTF8 friendly.
|
127 |
+
* Change: Tweaking of the meaning of some permissions.
|
128 |
+
* Add: permission to disallow a role from Tweeting at all.
|
129 |
+
|
130 |
+
= 2.4.11 =
|
131 |
+
|
132 |
+
* Bug fix: Mismatched rules for when to enqueue charCount script and when to insert inline script calling that script.
|
133 |
+
* Bug fix: Added long-missing 'do not post Tweets by default when editing' option.
|
134 |
+
* Bug fix: 2 bugs when sending test Tweet and using WordPress as a shortening service
|
135 |
+
* Translation updated: French
|
136 |
+
|
137 |
+
= 2.4.10 =
|
138 |
+
|
139 |
+
* Bug fix: Error in truncation routine left tweets 2 characters too long when truncating.
|
140 |
+
* Change: minor tweak to administrative UI.
|
141 |
+
* Added: check of read-write status of application when posting.
|
142 |
+
|
143 |
+
= 2.4.9 =
|
144 |
+
|
145 |
+
* Bug (notice) fix: undefined variable.
|
146 |
+
* Bug fix: url encoding on Retweet links
|
147 |
+
* Removed some functions providing upgrade support with older versions of WP to Twitter (pre OAuth)
|
148 |
+
* Fixed bug in WP Tweets PRO which broke archiving of past Tweets. (Requires WP Tweets PRO 1.2.1)
|
149 |
+
* Added support for Twitter Friendly Links if installed.
|
150 |
+
* Added: Saves failed tweets for reference and manual tweeting.
|
151 |
+
|
152 |
+
= 2.4.8 =
|
153 |
+
|
154 |
+
* Bug fix: #account# shortcode broken in 2.4.7
|
155 |
+
* Bug fix: Missing function if WP Tweets PRO installed but not upgraded to 1.2.0
|
156 |
+
|
157 |
+
= 2.4.7 =
|
158 |
+
|
159 |
+
* Bug fix: Fatal error could be triggered if WP HTTP query returns error object.
|
160 |
+
* Bug fix: Fixed missing index when saving users without changing Twitter options.
|
161 |
+
* Bug fix: With custom post types, save_post ran after publish_{custom_post_type}. Moved save metadata function into publish_{cpt} action.
|
162 |
+
* Bug fix: 2.4.1 upgrade cycle was still running for all upgrades.
|
163 |
+
* Change: suggest HTTP switch for any connection error, since not all SSL related errors report as such.
|
164 |
+
* Italian and Dutch translations updated.
|
165 |
+
|
166 |
+
= 2.4.6 =
|
167 |
+
|
168 |
+
* Added strip_tags to custom template tag values.
|
169 |
+
* Tweet character counter now processes values for #title#, #url# and #blog#. Courtesy of Arnout Veenman.
|
170 |
+
* Truncation array error bug fix courtesy of Arnout Veenman.
|
171 |
+
* Truncation routine tags modification courtesy of Arnout Veenman.
|
172 |
+
* Bug fix: bug fix for final truncation check.
|
173 |
+
* Change: #author# template tag now returns the Twitter account @ reference if it's available, user's display name if not.
|
174 |
+
* Bug fix: Su.pr uses the longURL as an array key - the ampersands in URL needed to be encoded.
|
175 |
+
* Bug fix: WP to Twitter box showed up on disabled post types.
|
176 |
+
* Bug fix: undefined variable when posting using Su.pr as shortener.
|
177 |
+
* Change: changed Bit.ly API url to new recommended query URL.
|
178 |
+
* Change: moved character counter under Custom Tweet box so there's sufficient space if the meta box is in a side position.
|
179 |
+
|
180 |
= 2.4.5 =
|
181 |
|
182 |
* Added #modified# to use post modified date in templates.
|
779 |
|
780 |
== Upgrade Notice ==
|
781 |
|
782 |
+
* 2.5.7 Changes in 2.5.6 only effect people using the WP Tweets PRO upgrade.
|
styles.css
CHANGED
@@ -6,7 +6,7 @@ legend {font-weight: 700;font-size: 1.2em;padding: 6px 0;}
|
|
6 |
#wp-to-twitter .resources form {margin: 0;}
|
7 |
.settings {margin: 25px 0;background: #fff;padding: 10px;border: 1px solid #000;}
|
8 |
#wp-to-twitter .panel {border-bottom: 1px solid #ddd;padding: 0 5px;margin: 0 5px;}
|
9 |
-
#wp-to-twitter ul {list-style-type: disc;margin-left:
|
10 |
#wp-to-twitter li {line-height: 1.2;}
|
11 |
#wp-to-twitter .inside em {color: #f33;}
|
12 |
#wp-to-twitter .button-side { position: absolute; top: 10px; right: 10px;}
|
@@ -17,4 +17,5 @@ legend {font-weight: 700;font-size: 1.2em;padding: 6px 0;}
|
|
17 |
#wp-to-twitter .inside .comments { clear: both;}
|
18 |
#wp-to-twitter .postbox { margin: 10px 10px 0 0; }
|
19 |
#wp-to-twitter .meta-box-sortables { min-height: 0; }
|
20 |
-
.wp-tweets-notes { float: right; width: 30%; min-width: 175px; }
|
|
6 |
#wp-to-twitter .resources form {margin: 0;}
|
7 |
.settings {margin: 25px 0;background: #fff;padding: 10px;border: 1px solid #000;}
|
8 |
#wp-to-twitter .panel {border-bottom: 1px solid #ddd;padding: 0 5px;margin: 0 5px;}
|
9 |
+
#wp-to-twitter ul {list-style-type: disc;margin-left: 2em;font-size: 1em;}
|
10 |
#wp-to-twitter li {line-height: 1.2;}
|
11 |
#wp-to-twitter .inside em {color: #f33;}
|
12 |
#wp-to-twitter .button-side { position: absolute; top: 10px; right: 10px;}
|
17 |
#wp-to-twitter .inside .comments { clear: both;}
|
18 |
#wp-to-twitter .postbox { margin: 10px 10px 0 0; }
|
19 |
#wp-to-twitter .meta-box-sortables { min-height: 0; }
|
20 |
+
.wp-tweets-notes { float: right; width: 30%; min-width: 175px; }
|
21 |
+
#wp-to-twitter .indent { margin-left: 30px; }
|
uninstall.php
CHANGED
@@ -28,6 +28,7 @@ delete_option( 'jd_twit_blogroll' );
|
|
28 |
|
29 |
// Default publishing options.
|
30 |
delete_option( 'jd_tweet_default' );
|
|
|
31 |
delete_option( 'wpt_inline_edits' );
|
32 |
|
33 |
// Note that default options are set.
|
28 |
|
29 |
// Default publishing options.
|
30 |
delete_option( 'jd_tweet_default' );
|
31 |
+
delete_option( 'jd_tweet_default_edit' );
|
32 |
delete_option( 'wpt_inline_edits' );
|
33 |
|
34 |
// Note that default options are set.
|
wp-to-twitter-da_DA.mo
DELETED
Binary file
|
wp-to-twitter-da_DA.po
DELETED
@@ -1,816 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: wp-to-twitter\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2011-02-20 18:11+0100\n"
|
6 |
-
"PO-Revision-Date: 2011-02-20 18:11+0100\n"
|
7 |
-
"Last-Translator: Rasmus Himmelstrup <rh@iihnordic.com>\n"
|
8 |
-
"Language-Team: \n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Poedit-KeywordsList: __;gettext;gettext_noop;_e\n"
|
13 |
-
"X-Poedit-Basepath: .\n"
|
14 |
-
"X-Poedit-Language: Danish\n"
|
15 |
-
"X-Poedit-Country: DENMARK\n"
|
16 |
-
"X-Poedit-SearchPath-0: .\n"
|
17 |
-
|
18 |
-
#: functions.php:210
|
19 |
-
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."
|
20 |
-
msgstr "[<a href='options-general.php?page=wp-to-twitter/wp-to-twitter.php'>Skjul</a>] Hvis du oplever problemer, kopiér indstillingerne her og send dem til support."
|
21 |
-
|
22 |
-
#: wp-to-twitter-manager.php:74
|
23 |
-
msgid "WP to Twitter is now connected with Twitter."
|
24 |
-
msgstr "WP to Twitter forbinder nu til Twitter"
|
25 |
-
|
26 |
-
#: wp-to-twitter-manager.php:82
|
27 |
-
msgid "OAuth Authentication Failed. Check your credentials and verify that <a href=\"http://www.twitter.com/\">Twitter</a> is running."
|
28 |
-
msgstr "OAuth Autentikation mislykkedes. "
|
29 |
-
|
30 |
-
#: wp-to-twitter-manager.php:89
|
31 |
-
msgid "OAuth Authentication Data Cleared."
|
32 |
-
msgstr "OAuth Authentication Data nulstillet."
|
33 |
-
|
34 |
-
#: wp-to-twitter-manager.php:96
|
35 |
-
msgid "OAuth Authentication response not understood."
|
36 |
-
msgstr "OAuth Authentication svar blev ikke forstået"
|
37 |
-
|
38 |
-
#: wp-to-twitter-manager.php:105
|
39 |
-
msgid "WP to Twitter Errors Cleared"
|
40 |
-
msgstr "WP to Twitter fejl er løst"
|
41 |
-
|
42 |
-
#: wp-to-twitter-manager.php:112
|
43 |
-
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! "
|
44 |
-
msgstr "Beklager! Jeg kunne ikke få fat i Twitters servere for at publicere dit nye blog indlæg. Dit tweet er blevet gemt i et felt i dit indlæg, så du kan sende til Twitter manuelt hvis du ønsker."
|
45 |
-
|
46 |
-
#: wp-to-twitter-manager.php:114
|
47 |
-
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. "
|
48 |
-
msgstr "Beklager! Jeg kunne ikke få fat i Twitters servere og publicere dit <strong>nye indlæg</strong>! Du bliver nød til publicere det manuelt desværre."
|
49 |
-
|
50 |
-
#: wp-to-twitter-manager.php:149
|
51 |
-
msgid "WP to Twitter Advanced Options Updated"
|
52 |
-
msgstr "WP to Twitter udvidede muligheder er opdateret. "
|
53 |
-
|
54 |
-
#: wp-to-twitter-manager.php:166
|
55 |
-
msgid "You must add your Bit.ly login and API key in order to shorten URLs with Bit.ly."
|
56 |
-
msgstr "Du skal tilføje dit Bit.ly login og API key for at forkorte URLs med Bit.ly."
|
57 |
-
|
58 |
-
#: wp-to-twitter-manager.php:170
|
59 |
-
msgid "You must add your YOURLS remote URL, login, and password in order to shorten URLs with a remote installation of YOURLS."
|
60 |
-
msgstr "Du skal tilføje dit YOURLS remote URL, login og password for at forkorte URLs med en fjern installation af YOURLS."
|
61 |
-
|
62 |
-
#: wp-to-twitter-manager.php:174
|
63 |
-
msgid "You must add your YOURLS server path in order to shorten URLs with a remote installation of YOURLS."
|
64 |
-
msgstr "Du skal tilføje din YOURLS server sti for at kunne forkorte URLs med en remote installation af YOURLS."
|
65 |
-
|
66 |
-
#: wp-to-twitter-manager.php:178
|
67 |
-
msgid "WP to Twitter Options Updated"
|
68 |
-
msgstr "WP to Twitter indstillinger er opdateret"
|
69 |
-
|
70 |
-
#: wp-to-twitter-manager.php:188
|
71 |
-
msgid "Category limits updated."
|
72 |
-
msgstr "Kategoribegrænsninger er opdateret"
|
73 |
-
|
74 |
-
#: wp-to-twitter-manager.php:192
|
75 |
-
msgid "Category limits unset."
|
76 |
-
msgstr "Kategori begræsninger fjernet."
|
77 |
-
|
78 |
-
#: wp-to-twitter-manager.php:200
|
79 |
-
msgid "YOURLS password updated. "
|
80 |
-
msgstr "YOURLS password opdateret. "
|
81 |
-
|
82 |
-
#: wp-to-twitter-manager.php:203
|
83 |
-
msgid "YOURLS password deleted. You will be unable to use your remote YOURLS account to create short URLS."
|
84 |
-
msgstr "YOURLS password slettet. Du kan ikke længere bruge din remote YOURLS konto til at udarbejde short URLS."
|
85 |
-
|
86 |
-
#: wp-to-twitter-manager.php:205
|
87 |
-
msgid "Failed to save your YOURLS password! "
|
88 |
-
msgstr "Det mislykkedes at gemme dit YOURLS password! "
|
89 |
-
|
90 |
-
#: wp-to-twitter-manager.php:209
|
91 |
-
msgid "YOURLS username added. "
|
92 |
-
msgstr "YOURLS brugernavn tilføjet"
|
93 |
-
|
94 |
-
#: wp-to-twitter-manager.php:213
|
95 |
-
msgid "YOURLS API url added. "
|
96 |
-
msgstr "YOURLS API url tilføjet. "
|
97 |
-
|
98 |
-
#: wp-to-twitter-manager.php:216
|
99 |
-
msgid "YOURLS API url removed. "
|
100 |
-
msgstr "YOURLS API url fjernet."
|
101 |
-
|
102 |
-
#: wp-to-twitter-manager.php:221
|
103 |
-
msgid "YOURLS local server path added. "
|
104 |
-
msgstr "YOURLS local server sti tilføjet."
|
105 |
-
|
106 |
-
#: wp-to-twitter-manager.php:223
|
107 |
-
msgid "The path to your YOURLS installation is not correct. "
|
108 |
-
msgstr "Stien til din YOURLS installation er ikke korrekt."
|
109 |
-
|
110 |
-
#: wp-to-twitter-manager.php:227
|
111 |
-
msgid "YOURLS local server path removed. "
|
112 |
-
msgstr "YOURLS local server sti slettet. "
|
113 |
-
|
114 |
-
#: wp-to-twitter-manager.php:231
|
115 |
-
msgid "YOURLS will use Post ID for short URL slug."
|
116 |
-
msgstr "YOURLS vil bruge Post ID som short URL adresse."
|
117 |
-
|
118 |
-
#: wp-to-twitter-manager.php:234
|
119 |
-
msgid "YOURLS will not use Post ID for the short URL slug."
|
120 |
-
msgstr "YOURLS vil ikke bruge Post ID som short URL adresse."
|
121 |
-
|
122 |
-
#: wp-to-twitter-manager.php:241
|
123 |
-
msgid "Cligs API Key Updated"
|
124 |
-
msgstr "Cli.gs API Key opdateret"
|
125 |
-
|
126 |
-
#: wp-to-twitter-manager.php:244
|
127 |
-
msgid "Cli.gs API Key deleted. Cli.gs created by WP to Twitter will no longer be associated with your account. "
|
128 |
-
msgstr "Cli.gs API Key slettet. Cli.gs genereret af WP to Twitter vil ikke længere blive forbundet med din konto. "
|
129 |
-
|
130 |
-
#: wp-to-twitter-manager.php:246
|
131 |
-
msgid "Cli.gs API Key not added - <a href='http://cli.gs/user/api/'>get one here</a>! "
|
132 |
-
msgstr "Cli.gs API Key ikke tilføjet - <a href='http://cli.gs/user/api/'>få en her</a>! "
|
133 |
-
|
134 |
-
#: wp-to-twitter-manager.php:252
|
135 |
-
msgid "Bit.ly API Key Updated."
|
136 |
-
msgstr "Bit.ly API Key opdateret"
|
137 |
-
|
138 |
-
#: wp-to-twitter-manager.php:255
|
139 |
-
msgid "Bit.ly API Key deleted. You cannot use the Bit.ly API without an API key. "
|
140 |
-
msgstr "Bit.ly API Key slettet. Du kan ikke bruge Bit.ly API uden en API key."
|
141 |
-
|
142 |
-
#: wp-to-twitter-manager.php:257
|
143 |
-
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."
|
144 |
-
msgstr "Bit.ly API Key ikke tilføjet - <a href='http://bit.ly/account/'>få en her</a>! En API key er påkrævet for at bruge Bit.ly's URL forkorter service."
|
145 |
-
|
146 |
-
#: wp-to-twitter-manager.php:261
|
147 |
-
msgid " Bit.ly User Login Updated."
|
148 |
-
msgstr "Bit.ly brugernavn er opdateret"
|
149 |
-
|
150 |
-
#: wp-to-twitter-manager.php:264
|
151 |
-
msgid "Bit.ly User Login deleted. You cannot use the Bit.ly API without providing your username. "
|
152 |
-
msgstr "Bit.ly bruger login slettet. Du kan ikke benytte Bit.ly API uden at have et brugernavn."
|
153 |
-
|
154 |
-
#: wp-to-twitter-manager.php:266
|
155 |
-
msgid "Bit.ly Login not added - <a href='http://bit.ly/account/'>get one here</a>! "
|
156 |
-
msgstr "Bit.ly Login ikke tilføjet - <a href='http://bit.ly/account/'>få et her</a>! "
|
157 |
-
|
158 |
-
#: wp-to-twitter-manager.php:295
|
159 |
-
msgid "No error information is available for your shortener."
|
160 |
-
msgstr "Der er ingen fejlinformation tilgængelig for din url forkorter."
|
161 |
-
|
162 |
-
#: wp-to-twitter-manager.php:297
|
163 |
-
msgid "<li class=\"error\"><strong>WP to Twitter was unable to contact your selected URL shortening service.</strong></li>"
|
164 |
-
msgstr "<li class=\"error\"><strong>WP to Twitter kunne ikke komme i kontakt med din valgte URL shortening service.</strong></li>"
|
165 |
-
|
166 |
-
#: wp-to-twitter-manager.php:300
|
167 |
-
msgid "<li><strong>WP to Twitter successfully contacted your selected URL shortening service.</strong> The following link should point to your blog homepage:"
|
168 |
-
msgstr "<li><strong>WP to Twitter kontaktede din valgte URL shortening service.</strong> Det følgende link bør pege på din blog homepage:successfully contacted your selected URL shortening service.</strong> The following link should point to your blog homepage:"
|
169 |
-
|
170 |
-
#: wp-to-twitter-manager.php:309
|
171 |
-
msgid "<li><strong>WP to Twitter successfully submitted a status update to Twitter.</strong></li>"
|
172 |
-
msgstr "<li><strong>WP to Twitter sendte succesfuldt en status opdatering til Twitter.</strong></li>"
|
173 |
-
|
174 |
-
#: wp-to-twitter-manager.php:311
|
175 |
-
msgid "<li class=\"error\"><strong>WP to Twitter failed to submit an update to Twitter.</strong></li>"
|
176 |
-
msgstr "<li class=\"error\"><strong>Det lykkedes ikke at sende en opdatering til Twitter med WP to Twitter.</strong></li>"
|
177 |
-
|
178 |
-
#: wp-to-twitter-manager.php:314
|
179 |
-
msgid "You have not connected WordPress to Twitter."
|
180 |
-
msgstr "Du har ikke forbundet Wordpress til Twitter"
|
181 |
-
|
182 |
-
#: wp-to-twitter-manager.php:318
|
183 |
-
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>"
|
184 |
-
msgstr "<li class=\"error\"><strong>Din server ser ikke ud til at supportere de krævede WP to Twitter funktioner.</strong> Du kan prøve alligevel - de her tests er ikke perfekte.</li>"
|
185 |
-
|
186 |
-
#: wp-to-twitter-manager.php:322
|
187 |
-
msgid "<li><strong>Your server should run WP to Twitter successfully.</strong></li>"
|
188 |
-
msgstr "<li><strong>Din server skulle køre WP to Twitter optimalt.</strong></li>"
|
189 |
-
|
190 |
-
#: wp-to-twitter-manager.php:339
|
191 |
-
msgid "WP to Twitter Options"
|
192 |
-
msgstr "WP to Twitter indstillinger"
|
193 |
-
|
194 |
-
#: wp-to-twitter-manager.php:349
|
195 |
-
#: wp-to-twitter.php:780
|
196 |
-
msgid "Get Support"
|
197 |
-
msgstr "Få support"
|
198 |
-
|
199 |
-
#: wp-to-twitter-manager.php:350
|
200 |
-
msgid "Export Settings"
|
201 |
-
msgstr "Eksportér Indstillinger"
|
202 |
-
|
203 |
-
#: wp-to-twitter-manager.php:351
|
204 |
-
#: wp-to-twitter.php:780
|
205 |
-
msgid "Make a Donation"
|
206 |
-
msgstr "Donér"
|
207 |
-
|
208 |
-
#: wp-to-twitter-manager.php:366
|
209 |
-
msgid "Shortcodes available in post update templates:"
|
210 |
-
msgstr "Shortcodes er tilgængelige i indlæggets opdaterings templates:"
|
211 |
-
|
212 |
-
#: wp-to-twitter-manager.php:368
|
213 |
-
msgid "<code>#title#</code>: the title of your blog post"
|
214 |
-
msgstr "<code>#title#</code>: titlen på dit indlæg"
|
215 |
-
|
216 |
-
#: wp-to-twitter-manager.php:369
|
217 |
-
msgid "<code>#blog#</code>: the title of your blog"
|
218 |
-
msgstr "<code>#blog#</code>: titlen på din blog"
|
219 |
-
|
220 |
-
#: wp-to-twitter-manager.php:370
|
221 |
-
msgid "<code>#post#</code>: a short excerpt of the post content"
|
222 |
-
msgstr "<code>#post#</code>: en kort beskrivelse af indlæggets indhold"
|
223 |
-
|
224 |
-
#: wp-to-twitter-manager.php:371
|
225 |
-
msgid "<code>#category#</code>: the first selected category for the post"
|
226 |
-
msgstr "<code>#category#</code>: den første valgte kategori for indlægget"
|
227 |
-
|
228 |
-
#: wp-to-twitter-manager.php:372
|
229 |
-
msgid "<code>#date#</code>: the post date"
|
230 |
-
msgstr "<code>#date#</code>: dato for indlæg"
|
231 |
-
|
232 |
-
#: wp-to-twitter-manager.php:373
|
233 |
-
msgid "<code>#url#</code>: the post URL"
|
234 |
-
msgstr "<code>#url#</code>: Indlæg URL"
|
235 |
-
|
236 |
-
#: wp-to-twitter-manager.php:374
|
237 |
-
msgid "<code>#author#</code>: the post author"
|
238 |
-
msgstr "<code>#author#</code>: indlæggets forfatter"
|
239 |
-
|
240 |
-
#: wp-to-twitter-manager.php:375
|
241 |
-
msgid "<code>#account#</code>: the twitter @reference for the account (or the author, if author settings are enabled and set.)"
|
242 |
-
msgstr "<code>#account#</code>: Twitter @reference for kontoen (eller forfatteren, hvis forfatterindstillinger er aktiveret og indsat.)"
|
243 |
-
|
244 |
-
#: wp-to-twitter-manager.php:377
|
245 |
-
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>"
|
246 |
-
msgstr "Du kan også generere specielle shortcodes for at få adgang til WordPress custom felter. Brug firkantede klammer omkring navnet på dit custom felt for at tilføje navnet til din status opdatering. Eksempel: <code>[[custom_field]]</code></p>"
|
247 |
-
|
248 |
-
#: wp-to-twitter-manager.php:382
|
249 |
-
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>"
|
250 |
-
msgstr "<p>En eller flere of dine sidste indlæg sendte ikke status opdateringer til Twitter. Dit Tweet er gemt i custom feltet på indlægget, du kan re-Tweete når du vil.</p>"
|
251 |
-
|
252 |
-
#: wp-to-twitter-manager.php:386
|
253 |
-
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://blog.cli.gs\">Cli.gs Blog</a>] [<a href=\"http://blog.bit.ly\">Bit.ly Blog</a>]</p>"
|
254 |
-
msgstr "<p>Forespørgslen til URL shortener API mislykkedes, og din URL blev ikke forkortet. Den fulde URL blev tilføjet til dit Tweet. Tjek med din URL shortening udbyder for at se om der er nogle kendte problemer. [<a href=\"http://blog.cli.gs\">Cli.gs Blog</a>] [<a href=\"http://blog.bit.ly\">Bit.ly Blog</a>]</p>"
|
255 |
-
|
256 |
-
#: wp-to-twitter-manager.php:393
|
257 |
-
msgid "Clear 'WP to Twitter' Error Messages"
|
258 |
-
msgstr "Nulstil 'WP to Twitter' fejlbeskeder"
|
259 |
-
|
260 |
-
#: wp-to-twitter-manager.php:409
|
261 |
-
msgid "Basic Settings"
|
262 |
-
msgstr "Normale indstillinger"
|
263 |
-
|
264 |
-
#: wp-to-twitter-manager.php:415
|
265 |
-
msgid "Tweet Templates"
|
266 |
-
msgstr "Tweet Temaer"
|
267 |
-
|
268 |
-
#: wp-to-twitter-manager.php:418
|
269 |
-
msgid "Update when a post is published"
|
270 |
-
msgstr "Opdatér når et indlæg er publiceret"
|
271 |
-
|
272 |
-
#: wp-to-twitter-manager.php:418
|
273 |
-
msgid "Text for new post updates:"
|
274 |
-
msgstr "Tekst for nye indlæg:"
|
275 |
-
|
276 |
-
#: wp-to-twitter-manager.php:424
|
277 |
-
#: wp-to-twitter-manager.php:427
|
278 |
-
msgid "Update when a post is edited"
|
279 |
-
msgstr "Opdatér når et indlæg er ændret"
|
280 |
-
|
281 |
-
#: wp-to-twitter-manager.php:424
|
282 |
-
#: wp-to-twitter-manager.php:427
|
283 |
-
msgid "Text for editing updates:"
|
284 |
-
msgstr "Tekst ved opdateringer:"
|
285 |
-
|
286 |
-
#: wp-to-twitter-manager.php:428
|
287 |
-
msgid "You can not disable updates on edits when using Postie or similar plugins."
|
288 |
-
msgstr "Du kan ikke deaktivere opdateringer ved ændringer når du benytter Postie eller lignende plugins."
|
289 |
-
|
290 |
-
#: wp-to-twitter-manager.php:432
|
291 |
-
msgid "Update Twitter when new Wordpress Pages are published"
|
292 |
-
msgstr "Opdatér Twitter når Wordpress Sider er publiceret"
|
293 |
-
|
294 |
-
#: wp-to-twitter-manager.php:432
|
295 |
-
msgid "Text for new page updates:"
|
296 |
-
msgstr "Tekst til nye side opdateringer:"
|
297 |
-
|
298 |
-
#: wp-to-twitter-manager.php:436
|
299 |
-
msgid "Update Twitter when WordPress Pages are edited"
|
300 |
-
msgstr "Opdatér Twitter når Wordpress sider er ændret"
|
301 |
-
|
302 |
-
#: wp-to-twitter-manager.php:436
|
303 |
-
msgid "Text for page edit updates:"
|
304 |
-
msgstr "Tekst ved opdateringer på sider:"
|
305 |
-
|
306 |
-
#: wp-to-twitter-manager.php:440
|
307 |
-
msgid "Update Twitter when you post a Blogroll link"
|
308 |
-
msgstr "Opdatér Twitter når du poster et Blogroll link"
|
309 |
-
|
310 |
-
#: wp-to-twitter-manager.php:441
|
311 |
-
msgid "Text for new link updates:"
|
312 |
-
msgstr "Tekst for nye link opdateringer:"
|
313 |
-
|
314 |
-
#: wp-to-twitter-manager.php:441
|
315 |
-
msgid "Available shortcodes: <code>#url#</code>, <code>#title#</code>, and <code>#description#</code>."
|
316 |
-
msgstr "Mulige shortcodes: <code>#url#</code>, <code>#title#</code>, og <code>#description#</code>."
|
317 |
-
|
318 |
-
#: wp-to-twitter-manager.php:445
|
319 |
-
msgid "Choose your short URL service (account settings below)"
|
320 |
-
msgstr "Vælg din kort URL service (kontoindstillinger nedenfor)"
|
321 |
-
|
322 |
-
#: wp-to-twitter-manager.php:448
|
323 |
-
msgid "Use Cli.gs for my URL shortener."
|
324 |
-
msgstr "Brug Cli.gs som URL forkerter"
|
325 |
-
|
326 |
-
#: wp-to-twitter-manager.php:449
|
327 |
-
msgid "Use Bit.ly for my URL shortener."
|
328 |
-
msgstr "Brug Bit.ly som min URL forkorter"
|
329 |
-
|
330 |
-
#: wp-to-twitter-manager.php:450
|
331 |
-
msgid "YOURLS (installed on this server)"
|
332 |
-
msgstr "YOURLS (installeret på denne server)"
|
333 |
-
|
334 |
-
#: wp-to-twitter-manager.php:451
|
335 |
-
msgid "YOURLS (installed on a remote server)"
|
336 |
-
msgstr "YOURLS (installeret på en remote server)"
|
337 |
-
|
338 |
-
#: wp-to-twitter-manager.php:452
|
339 |
-
msgid "Use WordPress as a URL shortener."
|
340 |
-
msgstr "Brug Wordpress som en URL forkorter"
|
341 |
-
|
342 |
-
#: wp-to-twitter-manager.php:453
|
343 |
-
msgid "Don't shorten URLs."
|
344 |
-
msgstr "Forkort ikke URLs"
|
345 |
-
|
346 |
-
#: wp-to-twitter-manager.php:455
|
347 |
-
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."
|
348 |
-
msgstr "Ved at bruge WordPress som en URL shortener vil WordPress sende URLs til Twitter i default format: <code>http://domain.com/wpdir/?p=123</code>. Google Analytics kan ikke benyttes når du benytter WordPress forkortede URLs."
|
349 |
-
|
350 |
-
#: wp-to-twitter-manager.php:461
|
351 |
-
msgid "Save WP->Twitter Options"
|
352 |
-
msgstr "Gem WP->Twitter indstillinger"
|
353 |
-
|
354 |
-
#: wp-to-twitter-manager.php:473
|
355 |
-
msgid "<abbr title=\"Uniform Resource Locator\">URL</abbr> Shortener Account Settings"
|
356 |
-
msgstr "<abbr title=\"Uniform Resource Locator\">URL</abbr> forkorter Kontoindstillinger"
|
357 |
-
|
358 |
-
#: wp-to-twitter-manager.php:477
|
359 |
-
msgid "Your Cli.gs account details"
|
360 |
-
msgstr "Din Cli.gs konto informationer"
|
361 |
-
|
362 |
-
#: wp-to-twitter-manager.php:482
|
363 |
-
msgid "Your Cli.gs <abbr title='application programming interface'>API</abbr> Key:"
|
364 |
-
msgstr "Din Cli.gs <abbr title='application programming interface'>API</abbr> Key:"
|
365 |
-
|
366 |
-
#: wp-to-twitter-manager.php:488
|
367 |
-
msgid "Don't have a Cli.gs account or Cligs API key? <a href='http://cli.gs/user/api/'>Get one free here</a>!<br />You'll need an API key in order to associate the Cligs you create with your Cligs account."
|
368 |
-
msgstr "Har du ikke en Cli.gs konto eller Cligs API key? <a href='http://cli.gs/user/api/'>Få en gratis her</a>!<br /> Du skal bruge en API key for at associere dine Cligs du med din Cligs konto. "
|
369 |
-
|
370 |
-
#: wp-to-twitter-manager.php:494
|
371 |
-
msgid "Your Bit.ly account details"
|
372 |
-
msgstr "Din Bit.ly konto indstillinger"
|
373 |
-
|
374 |
-
#: wp-to-twitter-manager.php:499
|
375 |
-
msgid "Your Bit.ly username:"
|
376 |
-
msgstr "Dit Bit.ly brugernavn"
|
377 |
-
|
378 |
-
#: wp-to-twitter-manager.php:503
|
379 |
-
msgid "Your Bit.ly <abbr title='application programming interface'>API</abbr> Key:"
|
380 |
-
msgstr "Din Bit.ly <abbr title='application programming interface'>API</abbr> Key:"
|
381 |
-
|
382 |
-
#: wp-to-twitter-manager.php:510
|
383 |
-
msgid "Save Bit.ly API Key"
|
384 |
-
msgstr "Gem Bit.ly API Key"
|
385 |
-
|
386 |
-
#: wp-to-twitter-manager.php:510
|
387 |
-
msgid "Clear Bit.ly API Key"
|
388 |
-
msgstr "Nustil Bit.ly API Key"
|
389 |
-
|
390 |
-
#: wp-to-twitter-manager.php:510
|
391 |
-
msgid "A Bit.ly API key and username is required to shorten URLs via the Bit.ly API and WP to Twitter."
|
392 |
-
msgstr "En Bit.ly API ey og brugernavn er nødvendigt for at forkorte URLs via Bit.ly API og WP to Twitter."
|
393 |
-
|
394 |
-
#: wp-to-twitter-manager.php:515
|
395 |
-
msgid "Your YOURLS account details"
|
396 |
-
msgstr "Din YOURLS kontodetaljer"
|
397 |
-
|
398 |
-
#: wp-to-twitter-manager.php:519
|
399 |
-
msgid "Path to the YOURLS config file (Local installations)"
|
400 |
-
msgstr "Sti til YOURLS konfigurationsfil (Lokale installationer)"
|
401 |
-
|
402 |
-
#: wp-to-twitter-manager.php:520
|
403 |
-
#: wp-to-twitter-manager.php:524
|
404 |
-
msgid "Example:"
|
405 |
-
msgstr "Eksempel:"
|
406 |
-
|
407 |
-
#: wp-to-twitter-manager.php:523
|
408 |
-
msgid "URI to the YOURLS API (Remote installations)"
|
409 |
-
msgstr "URI til YOURLS API (Remote installationer)"
|
410 |
-
|
411 |
-
#: wp-to-twitter-manager.php:527
|
412 |
-
msgid "Your YOURLS username:"
|
413 |
-
msgstr "Dit YOURLS brugernavn:"
|
414 |
-
|
415 |
-
#: wp-to-twitter-manager.php:531
|
416 |
-
msgid "Your YOURLS password:"
|
417 |
-
msgstr "Dit YOURLS password:"
|
418 |
-
|
419 |
-
#: wp-to-twitter-manager.php:531
|
420 |
-
msgid "<em>Saved</em>"
|
421 |
-
msgstr "<em>Gemt</em>"
|
422 |
-
|
423 |
-
#: wp-to-twitter-manager.php:535
|
424 |
-
msgid "Use Post ID for YOURLS url slug."
|
425 |
-
msgstr "Brug Post ID for YOURLS url adresse."
|
426 |
-
|
427 |
-
#: wp-to-twitter-manager.php:540
|
428 |
-
msgid "Save YOURLS Account Info"
|
429 |
-
msgstr "Gem YOURLS konto info"
|
430 |
-
|
431 |
-
#: wp-to-twitter-manager.php:540
|
432 |
-
msgid "Clear YOURLS password"
|
433 |
-
msgstr "Nulstil YOURLS password"
|
434 |
-
|
435 |
-
#: wp-to-twitter-manager.php:540
|
436 |
-
msgid "A YOURLS password and username is required to shorten URLs via the remote YOURLS API and WP to Twitter."
|
437 |
-
msgstr "Et YOURLS password og brugernavn er nødvendigt for at forkorte URLs via remote YOURLS API og WP to Twitter."
|
438 |
-
|
439 |
-
#: wp-to-twitter-manager.php:557
|
440 |
-
msgid "Advanced Settings"
|
441 |
-
msgstr "Avancerede indstillinger"
|
442 |
-
|
443 |
-
#: wp-to-twitter-manager.php:564
|
444 |
-
msgid "Advanced Tweet settings"
|
445 |
-
msgstr "Avancerede Tweet indstillinger"
|
446 |
-
|
447 |
-
#: wp-to-twitter-manager.php:567
|
448 |
-
msgid "Add tags as hashtags on Tweets"
|
449 |
-
msgstr "Tilføj tags som hastags til Tweets"
|
450 |
-
|
451 |
-
#: wp-to-twitter-manager.php:568
|
452 |
-
msgid "Spaces replaced with:"
|
453 |
-
msgstr "Mellemrum erstattet af:"
|
454 |
-
|
455 |
-
#: wp-to-twitter-manager.php:569
|
456 |
-
msgid "Default replacement is an underscore (<code>_</code>). Use <code>[ ]</code> to remove spaces entirely."
|
457 |
-
msgstr "Default måde at erstatte er underscore (<code>_</code>). Brug <code>[ ]</code> for at fjerne mellemrum helt."
|
458 |
-
|
459 |
-
#: wp-to-twitter-manager.php:572
|
460 |
-
msgid "Maximum number of tags to include:"
|
461 |
-
msgstr "Maksimum antal tags der skal inkluderes"
|
462 |
-
|
463 |
-
#: wp-to-twitter-manager.php:573
|
464 |
-
msgid "Maximum length in characters for included tags:"
|
465 |
-
msgstr "Maksimum længde i karakterer for inkluderede tags:"
|
466 |
-
|
467 |
-
#: wp-to-twitter-manager.php:574
|
468 |
-
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."
|
469 |
-
msgstr "Disse muligheder gør det muligt at begrænse længden og antal af Wordpress tags sendt til Twitter som hastags. "
|
470 |
-
|
471 |
-
#: wp-to-twitter-manager.php:577
|
472 |
-
msgid "Length of post excerpt (in characters):"
|
473 |
-
msgstr "Længde af uddrag (i bogstaver)"
|
474 |
-
|
475 |
-
#: wp-to-twitter-manager.php:577
|
476 |
-
msgid "By default, extracted from the post itself. If you use the 'Excerpt' field, that will be used instead."
|
477 |
-
msgstr "Per default, trukket fra indlægget. Hvis du bruger 'Uddrags' feltet vil det blive brugt i stedet."
|
478 |
-
|
479 |
-
#: wp-to-twitter-manager.php:580
|
480 |
-
msgid "WP to Twitter Date Formatting:"
|
481 |
-
msgstr "WP to Twitter Dato formattering:"
|
482 |
-
|
483 |
-
#: wp-to-twitter-manager.php:581
|
484 |
-
msgid "Default is from your general settings. <a href='http://codex.wordpress.org/Formatting_Date_and_Time'>Date Formatting Documentation</a>."
|
485 |
-
msgstr "Default er fra dine generelle indstillinger. <a href='http://codex.wordpress.org/Formatting_Date_and_Time'>Dokumentation for Dato formattering</a>."
|
486 |
-
|
487 |
-
#: wp-to-twitter-manager.php:585
|
488 |
-
msgid "Custom text before all Tweets:"
|
489 |
-
msgstr "Brugerdefineret tekst før alle Tweets:"
|
490 |
-
|
491 |
-
#: wp-to-twitter-manager.php:586
|
492 |
-
msgid "Custom text after all Tweets:"
|
493 |
-
msgstr "Brugerdefineret tekst efter alle Tweets:"
|
494 |
-
|
495 |
-
#: wp-to-twitter-manager.php:589
|
496 |
-
msgid "Custom field for an alternate URL to be shortened and Tweeted:"
|
497 |
-
msgstr "Brugerdefineret felt for at en alternativ URL kan blive forkortet og Tweeted:"
|
498 |
-
|
499 |
-
#: wp-to-twitter-manager.php:590
|
500 |
-
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."
|
501 |
-
msgstr "Du kan bruge et brugerdefineret felt til at sende en alternativ URL for dit indlæg. Det du skal indsætte er navnet for dit brugerdefinerede felt, der indeholder din eksterne URL."
|
502 |
-
|
503 |
-
#: wp-to-twitter-manager.php:594
|
504 |
-
msgid "Special Cases when WordPress should send a Tweet"
|
505 |
-
msgstr "Specielle tilfælde hvor Wordpress skal sende et Tweet"
|
506 |
-
|
507 |
-
#: wp-to-twitter-manager.php:597
|
508 |
-
msgid "Do not post status updates by default"
|
509 |
-
msgstr "Undgå at sende statusopdateringer per default"
|
510 |
-
|
511 |
-
#: wp-to-twitter-manager.php:598
|
512 |
-
msgid "By default, all posts meeting other requirements will be posted to Twitter. Check this to change your setting."
|
513 |
-
msgstr "Per default, alle indlæg der opfylder andre betingelser vil blive sendt via Twitter. Tjek det for at ændre dine indstillinger."
|
514 |
-
|
515 |
-
#: wp-to-twitter-manager.php:602
|
516 |
-
msgid "Send Twitter Updates on remote publication (Post by Email or XMLRPC Client)"
|
517 |
-
msgstr "Send Twitter opdateringer via remote publikation (Send indlæg via mail eller XMLRPC klient)"
|
518 |
-
|
519 |
-
#: wp-to-twitter-manager.php:604
|
520 |
-
msgid "I'm using a plugin to post by email, such as Postie. Only check this if your updates do not work."
|
521 |
-
msgstr "Jeg bruger et plugin, som Postie, til at poste via mail. Tjek kun dette hvis dine opdateringer ikke virker."
|
522 |
-
|
523 |
-
#: wp-to-twitter-manager.php:608
|
524 |
-
msgid "Update Twitter when a post is published using QuickPress"
|
525 |
-
msgstr "Opdatér Twitter når et indlæg bliver publiceret ved hjælp af QuickPress"
|
526 |
-
|
527 |
-
#: wp-to-twitter-manager.php:612
|
528 |
-
msgid "Google Analytics Settings"
|
529 |
-
msgstr "Google Analytics Indstillinger"
|
530 |
-
|
531 |
-
#: wp-to-twitter-manager.php:613
|
532 |
-
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."
|
533 |
-
msgstr "Du kan måle antallet af hits fra Twitter ved at bruge Google Analytics og definere en kampagne identifikator her. Du kan enten definere en statisk identifikator eller en dynamisk identifikator. Statiske identifikatorer skifter ikke fra indlæg til indlæg; dynamiske identifikatorer er dannet ud fra information relevant til det specifikke indlæg. Dynamiske identifikatorer vil give dig mulighed for nedbryde din statistik med en ekstra variabel."
|
534 |
-
|
535 |
-
#: wp-to-twitter-manager.php:617
|
536 |
-
msgid "Use a Static Identifier with WP-to-Twitter"
|
537 |
-
msgstr "Brug en statisk identifikator med WP-to-Twitter"
|
538 |
-
|
539 |
-
#: wp-to-twitter-manager.php:618
|
540 |
-
msgid "Static Campaign identifier for Google Analytics:"
|
541 |
-
msgstr "Statisk kampagne identifikator for Google Analytics"
|
542 |
-
|
543 |
-
#: wp-to-twitter-manager.php:622
|
544 |
-
msgid "Use a dynamic identifier with Google Analytics and WP-to-Twitter"
|
545 |
-
msgstr "Brug en dynamisk identifikator med Google Analytics og WP-to-Twitter"
|
546 |
-
|
547 |
-
#: wp-to-twitter-manager.php:623
|
548 |
-
msgid "What dynamic identifier would you like to use?"
|
549 |
-
msgstr "Hvilken dynamisk identifikator vil du benytte?"
|
550 |
-
|
551 |
-
#: wp-to-twitter-manager.php:625
|
552 |
-
msgid "Category"
|
553 |
-
msgstr "Kategori"
|
554 |
-
|
555 |
-
#: wp-to-twitter-manager.php:626
|
556 |
-
msgid "Post ID"
|
557 |
-
msgstr "Indlæg ID"
|
558 |
-
|
559 |
-
#: wp-to-twitter-manager.php:627
|
560 |
-
msgid "Post Title"
|
561 |
-
msgstr "Indlæg titel"
|
562 |
-
|
563 |
-
#: wp-to-twitter-manager.php:628
|
564 |
-
msgid "Author"
|
565 |
-
msgstr "Forfatter"
|
566 |
-
|
567 |
-
#: wp-to-twitter-manager.php:633
|
568 |
-
msgid "Individual Authors"
|
569 |
-
msgstr "Individuelle Forfattere"
|
570 |
-
|
571 |
-
#: wp-to-twitter-manager.php:636
|
572 |
-
msgid "Authors have individual Twitter accounts"
|
573 |
-
msgstr "Forfattere har individuelle Twitter konti"
|
574 |
-
|
575 |
-
#: wp-to-twitter-manager.php:636
|
576 |
-
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.)"
|
577 |
-
msgstr "Forfattere kan skrive deres brugernavn i deres brugerprofil. Den feature tillader efter version 2.2.0 ikke forfattere at poste til deres egen Twitter konto. Den kan kun tilføje en @reference til forfatteren. Den @reference er placeret ved hjælp af <code>#konto#</code> shortcode. (Den vil benytte hovedkontoen hvis brugerkonto ikke er aktiveret.)"
|
578 |
-
|
579 |
-
#: wp-to-twitter-manager.php:640
|
580 |
-
msgid "Disable Error Messages"
|
581 |
-
msgstr "Deaktiver fejlmeddelelser"
|
582 |
-
|
583 |
-
#: wp-to-twitter-manager.php:643
|
584 |
-
msgid "Disable global URL shortener error messages."
|
585 |
-
msgstr "Deaktiver globale URL shortener fejlmeddelelser"
|
586 |
-
|
587 |
-
#: wp-to-twitter-manager.php:647
|
588 |
-
msgid "Disable global Twitter API error messages."
|
589 |
-
msgstr "Deaktiver globale Twitter API fejlmeddelelser"
|
590 |
-
|
591 |
-
#: wp-to-twitter-manager.php:651
|
592 |
-
msgid "Disable notification to implement OAuth"
|
593 |
-
msgstr "Deaktiver note om at implementere OAuth"
|
594 |
-
|
595 |
-
#: wp-to-twitter-manager.php:655
|
596 |
-
msgid "Get Debugging Data for OAuth Connection"
|
597 |
-
msgstr "Få debug data fra OAuth forbindelse"
|
598 |
-
|
599 |
-
#: wp-to-twitter-manager.php:661
|
600 |
-
msgid "Save Advanced WP->Twitter Options"
|
601 |
-
msgstr "Gem Avancerede WP-> Twitter indstillinger"
|
602 |
-
|
603 |
-
#: wp-to-twitter-manager.php:675
|
604 |
-
msgid "Limit Updating Categories"
|
605 |
-
msgstr "Begræsning på opdatering af Kategorier"
|
606 |
-
|
607 |
-
#: wp-to-twitter-manager.php:679
|
608 |
-
msgid "Select which blog categories will be Tweeted. "
|
609 |
-
msgstr "Vælg hvilke blog kategorier der skal Tweetes. "
|
610 |
-
|
611 |
-
#: wp-to-twitter-manager.php:682
|
612 |
-
msgid "<em>Category limits are disabled.</em>"
|
613 |
-
msgstr "<em>Kategoribegrænsninger er fjernet.</em>"
|
614 |
-
|
615 |
-
#: wp-to-twitter-manager.php:696
|
616 |
-
msgid "Check Support"
|
617 |
-
msgstr "Tjek Support"
|
618 |
-
|
619 |
-
#: wp-to-twitter-manager.php:696
|
620 |
-
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."
|
621 |
-
msgstr "Tjek om din server supporterer <a href=\"http://www.joedolson.com/articles/wp-to-twitter/\">WP to Twitter's</a> forespørgelser til Twitter og URL shortening APIs. Testen her vil sende en status opdatering til Twitter og forkorte en URL ved at benytte de valgte metoder."
|
622 |
-
|
623 |
-
#: wp-to-twitter-oauth.php:105
|
624 |
-
#: wp-to-twitter-oauth.php:143
|
625 |
-
msgid "Connect to Twitter"
|
626 |
-
msgstr "Forbind til Twitter."
|
627 |
-
|
628 |
-
#: wp-to-twitter-oauth.php:108
|
629 |
-
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 at this time. Note that you will not, at any time, enter you Twitter username or password into WP to Twitter; they are not used in OAuth authentication."
|
630 |
-
msgstr "Processen for at sætte OAuth autorisation op for dit website er unødigt besværlig. Det er også svært at forstå. Men det er den eneste metode Twitter stiller til rådighed på nuværende tidspunkt. Vær opmærksom på at du ikke - på noget tidspunkt - indtaster dit Twitter brugernavn og password i WP to Twitter; De benyttes ikke i OAuth autorisation."
|
631 |
-
|
632 |
-
#: wp-to-twitter-oauth.php:111
|
633 |
-
msgid "1. Register this site as an application on "
|
634 |
-
msgstr "1. Registrér dette site som en application på"
|
635 |
-
|
636 |
-
#: wp-to-twitter-oauth.php:111
|
637 |
-
msgid "Twitter's application registration page"
|
638 |
-
msgstr "Twitter's application registreringsside"
|
639 |
-
|
640 |
-
#: wp-to-twitter-oauth.php:113
|
641 |
-
msgid "If you're not currently logged in, use the Twitter username and password which you want associated with this site"
|
642 |
-
msgstr "Hvis du ikke er logget ind, brug det Twitter brugernavn og password du vil have associeret med dette site"
|
643 |
-
|
644 |
-
#: wp-to-twitter-oauth.php:114
|
645 |
-
msgid "Your Application's Name will be what shows up after \"via\" in your twitter stream; previously, \"WP to Twitter.\" Your application name cannot include the word \"Twitter.\" I suggest using the name of your web site."
|
646 |
-
msgstr "Din Applications navn vil være det der vises efter \"via\" i din Twitter strøm; tidligere, \"WP to Twitter.\" Din application kan ikke indeholde ordet \"Twitter.\" Jeg foreslår at du benytter navnet på dit website."
|
647 |
-
|
648 |
-
#: wp-to-twitter-oauth.php:115
|
649 |
-
msgid "Your Application Description can be whatever you want."
|
650 |
-
msgstr "Din Application beskrivelse kan være lige hvad du ønsker."
|
651 |
-
|
652 |
-
#: wp-to-twitter-oauth.php:116
|
653 |
-
msgid "Application Type should be set on "
|
654 |
-
msgstr "Adgangstype skal sættes til"
|
655 |
-
|
656 |
-
#: wp-to-twitter-oauth.php:116
|
657 |
-
msgid "Browser"
|
658 |
-
msgstr "Browser"
|
659 |
-
|
660 |
-
#: wp-to-twitter-oauth.php:117
|
661 |
-
msgid "The Callback URL should be "
|
662 |
-
msgstr "Callback URL skal være"
|
663 |
-
|
664 |
-
#: wp-to-twitter-oauth.php:118
|
665 |
-
msgid "Default Access type must be set to "
|
666 |
-
msgstr "Default adgangstype skal sættes til"
|
667 |
-
|
668 |
-
#: wp-to-twitter-oauth.php:118
|
669 |
-
msgid "Read & Write"
|
670 |
-
msgstr "Læs & Skriv"
|
671 |
-
|
672 |
-
#: wp-to-twitter-oauth.php:118
|
673 |
-
msgid "(this is NOT the default)"
|
674 |
-
msgstr "(Dette er ikke default)"
|
675 |
-
|
676 |
-
#: wp-to-twitter-oauth.php:120
|
677 |
-
msgid "Once you have registered your site as an application, you will be provided with a consumer key and a consumer secret."
|
678 |
-
msgstr "Når du har registreret dit site som en application, vil du blive tildelt en consumer key og en consumer secret."
|
679 |
-
|
680 |
-
#: wp-to-twitter-oauth.php:121
|
681 |
-
msgid "2. Copy and paste your consumer key and consumer secret into the fields below"
|
682 |
-
msgstr "2. Kopiér og indtast din consumer key og consumer secret i feltet nedenfor"
|
683 |
-
|
684 |
-
#: wp-to-twitter-oauth.php:124
|
685 |
-
msgid "Twitter Consumer Key"
|
686 |
-
msgstr "Twitter Consumer Key"
|
687 |
-
|
688 |
-
#: wp-to-twitter-oauth.php:128
|
689 |
-
msgid "Twitter Consumer Secret"
|
690 |
-
msgstr "Twitter Consumer Secret"
|
691 |
-
|
692 |
-
#: wp-to-twitter-oauth.php:131
|
693 |
-
msgid "3. Copy and paste your Access Token and Access Token Secret into the fields below"
|
694 |
-
msgstr "3. Kopiér og indsæt din Access Token og Access Token Secret ind i feltet herunder"
|
695 |
-
|
696 |
-
#: wp-to-twitter-oauth.php:132
|
697 |
-
msgid "On the right hand side of your new application page at Twitter, click on 'My Access Token'."
|
698 |
-
msgstr "I højre side af din nye ansøgningsside på Twitter, klik på 'My Access Token'."
|
699 |
-
|
700 |
-
#: wp-to-twitter-oauth.php:134
|
701 |
-
msgid "Access Token"
|
702 |
-
msgstr "Access Token"
|
703 |
-
|
704 |
-
#: wp-to-twitter-oauth.php:138
|
705 |
-
msgid "Access Token Secret"
|
706 |
-
msgstr "Access Token Secret"
|
707 |
-
|
708 |
-
#: wp-to-twitter-oauth.php:153
|
709 |
-
msgid "Disconnect from Twitter"
|
710 |
-
msgstr "Deaktiver Twitter"
|
711 |
-
|
712 |
-
#: wp-to-twitter-oauth.php:160
|
713 |
-
msgid "Twitter Username "
|
714 |
-
msgstr "Twitter brugernavn"
|
715 |
-
|
716 |
-
#: wp-to-twitter-oauth.php:161
|
717 |
-
msgid "Consumer Key "
|
718 |
-
msgstr "Consumer Key "
|
719 |
-
|
720 |
-
#: wp-to-twitter-oauth.php:162
|
721 |
-
msgid "Consumer Secret "
|
722 |
-
msgstr "Consumer Secret "
|
723 |
-
|
724 |
-
#: wp-to-twitter-oauth.php:163
|
725 |
-
msgid "Access Token "
|
726 |
-
msgstr "Access Token "
|
727 |
-
|
728 |
-
#: wp-to-twitter-oauth.php:164
|
729 |
-
msgid "Access Token Secret "
|
730 |
-
msgstr "Access Token Secret "
|
731 |
-
|
732 |
-
#: wp-to-twitter-oauth.php:167
|
733 |
-
msgid "Disconnect Your WordPress and Twitter Account"
|
734 |
-
msgstr "Frakobl din Wordpress og Twitter konto"
|
735 |
-
|
736 |
-
#: wp-to-twitter.php:52
|
737 |
-
#, php-format
|
738 |
-
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."
|
739 |
-
msgstr "Twitter kræver nu autorisation af OAuth. Du skal opdatere dine <a href=\"%s\">indstillinger</a> for at kunne blive ved med at bruge WP to Twitter."
|
740 |
-
|
741 |
-
#: wp-to-twitter.php:108
|
742 |
-
msgid "200 OK: Success!"
|
743 |
-
msgstr "200 OK: Succes!"
|
744 |
-
|
745 |
-
#: wp-to-twitter.php:111
|
746 |
-
msgid "400 Bad Request: The request was invalid. This is the status code returned during rate limiting."
|
747 |
-
msgstr "400 Forkert forespørgsel: Forespørgslen var ikke korrekt. Det er status koden der returneres i løbet af hastighedsbegræsning."
|
748 |
-
|
749 |
-
#: wp-to-twitter.php:114
|
750 |
-
msgid "401 Unauthorized: Authentication credentials were missing or incorrect."
|
751 |
-
msgstr "401 Ikke godkent: Login detaljer manglede eller var ikke korrekte."
|
752 |
-
|
753 |
-
#: wp-to-twitter.php:117
|
754 |
-
msgid "403 Forbidden: The request is understood, but it has been refused. This code is used when requests are being denied due to status update character limits."
|
755 |
-
msgstr "403 Forbudt: Forespørgslen er forstået, men er blevet afvist. Denne kode benyttes når forespørgelser bliver afvist på grund af karakterbegrænsninger på status opdateringer."
|
756 |
-
|
757 |
-
#: wp-to-twitter.php:119
|
758 |
-
msgid "500 Internal Server Error: Something is broken at Twitter."
|
759 |
-
msgstr "500 Intern Serverfejl: Twitter melder fejl."
|
760 |
-
|
761 |
-
#: wp-to-twitter.php:122
|
762 |
-
msgid "503 Service Unavailable: The Twitter servers are up, but overloaded with requests Please try again later."
|
763 |
-
msgstr "503 Tjenesten er ikke tilgængelig: Twitters servere kører, men er overbelastede pga. mange forespørgelser. Prøv igen senere."
|
764 |
-
|
765 |
-
#: wp-to-twitter.php:125
|
766 |
-
msgid "502 Bad Gateway: Twitter is down or being upgraded."
|
767 |
-
msgstr "502 Forkert Gateway: Twitter er nede eller bliver opdateret"
|
768 |
-
|
769 |
-
#: wp-to-twitter.php:707
|
770 |
-
msgid "WP to Twitter"
|
771 |
-
msgstr "WP to Twitter"
|
772 |
-
|
773 |
-
#: wp-to-twitter.php:783
|
774 |
-
msgid "Don't Tweet this post."
|
775 |
-
msgstr "Tweet ikke dette indlæg."
|
776 |
-
|
777 |
-
#: wp-to-twitter.php:793
|
778 |
-
msgid "This URL is direct and has not been shortened: "
|
779 |
-
msgstr "Denne URL er direkte og er ikke blevet forkortet"
|
780 |
-
|
781 |
-
#: wp-to-twitter.php:849
|
782 |
-
msgid "WP to Twitter User Settings"
|
783 |
-
msgstr "WP to Twitter brugerindstillinger"
|
784 |
-
|
785 |
-
#: wp-to-twitter.php:853
|
786 |
-
msgid "Use My Twitter Username"
|
787 |
-
msgstr "Brug mit Twitter brugernavn"
|
788 |
-
|
789 |
-
#: wp-to-twitter.php:854
|
790 |
-
msgid "Tweet my posts with an @ reference to my username."
|
791 |
-
msgstr "Tweet mit indlæg med en @ reference til mit brugernavn."
|
792 |
-
|
793 |
-
#: wp-to-twitter.php:855
|
794 |
-
msgid "Tweet my posts with an @ reference to both my username and to the main site username."
|
795 |
-
msgstr "Tweet mit indlæg med en @ reference til både mit brugernavn og til hovedsitets brugernavn."
|
796 |
-
|
797 |
-
#: wp-to-twitter.php:860
|
798 |
-
msgid "Enter your own Twitter username."
|
799 |
-
msgstr "Indtast dit Twitter brugernavn."
|
800 |
-
|
801 |
-
#: wp-to-twitter.php:896
|
802 |
-
msgid "Check the categories you want to tweet:"
|
803 |
-
msgstr "Tjeck de kategorier du vil tweete:"
|
804 |
-
|
805 |
-
#: wp-to-twitter.php:913
|
806 |
-
msgid "Set Categories"
|
807 |
-
msgstr "Sæt Kategorier"
|
808 |
-
|
809 |
-
#: wp-to-twitter.php:987
|
810 |
-
msgid "<p>Couldn't locate the settings page.</p>"
|
811 |
-
msgstr "<p>Kunne ikke finde siden med indstillinger.</p>"
|
812 |
-
|
813 |
-
#: wp-to-twitter.php:992
|
814 |
-
msgid "Settings"
|
815 |
-
msgstr "Indstillinger"
|
816 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wp-to-twitter-de_DE.mo
DELETED
Binary file
|
wp-to-twitter-de_DE.po
DELETED
@@ -1,578 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: WP to Twitter\n"
|
4 |
-
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-to-twitter\n"
|
5 |
-
"POT-Creation-Date: 2009-12-22 20:09+0000\n"
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Joseph Dolson <design@joedolson.com>\n"
|
8 |
-
"Language-Team: Thomas Boehm <t.boehm@mac.com>\n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Poedit-Language: German\n"
|
13 |
-
"X-Poedit-Country: GERMANY\n"
|
14 |
-
|
15 |
-
#: functions.php:127
|
16 |
-
msgid "Twitter Password Saved"
|
17 |
-
msgstr "Twitter Passwort gespeichert"
|
18 |
-
|
19 |
-
#: functions.php:129
|
20 |
-
msgid "Twitter Password Not Saved"
|
21 |
-
msgstr "Twitter Passwort nicht gespeichert"
|
22 |
-
|
23 |
-
#: functions.php:132
|
24 |
-
msgid "Bit.ly API Saved"
|
25 |
-
msgstr "Bit.ly API Key gespeichert."
|
26 |
-
|
27 |
-
#: functions.php:134
|
28 |
-
msgid "Bit.ly API Not Saved"
|
29 |
-
msgstr "Bit.ly API Key nicht gespeichert."
|
30 |
-
|
31 |
-
#: functions.php:140
|
32 |
-
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."
|
33 |
-
msgstr "[<a href='options-general.php?page=wp-to-twitter/wp-to-twitter.php'>Hide</a>] Falls Du Probleme hast, kopiere bitte deine Einstellungen in die Supportanfrage."
|
34 |
-
|
35 |
-
#: wp-to-twitter-manager.php:63
|
36 |
-
msgid "Set your Twitter login information and URL shortener API information to use this plugin!"
|
37 |
-
msgstr "Twitter Login Informationen und URL Kürzer API Informationen eingeben um das Plugin zu verwenden!"
|
38 |
-
|
39 |
-
#: wp-to-twitter-manager.php:69
|
40 |
-
msgid "Please add your Twitter password. "
|
41 |
-
msgstr "Bitte das Twitter Passwort eingeben."
|
42 |
-
|
43 |
-
#: wp-to-twitter-manager.php:75
|
44 |
-
msgid "WP to Twitter Errors Cleared"
|
45 |
-
msgstr "WP to Twitter Fehlermeldung gelöscht."
|
46 |
-
|
47 |
-
#: wp-to-twitter-manager.php:82
|
48 |
-
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! "
|
49 |
-
msgstr "Sorry! Ich konnte den Twitter Server nicht erreichten, um einen Tweet über deinen neuen Blog Eintrag zu veröffentlichen. Der Tweet wurde in einem Feld am Ende des Eintrags gespeichert, damit du ihn manuell veröffentlichen kannst!"
|
50 |
-
|
51 |
-
#: wp-to-twitter-manager.php:84
|
52 |
-
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. "
|
53 |
-
msgstr "Sorry! Ich konnte den Twitter Server nicht erreichten, um einen Tweet über deinen neuen <strong>neuen Link</strong> zu veröffentlichen! Ich befürchte, du musst ihn manuell veröffentlichen."
|
54 |
-
|
55 |
-
#: wp-to-twitter-manager.php:149
|
56 |
-
msgid "You must add your Bit.ly login and API key in order to shorten URLs with Bit.ly."
|
57 |
-
msgstr "Du musst deinen Bit.ly Login und API Key eingeben um die URLs mit Bit.ly zu kürzen."
|
58 |
-
|
59 |
-
#: wp-to-twitter-manager.php:158
|
60 |
-
msgid "WP to Twitter Options Updated"
|
61 |
-
msgstr "WP to Twitter Einstellungen Aktualisiert"
|
62 |
-
|
63 |
-
#: wp-to-twitter-manager.php:168
|
64 |
-
msgid "Twitter login and password updated. "
|
65 |
-
msgstr "Twitter Login und Passwort aktualisiert."
|
66 |
-
|
67 |
-
#: wp-to-twitter-manager.php:170
|
68 |
-
msgid "You need to provide your twitter login and password! "
|
69 |
-
msgstr "Du musst deinen Twitter Login und dein Passwort eingeben!"
|
70 |
-
|
71 |
-
#: wp-to-twitter-manager.php:177
|
72 |
-
msgid "Cligs API Key Updated"
|
73 |
-
msgstr "Cli.gs API Key aktualisiert."
|
74 |
-
|
75 |
-
#: wp-to-twitter-manager.php:180
|
76 |
-
msgid "Cli.gs API Key deleted. Cli.gs created by WP to Twitter will no longer be associated with your account. "
|
77 |
-
msgstr "Cli.gs API Key gelöscht. Cli.gs, welche mit WP to Twitter erstellt werden, werden nicht mehr in deinem Account erstellt."
|
78 |
-
|
79 |
-
#: wp-to-twitter-manager.php:182
|
80 |
-
msgid "Cli.gs API Key not added - <a href='http://cli.gs/user/api/'>get one here</a>! "
|
81 |
-
msgstr "Cli.gs API Key nicht hinzugefügt - <a href='http://cli.gs/user/api/'>HIER</a> klicken zum Anlegen!"
|
82 |
-
|
83 |
-
#: wp-to-twitter-manager.php:188
|
84 |
-
msgid "Bit.ly API Key Updated."
|
85 |
-
msgstr "Bit.ly API Key aktualisiert."
|
86 |
-
|
87 |
-
#: wp-to-twitter-manager.php:191
|
88 |
-
msgid "Bit.ly API Key deleted. You cannot use the Bit.ly API without an API key. "
|
89 |
-
msgstr "Bit.ly API Key gelöscht. Du kannst die Bit.ly API nicht ohne API Key verwenden."
|
90 |
-
|
91 |
-
#: wp-to-twitter-manager.php:193
|
92 |
-
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."
|
93 |
-
msgstr "Bit.ly API Key nicht hinzugefügt - <a href='http://bit.ly/account/'>HIER anfordern</a>! Ein API Key wird für den Bit.ly Dienst benötigt."
|
94 |
-
|
95 |
-
#: wp-to-twitter-manager.php:197
|
96 |
-
msgid " Bit.ly User Login Updated."
|
97 |
-
msgstr "Bit.ly Benutzer Login aktualisiert."
|
98 |
-
|
99 |
-
#: wp-to-twitter-manager.php:200
|
100 |
-
msgid "Bit.ly User Login deleted. You cannot use the Bit.ly API without providing your username. "
|
101 |
-
msgstr "Bit.ly Benutzer Login gelöscht. Du kannst die Bit.ly API nicht ohne Benutzernamen verwenden."
|
102 |
-
|
103 |
-
#: wp-to-twitter-manager.php:202
|
104 |
-
msgid "Bit.ly Login not added - <a href='http://bit.ly/account/'>get one here</a>! "
|
105 |
-
msgstr "Bit.ly Login nicht hinzugefügt - <a href='http://bit.ly/account/'>HIER</a> klicken zum Anlegen!"
|
106 |
-
|
107 |
-
#: wp-to-twitter-manager.php:236
|
108 |
-
msgid "<li>Successfully contacted the Cli.gs API via Snoopy, but the URL creation failed.</li>"
|
109 |
-
msgstr "<li>Cli.gs API via Snoopy erfolgreich kontaktiert. Die URL Erstellung schlug fehl.</li>"
|
110 |
-
|
111 |
-
#: wp-to-twitter-manager.php:238
|
112 |
-
msgid "<li>Successfully contacted the Cli.gs API via Snoopy, but a Cli.gs server error prevented the URL from being shrotened.</li>"
|
113 |
-
msgstr "<li>Cli.gs API via Snoopy erfolgreich kontaktiert. Ein Cli.gs Server Error verhinderte das URL Kürzen.</li>"
|
114 |
-
|
115 |
-
#: wp-to-twitter-manager.php:240
|
116 |
-
msgid "<li>Successfully contacted the Cli.gs API via Snoopy and created a shortened link.</li>"
|
117 |
-
msgstr "<li>Cli.gs API via Snoopy erfolgreich kontaktiert und Kurz URL erstellt.</li>"
|
118 |
-
|
119 |
-
#: wp-to-twitter-manager.php:249
|
120 |
-
#: wp-to-twitter-manager.php:274
|
121 |
-
msgid "<li>Successfully contacted the Bit.ly API via Snoopy.</li>"
|
122 |
-
msgstr "<li>Bit.ly API erfolgreich via Snoopy kontaktiert.</li>"
|
123 |
-
|
124 |
-
#: wp-to-twitter-manager.php:251
|
125 |
-
#: wp-to-twitter-manager.php:276
|
126 |
-
msgid "<li>Failed to contact the Bit.ly API via Snoopy.</li>"
|
127 |
-
msgstr "<li>Bit.ly API Verbindung via Snoopy fehlgeschlagen.</li>"
|
128 |
-
|
129 |
-
#: wp-to-twitter-manager.php:254
|
130 |
-
msgid "<li>Cannot check the Bit.ly API without a valid API key.</li>"
|
131 |
-
msgstr "<li>Die Bit.ly API kann nicht ohne gültigen API key getestet werden.</li>"
|
132 |
-
|
133 |
-
#: wp-to-twitter-manager.php:258
|
134 |
-
msgid "<li>Successfully contacted the Twitter API via Snoopy.</li>"
|
135 |
-
msgstr "<li>Twitter API via Snoopy erfolgreich kontaktiert.</li>"
|
136 |
-
|
137 |
-
#: wp-to-twitter-manager.php:260
|
138 |
-
msgid "<li>Failed to contact the Twitter API via Snoopy.</li>"
|
139 |
-
msgstr "<li>Twitter API Verbindung via Snoopy fehlgeschlagen.</li>"
|
140 |
-
|
141 |
-
#: wp-to-twitter-manager.php:266
|
142 |
-
msgid "<li>Successfully contacted the Twitter API via cURL.</li>"
|
143 |
-
msgstr "<li>Twitter API erfolgreich via cURL kontaktiert.</li>"
|
144 |
-
|
145 |
-
#: wp-to-twitter-manager.php:268
|
146 |
-
msgid "<li>Failed to contact the Twitter API via cURL.</li>"
|
147 |
-
msgstr "<li>Twitter API Verbindung via cURL fehlgeschlagen.</li>"
|
148 |
-
|
149 |
-
#: wp-to-twitter-manager.php:280
|
150 |
-
msgid "<li>Successfully contacted the Cli.gs API via Snoopy.</li>"
|
151 |
-
msgstr "<li>Cli.gs API via Snoopy erfolgreich kontaktiert.</li>"
|
152 |
-
|
153 |
-
#: wp-to-twitter-manager.php:283
|
154 |
-
msgid "<li>Failed to contact the Cli.gs API via Snoopy.</li>"
|
155 |
-
msgstr "<li>Cli.gs API Verbindung via Snoopy fehlgeschlagen.</li>"
|
156 |
-
|
157 |
-
#: wp-to-twitter-manager.php:288
|
158 |
-
msgid "<li><strong>Your server should run WP to Twitter successfully.</strong></li>"
|
159 |
-
msgstr "<li><strong>Dein Server sollte WP to Twitter problemlos ausführen.</strong></li>"
|
160 |
-
|
161 |
-
#: wp-to-twitter-manager.php:293
|
162 |
-
msgid "<li>Your server does not support <code>fputs</code>.</li>"
|
163 |
-
msgstr "<li>Dein Server unterstützt nicht <code>fputs</code>.</li>"
|
164 |
-
|
165 |
-
#: wp-to-twitter-manager.php:297
|
166 |
-
msgid "<li>Your server does not support <code>file_get_contents</code> or <code>cURL</code> functions.</li>"
|
167 |
-
msgstr "<li>Dein Server unterstützt nicht <code>file_get_contents</code> oder <code>cURL</code> Funktionen.</li>"
|
168 |
-
|
169 |
-
#: wp-to-twitter-manager.php:301
|
170 |
-
msgid "<li>Your server does not support <code>Snoopy</code>.</li>"
|
171 |
-
msgstr "<li>Dein Server unterstützt nicht <code>Snoopy</code>.</li>"
|
172 |
-
|
173 |
-
#: wp-to-twitter-manager.php:304
|
174 |
-
msgid "<li><strong>Your server does not appear to support the required PHP functions and classes for WP to Twitter to function.</strong> You can try it anyway - these tests aren't perfect - but no guarantees.</li>"
|
175 |
-
msgstr "<li><strong>Es scheint als würde dein Server NICHT die benötigten PHP Funktion und Klassen für WP to Twitter bereitstellen.</strong> Du kannst es trotzdem versuchen - da der Test nicht perfekt ist - aber ohne Garantie.</li>"
|
176 |
-
|
177 |
-
#: wp-to-twitter-manager.php:313
|
178 |
-
msgid "This plugin may not fully work in your server environment. The plugin failed to contact both a URL shortener API and the Twitter service API."
|
179 |
-
msgstr "Dieses Plugin funktioniert vielleicht nicht in deiner Serverumgebung. Das Plugin konnte weder die URL Kürzer API noch die Twitter API erreichen."
|
180 |
-
|
181 |
-
#: wp-to-twitter-manager.php:328
|
182 |
-
msgid "WP to Twitter Options"
|
183 |
-
msgstr "WP to Twitter Einstellungen"
|
184 |
-
|
185 |
-
#: wp-to-twitter-manager.php:332
|
186 |
-
#: wp-to-twitter.php:811
|
187 |
-
msgid "Get Support"
|
188 |
-
msgstr "Hilfe anfordern"
|
189 |
-
|
190 |
-
#: wp-to-twitter-manager.php:333
|
191 |
-
msgid "Export Settings"
|
192 |
-
msgstr "Export Einstellungen"
|
193 |
-
|
194 |
-
#: wp-to-twitter-manager.php:347
|
195 |
-
msgid "For any post update field, you can use the codes <code>#title#</code> for the title of your blog post, <code>#blog#</code> for the title of your blog, <code>#post#</code> for a short excerpt of the post content, <code>#category#</code> for the first selected category for the post, <code>#date#</code> for the post date, or <code>#url#</code> for the post URL (shortened or not, depending on your preferences.) 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>"
|
196 |
-
msgstr "Für jede Aktualisierung kannst du die Codes <code>#title#</code> für den Name des Blogeintrags, <code>#blog#</code> für den Blogname, <code>#post#</code> für einen Auszug des Blogeintrags, <code>#category#</code> für die erste Kategorie des Blogeintrags, <code>#date#</code> für das Veröffentlichungsdatum oder <code>#url#</code> für die URL verwenden (gekürzt oder nicht, je nach deinen Einstellungen)! Man kann eigene Codes im WordPress Benutzerfeld anlegen. Benutze doppelt eckige Klammern um den Namen deines Benutzerfeld um den Wert des Benutzerfeld in deinem Tweet zu verwenden. Beispiel: <code>[[Benutzerfeld]]</code>"
|
197 |
-
|
198 |
-
#: wp-to-twitter-manager.php:353
|
199 |
-
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>"
|
200 |
-
msgstr "<p>Einer oder mehrere deiner letzten Einträge konnte nicht über Twitter veröffentlicht werden. Die Tweets wurden am Ende der Einträge gespeichert, damit du sie manuell veröffentlichen kannst.</p>"
|
201 |
-
|
202 |
-
#: wp-to-twitter-manager.php:356
|
203 |
-
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://blog.cli.gs\">Cli.gs Blog</a>] [<a href=\"http://blog.bit.ly\">Bit.ly Blog</a>]</p>"
|
204 |
-
msgstr "<p>Anfrage an den URL Kürzer fehlgeschlagen! Wir konnten die URL nicht kürzen und haben deshalb die normale URL in den Tweet eingefügt. Überprüfe beim Anbieter ob Probleme bekannt sind. [<a href=\"http://blog.cli.gs\">Cli.gs Blog</a>] [<a href=\"http://blog.bit.ly\">Bit.ly Blog</a>]</p>"
|
205 |
-
|
206 |
-
#: wp-to-twitter-manager.php:363
|
207 |
-
msgid "Clear 'WP to Twitter' Error Messages"
|
208 |
-
msgstr "'WP to Twitter' Fehlermeldung löschen"
|
209 |
-
|
210 |
-
#: wp-to-twitter-manager.php:371
|
211 |
-
msgid "Set what should be in a Tweet"
|
212 |
-
msgstr "Was soll in den Tweet"
|
213 |
-
|
214 |
-
#: wp-to-twitter-manager.php:374
|
215 |
-
msgid "Update when a post is published"
|
216 |
-
msgstr "Aktualisieren wenn ein neuer Eintrag veröffentlicht wird"
|
217 |
-
|
218 |
-
#: wp-to-twitter-manager.php:374
|
219 |
-
msgid "Text for new post updates:"
|
220 |
-
msgstr "Text für neuen Eintrag: "
|
221 |
-
|
222 |
-
#: wp-to-twitter-manager.php:379
|
223 |
-
msgid "Update when a post is edited"
|
224 |
-
msgstr "Aktualisieren wenn ein neuer Eintrag aktualisiert wird"
|
225 |
-
|
226 |
-
#: wp-to-twitter-manager.php:379
|
227 |
-
msgid "Text for editing updates:"
|
228 |
-
msgstr "Text für aktualisierte Einträge:"
|
229 |
-
|
230 |
-
#: wp-to-twitter-manager.php:383
|
231 |
-
msgid "Update Twitter when new Wordpress Pages are published"
|
232 |
-
msgstr "Aktualisiere Twitter wenn eine neue WordPress Seite veröffentlicht wird"
|
233 |
-
|
234 |
-
#: wp-to-twitter-manager.php:383
|
235 |
-
msgid "Text for new page updates:"
|
236 |
-
msgstr "Text für neue Seite: "
|
237 |
-
|
238 |
-
#: wp-to-twitter-manager.php:387
|
239 |
-
msgid "Update Twitter when WordPress Pages are edited"
|
240 |
-
msgstr "Aktualisiere Twitter wenn eine WordPress Seite aktualisiert wird"
|
241 |
-
|
242 |
-
#: wp-to-twitter-manager.php:387
|
243 |
-
msgid "Text for page edit updates:"
|
244 |
-
msgstr "Text für aktualisierte Seiten:"
|
245 |
-
|
246 |
-
#: wp-to-twitter-manager.php:391
|
247 |
-
msgid "Add tags as hashtags on Tweets"
|
248 |
-
msgstr "Verwende Tags als Hashtags in Tweets"
|
249 |
-
|
250 |
-
#: wp-to-twitter-manager.php:391
|
251 |
-
msgid "Spaces replaced with:"
|
252 |
-
msgstr "Leerzeichen ersetzen durch:"
|
253 |
-
|
254 |
-
#: wp-to-twitter-manager.php:392
|
255 |
-
msgid "Default replacement is an underscore (<code>_</code>). Use <code>[ ]</code> to remove spaces entirely."
|
256 |
-
msgstr "Standardmäßig wird es mit einem Unterstrich ersetzt (<code>_</code>). Verwende <code>[ ]</code> um das Leerzeichen komplett zu entfernen."
|
257 |
-
|
258 |
-
#: wp-to-twitter-manager.php:394
|
259 |
-
msgid "Maximum number of tags to include:"
|
260 |
-
msgstr "Maximale Anzahl von Tags pro Tweet:"
|
261 |
-
|
262 |
-
#: wp-to-twitter-manager.php:395
|
263 |
-
msgid "Maximum length in characters for included tags:"
|
264 |
-
msgstr "Maximale Länge von Zeichen inklusive Tags:"
|
265 |
-
|
266 |
-
#: wp-to-twitter-manager.php:396
|
267 |
-
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."
|
268 |
-
msgstr "Diese Option erlaubt Dir die Länge und Anzahl von WordPress Tags, die als Twitter Hashtags erscheinen festzulegen. Mit <code>0</code> oder ohne Wert werden alle Tags übernommen."
|
269 |
-
|
270 |
-
#: wp-to-twitter-manager.php:400
|
271 |
-
msgid "Update Twitter when you post a Blogroll link"
|
272 |
-
msgstr "Aktualisiere Twitter wenn du einen neuen Blogroll Link veröffentlichst."
|
273 |
-
|
274 |
-
#: wp-to-twitter-manager.php:401
|
275 |
-
msgid "Text for new link updates:"
|
276 |
-
msgstr "Text für neue Link Aktualisierung: "
|
277 |
-
|
278 |
-
#: wp-to-twitter-manager.php:401
|
279 |
-
msgid "Available shortcodes: <code>#url#</code>, <code>#title#</code>, and <code>#description#</code>."
|
280 |
-
msgstr "Vorhandene Codes: <code>#url#</code>, <code>#title#</code>, and <code>#description#</code>."
|
281 |
-
|
282 |
-
#: wp-to-twitter-manager.php:404
|
283 |
-
msgid "Length of post excerpt (in characters):"
|
284 |
-
msgstr "Länge des Blogeintrag Auszugs (in Zeichen):"
|
285 |
-
|
286 |
-
#: wp-to-twitter-manager.php:404
|
287 |
-
msgid "By default, extracted from the post itself. If you use the 'Excerpt' field, that will be used instead."
|
288 |
-
msgstr "Standardmäßig, Auszug aus dem Blogeintrag selbst. Wenn du das 'Auszug' Feld verwendest, wird dieser Text verwendet."
|
289 |
-
|
290 |
-
#: wp-to-twitter-manager.php:407
|
291 |
-
msgid "WP to Twitter Date Formatting:"
|
292 |
-
msgstr "WP to Twitter Datums Format:"
|
293 |
-
|
294 |
-
#: wp-to-twitter-manager.php:407
|
295 |
-
msgid "Default is from your general settings. <a href='http://codex.wordpress.org/Formatting_Date_and_Time'>Date Formatting Documentation</a>."
|
296 |
-
msgstr "Der Standard ist aus den Allgemeinen Einstellungne. <a href='http://codex.wordpress.org/Formatting_Date_and_Time'>Datumsformat Dokumentation</a>."
|
297 |
-
|
298 |
-
#: wp-to-twitter-manager.php:411
|
299 |
-
msgid "Custom text before Tweets:"
|
300 |
-
msgstr "Eigener Text vor den Tweets:"
|
301 |
-
|
302 |
-
#: wp-to-twitter-manager.php:412
|
303 |
-
msgid "Custom text after Tweets:"
|
304 |
-
msgstr "Eigener Text nach den Tweets:"
|
305 |
-
|
306 |
-
#: wp-to-twitter-manager.php:415
|
307 |
-
msgid "Custom field for an alternate URL to be shortened and Tweeted:"
|
308 |
-
msgstr "Benutzerfeld für eine alternative URL zum Verkürzen und Tweeten:"
|
309 |
-
|
310 |
-
#: wp-to-twitter-manager.php:416
|
311 |
-
msgid "You can use a custom field to send Cli.gs and Twitter an alternate URL from the permalink provided by WordPress. The value is the name of the custom field you're using to add an external URL."
|
312 |
-
msgstr "Du kannst das Benutzerfeld verwenden um Cli.gs und Twitter eine andere URL als den Permalink von WordPress zu verwenden. Der Wert ist der Name des Benutzerfeldes, welches du für eine externe URL verwenden kannst."
|
313 |
-
|
314 |
-
#: wp-to-twitter-manager.php:420
|
315 |
-
msgid "Special Cases when WordPress should send a Tweet"
|
316 |
-
msgstr "Spezialfälle wenn WordPress einen Tweet senden soll"
|
317 |
-
|
318 |
-
#: wp-to-twitter-manager.php:423
|
319 |
-
msgid "Set default Tweet status to 'No.'"
|
320 |
-
msgstr "Setze Tweet veröffentlichen auf 'Nein' als Standard."
|
321 |
-
|
322 |
-
#: wp-to-twitter-manager.php:424
|
323 |
-
msgid "Twitter updates can be set on a post by post basis. By default, posts WILL be posted to Twitter. Check this to change the default to NO."
|
324 |
-
msgstr "Twitter Aktualisierungen können auch für jeden Eintrag einzeln freigeschaltet werden. Standardmäßig wird JEDER Eintrag auf Twitter veröffentlich. Hier kann diese Funktion deaktiviert werden."
|
325 |
-
|
326 |
-
#: wp-to-twitter-manager.php:428
|
327 |
-
msgid "Send Twitter Updates on remote publication (Post by Email or XMLRPC Client)"
|
328 |
-
msgstr "Twitter Aktualisierungen bei Remote Veröffentlichungen (Einträge per Email oder XMLRPC Client)"
|
329 |
-
|
330 |
-
#: wp-to-twitter-manager.php:432
|
331 |
-
msgid "Update Twitter when a post is published using QuickPress"
|
332 |
-
msgstr "Aktualisiere Twitter wenn ein Eintrag über QuickPress veröffentlicht wird"
|
333 |
-
|
334 |
-
#: wp-to-twitter-manager.php:436
|
335 |
-
msgid "Special Fields"
|
336 |
-
msgstr "Spezial Felder"
|
337 |
-
|
338 |
-
#: wp-to-twitter-manager.php:439
|
339 |
-
msgid "Use Google Analytics with WP-to-Twitter"
|
340 |
-
msgstr "Verwende Google Analytics mit WP-to-Twitter"
|
341 |
-
|
342 |
-
#: wp-to-twitter-manager.php:440
|
343 |
-
msgid "Campaign identifier for Google Analytics:"
|
344 |
-
msgstr "Campaign Identifier für Google Analytics:"
|
345 |
-
|
346 |
-
#: wp-to-twitter-manager.php:441
|
347 |
-
msgid "You can track the response from Twitter using Google Analytics by defining a campaign identifier here."
|
348 |
-
msgstr "Du kannst die Antworten von Twitter mit Google Analytics aufzeichnen, wenn du einen Campaign Identifier angibst."
|
349 |
-
|
350 |
-
#: wp-to-twitter-manager.php:446
|
351 |
-
msgid "Authors have individual Twitter accounts"
|
352 |
-
msgstr "Autoren haben individuelle Twitter Accounts"
|
353 |
-
|
354 |
-
#: wp-to-twitter-manager.php:446
|
355 |
-
msgid "Each author can set their own Twitter username and password in their user profile. Their posts will be sent to their own Twitter accounts."
|
356 |
-
msgstr "Jeder Autor kann seinen Twitter Benutzernamen und Passwort in seinem Profil festlegen. Die Einträge werden unter dem jeweiligen Twitter Account veröffentlicht."
|
357 |
-
|
358 |
-
#: wp-to-twitter-manager.php:450
|
359 |
-
msgid "Set your preferred URL Shortener"
|
360 |
-
msgstr "Wähle deinen bevorzugten URL Kürzer"
|
361 |
-
|
362 |
-
#: wp-to-twitter-manager.php:453
|
363 |
-
msgid "Use <strong>Cli.gs</strong> for my URL shortener."
|
364 |
-
msgstr "Verwende <strong>Cli.gs</strong> als URL Kürzer."
|
365 |
-
|
366 |
-
#: wp-to-twitter-manager.php:454
|
367 |
-
msgid "Use <strong>Bit.ly</strong> for my URL shortener."
|
368 |
-
msgstr "Verwende <strong>Bit.ly</strong> als URL Kürzer."
|
369 |
-
|
370 |
-
#: wp-to-twitter-manager.php:455
|
371 |
-
msgid "Use <strong>WordPress</strong> as a URL shortener."
|
372 |
-
msgstr "Verwende <strong>WordPress</strong> als URL Kürzer."
|
373 |
-
|
374 |
-
#: wp-to-twitter-manager.php:456
|
375 |
-
msgid "Don't shorten URLs."
|
376 |
-
msgstr "URLs nicht kürzen."
|
377 |
-
|
378 |
-
#: wp-to-twitter-manager.php:457
|
379 |
-
msgid "Using WordPress as a URL shortener will send URLs to Twitter in the default URL format for WordPress: <code>http://domain.com/subdir/?p=123</code>. Google Analytics is not available when using WordPress shortened URLs."
|
380 |
-
msgstr "Bei Verwendung von WordPress als URL Kürzer werden die URLs im WordPress URL Format verwendet: <code>http://domain.com/subdir/?p=123</code>. Google Analytics steht nicht zur Verfügung, wenn der WordPress URL Kürzer verwendet wird."
|
381 |
-
|
382 |
-
#: wp-to-twitter-manager.php:462
|
383 |
-
msgid "Save WP->Twitter Options"
|
384 |
-
msgstr "WP->Twitter Einstellungen sichern"
|
385 |
-
|
386 |
-
#: wp-to-twitter-manager.php:468
|
387 |
-
msgid "Your Twitter account details"
|
388 |
-
msgstr "Deine Twitter Account Informationen"
|
389 |
-
|
390 |
-
#: wp-to-twitter-manager.php:475
|
391 |
-
msgid "Your Twitter username:"
|
392 |
-
msgstr "Dein Twitter Benutzername:"
|
393 |
-
|
394 |
-
#: wp-to-twitter-manager.php:479
|
395 |
-
msgid "Your Twitter password:"
|
396 |
-
msgstr "Dein Twitter Passwort:"
|
397 |
-
|
398 |
-
#: wp-to-twitter-manager.php:479
|
399 |
-
msgid "(<em>Saved</em>)"
|
400 |
-
msgstr "(<em>Gespeichert</em>)"
|
401 |
-
|
402 |
-
#: wp-to-twitter-manager.php:483
|
403 |
-
msgid "Save Twitter Login Info"
|
404 |
-
msgstr "Twitter Login speichern"
|
405 |
-
|
406 |
-
#: wp-to-twitter-manager.php:483
|
407 |
-
msgid "» <small>Don't have a Twitter account? <a href='http://www.twitter.com'>Get one for free here</a>"
|
408 |
-
msgstr "» <small>Du hast keinen Twitter Account? <a href='http://www.twitter.com'>HIER</a> klicken zum Anlegen!"
|
409 |
-
|
410 |
-
#: wp-to-twitter-manager.php:487
|
411 |
-
msgid "Your Cli.gs account details"
|
412 |
-
msgstr "Deine Cli.gs Account Informationen"
|
413 |
-
|
414 |
-
#: wp-to-twitter-manager.php:494
|
415 |
-
msgid "Your Cli.gs <abbr title='application programming interface'>API</abbr> Key:"
|
416 |
-
msgstr "Dein Cli.gs <abbr title='application programming interface'>API</abbr> Key:"
|
417 |
-
|
418 |
-
#: wp-to-twitter-manager.php:500
|
419 |
-
msgid "Don't have a Cli.gs account or Cligs API key? <a href='http://cli.gs/user/api/'>Get one free here</a>!<br />You'll need an API key in order to associate the Cligs you create with your Cligs account."
|
420 |
-
msgstr "Keinen Cli.gs Account oder Cligs API Key? <a href='http://cli.gs/user/api/'>HIER</a> klicken zum Anlegen!!<br />Du benötigst einen API Key um cligs einem Cli.gs Account zuzuordnen."
|
421 |
-
|
422 |
-
#: wp-to-twitter-manager.php:505
|
423 |
-
msgid "Your Bit.ly account details"
|
424 |
-
msgstr "Deine Bit.ly Account Informationen"
|
425 |
-
|
426 |
-
#: wp-to-twitter-manager.php:510
|
427 |
-
msgid "Your Bit.ly username:"
|
428 |
-
msgstr "Dein Bit.ly Benutzername:"
|
429 |
-
|
430 |
-
#: wp-to-twitter-manager.php:514
|
431 |
-
msgid "Your Bit.ly <abbr title='application programming interface'>API</abbr> Key:"
|
432 |
-
msgstr "Dein Bit.ly <abbr title='application programming interface'>API</abbr> Key:"
|
433 |
-
|
434 |
-
#: wp-to-twitter-manager.php:521
|
435 |
-
msgid "Save Bit.ly API Key"
|
436 |
-
msgstr "Bit.ly API Key gespeichert"
|
437 |
-
|
438 |
-
#: wp-to-twitter-manager.php:521
|
439 |
-
msgid "Clear Bit.ly API Key"
|
440 |
-
msgstr "Bit.ly API Key entfernen"
|
441 |
-
|
442 |
-
#: wp-to-twitter-manager.php:521
|
443 |
-
msgid "A Bit.ly API key and username is required to shorten URLs via the Bit.ly API and WP to Twitter."
|
444 |
-
msgstr "Ein Bit.ly API Key und Benutzernamen werden für den URL Kürzer von der Bit.ly API und WP to Twitter benötigt."
|
445 |
-
|
446 |
-
#: wp-to-twitter-manager.php:530
|
447 |
-
msgid "Check Support"
|
448 |
-
msgstr "Hilfe Ansehen"
|
449 |
-
|
450 |
-
#: wp-to-twitter-manager.php:530
|
451 |
-
msgid "Check whether your server supports WP to Twitter's queries to the Twitter and URL shortening APIs."
|
452 |
-
msgstr "Überprüfe ob dein Server WP to Twitter Anfrage an die Twitter und die URL Kürzer API unterstützt."
|
453 |
-
|
454 |
-
#: wp-to-twitter-manager.php:538
|
455 |
-
msgid "Need help?"
|
456 |
-
msgstr "Du benötigst Hilfe?"
|
457 |
-
|
458 |
-
#: wp-to-twitter-manager.php:539
|
459 |
-
msgid "Visit the <a href='http://www.joedolson.com/articles/wp-to-twitter/'>WP to Twitter plugin page</a>."
|
460 |
-
msgstr "Besuche die <a href='http://www.joedolson.com/articles/wp-to-twitter/'>WP to Twitter Plugin Seite</a>."
|
461 |
-
|
462 |
-
#. #-#-#-#-# plugin.pot (PACKAGE VERSION) #-#-#-#-#
|
463 |
-
#. Plugin Name of an extension
|
464 |
-
#: wp-to-twitter.php:761
|
465 |
-
msgid "WP to Twitter"
|
466 |
-
msgstr "WP to Twitter"
|
467 |
-
|
468 |
-
#: wp-to-twitter.php:806
|
469 |
-
msgid "Twitter Post"
|
470 |
-
msgstr "Twitter Nachricht"
|
471 |
-
|
472 |
-
#: wp-to-twitter.php:811
|
473 |
-
msgid " characters.<br />Twitter posts are a maximum of 140 characters; if your Cli.gs URL is appended to the end of your document, you have 119 characters available. You can use <code>#url#</code>, <code>#title#</code>, <code>#post#</code>, <code>#category#</code>, <code>#date#</code>, or <code>#blog#</code> to insert the shortened URL, post title, the first category selected, the post date, or a post excerpt or blog name into the Tweet."
|
474 |
-
msgstr " Zeichen.<br />Twitter Nachrichten können maximal 140 Zeichen haben; wenn du eine Cli.gs URL in deinen Tweets verwendest, hast du noch 119 Zeichen zur Verfügung. Du kannst <code>#url#</code>, <code>#title#</code>, <code>#post#</code>, <code>#date#</code> oder <code>#blog#</code> verwenden um die gekürzte URL, Name des Blogeintrags, ein Auszug des Blogeintrags oder Blogname im Tweet zu verwenden."
|
475 |
-
|
476 |
-
#: wp-to-twitter.php:811
|
477 |
-
msgid "Make a Donation"
|
478 |
-
msgstr "Spenden"
|
479 |
-
|
480 |
-
#: wp-to-twitter.php:814
|
481 |
-
msgid "Don't Tweet this post."
|
482 |
-
msgstr "Diesen Eintrag nicht twittern."
|
483 |
-
|
484 |
-
#: wp-to-twitter.php:863
|
485 |
-
msgid "WP to Twitter User Settings"
|
486 |
-
msgstr "WP to Twitter Benutzer Einstellungen"
|
487 |
-
|
488 |
-
#: wp-to-twitter.php:867
|
489 |
-
msgid "Use My Twitter Account"
|
490 |
-
msgstr "Verwende meinen Twitter Account"
|
491 |
-
|
492 |
-
#: wp-to-twitter.php:868
|
493 |
-
msgid "Select this option if you would like your posts to be Tweeted into your own Twitter account with no @ references."
|
494 |
-
msgstr "Wähle diese Option wenn du möchtest, dass dein Eintrag in deinem Twitter Account ohne @ Referenz veröffentlicht wird."
|
495 |
-
|
496 |
-
#: wp-to-twitter.php:869
|
497 |
-
msgid "Tweet my posts into my Twitter account with an @ reference to the site's main Twitter account."
|
498 |
-
msgstr "Tweete meinen Eintrag in meinem Twitter Account mit einer @ Referenz zum Haupt Twitter Account der Seite."
|
499 |
-
|
500 |
-
#: wp-to-twitter.php:870
|
501 |
-
msgid "Tweet my posts into the main site Twitter account with an @ reference to my username. (Password not required with this option.)"
|
502 |
-
msgstr "Tweete meinen Eintrag im Haupt Twitter Account mit einer @ Referenz zu meinem Benutzernamen. (Für diese Option wird kein Passwort benötigt.)"
|
503 |
-
|
504 |
-
#: wp-to-twitter.php:873
|
505 |
-
msgid "Your Twitter Username"
|
506 |
-
msgstr "Dein Twitter Benutzername"
|
507 |
-
|
508 |
-
#: wp-to-twitter.php:874
|
509 |
-
msgid "Enter your own Twitter username."
|
510 |
-
msgstr "Gib deinen Twitter Benutzernamen ein."
|
511 |
-
|
512 |
-
#: wp-to-twitter.php:877
|
513 |
-
msgid "Your Twitter Password"
|
514 |
-
msgstr "Dein Twitter Passwort"
|
515 |
-
|
516 |
-
#: wp-to-twitter.php:878
|
517 |
-
msgid "Enter your own Twitter password."
|
518 |
-
msgstr "Gib dein Twitter Passwort ein."
|
519 |
-
|
520 |
-
#: wp-to-twitter.php:997
|
521 |
-
msgid "<p>Couldn't locate the settings page.</p>"
|
522 |
-
msgstr "<p>Einstellungsseite nicht gefunden.</p>"
|
523 |
-
|
524 |
-
#: wp-to-twitter.php:1002
|
525 |
-
msgid "Settings"
|
526 |
-
msgstr "Einstellungen"
|
527 |
-
|
528 |
-
#. Plugin URI of an extension
|
529 |
-
msgid "http://www.joedolson.com/articles/wp-to-twitter/"
|
530 |
-
msgstr "http://www.joedolson.com/articles/wp-to-twitter/"
|
531 |
-
|
532 |
-
#. Description of an extension
|
533 |
-
msgid "Updates Twitter when you create a new blog post or add to your blogroll using Cli.gs. With a Cli.gs API key, creates a clig in your Cli.gs account with the name of your post as the title."
|
534 |
-
msgstr "Aktualisiert Twitter wenn du einen neuen Blog Eintrag oder einen neuen Blogroll hinzufügst unter Verwendung von Cli.gs. Mit einem Cli.gs API Key wird ein neuer clig mit dem Namen deines Eintrags erstellen lassen."
|
535 |
-
|
536 |
-
#. Author of an extension
|
537 |
-
msgid "Joseph Dolson"
|
538 |
-
msgstr "Joseph Dolson"
|
539 |
-
|
540 |
-
#. Author URI of an extension
|
541 |
-
msgid "http://www.joedolson.com/"
|
542 |
-
msgstr "http://www.joedolson.com/"
|
543 |
-
|
544 |
-
#~ msgid ""
|
545 |
-
#~ "The query to the URL shortener API failed, and your URL was not shrunk. "
|
546 |
-
#~ "The full post URL was attached to your Tweet."
|
547 |
-
#~ msgstr ""
|
548 |
-
#~ "Die Verbindung zum URL Kürzer API schlug fehl und deine URL wurde nicht "
|
549 |
-
#~ "verkürzt. Es wurde die normale URL wurde im Tweet veröffentlicht."
|
550 |
-
#~ msgid "Add_new_tag"
|
551 |
-
#~ msgstr "Tag_hinzufügen"
|
552 |
-
#~ msgid "This plugin may not work in your server environment."
|
553 |
-
#~ msgstr ""
|
554 |
-
#~ "Dieses Plugin funktioniert vielleicht nicht in deiner Server Umgebung."
|
555 |
-
#~ msgid "Wordpress to Twitter Publishing Options"
|
556 |
-
#~ msgstr "Wordpress to Twitter Veröffentlichungs-Optionen"
|
557 |
-
#~ msgid "Provide link to blog?"
|
558 |
-
#~ msgstr "Link zum Blog hinzufügen?"
|
559 |
-
#~ msgid "Use <strong>link title</strong> for Twitter updates"
|
560 |
-
#~ msgstr ""
|
561 |
-
#~ "Verwende den <strong>Link Namen</strong> für Twitter Aktualisierungen"
|
562 |
-
#~ msgid "Use <strong>link description</strong> for Twitter updates"
|
563 |
-
#~ msgstr ""
|
564 |
-
#~ "Verwende die <strong>Link Beschreibung</strong> für Twitter "
|
565 |
-
#~ "Aktualisierungen"
|
566 |
-
#~ msgid ""
|
567 |
-
#~ "Text for new link updates (used if title/description isn't available.):"
|
568 |
-
#~ msgstr ""
|
569 |
-
#~ "Text für neuen Link (wenn kein Namen oder Beschreibung vorhanden sind.):"
|
570 |
-
#~ msgid "Custom text prepended to Tweets:"
|
571 |
-
#~ msgstr "Eigener Text zu Beginn des Tweets:"
|
572 |
-
#~ msgid ""
|
573 |
-
#~ "Your server appears to support the required PHP functions and classes for "
|
574 |
-
#~ "WP to Twitter to function."
|
575 |
-
#~ msgstr ""
|
576 |
-
#~ "Es scheint als würde dein Server die benötigten PHP Funktion und Klassen "
|
577 |
-
#~ "für WP to Twitter bereitstellen."
|
578 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wp-to-twitter-fr_FR.mo
DELETED
Binary file
|
wp-to-twitter-fr_FR.po
DELETED
@@ -1,763 +0,0 @@
|
|
1 |
-
# Translation of the WordPress plugin WP to Twitter 2.1.1 by Joseph Dolson.
|
2 |
-
# Copyright (C) 2010 Joseph Dolson
|
3 |
-
# This file is distributed under the same license as the WP to Twitter package.
|
4 |
-
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
|
5 |
-
#
|
6 |
-
msgid ""
|
7 |
-
msgstr ""
|
8 |
-
"Project-Id-Version: WP to Twitter 2.1.1\n"
|
9 |
-
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-to-twitter\n"
|
10 |
-
"POT-Creation-Date: 2010-05-13 21:26+0000\n"
|
11 |
-
"PO-Revision-Date: 2010-07-05 13:43+0100\n"
|
12 |
-
"Last-Translator: traducteurs <info@traducteurs.com>\n"
|
13 |
-
"Language-Team: traducteurs <marketing@traducteurs.com>\n"
|
14 |
-
"MIME-Version: 1.0\n"
|
15 |
-
"Content-Type: text/plain; charset=utf-8\n"
|
16 |
-
"Content-Transfer-Encoding: 8bit\n"
|
17 |
-
"X-Poedit-Language: French\n"
|
18 |
-
"X-Poedit-Country: france\n"
|
19 |
-
|
20 |
-
#: functions.php:248
|
21 |
-
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."
|
22 |
-
msgstr "[<a href='options-general.php?page=wp-to-twitter/wp-to-twitter.php'>Masquer</a>] Si vous rencontrez des problèmes, merci de copier ces réglages dans le formulaire d'aide."
|
23 |
-
|
24 |
-
#: wp-to-twitter-manager.php:76
|
25 |
-
msgid "Please <a href='#twitterpw'>add your Twitter password</a>. "
|
26 |
-
msgstr "Merci d'<a href='#twitterpw'>ajouter votre mot de passe Twitter</a>."
|
27 |
-
|
28 |
-
#: wp-to-twitter-manager.php:82
|
29 |
-
msgid "WP to Twitter Errors Cleared"
|
30 |
-
msgstr "Erreurs du plugin WP to Twitter effacées"
|
31 |
-
|
32 |
-
#: wp-to-twitter-manager.php:93
|
33 |
-
msgid "Twitter API settings reset. You may need to change your username and password settings, if they are not the same as the alternate service previously in use."
|
34 |
-
msgstr "Reconfiguration d'API Twitter. Il vous sera peut être demandé de changer de nom d'utilisateur ainsi que de mot de passe s'ils diffèrent des valeurs précédentes."
|
35 |
-
|
36 |
-
#: wp-to-twitter-manager.php:103
|
37 |
-
msgid "Twitter-compatible API settings updated. "
|
38 |
-
msgstr "Réglages d'API compatible avec Twitter mis à jour."
|
39 |
-
|
40 |
-
#: wp-to-twitter-manager.php:105
|
41 |
-
msgid "You have configured WP to Twitter to use both Twitter and your selected service. Remember to add your username and login information for both services."
|
42 |
-
msgstr "Vous avez configuré le plugin WP to Twitter pour utiliser à la fois Twitter et le service de votre choix. Veillez à ajouter votre nom d'utilisateur et votre identifiant aux deux services."
|
43 |
-
|
44 |
-
#: wp-to-twitter-manager.php:114
|
45 |
-
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! "
|
46 |
-
msgstr "Désolé, je n'ai pas réussi à me connecter aux serveurs afin de créer votre nouveau billet de blog. Votre tweet a été enregistré dans un champ personnalisé joint au billet, vous pouvez le tweeter manuellement si vous le souhaitez."
|
47 |
-
|
48 |
-
#: wp-to-twitter-manager.php:116
|
49 |
-
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. "
|
50 |
-
msgstr "Désolé ! Je n'ai pas réussi à me connecter aux serveurs Twitter afin de poster votre <strong>nouveau lien</strong>! Je crains que vous ne deviez le poster manuellement."
|
51 |
-
|
52 |
-
#: wp-to-twitter-manager.php:145
|
53 |
-
msgid "WP to Twitter Advanced Options Updated"
|
54 |
-
msgstr "Options avancées du plugin WP to Twitter mises à jour"
|
55 |
-
|
56 |
-
#: wp-to-twitter-manager.php:162
|
57 |
-
msgid "You must add your Bit.ly login and API key in order to shorten URLs with Bit.ly."
|
58 |
-
msgstr "Vous devez renseigner votre nom d'utilisateur et votre clé API afin de pouvoir réduire des URL à l'aide de Bit.ly."
|
59 |
-
|
60 |
-
#: wp-to-twitter-manager.php:166
|
61 |
-
msgid "You must add your YOURLS remote URL, login, and password in order to shorten URLs with a remote installation of YOURLS."
|
62 |
-
msgstr "Vous devez ajouter votre URL distante YOURLS, votre nom d'utilisateur et votre mot de passe afin de pouvoir réduire les URL avec une installation distante de YOURLS."
|
63 |
-
|
64 |
-
#: wp-to-twitter-manager.php:170
|
65 |
-
msgid "You must add your YOURLS server path in order to shorten URLs with a remote installation of YOURLS."
|
66 |
-
msgstr "Vous devez ajouter le chemin de votre serveur YOURLS afin de réduire les URL avec une installation distante de YOURLS."
|
67 |
-
|
68 |
-
#: wp-to-twitter-manager.php:174
|
69 |
-
msgid "WP to Twitter Options Updated"
|
70 |
-
msgstr "Options du plugin WP to Twitter mises à jours"
|
71 |
-
|
72 |
-
#: wp-to-twitter-manager.php:184
|
73 |
-
msgid "Category limits updated."
|
74 |
-
msgstr "Limitations de catégories mises à jour."
|
75 |
-
|
76 |
-
#: wp-to-twitter-manager.php:188
|
77 |
-
msgid "Category limits unset."
|
78 |
-
msgstr "Limitations de catégories mises à zéro."
|
79 |
-
|
80 |
-
#: wp-to-twitter-manager.php:209
|
81 |
-
msgid "Twitter login and password updated. "
|
82 |
-
msgstr "Identifiant et mot de passe Twitter mis à jour."
|
83 |
-
|
84 |
-
#: wp-to-twitter-manager.php:211
|
85 |
-
msgid "You need to provide your Twitter login and password! "
|
86 |
-
msgstr "Vous devez renseigner les champs \"identifiant\" et \"mot de passe\" Twitter !"
|
87 |
-
|
88 |
-
#: wp-to-twitter-manager.php:218
|
89 |
-
msgid "YOURLS password updated. "
|
90 |
-
msgstr "Mot de passe YOURLS mis à jour."
|
91 |
-
|
92 |
-
#: wp-to-twitter-manager.php:221
|
93 |
-
msgid "YOURLS password deleted. You will be unable to use your remote YOURLS account to create short URLS."
|
94 |
-
msgstr "Mot de passe YOURLS supprimé. Vous ne pourrez plus utiliser votre compte YOURLS distant pour créer vos réductions d'urls."
|
95 |
-
|
96 |
-
#: wp-to-twitter-manager.php:223
|
97 |
-
msgid "Failed to save your YOURLS password! "
|
98 |
-
msgstr "Une erreur est survenue lors de l'enregistrement du mot de passe YOURLS !"
|
99 |
-
|
100 |
-
#: wp-to-twitter-manager.php:227
|
101 |
-
msgid "YOURLS username added. "
|
102 |
-
msgstr "Nom d'utilisateur YOURLS enregistré."
|
103 |
-
|
104 |
-
#: wp-to-twitter-manager.php:231
|
105 |
-
msgid "YOURLS API url added. "
|
106 |
-
msgstr "API-URL YOURLS enregistrée."
|
107 |
-
|
108 |
-
#: wp-to-twitter-manager.php:236
|
109 |
-
msgid "YOURLS local server path added. "
|
110 |
-
msgstr "Chemin de serveur local YOURLS enregistré."
|
111 |
-
|
112 |
-
#: wp-to-twitter-manager.php:238
|
113 |
-
msgid "The path to your YOURLS installation is not correct. "
|
114 |
-
msgstr "Le chemin vers l'installation de YOURLS est incorrect."
|
115 |
-
|
116 |
-
#: wp-to-twitter-manager.php:243
|
117 |
-
msgid "YOURLS will use Post ID for short URL slug."
|
118 |
-
msgstr "YOURLS utilisera l'identifiant du billet dans le raccourci de l'URL réduite."
|
119 |
-
|
120 |
-
#: wp-to-twitter-manager.php:246
|
121 |
-
msgid "YOURLS will not use Post ID for the short URL slug."
|
122 |
-
msgstr "YOURLS n'utilisera pas l'ID du billet dans le raccourci de l'URL réduite."
|
123 |
-
|
124 |
-
#: wp-to-twitter-manager.php:253
|
125 |
-
msgid "Cligs API Key Updated"
|
126 |
-
msgstr "Clé API Cligs mise à jour"
|
127 |
-
|
128 |
-
#: wp-to-twitter-manager.php:256
|
129 |
-
msgid "Cli.gs API Key deleted. Cli.gs created by WP to Twitter will no longer be associated with your account. "
|
130 |
-
msgstr "Clé de l'API Cli.gs supprimée. L'accès au service Cli.gs, créé par le plugin WP to Twitter, n'est plus associé à votre compte."
|
131 |
-
|
132 |
-
#: wp-to-twitter-manager.php:258
|
133 |
-
msgid "Cli.gs API Key not added - <a href='http://cli.gs/user/api/'>get one here</a>! "
|
134 |
-
msgstr "Clé API Cli.gs manquante - <a href='http://cli.gs/user/api/'>Cliquez pour en obtenir une</a>!"
|
135 |
-
|
136 |
-
#: wp-to-twitter-manager.php:264
|
137 |
-
msgid "Bit.ly API Key Updated."
|
138 |
-
msgstr "Clé API Bit.ly mise à jour."
|
139 |
-
|
140 |
-
#: wp-to-twitter-manager.php:267
|
141 |
-
msgid "Bit.ly API Key deleted. You cannot use the Bit.ly API without an API key. "
|
142 |
-
msgstr "Clé API Bit.ly supprimée. Vous ne pouvez pas utiliser Bt.ly si vous ne disposez pas d'une clé API."
|
143 |
-
|
144 |
-
#: wp-to-twitter-manager.php:269
|
145 |
-
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."
|
146 |
-
msgstr "Clé API Bit.ly manquante - <a href='http://bit.ly/account/'>Obtenez-en une</a>! Une clé API est nécessaire à l'utilisation du service de réduction d'URL Bit.ly."
|
147 |
-
|
148 |
-
#: wp-to-twitter-manager.php:273
|
149 |
-
msgid " Bit.ly User Login Updated."
|
150 |
-
msgstr "Nom d'utilisateur Bit.ly mis à jour."
|
151 |
-
|
152 |
-
#: wp-to-twitter-manager.php:276
|
153 |
-
msgid "Bit.ly User Login deleted. You cannot use the Bit.ly API without providing your username. "
|
154 |
-
msgstr "Nom d'utilisateur Bit.ly supprimé. Vous ne pouvez pas utiliser d'API Bit.ly sans préciser votre nom d'utilisateur."
|
155 |
-
|
156 |
-
#: wp-to-twitter-manager.php:278
|
157 |
-
msgid "Bit.ly Login not added - <a href='http://bit.ly/account/'>get one here</a>! "
|
158 |
-
msgstr "Nom d'utilisateur Bit.ly manquant - <a href='http://bit.ly/account/'>Obtenez-en un</a>!"
|
159 |
-
|
160 |
-
#: wp-to-twitter-manager.php:372
|
161 |
-
msgid "<li><strong>Your selected URL shortener does not require testing.</strong></li>"
|
162 |
-
msgstr "<li><strong>Aucun test n'est requis pour le réducteur d'URL que vous avez choisi.</strong></li>"
|
163 |
-
|
164 |
-
#: wp-to-twitter-manager.php:375
|
165 |
-
msgid "<li class=\"error\"><strong>WP to Twitter was unable to contact your selected URL shortening service.</strong></li>"
|
166 |
-
msgstr "<li class=\"error\"><strong>Le plugin WP to Twitter n'a pas réussi à se connecter au service de réduction d'URL que vous avez choisi.</strong></li>"
|
167 |
-
|
168 |
-
#: wp-to-twitter-manager.php:379
|
169 |
-
msgid "<li><strong>WP to Twitter successfully contacted your selected URL shortening service.</strong> The following link should point to your blog homepage:"
|
170 |
-
msgstr "<li><strong>Le plugin WP to Twitter s'est connecté avec succés au service de réduction d'URL que vous avez choisi.</strong> Le lien suivant doit renvoyer à la page d'accueil de votre blog :"
|
171 |
-
|
172 |
-
#: wp-to-twitter-manager.php:390
|
173 |
-
msgid "<li><strong>WP to Twitter successfully submitted a status update to your primary update service.</strong></li>"
|
174 |
-
msgstr "<li><strong>Le plugin WP to Twitter a soumis avec succès une mise à jour de statut auprés de votre service de mise à jour primaire.</strong></li>"
|
175 |
-
|
176 |
-
#: wp-to-twitter-manager.php:393
|
177 |
-
msgid "<li class=\"error\"><strong>WP to Twitter failed to submit an update to your primary update service.</strong></li>"
|
178 |
-
msgstr "<li class=\"error\"><strong>Le plugin WP to Twitter n'a pas réussi à soumettre une mise à jour à votre service de mise à jour primaire.</strong></li>"
|
179 |
-
|
180 |
-
#: wp-to-twitter-manager.php:394
|
181 |
-
msgid "Twitter returned this error:"
|
182 |
-
msgstr "Rapport d'erreur Twitter :"
|
183 |
-
|
184 |
-
#: wp-to-twitter-manager.php:398
|
185 |
-
msgid "<li class=\"error\"><strong>WP to Twitter failed to contact your primary update service.</strong></li>"
|
186 |
-
msgstr "<li class=\"error\"><strong>Le plugin WP to Twitter n'a pas réussi à se connecter à votre service de mise à jour primaire </strong></li>"
|
187 |
-
|
188 |
-
#: wp-to-twitter-manager.php:399
|
189 |
-
msgid "No error was returned."
|
190 |
-
msgstr "Aucune erreur détectée."
|
191 |
-
|
192 |
-
#: wp-to-twitter-manager.php:406
|
193 |
-
msgid "<li><strong>WP to Twitter successfully submitted a status update to your secondary update service.</strong></li>"
|
194 |
-
msgstr "<li><strong>Le plugin WP to Twitter a soumis avec succès une mise à jour de statut à votre service de mise à jour secondaire.</strong></li>"
|
195 |
-
|
196 |
-
#: wp-to-twitter-manager.php:409
|
197 |
-
msgid "<li class=\"error\"><strong>WP to Twitter failed to submit an update to your secondary update service.</strong></li>"
|
198 |
-
msgstr "<li class=\"error\"><strong>Le plugin WP to Twitter n'a pas réussi à soumettre une mise à jour à votre service de mise à jour secondaire.</strong></li>"
|
199 |
-
|
200 |
-
#: wp-to-twitter-manager.php:410
|
201 |
-
msgid "The service returned this error:"
|
202 |
-
msgstr "Erreur renvoyée par le service :"
|
203 |
-
|
204 |
-
#: wp-to-twitter-manager.php:417
|
205 |
-
msgid "<li><strong>Your server should run WP to Twitter successfully.</strong></li>"
|
206 |
-
msgstr "<li><strong>Votre serveur devrait correctement exécuter le plugin WP to Twitter.</strong></li>"
|
207 |
-
|
208 |
-
#: wp-to-twitter-manager.php:420
|
209 |
-
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>"
|
210 |
-
msgstr "<li class=\"error\"><strong>Votre serveur ne semble pas supporter les méthodes nécessaires au fonctionnement de Twitter.</strong> Cependant, vous pouvez réessayer car ces tests ne sont pas parfaits.</li>"
|
211 |
-
|
212 |
-
#: wp-to-twitter-manager.php:430
|
213 |
-
msgid "This plugin may not fully work in your server environment. The plugin failed to contact both a URL shortener API and the Twitter service API."
|
214 |
-
msgstr "Il se peut que ce plugin ne fonctionne pas entièrement dans votre environnement serveur. Le plugin n'a pas réussi à se connecter à l'API du réducteur d'URL et au service API de Twitter."
|
215 |
-
|
216 |
-
#: wp-to-twitter-manager.php:444
|
217 |
-
msgid "WP to Twitter Options"
|
218 |
-
msgstr "Options WP to Twitter"
|
219 |
-
|
220 |
-
#: wp-to-twitter-manager.php:452
|
221 |
-
#: wp-to-twitter.php:925
|
222 |
-
msgid "Get Support"
|
223 |
-
msgstr "Obtenez de l'aide"
|
224 |
-
|
225 |
-
#: wp-to-twitter-manager.php:453
|
226 |
-
msgid "Export Settings"
|
227 |
-
msgstr "Exporter les réglages"
|
228 |
-
|
229 |
-
#: wp-to-twitter-manager.php:454
|
230 |
-
#: wp-to-twitter.php:925
|
231 |
-
msgid "Make a Donation"
|
232 |
-
msgstr "Faites un don"
|
233 |
-
|
234 |
-
#: wp-to-twitter-manager.php:469
|
235 |
-
msgid "Shortcodes available in post update templates:"
|
236 |
-
msgstr "Raccourcis disponibles dans les modèles de mises à jour de billet :"
|
237 |
-
|
238 |
-
#: wp-to-twitter-manager.php:471
|
239 |
-
msgid "<code>#title#</code>: the title of your blog post"
|
240 |
-
msgstr "<code>#title#</code>: titre de votre billet de blog"
|
241 |
-
|
242 |
-
#: wp-to-twitter-manager.php:472
|
243 |
-
msgid "<code>#blog#</code>: the title of your blog"
|
244 |
-
msgstr "<code>#blog#</code>: titre de votre blog"
|
245 |
-
|
246 |
-
#: wp-to-twitter-manager.php:473
|
247 |
-
msgid "<code>#post#</code>: a short excerpt of the post content"
|
248 |
-
msgstr "<code>#post#</code>: un court extrait du contenu du billet"
|
249 |
-
|
250 |
-
#: wp-to-twitter-manager.php:474
|
251 |
-
msgid "<code>#category#</code>: the first selected category for the post"
|
252 |
-
msgstr "<code>#category#</code>: la première catégorie sélectionnée pour le billet"
|
253 |
-
|
254 |
-
#: wp-to-twitter-manager.php:475
|
255 |
-
msgid "<code>#date#</code>: the post date"
|
256 |
-
msgstr "<code>#date#</code>: la date du billet"
|
257 |
-
|
258 |
-
#: wp-to-twitter-manager.php:476
|
259 |
-
msgid "<code>#url#</code>: the post URL"
|
260 |
-
msgstr "<code>#url#</code>: l'URL du billet"
|
261 |
-
|
262 |
-
#: wp-to-twitter-manager.php:477
|
263 |
-
msgid "<code>#author#</code>: the post author'"
|
264 |
-
msgstr "<code>#author#</code>: l'auteur du billet"
|
265 |
-
|
266 |
-
#: wp-to-twitter-manager.php:479
|
267 |
-
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>"
|
268 |
-
msgstr "Vous pouvez également créer des raccourcis personnalisés afin d'accéder aux champs personnalisés de WordPress. Utiliser les doubles crochets pour encadrer le nom de votre champ personnalisé afin d'ajouter la valeur de ce champ à la mise à jour de votre statut. Exemple : <code>[[champ_personnalisé]]</code></p>"
|
269 |
-
|
270 |
-
#: wp-to-twitter-manager.php:484
|
271 |
-
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>"
|
272 |
-
msgstr "<p>Un ou plusieurs de vos derniers billets n'ont pas réussi à envoyer la mise à jour de leur statut à Twitter. Votre tweet a été enregistré dans vos champs personnalisés, vous pouvez le re-tweeter si vous le désirez.</p>"
|
273 |
-
|
274 |
-
#: wp-to-twitter-manager.php:487
|
275 |
-
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://blog.cli.gs\">Cli.gs Blog</a>] [<a href=\"http://blog.bit.ly\">Bit.ly Blog</a>]</p>"
|
276 |
-
msgstr "<p>Votre demande vers l'API du réducteur d'URL a échoué, votre URL n'a pas été réduite. L'ensemble de l'URL de billet était joint à votre tweet. Vérifier que votre réducteur d'URL ne rencontre aucun problème connu. [<a href=\"http://blog.cli.gs\">Cli.gs Blog</a>] [<a href=\"http://blog.bit.ly\">Bit.ly Blog</a>]</p>"
|
277 |
-
|
278 |
-
#: wp-to-twitter-manager.php:494
|
279 |
-
msgid "Clear 'WP to Twitter' Error Messages"
|
280 |
-
msgstr "Effacer les messages d'erreur \"WP to Twitter\""
|
281 |
-
|
282 |
-
#: wp-to-twitter-manager.php:507
|
283 |
-
msgid "Basic Settings"
|
284 |
-
msgstr "Réglages de bases"
|
285 |
-
|
286 |
-
#: wp-to-twitter-manager.php:513
|
287 |
-
msgid "Tweet Templates"
|
288 |
-
msgstr "Modèles de tweet"
|
289 |
-
|
290 |
-
#: wp-to-twitter-manager.php:516
|
291 |
-
msgid "Update when a post is published"
|
292 |
-
msgstr "Mettre à jour lorsqu'un billet est publié"
|
293 |
-
|
294 |
-
#: wp-to-twitter-manager.php:516
|
295 |
-
msgid "Text for new post updates:"
|
296 |
-
msgstr "Texte pour l'annonce d'un nouveau billet : "
|
297 |
-
|
298 |
-
#: wp-to-twitter-manager.php:521
|
299 |
-
msgid "Update when a post is edited"
|
300 |
-
msgstr "Mettre à jour lorsqu'un billet est modifié"
|
301 |
-
|
302 |
-
#: wp-to-twitter-manager.php:521
|
303 |
-
msgid "Text for editing updates:"
|
304 |
-
msgstr "Texte pour l'annonce de modification :"
|
305 |
-
|
306 |
-
#: wp-to-twitter-manager.php:525
|
307 |
-
msgid "Update Twitter when new Wordpress Pages are published"
|
308 |
-
msgstr "Mettre à jour Twitter lorsque de nouvelles pages sont publiées"
|
309 |
-
|
310 |
-
#: wp-to-twitter-manager.php:525
|
311 |
-
msgid "Text for new page updates:"
|
312 |
-
msgstr "Texte pour l'annonce d'une nouvelle page :"
|
313 |
-
|
314 |
-
#: wp-to-twitter-manager.php:529
|
315 |
-
msgid "Update Twitter when WordPress Pages are edited"
|
316 |
-
msgstr "Mettre à jour Twitter lorsque des pages WordPress sont modifiées"
|
317 |
-
|
318 |
-
#: wp-to-twitter-manager.php:529
|
319 |
-
msgid "Text for page edit updates:"
|
320 |
-
msgstr "Texte pour l'annonce d'une modification de page"
|
321 |
-
|
322 |
-
#: wp-to-twitter-manager.php:533
|
323 |
-
msgid "Update Twitter when you post a Blogroll link"
|
324 |
-
msgstr "Mettre à jour Twitter lorsque vous poster un lien dans votre Blogroll"
|
325 |
-
|
326 |
-
#: wp-to-twitter-manager.php:534
|
327 |
-
msgid "Text for new link updates:"
|
328 |
-
msgstr "Texte pour l'annonce d'un nouveau lien :"
|
329 |
-
|
330 |
-
#: wp-to-twitter-manager.php:534
|
331 |
-
msgid "Available shortcodes: <code>#url#</code>, <code>#title#</code>, and <code>#description#</code>."
|
332 |
-
msgstr "Raccourcis disponibles : <code>#url#</code>, <code>#title#</code>, et <code>#description#</code>."
|
333 |
-
|
334 |
-
#: wp-to-twitter-manager.php:538
|
335 |
-
msgid "Choose your short URL service (account settings below)"
|
336 |
-
msgstr "Choisissez votre service de réduction d'URL (réglages de compte au-dessus)"
|
337 |
-
|
338 |
-
#: wp-to-twitter-manager.php:541
|
339 |
-
msgid "Use Cli.gs for my URL shortener."
|
340 |
-
msgstr "Utiliser Cli.gs comme réducteur d'URL."
|
341 |
-
|
342 |
-
#: wp-to-twitter-manager.php:542
|
343 |
-
msgid "Use Bit.ly for my URL shortener."
|
344 |
-
msgstr "Utiliser Bit.ly comme réducteur d'URL."
|
345 |
-
|
346 |
-
#: wp-to-twitter-manager.php:543
|
347 |
-
msgid "YOURLS (installed on this server)"
|
348 |
-
msgstr "YOURLS (installé en local sur ce serveur)"
|
349 |
-
|
350 |
-
#: wp-to-twitter-manager.php:544
|
351 |
-
msgid "YOURLS (installed on a remote server)"
|
352 |
-
msgstr "YOURLS (installé sur un serveur distant)"
|
353 |
-
|
354 |
-
#: wp-to-twitter-manager.php:545
|
355 |
-
msgid "Use WordPress as a URL shortener."
|
356 |
-
msgstr "Utiliser WordPress comme réducteur d'URL."
|
357 |
-
|
358 |
-
#: wp-to-twitter-manager.php:546
|
359 |
-
msgid "Don't shorten URLs."
|
360 |
-
msgstr "Ne pas réduire les URL."
|
361 |
-
|
362 |
-
#: wp-to-twitter-manager.php:548
|
363 |
-
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."
|
364 |
-
msgstr "En choisssant WordPress comme réducteur d'URL vous enverrez des URL sur Twitter au format URL par défaut pour WordPress : <code>http://domain.com/wpdir/?p=123</code>. Lorsque vous utilisez des URL réduites avec WordPress, Google Analytics n'est pas disponible."
|
365 |
-
|
366 |
-
#: wp-to-twitter-manager.php:554
|
367 |
-
msgid "Save WP->Twitter Options"
|
368 |
-
msgstr "Enregistrer les options de WP -> Twitter"
|
369 |
-
|
370 |
-
#: wp-to-twitter-manager.php:580
|
371 |
-
#: wp-to-twitter-manager.php:599
|
372 |
-
msgid "(<em>Saved</em>)"
|
373 |
-
msgstr "(<em>Enregistré</em>)"
|
374 |
-
|
375 |
-
#: wp-to-twitter-manager.php:584
|
376 |
-
#: wp-to-twitter-manager.php:603
|
377 |
-
msgid "» <small>Don't have a Twitter account? <a href='http://www.twitter.com'>Get one for free here</a>"
|
378 |
-
msgstr "» <small>Vous ne connaissez pas Twitter ? <a href='http://www.twitter.com'>Inscrivez-vous dès maintenant</a>"
|
379 |
-
|
380 |
-
#: wp-to-twitter-manager.php:590
|
381 |
-
msgid "Your Twitter account details"
|
382 |
-
msgstr "Détails de votre compte Twitter"
|
383 |
-
|
384 |
-
#: wp-to-twitter-manager.php:591
|
385 |
-
msgid "These are your settings for Twitter as a second update service."
|
386 |
-
msgstr "Voici vos réglages pour Twitter en tant que service secondaire de miseq à jour."
|
387 |
-
|
388 |
-
#: wp-to-twitter-manager.php:595
|
389 |
-
msgid "Your Twitter username:"
|
390 |
-
msgstr "Votre nom d'utilisateur Twitter :"
|
391 |
-
|
392 |
-
#: wp-to-twitter-manager.php:599
|
393 |
-
msgid "Your Twitter password:"
|
394 |
-
msgstr "Votre mot de passe Twitter :"
|
395 |
-
|
396 |
-
#: wp-to-twitter-manager.php:603
|
397 |
-
msgid "Save Twitter Login Info"
|
398 |
-
msgstr "Enregistrer vos informations personnelles Twitter"
|
399 |
-
|
400 |
-
#: wp-to-twitter-manager.php:609
|
401 |
-
msgid "Your Cli.gs account details"
|
402 |
-
msgstr "Détails de votre compte Cli.gs"
|
403 |
-
|
404 |
-
#: wp-to-twitter-manager.php:614
|
405 |
-
msgid "Your Cli.gs <abbr title='application programming interface'>API</abbr> Key:"
|
406 |
-
msgstr "Votre clé <abbr title='application programming interface'>API</abbr> Cli.gs :"
|
407 |
-
|
408 |
-
#: wp-to-twitter-manager.php:620
|
409 |
-
msgid "Don't have a Cli.gs account or Cligs API key? <a href='http://cli.gs/user/api/'>Get one free here</a>!<br />You'll need an API key in order to associate the Cligs you create with your Cligs account."
|
410 |
-
msgstr "Vous n'avez pas de compte ou de clé API Cli.gs ? <a href='http://cli.gs/user/api/'>Obtenez-en une gratuitement</a>!<br />Vous aurez besoin d'une clé API afin d'associer vos Cligs à votre compte Cli.gs."
|
411 |
-
|
412 |
-
#: wp-to-twitter-manager.php:626
|
413 |
-
msgid "Your Bit.ly account details"
|
414 |
-
msgstr "Détails de votre compte Bit.ly"
|
415 |
-
|
416 |
-
#: wp-to-twitter-manager.php:631
|
417 |
-
msgid "Your Bit.ly username:"
|
418 |
-
msgstr "Votre nom d'utilisateur Bit.ly :"
|
419 |
-
|
420 |
-
#: wp-to-twitter-manager.php:635
|
421 |
-
msgid "Your Bit.ly <abbr title='application programming interface'>API</abbr> Key:"
|
422 |
-
msgstr "Votre clé <abbr title='application programming interface'>API</abbr> Bit.ly :"
|
423 |
-
|
424 |
-
#: wp-to-twitter-manager.php:642
|
425 |
-
msgid "Save Bit.ly API Key"
|
426 |
-
msgstr "Enregistrer votre clé API Bit.ly"
|
427 |
-
|
428 |
-
#: wp-to-twitter-manager.php:642
|
429 |
-
msgid "Clear Bit.ly API Key"
|
430 |
-
msgstr "Effacer votre clé API Bit.ly"
|
431 |
-
|
432 |
-
#: wp-to-twitter-manager.php:642
|
433 |
-
msgid "A Bit.ly API key and username is required to shorten URLs via the Bit.ly API and WP to Twitter."
|
434 |
-
msgstr "Une clé API et un nom d'utilisateur Bit.ly sont nécessaires à la réduction d'URL via l'API de Bit.ly et le plugin WP toTwitter."
|
435 |
-
|
436 |
-
#: wp-to-twitter-manager.php:647
|
437 |
-
msgid "Your YOURLS account details"
|
438 |
-
msgstr "Détails de votre compte YOURLS"
|
439 |
-
|
440 |
-
#: wp-to-twitter-manager.php:651
|
441 |
-
msgid "Path to the YOURLS config file (Local installations)"
|
442 |
-
msgstr "Chemin vers le dossier de configuration de YOURLS (installations locales)"
|
443 |
-
|
444 |
-
#: wp-to-twitter-manager.php:652
|
445 |
-
#: wp-to-twitter-manager.php:656
|
446 |
-
msgid "Example:"
|
447 |
-
msgstr "Exemple :"
|
448 |
-
|
449 |
-
#: wp-to-twitter-manager.php:655
|
450 |
-
msgid "URI to the YOURLS API (Remote installations)"
|
451 |
-
msgstr "URI vers l'API YOURLS (installation distante)"
|
452 |
-
|
453 |
-
#: wp-to-twitter-manager.php:659
|
454 |
-
msgid "Your YOURLS username:"
|
455 |
-
msgstr "Votre nom d'utilisateur YOURLS :"
|
456 |
-
|
457 |
-
#: wp-to-twitter-manager.php:663
|
458 |
-
msgid "Your YOURLS password:"
|
459 |
-
msgstr "Votre mot de passe YOURLS :"
|
460 |
-
|
461 |
-
#: wp-to-twitter-manager.php:663
|
462 |
-
msgid "<em>Saved</em>"
|
463 |
-
msgstr "<em>Enregistré</em>"
|
464 |
-
|
465 |
-
#: wp-to-twitter-manager.php:667
|
466 |
-
msgid "Use Post ID for YOURLS url slug."
|
467 |
-
msgstr "Utiliser un identifiant de billet pour le raccourci votre URL YOURLS"
|
468 |
-
|
469 |
-
#: wp-to-twitter-manager.php:672
|
470 |
-
msgid "Save YOURLS Account Info"
|
471 |
-
msgstr "Enregistrer les informations de votre compte YOURLS"
|
472 |
-
|
473 |
-
#: wp-to-twitter-manager.php:672
|
474 |
-
msgid "Clear YOURLS password"
|
475 |
-
msgstr "Effacer votre mot de passe YOURLS"
|
476 |
-
|
477 |
-
#: wp-to-twitter-manager.php:672
|
478 |
-
msgid "A YOURLS password and username is required to shorten URLs via the remote YOURLS API and WP to Twitter."
|
479 |
-
msgstr "Un mot de passe et un nom d'utilisateur YOURLS sont nécessaires à la réduction d'URL via l'API distante de YOURLS et le plugin WP to Twitter."
|
480 |
-
|
481 |
-
#: wp-to-twitter-manager.php:677
|
482 |
-
msgid "Change Twitter-compatible Service"
|
483 |
-
msgstr "Changez de service compatible avec Twitter"
|
484 |
-
|
485 |
-
#: wp-to-twitter-manager.php:681
|
486 |
-
msgid "URI for Twitter-compatible Post Status API"
|
487 |
-
msgstr "URI de l'API de notification de statuts compatible Twitter"
|
488 |
-
|
489 |
-
#: wp-to-twitter-manager.php:685
|
490 |
-
msgid "Service Name"
|
491 |
-
msgstr "Nom du service"
|
492 |
-
|
493 |
-
#: wp-to-twitter-manager.php:689
|
494 |
-
msgid "Status Update Character Limit"
|
495 |
-
msgstr "Limitation de caractères dans la mise à jour de statuts"
|
496 |
-
|
497 |
-
#: wp-to-twitter-manager.php:693
|
498 |
-
msgid "Post status updates to both services."
|
499 |
-
msgstr "Poster des mises à jours de statuts sur les deux services."
|
500 |
-
|
501 |
-
#: wp-to-twitter-manager.php:696
|
502 |
-
msgid "Reset to normal Twitter settings"
|
503 |
-
msgstr "Réinitialiser les réglages de Twitter"
|
504 |
-
|
505 |
-
#: wp-to-twitter-manager.php:699
|
506 |
-
msgid "Update Twitter Compatible Service"
|
507 |
-
msgstr "Mettre à jour le service Twitter compatible"
|
508 |
-
|
509 |
-
#: wp-to-twitter-manager.php:699
|
510 |
-
msgid "» <small>You can use any service using the Twitter-compatible REST API returning data in JSON format with this plugin. Twitter-compatible services include <a href='http://identi.ca'>Identi.ca</a>, <a href='http://shoutem.com'>Shoutem.com</a> and <a href='http://chirup.com'>Chirup.com</a>. <strong>No support will be provided for services other than Twitter.</strong>"
|
511 |
-
msgstr "» <small>Vous pouvez utiliser avec ce plugin tous les services utilisant une API REST compatible avec Twitter et renvoyant les données au format JSON. Les services compatibles avec Twitter comprennent <a href='http://identi.ca'>Identi.ca</a>, <a href='http://shoutem.com'>Shoutem.com</a> et <a href='http://chirup.com'>Chirup.com</a>. <strong>Aucune aide ne sera fournie pour les services autres que Twitter. "
|
512 |
-
|
513 |
-
#: wp-to-twitter-manager.php:716
|
514 |
-
msgid "Advanced Settings"
|
515 |
-
msgstr "Réglages avancés"
|
516 |
-
|
517 |
-
#: wp-to-twitter-manager.php:723
|
518 |
-
msgid "Advanced Tweet settings"
|
519 |
-
msgstr "Réglages avancés de Tweet"
|
520 |
-
|
521 |
-
#: wp-to-twitter-manager.php:726
|
522 |
-
msgid "Add tags as hashtags on Tweets"
|
523 |
-
msgstr "Ajouter des hashtags (informations additionnelles) aux tweets"
|
524 |
-
|
525 |
-
#: wp-to-twitter-manager.php:727
|
526 |
-
msgid "Spaces replaced with:"
|
527 |
-
msgstr "Espaces remplacés par :"
|
528 |
-
|
529 |
-
#: wp-to-twitter-manager.php:728
|
530 |
-
msgid "Default replacement is an underscore (<code>_</code>). Use <code>[ ]</code> to remove spaces entirely."
|
531 |
-
msgstr "Par défaut, le caractère de remplacement est un underscore (<code>_</code>). Pour supprimer entièrement les espaces, utilisez le code suivant : <code>[ ]</code>."
|
532 |
-
|
533 |
-
#: wp-to-twitter-manager.php:731
|
534 |
-
msgid "Maximum number of tags to include:"
|
535 |
-
msgstr "Nombre maximal de tags à ajouter :"
|
536 |
-
|
537 |
-
#: wp-to-twitter-manager.php:732
|
538 |
-
msgid "Maximum length in characters for included tags:"
|
539 |
-
msgstr "Nombre de caractères maximum pour un tag ajouté :"
|
540 |
-
|
541 |
-
#: wp-to-twitter-manager.php:733
|
542 |
-
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."
|
543 |
-
msgstr "Ces options vous permettent de restreindre la longueur et le nombre de tags WordPress envoyés sur Twitter sous forme de hashtags. Configurer ainsi : <code>0</code> ou laisser un espace vide pour autoriser toute sorte de tags."
|
544 |
-
|
545 |
-
#: wp-to-twitter-manager.php:736
|
546 |
-
msgid "Length of post excerpt (in characters):"
|
547 |
-
msgstr "Longueur de l'extrait du billet (en nombre de caractères) :"
|
548 |
-
|
549 |
-
#: wp-to-twitter-manager.php:736
|
550 |
-
msgid "By default, extracted from the post itself. If you use the 'Excerpt' field, that will be used instead."
|
551 |
-
msgstr "Extrait par défaut du contenu du billet. Si vous spécifiez le champ \"Excerpt\", son contenu sera utilisé à la place de l'extrait par défaut."
|
552 |
-
|
553 |
-
#: wp-to-twitter-manager.php:739
|
554 |
-
msgid "WP to Twitter Date Formatting:"
|
555 |
-
msgstr "Date de formatage du plugin WP to Twitter :"
|
556 |
-
|
557 |
-
#: wp-to-twitter-manager.php:740
|
558 |
-
msgid "Default is from your general settings. <a href='http://codex.wordpress.org/Formatting_Date_and_Time'>Date Formatting Documentation</a>."
|
559 |
-
msgstr "L'ensemble de vos réglages sont des réglages par défaut. <a href='http://codex.wordpress.org/Formatting_Date_and_Time'>Informations sur la date de formatage</a>."
|
560 |
-
|
561 |
-
#: wp-to-twitter-manager.php:744
|
562 |
-
msgid "Custom text before all Tweets:"
|
563 |
-
msgstr "Personnaliser le texte avant chaque tweet :"
|
564 |
-
|
565 |
-
#: wp-to-twitter-manager.php:745
|
566 |
-
msgid "Custom text after all Tweets:"
|
567 |
-
msgstr "Personnaliser le texte après chaque tweet :"
|
568 |
-
|
569 |
-
#: wp-to-twitter-manager.php:748
|
570 |
-
msgid "Custom field for an alternate URL to be shortened and Tweeted:"
|
571 |
-
msgstr "Personnaliser le champ pour une URL alternative à réduire et à poster sur Twitter :"
|
572 |
-
|
573 |
-
#: wp-to-twitter-manager.php:749
|
574 |
-
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."
|
575 |
-
msgstr "Vous pouvez utiliser un champ personnalisé pour envoyer une URL alternative pour vos billets. La valeur est le nom d'un champ personnalisé contenant votre URL externe."
|
576 |
-
|
577 |
-
#: wp-to-twitter-manager.php:753
|
578 |
-
msgid "Special Cases when WordPress should send a Tweet"
|
579 |
-
msgstr "Cas Particuliers lorsque WordPress doit envoyer un tweet"
|
580 |
-
|
581 |
-
# mauvais
|
582 |
-
#: wp-to-twitter-manager.php:756
|
583 |
-
msgid "Do not post status updates by default"
|
584 |
-
msgstr "Ne pas poster de mises à jour de satuts par défaut"
|
585 |
-
|
586 |
-
# post n'est pas commentaire
|
587 |
-
# A revoir
|
588 |
-
#: wp-to-twitter-manager.php:757
|
589 |
-
msgid "By default, all posts meeting other requirements will be posted to Twitter. Check this to change your setting."
|
590 |
-
msgstr "Tous les billets répondant à d'autres modalités seront postés par défaut sur Twitter. Cochez cette case pour changer le réglage."
|
591 |
-
|
592 |
-
#: wp-to-twitter-manager.php:761
|
593 |
-
msgid "Send Twitter Updates on remote publication (Post by Email or XMLRPC Client)"
|
594 |
-
msgstr "Envoyer les mises à jour Twitter sur publication distante (Posté par Email ou Client XMLRPC )"
|
595 |
-
|
596 |
-
#: wp-to-twitter-manager.php:765
|
597 |
-
msgid "Update Twitter when a post is published using QuickPress"
|
598 |
-
msgstr "Mettre à jour Twitter lorsqu'un billet est publié à l'aide de QuickPress"
|
599 |
-
|
600 |
-
#: wp-to-twitter-manager.php:769
|
601 |
-
msgid "Google Analytics Settings"
|
602 |
-
msgstr "Réglages Google Analytics"
|
603 |
-
|
604 |
-
# indificateur pas bon
|
605 |
-
# Modifier pour identifiant
|
606 |
-
#: wp-to-twitter-manager.php:770
|
607 |
-
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."
|
608 |
-
msgstr "Vous pouvez suivre la réponse depuis Twitter grâce à Google Analytics en spécifiant un identifiant de campagne. Vous avez le choix entre un identifiant statique ou dynamique. Les identifiants statiques ne changent pas d'un billet à l'autre tandis que les dynamiques sont tirés d'informations liées à un billet spécifique. Les identifiants dynamiques vous permettront d'analyser vos statistiques par variable additionnelle."
|
609 |
-
|
610 |
-
#: wp-to-twitter-manager.php:774
|
611 |
-
msgid "Use a Static Identifier with WP-to-Twitter"
|
612 |
-
msgstr "Choisir un identifiant statique avec le plugin WP-to-Twitter"
|
613 |
-
|
614 |
-
#: wp-to-twitter-manager.php:775
|
615 |
-
msgid "Static Campaign identifier for Google Analytics:"
|
616 |
-
msgstr "Identifiant de campagne statique pour Google Analytics :"
|
617 |
-
|
618 |
-
#: wp-to-twitter-manager.php:779
|
619 |
-
msgid "Use a dynamic identifier with Google Analytics and WP-to-Twitter"
|
620 |
-
msgstr "Choisir un identifiant dynamique avec Google Analytics et le plugin WP-to-Twitter"
|
621 |
-
|
622 |
-
#: wp-to-twitter-manager.php:780
|
623 |
-
msgid "What dynamic identifier would you like to use?"
|
624 |
-
msgstr "Quel identifiant dynamique choisissez-vous ?"
|
625 |
-
|
626 |
-
#: wp-to-twitter-manager.php:782
|
627 |
-
msgid "Category"
|
628 |
-
msgstr "Catégorie"
|
629 |
-
|
630 |
-
#: wp-to-twitter-manager.php:783
|
631 |
-
msgid "Post ID"
|
632 |
-
msgstr "ID du billet"
|
633 |
-
|
634 |
-
#: wp-to-twitter-manager.php:784
|
635 |
-
msgid "Post Title"
|
636 |
-
msgstr "Titre du billet"
|
637 |
-
|
638 |
-
#: wp-to-twitter-manager.php:785
|
639 |
-
msgid "Author"
|
640 |
-
msgstr "Auteur"
|
641 |
-
|
642 |
-
#: wp-to-twitter-manager.php:790
|
643 |
-
msgid "Individual Authors"
|
644 |
-
msgstr "Auteurs individuels"
|
645 |
-
|
646 |
-
#: wp-to-twitter-manager.php:793
|
647 |
-
msgid "Authors have individual Twitter accounts"
|
648 |
-
msgstr "Auteurs avec compte Twitter personnel"
|
649 |
-
|
650 |
-
#: wp-to-twitter-manager.php:793
|
651 |
-
msgid "Authors can set their own Twitter username and password in their user profile."
|
652 |
-
msgstr "Les auteurs peuvent choisir leur nom d'utilisateur et mot de passe Twitter dans leur profil."
|
653 |
-
|
654 |
-
#: wp-to-twitter-manager.php:797
|
655 |
-
msgid "Disable Error Messages"
|
656 |
-
msgstr "Messages d'erreur désactivés"
|
657 |
-
|
658 |
-
#: wp-to-twitter-manager.php:800
|
659 |
-
msgid "Disable global URL shortener error messages."
|
660 |
-
msgstr "Désactiver l'ensemble des messages d'erreurs de réduction d'URL."
|
661 |
-
|
662 |
-
#: wp-to-twitter-manager.php:804
|
663 |
-
msgid "Disable global Twitter API error messages."
|
664 |
-
msgstr "Désactiver l'ensemble des messages d'erreurs d'API sur Twitter."
|
665 |
-
|
666 |
-
#: wp-to-twitter-manager.php:810
|
667 |
-
msgid "Save Advanced WP->Twitter Options"
|
668 |
-
msgstr "Enregistrer les options avancées de WP->Twitter "
|
669 |
-
|
670 |
-
#: wp-to-twitter-manager.php:824
|
671 |
-
msgid "Limit Updating Categories"
|
672 |
-
msgstr "Limitation des catégories mises à jour"
|
673 |
-
|
674 |
-
#: wp-to-twitter-manager.php:828
|
675 |
-
msgid "Select which blog categories will be Tweeted. "
|
676 |
-
msgstr "Sélectionner les catégories du blog à tweeter"
|
677 |
-
|
678 |
-
#: wp-to-twitter-manager.php:831
|
679 |
-
msgid "<em>Category limits are disabled.</em>"
|
680 |
-
msgstr " <em>Les limitations de catégories sont désactivées.</em>"
|
681 |
-
|
682 |
-
#: wp-to-twitter-manager.php:845
|
683 |
-
msgid "Check Support"
|
684 |
-
msgstr "Support de vérification"
|
685 |
-
|
686 |
-
#: wp-to-twitter-manager.php:845
|
687 |
-
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."
|
688 |
-
msgstr "Vérifiez que votre serveur supporte les demandes du <a href=\"http://www.joedolson.com/articles/wp-to-twitter/\">plugin WP to Twitter</a> vers Twitter et les API de réduction d'URL. Une mise à jour de statut sera envoyée à Twitter ainsi qu'une réduction d'URL réalisée en utilisant les méthodes que vous aurez choisies."
|
689 |
-
|
690 |
-
#. #-#-#-#-# plugin.pot (WP to Twitter 2.1.1) #-#-#-#-#
|
691 |
-
#. Plugin Name of the plugin/theme
|
692 |
-
#: wp-to-twitter.php:853
|
693 |
-
msgid "WP to Twitter"
|
694 |
-
msgstr "Plugin WP to Twitter"
|
695 |
-
|
696 |
-
#: wp-to-twitter.php:928
|
697 |
-
msgid "Don't Tweet this post."
|
698 |
-
msgstr "Ne pas poster ce billet sur Twitter."
|
699 |
-
|
700 |
-
#: wp-to-twitter.php:938
|
701 |
-
msgid "This URL is direct and has not been shortened: "
|
702 |
-
msgstr "C'est URL est une URL directe qui n'a pas été réduite :"
|
703 |
-
|
704 |
-
#: wp-to-twitter.php:990
|
705 |
-
#: wp-to-twitter.php:1009
|
706 |
-
msgid "WP to Twitter User Settings"
|
707 |
-
msgstr "Réglages de l'utilisateur du plugin WP to Twitter"
|
708 |
-
|
709 |
-
#: wp-to-twitter.php:1001
|
710 |
-
#: wp-to-twitter.php:1014
|
711 |
-
msgid "Enter your own Twitter username."
|
712 |
-
msgstr "Saisissez votre nom d'utilisateur Twitter."
|
713 |
-
|
714 |
-
#: wp-to-twitter.php:1005
|
715 |
-
#: wp-to-twitter.php:1018
|
716 |
-
msgid "Enter your own Twitter password."
|
717 |
-
msgstr "Saisissez votre mot de passe Twitter"
|
718 |
-
|
719 |
-
#: wp-to-twitter.php:1005
|
720 |
-
#: wp-to-twitter.php:1018
|
721 |
-
msgid "<em>Password saved</em>"
|
722 |
-
msgstr "<em>Mot de passe enregistré</em>"
|
723 |
-
|
724 |
-
#: wp-to-twitter.php:1013
|
725 |
-
msgid "Your Twitter Username"
|
726 |
-
msgstr "Nom d'utilisateur Twitter"
|
727 |
-
|
728 |
-
#: wp-to-twitter.php:1017
|
729 |
-
msgid "Your Twitter Password"
|
730 |
-
msgstr "Mot de passe Twitter"
|
731 |
-
|
732 |
-
#: wp-to-twitter.php:1061
|
733 |
-
msgid "Check the categories you want to tweet:"
|
734 |
-
msgstr "Cochez les catégories que vous souhaitez tweeter :"
|
735 |
-
|
736 |
-
#: wp-to-twitter.php:1078
|
737 |
-
msgid "Set Categories"
|
738 |
-
msgstr "Configurer les catégories"
|
739 |
-
|
740 |
-
#: wp-to-twitter.php:1147
|
741 |
-
msgid "<p>Couldn't locate the settings page.</p>"
|
742 |
-
msgstr "<p>Page de réglages introuvable.</p>"
|
743 |
-
|
744 |
-
#: wp-to-twitter.php:1152
|
745 |
-
msgid "Settings"
|
746 |
-
msgstr "Réglages"
|
747 |
-
|
748 |
-
#. Plugin URI of the plugin/theme
|
749 |
-
msgid "http://www.joedolson.com/articles/wp-to-twitter/"
|
750 |
-
msgstr "http://www.joedolson.com/articles/wp-to-twitter/"
|
751 |
-
|
752 |
-
#. Description of the plugin/theme
|
753 |
-
msgid "Updates Twitter when you create a new blog post or add to your blogroll using Cli.gs. With a Cli.gs API key, creates a clig in your Cli.gs account with the name of your post as the title."
|
754 |
-
msgstr "Mises à jour Twitter lorsque vous créez un nouveau billet ou ajoutez un lien à votre blogroll à l'aide de Cli.gs. La clé API Cli.gs vous permet de créer un clig dans votre compte Cli.gs en prenant le nom de votre billet comme titre."
|
755 |
-
|
756 |
-
#. Author of the plugin/theme
|
757 |
-
msgid "Joseph Dolson"
|
758 |
-
msgstr "Joseph Dolson"
|
759 |
-
|
760 |
-
#. Author URI of the plugin/theme
|
761 |
-
msgid "http://www.joedolson.com/"
|
762 |
-
msgstr "http://www.joedolson.com/"
|
763 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wp-to-twitter-it_IT.mo
DELETED
Binary file
|
wp-to-twitter-it_IT.po
DELETED
@@ -1,1462 +0,0 @@
|
|
1 |
-
# SOME DESCRIPTIVE TITLE.
|
2 |
-
# Copyright (C) YEAR Joseph Dolson
|
3 |
-
# This file is distributed under the same license as the PACKAGE package.
|
4 |
-
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
5 |
-
#
|
6 |
-
msgid ""
|
7 |
-
msgstr ""
|
8 |
-
"Project-Id-Version: WP to Twitter in italiano\n"
|
9 |
-
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-to-twitter\n"
|
10 |
-
"POT-Creation-Date: 2012-01-05 21:17:55+00:00\n"
|
11 |
-
"PO-Revision-Date: 2012-01-11 09:50+0100\n"
|
12 |
-
"Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
|
13 |
-
"Language-Team: Gianni Diurno | gidibao.net & charmingpress.com\n"
|
14 |
-
"MIME-Version: 1.0\n"
|
15 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
-
"Content-Transfer-Encoding: 8bit\n"
|
17 |
-
"X-Poedit-Language: Italian\n"
|
18 |
-
"X-Poedit-Country: ITALY\n"
|
19 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
20 |
-
"X-Poedit-Basepath: ../\n"
|
21 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
22 |
-
"X-Poedit-SearchPath-0: .\n"
|
23 |
-
|
24 |
-
#: wp-to-twitter-manager.php:6
|
25 |
-
msgid "WP to Twitter Errors Cleared"
|
26 |
-
msgstr "Gli errori WP to Twitter sono stati azzerati"
|
27 |
-
|
28 |
-
#: wp-to-twitter-manager.php:94
|
29 |
-
msgid "WP to Twitter is now connected with Twitter."
|
30 |
-
msgstr "WP to Twitter é ora connesso a Twitter."
|
31 |
-
|
32 |
-
#: wp-to-twitter-manager.php:104
|
33 |
-
msgid "OAuth Authentication Data Cleared."
|
34 |
-
msgstr "I dati della autentificazione OAuth sono stati svuotati."
|
35 |
-
|
36 |
-
#: wp-to-twitter-manager.php:111
|
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-manager.php:118
|
41 |
-
msgid "OAuth Authentication response not understood."
|
42 |
-
msgstr "Risposta Autentificazione OAuth non valida."
|
43 |
-
|
44 |
-
#: wp-to-twitter-manager.php:128
|
45 |
-
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! "
|
46 |
-
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!"
|
47 |
-
|
48 |
-
#: wp-to-twitter-manager.php:130
|
49 |
-
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. "
|
50 |
-
msgstr "Non é stato possibile contattare i server di Twitter per comunicare il tuo <strong>nuovo link</strong>. Prova a compiere manualmente l'operazione."
|
51 |
-
|
52 |
-
#: wp-to-twitter-manager.php:162
|
53 |
-
msgid "WP to Twitter Advanced Options Updated"
|
54 |
-
msgstr "Le opzioni avanzate di WP to Twitter sono state aggiornate"
|
55 |
-
|
56 |
-
#: wp-to-twitter-manager.php:184
|
57 |
-
msgid "You must add your Bit.ly login and API key in order to shorten URLs with Bit.ly."
|
58 |
-
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."
|
59 |
-
|
60 |
-
#: wp-to-twitter-manager.php:188
|
61 |
-
msgid "You must add your YOURLS remote URL, login, and password in order to shorten URLs with a remote installation of YOURLS."
|
62 |
-
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."
|
63 |
-
|
64 |
-
#: wp-to-twitter-manager.php:192
|
65 |
-
msgid "You must add your YOURLS server path in order to shorten URLs with a remote installation of YOURLS."
|
66 |
-
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."
|
67 |
-
|
68 |
-
#: wp-to-twitter-manager.php:195
|
69 |
-
msgid "WP to Twitter Options Updated"
|
70 |
-
msgstr "Le opzioni di WP to Twitter sono state aggiornate"
|
71 |
-
|
72 |
-
#: wp-to-twitter-manager.php:203
|
73 |
-
msgid "Category limits updated."
|
74 |
-
msgstr "I limiti per la categoria sono stati aggiornati."
|
75 |
-
|
76 |
-
#: wp-to-twitter-manager.php:207
|
77 |
-
msgid "Category limits unset."
|
78 |
-
msgstr "Le limitazioni alle categorie non sono state impostate."
|
79 |
-
|
80 |
-
#: wp-to-twitter-manager.php:214
|
81 |
-
msgid "YOURLS password updated. "
|
82 |
-
msgstr "La password di YOURLS é stata aggiornata."
|
83 |
-
|
84 |
-
#: wp-to-twitter-manager.php:217
|
85 |
-
msgid "YOURLS password deleted. You will be unable to use your remote YOURLS account to create short URLS."
|
86 |
-
msgstr "La tua password di YOURLS é stata cancellata. Non potrai utilizzare il tuo account remoto YOURLS per la creazione di URL brevi."
|
87 |
-
|
88 |
-
#: wp-to-twitter-manager.php:219
|
89 |
-
msgid "Failed to save your YOURLS password! "
|
90 |
-
msgstr "Non é stato possibile salvare la tua password di YOURLS!"
|
91 |
-
|
92 |
-
#: wp-to-twitter-manager.php:223
|
93 |
-
msgid "YOURLS username added. "
|
94 |
-
msgstr "Il nome utente YOURLS é stato aggiunto."
|
95 |
-
|
96 |
-
#: wp-to-twitter-manager.php:227
|
97 |
-
msgid "YOURLS API url added. "
|
98 |
-
msgstr "L'url alla API YOURLS é stato aggiunto. "
|
99 |
-
|
100 |
-
#: wp-to-twitter-manager.php:230
|
101 |
-
msgid "YOURLS API url removed. "
|
102 |
-
msgstr "L'url alla API YOURLS é stato rimosso. "
|
103 |
-
|
104 |
-
#: wp-to-twitter-manager.php:235
|
105 |
-
msgid "YOURLS local server path added. "
|
106 |
-
msgstr "Il percorso al server locale di YOURLS é stato aggiunto. "
|
107 |
-
|
108 |
-
#: wp-to-twitter-manager.php:237
|
109 |
-
msgid "The path to your YOURLS installation is not correct. "
|
110 |
-
msgstr "Il percorso alla tua installazione di YOURLS non é corretto. "
|
111 |
-
|
112 |
-
#: wp-to-twitter-manager.php:241
|
113 |
-
msgid "YOURLS local server path removed. "
|
114 |
-
msgstr "Il percorso al server locale di YOURLS é stato rimosso. "
|
115 |
-
|
116 |
-
#: wp-to-twitter-manager.php:246
|
117 |
-
msgid "YOURLS will use Post ID for short URL slug."
|
118 |
-
msgstr "YOURLS utilizzerà Post ID per lo slug degli URL brevi."
|
119 |
-
|
120 |
-
#: wp-to-twitter-manager.php:248
|
121 |
-
msgid "YOURLS will use your custom keyword for short URL slug."
|
122 |
-
msgstr "YOURLS utilizzerà la tua keyword personalizzata per lo slug degli URL brevi."
|
123 |
-
|
124 |
-
#: wp-to-twitter-manager.php:252
|
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-manager.php:260
|
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-manager.php:264
|
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-manager.php:266
|
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-manager.php:272
|
141 |
-
msgid "Bit.ly API Key Updated."
|
142 |
-
msgstr "La chiave API di Bit.ly é stata aggiornata."
|
143 |
-
|
144 |
-
#: wp-to-twitter-manager.php:275
|
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-manager.php:277
|
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-manager.php:281
|
153 |
-
msgid " Bit.ly User Login Updated."
|
154 |
-
msgstr " Il login utente per Bit.ly é stato aggiornato."
|
155 |
-
|
156 |
-
#: wp-to-twitter-manager.php:284
|
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-manager.php:286
|
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-manager.php:309
|
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-manager.php:311
|
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-manager.php:314
|
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-manager.php:322
|
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-manager.php:325
|
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-manager.php:329
|
185 |
-
msgid "You have not connected WordPress to Twitter."
|
186 |
-
msgstr "Non hai connesso WordPress a Twitter."
|
187 |
-
|
188 |
-
#: wp-to-twitter-manager.php:333
|
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-manager.php:337
|
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-manager.php:354
|
197 |
-
msgid "WP to Twitter Options"
|
198 |
-
msgstr "Opzioni WP to Twitter"
|
199 |
-
|
200 |
-
#: wp-to-twitter-manager.php:359
|
201 |
-
msgid "Pledge to new features"
|
202 |
-
msgstr "Nuove funzioni in arrivo"
|
203 |
-
|
204 |
-
#: wp-to-twitter-manager.php:360
|
205 |
-
#: wp-to-twitter.php:906
|
206 |
-
msgid "Make a Donation"
|
207 |
-
msgstr "Effettua una donazione"
|
208 |
-
|
209 |
-
#: wp-to-twitter-manager.php:360
|
210 |
-
msgid "View Settings"
|
211 |
-
msgstr "Visualizza impostazioni"
|
212 |
-
|
213 |
-
#: wp-to-twitter-manager.php:360
|
214 |
-
#: wp-to-twitter.php:906
|
215 |
-
msgid "Get Support"
|
216 |
-
msgstr "Supporto"
|
217 |
-
|
218 |
-
#: wp-to-twitter-manager.php:376
|
219 |
-
msgid "<strong>Notice</strong>: I can no longer provide help with WP to Twitter without your support. My apologies."
|
220 |
-
msgstr "<strong>Avviso</strong>: non sono più in grado di offrire un supporto gratuito su WP to Twitter."
|
221 |
-
|
222 |
-
#: wp-to-twitter-manager.php:381
|
223 |
-
msgid "Shortcodes available in post update templates:"
|
224 |
-
msgstr "Shortcode disponibili nei template aggiornamento post:"
|
225 |
-
|
226 |
-
#: wp-to-twitter-manager.php:383
|
227 |
-
msgid "<code>#title#</code>: the title of your blog post"
|
228 |
-
msgstr "<code>#title#</code>: il titolo del tuo post"
|
229 |
-
|
230 |
-
#: wp-to-twitter-manager.php:384
|
231 |
-
msgid "<code>#blog#</code>: the title of your blog"
|
232 |
-
msgstr "<code>#blog#</code>: il titolo del tuo blog"
|
233 |
-
|
234 |
-
#: wp-to-twitter-manager.php:385
|
235 |
-
msgid "<code>#post#</code>: a short excerpt of the post content"
|
236 |
-
msgstr "<code>#post#</code>: un breve riassunto dei contenuti del post"
|
237 |
-
|
238 |
-
#: wp-to-twitter-manager.php:386
|
239 |
-
msgid "<code>#category#</code>: the first selected category for the post"
|
240 |
-
msgstr "<code>#category#</code>: la prima categoria selezionata per il post"
|
241 |
-
|
242 |
-
#: wp-to-twitter-manager.php:387
|
243 |
-
msgid "<code>#date#</code>: the post date"
|
244 |
-
msgstr "<code>#date#</code>: la data del post"
|
245 |
-
|
246 |
-
#: wp-to-twitter-manager.php:388
|
247 |
-
msgid "<code>#url#</code>: the post URL"
|
248 |
-
msgstr "<code>#url#</code>: l'URL del post"
|
249 |
-
|
250 |
-
#: wp-to-twitter-manager.php:389
|
251 |
-
msgid "<code>#author#</code>: the post author"
|
252 |
-
msgstr "<code>#author#</code>: l'autore del post"
|
253 |
-
|
254 |
-
#: wp-to-twitter-manager.php:390
|
255 |
-
msgid "<code>#account#</code>: the twitter @reference for the account (or the author, if author settings are enabled and set.)"
|
256 |
-
msgstr "<code>#account#</code>: il riferimento Twitter @ per l'account (o per l'autore, previa attivazione ed impostazione.)"
|
257 |
-
|
258 |
-
#: wp-to-twitter-manager.php:392
|
259 |
-
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>"
|
260 |
-
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>"
|
261 |
-
|
262 |
-
#: wp-to-twitter-manager.php:397
|
263 |
-
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>"
|
264 |
-
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>"
|
265 |
-
|
266 |
-
#: wp-to-twitter-manager.php:401
|
267 |
-
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>"
|
268 |
-
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>"
|
269 |
-
|
270 |
-
#: wp-to-twitter-manager.php:408
|
271 |
-
msgid "Clear 'WP to Twitter' Error Messages"
|
272 |
-
msgstr "Svuota i messaggiodi errore 'WP to Twitter'"
|
273 |
-
|
274 |
-
#: wp-to-twitter-manager.php:421
|
275 |
-
msgid "Basic Settings"
|
276 |
-
msgstr "Impostazioni di base"
|
277 |
-
|
278 |
-
#: wp-to-twitter-manager.php:425
|
279 |
-
#: wp-to-twitter-manager.php:489
|
280 |
-
msgid "Save WP->Twitter Options"
|
281 |
-
msgstr "Salva le opzioni WP->Twitter"
|
282 |
-
|
283 |
-
#: wp-to-twitter-manager.php:455
|
284 |
-
msgid "Settings for Comments"
|
285 |
-
msgstr "Impostazioni commenti"
|
286 |
-
|
287 |
-
#: wp-to-twitter-manager.php:458
|
288 |
-
msgid "Update Twitter when new comments are posted"
|
289 |
-
msgstr "Aggiorna Twitter quando vengono inviati nuovi commenti"
|
290 |
-
|
291 |
-
#: wp-to-twitter-manager.php:459
|
292 |
-
msgid "Text for new comments:"
|
293 |
-
msgstr "Testo per nuovi commenti:"
|
294 |
-
|
295 |
-
#: wp-to-twitter-manager.php:461
|
296 |
-
msgid "In addition to the above short tags, comment templates can use <code>#commenter#</code> to post the commenter's provided name in the Tweet. <strong>Use this feature at your own risk</strong>, as it provides the ability for anybody who can post a comment on your site to post a phrase of their choice in your Twitter stream."
|
297 |
-
msgstr "In aggiunta agli short tag di cui sopra, puoi utilizzare <code>#commenter#</code> per pubblicare il nome del commentatore del messaggio. <strong>Usa a tuo rischio questa funzione</strong> perchè chiunque possa inserire un commento nei tuoi articoli sarà in grado di pubblicare una frase di suo piacimento nel tuo Twitter stream."
|
298 |
-
|
299 |
-
#: wp-to-twitter-manager.php:464
|
300 |
-
msgid "Settings for Links"
|
301 |
-
msgstr "Impostazioni link"
|
302 |
-
|
303 |
-
#: wp-to-twitter-manager.php:467
|
304 |
-
msgid "Update Twitter when you post a Blogroll link"
|
305 |
-
msgstr "Aggiorna Twitter quando viene aggiunto un nuovo link al blogroll"
|
306 |
-
|
307 |
-
#: wp-to-twitter-manager.php:468
|
308 |
-
msgid "Text for new link updates:"
|
309 |
-
msgstr "Testo per gli aggiornamenti di un nuovo link:"
|
310 |
-
|
311 |
-
#: wp-to-twitter-manager.php:468
|
312 |
-
msgid "Available shortcodes: <code>#url#</code>, <code>#title#</code>, and <code>#description#</code>."
|
313 |
-
msgstr "Shortcode disponibili: <code>#url#</code>, <code>#title#</code> e <code>#description#</code>."
|
314 |
-
|
315 |
-
#: wp-to-twitter-manager.php:472
|
316 |
-
msgid "Choose your short URL service (account settings below)"
|
317 |
-
msgstr "Scegli il tuo servizio per gli URL brevi (impostazioni account qui sotto)"
|
318 |
-
|
319 |
-
#: wp-to-twitter-manager.php:475
|
320 |
-
msgid "Don't shorten URLs."
|
321 |
-
msgstr "Non usare gli URL brevi"
|
322 |
-
|
323 |
-
#: wp-to-twitter-manager.php:476
|
324 |
-
msgid "Use Su.pr for my URL shortener."
|
325 |
-
msgstr "Usa Su.pr per creare gli URL brevi."
|
326 |
-
|
327 |
-
#: wp-to-twitter-manager.php:477
|
328 |
-
msgid "Use Bit.ly for my URL shortener."
|
329 |
-
msgstr "Usa Bit.ly per gli URL brevi"
|
330 |
-
|
331 |
-
#: wp-to-twitter-manager.php:478
|
332 |
-
msgid "Use Goo.gl as a URL shortener."
|
333 |
-
msgstr "Usa Goo.gl per gli URL brevi."
|
334 |
-
|
335 |
-
#: wp-to-twitter-manager.php:479
|
336 |
-
msgid "YOURLS (installed on this server)"
|
337 |
-
msgstr "YOURLS (intallato in questo server)"
|
338 |
-
|
339 |
-
#: wp-to-twitter-manager.php:480
|
340 |
-
msgid "YOURLS (installed on a remote server)"
|
341 |
-
msgstr "YOURLS (intallato in un server remoto)"
|
342 |
-
|
343 |
-
#: wp-to-twitter-manager.php:481
|
344 |
-
msgid "Use WordPress as a URL shortener."
|
345 |
-
msgstr "Usa WordPress per gli URL brevi."
|
346 |
-
|
347 |
-
#: wp-to-twitter-manager.php:483
|
348 |
-
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."
|
349 |
-
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."
|
350 |
-
|
351 |
-
#: wp-to-twitter-manager.php:498
|
352 |
-
msgid "<abbr title=\"Uniform Resource Locator\">URL</abbr> Shortener Account Settings"
|
353 |
-
msgstr "Impostazione account abbreviatore <abbr title=\"Uniform Resource Locator\">URL</abbr>"
|
354 |
-
|
355 |
-
#: wp-to-twitter-manager.php:502
|
356 |
-
msgid "Your Su.pr account details"
|
357 |
-
msgstr "Dati account Su.pr"
|
358 |
-
|
359 |
-
#: wp-to-twitter-manager.php:507
|
360 |
-
msgid "Your Su.pr Username:"
|
361 |
-
msgstr "Nome utente Su.pr:"
|
362 |
-
|
363 |
-
#: wp-to-twitter-manager.php:511
|
364 |
-
msgid "Your Su.pr <abbr title='application programming interface'>API</abbr> Key:"
|
365 |
-
msgstr "La tua chiave <abbr title='application programming interface'>API</abbr> di Su.pr:"
|
366 |
-
|
367 |
-
#: wp-to-twitter-manager.php:517
|
368 |
-
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."
|
369 |
-
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."
|
370 |
-
|
371 |
-
#: wp-to-twitter-manager.php:522
|
372 |
-
msgid "Your Bit.ly account details"
|
373 |
-
msgstr "Dati account Bit.ly"
|
374 |
-
|
375 |
-
#: wp-to-twitter-manager.php:526
|
376 |
-
msgid "Your Bit.ly username:"
|
377 |
-
msgstr "Nome utente Bit.ly:"
|
378 |
-
|
379 |
-
#: wp-to-twitter-manager.php:528
|
380 |
-
msgid "This must be a standard Bit.ly account. Your Twitter or Facebook log-in will not work."
|
381 |
-
msgstr "Deve essere un account Bit.ly standard. Il tuo login Twitter o Facebook non funzionerà."
|
382 |
-
|
383 |
-
#: wp-to-twitter-manager.php:530
|
384 |
-
msgid "Your Bit.ly <abbr title='application programming interface'>API</abbr> Key:"
|
385 |
-
msgstr "La tua chiave <abbr title='application programming interface'>API</abbr> di Bit.ly:"
|
386 |
-
|
387 |
-
#: wp-to-twitter-manager.php:537
|
388 |
-
msgid "Save Bit.ly API Key"
|
389 |
-
msgstr "Salva la chiave API di Bit.ly"
|
390 |
-
|
391 |
-
#: wp-to-twitter-manager.php:537
|
392 |
-
msgid "Clear Bit.ly API Key"
|
393 |
-
msgstr "Svuota la chiave API di Bit.ly"
|
394 |
-
|
395 |
-
#: wp-to-twitter-manager.php:537
|
396 |
-
msgid "A Bit.ly API key and username is required to shorten URLs via the Bit.ly API and WP to Twitter."
|
397 |
-
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."
|
398 |
-
|
399 |
-
#: wp-to-twitter-manager.php:542
|
400 |
-
msgid "Your YOURLS account details"
|
401 |
-
msgstr "I dettagli del tuo account YOURLS"
|
402 |
-
|
403 |
-
#: wp-to-twitter-manager.php:546
|
404 |
-
msgid "Path to your YOURLS config file (Local installations)"
|
405 |
-
msgstr "Percorso al file di configurazione YOURLS (installazioni locali)"
|
406 |
-
|
407 |
-
#: wp-to-twitter-manager.php:547
|
408 |
-
#: wp-to-twitter-manager.php:551
|
409 |
-
msgid "Example:"
|
410 |
-
msgstr "Esempio:"
|
411 |
-
|
412 |
-
#: wp-to-twitter-manager.php:550
|
413 |
-
msgid "URI to the YOURLS API (Remote installations)"
|
414 |
-
msgstr "URI alla API di YOURLS (installazioni remote)"
|
415 |
-
|
416 |
-
#: wp-to-twitter-manager.php:554
|
417 |
-
msgid "Your YOURLS username:"
|
418 |
-
msgstr "Nome utente YOURLS:"
|
419 |
-
|
420 |
-
#: wp-to-twitter-manager.php:558
|
421 |
-
msgid "Your YOURLS password:"
|
422 |
-
msgstr "Password YOURLS:"
|
423 |
-
|
424 |
-
#: wp-to-twitter-manager.php:558
|
425 |
-
msgid "<em>Saved</em>"
|
426 |
-
msgstr "<em>Salvato</em>"
|
427 |
-
|
428 |
-
#: wp-to-twitter-manager.php:562
|
429 |
-
msgid "Post ID for YOURLS url slug."
|
430 |
-
msgstr "ID post per lo slug degli url di YOURLS."
|
431 |
-
|
432 |
-
#: wp-to-twitter-manager.php:563
|
433 |
-
msgid "Custom keyword for YOURLS url slug."
|
434 |
-
msgstr "Keyword personalizzata per lo slug degli url di YOURLS."
|
435 |
-
|
436 |
-
#: wp-to-twitter-manager.php:564
|
437 |
-
msgid "Default: sequential URL numbering."
|
438 |
-
msgstr "Predefinito: numerazione sequenziale URL."
|
439 |
-
|
440 |
-
#: wp-to-twitter-manager.php:570
|
441 |
-
msgid "Save YOURLS Account Info"
|
442 |
-
msgstr "Salva le info account di YOURLS"
|
443 |
-
|
444 |
-
#: wp-to-twitter-manager.php:570
|
445 |
-
msgid "Clear YOURLS password"
|
446 |
-
msgstr "Svuota la password di YOURLS"
|
447 |
-
|
448 |
-
#: wp-to-twitter-manager.php:570
|
449 |
-
msgid "A YOURLS password and username is required to shorten URLs via the remote YOURLS API and WP to Twitter."
|
450 |
-
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."
|
451 |
-
|
452 |
-
#: wp-to-twitter-manager.php:582
|
453 |
-
msgid "Advanced Settings"
|
454 |
-
msgstr "Impostazioni avanzate"
|
455 |
-
|
456 |
-
#: wp-to-twitter-manager.php:586
|
457 |
-
#: wp-to-twitter-manager.php:687
|
458 |
-
msgid "Save Advanced WP->Twitter Options"
|
459 |
-
msgstr "Salva avanzate WP->Opzioni Twitter"
|
460 |
-
|
461 |
-
#: wp-to-twitter-manager.php:588
|
462 |
-
msgid "Advanced Tweet settings"
|
463 |
-
msgstr "Opzioni messaggio avanzate"
|
464 |
-
|
465 |
-
#: wp-to-twitter-manager.php:590
|
466 |
-
msgid "Add tags as hashtags on Tweets"
|
467 |
-
msgstr "Aggiungi ai messaggi i tag come fossero degli hashtag "
|
468 |
-
|
469 |
-
#: wp-to-twitter-manager.php:590
|
470 |
-
msgid "Strip nonalphanumeric characters"
|
471 |
-
msgstr "Rimuovi caratteri non alfanumerici"
|
472 |
-
|
473 |
-
#: wp-to-twitter-manager.php:591
|
474 |
-
msgid "Spaces replaced with:"
|
475 |
-
msgstr "Sostituisci gli spazi con:"
|
476 |
-
|
477 |
-
#: wp-to-twitter-manager.php:593
|
478 |
-
msgid "Default replacement is an underscore (<code>_</code>). Use <code>[ ]</code> to remove spaces entirely."
|
479 |
-
msgstr "Il sostituto predefinito é un trattino breve (<code>_</code>). Usa <code>[ ]</code> per rimuovere gli spazi completamente."
|
480 |
-
|
481 |
-
#: wp-to-twitter-manager.php:596
|
482 |
-
msgid "Maximum number of tags to include:"
|
483 |
-
msgstr "Numero massimo di tag da includere:"
|
484 |
-
|
485 |
-
#: wp-to-twitter-manager.php:597
|
486 |
-
msgid "Maximum length in characters for included tags:"
|
487 |
-
msgstr "Lunghezza massima in caratteri per i tag inclusi:"
|
488 |
-
|
489 |
-
#: wp-to-twitter-manager.php:598
|
490 |
-
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."
|
491 |
-
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."
|
492 |
-
|
493 |
-
#: wp-to-twitter-manager.php:601
|
494 |
-
msgid "Length of post excerpt (in characters):"
|
495 |
-
msgstr "Lunghezza riassunto messaggi (in caratteri)"
|
496 |
-
|
497 |
-
#: wp-to-twitter-manager.php:601
|
498 |
-
msgid "By default, extracted from the post itself. If you use the 'Excerpt' field, that will be used instead."
|
499 |
-
msgstr "Come funzione predefinita, gli estratti verranno generati in automatico. Utilizzassi il campo 'Excerpt', questi avrà la priorità."
|
500 |
-
|
501 |
-
#: wp-to-twitter-manager.php:604
|
502 |
-
msgid "WP to Twitter Date Formatting:"
|
503 |
-
msgstr "Formattazione data WP to Twitter:"
|
504 |
-
|
505 |
-
#: wp-to-twitter-manager.php:605
|
506 |
-
msgid "Default is from your general settings. <a href='http://codex.wordpress.org/Formatting_Date_and_Time'>Date Formatting Documentation</a>."
|
507 |
-
msgstr "Predefinito dalle impostazioni generali. <a href='http://codex.wordpress.org/Formatting_Date_and_Time'>Info formattazione data</a>."
|
508 |
-
|
509 |
-
#: wp-to-twitter-manager.php:609
|
510 |
-
msgid "Custom text before all Tweets:"
|
511 |
-
msgstr "Testo personalizzato prima di tutti i messaggi:"
|
512 |
-
|
513 |
-
#: wp-to-twitter-manager.php:610
|
514 |
-
msgid "Custom text after all Tweets:"
|
515 |
-
msgstr "Testo personalizzato dopo tutti i messaggi:"
|
516 |
-
|
517 |
-
#: wp-to-twitter-manager.php:613
|
518 |
-
msgid "Custom field for an alternate URL to be shortened and Tweeted:"
|
519 |
-
msgstr "Campo personalizzato riferito ad un URL alternativo da abbreviare ed inviare a Twitter:"
|
520 |
-
|
521 |
-
#: wp-to-twitter-manager.php:614
|
522 |
-
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."
|
523 |
-
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."
|
524 |
-
|
525 |
-
#: wp-to-twitter-manager.php:618
|
526 |
-
msgid "Special Cases when WordPress should send a Tweet"
|
527 |
-
msgstr "Casi particolari nei quali WordPress dovrebbe inviare un messaggio"
|
528 |
-
|
529 |
-
#: wp-to-twitter-manager.php:621
|
530 |
-
msgid "Do not post status updates by default"
|
531 |
-
msgstr "Non aggiornare lo stato dei post (predefinito)"
|
532 |
-
|
533 |
-
#: wp-to-twitter-manager.php:622
|
534 |
-
msgid "By default, all posts meeting other requirements will be posted to Twitter. Check this to change your setting."
|
535 |
-
msgstr "Come funzione predefinita, tutti i post che soddisfano i requisiti saranno pubblicati su Twitter. Metti il segno di spunta per modificare le impostazioni."
|
536 |
-
|
537 |
-
#: wp-to-twitter-manager.php:626
|
538 |
-
msgid "Allow status updates from Quick Edit"
|
539 |
-
msgstr "Permetti aggiornamenti stato via Quick Edit"
|
540 |
-
|
541 |
-
#: wp-to-twitter-manager.php:627
|
542 |
-
msgid "If checked, all posts edited individually or in bulk through the Quick Edit feature will be tweeted."
|
543 |
-
msgstr "Se attivo, tutti gli articoli modificati singolarmente/massa via Quick Edit saranno inviati a Twitter."
|
544 |
-
|
545 |
-
#: wp-to-twitter-manager.php:632
|
546 |
-
msgid "Send Twitter Updates on remote publication (Post by Email or XMLRPC Client)"
|
547 |
-
msgstr "Invio degli aggiornamenti di Twitter via punti di pubblicazione remoti (Email o client XMLRPC)"
|
548 |
-
|
549 |
-
#: wp-to-twitter-manager.php:636
|
550 |
-
msgid "Google Analytics Settings"
|
551 |
-
msgstr "Impostazioni Google Analytics"
|
552 |
-
|
553 |
-
#: wp-to-twitter-manager.php:637
|
554 |
-
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."
|
555 |
-
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."
|
556 |
-
|
557 |
-
#: wp-to-twitter-manager.php:641
|
558 |
-
msgid "Use a Static Identifier with WP-to-Twitter"
|
559 |
-
msgstr "Utilizza un identificatore statico per WP-to-Twitter"
|
560 |
-
|
561 |
-
#: wp-to-twitter-manager.php:642
|
562 |
-
msgid "Static Campaign identifier for Google Analytics:"
|
563 |
-
msgstr "Identificatore statico Google Analytics:"
|
564 |
-
|
565 |
-
#: wp-to-twitter-manager.php:646
|
566 |
-
msgid "Use a dynamic identifier with Google Analytics and WP-to-Twitter"
|
567 |
-
msgstr "Utilizza un identificatore dinamico per Google Analytics e WP-to-Twitter"
|
568 |
-
|
569 |
-
#: wp-to-twitter-manager.php:647
|
570 |
-
msgid "What dynamic identifier would you like to use?"
|
571 |
-
msgstr "Quale identificatore dinamico desideri utilizzare?"
|
572 |
-
|
573 |
-
#: wp-to-twitter-manager.php:649
|
574 |
-
msgid "Category"
|
575 |
-
msgstr "Categoria"
|
576 |
-
|
577 |
-
#: wp-to-twitter-manager.php:650
|
578 |
-
msgid "Post ID"
|
579 |
-
msgstr "ID post"
|
580 |
-
|
581 |
-
#: wp-to-twitter-manager.php:651
|
582 |
-
msgid "Post Title"
|
583 |
-
msgstr "Titolo post"
|
584 |
-
|
585 |
-
#: wp-to-twitter-manager.php:652
|
586 |
-
#: wp-to-twitter-manager.php:666
|
587 |
-
msgid "Author"
|
588 |
-
msgstr "Autore"
|
589 |
-
|
590 |
-
#: wp-to-twitter-manager.php:657
|
591 |
-
msgid "Individual Authors"
|
592 |
-
msgstr "Autori singoli"
|
593 |
-
|
594 |
-
#: wp-to-twitter-manager.php:660
|
595 |
-
msgid "Authors have individual Twitter accounts"
|
596 |
-
msgstr "Gli autori hanno degli account personali su Twitter"
|
597 |
-
|
598 |
-
#: wp-to-twitter-manager.php:660
|
599 |
-
msgid "Authors can add their username in their user profile. This feature can only add an @reference to the author. The @reference is placed using the <code>#account#</code> shortcode, which will pick up the main account if user accounts are not enabled."
|
600 |
-
msgstr "Gli autori possono impostare il proprio nome utente nel loro profilo utente. 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.)"
|
601 |
-
|
602 |
-
#: wp-to-twitter-manager.php:663
|
603 |
-
msgid "Choose the lowest user group that can add their Twitter information"
|
604 |
-
msgstr "Scegli il ruolo utente di minima che può aggiungere le proprie info Twitter "
|
605 |
-
|
606 |
-
#: wp-to-twitter-manager.php:664
|
607 |
-
msgid "Subscriber"
|
608 |
-
msgstr "Sottoscrittore"
|
609 |
-
|
610 |
-
#: wp-to-twitter-manager.php:665
|
611 |
-
msgid "Contributor"
|
612 |
-
msgstr "Collaboratore"
|
613 |
-
|
614 |
-
#: wp-to-twitter-manager.php:667
|
615 |
-
msgid "Editor"
|
616 |
-
msgstr "Editore"
|
617 |
-
|
618 |
-
#: wp-to-twitter-manager.php:668
|
619 |
-
msgid "Administrator"
|
620 |
-
msgstr "Amministratore"
|
621 |
-
|
622 |
-
#: wp-to-twitter-manager.php:673
|
623 |
-
msgid "Disable Error Messages"
|
624 |
-
msgstr "Disattiva i messaggi di errore"
|
625 |
-
|
626 |
-
#: wp-to-twitter-manager.php:675
|
627 |
-
msgid "Disable global URL shortener error messages."
|
628 |
-
msgstr "Disattiva i messaggi di errore abbreviatore URL globale."
|
629 |
-
|
630 |
-
#: wp-to-twitter-manager.php:676
|
631 |
-
msgid "Disable global Twitter API error messages."
|
632 |
-
msgstr "Disattiva i messaggi di errore globali API Twitter."
|
633 |
-
|
634 |
-
#: wp-to-twitter-manager.php:677
|
635 |
-
msgid "Disable notification to implement OAuth"
|
636 |
-
msgstr "Disattiva la notifica per implementare OAuth"
|
637 |
-
|
638 |
-
#: wp-to-twitter-manager.php:679
|
639 |
-
msgid "Get Debugging Data for OAuth Connection"
|
640 |
-
msgstr "Ottieni i dati di Debugging per la connessione OAuth"
|
641 |
-
|
642 |
-
#: wp-to-twitter-manager.php:681
|
643 |
-
msgid "I made a donation, so stop whinging at me, please."
|
644 |
-
msgstr "Ho effettuato una donazione."
|
645 |
-
|
646 |
-
#: wp-to-twitter-manager.php:695
|
647 |
-
msgid "Limit Updating Categories"
|
648 |
-
msgstr "Limite aggiornamento categorie"
|
649 |
-
|
650 |
-
#: wp-to-twitter-manager.php:698
|
651 |
-
msgid "Select which blog categories will be Tweeted. Uncheck all categories to disable category limits."
|
652 |
-
msgstr "Seleziona quali categorie del blog saranno oggetto dei messaggi su Twitter. Seleziona tutte le categorie per disattivare i limiti categoria. "
|
653 |
-
|
654 |
-
#: wp-to-twitter-manager.php:701
|
655 |
-
msgid "<em>Category limits are disabled.</em>"
|
656 |
-
msgstr "<em>Le limitazioni alle categorie non sono attive.</em>"
|
657 |
-
|
658 |
-
#: wp-to-twitter-manager.php:712
|
659 |
-
msgid "Get Plug-in Support"
|
660 |
-
msgstr "Supporto plugin"
|
661 |
-
|
662 |
-
#: wp-to-twitter-manager.php:714
|
663 |
-
msgid "Support requests without a donation will not be answered, but will be treated as bug reports."
|
664 |
-
msgstr "Le richieste di supporto prive di una donazione non riceveranno risposta (saranno considerate come bug report)."
|
665 |
-
|
666 |
-
#: wp-to-twitter-manager.php:723
|
667 |
-
msgid "Check Support"
|
668 |
-
msgstr "Attiva"
|
669 |
-
|
670 |
-
#: wp-to-twitter-manager.php:723
|
671 |
-
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."
|
672 |
-
msgstr "Utilizzare 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."
|
673 |
-
|
674 |
-
#: wp-to-twitter-oauth.php:104
|
675 |
-
msgid "There was an error querying Twitter's servers."
|
676 |
-
msgstr "Si è verificato un errore durante la richiesta ai server di Twitter."
|
677 |
-
|
678 |
-
#: wp-to-twitter-oauth.php:111
|
679 |
-
#: wp-to-twitter-oauth.php:154
|
680 |
-
msgid "Connect to Twitter"
|
681 |
-
msgstr "Collegati a Twitter"
|
682 |
-
|
683 |
-
#: wp-to-twitter-oauth.php:113
|
684 |
-
#: wp-to-twitter-oauth.php:185
|
685 |
-
msgid "Your server time:"
|
686 |
-
msgstr "Ora del tuo server:"
|
687 |
-
|
688 |
-
#: wp-to-twitter-oauth.php:113
|
689 |
-
msgid "Twitter\\'s current server time:"
|
690 |
-
msgstr "Ora del server di Twitter:"
|
691 |
-
|
692 |
-
#: wp-to-twitter-oauth.php:113
|
693 |
-
msgid "If these times are not within 5 minutes of each other, your server will not be able to connect to Twitter."
|
694 |
-
msgstr "Se questi tempi non fossero entro 5 minnuti, il tuo server non sarà in grado di connettersi con Twitter."
|
695 |
-
|
696 |
-
#: wp-to-twitter-oauth.php:114
|
697 |
-
msgid "The process to set up OAuth authentication for your web site is needlessly laborious. However, this is the method available. Note that you will not add your Twitter username or password to WP to Twitter; they are not used in OAuth authentication."
|
698 |
-
msgstr "La procedura di impostazione della autentificazione OAuth per il tuo sito é piuttosto laboriosa nonché confusa. Comunque, questa é l'unica soluzione disponibile. Ti ricordo che non potrai inserire il tuo nome utente oppure la password di Twitter in WP to Twitter poiché essi non verranno utilizzati per l'autentificazione OAuth."
|
699 |
-
|
700 |
-
#: wp-to-twitter-oauth.php:117
|
701 |
-
msgid "1. Register this site as an application on "
|
702 |
-
msgstr "1. Registra questo sito come una applicazione sulla "
|
703 |
-
|
704 |
-
#: wp-to-twitter-oauth.php:117
|
705 |
-
msgid "Twitter's application registration page"
|
706 |
-
msgstr "pagina di registrazione applicazione Twitter"
|
707 |
-
|
708 |
-
#: wp-to-twitter-oauth.php:119
|
709 |
-
msgid "If you're not currently logged in, log-in with the Twitter username and password which you want associated with this site"
|
710 |
-
msgstr "Qualora non fossi collegato, utilizza il nome utente e la password di Twitter che desideri associare a questo sito"
|
711 |
-
|
712 |
-
#: wp-to-twitter-oauth.php:120
|
713 |
-
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."
|
714 |
-
msgstr "Il nome della tua applicazione sarà quello che appare dopo \"via\" nel tuo twitter stream. Il nome per la tua applicazione non potrà includere la parola \"Twitter.\" Usa il nome del tuo sito."
|
715 |
-
|
716 |
-
#: wp-to-twitter-oauth.php:121
|
717 |
-
msgid "Your Application Description can be whatever you want."
|
718 |
-
msgstr "La descrizione per la tua applicazione é un testo a tua discrezione."
|
719 |
-
|
720 |
-
#: wp-to-twitter-oauth.php:122
|
721 |
-
msgid "The WebSite and Callback URL should be "
|
722 |
-
msgstr "Il sito web ed il Callback URL dovrebbere essere "
|
723 |
-
|
724 |
-
#: wp-to-twitter-oauth.php:124
|
725 |
-
msgid "Agree to the Developer Rules of the Road and continue."
|
726 |
-
msgstr "Acconsenti a Developer Rules of the Road e prosegui."
|
727 |
-
|
728 |
-
#: wp-to-twitter-oauth.php:125
|
729 |
-
msgid "2. Switch to \"Settings\" tab in Twitter apps"
|
730 |
-
msgstr "2. Vai alla tab \"Settings\" sotto Twitter apps"
|
731 |
-
|
732 |
-
#: wp-to-twitter-oauth.php:127
|
733 |
-
msgid "Select \"Read and Write\" for the Application Type"
|
734 |
-
msgstr "Seleziona \"Read and Write\" per il tipo di applicazione"
|
735 |
-
|
736 |
-
#: wp-to-twitter-oauth.php:128
|
737 |
-
msgid "Update the application settings"
|
738 |
-
msgstr "Aggiorna impostazioni applicazione"
|
739 |
-
|
740 |
-
#: wp-to-twitter-oauth.php:129
|
741 |
-
msgid "Return to Details tab and create your access token. Refresh page to view your access tokens."
|
742 |
-
msgstr "Ritorna alla tab Dettaglio e crea il tuo token di accesso. Ricarica la pagina per vedere i tuoi token."
|
743 |
-
|
744 |
-
#: wp-to-twitter-oauth.php:131
|
745 |
-
msgid "Once you have registered your site as an application, you will be provided with four keys."
|
746 |
-
msgstr "Una volta registrato il tuo sito come applicazione, ti saranno fornite quattro chiavi."
|
747 |
-
|
748 |
-
#: wp-to-twitter-oauth.php:132
|
749 |
-
msgid "3. Copy and paste your consumer key and consumer secret into the fields below"
|
750 |
-
msgstr "2. Copia ed incolla nei campi qui sotto la tua consumer key ed il consumer secret"
|
751 |
-
|
752 |
-
#: wp-to-twitter-oauth.php:135
|
753 |
-
msgid "Twitter Consumer Key"
|
754 |
-
msgstr "Twitter Consumer Key"
|
755 |
-
|
756 |
-
#: wp-to-twitter-oauth.php:139
|
757 |
-
msgid "Twitter Consumer Secret"
|
758 |
-
msgstr "Twitter Consumer Secret"
|
759 |
-
|
760 |
-
#: wp-to-twitter-oauth.php:142
|
761 |
-
msgid "4. Copy and paste your Access Token and Access Token Secret into the fields below"
|
762 |
-
msgstr "3. Copia ed incolla nei campi qui sotto il tuo token di accesso e secret"
|
763 |
-
|
764 |
-
#: wp-to-twitter-oauth.php:143
|
765 |
-
msgid "If the Access level reported for your Access Token is not \"Read and write\", you need to go back to step 2 and generate a new Access Token."
|
766 |
-
msgstr "Qualora ti venisse comunicato che il tuo token di accesso non fosse \"Read and write\", dovrai ritornare al passo 2 e generare un nuovo token di accesso."
|
767 |
-
|
768 |
-
#: wp-to-twitter-oauth.php:145
|
769 |
-
msgid "Access Token"
|
770 |
-
msgstr "Token d'accesso"
|
771 |
-
|
772 |
-
#: wp-to-twitter-oauth.php:149
|
773 |
-
msgid "Access Token Secret"
|
774 |
-
msgstr "Token d'accesso - Secret"
|
775 |
-
|
776 |
-
#: wp-to-twitter-oauth.php:164
|
777 |
-
msgid "Disconnect from Twitter"
|
778 |
-
msgstr "Disconnettiti da Twitter"
|
779 |
-
|
780 |
-
#: wp-to-twitter-oauth.php:168
|
781 |
-
msgid "<strong>Troubleshooting tip:</strong> Connected, but getting a notice that your Authentication credentials are missing or incorrect? Check whether your Access token has read and write permission. If not, you'll need to create a new token."
|
782 |
-
msgstr "<strong>Suggerimento:</strong> Sei connesso ma ricevi un avviso nel quale viene indicato che le tue credenziali non sono corrette o inesistenti? Controlla se il tuo token di accesso abbia i permessi di scrittura. Se così non fosse, crea un nuovo token."
|
783 |
-
|
784 |
-
#: wp-to-twitter-oauth.php:171
|
785 |
-
msgid "Twitter Username "
|
786 |
-
msgstr "Nome utente Twitter"
|
787 |
-
|
788 |
-
#: wp-to-twitter-oauth.php:172
|
789 |
-
msgid "Consumer Key "
|
790 |
-
msgstr "Consumer Key "
|
791 |
-
|
792 |
-
#: wp-to-twitter-oauth.php:173
|
793 |
-
msgid "Consumer Secret "
|
794 |
-
msgstr "Consumer Secret "
|
795 |
-
|
796 |
-
#: wp-to-twitter-oauth.php:174
|
797 |
-
msgid "Access Token "
|
798 |
-
msgstr "Token d'accesso"
|
799 |
-
|
800 |
-
#: wp-to-twitter-oauth.php:175
|
801 |
-
msgid "Access Token Secret "
|
802 |
-
msgstr "Token d'accesso - Secret"
|
803 |
-
|
804 |
-
#: wp-to-twitter-oauth.php:179
|
805 |
-
msgid "Disconnect Your WordPress and Twitter Account"
|
806 |
-
msgstr "Scollega il tuo account WordPress e Twitter"
|
807 |
-
|
808 |
-
#: wp-to-twitter-oauth.php:185
|
809 |
-
msgid "Twitter's current server time: "
|
810 |
-
msgstr "Ora del server di Twitter:"
|
811 |
-
|
812 |
-
#: wp-to-twitter-oauth.php:185
|
813 |
-
msgid "If these times are not within 5 minutes of each other, your server could lose it's connection with Twitter."
|
814 |
-
msgstr "Se questi tempi non fossero entro 5 minnuti, il tuo server potrebbe perdere la sua connessione con Twitter."
|
815 |
-
|
816 |
-
#: functions.php:201
|
817 |
-
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."
|
818 |
-
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."
|
819 |
-
|
820 |
-
#: functions.php:295
|
821 |
-
msgid "Please read the FAQ and other Help documents before making a support request."
|
822 |
-
msgstr "Leggi le FAQ e le documentazioni di aiuto prima di inviare una richiesta di supporto."
|
823 |
-
|
824 |
-
#: functions.php:297
|
825 |
-
msgid "Please describe your problem. I'm not psychic."
|
826 |
-
msgstr "Descrivi il tuo problema. Grazie."
|
827 |
-
|
828 |
-
#: functions.php:302
|
829 |
-
msgid "Thank you for supporting the continuing development of this plug-in! I'll get back to you as soon as I can."
|
830 |
-
msgstr "Grazie per il tuo supporto allo sviluppo del plugin. A presto."
|
831 |
-
|
832 |
-
#: functions.php:304
|
833 |
-
msgid "I cannot provide free support, but will treat your request as a bug report, and will incorporate any permanent solutions I discover into the plug-in."
|
834 |
-
msgstr "Sebbene non sia più in grado di fornire un supporto gratuito, farò comunque tesoro delle segnalazioni (bug, etc.) per migliorare il plugin. "
|
835 |
-
|
836 |
-
#: functions.php:314
|
837 |
-
msgid "<strong>Please note</strong>: I do keep records of those who have donated, but if your donation came from somebody other than your account at this web site, you must note this in your message."
|
838 |
-
msgstr "<strong>Nota</strong>: sebbene conservi un elenco dei donatori e la tua donazione provenisse da un nome differente da quello indicato nel tuo account, ti invito a indicarlo nel tuo messaggio."
|
839 |
-
|
840 |
-
#: functions.php:317
|
841 |
-
msgid "From:"
|
842 |
-
msgstr "Da:"
|
843 |
-
|
844 |
-
#: functions.php:320
|
845 |
-
msgid "I have read <a href=\"http://www.joedolson.com/articles/wp-to-twitter/support-2/\">the FAQ for this plug-in</a>."
|
846 |
-
msgstr "Ho letto la pagina <a href=\"http://www.joedolson.com/articles/wp-to-twitter/support-2/\">FAQ di WP to Twitter</a>."
|
847 |
-
|
848 |
-
#: functions.php:323
|
849 |
-
msgid "I have <a href=\"http://www.joedolson.com/donate.php\">made a donation to help support this plug-in</a>."
|
850 |
-
msgstr "Ho contribuito economicamente allo svuiluppo di <a href=\"http://www.joedolson.com/donate.php\">WP to Twitter</a>."
|
851 |
-
|
852 |
-
#: functions.php:329
|
853 |
-
msgid "Send Support Request"
|
854 |
-
msgstr "Invia richiesta supporto"
|
855 |
-
|
856 |
-
#: functions.php:332
|
857 |
-
msgid "The following additional information will be sent with your support request:"
|
858 |
-
msgstr "Le seguenti informazioni saranno inviate insieme alla tua richiesta:"
|
859 |
-
|
860 |
-
#: wp-to-twitter.php:48
|
861 |
-
msgid "WP to Twitter requires PHP version 5 or above with cURL support. Please upgrade PHP or install cURL to run WP to Twitter."
|
862 |
-
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."
|
863 |
-
|
864 |
-
#: wp-to-twitter.php:70
|
865 |
-
msgid "WP to Twitter requires WordPress 2.9.2 or a more recent version, but some features will not work below 3.0.6. <a href=\"http://codex.wordpress.org/Upgrading_WordPress\">Please update WordPress to continue using WP to Twitter with all features!</a>"
|
866 |
-
msgstr "WP to Twitter richiede WordPress 2.9.2 o superiore: alcune opzioni non funzioneranno nelle versioni inferiori alla 3.0.6. <a href=\"http://codex.wordpress.org/Upgrading_WordPress\">Aggiorna la tua versione di WordPress per usare al meglio WP to Twitter!</a>"
|
867 |
-
|
868 |
-
#: wp-to-twitter.php:85
|
869 |
-
msgid "Twitter requires authentication by OAuth. You will need to <a href='%s'>update your settings</a> to complete installation of WP to Twitter."
|
870 |
-
msgstr "Twitter necessita una autentificazione via OAuth. Aggiorna le tue <a href='%s'>impostazioni</a> per completare l'installazione di WP to Twitter."
|
871 |
-
|
872 |
-
#: wp-to-twitter.php:194
|
873 |
-
msgid "200 OK: Success!"
|
874 |
-
msgstr "200 OK: Successo!"
|
875 |
-
|
876 |
-
#: wp-to-twitter.php:198
|
877 |
-
msgid "400 Bad Request: The request was invalid. This is the status code returned during rate limiting."
|
878 |
-
msgstr "400 Bad Request: La richiesta non é valida. L'utilizzo di questo codice é relativo al limite delle chiamate."
|
879 |
-
|
880 |
-
#: wp-to-twitter.php:202
|
881 |
-
msgid "401 Unauthorized: Authentication credentials were missing or incorrect."
|
882 |
-
msgstr "401 Unauthorized: quando mancano oppure sono inesatte le credenziali per l'autentificazione."
|
883 |
-
|
884 |
-
#: wp-to-twitter.php:206
|
885 |
-
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 can include: Too many tweets created in a short time or the same tweet text was submitted twice in a row, among others. This is not an error by WP to Twitter."
|
886 |
-
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 (troppi messaggi creati in poco tempo oppure invio dello stesso testo su più messaggi). Questo tipo di errore non dipende da WP to Twitter."
|
887 |
-
|
888 |
-
#: wp-to-twitter.php:210
|
889 |
-
msgid "500 Internal Server Error: Something is broken at Twitter."
|
890 |
-
msgstr "500 Internal Server Error: problemi interni a Twitter."
|
891 |
-
|
892 |
-
#: wp-to-twitter.php:214
|
893 |
-
msgid "503 Service Unavailable: The Twitter servers are up, but overloaded with requests - Please try again later."
|
894 |
-
msgstr "503 Service Unavailable: i server di Twitter funzionano, ma sono sommersi di richieste. Prova più tardi."
|
895 |
-
|
896 |
-
#: wp-to-twitter.php:218
|
897 |
-
msgid "502 Bad Gateway: Twitter is down or being upgraded."
|
898 |
-
msgstr "502 Bad Gateway: Twitter é down oppure sotto aggiornamento."
|
899 |
-
|
900 |
-
#. #-#-#-#-# plugin.pot (WP to Twitter 2.3.13) #-#-#-#-#
|
901 |
-
#. Plugin Name of the plugin/theme
|
902 |
-
#: wp-to-twitter.php:815
|
903 |
-
msgid "WP to Twitter"
|
904 |
-
msgstr "WP to Twitter"
|
905 |
-
|
906 |
-
#: wp-to-twitter.php:880
|
907 |
-
msgid "Previous Tweets"
|
908 |
-
msgstr "Tweet precedenti"
|
909 |
-
|
910 |
-
#: wp-to-twitter.php:893
|
911 |
-
msgid "Custom Twitter Post"
|
912 |
-
msgstr "Messaggio personalizzato Twitter"
|
913 |
-
|
914 |
-
#: wp-to-twitter.php:902
|
915 |
-
msgid "YOURLS Custom Keyword"
|
916 |
-
msgstr "YOURLS - Custom Keyword"
|
917 |
-
|
918 |
-
#: wp-to-twitter.php:915
|
919 |
-
msgid "Don't Tweet this post."
|
920 |
-
msgstr "Non segnalare a Twitter questo articolo."
|
921 |
-
|
922 |
-
#: wp-to-twitter.php:915
|
923 |
-
msgid "Tweet this post."
|
924 |
-
msgstr "Segnala a Twitter questo articolo."
|
925 |
-
|
926 |
-
#: wp-to-twitter.php:925
|
927 |
-
msgid "This URL is direct and has not been shortened: "
|
928 |
-
msgstr "Questo URL é diretto e non può essere abbreviato: "
|
929 |
-
|
930 |
-
#: wp-to-twitter.php:999
|
931 |
-
msgid "WP to Twitter User Settings"
|
932 |
-
msgstr "Impostazioni WP to Twitter User"
|
933 |
-
|
934 |
-
#: wp-to-twitter.php:1003
|
935 |
-
msgid "Use My Twitter Username"
|
936 |
-
msgstr "Utilizza il mio nome utente Twitter"
|
937 |
-
|
938 |
-
#: wp-to-twitter.php:1004
|
939 |
-
msgid "Tweet my posts with an @ reference to my username."
|
940 |
-
msgstr "Segnala i miei articoli con un riferimento @ correlato al mio nome utente."
|
941 |
-
|
942 |
-
#: wp-to-twitter.php:1005
|
943 |
-
msgid "Tweet my posts with an @ reference to both my username and to the main site username."
|
944 |
-
msgstr "Segnala i miei articoli con un riferimento @ correlato tanto al mio nome utente per il sito principale quanto al mio nome utente."
|
945 |
-
|
946 |
-
#: wp-to-twitter.php:1009
|
947 |
-
msgid "Your Twitter Username"
|
948 |
-
msgstr "Nome utente Twitter"
|
949 |
-
|
950 |
-
#: wp-to-twitter.php:1010
|
951 |
-
msgid "Enter your own Twitter username."
|
952 |
-
msgstr "Inserisci il tuo nome utente Twitter"
|
953 |
-
|
954 |
-
#: wp-to-twitter.php:1049
|
955 |
-
msgid "Check the categories you want to tweet:"
|
956 |
-
msgstr "Seleziona le gategorie per i messaggi:"
|
957 |
-
|
958 |
-
#: wp-to-twitter.php:1066
|
959 |
-
msgid "Set Categories"
|
960 |
-
msgstr "Imposta le categorie"
|
961 |
-
|
962 |
-
#: wp-to-twitter.php:1090
|
963 |
-
msgid "<p>Couldn't locate the settings page.</p>"
|
964 |
-
msgstr "<p>Non é possibile localizzare la pagina delle impostazioni.</p>"
|
965 |
-
|
966 |
-
#: wp-to-twitter.php:1095
|
967 |
-
msgid "Settings"
|
968 |
-
msgstr "Impostazioni"
|
969 |
-
|
970 |
-
#: wp-to-twitter.php:1129
|
971 |
-
msgid "<br /><strong>Note:</strong> Please review the <a class=\"thickbox\" href=\"%1$s\">changelog</a> before upgrading."
|
972 |
-
msgstr "<br /><strong>Nota:</strong> Leggi il <a class=\"thickbox\" href=\"%1$s\">changelog</a> prima di aggiornare."
|
973 |
-
|
974 |
-
#. Plugin URI of the plugin/theme
|
975 |
-
msgid "http://www.joedolson.com/articles/wp-to-twitter/"
|
976 |
-
msgstr "http://www.joedolson.com/articles/wp-to-twitter/"
|
977 |
-
|
978 |
-
#. Description of the plugin/theme
|
979 |
-
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."
|
980 |
-
msgstr "Pubblica un aggiornamento allo stato di Twitter quando aggiorni il tuo blog WordPress o blogroll utilizzando il servizio URL brevi da te scelto. Ricco di funzioni per la personalizzazione dei tuoi messaggi."
|
981 |
-
|
982 |
-
#. Author of the plugin/theme
|
983 |
-
msgid "Joseph Dolson"
|
984 |
-
msgstr "Joseph Dolson"
|
985 |
-
|
986 |
-
#. Author URI of the plugin/theme
|
987 |
-
msgid "http://www.joedolson.com/"
|
988 |
-
msgstr "http://www.joedolson.com/"
|
989 |
-
|
990 |
-
#~ msgid ""
|
991 |
-
#~ "I made a donation, so stop showing me ads, please. <a href='http://"
|
992 |
-
#~ "pluginsponsors.com/privacy.html'>PluginSponsors.com Privacy Policy</a>"
|
993 |
-
#~ msgstr ""
|
994 |
-
#~ "Ho effettuato una donazione: non mostrare la pubblicità. <a href='http://"
|
995 |
-
#~ "pluginsponsors.com/privacy.html'>PluginSponsors.com Privacy Policy</a>"
|
996 |
-
|
997 |
-
#~ msgid ""
|
998 |
-
#~ "If this is wrong, your server will not be able to connect with Twitter. "
|
999 |
-
#~ "(<strong>Note:</strong> your server time may not match your current time, "
|
1000 |
-
#~ "but it should be correct for it's own time zone.)"
|
1001 |
-
#~ msgstr ""
|
1002 |
-
#~ "Se errata, il tuo server non sarà in grado di connettersi a Twitter. "
|
1003 |
-
#~ "(<strong>Nota:</strong> l'ora del server potrebbe non coincidere con il "
|
1004 |
-
#~ "tuo fuso orario, ma deve essere esatta in relazione alla proprio.)"
|
1005 |
-
|
1006 |
-
#~ msgid "Update Twitter when a post is published using QuickPress"
|
1007 |
-
#~ msgstr ""
|
1008 |
-
#~ "Aggiorna Twitter quando un articolo é stato pubblicato via QuickPress"
|
1009 |
-
|
1010 |
-
#~ msgid "Application Type should be set on "
|
1011 |
-
#~ msgstr "Il tipo di applicazione deve essere impostato a "
|
1012 |
-
|
1013 |
-
#~ msgid "Browser"
|
1014 |
-
#~ msgstr "Browser"
|
1015 |
-
|
1016 |
-
#~ msgid "Default Access type must be set to "
|
1017 |
-
#~ msgstr "Il tipo di accesso predefinito deve essere impostato a "
|
1018 |
-
|
1019 |
-
#~ msgid "Read & Write"
|
1020 |
-
#~ msgstr "Leggi & Scrivi"
|
1021 |
-
|
1022 |
-
#~ msgid "(this is NOT the default)"
|
1023 |
-
#~ msgstr "(questo NON é il predefinito)"
|
1024 |
-
|
1025 |
-
#~ msgid ""
|
1026 |
-
#~ "On the right hand side of your new application page at Twitter, click on "
|
1027 |
-
#~ "'My Access Token'."
|
1028 |
-
#~ msgstr ""
|
1029 |
-
#~ "Clicca su 'My Access Token' posizionato alla destra della pagina della "
|
1030 |
-
#~ "applicazione."
|
1031 |
-
|
1032 |
-
#~ msgid "Tweet Templates"
|
1033 |
-
#~ msgstr "Template messaggio"
|
1034 |
-
|
1035 |
-
#~ msgid "Update when a post is published"
|
1036 |
-
#~ msgstr "Aggiorna quando viene pubblicato un articolo"
|
1037 |
-
|
1038 |
-
#~ msgid "Update when a post is edited"
|
1039 |
-
#~ msgstr "Aggiorna quando modifichi un articolo"
|
1040 |
-
|
1041 |
-
#~ msgid "Text for editing updates:"
|
1042 |
-
#~ msgstr "Testo per aggiornamenti modifiche:"
|
1043 |
-
|
1044 |
-
#~ msgid ""
|
1045 |
-
#~ "You can not disable updates on edits when using Postie or similar plugins."
|
1046 |
-
#~ msgstr ""
|
1047 |
-
#~ "Non potrai disattivare gli aggiornamenti durante l'utilizzo di Postie o "
|
1048 |
-
#~ "plugin simili."
|
1049 |
-
|
1050 |
-
#~ msgid "Text for new page updates:"
|
1051 |
-
#~ msgstr "Testo per aggiornamenti articolo:"
|
1052 |
-
|
1053 |
-
#~ msgid "Update Twitter when WordPress Pages are edited"
|
1054 |
-
#~ msgstr "Aggiorna Twitter quando viene modificata una pagina WordPress"
|
1055 |
-
|
1056 |
-
#~ msgid "Text for page edit updates:"
|
1057 |
-
#~ msgstr "Testo per la pagina di modifica aggiornamenti:"
|
1058 |
-
|
1059 |
-
#~ msgid ""
|
1060 |
-
#~ "I'm using a plugin to post by email, such as Postie. Only check this if "
|
1061 |
-
#~ "your updates do not work."
|
1062 |
-
#~ msgstr ""
|
1063 |
-
#~ "Sto utilizzando un plugin per pubblicare gli articoli via email (del tipo "
|
1064 |
-
#~ "Postie). Seleziona qualora gli aggiornamenti non funzionassero."
|
1065 |
-
|
1066 |
-
#~ msgid "Cligs API Key Updated"
|
1067 |
-
#~ msgstr "La chiave API di Cligs é stata aggiornata."
|
1068 |
-
|
1069 |
-
#~ msgid ""
|
1070 |
-
#~ "PLEASE NOTE: This is an internal server error at Cli.gs. If you continue "
|
1071 |
-
#~ "to receive this error, you should change URL shorteners. This cannot be "
|
1072 |
-
#~ "fixed in WP to Twitter."
|
1073 |
-
#~ msgstr ""
|
1074 |
-
#~ "NOTA: Questo é un errore relativo al server di Cli.gs. Qualora il "
|
1075 |
-
#~ "problema continuasse a persistere, sarà necessario cambiare il servizio "
|
1076 |
-
#~ "per l'abbreviazione degli URL. WP to Twitter non é in grado di risolvere "
|
1077 |
-
#~ "questo problema."
|
1078 |
-
|
1079 |
-
#~ msgid ""
|
1080 |
-
#~ "OAuth Authentication Failed. Check your credentials and verify that <a "
|
1081 |
-
#~ "href=\"http://www.twitter.com/\">Twitter</a> is running."
|
1082 |
-
#~ msgstr ""
|
1083 |
-
#~ "L'autentificazione OAuth é fallita. Controlla i tuoi dati e verifica che "
|
1084 |
-
#~ "<a href=\"http://www.twitter.com/\">Twitter</a> sia in uso."
|
1085 |
-
|
1086 |
-
#~ msgid "Export Settings"
|
1087 |
-
#~ msgstr "Impostazioni esportazione"
|
1088 |
-
|
1089 |
-
#~ msgid ""
|
1090 |
-
#~ "Updates Twitter when you create a new blog post or add to your blogroll "
|
1091 |
-
#~ "using Cli.gs. With a Cli.gs API key, creates a clig in your Cli.gs "
|
1092 |
-
#~ "account with the name of your post as the title."
|
1093 |
-
#~ msgstr ""
|
1094 |
-
#~ "Aggiorna Twitter quando crei un nuovo articolo oppure aggiungi al tuo "
|
1095 |
-
#~ "blogroll utilizzando Cli.gs. Con una chiave API Cli.gs, crea un clig nel "
|
1096 |
-
#~ "tuo account di Cli.gs con il nome del tuo articolo come titolo."
|
1097 |
-
|
1098 |
-
#~ msgid "Non-Twitter login and password updated. "
|
1099 |
-
#~ msgstr "Il login e la password Non-Twitter sono stati aggiornati."
|
1100 |
-
|
1101 |
-
#~ msgid "You need to provide your login and password! "
|
1102 |
-
#~ msgstr "E' necessario fornire i dati login e password!"
|
1103 |
-
|
1104 |
-
#~ msgid "Twitter-compatible API settings updated. "
|
1105 |
-
#~ msgstr "Le impostazioni compatibilità API Twittersono state aggiornate."
|
1106 |
-
|
1107 |
-
#~ msgid ""
|
1108 |
-
#~ "You have configured WP to Twitter to use both Twitter and your selected "
|
1109 |
-
#~ "service."
|
1110 |
-
#~ msgstr ""
|
1111 |
-
#~ "Hai configurato WP to Twitter in modo tale che esso possa utilizzare "
|
1112 |
-
#~ "Twitter ed il tuo servizio selezionato."
|
1113 |
-
|
1114 |
-
#~ msgid ""
|
1115 |
-
#~ "<li><strong>Your selected URL shortener does not require testing.</"
|
1116 |
-
#~ "strong></li>"
|
1117 |
-
#~ msgstr ""
|
1118 |
-
#~ "<li><strong>Il servizio di URL brevi che hai selezionato non necessita di "
|
1119 |
-
#~ "test.</strong></li>"
|
1120 |
-
|
1121 |
-
#~ msgid ""
|
1122 |
-
#~ "<li class=\"error\"><strong>WP to Twitter failed to contact your primary "
|
1123 |
-
#~ "update service.</strong></li>"
|
1124 |
-
#~ msgstr ""
|
1125 |
-
#~ "<li class=\"error\"><strong>WP to Twitter non é stato in grado di "
|
1126 |
-
#~ "contattare il tuo principale servizio aggiornamenti.</strong></li>"
|
1127 |
-
|
1128 |
-
#~ msgid "No error was returned."
|
1129 |
-
#~ msgstr "Nessun errore da riportare."
|
1130 |
-
|
1131 |
-
#~ msgid ""
|
1132 |
-
#~ "<li><strong>WP to Twitter successfully submitted a status update to your "
|
1133 |
-
#~ "secondary update service.</strong></li>"
|
1134 |
-
#~ msgstr ""
|
1135 |
-
#~ "<li><strong>WP to Twitter ha inviato con successo l'aggiornamento dello "
|
1136 |
-
#~ "stato al tuo servizio aggiornamenti secondario.</strong></li>"
|
1137 |
-
|
1138 |
-
#~ msgid ""
|
1139 |
-
#~ "<li class=\"error\"><strong>WP to Twitter failed to submit an update to "
|
1140 |
-
#~ "your secondary update service.</strong></li>"
|
1141 |
-
#~ msgstr ""
|
1142 |
-
#~ "<li class=\"error\"><strong>WP to Twitter non é stato in grado di inviare "
|
1143 |
-
#~ "l'aggiornamento dello stato al tuo servizio aggiornamenti secondario.</"
|
1144 |
-
#~ "strong></li>"
|
1145 |
-
|
1146 |
-
#~ msgid "The service returned this error:"
|
1147 |
-
#~ msgstr "Il servizio ha rilevato questo errore:"
|
1148 |
-
|
1149 |
-
#~ msgid ""
|
1150 |
-
#~ "This plugin may not fully work in your server environment. The plugin "
|
1151 |
-
#~ "failed to contact both a URL shortener API and the Twitter service API."
|
1152 |
-
#~ msgstr ""
|
1153 |
-
#~ "Con la configurazione del tuo server questo plugin non può funzionare al "
|
1154 |
-
#~ "meglio. Il plugin non é stato in grado di conttatare tanto l'API di un "
|
1155 |
-
#~ "URL breve API quanto l'API del servizio di Twitter."
|
1156 |
-
|
1157 |
-
#~ msgid "Add Twitter-compatible Service"
|
1158 |
-
#~ msgstr "Aggiungi il servizio Twitter-compatibile"
|
1159 |
-
|
1160 |
-
#~ msgid "URI for Twitter-compatible Post Status API"
|
1161 |
-
#~ msgstr "URI per la Post Status API Twitter-compatibile"
|
1162 |
-
|
1163 |
-
#~ msgid "Service Name"
|
1164 |
-
#~ msgstr "Nome del servizio"
|
1165 |
-
|
1166 |
-
#~ msgid "Status Update Character Limit"
|
1167 |
-
#~ msgstr "Limite caratteri aggiornamento stato"
|
1168 |
-
|
1169 |
-
#~ msgid "Post status updates to both Twitter and this service."
|
1170 |
-
#~ msgstr "Aggiornamenti stato del post per Twitter e per questo servizio."
|
1171 |
-
|
1172 |
-
#~ msgid "Your service password:"
|
1173 |
-
#~ msgstr "Password servizio:"
|
1174 |
-
|
1175 |
-
#~ msgid "(<em>Saved</em>)"
|
1176 |
-
#~ msgstr "(<em>Salvato</em>)"
|
1177 |
-
|
1178 |
-
#~ msgid "Update Twitter Compatible Service"
|
1179 |
-
#~ msgstr "Aggiorna il servizio Twitter Compatible"
|
1180 |
-
|
1181 |
-
#~ msgid ""
|
1182 |
-
#~ "» <small>You can use any service using the Twitter-compatible REST "
|
1183 |
-
#~ "API returning data in JSON format with this plugin. Twitter-compatible "
|
1184 |
-
#~ "services include <a href='http://identi.ca'>Identi.ca</a>, <a "
|
1185 |
-
#~ "href='http://shoutem.com'>Shoutem.com</a> and <a href='http://chirup."
|
1186 |
-
#~ "com'>Chirup.com</a>. <strong>No support will be provided for services "
|
1187 |
-
#~ "other than Twitter.</strong>"
|
1188 |
-
#~ msgstr ""
|
1189 |
-
#~ "» <small>Puoi utilizzare ogni servizio facendo uso della Twitter-"
|
1190 |
-
#~ "compatible REST API che porta i dati in formato JSON grazie a questo "
|
1191 |
-
#~ "plugin. I servizi Twitter-compatibile includono <a href='http://identi."
|
1192 |
-
#~ "ca'>Identi.ca</a>, <a href='http://shoutem.com'>Shoutem.com</a> e <a "
|
1193 |
-
#~ "href='http://chirup.com'>Chirup.com</a>. <strong>Nessun supporto verrà "
|
1194 |
-
#~ "fornito per quei servizi che non siano Twitter.</strong>"
|
1195 |
-
|
1196 |
-
#~ msgid ""
|
1197 |
-
#~ "Authors can set their own Twitter username and password in their user "
|
1198 |
-
#~ "profile."
|
1199 |
-
#~ msgstr ""
|
1200 |
-
#~ "Ogni autore può impostare nel proprio profilo utente il nome utente e la "
|
1201 |
-
#~ "password di Twitter."
|
1202 |
-
|
1203 |
-
#~ msgid "Enter your own Twitter password."
|
1204 |
-
#~ msgstr "Inserisci la tua password di Twitter"
|
1205 |
-
|
1206 |
-
#~ msgid "<em>Password saved</em>"
|
1207 |
-
#~ msgstr "<em>La password é stata salvata</em>"
|
1208 |
-
|
1209 |
-
#~ msgid "Please <a href='#twitterpw'>add your Twitter password</a>. "
|
1210 |
-
#~ msgstr "Aggiungi la tua <a href='#twitterpw'>password per Twitter</a>. "
|
1211 |
-
|
1212 |
-
#~ msgid ""
|
1213 |
-
#~ "Twitter API settings reset. You may need to change your username and "
|
1214 |
-
#~ "password settings, if they are not the same as the alternate service "
|
1215 |
-
#~ "previously in use."
|
1216 |
-
#~ msgstr ""
|
1217 |
-
#~ "Ripristino impostazioni API Twitter API. Dovrai cambiare le impostazioni "
|
1218 |
-
#~ "per il tuo nome utente e password nel caso in cui esse non fossero le "
|
1219 |
-
#~ "stesse del servizio alternativo utilizzato in precedenza."
|
1220 |
-
|
1221 |
-
#~ msgid ""
|
1222 |
-
#~ "» <small>Don't have a Twitter account? <a href='http://www.twitter."
|
1223 |
-
#~ "com'>Get one for free here</a>"
|
1224 |
-
#~ msgstr ""
|
1225 |
-
#~ "» <small>Non hai un account di Twitter? <a href='http://www.twitter."
|
1226 |
-
#~ "com'>Vai qui</a>"
|
1227 |
-
|
1228 |
-
#~ msgid "Your Twitter account details"
|
1229 |
-
#~ msgstr "Dati account Twitter"
|
1230 |
-
|
1231 |
-
#~ msgid "These are your settings for Twitter as a second update service."
|
1232 |
-
#~ msgstr ""
|
1233 |
-
#~ "Queste sono le tue impostazioni per Twitter quale secondo servizio di "
|
1234 |
-
#~ "aggiornamenti."
|
1235 |
-
|
1236 |
-
#~ msgid "Save Twitter Login Info"
|
1237 |
-
#~ msgstr "Salva le impostazioni di login a Twitter"
|
1238 |
-
|
1239 |
-
#~ msgid "Reset to normal Twitter settings"
|
1240 |
-
#~ msgstr "Ripristina alle impostazioni base di Twitter"
|
1241 |
-
|
1242 |
-
#~ msgid "Your Twitter Password"
|
1243 |
-
#~ msgstr "Twitter Password"
|
1244 |
-
|
1245 |
-
#~ msgid "Twitter Password Saved"
|
1246 |
-
#~ msgstr "La password di Twitter è stata salvata"
|
1247 |
-
|
1248 |
-
#~ msgid "Twitter Password Not Saved"
|
1249 |
-
#~ msgstr "La password di Twitter non é stata salvata"
|
1250 |
-
|
1251 |
-
#~ msgid "Bit.ly API Saved"
|
1252 |
-
#~ msgstr "La chiave API di Bit.ly é stata salvata."
|
1253 |
-
|
1254 |
-
#~ msgid "Bit.ly API Not Saved"
|
1255 |
-
#~ msgstr "La chiave API di Bit.ly non é stata salvata."
|
1256 |
-
|
1257 |
-
#~ msgid ""
|
1258 |
-
#~ "Set your Twitter login information and URL shortener API information to "
|
1259 |
-
#~ "use this plugin!"
|
1260 |
-
#~ msgstr ""
|
1261 |
-
#~ "Per potere utilizzare questo plugin dovrai inserire i tuoi dati login di "
|
1262 |
-
#~ "Twitter e le informazioni API per i servizi URL brevi! "
|
1263 |
-
|
1264 |
-
#~ msgid ""
|
1265 |
-
#~ "<li>Successfully contacted the Cli.gs API via Snoopy, but the URL "
|
1266 |
-
#~ "creation failed.</li>"
|
1267 |
-
#~ msgstr ""
|
1268 |
-
#~ "<li>Contattata con successo (via Snoopy) la API di Cli.gs. Purtroppo la "
|
1269 |
-
#~ "creazione dell'URL é fallita.</li>"
|
1270 |
-
|
1271 |
-
#~ msgid ""
|
1272 |
-
#~ "<li>Successfully contacted the Cli.gs API via Snoopy, but a Cli.gs server "
|
1273 |
-
#~ "error prevented the URL from being shrotened.</li>"
|
1274 |
-
#~ msgstr ""
|
1275 |
-
#~ "<li>Contattata con successo (via Snoopy) la API di Cli.gs. Purtroppo un "
|
1276 |
-
#~ "errore del server Cli.gs non ha permesso l'abbreviazione dell'URL.</li>"
|
1277 |
-
|
1278 |
-
#~ msgid ""
|
1279 |
-
#~ "<li>Successfully contacted the Cli.gs API via Snoopy and created a "
|
1280 |
-
#~ "shortened link.</li>"
|
1281 |
-
#~ msgstr ""
|
1282 |
-
#~ "<li>Contattata con successo (via Snoopy) la API di Cli.gs. Il link breve "
|
1283 |
-
#~ "é stato creato.</li>"
|
1284 |
-
|
1285 |
-
#~ msgid "<li>Successfully contacted the Bit.ly API via Snoopy.</li>"
|
1286 |
-
#~ msgstr "<li>Contattata con successo (via Snoopy) la API di Bit.ly.</li>"
|
1287 |
-
|
1288 |
-
#~ msgid "<li>Failed to contact the Bit.ly API via Snoopy.</li>"
|
1289 |
-
#~ msgstr ""
|
1290 |
-
#~ "<li>Non é stato possibile contattare (via Snoopy) la API di Bit.ly.</li>"
|
1291 |
-
|
1292 |
-
#~ msgid "<li>Cannot check the Bit.ly API without a valid API key.</li>"
|
1293 |
-
#~ msgstr ""
|
1294 |
-
#~ "<li>Non puoi utilizzare la API di Bit.ly senza una chiave API valida.</li>"
|
1295 |
-
|
1296 |
-
#~ msgid "<li>Successfully contacted the Twitter API via Snoopy.</li>"
|
1297 |
-
#~ msgstr "<li>Contattata con successo (via Snoopy) la API di Twitter.</li>"
|
1298 |
-
|
1299 |
-
#~ msgid "<li>Failed to contact the Twitter API via Snoopy.</li>"
|
1300 |
-
#~ msgstr ""
|
1301 |
-
#~ "<li>Non é stato possibile contattare (via Snoopy) la API di Twitter.</li>"
|
1302 |
-
|
1303 |
-
#~ msgid "<li>Successfully contacted the Twitter API via cURL.</li>"
|
1304 |
-
#~ msgstr "<li>Contattata con successo (via cURL) la API di Twitter.</li>"
|
1305 |
-
|
1306 |
-
#~ msgid "<li>Failed to contact the Twitter API via cURL.</li>"
|
1307 |
-
#~ msgstr ""
|
1308 |
-
#~ "<li>Non é stato possibile contattare (via cURL) la API di Twitter.</li>"
|
1309 |
-
|
1310 |
-
#~ msgid "<li>Successfully contacted the Cli.gs API via Snoopy.</li>"
|
1311 |
-
#~ msgstr "<li>Contattata con successo (via Snoopy) la API di Cli.gs.</li>"
|
1312 |
-
|
1313 |
-
#~ msgid "<li>Failed to contact the Cli.gs API via Snoopy.</li>"
|
1314 |
-
#~ msgstr ""
|
1315 |
-
#~ "<li>Non é stato possibile contattare (via Snoopy) la API di Cli.gs.</li>"
|
1316 |
-
|
1317 |
-
#~ msgid "<li>Your server does not support <code>fputs</code>.</li>"
|
1318 |
-
#~ msgstr "<li>Il tuo server non supporta <code>fputs</code>.</li>"
|
1319 |
-
|
1320 |
-
#~ msgid ""
|
1321 |
-
#~ "<li>Your server does not support <code>file_get_contents</code> or "
|
1322 |
-
#~ "<code>cURL</code> functions.</li>"
|
1323 |
-
#~ msgstr ""
|
1324 |
-
#~ "<li>Il tuo server non supporta le funzioni <code>file_get_contents</code> "
|
1325 |
-
#~ "oppure <code>cURL</code>.</li>"
|
1326 |
-
|
1327 |
-
#~ msgid "<li>Your server does not support <code>Snoopy</code>.</li>"
|
1328 |
-
#~ msgstr "<li>Il tuo server non supporta <code>Snoopy</code>.</li>"
|
1329 |
-
|
1330 |
-
#~ msgid ""
|
1331 |
-
#~ "For any post update field, you can use the codes <code>#title#</code> for "
|
1332 |
-
#~ "the title of your blog post, <code>#blog#</code> for the title of your "
|
1333 |
-
#~ "blog, <code>#post#</code> for a short excerpt of the post content, "
|
1334 |
-
#~ "<code>#category#</code> for the first selected category for the post, "
|
1335 |
-
#~ "<code>#date#</code> for the post date, or <code>#url#</code> for the post "
|
1336 |
-
#~ "URL (shortened or not, depending on your preferences.) You can also "
|
1337 |
-
#~ "create custom shortcodes to access WordPress custom fields. Use doubled "
|
1338 |
-
#~ "square brackets surrounding the name of your custom field to add the "
|
1339 |
-
#~ "value of that custom field to your status update. Example: <code>"
|
1340 |
-
#~ "[[custom_field]]</code>"
|
1341 |
-
#~ msgstr ""
|
1342 |
-
#~ "Per aggiornare ogni campo potrai utilizzare i codici <code>#title#</code> "
|
1343 |
-
#~ "per il titolo del tuo articolo, <code>#blog#</code> per il nome del tuo "
|
1344 |
-
#~ "blog, <code>#post#</code> per un riassunto breve del contenuto "
|
1345 |
-
#~ "dell'articolo, <code>#category#</code> per la prima categoria selezionata "
|
1346 |
-
#~ "per l'articolo, <code>#date#</code> per la data dell'articolo oppure "
|
1347 |
-
#~ "<code>#url#</code> per l'URL all'articolo (breve o normale, a tuo "
|
1348 |
-
#~ "piacere). Potrai inoltre creare degli shortcode personalizzati in modo "
|
1349 |
-
#~ "tale da potere accedere ai campi personalizzati di WordPress. Utilizza le "
|
1350 |
-
#~ "doppie parentesi quadre intorno al nome del campo personalizzato affinché "
|
1351 |
-
#~ "sia possibile aggiungere il valore di quel dato campo personalizzato al "
|
1352 |
-
#~ "tuo aggiornamento dello stato. Ad esempio: <code>[[custom_field]]</code>"
|
1353 |
-
|
1354 |
-
#~ msgid "Set what should be in a Tweet"
|
1355 |
-
#~ msgstr "Imposta contenuto messaggio"
|
1356 |
-
|
1357 |
-
#~ msgid "Set default Tweet status to 'No.'"
|
1358 |
-
#~ msgstr "Imposta al 'No' lo stato predefinito per i messaggi"
|
1359 |
-
|
1360 |
-
#~ msgid ""
|
1361 |
-
#~ "Twitter updates can be set on a post by post basis. By default, posts "
|
1362 |
-
#~ "WILL be posted to Twitter. Check this to change the default to NO."
|
1363 |
-
#~ msgstr ""
|
1364 |
-
#~ "Gli aggiornamenti per Twitter possono essere impostati in ogni singolo "
|
1365 |
-
#~ "articolo. Come funzione predefinita, gli articoli VERRANNO segnalati a "
|
1366 |
-
#~ "Twitter. Metti il segno di spunta per modificare al NO."
|
1367 |
-
|
1368 |
-
#~ msgid "Special Fields"
|
1369 |
-
#~ msgstr "Campi particolari"
|
1370 |
-
|
1371 |
-
#~ msgid ""
|
1372 |
-
#~ "You can track the response from Twitter using Google Analytics by "
|
1373 |
-
#~ "defining a campaign identifier here."
|
1374 |
-
#~ msgstr ""
|
1375 |
-
#~ "Puoi tracciare i riscontri su Twitter utilizzando Google Analytics "
|
1376 |
-
#~ "inserendo qui l'identificatore."
|
1377 |
-
|
1378 |
-
#~ msgid "Set your preferred URL Shortener"
|
1379 |
-
#~ msgstr "Seleziona il tuo servizio preferito di URL brevi"
|
1380 |
-
|
1381 |
-
#~ msgid ""
|
1382 |
-
#~ "Check whether your server supports WP to Twitter's queries to the Twitter "
|
1383 |
-
#~ "and URL shortening APIs."
|
1384 |
-
#~ msgstr ""
|
1385 |
-
#~ "Verifica se il tuo server é in grado di supportare le richieste di WP to "
|
1386 |
-
#~ "Twitter's per Twitter e per l'API dell'URL breve."
|
1387 |
-
|
1388 |
-
#~ msgid "Need help?"
|
1389 |
-
#~ msgstr "Serve aiuto?"
|
1390 |
-
|
1391 |
-
#~ msgid ""
|
1392 |
-
#~ " characters.<br />Twitter posts are a maximum of 140 characters; if your "
|
1393 |
-
#~ "Cli.gs URL is appended to the end of your document, you have 119 "
|
1394 |
-
#~ "characters available. You can use <code>#url#</code>, <code>#title#</"
|
1395 |
-
#~ "code>, <code>#post#</code>, <code>#category#</code>, <code>#date#</code>, "
|
1396 |
-
#~ "or <code>#blog#</code> to insert the shortened URL, post title, the first "
|
1397 |
-
#~ "category selected, the post date, or a post excerpt or blog name into the "
|
1398 |
-
#~ "Tweet."
|
1399 |
-
#~ msgstr ""
|
1400 |
-
#~ " caratteri.<br />I messaggi di Twitter possono contenere un massimo di "
|
1401 |
-
#~ "140 caratteri; un URL generato da Cli.gs posto in coda al messaggio, "
|
1402 |
-
#~ "lascerà disponibili 119 caratteri. Puoi utilizzare <code>#url#</code>, "
|
1403 |
-
#~ "<code>#title#</code>, <code>#post#</code>, <code>#category#</code>, "
|
1404 |
-
#~ "<code>#date#</code> oppure <code>#blog#</code> per inserire nel messaggio "
|
1405 |
-
#~ "l'URL breve, il nome dell'articolo, la prima categoria selezionata, la "
|
1406 |
-
#~ "data dell'articolo, un estratto dell'articolo oppure il nome del blog."
|
1407 |
-
|
1408 |
-
#~ msgid "Use My Twitter Account"
|
1409 |
-
#~ msgstr "Utilizza il mio account di Twitter"
|
1410 |
-
|
1411 |
-
#~ msgid ""
|
1412 |
-
#~ "Select this option if you would like your posts to be Tweeted into your "
|
1413 |
-
#~ "own Twitter account with no @ references."
|
1414 |
-
#~ msgstr ""
|
1415 |
-
#~ "Seleziona questa opzione qualora gradissi che i tuoi articoli siano "
|
1416 |
-
#~ "segnalati al tuo account personale di Twitter senza nessun riferimento @."
|
1417 |
-
|
1418 |
-
#~ msgid ""
|
1419 |
-
#~ "Tweet my posts into the main site Twitter account with an @ reference to "
|
1420 |
-
#~ "my username. (Password not required with this option.)"
|
1421 |
-
#~ msgstr ""
|
1422 |
-
#~ "Segnala i miei articoli al sito principale dell'account su Twitter con un "
|
1423 |
-
#~ "riferimento @ al mio nome utente. (per questa opzione non sarà necessaria "
|
1424 |
-
#~ "la password)"
|
1425 |
-
|
1426 |
-
#~ msgid ""
|
1427 |
-
#~ "The query to the URL shortener API failed, and your URL was not shrunk. "
|
1428 |
-
#~ "The full post URL was attached to your Tweet."
|
1429 |
-
#~ msgstr ""
|
1430 |
-
#~ "La richiesta API per la creazione dell'URL breve é fallita: il tuo URL "
|
1431 |
-
#~ "non é stato abbreviato. E' stato allegato l'URL completo al tuo messaggio."
|
1432 |
-
|
1433 |
-
#~ msgid "Add_new_tag"
|
1434 |
-
#~ msgstr "Add_new_tag"
|
1435 |
-
|
1436 |
-
#~ msgid "This plugin may not work in your server environment."
|
1437 |
-
#~ msgstr "Questo plugin non può funzionare sul tuo server."
|
1438 |
-
|
1439 |
-
#~ msgid "Wordpress to Twitter Publishing Options"
|
1440 |
-
#~ msgstr "Opzioni editoriali Wordpress to Twitter"
|
1441 |
-
|
1442 |
-
#~ msgid "Provide link to blog?"
|
1443 |
-
#~ msgstr "Desideri il link al blog?"
|
1444 |
-
|
1445 |
-
#~ msgid "Use <strong>link title</strong> for Twitter updates"
|
1446 |
-
#~ msgstr ""
|
1447 |
-
#~ "Utilizza un <strong>link di testo</strong> per gli aggiornamenti di "
|
1448 |
-
#~ "Twitter"
|
1449 |
-
|
1450 |
-
#~ msgid "Use <strong>link description</strong> for Twitter updates"
|
1451 |
-
#~ msgstr ""
|
1452 |
-
#~ "Utilizza un <strong>link descrittivo</strong> per gli aggiornamenti di "
|
1453 |
-
#~ "Twitter"
|
1454 |
-
|
1455 |
-
#~ msgid ""
|
1456 |
-
#~ "Text for new link updates (used if title/description isn't available.):"
|
1457 |
-
#~ msgstr ""
|
1458 |
-
#~ "Testo per il link ai nuovi aggiornamenti (se titolo/descrizione non "
|
1459 |
-
#~ "fossero disponibili):"
|
1460 |
-
|
1461 |
-
#~ msgid "Custom text prepended to Tweets:"
|
1462 |
-
#~ msgstr "Testo personalizzato davanti al messaggio:"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wp-to-twitter-manager.php
CHANGED
@@ -16,29 +16,27 @@ function jd_checkCheckbox( $theFieldname,$sub1=false,$sub2='' ) {
|
|
16 |
return 'checked="checked"';
|
17 |
}
|
18 |
}
|
|
|
19 |
function jd_checkSelect( $theFieldname, $theValue, $type='select' ) {
|
20 |
if( get_option( $theFieldname ) == $theValue ) {
|
21 |
-
|
22 |
}
|
23 |
}
|
24 |
|
25 |
-
|
26 |
function jd_check_functions() {
|
27 |
$message = "<div class='update'><ul>";
|
28 |
// grab or set necessary variables
|
29 |
$testurl = get_bloginfo( 'url' );
|
30 |
$shortener = get_option( 'jd_shortener' );
|
31 |
$title = urlencode( 'Your blog home' );
|
32 |
-
$shrink =
|
33 |
-
$api_url = $jdwp_api_post_status;
|
34 |
-
$yourls_URL = "";
|
35 |
if ($shrink == FALSE) {
|
36 |
if ($shortener == 1) {
|
37 |
$error = htmlentities( get_option('wp_supr_error') );
|
38 |
} else if ( $shortener == 2 ) {
|
39 |
$error = htmlentities( get_option('wp_bitly_error') );
|
40 |
} else {
|
41 |
-
$error =
|
42 |
}
|
43 |
$message .= __("<li class=\"error\"><strong>WP to Twitter was unable to contact your selected URL shortening service.</strong></li>",'wp-to-twitter');
|
44 |
$message .= "<li><code>$error</code></li>";
|
@@ -49,7 +47,7 @@ function jd_check_functions() {
|
|
49 |
//check twitter credentials
|
50 |
if ( wtt_oauth_test() ) {
|
51 |
$rand = rand(1000000,9999999);
|
52 |
-
$testpost = jd_doTwitterAPIPost( "This is a test of WP
|
53 |
if ($testpost) {
|
54 |
$message .= __("<li><strong>WP to Twitter successfully submitted a status update to Twitter.</strong></li>",'wp-to-twitter');
|
55 |
} else {
|
@@ -128,6 +126,14 @@ function wpt_update_settings() {
|
|
128 |
$administrator->add_cap('wpt_twitter_oauth');
|
129 |
$administrator->add_cap('wpt_twitter_custom');
|
130 |
$administrator->add_cap('wpt_twitter_switch');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
update_option('wtt_show_custom_tweet','administrator');
|
132 |
|
133 |
update_option( 'jd_twit_remote', '0' );
|
@@ -144,6 +150,7 @@ function wpt_update_settings() {
|
|
144 |
update_option( 'wp_url_failure','0' );
|
145 |
// Default publishing options.
|
146 |
update_option( 'jd_tweet_default', '0' );
|
|
|
147 |
update_option( 'wpt_inline_edits', '0' );
|
148 |
// Note that default options are set.
|
149 |
update_option( 'twitterInitialised', '1' );
|
@@ -163,10 +170,10 @@ function wpt_update_settings() {
|
|
163 |
</div>
|
164 |
|
165 |
');
|
166 |
-
} else if ( $oauth_message == "
|
167 |
print('
|
168 |
<div id="message" class="updated fade">
|
169 |
-
<p>'.__('WP to Twitter failed to connect with Twitter. Try
|
170 |
</div>
|
171 |
|
172 |
');
|
@@ -195,6 +202,7 @@ function wpt_update_settings() {
|
|
195 |
|
196 |
if ( isset( $_POST['submit-type'] ) && $_POST['submit-type'] == 'advanced' ) {
|
197 |
update_option( 'jd_tweet_default', ( isset( $_POST['jd_tweet_default'] ) )?$_POST['jd_tweet_default']:0 );
|
|
|
198 |
update_option( 'wpt_inline_edits', ( isset( $_POST['wpt_inline_edits'] ) )?$_POST['wpt_inline_edits']:0 );
|
199 |
update_option( 'jd_twit_remote',( isset( $_POST['jd_twit_remote'] ) )?$_POST['jd_twit_remote']:0 );
|
200 |
update_option( 'jd_twit_custom_url', $_POST['jd_twit_custom_url'] );
|
@@ -203,6 +211,7 @@ function wpt_update_settings() {
|
|
203 |
update_option( 'jd_twit_append', $_POST['jd_twit_append'] );
|
204 |
update_option( 'jd_post_excerpt', $_POST['jd_post_excerpt'] );
|
205 |
update_option( 'jd_max_tags',$_POST['jd_max_tags']);
|
|
|
206 |
update_option( 'jd_max_characters',$_POST['jd_max_characters']);
|
207 |
update_option( 'jd_replace_character',$_POST['jd_replace_character']);
|
208 |
update_option( 'jd_date_format',$_POST['jd_date_format'] );
|
@@ -210,7 +219,7 @@ function wpt_update_settings() {
|
|
210 |
update_option( 'use_dynamic_analytics',( isset( $_POST['use-dynamic-analytics'] ) )?$_POST['use-dynamic-analytics']:0 );
|
211 |
update_option( 'use-twitter-analytics', ( isset( $_POST['use-twitter-analytics'] ) )?$_POST['use-twitter-analytics']:0 );
|
212 |
update_option( 'twitter-analytics-campaign', $_POST['twitter-analytics-campaign'] );
|
213 |
-
update_option( 'jd_individual_twitter_users', $_POST['jd_individual_twitter_users'] );
|
214 |
$wtt_user_permissions = $_POST['wtt_user_permissions'];
|
215 |
$prev = get_option('wtt_user_permissions');
|
216 |
if ( $wtt_user_permissions != $prev ) {
|
@@ -219,10 +228,22 @@ function wpt_update_settings() {
|
|
219 |
$author = get_role('author'); $author->remove_cap('wpt_twitter_oauth');
|
220 |
$editor = get_role('editor'); $editor->remove_cap('wpt_twitter_oauth');
|
221 |
switch ( $wtt_user_permissions ) {
|
222 |
-
case 'subscriber':
|
223 |
-
|
224 |
-
|
225 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
226 |
default:
|
227 |
$role = get_role( $wtt_user_permissions );
|
228 |
$role->add_cap('wpt_twitter_oauth');
|
@@ -239,10 +260,22 @@ function wpt_update_settings() {
|
|
239 |
$author = get_role('author'); $author->remove_cap('wpt_twitter_custom');
|
240 |
$editor = get_role('editor'); $editor->remove_cap('wpt_twitter_custom');
|
241 |
switch ( $wtt_show_custom_tweet ) {
|
242 |
-
case 'subscriber':
|
243 |
-
|
244 |
-
|
245 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
246 |
default:
|
247 |
$role = get_role( $wtt_show_custom_tweet );
|
248 |
$role->add_cap('wpt_twitter_custom');
|
@@ -259,10 +292,22 @@ function wpt_update_settings() {
|
|
259 |
$author = get_role('author'); $author->remove_cap('wpt_twitter_switch');
|
260 |
$editor = get_role('editor'); $editor->remove_cap('wpt_twitter_switch');
|
261 |
switch ( $wpt_twitter_switch ) {
|
262 |
-
case 'subscriber':
|
263 |
-
|
264 |
-
|
265 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
266 |
default:
|
267 |
$role = get_role( $wpt_twitter_switch );
|
268 |
$role->add_cap('wpt_twitter_switch');
|
@@ -271,6 +316,38 @@ function wpt_update_settings() {
|
|
271 |
}
|
272 |
update_option( 'wpt_twitter_switch',$wpt_twitter_switch);
|
273 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
274 |
update_option( 'disable_url_failure' , ( isset( $_POST['disable_url_failure'] ) )?$_POST['disable_url_failure']:0 );
|
275 |
update_option( 'disable_twitter_failure' , ( isset( $_POST['disable_twitter_failure'] ) )?$_POST['disable_twitter_failure']:0 );
|
276 |
update_option( 'disable_oauth_notice' , ( isset( $_POST['disable_oauth_notice'] ) )?$_POST['disable_oauth_notice']:0 );
|
@@ -322,7 +399,7 @@ function wpt_update_settings() {
|
|
322 |
$categories = $_POST['categories'];
|
323 |
update_option('limit_categories','1');
|
324 |
update_option('tweet_categories',$categories);
|
325 |
-
$message = __("Category limits updated.");
|
326 |
} else {
|
327 |
update_option('limit_categories','0');
|
328 |
update_option('tweet_categories','');
|
@@ -446,7 +523,7 @@ function wpt_update_settings() {
|
|
446 |
<h2><?php _e("WP to Twitter Options", 'wp-to-twitter'); ?></h2>
|
447 |
<div id="wpt_settings_page" class="postbox-container" style="width: 70%">
|
448 |
|
449 |
-
<?php $wp_to_twitter_directory = get_bloginfo( 'wpurl' ) . '/' .
|
450 |
|
451 |
<div class="metabox-holder">
|
452 |
|
@@ -458,12 +535,26 @@ function wpt_update_settings() {
|
|
458 |
|
459 |
<h3><?php _e('Basic Settings','wp-to-twitter'); ?></h3>
|
460 |
<div class="inside">
|
|
|
461 |
<form method="post" action="">
|
462 |
<?php $nonce = wp_nonce_field('wp-to-twitter-nonce', '_wpnonce', true, false).wp_referer_field(false); echo "<div>$nonce</div>"; ?>
|
463 |
<div>
|
464 |
<input type="submit" name="submit" value="<?php _e("Save WP->Twitter Options", 'wp-to-twitter'); ?>" class="button-primary button-side" />
|
465 |
-
|
466 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
467 |
$wpt_settings = get_option('wpt_post_types');
|
468 |
|
469 |
foreach( $post_types as $type ) {
|
@@ -476,14 +567,15 @@ function wpt_update_settings() {
|
|
476 |
}
|
477 |
?>
|
478 |
<fieldset class='wpt_types'>
|
479 |
-
|
|
|
480 |
<p>
|
481 |
<input type="checkbox" name="wpt_post_types[<?php echo $type; ?>][post-published-update]" id="<?php echo $type; ?>-post-published-update" value="1" <?php echo jd_checkCheckbox('wpt_post_types',$type,'post-published-update')?> />
|
482 |
-
<label for="<?php echo $type; ?>-post-published-update"><strong><?php
|
483 |
</p>
|
484 |
<p>
|
485 |
<input type="checkbox" name="wpt_post_types[<?php echo $type; ?>][post-edited-update]" id="<?php echo $type; ?>-post-edited-update" value="1" <?php echo jd_checkCheckbox('wpt_post_types',$type,'post-edited-update')?> />
|
486 |
-
<label for="<?php echo $type; ?>-post-edited-update"><strong><?php
|
487 |
</p>
|
488 |
</fieldset>
|
489 |
<?php
|
@@ -497,7 +589,7 @@ function wpt_update_settings() {
|
|
497 |
<label for="comment-published-update"><strong><?php _e("Update Twitter when new comments are posted", 'wp-to-twitter'); ?></strong></label><br />
|
498 |
<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' ) ) ) ); ?>" />
|
499 |
</p>
|
500 |
-
<p><?php _e('In addition to
|
501 |
</fieldset>
|
502 |
<fieldset>
|
503 |
<legend><?php _e('Settings for Links','wp-to-twitter'); ?></legend>
|
@@ -507,21 +599,7 @@ function wpt_update_settings() {
|
|
507 |
<label for="newlink-published-text"><?php _e("Text for new link updates:", 'wp-to-twitter'); ?></label> <input type="text" name="newlink-published-text" id="newlink-published-text" size="60" maxlength="120" value="<?php echo ( esc_attr( stripslashes( get_option( 'newlink-published-text' ) ) ) ); ?>" /><br /><small><?php _e('Available shortcodes: <code>#url#</code>, <code>#title#</code>, and <code>#description#</code>.','wp-to-twitter'); ?></small>
|
508 |
</p>
|
509 |
</fieldset>
|
510 |
-
|
511 |
-
<legend><?php _e("Choose your short URL service (account settings below)",'wp-to-twitter' ); ?></legend>
|
512 |
-
<p>
|
513 |
-
<select name="jd_shortener" id="jd_shortener">
|
514 |
-
<option value="3" <?php jd_checkSelect('jd_shortener','3'); ?>><?php _e("Don't shorten URLs.", 'wp-to-twitter'); ?></option>
|
515 |
-
<option value="7" <?php jd_checkSelect('jd_shortener','7'); ?>><?php _e("Use Su.pr for my URL shortener.", 'wp-to-twitter'); ?></option>
|
516 |
-
<option value="2" <?php jd_checkSelect('jd_shortener','2'); ?>><?php _e("Use Bit.ly for my URL shortener.", 'wp-to-twitter'); ?></option>
|
517 |
-
<option value="8" <?php jd_checkSelect('jd_shortener','8'); ?>><?php _e("Use Goo.gl as a URL shortener.", 'wp-to-twitter'); ?></option>
|
518 |
-
<option value="5" <?php jd_checkSelect('jd_shortener','5'); ?>><?php _e("YOURLS (installed on this server)", 'wp-to-twitter'); ?></option>
|
519 |
-
<option value="6" <?php jd_checkSelect('jd_shortener','6'); ?>><?php _e("YOURLS (installed on a remote server)", 'wp-to-twitter'); ?></option>
|
520 |
-
<option value="4" <?php jd_checkSelect('jd_shortener','4'); ?>><?php _e("Use WordPress as a URL shortener.", 'wp-to-twitter'); ?></option>
|
521 |
-
</select><br />
|
522 |
-
<small><?php _e("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.", 'wp-to-twitter'); ?></small>
|
523 |
-
</p>
|
524 |
-
</fieldset>
|
525 |
<div>
|
526 |
<input type="hidden" name="submit-type" value="options" />
|
527 |
</div>
|
@@ -533,19 +611,17 @@ function wpt_update_settings() {
|
|
533 |
</div>
|
534 |
<div class="ui-sortable meta-box-sortables">
|
535 |
<div class="postbox">
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
<div class="inside">
|
540 |
<div class="panel">
|
541 |
-
<h4 class="supr"><span><?php _e("Your Su.pr account details", 'wp-to-twitter'); ?></span></h4>
|
542 |
-
|
543 |
<form method="post" action="">
|
544 |
<div>
|
545 |
<p>
|
546 |
<label for="suprlogin"><?php _e("Your Su.pr Username:", 'wp-to-twitter'); ?></label>
|
547 |
<input type="text" name="suprlogin" id="suprlogin" size="40" value="<?php echo ( esc_attr( get_option( 'suprlogin' ) ) ) ?>" />
|
548 |
-
</p>
|
549 |
<p>
|
550 |
<label for="suprapi"><?php _e("Your Su.pr <abbr title='application programming interface'>API</abbr> Key:", 'wp-to-twitter'); ?></label>
|
551 |
<input type="text" name="suprapi" id="suprapi" size="40" value="<?php echo ( esc_attr( get_option( 'suprapi' ) ) ) ?>" />
|
@@ -558,62 +634,66 @@ function wpt_update_settings() {
|
|
558 |
</div>
|
559 |
</form>
|
560 |
</div>
|
|
|
561 |
<div class="panel">
|
562 |
-
<h4 class="bitly"><span><?php _e("Your Bit.ly account details", 'wp-to-twitter'); ?></span></h4>
|
563 |
-
|
564 |
-
<div>
|
565 |
-
<p>
|
566 |
-
<label for="bitlylogin"><?php _e("Your Bit.ly username:", 'wp-to-twitter'); ?></label>
|
567 |
-
<input type="text" name="bitlylogin" id="bitlylogin" value="<?php echo ( esc_attr( get_option( 'bitlylogin' ) ) ) ?>" />
|
568 |
-
<br /><small><?php _e('This must be a standard Bit.ly account. Your Twitter or Facebook log-in will not work.','wp-to-twitter'); ?></small></p>
|
569 |
-
<p>
|
570 |
-
<label for="bitlyapi"><?php _e("Your Bit.ly <abbr title='application programming interface'>API</abbr> Key:", 'wp-to-twitter'); ?></label>
|
571 |
-
<input type="text" name="bitlyapi" id="bitlyapi" size="40" value="<?php echo ( esc_attr( get_option( 'bitlyapi' ) ) ) ?>" />
|
572 |
-
</p>
|
573 |
-
|
574 |
<div>
|
575 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
576 |
</div>
|
577 |
-
|
578 |
-
<p><input type="submit" name="submit" value="<?php _e('Save Bit.ly API Key','wp-to-twitter'); ?>" class="button-primary" /> <input type="submit" name="clear" value="<?php _e('Clear Bit.ly API Key','wp-to-twitter'); ?>" /><br /><small><?php _e("A Bit.ly API key and username is required to shorten URLs via the Bit.ly API and WP to Twitter.", 'wp-to-twitter' ); ?></small></p>
|
579 |
</div>
|
580 |
-
|
581 |
-
|
582 |
-
<
|
583 |
-
<
|
584 |
-
<form method="post" action="">
|
585 |
-
<div>
|
586 |
-
<p>
|
587 |
-
<label for="yourlspath"><?php _e('Path to your YOURLS config file (Local installations)','wp-to-twitter'); ?></label> <input type="text" id="yourlspath" name="yourlspath" size="60" value="<?php echo ( esc_attr( get_option( 'yourlspath' ) ) ); ?>"/>
|
588 |
-
<small><?php _e('Example:','wp-to-twitter'); ?> <code>/home/username/www/www/yourls/includes/config.php</code></small>
|
589 |
-
</p>
|
590 |
-
<p>
|
591 |
-
<label for="yourlsurl"><?php _e('URI to the YOURLS API (Remote installations)','wp-to-twitter'); ?></label> <input type="text" id="yourlsurl" name="yourlsurl" size="60" value="<?php echo ( esc_attr( get_option( 'yourlsurl' ) ) ); ?>"/>
|
592 |
-
<small><?php _e('Example:','wp-to-twitter'); ?> <code>http://domain.com/yourls-api.php</code></small>
|
593 |
-
</p>
|
594 |
-
<p>
|
595 |
-
<label for="yourlslogin"><?php _e("Your YOURLS username:", 'wp-to-twitter'); ?></label>
|
596 |
-
<input type="text" name="yourlslogin" id="yourlslogin" size="30" value="<?php echo ( esc_attr( get_option( 'yourlslogin' ) ) ) ?>" />
|
597 |
-
</p>
|
598 |
-
<p>
|
599 |
-
<label for="yourlsapi"><?php _e("Your YOURLS password:", 'wp-to-twitter'); ?> <?php if ( get_option( 'yourlsapi' ) != '') { _e("<em>Saved</em>",'wp-to-twitter'); } ?></label>
|
600 |
-
<input type="password" name="yourlsapi" id="yourlsapi" size="30" value="" />
|
601 |
-
</p>
|
602 |
-
<p>
|
603 |
-
<input type="radio" name="jd_keyword_format" id="jd_keyword_id" value="1" <?php jd_checkSelect( 'jd_keyword_format',1,'checkbox' ); ?> /> <label for="jd_keyword_id"><?php _e("Post ID for YOURLS url slug.",'wp-to-twitter'); ?></label><br />
|
604 |
-
<input type="radio" name="jd_keyword_format" id="jd_keyword" value="2" <?php jd_checkSelect( 'jd_keyword_format',2,'checkbox' ); ?> /> <label for="jd_keyword"><?php _e("Custom keyword for YOURLS url slug.",'wp-to-twitter'); ?></label><br />
|
605 |
-
<input type="radio" name="jd_keyword_format" id="jd_keyword_default" value="0" <?php jd_checkSelect( 'jd_keyword_format',0,'checkbox' ); ?> /> <label for="jd_keyword_default"><?php _e("Default: sequential URL numbering.",'wp-to-twitter'); ?></label>
|
606 |
-
</p>
|
607 |
<div>
|
608 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
609 |
</div>
|
610 |
-
<?php $nonce = wp_nonce_field('wp-to-twitter-nonce', '_wpnonce', true, false).wp_referer_field(false); echo "<div>$nonce</div>"; ?>
|
611 |
-
<p><input type="submit" name="submit" value="<?php _e('Save YOURLS Account Info','wp-to-twitter'); ?>" class="button-primary" /> <input type="submit" name="clear" value="<?php _e('Clear YOURLS password','wp-to-twitter'); ?>" /><br /><small><?php _e("A YOURLS password and username is required to shorten URLs via the remote YOURLS API and WP to Twitter.", 'wp-to-twitter' ); ?></small></p>
|
612 |
-
</div>
|
613 |
-
</form>
|
614 |
-
</div>
|
615 |
-
|
616 |
-
</div>
|
617 |
</div>
|
618 |
</div>
|
619 |
|
@@ -630,8 +710,11 @@ function wpt_update_settings() {
|
|
630 |
<p>
|
631 |
<input type="checkbox" name="jd_strip_nonan" id="jd_strip_nonan" value="1" <?php echo jd_checkCheckbox('jd_strip_nonan'); ?> /> <label for="jd_strip_nonan"><?php _e("Strip nonalphanumeric characters from tags",'wp-to-twitter'); ?></label><br />
|
632 |
<label for="jd_replace_character"><?php _e("Spaces in tags replaced with:",'wp-to-twitter'); ?></label> <input type="text" name="jd_replace_character" id="jd_replace_character" value="<?php echo esc_attr( get_option('jd_replace_character') ); ?>" size="3" /><br />
|
633 |
-
|
634 |
<small><?php _e("Default replacement is an underscore (<code>_</code>). Use <code>[ ]</code> to remove spaces entirely.",'wp-to-twitter'); ?></small>
|
|
|
|
|
|
|
|
|
635 |
</p>
|
636 |
<p>
|
637 |
<label for="jd_max_tags"><?php _e("Maximum number of tags to include:",'wp-to-twitter'); ?></label> <input type="text" name="jd_max_tags" id="jd_max_tags" value="<?php echo esc_attr( get_option('jd_max_tags') ); ?>" size="3" />
|
@@ -642,16 +725,16 @@ function wpt_update_settings() {
|
|
642 |
<label for="jd_post_excerpt"><?php _e("Length of post excerpt (in characters):", 'wp-to-twitter'); ?></label> <input type="text" name="jd_post_excerpt" id="jd_post_excerpt" size="3" maxlength="3" value="<?php echo ( esc_attr( get_option( 'jd_post_excerpt' ) ) ) ?>" /><br /><small><?php _e("By default, extracted from the post itself. If you use the 'Excerpt' field, that will be used instead.", 'wp-to-twitter'); ?></small>
|
643 |
</p>
|
644 |
<p>
|
645 |
-
<label for="jd_date_format"><?php _e("WP to Twitter Date Formatting:", 'wp-to-twitter'); ?></label> <input type="text" name="jd_date_format" id="jd_date_format" size="12" maxlength="12" value="<?php if (get_option('jd_date_format')=='') { echo ( esc_attr( get_option('date_format') ) ); } else { echo ( esc_attr( get_option( 'jd_date_format' ) ) ); }?>" /> (<?php if ( get_option( 'jd_date_format' ) != '' ) { echo date_i18n( get_option( 'jd_date_format' ) ); } else { echo "<em>".date_i18n( get_option( 'date_format' ) )."</em>"; } ?>)<br />
|
646 |
<small><?php _e("Default is from your general settings. <a href='http://codex.wordpress.org/Formatting_Date_and_Time'>Date Formatting Documentation</a>.", 'wp-to-twitter'); ?></small>
|
647 |
</p>
|
648 |
|
649 |
<p>
|
650 |
-
<label for="jd_twit_prepend"><?php _e("Custom text before all Tweets:", 'wp-to-twitter'); ?></label> <input type="text" name="jd_twit_prepend" id="jd_twit_prepend" size="20"
|
651 |
-
<label for="jd_twit_append"><?php _e("Custom text after all Tweets:", 'wp-to-twitter'); ?></label> <input type="text" name="jd_twit_append" id="jd_twit_append" size="20"
|
652 |
</p>
|
653 |
<p>
|
654 |
-
<label for="jd_twit_custom_url"><?php _e("Custom field for an alternate URL to be shortened and Tweeted:", 'wp-to-twitter'); ?></label> <input type="text" name="jd_twit_custom_url" id="jd_twit_custom_url" size="40" maxlength="120" value="<?php echo ( esc_attr( get_option( 'jd_twit_custom_url' ) ) ) ?>" /><br />
|
655 |
<small><?php _e("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.", 'wp-to-twitter'); ?></small>
|
656 |
</p>
|
657 |
<?php
|
@@ -664,7 +747,8 @@ function wpt_update_settings() {
|
|
664 |
'blogname'=>4,
|
665 |
'author'=>5,
|
666 |
'account'=>6,
|
667 |
-
'tags'=>7
|
|
|
668 |
$preferred_order = get_option( 'wpt_truncation_order' );
|
669 |
if ( is_array( $preferred_order ) ) { $default_order = $preferred_order; }
|
670 |
asort($default_order);
|
@@ -686,6 +770,8 @@ function wpt_update_settings() {
|
|
686 |
<p>
|
687 |
<input type="checkbox" name="jd_tweet_default" id="jd_tweet_default" value="1" <?php echo jd_checkCheckbox('jd_tweet_default')?> />
|
688 |
<label for="jd_tweet_default"><?php _e("Do not post Tweets by default", 'wp-to-twitter'); ?></label><br />
|
|
|
|
|
689 |
<small><?php _e("By default, all posts meeting other requirements will be posted to Twitter. Check this to change your setting.", 'wp-to-twitter'); ?></small>
|
690 |
</p>
|
691 |
<p>
|
@@ -694,7 +780,7 @@ function wpt_update_settings() {
|
|
694 |
<small><?php _e("If checked, all posts edited individually or in bulk through the Quick Edit feature will be Tweeted.", 'wp-to-twitter'); ?></small>
|
695 |
|
696 |
</p>
|
697 |
-
<?php if ( function_exists( 'wpt_pro_exists') && get_option( 'wpt_delay_tweets' ) > 0 ) {
|
698 |
$r_disabled = " disabled='disabled'";
|
699 |
$r_message = "<em>".__('Delaying tweets with WP Tweets PRO moves Tweeting to an publishing-independent action.','wp-to-twitter' )."</em>";
|
700 |
} else {
|
@@ -721,10 +807,10 @@ function wpt_update_settings() {
|
|
721 |
<label for="use-dynamic-analytics"><?php _e("Use a dynamic identifier with Google Analytics and WP-to-Twitter", 'wp-to-twitter'); ?></label><br />
|
722 |
<label for="jd-dynamic-analytics"><?php _e("What dynamic identifier would you like to use?","wp-to-twitter"); ?></label>
|
723 |
<select name="jd-dynamic-analytics" id="jd-dynamic-analytics">
|
724 |
-
<option value="post_category"<?php jd_checkSelect( 'jd_dynamic_analytics','post_category'); ?>><?php _e("Category","wp-to-twitter"); ?></option>
|
725 |
-
<option value="post_ID"<?php jd_checkSelect( 'jd_dynamic_analytics','post_ID'); ?>><?php _e("Post ID","wp-to-twitter"); ?></option>
|
726 |
-
<option value="post_title"<?php jd_checkSelect( 'jd_dynamic_analytics','post_title'); ?>><?php _e("Post Title","wp-to-twitter"); ?></option>
|
727 |
-
<option value="post_author"<?php jd_checkSelect( 'jd_dynamic_analytics','post_author'); ?>><?php _e("Author","wp-to-twitter"); ?></option>
|
728 |
</select><br />
|
729 |
</p>
|
730 |
</fieldset>
|
@@ -740,27 +826,34 @@ function wpt_update_settings() {
|
|
740 |
$options = '';
|
741 |
$permissions = '';
|
742 |
$switcher = '';
|
|
|
743 |
foreach ( $roles as $role=>$rolename ) {
|
744 |
$permissions .= ($role !='subscriber')?"<option value='$role'".wtt_option_selected(get_option('wtt_user_permissions'),$role,'option').">$rolename</option>\n":'';
|
745 |
$options .= ($role !='subscriber')?"<option value='$role'".wtt_option_selected(get_option('wtt_show_custom_tweet'),$role,'option').">$rolename</option>\n":'';
|
746 |
-
$switcher .= ($role !='subscriber')?"<option value='$role'".wtt_option_selected(get_option('wpt_twitter_switch'),$role,'option').">$rolename</option>\n":'';
|
|
|
747 |
}
|
748 |
?>
|
749 |
<p>
|
750 |
-
<label for="wtt_user_permissions"><?php _e('
|
751 |
<?php echo $permissions; ?>
|
752 |
</select>
|
753 |
</p>
|
754 |
<p>
|
755 |
-
<label for="wtt_show_custom_tweet"><?php _e('
|
756 |
<?php echo $options; ?>
|
757 |
</select>
|
758 |
</p>
|
759 |
<p>
|
760 |
-
<label for="wpt_twitter_switch"><?php _e('
|
761 |
<?php echo $switcher; ?>
|
762 |
</select>
|
763 |
</p>
|
|
|
|
|
|
|
|
|
|
|
764 |
</fieldset>
|
765 |
<fieldset>
|
766 |
<legend><?php _e('Disable Error Messages','wp-to-twitter'); ?></legend>
|
@@ -802,10 +895,7 @@ function wpt_update_settings() {
|
|
802 |
<div class="postbox" id="get-support">
|
803 |
<h3><?php _e('Get Plug-in Support','wp-to-twitter'); ?></h3>
|
804 |
<div class="inside">
|
805 |
-
|
806 |
-
<p><?php _e('Support requests without a donation will not be answered, but will be treated as bug reports.','wp-to-twitter'); ?></p>
|
807 |
-
<?php } ?>
|
808 |
-
<?php wpt_get_support_form(); ?>
|
809 |
</div>
|
810 |
</div>
|
811 |
|
@@ -820,20 +910,31 @@ function wpt_update_settings() {
|
|
820 |
</form>
|
821 |
</div>
|
822 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
823 |
<div class="postbox-container" style="width:20%">
|
824 |
<div class="metabox-holder">
|
825 |
<div class="ui-sortable meta-box-sortables">
|
826 |
<div class="postbox">
|
827 |
-
<?php if ( !function_exists( 'wpt_pro_exists' )
|
828 |
<h3><strong><?php _e('Support WP to Twitter','wp-to-twitter'); ?></strong></h3>
|
829 |
<?php } else { ?>
|
830 |
<h3><strong><?php _e('WP to Twitter Support','wp-to-twitter'); ?></strong></h3>
|
831 |
<?php } ?>
|
832 |
<div class="inside resources">
|
|
|
|
|
|
|
|
|
833 |
<ul>
|
834 |
-
<li><a href="?page=wp-to-twitter/wp-to-twitter.php&export=settings"><?php _e("View Settings",'wp-to-twitter'); ?></a
|
835 |
<?php if ( function_exists( 'wpt_pro_exists' ) ) { $support = admin_url('admin.php?page=wp-tweets-pro'); } else { $support = admin_url('options-general.php?page=wp-to-twitter/wp-to-twitter.php');} ?>
|
836 |
-
<
|
837 |
</ul>
|
838 |
<?php if ( get_option('jd_donations') != 1 && !function_exists( 'wpt_pro_exists' ) ) { ?>
|
839 |
<div>
|
@@ -856,7 +957,7 @@ function wpt_update_settings() {
|
|
856 |
<div class="postbox">
|
857 |
<h3><strong><?php _e('Upgrade Now!','wp-to-twitter'); ?></strong></h3>
|
858 |
<div class="inside purchase">
|
859 |
-
<strong><a href="http://www.joedolson.com/articles/wp-tweets-pro/"><?php _e('Upgrade to <strong>WP Tweets PRO</strong> for more
|
860 |
<p><?php _e('Extra features with the PRO upgrade:','wp-to-twitter'); ?></p>
|
861 |
<ul>
|
862 |
<li><?php _e('Users can post to their own Twitter accounts','wp-to-twitter'); ?></li>
|
@@ -879,17 +980,20 @@ function wpt_update_settings() {
|
|
879 |
<li><?php _e("<code>#post#</code>: a short excerpt of the post content", 'wp-to-twitter'); ?></li>
|
880 |
<li><?php _e("<code>#category#</code>: the first selected category for the post", 'wp-to-twitter'); ?></li>
|
881 |
<li><?php _e("<code>#date#</code>: the post date", 'wp-to-twitter'); ?></li>
|
882 |
-
<li><?php _e("<code>#modified
|
883 |
<li><?php _e("<code>#url#</code>: the post URL", 'wp-to-twitter'); ?></li>
|
884 |
-
<li><?php _e("<code>#author#</code>: the post author",'wp-to-twitter'); ?></li>
|
|
|
885 |
<li><?php _e("<code>#account#</code>: the twitter @reference for the account (or the author, if author settings are enabled and set.)",'wp-to-twitter'); ?></li>
|
886 |
<li><?php _e("<code>#tags#</code>: your tags modified into hashtags. See options in the Advanced Settings section, below.",'wp-to-twitter'); ?></li>
|
|
|
|
|
|
|
887 |
</ul>
|
888 |
<p><?php _e("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>", 'wp-to-twitter'); ?>
|
889 |
</div>
|
890 |
</div>
|
891 |
</div>
|
892 |
</div>
|
893 |
-
|
894 |
-
|
895 |
-
<?php global $wp_version; }
|
16 |
return 'checked="checked"';
|
17 |
}
|
18 |
}
|
19 |
+
|
20 |
function jd_checkSelect( $theFieldname, $theValue, $type='select' ) {
|
21 |
if( get_option( $theFieldname ) == $theValue ) {
|
22 |
+
return ( $type == 'select' )?'selected="selected"':'checked="checked"';
|
23 |
}
|
24 |
}
|
25 |
|
|
|
26 |
function jd_check_functions() {
|
27 |
$message = "<div class='update'><ul>";
|
28 |
// grab or set necessary variables
|
29 |
$testurl = get_bloginfo( 'url' );
|
30 |
$shortener = get_option( 'jd_shortener' );
|
31 |
$title = urlencode( 'Your blog home' );
|
32 |
+
$shrink = apply_filters( 'wptt_shorten_link', $testurl, $title, false, true );
|
|
|
|
|
33 |
if ($shrink == FALSE) {
|
34 |
if ($shortener == 1) {
|
35 |
$error = htmlentities( get_option('wp_supr_error') );
|
36 |
} else if ( $shortener == 2 ) {
|
37 |
$error = htmlentities( get_option('wp_bitly_error') );
|
38 |
} else {
|
39 |
+
$error = __('No error information is available for your shortener.','wp-to-twitter');
|
40 |
}
|
41 |
$message .= __("<li class=\"error\"><strong>WP to Twitter was unable to contact your selected URL shortening service.</strong></li>",'wp-to-twitter');
|
42 |
$message .= "<li><code>$error</code></li>";
|
47 |
//check twitter credentials
|
48 |
if ( wtt_oauth_test() ) {
|
49 |
$rand = rand(1000000,9999999);
|
50 |
+
$testpost = jd_doTwitterAPIPost( "This is a test of WP->Twitter. $shrink ($rand)" );
|
51 |
if ($testpost) {
|
52 |
$message .= __("<li><strong>WP to Twitter successfully submitted a status update to Twitter.</strong></li>",'wp-to-twitter');
|
53 |
} else {
|
126 |
$administrator->add_cap('wpt_twitter_oauth');
|
127 |
$administrator->add_cap('wpt_twitter_custom');
|
128 |
$administrator->add_cap('wpt_twitter_switch');
|
129 |
+
$administrator->add_cap('wpt_can_tweet');
|
130 |
+
$editor = get_role('editor');
|
131 |
+
if ( is_object( $editor ) ) { $editor->add_cap('wpt_can_tweet'); }
|
132 |
+
$author = get_role('author');
|
133 |
+
if ( is_object( $author ) ) { $author->add_cap('wpt_can_tweet'); }
|
134 |
+
$contributor = get_role('contributor');
|
135 |
+
if ( is_object( $contributor ) ) { $contributor->add_cap('wpt_can_tweet'); }
|
136 |
+
update_option('wpt_can_tweet','contributor');
|
137 |
update_option('wtt_show_custom_tweet','administrator');
|
138 |
|
139 |
update_option( 'jd_twit_remote', '0' );
|
150 |
update_option( 'wp_url_failure','0' );
|
151 |
// Default publishing options.
|
152 |
update_option( 'jd_tweet_default', '0' );
|
153 |
+
update_option( 'jd_tweet_default_edit','0' );
|
154 |
update_option( 'wpt_inline_edits', '0' );
|
155 |
// Note that default options are set.
|
156 |
update_option( 'twitterInitialised', '1' );
|
170 |
</div>
|
171 |
|
172 |
');
|
173 |
+
} else if ( $oauth_message == "failed" ) {
|
174 |
print('
|
175 |
<div id="message" class="updated fade">
|
176 |
+
<p>'.__('WP to Twitter failed to connect with Twitter. Try <a href="#wpt_http">switching to an HTTP connection</a>.', 'wp-to-twitter').'</p>
|
177 |
</div>
|
178 |
|
179 |
');
|
202 |
|
203 |
if ( isset( $_POST['submit-type'] ) && $_POST['submit-type'] == 'advanced' ) {
|
204 |
update_option( 'jd_tweet_default', ( isset( $_POST['jd_tweet_default'] ) )?$_POST['jd_tweet_default']:0 );
|
205 |
+
update_option( 'jd_tweet_default_edit', ( isset( $_POST['jd_tweet_default_edit'] ) )?$_POST['jd_tweet_default_edit']:0 );
|
206 |
update_option( 'wpt_inline_edits', ( isset( $_POST['wpt_inline_edits'] ) )?$_POST['wpt_inline_edits']:0 );
|
207 |
update_option( 'jd_twit_remote',( isset( $_POST['jd_twit_remote'] ) )?$_POST['jd_twit_remote']:0 );
|
208 |
update_option( 'jd_twit_custom_url', $_POST['jd_twit_custom_url'] );
|
211 |
update_option( 'jd_twit_append', $_POST['jd_twit_append'] );
|
212 |
update_option( 'jd_post_excerpt', $_POST['jd_post_excerpt'] );
|
213 |
update_option( 'jd_max_tags',$_POST['jd_max_tags']);
|
214 |
+
update_option( 'wpt_tag_source', ( ( $_POST['wpt_tag_source'] == 'slug' )?'slug':'' ) );
|
215 |
update_option( 'jd_max_characters',$_POST['jd_max_characters']);
|
216 |
update_option( 'jd_replace_character',$_POST['jd_replace_character']);
|
217 |
update_option( 'jd_date_format',$_POST['jd_date_format'] );
|
219 |
update_option( 'use_dynamic_analytics',( isset( $_POST['use-dynamic-analytics'] ) )?$_POST['use-dynamic-analytics']:0 );
|
220 |
update_option( 'use-twitter-analytics', ( isset( $_POST['use-twitter-analytics'] ) )?$_POST['use-twitter-analytics']:0 );
|
221 |
update_option( 'twitter-analytics-campaign', $_POST['twitter-analytics-campaign'] );
|
222 |
+
update_option( 'jd_individual_twitter_users', ( isset( $_POST['jd_individual_twitter_users'] )? $_POST['jd_individual_twitter_users']:0 ) );
|
223 |
$wtt_user_permissions = $_POST['wtt_user_permissions'];
|
224 |
$prev = get_option('wtt_user_permissions');
|
225 |
if ( $wtt_user_permissions != $prev ) {
|
228 |
$author = get_role('author'); $author->remove_cap('wpt_twitter_oauth');
|
229 |
$editor = get_role('editor'); $editor->remove_cap('wpt_twitter_oauth');
|
230 |
switch ( $wtt_user_permissions ) {
|
231 |
+
case 'subscriber':
|
232 |
+
if ( is_object( $subscriber ) ) {
|
233 |
+
$subscriber->add_cap('wpt_twitter_oauth'); $contributor->add_cap('wpt_twitter_oauth'); $author->add_cap('wpt_twitter_oauth'); $editor->add_cap('wpt_twitter_oauth'); break;
|
234 |
+
}
|
235 |
+
case 'contributor':
|
236 |
+
if ( is_object( $contributor ) ) {
|
237 |
+
$contributor->add_cap('wpt_twitter_oauth'); $author->add_cap('wpt_twitter_oauth'); $editor->add_cap('wpt_twitter_oauth'); break;
|
238 |
+
}
|
239 |
+
case 'author':
|
240 |
+
if ( is_object( $author ) ) {
|
241 |
+
$author->add_cap('wpt_twitter_oauth'); $editor->add_cap('wpt_twitter_oauth'); break;
|
242 |
+
}
|
243 |
+
case 'editor':
|
244 |
+
if ( is_object( $editor ) ) {
|
245 |
+
$editor->add_cap('wpt_twitter_oauth'); break;
|
246 |
+
}
|
247 |
default:
|
248 |
$role = get_role( $wtt_user_permissions );
|
249 |
$role->add_cap('wpt_twitter_oauth');
|
260 |
$author = get_role('author'); $author->remove_cap('wpt_twitter_custom');
|
261 |
$editor = get_role('editor'); $editor->remove_cap('wpt_twitter_custom');
|
262 |
switch ( $wtt_show_custom_tweet ) {
|
263 |
+
case 'subscriber':
|
264 |
+
if ( is_object( $subscriber ) ) {
|
265 |
+
$subscriber->add_cap('wpt_twitter_custom'); $contributor->add_cap('wpt_twitter_custom'); $author->add_cap('wpt_twitter_custom'); $editor->add_cap('wpt_twitter_custom'); break;
|
266 |
+
}
|
267 |
+
case 'contributor':
|
268 |
+
if ( is_object( $contributor ) ) {
|
269 |
+
$contributor->add_cap('wpt_twitter_custom'); $author->add_cap('wpt_twitter_custom'); $editor->add_cap('wpt_twitter_custom'); break;
|
270 |
+
}
|
271 |
+
case 'author':
|
272 |
+
if ( is_object( $author ) ) {
|
273 |
+
$author->add_cap('wpt_twitter_custom'); $editor->add_cap('wpt_twitter_custom'); break;
|
274 |
+
}
|
275 |
+
case 'editor':
|
276 |
+
if ( is_object( $editor ) ) {
|
277 |
+
$editor->add_cap('wpt_twitter_custom'); break;
|
278 |
+
}
|
279 |
default:
|
280 |
$role = get_role( $wtt_show_custom_tweet );
|
281 |
$role->add_cap('wpt_twitter_custom');
|
292 |
$author = get_role('author'); $author->remove_cap('wpt_twitter_switch');
|
293 |
$editor = get_role('editor'); $editor->remove_cap('wpt_twitter_switch');
|
294 |
switch ( $wpt_twitter_switch ) {
|
295 |
+
case 'subscriber':
|
296 |
+
if ( is_object( $subscriber ) ) {
|
297 |
+
$subscriber->add_cap('wpt_twitter_switch'); $contributor->add_cap('wpt_twitter_switch'); $author->add_cap('wpt_twitter_switch'); $editor->add_cap('wpt_twitter_switch'); break;
|
298 |
+
}
|
299 |
+
case 'contributor':
|
300 |
+
if ( is_object( $contributor ) ) {
|
301 |
+
$contributor->add_cap('wpt_twitter_switch'); $author->add_cap('wpt_twitter_switch'); $editor->add_cap('wpt_twitter_switch'); break;
|
302 |
+
}
|
303 |
+
case 'author':
|
304 |
+
if ( is_object( $author ) ) {
|
305 |
+
$author->add_cap('wpt_twitter_switch'); $editor->add_cap('wpt_twitter_switch'); break;
|
306 |
+
}
|
307 |
+
case 'editor':
|
308 |
+
if ( is_object( $editor ) ) {
|
309 |
+
$editor->add_cap('wpt_twitter_switch'); break;
|
310 |
+
}
|
311 |
default:
|
312 |
$role = get_role( $wpt_twitter_switch );
|
313 |
$role->add_cap('wpt_twitter_switch');
|
316 |
}
|
317 |
update_option( 'wpt_twitter_switch',$wpt_twitter_switch);
|
318 |
|
319 |
+
$wpt_can_tweet = $_POST['wpt_can_tweet'];
|
320 |
+
$prev = get_option('wpt_can_tweet');
|
321 |
+
if ( $wpt_can_tweet != $prev ) {
|
322 |
+
$subscriber = get_role('subscriber'); $subscriber->remove_cap('wpt_can_tweet');
|
323 |
+
$contributor = get_role('contributor'); $contributor->remove_cap('wpt_can_tweet');
|
324 |
+
$author = get_role('author'); $author->remove_cap('wpt_can_tweet');
|
325 |
+
$editor = get_role('editor'); $editor->remove_cap('wpt_can_tweet');
|
326 |
+
switch ( $wpt_can_tweet ) {
|
327 |
+
case 'subscriber':
|
328 |
+
if ( is_object( $subscriber ) ) {
|
329 |
+
$subscriber->add_cap('wpt_can_tweet'); $contributor->add_cap('wpt_can_tweet'); $author->add_cap('wpt_can_tweet'); $editor->add_cap('wpt_can_tweet'); break;
|
330 |
+
}
|
331 |
+
case 'contributor':
|
332 |
+
if ( is_object( $contributor ) ) {
|
333 |
+
$contributor->add_cap('wpt_can_tweet'); $author->add_cap('wpt_can_tweet'); $editor->add_cap('wpt_can_tweet'); break;
|
334 |
+
}
|
335 |
+
case 'author':
|
336 |
+
if ( is_object( $author ) ) {
|
337 |
+
$author->add_cap('wpt_can_tweet'); $editor->add_cap('wpt_can_tweet'); break;
|
338 |
+
}
|
339 |
+
case 'editor':
|
340 |
+
if ( is_object( $editor ) ) {
|
341 |
+
$editor->add_cap('wpt_can_tweet'); break;
|
342 |
+
}
|
343 |
+
default:
|
344 |
+
$role = get_role( $wpt_can_tweet );
|
345 |
+
$role->add_cap('wpt_can_tweet');
|
346 |
+
break;
|
347 |
+
}
|
348 |
+
}
|
349 |
+
update_option( 'wpt_can_tweet',$wpt_can_tweet);
|
350 |
+
|
351 |
update_option( 'disable_url_failure' , ( isset( $_POST['disable_url_failure'] ) )?$_POST['disable_url_failure']:0 );
|
352 |
update_option( 'disable_twitter_failure' , ( isset( $_POST['disable_twitter_failure'] ) )?$_POST['disable_twitter_failure']:0 );
|
353 |
update_option( 'disable_oauth_notice' , ( isset( $_POST['disable_oauth_notice'] ) )?$_POST['disable_oauth_notice']:0 );
|
399 |
$categories = $_POST['categories'];
|
400 |
update_option('limit_categories','1');
|
401 |
update_option('tweet_categories',$categories);
|
402 |
+
$message = __("Category limits updated.",'wp-to-twitter');
|
403 |
} else {
|
404 |
update_option('limit_categories','0');
|
405 |
update_option('tweet_categories','');
|
523 |
<h2><?php _e("WP to Twitter Options", 'wp-to-twitter'); ?></h2>
|
524 |
<div id="wpt_settings_page" class="postbox-container" style="width: 70%">
|
525 |
|
526 |
+
<?php $wp_to_twitter_directory = get_bloginfo( 'wpurl' ) . '/' . WP_PLUGIN_DIR . '/' . dirname( plugin_basename(__FILE__) ); ?>
|
527 |
|
528 |
<div class="metabox-holder">
|
529 |
|
535 |
|
536 |
<h3><?php _e('Basic Settings','wp-to-twitter'); ?></h3>
|
537 |
<div class="inside">
|
538 |
+
|
539 |
<form method="post" action="">
|
540 |
<?php $nonce = wp_nonce_field('wp-to-twitter-nonce', '_wpnonce', true, false).wp_referer_field(false); echo "<div>$nonce</div>"; ?>
|
541 |
<div>
|
542 |
<input type="submit" name="submit" value="<?php _e("Save WP->Twitter Options", 'wp-to-twitter'); ?>" class="button-primary button-side" />
|
543 |
+
<p>
|
544 |
+
<label><?php _e("Choose a short URL service (account settings below)",'wp-to-twitter' ); ?></label>
|
545 |
+
<select name="jd_shortener" id="jd_shortener">
|
546 |
+
<option value="3" <?php echo jd_checkSelect('jd_shortener','3'); ?>><?php _e("Don't shorten URLs.", 'wp-to-twitter'); ?></option>
|
547 |
+
<option value="7" <?php echo jd_checkSelect('jd_shortener','7'); ?>>Su.pr</option>
|
548 |
+
<option value="2" <?php echo jd_checkSelect('jd_shortener','2'); ?>>Bit.ly</option>
|
549 |
+
<option value="8" <?php echo jd_checkSelect('jd_shortener','8'); ?>>Goo.gl</option>
|
550 |
+
<option value="5" <?php echo jd_checkSelect('jd_shortener','5'); ?>><?php _e("YOURLS (on this server)", 'wp-to-twitter'); ?></option>
|
551 |
+
<option value="6" <?php echo jd_checkSelect('jd_shortener','6'); ?>><?php _e("YOURLS (on a remote server)", 'wp-to-twitter'); ?></option>
|
552 |
+
<option value="4" <?php echo jd_checkSelect('jd_shortener','4'); ?>>WordPress</option>
|
553 |
+
<?php if ( function_exists( 'twitter_link' ) ) { ?><option value="9" <?php echo jd_checkSelect('jd_shortener','9'); ?>><?php _e("Use Twitter Friendly Links.", 'wp-to-twitter'); ?></option><?php } ?>
|
554 |
+
</select>
|
555 |
+
</p>
|
556 |
+
<?php
|
557 |
+
$post_types = get_post_types( array('public'=>true), 'names' );
|
558 |
$wpt_settings = get_option('wpt_post_types');
|
559 |
|
560 |
foreach( $post_types as $type ) {
|
567 |
}
|
568 |
?>
|
569 |
<fieldset class='wpt_types'>
|
570 |
+
|
571 |
+
<legend><?php printf(__('Settings for type "%1$s"','wp-to-twitter'),$type); ?></legend>
|
572 |
<p>
|
573 |
<input type="checkbox" name="wpt_post_types[<?php echo $type; ?>][post-published-update]" id="<?php echo $type; ?>-post-published-update" value="1" <?php echo jd_checkCheckbox('wpt_post_types',$type,'post-published-update')?> />
|
574 |
+
<label for="<?php echo $type; ?>-post-published-update"><strong><?php printf(__('Update when %1$s %2$s is published','wp-to-twitter'),$word, $type); ?></strong></label> <label for="<?php echo $type; ?>-post-published-text"><br /><?php printf(__('Text for new %1$s updates','wp-to-twitter'),$type); ?></label><br /><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 if ( isset( $wpt_settings[$type] ) ) { echo esc_attr( stripslashes( $wpt_settings[$type]['post-published-text'] ) ); } ?>" />
|
575 |
</p>
|
576 |
<p>
|
577 |
<input type="checkbox" name="wpt_post_types[<?php echo $type; ?>][post-edited-update]" id="<?php echo $type; ?>-post-edited-update" value="1" <?php echo jd_checkCheckbox('wpt_post_types',$type,'post-edited-update')?> />
|
578 |
+
<label for="<?php echo $type; ?>-post-edited-update"><strong><?php printf(__('Update when %1$s %2$s is edited','wp-to-twitter'),$word, $type); ?></strong></label><br /><label for="<?php echo $type; ?>-post-edited-text"><?php printf(__('Text for %1$s editing updates','wp-to-twitter'),$type); ?></label><br /><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 if ( isset( $wpt_settings[$type] ) ) { echo esc_attr( stripslashes( $wpt_settings[$type]['post-edited-text'] ) ); } ?>" />
|
579 |
</p>
|
580 |
</fieldset>
|
581 |
<?php
|
589 |
<label for="comment-published-update"><strong><?php _e("Update Twitter when new comments are posted", 'wp-to-twitter'); ?></strong></label><br />
|
590 |
<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' ) ) ) ); ?>" />
|
591 |
</p>
|
592 |
+
<p><?php _e('In addition to standard template tags, comments can use <code>#commenter#</code> to post the commenter\'s name in the Tweet. <em>Use this at your own risk</em>, as it lets anybody who can post a comment on your site post a phrase in your Twitter stream.','wp-to-twitter'); ?>
|
593 |
</fieldset>
|
594 |
<fieldset>
|
595 |
<legend><?php _e('Settings for Links','wp-to-twitter'); ?></legend>
|
599 |
<label for="newlink-published-text"><?php _e("Text for new link updates:", 'wp-to-twitter'); ?></label> <input type="text" name="newlink-published-text" id="newlink-published-text" size="60" maxlength="120" value="<?php echo ( esc_attr( stripslashes( get_option( 'newlink-published-text' ) ) ) ); ?>" /><br /><small><?php _e('Available shortcodes: <code>#url#</code>, <code>#title#</code>, and <code>#description#</code>.','wp-to-twitter'); ?></small>
|
600 |
</p>
|
601 |
</fieldset>
|
602 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
603 |
<div>
|
604 |
<input type="hidden" name="submit-type" value="options" />
|
605 |
</div>
|
611 |
</div>
|
612 |
<div class="ui-sortable meta-box-sortables">
|
613 |
<div class="postbox">
|
614 |
+
<h3><?php _e('<abbr title="Uniform Resource Locator">URL</abbr> Shortener Account Settings','wp-to-twitter'); ?></h3>
|
615 |
+
<div class="inside">
|
616 |
+
<?php if ( get_option('jd_shortener') == 7 ) { ?>
|
|
|
617 |
<div class="panel">
|
618 |
+
<h4 class="supr"><span><?php _e("Your Su.pr account details", 'wp-to-twitter'); ?> <?php _e('(optional)','wp-to-twitter'); ?></span></h4>
|
|
|
619 |
<form method="post" action="">
|
620 |
<div>
|
621 |
<p>
|
622 |
<label for="suprlogin"><?php _e("Your Su.pr Username:", 'wp-to-twitter'); ?></label>
|
623 |
<input type="text" name="suprlogin" id="suprlogin" size="40" value="<?php echo ( esc_attr( get_option( 'suprlogin' ) ) ) ?>" />
|
624 |
+
</p>
|
625 |
<p>
|
626 |
<label for="suprapi"><?php _e("Your Su.pr <abbr title='application programming interface'>API</abbr> Key:", 'wp-to-twitter'); ?></label>
|
627 |
<input type="text" name="suprapi" id="suprapi" size="40" value="<?php echo ( esc_attr( get_option( 'suprapi' ) ) ) ?>" />
|
634 |
</div>
|
635 |
</form>
|
636 |
</div>
|
637 |
+
<?php } else if ( get_option('jd_shortener') == 2 ) { ?>
|
638 |
<div class="panel">
|
639 |
+
<h4 class="bitly"><span><?php _e("Your Bit.ly account details", 'wp-to-twitter'); ?></span></h4>
|
640 |
+
<form method="post" action="">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
641 |
<div>
|
642 |
+
<p>
|
643 |
+
<label for="bitlylogin"><?php _e("Your Bit.ly username:", 'wp-to-twitter'); ?></label>
|
644 |
+
<input type="text" name="bitlylogin" id="bitlylogin" value="<?php echo ( esc_attr( get_option( 'bitlylogin' ) ) ) ?>" />
|
645 |
+
<br /><small><a href="http://bitly.com/a/your_api_key"><?php _e('Get your Bit.ly API information.','wp-to-twitter'); ?></a></small></p>
|
646 |
+
<p>
|
647 |
+
<label for="bitlyapi"><?php _e("Your Bit.ly <abbr title='application programming interface'>API</abbr> Key:", 'wp-to-twitter'); ?></label>
|
648 |
+
<input type="text" name="bitlyapi" id="bitlyapi" size="40" value="<?php echo ( esc_attr( get_option( 'bitlyapi' ) ) ) ?>" />
|
649 |
+
</p>
|
650 |
+
<p><a href="http://bitly.com/a/your_api_key"><?php _e('View your Bit.ly username and API key','wp-to-twitter'); ?></a></p>
|
651 |
+
<div>
|
652 |
+
<input type="hidden" name="submit-type" value="bitlyapi" />
|
653 |
+
</div>
|
654 |
+
<?php $nonce = wp_nonce_field('wp-to-twitter-nonce', '_wpnonce', true, false).wp_referer_field(false); echo "<div>$nonce</div>"; ?>
|
655 |
+
<p><input type="submit" name="submit" value="<?php _e('Save Bit.ly API Key','wp-to-twitter'); ?>" class="button-primary" /> <input type="submit" name="clear" value="<?php _e('Clear Bit.ly API Key','wp-to-twitter'); ?>" /><br /><small><?php _e("A Bit.ly API key and username is required to shorten URLs via the Bit.ly API and WP to Twitter.", 'wp-to-twitter' ); ?></small></p>
|
656 |
</div>
|
657 |
+
</form>
|
|
|
658 |
</div>
|
659 |
+
<?php } else if ( get_option('jd_shortener') == 5 || get_option('jd_shortener') == 6 ) { ?>
|
660 |
+
<div class="panel">
|
661 |
+
<h4 class="yourls"><span><?php _e("Your YOURLS account details", 'wp-to-twitter'); ?></span></h4>
|
662 |
+
<form method="post" action="">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
663 |
<div>
|
664 |
+
<p>
|
665 |
+
<label for="yourlspath"><?php _e('Path to your YOURLS config file (Local installations)','wp-to-twitter'); ?></label> <input type="text" id="yourlspath" name="yourlspath" size="60" value="<?php echo ( esc_attr( get_option( 'yourlspath' ) ) ); ?>"/>
|
666 |
+
<small><?php _e('Example:','wp-to-twitter'); ?> <code>/home/username/www/www/yourls/includes/config.php</code></small>
|
667 |
+
</p>
|
668 |
+
<p>
|
669 |
+
<label for="yourlsurl"><?php _e('URI to the YOURLS API (Remote installations)','wp-to-twitter'); ?></label> <input type="text" id="yourlsurl" name="yourlsurl" size="60" value="<?php echo ( esc_attr( get_option( 'yourlsurl' ) ) ); ?>"/>
|
670 |
+
<small><?php _e('Example:','wp-to-twitter'); ?> <code>http://domain.com/yourls-api.php</code></small>
|
671 |
+
</p>
|
672 |
+
<p>
|
673 |
+
<label for="yourlslogin"><?php _e("Your YOURLS username:", 'wp-to-twitter'); ?></label>
|
674 |
+
<input type="text" name="yourlslogin" id="yourlslogin" size="30" value="<?php echo ( esc_attr( get_option( 'yourlslogin' ) ) ) ?>" />
|
675 |
+
</p>
|
676 |
+
<p>
|
677 |
+
<label for="yourlsapi"><?php _e("Your YOURLS password:", 'wp-to-twitter'); ?> <?php if ( get_option( 'yourlsapi' ) != '') { _e("<em>Saved</em>",'wp-to-twitter'); } ?></label>
|
678 |
+
<input type="password" name="yourlsapi" id="yourlsapi" size="30" value="" />
|
679 |
+
</p>
|
680 |
+
<p>
|
681 |
+
<input type="radio" name="jd_keyword_format" id="jd_keyword_id" value="1" <?php echo jd_checkSelect( 'jd_keyword_format',1,'checkbox' ); ?> /> <label for="jd_keyword_id"><?php _e("Post ID for YOURLS url slug.",'wp-to-twitter'); ?></label><br />
|
682 |
+
<input type="radio" name="jd_keyword_format" id="jd_keyword" value="2" <?php echo jd_checkSelect( 'jd_keyword_format',2,'checkbox' ); ?> /> <label for="jd_keyword"><?php _e("Custom keyword for YOURLS url slug.",'wp-to-twitter'); ?></label><br />
|
683 |
+
<input type="radio" name="jd_keyword_format" id="jd_keyword_default" value="0" <?php echo jd_checkSelect( 'jd_keyword_format',0,'checkbox' ); ?> /> <label for="jd_keyword_default"><?php _e("Default: sequential URL numbering.",'wp-to-twitter'); ?></label>
|
684 |
+
</p>
|
685 |
+
<div>
|
686 |
+
<input type="hidden" name="submit-type" value="yourlsapi" />
|
687 |
+
</div>
|
688 |
+
<?php $nonce = wp_nonce_field('wp-to-twitter-nonce', '_wpnonce', true, false).wp_referer_field(false); echo "<div>$nonce</div>"; ?>
|
689 |
+
<p><input type="submit" name="submit" value="<?php _e('Save YOURLS Account Info','wp-to-twitter'); ?>" class="button-primary" /> <input type="submit" name="clear" value="<?php _e('Clear YOURLS password','wp-to-twitter'); ?>" /><br /><small><?php _e("A YOURLS password and username is required to shorten URLs via the remote YOURLS API and WP to Twitter.", 'wp-to-twitter' ); ?></small></p>
|
690 |
+
</div>
|
691 |
+
</form>
|
692 |
+
</div>
|
693 |
+
<?php } else { ?>
|
694 |
+
<?php _e('Your shortener does not require any account settings.','wp-to-twitter'); ?>
|
695 |
+
<?php } ?>
|
696 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
697 |
</div>
|
698 |
</div>
|
699 |
|
710 |
<p>
|
711 |
<input type="checkbox" name="jd_strip_nonan" id="jd_strip_nonan" value="1" <?php echo jd_checkCheckbox('jd_strip_nonan'); ?> /> <label for="jd_strip_nonan"><?php _e("Strip nonalphanumeric characters from tags",'wp-to-twitter'); ?></label><br />
|
712 |
<label for="jd_replace_character"><?php _e("Spaces in tags replaced with:",'wp-to-twitter'); ?></label> <input type="text" name="jd_replace_character" id="jd_replace_character" value="<?php echo esc_attr( get_option('jd_replace_character') ); ?>" size="3" /><br />
|
|
|
713 |
<small><?php _e("Default replacement is an underscore (<code>_</code>). Use <code>[ ]</code> to remove spaces entirely.",'wp-to-twitter'); ?></small>
|
714 |
+
</p>
|
715 |
+
<p>
|
716 |
+
<input type="checkbox" name="wpt_tag_source" id="wpt_tag_source" value="slug" <?php echo jd_checkSelect( 'wpt_tag_source', 'slug', 'checkbox' ); ?> /> <label for="wpt_tag_source"><?php _e("Use tag slug as hashtag value",'wp-to-twitter'); ?></label><br />
|
717 |
+
|
718 |
</p>
|
719 |
<p>
|
720 |
<label for="jd_max_tags"><?php _e("Maximum number of tags to include:",'wp-to-twitter'); ?></label> <input type="text" name="jd_max_tags" id="jd_max_tags" value="<?php echo esc_attr( get_option('jd_max_tags') ); ?>" size="3" />
|
725 |
<label for="jd_post_excerpt"><?php _e("Length of post excerpt (in characters):", 'wp-to-twitter'); ?></label> <input type="text" name="jd_post_excerpt" id="jd_post_excerpt" size="3" maxlength="3" value="<?php echo ( esc_attr( get_option( 'jd_post_excerpt' ) ) ) ?>" /><br /><small><?php _e("By default, extracted from the post itself. If you use the 'Excerpt' field, that will be used instead.", 'wp-to-twitter'); ?></small>
|
726 |
</p>
|
727 |
<p>
|
728 |
+
<label for="jd_date_format"><?php _e("WP to Twitter Date Formatting:", 'wp-to-twitter'); ?></label> <input type="text" name="jd_date_format" id="jd_date_format" size="12" maxlength="12" value="<?php if (get_option('jd_date_format')=='') { echo ( esc_attr( stripslashes( get_option('date_format') ) ) ); } else { echo ( esc_attr( get_option( 'jd_date_format' ) ) ); }?>" /> (<?php if ( get_option( 'jd_date_format' ) != '' ) { echo date_i18n( get_option( 'jd_date_format' ) ); } else { echo "<em>".date_i18n( get_option( 'date_format' ) )."</em>"; } ?>)<br />
|
729 |
<small><?php _e("Default is from your general settings. <a href='http://codex.wordpress.org/Formatting_Date_and_Time'>Date Formatting Documentation</a>.", 'wp-to-twitter'); ?></small>
|
730 |
</p>
|
731 |
|
732 |
<p>
|
733 |
+
<label for="jd_twit_prepend"><?php _e("Custom text before all Tweets:", 'wp-to-twitter'); ?></label> <input type="text" name="jd_twit_prepend" id="jd_twit_prepend" size="20" value="<?php echo ( esc_attr( stripslashes( get_option( 'jd_twit_prepend' ) ) ) ) ?>" />
|
734 |
+
<label for="jd_twit_append"><?php _e("Custom text after all Tweets:", 'wp-to-twitter'); ?></label> <input type="text" name="jd_twit_append" id="jd_twit_append" size="20" value="<?php echo ( esc_attr( stripslashes( get_option( 'jd_twit_append' ) ) ) ) ?>" />
|
735 |
</p>
|
736 |
<p>
|
737 |
+
<label for="jd_twit_custom_url"><?php _e("Custom field for an alternate URL to be shortened and Tweeted:", 'wp-to-twitter'); ?></label> <input type="text" name="jd_twit_custom_url" id="jd_twit_custom_url" size="40" maxlength="120" value="<?php echo ( esc_attr( stripslashes( get_option( 'jd_twit_custom_url' ) ) ) ) ?>" /><br />
|
738 |
<small><?php _e("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.", 'wp-to-twitter'); ?></small>
|
739 |
</p>
|
740 |
<?php
|
747 |
'blogname'=>4,
|
748 |
'author'=>5,
|
749 |
'account'=>6,
|
750 |
+
'tags'=>7,
|
751 |
+
'modified'=>8 );
|
752 |
$preferred_order = get_option( 'wpt_truncation_order' );
|
753 |
if ( is_array( $preferred_order ) ) { $default_order = $preferred_order; }
|
754 |
asort($default_order);
|
770 |
<p>
|
771 |
<input type="checkbox" name="jd_tweet_default" id="jd_tweet_default" value="1" <?php echo jd_checkCheckbox('jd_tweet_default')?> />
|
772 |
<label for="jd_tweet_default"><?php _e("Do not post Tweets by default", 'wp-to-twitter'); ?></label><br />
|
773 |
+
<input type="checkbox" name="jd_tweet_default_edit" id="jd_tweet_default_edit" value="1" <?php echo jd_checkCheckbox('jd_tweet_default_edit')?> />
|
774 |
+
<label for="jd_tweet_default_edit"><?php _e("Do not post Tweets by default (editing only)", 'wp-to-twitter'); ?></label><br />
|
775 |
<small><?php _e("By default, all posts meeting other requirements will be posted to Twitter. Check this to change your setting.", 'wp-to-twitter'); ?></small>
|
776 |
</p>
|
777 |
<p>
|
780 |
<small><?php _e("If checked, all posts edited individually or in bulk through the Quick Edit feature will be Tweeted.", 'wp-to-twitter'); ?></small>
|
781 |
|
782 |
</p>
|
783 |
+
<?php if ( function_exists( 'wpt_pro_exists') && wpt_pro_exists() == true && get_option( 'wpt_delay_tweets' ) > 0 ) {
|
784 |
$r_disabled = " disabled='disabled'";
|
785 |
$r_message = "<em>".__('Delaying tweets with WP Tweets PRO moves Tweeting to an publishing-independent action.','wp-to-twitter' )."</em>";
|
786 |
} else {
|
807 |
<label for="use-dynamic-analytics"><?php _e("Use a dynamic identifier with Google Analytics and WP-to-Twitter", 'wp-to-twitter'); ?></label><br />
|
808 |
<label for="jd-dynamic-analytics"><?php _e("What dynamic identifier would you like to use?","wp-to-twitter"); ?></label>
|
809 |
<select name="jd-dynamic-analytics" id="jd-dynamic-analytics">
|
810 |
+
<option value="post_category"<?php echo jd_checkSelect( 'jd_dynamic_analytics','post_category'); ?>><?php _e("Category","wp-to-twitter"); ?></option>
|
811 |
+
<option value="post_ID"<?php echo jd_checkSelect( 'jd_dynamic_analytics','post_ID'); ?>><?php _e("Post ID","wp-to-twitter"); ?></option>
|
812 |
+
<option value="post_title"<?php echo jd_checkSelect( 'jd_dynamic_analytics','post_title'); ?>><?php _e("Post Title","wp-to-twitter"); ?></option>
|
813 |
+
<option value="post_author"<?php echo jd_checkSelect( 'jd_dynamic_analytics','post_author'); ?>><?php _e("Author","wp-to-twitter"); ?></option>
|
814 |
</select><br />
|
815 |
</p>
|
816 |
</fieldset>
|
826 |
$options = '';
|
827 |
$permissions = '';
|
828 |
$switcher = '';
|
829 |
+
$can_tweet = '';
|
830 |
foreach ( $roles as $role=>$rolename ) {
|
831 |
$permissions .= ($role !='subscriber')?"<option value='$role'".wtt_option_selected(get_option('wtt_user_permissions'),$role,'option').">$rolename</option>\n":'';
|
832 |
$options .= ($role !='subscriber')?"<option value='$role'".wtt_option_selected(get_option('wtt_show_custom_tweet'),$role,'option').">$rolename</option>\n":'';
|
833 |
+
$switcher .= ($role !='subscriber')?"<option value='$role'".wtt_option_selected(get_option('wpt_twitter_switch'),$role,'option').">$rolename</option>\n":'';
|
834 |
+
$can_tweet .= ($role !='subscriber')?"<option value='$role'".wtt_option_selected(get_option('wpt_can_tweet'),$role,'option').">$rolename</option>\n":'';
|
835 |
}
|
836 |
?>
|
837 |
<p>
|
838 |
+
<label for="wtt_user_permissions"><?php _e('The lowest user group that can add their Twitter information','wp-to-twitter'); ?></label> <select id="wtt_user_permissions" name="wtt_user_permissions">
|
839 |
<?php echo $permissions; ?>
|
840 |
</select>
|
841 |
</p>
|
842 |
<p>
|
843 |
+
<label for="wtt_show_custom_tweet"><?php _e('The lowest user group that can see the Custom Tweet options when posting','wp-to-twitter'); ?></label> <select id="wtt_show_custom_tweet" name="wtt_show_custom_tweet">
|
844 |
<?php echo $options; ?>
|
845 |
</select>
|
846 |
</p>
|
847 |
<p>
|
848 |
+
<label for="wpt_twitter_switch"><?php _e('The lowest user group that can toggle the Tweet/Don\'t Tweet option','wp-to-twitter'); ?></label> <select id="wpt_twitter_switch" name="wpt_twitter_switch">
|
849 |
<?php echo $switcher; ?>
|
850 |
</select>
|
851 |
</p>
|
852 |
+
<p>
|
853 |
+
<label for="wpt_can_tweet"><?php _e('The lowest user group that can send Twitter updates','wp-to-twitter'); ?></label> <select id="wpt_can_tweet" name="wpt_can_tweet">
|
854 |
+
<?php echo $can_tweet; ?>
|
855 |
+
</select>
|
856 |
+
</p>
|
857 |
</fieldset>
|
858 |
<fieldset>
|
859 |
<legend><?php _e('Disable Error Messages','wp-to-twitter'); ?></legend>
|
895 |
<div class="postbox" id="get-support">
|
896 |
<h3><?php _e('Get Plug-in Support','wp-to-twitter'); ?></h3>
|
897 |
<div class="inside">
|
898 |
+
<?php wpt_get_support_form(); ?>
|
|
|
|
|
|
|
899 |
</div>
|
900 |
</div>
|
901 |
|
910 |
</form>
|
911 |
</div>
|
912 |
</div>
|
913 |
+
<?php wpt_sidebar(); ?>
|
914 |
+
</div>
|
915 |
+
</div>
|
916 |
+
<?php global $wp_version; }
|
917 |
+
|
918 |
+
function wpt_sidebar() {
|
919 |
+
?>
|
920 |
<div class="postbox-container" style="width:20%">
|
921 |
<div class="metabox-holder">
|
922 |
<div class="ui-sortable meta-box-sortables">
|
923 |
<div class="postbox">
|
924 |
+
<?php if ( !function_exists( 'wpt_pro_exists' ) ) { ?>
|
925 |
<h3><strong><?php _e('Support WP to Twitter','wp-to-twitter'); ?></strong></h3>
|
926 |
<?php } else { ?>
|
927 |
<h3><strong><?php _e('WP to Twitter Support','wp-to-twitter'); ?></strong></h3>
|
928 |
<?php } ?>
|
929 |
<div class="inside resources">
|
930 |
+
<p>
|
931 |
+
<a href="https://twitter.com/intent/tweet?screen_name=joedolson&text=WP%20to%20Twitter%20is%great!" class="twitter-mention-button" data-size="large" data-related="joedolson">Tweet to @joedolson</a>
|
932 |
+
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
|
933 |
+
</p>
|
934 |
<ul>
|
935 |
+
<li><a href="?page=wp-to-twitter/wp-to-twitter.php&export=settings"><?php _e("View Settings",'wp-to-twitter'); ?></a> /
|
936 |
<?php if ( function_exists( 'wpt_pro_exists' ) ) { $support = admin_url('admin.php?page=wp-tweets-pro'); } else { $support = admin_url('options-general.php?page=wp-to-twitter/wp-to-twitter.php');} ?>
|
937 |
+
<a href="<?php echo $support; ?>#get-support"><?php _e("Get Support",'wp-to-twitter'); ?></a></li>
|
938 |
</ul>
|
939 |
<?php if ( get_option('jd_donations') != 1 && !function_exists( 'wpt_pro_exists' ) ) { ?>
|
940 |
<div>
|
957 |
<div class="postbox">
|
958 |
<h3><strong><?php _e('Upgrade Now!','wp-to-twitter'); ?></strong></h3>
|
959 |
<div class="inside purchase">
|
960 |
+
<strong><a href="http://www.joedolson.com/articles/wp-tweets-pro/"><?php _e('Upgrade to <strong>WP Tweets PRO</strong> for more options!','wp-to-twitter'); ?></a></strong>
|
961 |
<p><?php _e('Extra features with the PRO upgrade:','wp-to-twitter'); ?></p>
|
962 |
<ul>
|
963 |
<li><?php _e('Users can post to their own Twitter accounts','wp-to-twitter'); ?></li>
|
980 |
<li><?php _e("<code>#post#</code>: a short excerpt of the post content", 'wp-to-twitter'); ?></li>
|
981 |
<li><?php _e("<code>#category#</code>: the first selected category for the post", 'wp-to-twitter'); ?></li>
|
982 |
<li><?php _e("<code>#date#</code>: the post date", 'wp-to-twitter'); ?></li>
|
983 |
+
<li><?php _e("<code>#modified#</code>: the post modified date", 'wp-to-twitter'); ?></li>
|
984 |
<li><?php _e("<code>#url#</code>: the post URL", 'wp-to-twitter'); ?></li>
|
985 |
+
<li><?php _e("<code>#author#</code>: the post author (@reference if available, otherwise display name)",'wp-to-twitter'); ?></li>
|
986 |
+
<li><?php _e("<code>#displayname#</code>: post author's display name", 'wp-to-twitter'); ?></li>
|
987 |
<li><?php _e("<code>#account#</code>: the twitter @reference for the account (or the author, if author settings are enabled and set.)",'wp-to-twitter'); ?></li>
|
988 |
<li><?php _e("<code>#tags#</code>: your tags modified into hashtags. See options in the Advanced Settings section, below.",'wp-to-twitter'); ?></li>
|
989 |
+
<?php if ( function_exists('wpt_pro_exists') && wpt_pro_exists() == true ) { ?>
|
990 |
+
<li><?php _e("<code>#reference#</code>: Used only in co-tweeting. @reference to main account when posted to author account, @reference to author account in post to main account.",'wp-to-twitter'); ?></li>
|
991 |
+
<?php } ?>
|
992 |
</ul>
|
993 |
<p><?php _e("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>", 'wp-to-twitter'); ?>
|
994 |
</div>
|
995 |
</div>
|
996 |
</div>
|
997 |
</div>
|
998 |
+
<?php
|
999 |
+
}
|
|
wp-to-twitter-nl_NL.mo
DELETED
Binary file
|
wp-to-twitter-nl_NL.po
DELETED
@@ -1,1094 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: WP to Twitter 2.2.0 (beta 7)\n"
|
4 |
-
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-to-twitter\n"
|
5 |
-
"POT-Creation-Date: 2010-08-26 22:15+0000\n"
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Rene <info@wpwebshop.com>\n"
|
8 |
-
"Language-Team: translation by WPwebshop.com <info@wpwebshop.com>\n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Poedit-Language: Dutch\n"
|
13 |
-
"X-Poedit-Country: NETHERLANDS\n"
|
14 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
15 |
-
|
16 |
-
#: functions.php:222
|
17 |
-
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."
|
18 |
-
msgstr "[<a href='options-general.php?page=wp-to-twitter/wp-to-twitter.php'>Verberg</a>] Wanneer je problemen hebt kopieer deze instellingen in je bericht om verzoek tot hulp."
|
19 |
-
|
20 |
-
#: wp-to-twitter-manager.php:74
|
21 |
-
msgid "WP to Twitter is now connected with Twitter."
|
22 |
-
msgstr "WP to Twitter is nu verbonden met Twitter."
|
23 |
-
|
24 |
-
#: wp-to-twitter-manager.php:82
|
25 |
-
msgid "OAuth Authentication Failed. Check your credentials and verify that <a href=\"http://www.twitter.com/\">Twitter</a> is running."
|
26 |
-
msgstr "OAuth authenticatie mislukt. Controleer uw login gegevens en controleer of <a href=\"http://www.twitter.com/\">Twitter</a> actief is."
|
27 |
-
|
28 |
-
#: wp-to-twitter-manager.php:89
|
29 |
-
msgid "OAuth Authentication Data Cleared."
|
30 |
-
msgstr "OAuth authenticatie data gewist."
|
31 |
-
|
32 |
-
#: wp-to-twitter-manager.php:99
|
33 |
-
msgid "WP to Twitter Errors Cleared"
|
34 |
-
msgstr "WP to Twitter Foutmeldingen Verwijderd"
|
35 |
-
|
36 |
-
#: wp-to-twitter-manager.php:106
|
37 |
-
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! "
|
38 |
-
msgstr "Sorry! Ik kon de Twitter servers niet bereiken om je nieuwe bericht te plaatsen. Je tweet is opgeslagen in een aangepast veld in je bericht, zodat je deze evt. manueel kan tweeten! "
|
39 |
-
|
40 |
-
#: wp-to-twitter-manager.php:108
|
41 |
-
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. "
|
42 |
-
msgstr "Sorry! Ik kon de Twitter servers niet bereiken om je <strong>nieuwe link</strong> te plaatsen! Ik ben bang dat je het zelf manueel moet plaatsen. "
|
43 |
-
|
44 |
-
#: wp-to-twitter-manager.php:143
|
45 |
-
msgid "WP to Twitter Advanced Options Updated"
|
46 |
-
msgstr "WP to Twitter Geavanceerde Opties Bijgewerkt"
|
47 |
-
|
48 |
-
#: wp-to-twitter-manager.php:160
|
49 |
-
msgid "You must add your Bit.ly login and API key in order to shorten URLs with Bit.ly."
|
50 |
-
msgstr "Je moet je Bit.ly login en API sleutel ingeven om URL's te verkorten met Bit.ly."
|
51 |
-
|
52 |
-
#: wp-to-twitter-manager.php:164
|
53 |
-
msgid "You must add your YOURLS remote URL, login, and password in order to shorten URLs with a remote installation of YOURLS."
|
54 |
-
msgstr "Je moet je YOURLS remote URL, login en wachtwoord toevoegen om URL's te verkorten met een installatie op afstand van YOURLS."
|
55 |
-
|
56 |
-
#: wp-to-twitter-manager.php:168
|
57 |
-
msgid "You must add your YOURLS server path in order to shorten URLs with a remote installation of YOURLS."
|
58 |
-
msgstr "Je moet je YOURLS server pad ingeven om URL's te verkorten met een installatie op afstand van YOURLS."
|
59 |
-
|
60 |
-
#: wp-to-twitter-manager.php:172
|
61 |
-
msgid "WP to Twitter Options Updated"
|
62 |
-
msgstr "WP to Twitter Opties Bijgewerkt"
|
63 |
-
|
64 |
-
#: wp-to-twitter-manager.php:182
|
65 |
-
msgid "Category limits updated."
|
66 |
-
msgstr "Categorie limieten bijgewerkt."
|
67 |
-
|
68 |
-
#: wp-to-twitter-manager.php:186
|
69 |
-
msgid "Category limits unset."
|
70 |
-
msgstr "Categorie limieten uitgezet"
|
71 |
-
|
72 |
-
#: wp-to-twitter-manager.php:194
|
73 |
-
msgid "YOURLS password updated. "
|
74 |
-
msgstr "YOURLS wachtwoord bijgewerkt. "
|
75 |
-
|
76 |
-
#: wp-to-twitter-manager.php:197
|
77 |
-
msgid "YOURLS password deleted. You will be unable to use your remote YOURLS account to create short URLS."
|
78 |
-
msgstr "YOURLS wachtwoord verwijderd. Je kunt je remote YOURLS account niet gebruiken om verkorte URL's te creëeren."
|
79 |
-
|
80 |
-
#: wp-to-twitter-manager.php:199
|
81 |
-
msgid "Failed to save your YOURLS password! "
|
82 |
-
msgstr "YOURLS wachtwoord opslaan is mislukt! "
|
83 |
-
|
84 |
-
#: wp-to-twitter-manager.php:203
|
85 |
-
msgid "YOURLS username added. "
|
86 |
-
msgstr "YOURLS gebruikersnaam toegevoegd. "
|
87 |
-
|
88 |
-
#: wp-to-twitter-manager.php:207
|
89 |
-
msgid "YOURLS API url added. "
|
90 |
-
msgstr "YOURLS API url toegevoegd. "
|
91 |
-
|
92 |
-
#: wp-to-twitter-manager.php:210
|
93 |
-
msgid "YOURLS API url removed. "
|
94 |
-
msgstr "YOURLS API url verwijderd. "
|
95 |
-
|
96 |
-
#: wp-to-twitter-manager.php:215
|
97 |
-
msgid "YOURLS local server path added. "
|
98 |
-
msgstr "YOURLS lokaal server pad toegevoegd. "
|
99 |
-
|
100 |
-
#: wp-to-twitter-manager.php:217
|
101 |
-
msgid "The path to your YOURLS installation is not correct. "
|
102 |
-
msgstr "Het pad naar je YOURLS installatie is niet correct."
|
103 |
-
|
104 |
-
#: wp-to-twitter-manager.php:221
|
105 |
-
msgid "YOURLS local server path removed. "
|
106 |
-
msgstr "YOURLS lokaal server pad verwijderd. "
|
107 |
-
|
108 |
-
#: wp-to-twitter-manager.php:225
|
109 |
-
msgid "YOURLS will use Post ID for short URL slug."
|
110 |
-
msgstr "YOURLS zal een bericht ID gebruiken voor een korte URL slug."
|
111 |
-
|
112 |
-
#: wp-to-twitter-manager.php:228
|
113 |
-
msgid "YOURLS will not use Post ID for the short URL slug."
|
114 |
-
msgstr "YOURLS zal geen bericht ID gebruiken voor een korte URL slug."
|
115 |
-
|
116 |
-
#: wp-to-twitter-manager.php:235
|
117 |
-
msgid "Cligs API Key Updated"
|
118 |
-
msgstr "Cli.gs API sleutel bijgewerkt"
|
119 |
-
|
120 |
-
#: wp-to-twitter-manager.php:238
|
121 |
-
msgid "Cli.gs API Key deleted. Cli.gs created by WP to Twitter will no longer be associated with your account. "
|
122 |
-
msgstr "Cli.gs API sleutel verwijderd. Cli.gs gemaakt met WP to Twitter zullen niet langer verbonden zijn met je account. "
|
123 |
-
|
124 |
-
#: wp-to-twitter-manager.php:240
|
125 |
-
msgid "Cli.gs API Key not added - <a href='http://cli.gs/user/api/'>get one here</a>! "
|
126 |
-
msgstr "Cli.gs API sleutel niet toegevoegd - <a href='http://cli.gs/user/api/'>verkrijg er één hier</a>! "
|
127 |
-
|
128 |
-
#: wp-to-twitter-manager.php:246
|
129 |
-
msgid "Bit.ly API Key Updated."
|
130 |
-
msgstr "Bit.ly API sleutel bijgewerkt."
|
131 |
-
|
132 |
-
#: wp-to-twitter-manager.php:249
|
133 |
-
msgid "Bit.ly API Key deleted. You cannot use the Bit.ly API without an API key. "
|
134 |
-
msgstr "Bit.ly API sleutel verwijderd. Je kan de Bit.ly API niet geberuiken zonder API sleutel. "
|
135 |
-
|
136 |
-
#: wp-to-twitter-manager.php:251
|
137 |
-
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."
|
138 |
-
msgstr "Bit.ly API sleutel niet toegevoegd - <a href='http://bit.ly/account/'>HIER aanvragen</a>! Een API sleutel is nodig om de Bit.ly URL verkorter te gebruiken."
|
139 |
-
|
140 |
-
#: wp-to-twitter-manager.php:255
|
141 |
-
msgid " Bit.ly User Login Updated."
|
142 |
-
msgstr " Bit.ly gebruikerslogin bijgewerkt."
|
143 |
-
|
144 |
-
#: wp-to-twitter-manager.php:258
|
145 |
-
msgid "Bit.ly User Login deleted. You cannot use the Bit.ly API without providing your username. "
|
146 |
-
msgstr "Bit.ly gebruikerslogin verwijderd. Je kan niet de Bit.ly API gebruiken zonder je gebruikersnaam in te voeren. "
|
147 |
-
|
148 |
-
#: wp-to-twitter-manager.php:260
|
149 |
-
msgid "Bit.ly Login not added - <a href='http://bit.ly/account/'>get one here</a>! "
|
150 |
-
msgstr "Bit.ly Login niet toegevoegd - maak <a href='http://bit.ly/account/'>HIER</a> een account aan!"
|
151 |
-
|
152 |
-
#: wp-to-twitter-manager.php:289
|
153 |
-
msgid "No error information is available for your shortener."
|
154 |
-
msgstr "Er is geen informatie beschikbaar over je URL verkorter."
|
155 |
-
|
156 |
-
#: wp-to-twitter-manager.php:291
|
157 |
-
msgid "<li class=\"error\"><strong>WP to Twitter was unable to contact your selected URL shortening service.</strong></li>"
|
158 |
-
msgstr "<li class=\"error\"><strong>WP to Twitter kon geen contact maken met je geselecteerde URL verkorter.</strong></li>"
|
159 |
-
|
160 |
-
#: wp-to-twitter-manager.php:294
|
161 |
-
msgid "<li><strong>WP to Twitter successfully contacted your selected URL shortening service.</strong> The following link should point to your blog homepage:"
|
162 |
-
msgstr "<li><strong>WP to Twitter heeft succesvol contact gemaakt met je geselecteerde URL verkorter.</strong> De volgende link moet naar je blog homepage wijzen:"
|
163 |
-
|
164 |
-
#: wp-to-twitter-manager.php:303
|
165 |
-
msgid "<li><strong>WP to Twitter successfully submitted a status update to Twitter.</strong></li>"
|
166 |
-
msgstr "<li><strong>WP to Twitter heeft succesvol een status update geplaatst op Twitter.</strong></li>"
|
167 |
-
|
168 |
-
#: wp-to-twitter-manager.php:305
|
169 |
-
msgid "<li class=\"error\"><strong>WP to Twitter failed to submit an update to Twitter.</strong></li>"
|
170 |
-
msgstr "<li class=\"error\"><strong>Het is WP to Twitter niet gelukt om een update naar Twitter te sturen.</strong></li>"
|
171 |
-
|
172 |
-
#: wp-to-twitter-manager.php:308
|
173 |
-
msgid "You have not connected WordPress to Twitter."
|
174 |
-
msgstr "Je hebt geen connectie met WordPress to Twitter."
|
175 |
-
|
176 |
-
#: wp-to-twitter-manager.php:312
|
177 |
-
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>"
|
178 |
-
msgstr "<li class=\"error\"><strong>Je server lijkt niet de benodigde methodes te ondersteunen om WP to Twitter te laten functioneren.</strong> Je kunt het altijd proberen - deze tests zijn niet perfect</li>"
|
179 |
-
|
180 |
-
#: wp-to-twitter-manager.php:316
|
181 |
-
msgid "<li><strong>Your server should run WP to Twitter successfully.</strong></li>"
|
182 |
-
msgstr "<li><strong>WP to Twitter zou probleemloos op je server moeten werken.</strong></li>"
|
183 |
-
|
184 |
-
#: wp-to-twitter-manager.php:333
|
185 |
-
msgid "WP to Twitter Options"
|
186 |
-
msgstr "WP to Twitter Opties"
|
187 |
-
|
188 |
-
#: wp-to-twitter-manager.php:343
|
189 |
-
#: wp-to-twitter.php:805
|
190 |
-
msgid "Get Support"
|
191 |
-
msgstr "Verkrijg Ondersteuning"
|
192 |
-
|
193 |
-
#: wp-to-twitter-manager.php:344
|
194 |
-
msgid "Export Settings"
|
195 |
-
msgstr "Exporteren Instellingen"
|
196 |
-
|
197 |
-
#: wp-to-twitter-manager.php:345
|
198 |
-
#: wp-to-twitter.php:805
|
199 |
-
msgid "Make a Donation"
|
200 |
-
msgstr "Geef een Donatie"
|
201 |
-
|
202 |
-
#: wp-to-twitter-manager.php:360
|
203 |
-
msgid "Shortcodes available in post update templates:"
|
204 |
-
msgstr "Shortcodes beschikbaar in bericht update templates:"
|
205 |
-
|
206 |
-
#: wp-to-twitter-manager.php:362
|
207 |
-
msgid "<code>#title#</code>: the title of your blog post"
|
208 |
-
msgstr "<code>#title#</code>: de titel van je blog bericht"
|
209 |
-
|
210 |
-
#: wp-to-twitter-manager.php:363
|
211 |
-
msgid "<code>#blog#</code>: the title of your blog"
|
212 |
-
msgstr "<code>#blog#</code>: de titel van je blog"
|
213 |
-
|
214 |
-
#: wp-to-twitter-manager.php:364
|
215 |
-
msgid "<code>#post#</code>: a short excerpt of the post content"
|
216 |
-
msgstr "<code>#post#</code>: een korte samenvatting van het bericht"
|
217 |
-
|
218 |
-
#: wp-to-twitter-manager.php:365
|
219 |
-
msgid "<code>#category#</code>: the first selected category for the post"
|
220 |
-
msgstr "<code>#category#</code>: de eerste geselecteerde categorie voor het bericht"
|
221 |
-
|
222 |
-
#: wp-to-twitter-manager.php:366
|
223 |
-
msgid "<code>#date#</code>: the post date"
|
224 |
-
msgstr "<code>#date#</code>: de bericht datum"
|
225 |
-
|
226 |
-
#: wp-to-twitter-manager.php:367
|
227 |
-
msgid "<code>#url#</code>: the post URL"
|
228 |
-
msgstr "<code>#url#</code>: de bericht URL"
|
229 |
-
|
230 |
-
#: wp-to-twitter-manager.php:368
|
231 |
-
msgid "<code>#author#</code>: the post author"
|
232 |
-
msgstr "<code>#author#</code>: de bericht auteur"
|
233 |
-
|
234 |
-
#: wp-to-twitter-manager.php:370
|
235 |
-
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>"
|
236 |
-
msgstr "Je kan ook aangepaste shortcodes creëeren voor toegang tot aangepaste WordPress velden. Gebruik dubbele [ ] om de naam van je aangepast veld om de waarde hiervan toe te voegen aan je status update. Voorbeeld: <code>[[custom_field]]</code></p>"
|
237 |
-
|
238 |
-
#: wp-to-twitter-manager.php:375
|
239 |
-
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>"
|
240 |
-
msgstr "<p>Eén of meer van je laatste berichten konden niet hun status sturen naar Twitter. Je tweet is bewaard in een aangepast veld in je bericht, en je kan het naar behoeven manueel retweeten.</p>"
|
241 |
-
|
242 |
-
#: wp-to-twitter-manager.php:379
|
243 |
-
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://blog.cli.gs\">Cli.gs Blog</a>] [<a href=\"http://blog.bit.ly\">Bit.ly Blog</a>]</p>"
|
244 |
-
msgstr "<p>De query van de URL verkorter API is mislukt, en je URL is niet verkort. De volledige bericht URL is gebruikt in je Tweet. Informeer bij de aanbieder van je URL verkorter of er problemen zijn. [<a href=\"http://blog.cli.gs\">Cli.gs Blog</a>] [<a href=\"http://blog.bit.ly\">Bit.ly Blog</a>]</p>"
|
245 |
-
|
246 |
-
#: wp-to-twitter-manager.php:386
|
247 |
-
msgid "Clear 'WP to Twitter' Error Messages"
|
248 |
-
msgstr "Verwijderden 'WP to Twitter' Foutmeldingen"
|
249 |
-
|
250 |
-
#: wp-to-twitter-manager.php:402
|
251 |
-
msgid "Basic Settings"
|
252 |
-
msgstr "Basis Instellingen"
|
253 |
-
|
254 |
-
#: wp-to-twitter-manager.php:408
|
255 |
-
msgid "Tweet Templates"
|
256 |
-
msgstr "Tweet Templates"
|
257 |
-
|
258 |
-
#: wp-to-twitter-manager.php:411
|
259 |
-
msgid "Update when a post is published"
|
260 |
-
msgstr "Bijwerken wanneer een bericht is gepubliceerd"
|
261 |
-
|
262 |
-
#: wp-to-twitter-manager.php:411
|
263 |
-
msgid "Text for new post updates:"
|
264 |
-
msgstr "Tekst voor nieuwe berichten:"
|
265 |
-
|
266 |
-
#: wp-to-twitter-manager.php:417
|
267 |
-
#: wp-to-twitter-manager.php:420
|
268 |
-
msgid "Update when a post is edited"
|
269 |
-
msgstr "Bijwerken wanneer een bericht aangepast is"
|
270 |
-
|
271 |
-
#: wp-to-twitter-manager.php:417
|
272 |
-
#: wp-to-twitter-manager.php:420
|
273 |
-
msgid "Text for editing updates:"
|
274 |
-
msgstr "Tekst voor aangepaste updates:"
|
275 |
-
|
276 |
-
#: wp-to-twitter-manager.php:421
|
277 |
-
msgid "You can not disable updates on edits when using Postie or similar plugins."
|
278 |
-
msgstr "Je kunt updates niet uitschakelen op bewerkingen wanneer je Postie of vergelijkbare plugins gebruikt."
|
279 |
-
|
280 |
-
#: wp-to-twitter-manager.php:425
|
281 |
-
msgid "Update Twitter when new Wordpress Pages are published"
|
282 |
-
msgstr "Bijwerken Twitter wanneer nieuwe WordPress pagina's gepubliceerd zijn"
|
283 |
-
|
284 |
-
#: wp-to-twitter-manager.php:425
|
285 |
-
msgid "Text for new page updates:"
|
286 |
-
msgstr "Tekst voor nieuwe pagina updates:"
|
287 |
-
|
288 |
-
#: wp-to-twitter-manager.php:429
|
289 |
-
msgid "Update Twitter when WordPress Pages are edited"
|
290 |
-
msgstr "Bijwerken Twitter wanneer WordPress pagina's bijgewerkt worden"
|
291 |
-
|
292 |
-
#: wp-to-twitter-manager.php:429
|
293 |
-
msgid "Text for page edit updates:"
|
294 |
-
msgstr "Tekst voor aanpassing pagina updates:"
|
295 |
-
|
296 |
-
#: wp-to-twitter-manager.php:433
|
297 |
-
msgid "Update Twitter when you post a Blogroll link"
|
298 |
-
msgstr "Bijwerken Twitter wanneer je een blogrol link plaatst"
|
299 |
-
|
300 |
-
#: wp-to-twitter-manager.php:434
|
301 |
-
msgid "Text for new link updates:"
|
302 |
-
msgstr "Tekst voor nieuwe link updates:"
|
303 |
-
|
304 |
-
#: wp-to-twitter-manager.php:434
|
305 |
-
msgid "Available shortcodes: <code>#url#</code>, <code>#title#</code>, and <code>#description#</code>."
|
306 |
-
msgstr "Beschikbare shortcodes: <code>#url#</code>, <code>#title#</code> en <code>#description#</code>."
|
307 |
-
|
308 |
-
#: wp-to-twitter-manager.php:438
|
309 |
-
msgid "Choose your short URL service (account settings below)"
|
310 |
-
msgstr "Kies je verkorte URL service (account instelllingen onder)"
|
311 |
-
|
312 |
-
#: wp-to-twitter-manager.php:441
|
313 |
-
msgid "Use Cli.gs for my URL shortener."
|
314 |
-
msgstr "Gebruik Cli.gs voor mijn URL verkorter."
|
315 |
-
|
316 |
-
#: wp-to-twitter-manager.php:442
|
317 |
-
msgid "Use Bit.ly for my URL shortener."
|
318 |
-
msgstr "Gebruik Bit.ly voor mijn URL verkorter."
|
319 |
-
|
320 |
-
#: wp-to-twitter-manager.php:443
|
321 |
-
msgid "YOURLS (installed on this server)"
|
322 |
-
msgstr "YOURLS (geïnstalleerd op deze server)"
|
323 |
-
|
324 |
-
#: wp-to-twitter-manager.php:444
|
325 |
-
msgid "YOURLS (installed on a remote server)"
|
326 |
-
msgstr "YOURLS (geïnstalleerd op een remote server)"
|
327 |
-
|
328 |
-
#: wp-to-twitter-manager.php:445
|
329 |
-
msgid "Use WordPress as a URL shortener."
|
330 |
-
msgstr "Gebruik WordPress voor mijn URL verkorter."
|
331 |
-
|
332 |
-
#: wp-to-twitter-manager.php:446
|
333 |
-
msgid "Don't shorten URLs."
|
334 |
-
msgstr "URL's niet verkorten."
|
335 |
-
|
336 |
-
#: wp-to-twitter-manager.php:448
|
337 |
-
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."
|
338 |
-
msgstr "Door WordPress als een URL verkorter te gebruiken zul je URL's verzenden naar Twitter in het standaard formaat voor WordPress: <code>http://domein.com/folder/?p=123</code>. Google Analytics is niet beschikbaar wanneer WordPress gebruikt wordt voor verkorte URL's."
|
339 |
-
|
340 |
-
#: wp-to-twitter-manager.php:454
|
341 |
-
msgid "Save WP->Twitter Options"
|
342 |
-
msgstr "WP->Twitter Instellingen opslaan"
|
343 |
-
|
344 |
-
#: wp-to-twitter-manager.php:466
|
345 |
-
msgid "<abbr title=\"Uniform Resource Locator\">URL</abbr> Shortener Account Settings"
|
346 |
-
msgstr "<abbr title=\"Uniform Resource Locator\">URL</abbr> Verkorter Account Instellingen"
|
347 |
-
|
348 |
-
#: wp-to-twitter-manager.php:470
|
349 |
-
msgid "Your Cli.gs account details"
|
350 |
-
msgstr "Jouw Cli.gs account informatie"
|
351 |
-
|
352 |
-
#: wp-to-twitter-manager.php:475
|
353 |
-
msgid "Your Cli.gs <abbr title='application programming interface'>API</abbr> Key:"
|
354 |
-
msgstr "Jouw Cli.gs <abbr title='application programming interface'>API</abbr> sleutel:"
|
355 |
-
|
356 |
-
#: wp-to-twitter-manager.php:481
|
357 |
-
msgid "Don't have a Cli.gs account or Cligs API key? <a href='http://cli.gs/user/api/'>Get one free here</a>!<br />You'll need an API key in order to associate the Cligs you create with your Cligs account."
|
358 |
-
msgstr "Heb je geen Cli.gs account of Cligs API sleutel? <a href='http://cli.gs/user/api/'>Verkrijg er een gratis hier</a>!<br />Je hebt een API sleutel nodig om de Cligs die je maakt te koppelen aan je Cligs account."
|
359 |
-
|
360 |
-
#: wp-to-twitter-manager.php:487
|
361 |
-
msgid "Your Bit.ly account details"
|
362 |
-
msgstr "Je Biy.ly account informatie"
|
363 |
-
|
364 |
-
#: wp-to-twitter-manager.php:492
|
365 |
-
msgid "Your Bit.ly username:"
|
366 |
-
msgstr "Je Bit.ly gebruikersnaam:"
|
367 |
-
|
368 |
-
#: wp-to-twitter-manager.php:496
|
369 |
-
msgid "Your Bit.ly <abbr title='application programming interface'>API</abbr> Key:"
|
370 |
-
msgstr "Je Bit.ly <abbr title='application programming interface'>API</abbr> sleutel:"
|
371 |
-
|
372 |
-
#: wp-to-twitter-manager.php:503
|
373 |
-
msgid "Save Bit.ly API Key"
|
374 |
-
msgstr "Opslaan Bit.ly API sleutel"
|
375 |
-
|
376 |
-
#: wp-to-twitter-manager.php:503
|
377 |
-
msgid "Clear Bit.ly API Key"
|
378 |
-
msgstr "Verwijderen Bit.ly API sleutel"
|
379 |
-
|
380 |
-
#: wp-to-twitter-manager.php:503
|
381 |
-
msgid "A Bit.ly API key and username is required to shorten URLs via the Bit.ly API and WP to Twitter."
|
382 |
-
msgstr "Een Bit.ly API en gebruikersnaam is nodig om URL's te verkorten met de Bit.ly API en WP to Twitter."
|
383 |
-
|
384 |
-
#: wp-to-twitter-manager.php:508
|
385 |
-
msgid "Your YOURLS account details"
|
386 |
-
msgstr "Jouw YOURLS account informatie"
|
387 |
-
|
388 |
-
#: wp-to-twitter-manager.php:512
|
389 |
-
msgid "Path to the YOURLS config file (Local installations)"
|
390 |
-
msgstr "Pad naar het YOURLS configuratie bestand (Lokale installaties)"
|
391 |
-
|
392 |
-
#: wp-to-twitter-manager.php:513
|
393 |
-
#: wp-to-twitter-manager.php:517
|
394 |
-
msgid "Example:"
|
395 |
-
msgstr "Voorbeeld:"
|
396 |
-
|
397 |
-
#: wp-to-twitter-manager.php:516
|
398 |
-
msgid "URI to the YOURLS API (Remote installations)"
|
399 |
-
msgstr "URI naar de YOURLS API (Remote installaties)"
|
400 |
-
|
401 |
-
#: wp-to-twitter-manager.php:520
|
402 |
-
msgid "Your YOURLS username:"
|
403 |
-
msgstr "Je YOURLS gebruikersnaam:"
|
404 |
-
|
405 |
-
#: wp-to-twitter-manager.php:524
|
406 |
-
msgid "Your YOURLS password:"
|
407 |
-
msgstr "Jouw YOURLS wachtwoord:"
|
408 |
-
|
409 |
-
#: wp-to-twitter-manager.php:524
|
410 |
-
msgid "<em>Saved</em>"
|
411 |
-
msgstr "<em>Opgeslagen</em>"
|
412 |
-
|
413 |
-
#: wp-to-twitter-manager.php:528
|
414 |
-
msgid "Use Post ID for YOURLS url slug."
|
415 |
-
msgstr "Gebruik bericht ID voor YOURLS url slug."
|
416 |
-
|
417 |
-
#: wp-to-twitter-manager.php:533
|
418 |
-
msgid "Save YOURLS Account Info"
|
419 |
-
msgstr "Opslaan YOURLS Account Info"
|
420 |
-
|
421 |
-
#: wp-to-twitter-manager.php:533
|
422 |
-
msgid "Clear YOURLS password"
|
423 |
-
msgstr "Wissen YOURLS wachtwoord"
|
424 |
-
|
425 |
-
#: wp-to-twitter-manager.php:533
|
426 |
-
msgid "A YOURLS password and username is required to shorten URLs via the remote YOURLS API and WP to Twitter."
|
427 |
-
msgstr "Een YOURLS wachtwoord en gebruikersnaam is nodig om URL's te verkorten met de YOURLS API en WP to Twitter."
|
428 |
-
|
429 |
-
#: wp-to-twitter-manager.php:550
|
430 |
-
msgid "Advanced Settings"
|
431 |
-
msgstr "Geavanceerde Instellingen"
|
432 |
-
|
433 |
-
#: wp-to-twitter-manager.php:557
|
434 |
-
msgid "Advanced Tweet settings"
|
435 |
-
msgstr "Geavanceerde Tweet instellingen"
|
436 |
-
|
437 |
-
#: wp-to-twitter-manager.php:560
|
438 |
-
msgid "Add tags as hashtags on Tweets"
|
439 |
-
msgstr "Gebruik tags als hashtags in Tweets"
|
440 |
-
|
441 |
-
#: wp-to-twitter-manager.php:561
|
442 |
-
msgid "Spaces replaced with:"
|
443 |
-
msgstr "Spaties vervangen door:"
|
444 |
-
|
445 |
-
#: wp-to-twitter-manager.php:562
|
446 |
-
msgid "Default replacement is an underscore (<code>_</code>). Use <code>[ ]</code> to remove spaces entirely."
|
447 |
-
msgstr "Standaard vervanging is een underscore (<code>_</code>). Gebruik <code>[ ]</code> om spaties geheel te verwijderen."
|
448 |
-
|
449 |
-
#: wp-to-twitter-manager.php:565
|
450 |
-
msgid "Maximum number of tags to include:"
|
451 |
-
msgstr "Maximaal aantal tags om in te voegen:"
|
452 |
-
|
453 |
-
#: wp-to-twitter-manager.php:566
|
454 |
-
msgid "Maximum length in characters for included tags:"
|
455 |
-
msgstr "Maximale lengte in karakters voor ingevoegde tags:"
|
456 |
-
|
457 |
-
#: wp-to-twitter-manager.php:567
|
458 |
-
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."
|
459 |
-
msgstr "Deze opties maken het mogelijk om de lengte en het aantal tags te beperken welke naar Twitter verzonden worden als hashtags. Ingesteld op <code>0</code> of laat leeg om alle tags toe te staan."
|
460 |
-
|
461 |
-
#: wp-to-twitter-manager.php:570
|
462 |
-
msgid "Length of post excerpt (in characters):"
|
463 |
-
msgstr "Lengte van de bericht samenvatting (in karakters):"
|
464 |
-
|
465 |
-
#: wp-to-twitter-manager.php:570
|
466 |
-
msgid "By default, extracted from the post itself. If you use the 'Excerpt' field, that will be used instead."
|
467 |
-
msgstr "Standaard, verkregen van het bericht zelf. Wanneer je het 'Excerpt' veld gebruikt zal dit hiervoor gebruikt worden."
|
468 |
-
|
469 |
-
#: wp-to-twitter-manager.php:573
|
470 |
-
msgid "WP to Twitter Date Formatting:"
|
471 |
-
msgstr "WP to Twitter Datum Opmaak:"
|
472 |
-
|
473 |
-
#: wp-to-twitter-manager.php:574
|
474 |
-
msgid "Default is from your general settings. <a href='http://codex.wordpress.org/Formatting_Date_and_Time'>Date Formatting Documentation</a>."
|
475 |
-
msgstr "Standaard is van je algemene instellingen. <a href='http://codex.wordpress.org/Formatting_Date_and_Time'>Documentatie Datum Opmaak (Eng)</a>."
|
476 |
-
|
477 |
-
#: wp-to-twitter-manager.php:578
|
478 |
-
msgid "Custom text before all Tweets:"
|
479 |
-
msgstr "Aangepaste tekst vóór alle Tweets:"
|
480 |
-
|
481 |
-
#: wp-to-twitter-manager.php:579
|
482 |
-
msgid "Custom text after all Tweets:"
|
483 |
-
msgstr "Aangepaste tekst ná alle Tweets:"
|
484 |
-
|
485 |
-
#: wp-to-twitter-manager.php:582
|
486 |
-
msgid "Custom field for an alternate URL to be shortened and Tweeted:"
|
487 |
-
msgstr "Aangepast veld voor een alternatieve URL om te verkorten en tweeten:"
|
488 |
-
|
489 |
-
#: wp-to-twitter-manager.php:583
|
490 |
-
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."
|
491 |
-
msgstr "Je kan een aangepast veld gebruiken om een alternatieve URL te sturen voor je bericht. De waarde is de naam van het aangepast veld met de externe URL."
|
492 |
-
|
493 |
-
#: wp-to-twitter-manager.php:587
|
494 |
-
msgid "Special Cases when WordPress should send a Tweet"
|
495 |
-
msgstr "Speciale gevallen wanneer WordPress een Tweet moet versturen"
|
496 |
-
|
497 |
-
#: wp-to-twitter-manager.php:590
|
498 |
-
msgid "Do not post status updates by default"
|
499 |
-
msgstr "Plaats standaard geen bericht updates"
|
500 |
-
|
501 |
-
#: wp-to-twitter-manager.php:591
|
502 |
-
msgid "By default, all posts meeting other requirements will be posted to Twitter. Check this to change your setting."
|
503 |
-
msgstr "Standaard zullen alle berichten welke voldoen aan andere eisen verstuurd worden naar Twitter. Selecteer dit om de instelling te veranderen."
|
504 |
-
|
505 |
-
#: wp-to-twitter-manager.php:595
|
506 |
-
msgid "Send Twitter Updates on remote publication (Post by Email or XMLRPC Client)"
|
507 |
-
msgstr "Twitter updates verzenden met publicatie op afstand (per email of XMLRPC Client)"
|
508 |
-
|
509 |
-
#: wp-to-twitter-manager.php:597
|
510 |
-
msgid "I'm using a plugin to post by email, such as Postie. Only check this if your updates do not work."
|
511 |
-
msgstr "Ik gebruik een plugin om te versturen per email, zoals Postie. Selecteer dit alleen als je updates niet werken."
|
512 |
-
|
513 |
-
#: wp-to-twitter-manager.php:601
|
514 |
-
msgid "Update Twitter when a post is published using QuickPress"
|
515 |
-
msgstr "Update Twitter wanneer een bericht gepubliceerd wordt met QuickPress"
|
516 |
-
|
517 |
-
#: wp-to-twitter-manager.php:605
|
518 |
-
msgid "Google Analytics Settings"
|
519 |
-
msgstr "Google Analytics Instellingen"
|
520 |
-
|
521 |
-
#: wp-to-twitter-manager.php:606
|
522 |
-
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."
|
523 |
-
msgstr "Je kunt de respons van Twitter bijhouden met gebruik van Google Analytics door een campagne ID te definiëren. Je kan zowel een statische als een dynamische ID definiëren. Statische ID's wijzigen niet van bericht tot bericht; dynamische ID's worden afgeleid van informatie relevant aan het specifieke bericht. Dynamische ID's stellen je in staat om statistieken onder te verdelen met een extra variabele."
|
524 |
-
|
525 |
-
#: wp-to-twitter-manager.php:610
|
526 |
-
msgid "Use a Static Identifier with WP-to-Twitter"
|
527 |
-
msgstr "Gebruik statische identifier met WP-to-Twitter"
|
528 |
-
|
529 |
-
#: wp-to-twitter-manager.php:611
|
530 |
-
msgid "Static Campaign identifier for Google Analytics:"
|
531 |
-
msgstr "Statische Campagne Identifier voor Google Analytics:"
|
532 |
-
|
533 |
-
#: wp-to-twitter-manager.php:615
|
534 |
-
msgid "Use a dynamic identifier with Google Analytics and WP-to-Twitter"
|
535 |
-
msgstr "Gebruik een dynamische identifier met Google Analytics en WP-to-Twitter"
|
536 |
-
|
537 |
-
#: wp-to-twitter-manager.php:616
|
538 |
-
msgid "What dynamic identifier would you like to use?"
|
539 |
-
msgstr "Welke dynamische ID wil je gebruiken?"
|
540 |
-
|
541 |
-
#: wp-to-twitter-manager.php:618
|
542 |
-
msgid "Category"
|
543 |
-
msgstr "Categorie"
|
544 |
-
|
545 |
-
#: wp-to-twitter-manager.php:619
|
546 |
-
msgid "Post ID"
|
547 |
-
msgstr "Bericht ID"
|
548 |
-
|
549 |
-
#: wp-to-twitter-manager.php:620
|
550 |
-
msgid "Post Title"
|
551 |
-
msgstr "Bericht Titel"
|
552 |
-
|
553 |
-
#: wp-to-twitter-manager.php:621
|
554 |
-
msgid "Author"
|
555 |
-
msgstr "Auteur"
|
556 |
-
|
557 |
-
#: wp-to-twitter-manager.php:626
|
558 |
-
msgid "Individual Authors"
|
559 |
-
msgstr "Individuele Auteurs"
|
560 |
-
|
561 |
-
#: wp-to-twitter-manager.php:629
|
562 |
-
msgid "Authors have individual Twitter accounts"
|
563 |
-
msgstr "Auteurs hebben individuele Twitter accounts"
|
564 |
-
|
565 |
-
#: wp-to-twitter-manager.php:629
|
566 |
-
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."
|
567 |
-
msgstr "Auteurs kunnen hun gebruikersnaam instellen in hun profiel. Vanaf versie 2.2.0 kunnen auteurs niet meer berichten plaatsen op hun eigen Twitter accounts, alleen een @reference naar de auteur kan toegevoegd worden."
|
568 |
-
|
569 |
-
#: wp-to-twitter-manager.php:633
|
570 |
-
msgid "Disable Error Messages"
|
571 |
-
msgstr "Uitschakelen Foutmeldingen"
|
572 |
-
|
573 |
-
#: wp-to-twitter-manager.php:636
|
574 |
-
msgid "Disable global URL shortener error messages."
|
575 |
-
msgstr "Uitschakelen globale URL verkorter foutmeldingen."
|
576 |
-
|
577 |
-
#: wp-to-twitter-manager.php:640
|
578 |
-
msgid "Disable global Twitter API error messages."
|
579 |
-
msgstr "Uitschakelen globale Twitter API foutmeldingen."
|
580 |
-
|
581 |
-
#: wp-to-twitter-manager.php:644
|
582 |
-
msgid "Disable notification to implement OAuth"
|
583 |
-
msgstr "Uitschakelen melding om OAuth te implementeren"
|
584 |
-
|
585 |
-
#: wp-to-twitter-manager.php:648
|
586 |
-
msgid "Get Debugging Data for OAuth Connection"
|
587 |
-
msgstr "Verkrijg debugging data voor OAuth connectie"
|
588 |
-
|
589 |
-
#: wp-to-twitter-manager.php:654
|
590 |
-
msgid "Save Advanced WP->Twitter Options"
|
591 |
-
msgstr "WP->Twitter Geavanceerde Instellingen Opslaan"
|
592 |
-
|
593 |
-
#: wp-to-twitter-manager.php:668
|
594 |
-
msgid "Limit Updating Categories"
|
595 |
-
msgstr "Limiteer Updaten Categorieën"
|
596 |
-
|
597 |
-
#: wp-to-twitter-manager.php:672
|
598 |
-
msgid "Select which blog categories will be Tweeted. "
|
599 |
-
msgstr "Selecteer welke blog categorieën worden Getweet."
|
600 |
-
|
601 |
-
#: wp-to-twitter-manager.php:675
|
602 |
-
msgid "<em>Category limits are disabled.</em>"
|
603 |
-
msgstr "<em>Categorie limieten zijn uitgeschakeld.</em>"
|
604 |
-
|
605 |
-
#: wp-to-twitter-manager.php:689
|
606 |
-
msgid "Check Support"
|
607 |
-
msgstr "Ondersteuning Raadplegen"
|
608 |
-
|
609 |
-
#: wp-to-twitter-manager.php:689
|
610 |
-
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."
|
611 |
-
msgstr "Selecteer of je server <a href=\"http://www.joedolson.com/articles/wp-to-twitter/\">WP to Twitter's</a> queries ondersteund naar de Twitter en URL verkorter API's. Deze test zal een status update sturen naar Twitter en een URL verkorten met gebruik van jouw geselecteerde methodes."
|
612 |
-
|
613 |
-
#: wp-to-twitter-oauth.php:105
|
614 |
-
#: wp-to-twitter-oauth.php:143
|
615 |
-
msgid "Connect to Twitter"
|
616 |
-
msgstr "Verbinding maken met Twitter"
|
617 |
-
|
618 |
-
#: wp-to-twitter-oauth.php:108
|
619 |
-
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 at this time. Note that you will not, at any time, enter you Twitter username or password into WP to Twitter; they are not used in OAuth authentication."
|
620 |
-
msgstr "Het proces om OAuth authenticatie in te stellen voor je website is onnodig tijdsrovend en verwarrend. Desondanks is het de enige methode beschikbaar van Twitter op dit moment. Let op dat je nooit je Twitter gebruikersnaam of wachtwoord invoert in WP to Twitter; ze worden niet gebruikt met OAuth authenticatie."
|
621 |
-
|
622 |
-
#: wp-to-twitter-oauth.php:111
|
623 |
-
msgid "1. Register this site as an application on "
|
624 |
-
msgstr "1. Registreer deze site als een applicatie op "
|
625 |
-
|
626 |
-
#: wp-to-twitter-oauth.php:111
|
627 |
-
msgid "Twitter's application registration page"
|
628 |
-
msgstr "Twitter's applicatie registratie pagina"
|
629 |
-
|
630 |
-
#: wp-to-twitter-oauth.php:113
|
631 |
-
msgid "If you're not currently logged in, use the Twitter username and password which you want associated with this site"
|
632 |
-
msgstr "Als je op dit moment niet ingelogd bent gebruik de Twitter gebruikersnaam en het wachtwoord welke je geassocieerd wil zien met deze site"
|
633 |
-
|
634 |
-
#: wp-to-twitter-oauth.php:114
|
635 |
-
msgid "Your Application's Name will be what shows up after \"via\" in your twitter stream; previously, \"WP to Twitter.\" Your application name cannot include the word \"Twitter.\" I suggest using the name of your web site."
|
636 |
-
msgstr "De naam van je applicatie zal dat zijn wat weergegeven wordt na \"via\" in je twitter stream; vroeger \"WP to Twitter.\" Je applicatie naam kan niet het woord \"Twitter\" bevatten. Gebruik een andere naam voor je website."
|
637 |
-
|
638 |
-
#: wp-to-twitter-oauth.php:115
|
639 |
-
msgid "Your Application Description can be whatever you want."
|
640 |
-
msgstr "Je applicatie omschrijving kan van alles zijn."
|
641 |
-
|
642 |
-
#: wp-to-twitter-oauth.php:116
|
643 |
-
msgid "Application Type should be set on "
|
644 |
-
msgstr "Applicatie Type moet staan op "
|
645 |
-
|
646 |
-
#: wp-to-twitter-oauth.php:116
|
647 |
-
msgid "Browser"
|
648 |
-
msgstr "Browser"
|
649 |
-
|
650 |
-
#: wp-to-twitter-oauth.php:117
|
651 |
-
msgid "The Callback URL should be "
|
652 |
-
msgstr "De terugkoppel URL zou moeten zijn "
|
653 |
-
|
654 |
-
#: wp-to-twitter-oauth.php:118
|
655 |
-
msgid "Default Access type must be set to "
|
656 |
-
msgstr "Standaard Toegangstype moet ingesteld staan op "
|
657 |
-
|
658 |
-
#: wp-to-twitter-oauth.php:118
|
659 |
-
msgid "Read & Write"
|
660 |
-
msgstr "Lezen & Schrijven"
|
661 |
-
|
662 |
-
#: wp-to-twitter-oauth.php:118
|
663 |
-
msgid "(this is NOT the default)"
|
664 |
-
msgstr "(dit is NIET de standaard)"
|
665 |
-
|
666 |
-
#: wp-to-twitter-oauth.php:120
|
667 |
-
msgid "Once you have registered your site as an application, you will be provided with a consumer key and a consumer secret."
|
668 |
-
msgstr "Zodra je je site geregistreerd hebt als een applicatie wordt je voorzien van een gebruikerssleutel en gebruikersgeheim."
|
669 |
-
|
670 |
-
#: wp-to-twitter-oauth.php:121
|
671 |
-
msgid "2. Copy and paste your consumer key and consumer secret into the fields below"
|
672 |
-
msgstr "2. Kopieer en plak je gebruikerssleutel en gebruikersgeheim in de onderstaande velden"
|
673 |
-
|
674 |
-
#: wp-to-twitter-oauth.php:124
|
675 |
-
msgid "Twitter Consumer Key"
|
676 |
-
msgstr "Twitter Gebruiker Sleutel"
|
677 |
-
|
678 |
-
#: wp-to-twitter-oauth.php:128
|
679 |
-
msgid "Twitter Consumer Secret"
|
680 |
-
msgstr "Twitter Gebruiker Geheim"
|
681 |
-
|
682 |
-
#: wp-to-twitter-oauth.php:131
|
683 |
-
msgid "3. Copy and paste your Access Token and Access Token Secret into the fields below"
|
684 |
-
msgstr "3. Kopieer en plak je toegangsbewijs en toegangsbewijs geheim in de onderstaande velden"
|
685 |
-
|
686 |
-
#: wp-to-twitter-oauth.php:132
|
687 |
-
msgid "On the right hand side of your application page, click on 'My Access Token'."
|
688 |
-
msgstr "Klik op 'Mijn Toegangsbewijs' aan de rechterzijde van je applicatiepagina."
|
689 |
-
|
690 |
-
#: wp-to-twitter-oauth.php:134
|
691 |
-
msgid "Access Token"
|
692 |
-
msgstr "Toegangsbewijs"
|
693 |
-
|
694 |
-
#: wp-to-twitter-oauth.php:138
|
695 |
-
msgid "Access Token Secret"
|
696 |
-
msgstr "Toegangsbewijs Geheim"
|
697 |
-
|
698 |
-
#: wp-to-twitter-oauth.php:153
|
699 |
-
msgid "Disconnect from Twitter"
|
700 |
-
msgstr "Twitter verbinding verbreken"
|
701 |
-
|
702 |
-
#: wp-to-twitter-oauth.php:160
|
703 |
-
msgid "Twitter Username "
|
704 |
-
msgstr "Twitter Gebruikersnaam"
|
705 |
-
|
706 |
-
#: wp-to-twitter-oauth.php:161
|
707 |
-
msgid "Consumer Key "
|
708 |
-
msgstr "Gebruikerssleutel"
|
709 |
-
|
710 |
-
#: wp-to-twitter-oauth.php:162
|
711 |
-
msgid "Consumer Secret "
|
712 |
-
msgstr "Gebruikersgeheim"
|
713 |
-
|
714 |
-
#: wp-to-twitter-oauth.php:163
|
715 |
-
msgid "Access Token "
|
716 |
-
msgstr "Toegangsbewijs"
|
717 |
-
|
718 |
-
#: wp-to-twitter-oauth.php:164
|
719 |
-
msgid "Access Token Secret "
|
720 |
-
msgstr "Toegangsbewijs Geheim"
|
721 |
-
|
722 |
-
#: wp-to-twitter-oauth.php:167
|
723 |
-
msgid "Disconnect Your WordPress and Twitter Account"
|
724 |
-
msgstr "Verbreek de verbinding met WordPress en Twitter"
|
725 |
-
|
726 |
-
#: wp-to-twitter.php:55
|
727 |
-
#, php-format
|
728 |
-
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."
|
729 |
-
msgstr "Twitter gebruikt nu authenticatie met OAuth. Je moet je <a href=\"%s\">instellingen</a> bijwerken om WP to Twitter te kunnen blijven gebruiken."
|
730 |
-
|
731 |
-
#: wp-to-twitter.php:136
|
732 |
-
msgid "200 OK: Success!"
|
733 |
-
msgstr "200 OK: Success!"
|
734 |
-
|
735 |
-
#: wp-to-twitter.php:139
|
736 |
-
msgid "400 Bad Request: The request was invalid. This is the status code returned during rate limiting."
|
737 |
-
msgstr "400 Bad Request: De aanvraag was onjuist. Dit is de status code welke wordt teruggegeven met waardebeperking."
|
738 |
-
|
739 |
-
#: wp-to-twitter.php:142
|
740 |
-
msgid "401 Unauthorized: Authentication credentials were missing or incorrect."
|
741 |
-
msgstr "401 Unauthorized: Authenticatie login gegevens zijn onvolledig of onjuist."
|
742 |
-
|
743 |
-
#: wp-to-twitter.php:145
|
744 |
-
msgid "403 Forbidden: The request is understood, but it has been refused. This code is used when requests are being denied due to update limits."
|
745 |
-
msgstr "403 Forbidden: De aanvraag is begrepen maar geweigerd. Deze code wordt gebruikt wanneer aanvragen worden geweigerd door update limieten."
|
746 |
-
|
747 |
-
#: wp-to-twitter.php:147
|
748 |
-
msgid "500 Internal Server Error: Something is broken at Twitter."
|
749 |
-
msgstr "500 Internal Server Error: Er is iets kapot bij Twitter."
|
750 |
-
|
751 |
-
#: wp-to-twitter.php:150
|
752 |
-
msgid "503 Service Unavailable: The Twitter servers are up, but overloaded with requests Please try again later."
|
753 |
-
msgstr "503 Service Unavailable: De Twitter servers werken maar zijn overbelast, probeer het later nog eens."
|
754 |
-
|
755 |
-
#: wp-to-twitter.php:153
|
756 |
-
msgid "502 Bad Gateway: Twitter is down or being upgraded."
|
757 |
-
msgstr "502 Bad Gateway: Twitter is buiten werking of wordt bijgewerkt."
|
758 |
-
|
759 |
-
#. #-#-#-#-# plugin.pot (WP to Twitter 2.2.0 (beta 7)) #-#-#-#-#
|
760 |
-
#. Plugin Name of the plugin/theme
|
761 |
-
#: wp-to-twitter.php:732
|
762 |
-
msgid "WP to Twitter"
|
763 |
-
msgstr "WP to Twitter"
|
764 |
-
|
765 |
-
#: wp-to-twitter.php:808
|
766 |
-
msgid "Don't Tweet this post."
|
767 |
-
msgstr "Dit bericht niet twitteren."
|
768 |
-
|
769 |
-
#: wp-to-twitter.php:818
|
770 |
-
msgid "This URL is direct and has not been shortened: "
|
771 |
-
msgstr "Deze URL is direct en is niet verkort:"
|
772 |
-
|
773 |
-
#: wp-to-twitter.php:872
|
774 |
-
msgid "WP to Twitter User Settings"
|
775 |
-
msgstr "WP to Twitter gebruikersinstellingen"
|
776 |
-
|
777 |
-
#: wp-to-twitter.php:876
|
778 |
-
msgid "Use My Twitter Username"
|
779 |
-
msgstr "Gebruik je Twitter gebruikersnaam"
|
780 |
-
|
781 |
-
#: wp-to-twitter.php:877
|
782 |
-
msgid "Tweet my posts with an @ reference to my username."
|
783 |
-
msgstr "Tweet mijn berichten met een @ referentie naar mijn gebruikersnaam."
|
784 |
-
|
785 |
-
#: wp-to-twitter.php:878
|
786 |
-
msgid "Tweet my posts with an @ reference to both my username and to the main site username."
|
787 |
-
msgstr "Tweet mijn berichten met een @ referentie naar mijn gebruikersnaam en de algemene site gebruikersnaam."
|
788 |
-
|
789 |
-
#: wp-to-twitter.php:883
|
790 |
-
msgid "Enter your own Twitter username."
|
791 |
-
msgstr "Geef je eigen Twitter gebruikersnaam in."
|
792 |
-
|
793 |
-
#: wp-to-twitter.php:919
|
794 |
-
msgid "Check the categories you want to tweet:"
|
795 |
-
msgstr "Selecteer de categorieën welke je wilt tweeten:"
|
796 |
-
|
797 |
-
#: wp-to-twitter.php:936
|
798 |
-
msgid "Set Categories"
|
799 |
-
msgstr "Categorieen Instellen"
|
800 |
-
|
801 |
-
#: wp-to-twitter.php:1010
|
802 |
-
msgid "<p>Couldn't locate the settings page.</p>"
|
803 |
-
msgstr "<p>Kon de instellingspagina niet vinden.</p>"
|
804 |
-
|
805 |
-
#: wp-to-twitter.php:1015
|
806 |
-
msgid "Settings"
|
807 |
-
msgstr "Instellingen"
|
808 |
-
|
809 |
-
#. Plugin URI of the plugin/theme
|
810 |
-
msgid "http://www.joedolson.com/articles/wp-to-twitter/"
|
811 |
-
msgstr "http://www.joedolson.com/articles/wp-to-twitter/"
|
812 |
-
|
813 |
-
#. Description of the plugin/theme
|
814 |
-
msgid "Updates Twitter when you create a new blog post or add to your blogroll using Cli.gs. With a Cli.gs API key, creates a clig in your Cli.gs account with the name of your post as the title."
|
815 |
-
msgstr "Bijwerken Twitter wanneer je een nieuw blog bericht of toevoeging aan je blogroll creëert met gebruik van Cli.gs. Met een Cli.gs API sleutel wordt een clig in je Cli.gs account gemaakt met de naam van je bericht als titel."
|
816 |
-
|
817 |
-
#. Author of the plugin/theme
|
818 |
-
msgid "Joseph Dolson"
|
819 |
-
msgstr "Joseph Dolson"
|
820 |
-
|
821 |
-
#. Author URI of the plugin/theme
|
822 |
-
msgid "http://www.joedolson.com/"
|
823 |
-
msgstr "http://www.joedolson.com/"
|
824 |
-
|
825 |
-
#~ msgid "Twitter Password Saved"
|
826 |
-
#~ msgstr "Twitter Wachtwoord Opgeslagen"
|
827 |
-
|
828 |
-
#~ msgid "Twitter Password Not Saved"
|
829 |
-
#~ msgstr "Twitter Wachtwoord Niet Opgeslagen"
|
830 |
-
|
831 |
-
#~ msgid "Bit.ly API Saved"
|
832 |
-
#~ msgstr "Bit.ly API sleutel opgeslagen"
|
833 |
-
|
834 |
-
#~ msgid "Bit.ly API Not Saved"
|
835 |
-
#~ msgstr "Bit.ly API sleutel niet opgeslagen"
|
836 |
-
|
837 |
-
#~ msgid ""
|
838 |
-
#~ "Set your Twitter login information and URL shortener API information to "
|
839 |
-
#~ "use this plugin!"
|
840 |
-
#~ msgstr ""
|
841 |
-
#~ "Instellen van je Twitter login en URL verkorter API informatiie om deze "
|
842 |
-
#~ "plugin te gebruiken!"
|
843 |
-
|
844 |
-
#~ msgid "Please add your Twitter password. "
|
845 |
-
#~ msgstr "Voeg je Twitter wachtwoord toe."
|
846 |
-
|
847 |
-
#~ msgid "You need to provide your twitter login and password! "
|
848 |
-
#~ msgstr "Je moet je Twitter login en wachtwoord ingeven! "
|
849 |
-
|
850 |
-
#~ msgid ""
|
851 |
-
#~ "<li>Successfully contacted the Cli.gs API via Snoopy, but the URL "
|
852 |
-
#~ "creation failed.</li>"
|
853 |
-
#~ msgstr ""
|
854 |
-
#~ "<li>Cli.gs API via Snoopy succesvol gecontacteerd, maar de URL is niet "
|
855 |
-
#~ "aangemaakt.</li>"
|
856 |
-
|
857 |
-
#~ msgid ""
|
858 |
-
#~ "<li>Successfully contacted the Cli.gs API via Snoopy, but a Cli.gs server "
|
859 |
-
#~ "error prevented the URL from being shrotened.</li>"
|
860 |
-
#~ msgstr ""
|
861 |
-
#~ "<li>Cli.gs API via Snoopy succesvol gecontacteerd, maar een Cli.gs server "
|
862 |
-
#~ "fout voorkwam dat de URL werd verkort.</li>"
|
863 |
-
|
864 |
-
#~ msgid ""
|
865 |
-
#~ "<li>Successfully contacted the Cli.gs API via Snoopy and created a "
|
866 |
-
#~ "shortened link.</li>"
|
867 |
-
#~ msgstr ""
|
868 |
-
#~ "<li>Cli.gs API via Snoopy succesvol gecontacteerd en verkorte URL is "
|
869 |
-
#~ "aangemaakt.</li>"
|
870 |
-
|
871 |
-
#~ msgid "<li>Successfully contacted the Bit.ly API via Snoopy.</li>"
|
872 |
-
#~ msgstr "<li>Bit.ly API via Snoopy succesvol gecontacteerd.</li>"
|
873 |
-
|
874 |
-
#~ msgid "<li>Failed to contact the Bit.ly API via Snoopy.</li>"
|
875 |
-
#~ msgstr "<li>Contact Bit.ly API via Snoopy mislukt.</li>"
|
876 |
-
|
877 |
-
#~ msgid "<li>Cannot check the Bit.ly API without a valid API key.</li>"
|
878 |
-
#~ msgstr ""
|
879 |
-
#~ "<li>Kan de Bit.ly API niet controleren zonder een geldige API sleutel.</"
|
880 |
-
#~ "li>"
|
881 |
-
|
882 |
-
#~ msgid "<li>Successfully contacted the Twitter API via Snoopy.</li>"
|
883 |
-
#~ msgstr "<li>Twitter API via Snoopy succesvol gecontacteerd.</li>"
|
884 |
-
|
885 |
-
#~ msgid "<li>Failed to contact the Twitter API via Snoopy.</li>"
|
886 |
-
#~ msgstr "<li>Contact Twitter API via Snoopy mislukt.</li>"
|
887 |
-
|
888 |
-
#~ msgid "<li>Successfully contacted the Twitter API via cURL.</li>"
|
889 |
-
#~ msgstr "<li>Twitter API succesvol gecontacteerd via cURL.</li>"
|
890 |
-
|
891 |
-
#~ msgid "<li>Failed to contact the Twitter API via cURL.</li>"
|
892 |
-
#~ msgstr "<li>Contact Twitter API via cURL mislukt.</li>"
|
893 |
-
|
894 |
-
#~ msgid "<li>Successfully contacted the Cli.gs API via Snoopy.</li>"
|
895 |
-
#~ msgstr "<li>Cli.gs API via Snoopy succesvol gecontacteerd.</li>"
|
896 |
-
|
897 |
-
#~ msgid "<li>Failed to contact the Cli.gs API via Snoopy.</li>"
|
898 |
-
#~ msgstr "<li>Contact Cli.gs API via Snoopy mislukt.</li>"
|
899 |
-
|
900 |
-
#~ msgid "<li>Your server does not support <code>fputs</code>.</li>"
|
901 |
-
#~ msgstr "<li>Je server ondersteund geen <code>fputs</code>.</li>"
|
902 |
-
|
903 |
-
#~ msgid ""
|
904 |
-
#~ "<li>Your server does not support <code>file_get_contents</code> or "
|
905 |
-
#~ "<code>cURL</code> functions.</li>"
|
906 |
-
#~ msgstr ""
|
907 |
-
#~ "<li>Je server ondersteund geen <code>file_get_contents</code> of "
|
908 |
-
#~ "<code>cURL</code> functies.</li>"
|
909 |
-
|
910 |
-
#~ msgid "<li>Your server does not support <code>Snoopy</code>.</li>"
|
911 |
-
#~ msgstr "<li>Je server ondersteund geen <code>Snoopy</code>.</li>"
|
912 |
-
|
913 |
-
#~ msgid ""
|
914 |
-
#~ "This plugin may not fully work in your server environment. The plugin "
|
915 |
-
#~ "failed to contact both a URL shortener API and the Twitter service API."
|
916 |
-
#~ msgstr ""
|
917 |
-
#~ "Deze plugin kan misschien niet volledig werken in jouw server omgeving. "
|
918 |
-
#~ "Contact met de URL verkorter API en de Twitter service API is mislukt."
|
919 |
-
|
920 |
-
#~ msgid ""
|
921 |
-
#~ "For any post update field, you can use the codes <code>#title#</code> for "
|
922 |
-
#~ "the title of your blog post, <code>#blog#</code> for the title of your "
|
923 |
-
#~ "blog, <code>#post#</code> for a short excerpt of the post content, "
|
924 |
-
#~ "<code>#category#</code> for the first selected category for the post, "
|
925 |
-
#~ "<code>#date#</code> for the post date, or <code>#url#</code> for the post "
|
926 |
-
#~ "URL (shortened or not, depending on your preferences.) You can also "
|
927 |
-
#~ "create custom shortcodes to access WordPress custom fields. Use doubled "
|
928 |
-
#~ "square brackets surrounding the name of your custom field to add the "
|
929 |
-
#~ "value of that custom field to your status update. Example: <code>"
|
930 |
-
#~ "[[custom_field]]</code>"
|
931 |
-
#~ msgstr ""
|
932 |
-
#~ "Voor elke bijwerking kun je deze codes gebruiken: <code>#title#</code> "
|
933 |
-
#~ "voor de naam van je blog bericht, <code>#blog#</code> voor de blognaam, "
|
934 |
-
#~ "<code>#post#</code> voor een samenvatting van het bericht, "
|
935 |
-
#~ "<code>#category#</code> voor de eerst geselecteerde categorie van het "
|
936 |
-
#~ "bericht, <code>#date#</code> voor de plaatsingsdatum of <code>#url#</"
|
937 |
-
#~ "code> voor de URL van het bericht (verkort of niet, afhankelijk van je "
|
938 |
-
#~ "instellingen.) Je kan ook shortcodes creëeren om toegang te krijgen tot "
|
939 |
-
#~ "aangepaste velden. Gebruik dubbele [ ] rondom de naam van je aangepast "
|
940 |
-
#~ "veld om de waarde hiervan toe te voegen aan je status update. Voorbeeld: "
|
941 |
-
#~ "<code>[[aangepast_veld]]</code>"
|
942 |
-
|
943 |
-
#~ msgid "Set what should be in a Tweet"
|
944 |
-
#~ msgstr "Instellen wat er in een Tweet moet staan"
|
945 |
-
|
946 |
-
#~ msgid "Set default Tweet status to 'No.'"
|
947 |
-
#~ msgstr "Zet standaard Tweet status op 'Nee'"
|
948 |
-
|
949 |
-
#~ msgid ""
|
950 |
-
#~ "Twitter updates can be set on a post by post basis. By default, posts "
|
951 |
-
#~ "WILL be posted to Twitter. Check this to change the default to NO."
|
952 |
-
#~ msgstr ""
|
953 |
-
#~ "Twitter updates kunnen ingesteld worden per bericht. Standaard zullen "
|
954 |
-
#~ "berichten gepost worden op Twitter. Selecteer dit om de standaard waarde "
|
955 |
-
#~ "te veranderen naar NEE."
|
956 |
-
|
957 |
-
#~ msgid "Special Fields"
|
958 |
-
#~ msgstr "Speciale Velden"
|
959 |
-
|
960 |
-
#~ msgid ""
|
961 |
-
#~ "You can track the response from Twitter using Google Analytics by "
|
962 |
-
#~ "defining a campaign identifier here."
|
963 |
-
#~ msgstr ""
|
964 |
-
#~ "Je kunt de Twitter response meten met Google Analytics door een campaign "
|
965 |
-
#~ "identifier hier te definieren."
|
966 |
-
|
967 |
-
#~ msgid ""
|
968 |
-
#~ "Each author can set their own Twitter username and password in their user "
|
969 |
-
#~ "profile. Their posts will be sent to their own Twitter accounts."
|
970 |
-
#~ msgstr ""
|
971 |
-
#~ "Elke auteur kan zijn eigen Twitter gebruikersnaam en wachtwoord "
|
972 |
-
#~ "instellen. Hun berichten zullen verzonden worden naar hun eigen Twitter "
|
973 |
-
#~ "accounts."
|
974 |
-
|
975 |
-
#~ msgid "Set your preferred URL Shortener"
|
976 |
-
#~ msgstr "Stel je voorkeur URL verkorter in"
|
977 |
-
|
978 |
-
#~ msgid "Your Twitter account details"
|
979 |
-
#~ msgstr "Jouw Twitter account informatie"
|
980 |
-
|
981 |
-
#~ msgid "Your Twitter username:"
|
982 |
-
#~ msgstr "Jouw Twitter gebruikersnaam:"
|
983 |
-
|
984 |
-
#~ msgid "Save Twitter Login Info"
|
985 |
-
#~ msgstr "Twitter Login bewaren"
|
986 |
-
|
987 |
-
#~ msgid ""
|
988 |
-
#~ "» <small>Don't have a Twitter account? <a href='http://www.twitter."
|
989 |
-
#~ "com'>Get one for free here</a>"
|
990 |
-
#~ msgstr ""
|
991 |
-
#~ "» <small>Heb je geen Twitter Account? Klik <a href='http://www."
|
992 |
-
#~ "twitter.com'>HIER</a> om er een aan te maken"
|
993 |
-
|
994 |
-
#~ msgid ""
|
995 |
-
#~ "Check whether your server supports WP to Twitter's queries to the Twitter "
|
996 |
-
#~ "and URL shortening APIs."
|
997 |
-
#~ msgstr ""
|
998 |
-
#~ "Controleer of je server WP to Twitter's queries ondersteund naar de "
|
999 |
-
#~ "Twitter en URL shortening APIs."
|
1000 |
-
|
1001 |
-
#~ msgid "Need help?"
|
1002 |
-
#~ msgstr "Hulp nodig?"
|
1003 |
-
|
1004 |
-
#~ msgid ""
|
1005 |
-
#~ "Visit the <a href='http://www.joedolson.com/articles/wp-to-twitter/'>WP "
|
1006 |
-
#~ "to Twitter plugin page</a>."
|
1007 |
-
#~ msgstr ""
|
1008 |
-
#~ "Bezoek de <a href='http://www.joedolson.com/articles/wp-to-twitter/'>WP "
|
1009 |
-
#~ "to Twitter plugin pagina</a>."
|
1010 |
-
|
1011 |
-
#~ msgid ""
|
1012 |
-
#~ " characters.<br />Twitter posts are a maximum of 140 characters; if your "
|
1013 |
-
#~ "Cli.gs URL is appended to the end of your document, you have 119 "
|
1014 |
-
#~ "characters available. You can use <code>#url#</code>, <code>#title#</"
|
1015 |
-
#~ "code>, <code>#post#</code>, <code>#category#</code>, <code>#date#</code>, "
|
1016 |
-
#~ "or <code>#blog#</code> to insert the shortened URL, post title, the first "
|
1017 |
-
#~ "category selected, the post date, or a post excerpt or blog name into the "
|
1018 |
-
#~ "Tweet."
|
1019 |
-
#~ msgstr ""
|
1020 |
-
#~ " karakters.<br />Twitter berichten zijn max.140 karakters; wanneer je Cli."
|
1021 |
-
#~ "gs URL is toegevoegd aan het einde van je bericht heb je nog 119 "
|
1022 |
-
#~ "karakters beschikbaar. Je kunt<code>#url#</code>, <code>#title#</code>, "
|
1023 |
-
#~ "<code>#post#</code>, <code>#category#</code>, <code>#date#</code>, of "
|
1024 |
-
#~ "<code>#blog#</code> gebruiken om de verkorte URL in te voegen, bericht "
|
1025 |
-
#~ "titel, eerst geselecteerde categorie, bericht datum, of een bericht "
|
1026 |
-
#~ "samenvatting of blog naam in de Tweet."
|
1027 |
-
|
1028 |
-
#~ msgid "Use My Twitter Account"
|
1029 |
-
#~ msgstr "Gebruik Mijn Twitter Account"
|
1030 |
-
|
1031 |
-
#~ msgid ""
|
1032 |
-
#~ "Select this option if you would like your posts to be Tweeted into your "
|
1033 |
-
#~ "own Twitter account with no @ references."
|
1034 |
-
#~ msgstr ""
|
1035 |
-
#~ "Selecteer deze optie wanneer je berichten getweet moeten worden naar je "
|
1036 |
-
#~ "eigen Twitter account zonder @ referenties."
|
1037 |
-
|
1038 |
-
#~ msgid ""
|
1039 |
-
#~ "Tweet my posts into the main site Twitter account with an @ reference to "
|
1040 |
-
#~ "my username. (Password not required with this option.)"
|
1041 |
-
#~ msgstr ""
|
1042 |
-
#~ "Tweet mijn berichten naar de standaard Twitter account met een @ "
|
1043 |
-
#~ "referentie naar mijn gebruikersnaam. (Wachtwoord niet benodigd met deze "
|
1044 |
-
#~ "optie.)"
|
1045 |
-
|
1046 |
-
#~ msgid "Your Twitter Password"
|
1047 |
-
#~ msgstr "Jouw Twitter Wachtwoord"
|
1048 |
-
|
1049 |
-
#~ msgid "Enter your own Twitter password."
|
1050 |
-
#~ msgstr "Geef je eigen Twitter wachtwoord in."
|
1051 |
-
|
1052 |
-
#~ msgid ""
|
1053 |
-
#~ "The query to the URL shortener API failed, and your URL was not shrunk. "
|
1054 |
-
#~ "The full post URL was attached to your Tweet."
|
1055 |
-
#~ msgstr ""
|
1056 |
-
#~ "Die Verbindung zum URL Kürzer API schlug fehl und deine URL wurde nicht "
|
1057 |
-
#~ "verkürzt. Es wurde die normale URL wurde im Tweet veröffentlicht."
|
1058 |
-
|
1059 |
-
#~ msgid "Add_new_tag"
|
1060 |
-
#~ msgstr "Tag_hinzufügen"
|
1061 |
-
|
1062 |
-
#~ msgid "This plugin may not work in your server environment."
|
1063 |
-
#~ msgstr ""
|
1064 |
-
#~ "Dieses Plugin funktioniert vielleicht nicht in deiner Server Umgebung."
|
1065 |
-
|
1066 |
-
#~ msgid "Wordpress to Twitter Publishing Options"
|
1067 |
-
#~ msgstr "Wordpress to Twitter Veröffentlichungs-Optionen"
|
1068 |
-
|
1069 |
-
#~ msgid "Provide link to blog?"
|
1070 |
-
#~ msgstr "Link zum Blog hinzufügen?"
|
1071 |
-
|
1072 |
-
#~ msgid "Use <strong>link title</strong> for Twitter updates"
|
1073 |
-
#~ msgstr ""
|
1074 |
-
#~ "Verwende den <strong>Link Namen</strong> für Twitter Aktualisierungen"
|
1075 |
-
|
1076 |
-
#~ msgid "Use <strong>link description</strong> for Twitter updates"
|
1077 |
-
#~ msgstr ""
|
1078 |
-
#~ "Verwende die <strong>Link Beschreibung</strong> für Twitter "
|
1079 |
-
#~ "Aktualisierungen"
|
1080 |
-
|
1081 |
-
#~ msgid ""
|
1082 |
-
#~ "Text for new link updates (used if title/description isn't available.):"
|
1083 |
-
#~ msgstr ""
|
1084 |
-
#~ "Text für neuen Link (wenn kein Namen oder Beschreibung vorhanden sind.):"
|
1085 |
-
|
1086 |
-
#~ msgid "Custom text prepended to Tweets:"
|
1087 |
-
#~ msgstr "Eigener Text zu Beginn des Tweets:"
|
1088 |
-
|
1089 |
-
#~ msgid ""
|
1090 |
-
#~ "Your server appears to support the required PHP functions and classes for "
|
1091 |
-
#~ "WP to Twitter to function."
|
1092 |
-
#~ msgstr ""
|
1093 |
-
#~ "Es scheint als würde dein Server die benötigten PHP Funktion und Klassen "
|
1094 |
-
#~ "für WP to Twitter bereitstellen."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wp-to-twitter-oauth.php
CHANGED
@@ -1,12 +1,10 @@
|
|
1 |
<?php
|
2 |
-
// WPT PRO: Apply contextual usage so that all functions can be used by independent users. //
|
3 |
-
|
4 |
// function to test credentials
|
5 |
function wtt_oauth_test( $auth=false, $context='' ) {
|
6 |
if ( !$auth ) {
|
7 |
return ( wtt_oauth_credentials_to_hash() == get_option('wtt_oauth_hash') );
|
8 |
} else {
|
9 |
-
$return = ( wtt_oauth_credentials_to_hash( $auth ) ==
|
10 |
if ( !$return && $context != 'verify' ) {
|
11 |
return ( wtt_oauth_credentials_to_hash() == get_option('wtt_oauth_hash') );
|
12 |
} else {
|
@@ -14,6 +12,17 @@ function wtt_oauth_test( $auth=false, $context='' ) {
|
|
14 |
}
|
15 |
}
|
16 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
// function to make connection
|
18 |
function wtt_oauth_connection( $auth=false ) {
|
19 |
if ( !$auth ) {
|
@@ -28,7 +37,7 @@ if ( !$auth ) {
|
|
28 |
$ots = get_user_meta( $auth,'oauth_token_secret',true);
|
29 |
}
|
30 |
if ( !empty( $ack ) && !empty( $acs ) && !empty( $ot ) && !empty( $ots ) ) {
|
31 |
-
require_once(
|
32 |
$connection = new jd_TwitterOAuth( $ack,$acs,$ot,$ots );
|
33 |
$connection->useragent = 'WP to Twitter http://www.joedolson.com/articles/wp-to-twitter';
|
34 |
return $connection;
|
@@ -36,7 +45,6 @@ if ( !$auth ) {
|
|
36 |
return false;
|
37 |
}
|
38 |
}
|
39 |
-
|
40 |
// convert credentials to md5 hash
|
41 |
function wtt_oauth_credentials_to_hash( $auth=false ) {
|
42 |
if ( !$auth ) {
|
@@ -48,6 +56,7 @@ function wtt_oauth_credentials_to_hash( $auth=false ) {
|
|
48 |
}
|
49 |
// response to settings updates
|
50 |
function jd_update_oauth_settings( $auth=false, $post=false ) {
|
|
|
51 |
switch ( $post['oauth_settings'] ) {
|
52 |
case 'wtt_oauth_test':
|
53 |
if ( !wp_verify_nonce( $post['_wpnonce'], 'wp-to-twitter-nonce' ) && !$auth ) {
|
@@ -77,7 +86,7 @@ switch ( $post['oauth_settings'] ) {
|
|
77 |
$message = 'failed';
|
78 |
if ( $connection = wtt_oauth_connection( $auth ) ) {
|
79 |
$protocol = ( get_option( 'wpt_http' ) == '1' )?'http:':'https:';
|
80 |
-
$data = $connection->get($protocol.'//api.twitter.com/1/account/verify_credentials.json');
|
81 |
if ($connection->http_code == '200') {
|
82 |
$error_information = '';
|
83 |
$decode = json_decode($data);
|
@@ -96,7 +105,7 @@ switch ( $post['oauth_settings'] ) {
|
|
96 |
delete_option( 'wpt_curl_error' );
|
97 |
} else if ( $connection->http_code == 0 ) {
|
98 |
$error_information = __("WP to Twitter was unable to establish a connection to Twitter.",'wp-to-twitter');
|
99 |
-
update_option( 'wpt_curl_error'
|
100 |
} else {
|
101 |
$error_information = array("http_code"=>$connection->http_code,"status"=>$connection->http_header['status']);
|
102 |
$error_code = __("Twitter response: http_code $error_information[http_code] - $error_information[status]",'wp-to-twitter');
|
@@ -141,6 +150,7 @@ switch ( $post['oauth_settings'] ) {
|
|
141 |
}
|
142 |
return "Nothing";
|
143 |
}
|
|
|
144 |
|
145 |
// connect or disconnect form
|
146 |
function wtt_connect_oauth( $auth=false ) {
|
@@ -150,7 +160,7 @@ if ( !$auth ) {
|
|
150 |
}
|
151 |
$server_time = date( DATE_COOKIE );
|
152 |
$protocol = ( get_option( 'wpt_http' ) == '1' )?'http:':'https:';
|
153 |
-
$response = wp_remote_get( "$protocol//api.twitter.com/1/" );
|
154 |
if ( is_wp_error( $response ) ) {
|
155 |
$warning = '';
|
156 |
$error = $response->errors;
|
@@ -163,7 +173,7 @@ if ( is_wp_error( $response ) ) {
|
|
163 |
}
|
164 |
$warning .= "</ul>";
|
165 |
}
|
166 |
-
|
167 |
$date = __("There was an error querying Twitter's servers",'wp-to-twitter');
|
168 |
$errors = "<p>".$ssl.$warning."</p>";
|
169 |
} else {
|
@@ -188,6 +198,8 @@ $nonce = ( !$auth )?wp_nonce_field('wp-to-twitter-nonce', '_wpnonce', true, fals
|
|
188 |
<h4>'.__('WP to Twitter Set-up','wp-to-twitter').'</h4>
|
189 |
<p>'.__('Your server time:','wp-to-twitter').' <code>'.$server_time.'</code> '.__("Twitter's time:").' <code>'.$date.'</code>.'.__( 'If these timestamps are not within 5 minutes of each other, your server will not connect to Twitter.','wp-to-twitter').'</p>
|
190 |
'.$errors.'
|
|
|
|
|
191 |
<p>'.__('<em>Note</em>: you will not add your Twitter user information to WP to Twitter; it is not used in this authentication method.', 'wp-to-twitter').'</p>
|
192 |
</div>
|
193 |
'.$form.'
|
@@ -252,6 +264,11 @@ $nonce = ( !$auth )?wp_nonce_field('wp-to-twitter-nonce', '_wpnonce', true, fals
|
|
252 |
$submit = '<input type="checkbox" name="oauth_settings" value="wtt_twitter_disconnect" id="disconnect" /> <label for="disconnect">'.__('Disconnect your WordPress and Twitter Account','wp-to-twitter').'</label>';
|
253 |
}
|
254 |
$warning = ( get_option('wpt_authentication_missing') == 'true' )?'<p>'.__('<strong>Troubleshooting tip:</strong> Connected, but getting a notice that your Authentication credentials are missing or incorrect? Check whether your Access token has read and write permission. If not, you\'ll need to create a new token.','wp-to-twitter').'</p>':'';
|
|
|
|
|
|
|
|
|
|
|
255 |
|
256 |
print('
|
257 |
<h3>'.__('Disconnect from Twitter','wp-to-twitter').'</h3>
|
@@ -273,8 +290,7 @@ $nonce = ( !$auth )?wp_nonce_field('wp-to-twitter-nonce', '_wpnonce', true, fals
|
|
273 |
</div>
|
274 |
'.$nonce.'
|
275 |
<p>'.__('Your server time:','wp-to-twitter').' <code>'.$server_time.'</code>.<br />'.__('Twitter\'s current server time: ','wp-to-twitter').'<code>'.$date.'</code>.</p>
|
276 |
-
'.$errors.'
|
277 |
-
<p> '.__( 'If these times are not within 5 minutes of each other, your server could lose its connection with Twitter.','wp-to-twitter').'</p></div>');
|
278 |
}
|
279 |
if ( !$auth ) {
|
280 |
echo "</div>";
|
1 |
<?php
|
|
|
|
|
2 |
// function to test credentials
|
3 |
function wtt_oauth_test( $auth=false, $context='' ) {
|
4 |
if ( !$auth ) {
|
5 |
return ( wtt_oauth_credentials_to_hash() == get_option('wtt_oauth_hash') );
|
6 |
} else {
|
7 |
+
$return = ( wtt_oauth_credentials_to_hash( $auth ) == wpt_get_user_verification( $auth ) );
|
8 |
if ( !$return && $context != 'verify' ) {
|
9 |
return ( wtt_oauth_credentials_to_hash() == get_option('wtt_oauth_hash') );
|
10 |
} else {
|
12 |
}
|
13 |
}
|
14 |
}
|
15 |
+
|
16 |
+
function wpt_get_user_verification( $auth ) {
|
17 |
+
if ( get_option( 'jd_individual_twitter_users' ) != '1' ) {
|
18 |
+
return false;
|
19 |
+
} else {
|
20 |
+
$auth = get_user_meta( $auth,'wtt_oauth_hash',true );
|
21 |
+
return $auth;
|
22 |
+
}
|
23 |
+
return false;
|
24 |
+
}
|
25 |
+
|
26 |
// function to make connection
|
27 |
function wtt_oauth_connection( $auth=false ) {
|
28 |
if ( !$auth ) {
|
37 |
$ots = get_user_meta( $auth,'oauth_token_secret',true);
|
38 |
}
|
39 |
if ( !empty( $ack ) && !empty( $acs ) && !empty( $ot ) && !empty( $ots ) ) {
|
40 |
+
require_once( plugin_dir_path(__FILE__).'/jd_twitterOAuth.php' );
|
41 |
$connection = new jd_TwitterOAuth( $ack,$acs,$ot,$ots );
|
42 |
$connection->useragent = 'WP to Twitter http://www.joedolson.com/articles/wp-to-twitter';
|
43 |
return $connection;
|
45 |
return false;
|
46 |
}
|
47 |
}
|
|
|
48 |
// convert credentials to md5 hash
|
49 |
function wtt_oauth_credentials_to_hash( $auth=false ) {
|
50 |
if ( !$auth ) {
|
56 |
}
|
57 |
// response to settings updates
|
58 |
function jd_update_oauth_settings( $auth=false, $post=false ) {
|
59 |
+
if ( isset($post['oauth_settings'] ) ) {
|
60 |
switch ( $post['oauth_settings'] ) {
|
61 |
case 'wtt_oauth_test':
|
62 |
if ( !wp_verify_nonce( $post['_wpnonce'], 'wp-to-twitter-nonce' ) && !$auth ) {
|
86 |
$message = 'failed';
|
87 |
if ( $connection = wtt_oauth_connection( $auth ) ) {
|
88 |
$protocol = ( get_option( 'wpt_http' ) == '1' )?'http:':'https:';
|
89 |
+
$data = $connection->get($protocol.'//api.twitter.com/1.1/account/verify_credentials.json');
|
90 |
if ($connection->http_code == '200') {
|
91 |
$error_information = '';
|
92 |
$decode = json_decode($data);
|
105 |
delete_option( 'wpt_curl_error' );
|
106 |
} else if ( $connection->http_code == 0 ) {
|
107 |
$error_information = __("WP to Twitter was unable to establish a connection to Twitter.",'wp-to-twitter');
|
108 |
+
update_option( 'wpt_curl_error',"$error_information" );
|
109 |
} else {
|
110 |
$error_information = array("http_code"=>$connection->http_code,"status"=>$connection->http_header['status']);
|
111 |
$error_code = __("Twitter response: http_code $error_information[http_code] - $error_information[status]",'wp-to-twitter');
|
150 |
}
|
151 |
return "Nothing";
|
152 |
}
|
153 |
+
}
|
154 |
|
155 |
// connect or disconnect form
|
156 |
function wtt_connect_oauth( $auth=false ) {
|
160 |
}
|
161 |
$server_time = date( DATE_COOKIE );
|
162 |
$protocol = ( get_option( 'wpt_http' ) == '1' )?'http:':'https:';
|
163 |
+
$response = wp_remote_get( "$protocol//api.twitter.com/1.1/" );
|
164 |
if ( is_wp_error( $response ) ) {
|
165 |
$warning = '';
|
166 |
$error = $response->errors;
|
173 |
}
|
174 |
$warning .= "</ul>";
|
175 |
}
|
176 |
+
$ssl = __("Connection Problems? Try <a href='#wpt_http'>switching to <code>http</code> queries</a>.<br />",'wp-to-twitter');
|
177 |
$date = __("There was an error querying Twitter's servers",'wp-to-twitter');
|
178 |
$errors = "<p>".$ssl.$warning."</p>";
|
179 |
} else {
|
198 |
<h4>'.__('WP to Twitter Set-up','wp-to-twitter').'</h4>
|
199 |
<p>'.__('Your server time:','wp-to-twitter').' <code>'.$server_time.'</code> '.__("Twitter's time:").' <code>'.$date.'</code>.'.__( 'If these timestamps are not within 5 minutes of each other, your server will not connect to Twitter.','wp-to-twitter').'</p>
|
200 |
'.$errors.'
|
201 |
+
<p>'.__('Your server timezone (should be UTC,GMT,Europe/London or equivalent):','wp-to-twitter').date_default_timezone_get().'</p>
|
202 |
+
|
203 |
<p>'.__('<em>Note</em>: you will not add your Twitter user information to WP to Twitter; it is not used in this authentication method.', 'wp-to-twitter').'</p>
|
204 |
</div>
|
205 |
'.$form.'
|
264 |
$submit = '<input type="checkbox" name="oauth_settings" value="wtt_twitter_disconnect" id="disconnect" /> <label for="disconnect">'.__('Disconnect your WordPress and Twitter Account','wp-to-twitter').'</label>';
|
265 |
}
|
266 |
$warning = ( get_option('wpt_authentication_missing') == 'true' )?'<p>'.__('<strong>Troubleshooting tip:</strong> Connected, but getting a notice that your Authentication credentials are missing or incorrect? Check whether your Access token has read and write permission. If not, you\'ll need to create a new token.','wp-to-twitter').'</p>':'';
|
267 |
+
if ( !is_wp_error( $response ) ) {
|
268 |
+
$diff = ( abs( time() - strtotime($response['headers']['date']) ) > 300 )?'<p> '.__( 'Your time stamps are more than 5 minutes apart. Your server could lose its connection with Twitter.','wp-to-twitter').'</p>':'';
|
269 |
+
} else {
|
270 |
+
$diff = __( 'WP to Twitter could not contact Twitter\'s remote server. Here is the error triggered: ','wp-to-twitter' ).$errors;
|
271 |
+
}
|
272 |
|
273 |
print('
|
274 |
<h3>'.__('Disconnect from Twitter','wp-to-twitter').'</h3>
|
290 |
</div>
|
291 |
'.$nonce.'
|
292 |
<p>'.__('Your server time:','wp-to-twitter').' <code>'.$server_time.'</code>.<br />'.__('Twitter\'s current server time: ','wp-to-twitter').'<code>'.$date.'</code>.</p>
|
293 |
+
'.$errors.$diff.'</div>' );
|
|
|
294 |
}
|
295 |
if ( !$auth ) {
|
296 |
echo "</div>";
|
wp-to-twitter-shorteners.php
ADDED
@@ -0,0 +1,208 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
//jd_shorten_link
|
3 |
+
//jd_expand_url
|
4 |
+
//jd_expand_yourl
|
5 |
+
|
6 |
+
add_filter( 'wptt_shorten_link','jd_shorten_link', 10, 4 );
|
7 |
+
|
8 |
+
function jd_shorten_link( $thispostlink, $thisposttitle, $post_ID, $testmode=false ) {
|
9 |
+
if ( WPT_DEBUG && function_exists( 'wpt_pro_exists' ) ) {
|
10 |
+
wp_mail( WPT_DEBUG_ADDRESS,"Initial Link Data: #$post_ID","$thispostlink, $thisposttitle, $post_ID, $testmode" ); // DEBUG
|
11 |
+
}
|
12 |
+
// filter link before sending to shortener or adding analytics
|
13 |
+
$thispostlink = apply_filters('wpt_shorten_link',$thispostlink,$post_ID );
|
14 |
+
$suprapi = trim ( get_option( 'suprapi' ) );
|
15 |
+
$suprlogin = trim ( get_option( 'suprlogin' ) );
|
16 |
+
$bitlyapi = trim ( get_option( 'bitlyapi' ) );
|
17 |
+
$bitlylogin = trim ( strtolower( get_option( 'bitlylogin' ) ) );
|
18 |
+
$yourlslogin = trim ( get_option( 'yourlslogin') );
|
19 |
+
$yourlsapi = stripcslashes( get_option( 'yourlsapi' ) );
|
20 |
+
if ($testmode == false ) {
|
21 |
+
if ( get_option('use-twitter-analytics') == 1 || get_option('use_dynamic_analytics') == 1 ) {
|
22 |
+
if ( get_option('use_dynamic_analytics') == '1' ) {
|
23 |
+
$campaign_type = get_option('jd_dynamic_analytics');
|
24 |
+
if ( $campaign_type == "post_category" && $testmode != 'link' ) {
|
25 |
+
$category = get_the_category( $post_ID );
|
26 |
+
$campaign = sanitize_title( $category[0]->cat_name );
|
27 |
+
} else if ( $campaign_type == "post_ID") {
|
28 |
+
$campaign = $post_ID;
|
29 |
+
} else if ( $campaign_type == "post_title" && $testmode != 'link' ) {
|
30 |
+
$post = get_post( $post_ID );
|
31 |
+
$campaign = sanitize_title( $post->post_title );
|
32 |
+
} else {
|
33 |
+
if ( $testmode != 'link' ) {
|
34 |
+
$post = get_post( $post_ID );
|
35 |
+
$post_author = $post->post_author;
|
36 |
+
$campaign = get_the_author_meta( 'user_login',$post_author );
|
37 |
+
} else {
|
38 |
+
$post_author = '';
|
39 |
+
$campaign = '';
|
40 |
+
}
|
41 |
+
}
|
42 |
+
} else {
|
43 |
+
$campaign = get_option('twitter-analytics-campaign');
|
44 |
+
}
|
45 |
+
if ( strpos( $thispostlink,"%3F" ) === FALSE && strpos( $thispostlink,"?" ) === FALSE ) {
|
46 |
+
$ct = "?";
|
47 |
+
} else {
|
48 |
+
$ct = "&";
|
49 |
+
}
|
50 |
+
$ga = "utm_campaign=$campaign&utm_medium=twitter&utm_source=twitter";
|
51 |
+
$thispostlink .= $ct .= $ga;
|
52 |
+
}
|
53 |
+
}
|
54 |
+
$thispostlink = urlencode(urldecode(trim($thispostlink))); // prevent double-encoding
|
55 |
+
|
56 |
+
// custom word setting
|
57 |
+
$keyword_format = ( get_option( 'jd_keyword_format' ) == '1' )?$post_ID:'';
|
58 |
+
$keyword_format = ( get_option( 'jd_keyword_format' ) == '2' )?get_post_meta( $post_ID,'_yourls_keyword',true ):$keyword_format;
|
59 |
+
// Generate and grab the short url
|
60 |
+
switch ( get_option( 'jd_shortener' ) ) {
|
61 |
+
case 0:
|
62 |
+
case 1:
|
63 |
+
$shrink = urldecode($thispostlink);
|
64 |
+
case 4:
|
65 |
+
$shrink = urldecode($thispostlink);
|
66 |
+
if ( function_exists('wp_get_shortlink') ) { // use wp_get_shortlink if available
|
67 |
+
$shrink = ( $post_ID != false )?wp_get_shortlink( $post_ID ):$thispostlink;
|
68 |
+
}
|
69 |
+
break;
|
70 |
+
case 2: // updated to v3 3/31/2010
|
71 |
+
$decoded = jd_remote_json( "http://api.bitly.com/v3/shorten?longUrl=".$thispostlink."&login=".$bitlylogin."&apiKey=".$bitlyapi."&format=json" );
|
72 |
+
$error = '';
|
73 |
+
if ($decoded) {
|
74 |
+
if ($decoded['status_code'] != 200) {
|
75 |
+
$shrink = $decoded;
|
76 |
+
$error = $decoded['status_txt'];
|
77 |
+
} else {
|
78 |
+
$shrink = $decoded['data']['url'];
|
79 |
+
}
|
80 |
+
} else {
|
81 |
+
$shrink = false;
|
82 |
+
update_option( 'wp_bitly_error',"JSON result could not be decoded");
|
83 |
+
}
|
84 |
+
if ( !is_valid_url($shrink) ) { $shrink = false; update_option( 'wp_bitly_error',$error ); }
|
85 |
+
break;
|
86 |
+
case 3:
|
87 |
+
$shrink = urldecode($thispostlink);
|
88 |
+
break;
|
89 |
+
case 5:
|
90 |
+
// local YOURLS installation
|
91 |
+
$thispostlink = urldecode($thispostlink);
|
92 |
+
global $yourls_reserved_URL;
|
93 |
+
define('YOURLS_INSTALLING', true); // Pretend we're installing YOURLS to bypass test for install or upgrade
|
94 |
+
define('YOURLS_FLOOD_DELAY_SECONDS', 0); // Disable flood check
|
95 |
+
$opath = get_option( 'yourlspath' );
|
96 |
+
$ypath = str_replace( 'user','includes', $opath );
|
97 |
+
if ( file_exists( dirname( $ypath ).'/load-yourls.php' ) ) { // YOURLS 1.4+
|
98 |
+
global $ydb;
|
99 |
+
require_once( dirname( $ypath ).'/load-yourls.php' );
|
100 |
+
if ( function_exists( 'yourls_add_new_link' ) ) {
|
101 |
+
$yourls_result = yourls_add_new_link( $thispostlink, $keyword_format );
|
102 |
+
} else {
|
103 |
+
$yourls_result = $thispostlink;
|
104 |
+
}
|
105 |
+
} else { // YOURLS 1.3
|
106 |
+
require_once( get_option( 'yourlspath' ) );
|
107 |
+
$yourls_db = new wpdb( YOURLS_DB_USER, YOURLS_DB_PASS, YOURLS_DB_NAME, YOURLS_DB_HOST );
|
108 |
+
$yourls_result = yourls_add_new_link( $thispostlink, $keyword_format, $yourls_db );
|
109 |
+
}
|
110 |
+
if ($yourls_result) {
|
111 |
+
$shrink = $yourls_result['shorturl'];
|
112 |
+
} else {
|
113 |
+
$shrink = false;
|
114 |
+
}
|
115 |
+
break;
|
116 |
+
case 6:
|
117 |
+
// remote YOURLS installation
|
118 |
+
$api_url = sprintf( get_option('yourlsurl') . '?username=%s&password=%s&url=%s&format=json&action=shorturl&keyword=%s',
|
119 |
+
$yourlslogin, $yourlsapi, $thispostlink, $keyword_format );
|
120 |
+
$json = jd_remote_json( $api_url, false );
|
121 |
+
if ($json) {
|
122 |
+
$shrink = $json->shorturl;
|
123 |
+
} else {
|
124 |
+
$shrink = false;
|
125 |
+
}
|
126 |
+
break;
|
127 |
+
case 7:
|
128 |
+
if ( $suprapi != '') {
|
129 |
+
$decoded = jd_remote_json( "http://su.pr/api/shorten?longUrl=".$thispostlink."&login=".$suprlogin."&apiKey=".$suprapi );
|
130 |
+
} else {
|
131 |
+
$decoded = jd_remote_json( "http://su.pr/api/shorten?longUrl=".$thispostlink );
|
132 |
+
}
|
133 |
+
update_option( 'wp_supr_error',"Su.pr API result: $decoded" );
|
134 |
+
if ($decoded['statusCode'] == 'OK') {
|
135 |
+
$page = str_replace("&","&", urldecode($thispostlink));
|
136 |
+
$shrink = $decoded['results'][$page]['shortUrl'];
|
137 |
+
$error = $decoded['errorMessage'];
|
138 |
+
} else {
|
139 |
+
$shrink = false;
|
140 |
+
$error = $decoded['errorMessage'];
|
141 |
+
update_option( 'wp_supr_error',"JSON result could not be decoded");
|
142 |
+
}
|
143 |
+
if ( !is_valid_url($shrink) ) { $shrink = false; update_option( 'wp_supr_error',$error ); }
|
144 |
+
break;
|
145 |
+
case 8:
|
146 |
+
// Goo.gl
|
147 |
+
$url = "https://www.googleapis.com/urlshortener/v1/url?key=AIzaSyBSnqQOg3vX1gwR7y2l-40yEG9SZiaYPUQ";
|
148 |
+
$link = urldecode($thispostlink);
|
149 |
+
$body = "{'longUrl':'$link'}";
|
150 |
+
//$body = json_encode($data);
|
151 |
+
$json = jd_fetch_url( $url, 'POST', $body, 'Content-Type: application/json' );
|
152 |
+
$decoded = json_decode($json);
|
153 |
+
//$url = $decoded['id'];
|
154 |
+
$shrink = $decoded->id;
|
155 |
+
if ( !is_valid_url($shrink) ) { $shrink = false; }
|
156 |
+
break;
|
157 |
+
case 9:
|
158 |
+
// Twitter Friendly Links
|
159 |
+
$shrink = urldecode($thispostlink);
|
160 |
+
if ( function_exists( 'twitter_link' ) ) { // use twitter_link if available
|
161 |
+
$shrink = twitter_link( $post_ID );
|
162 |
+
}
|
163 |
+
break;
|
164 |
+
}
|
165 |
+
if ($testmode != 'true') {
|
166 |
+
if ( $shrink === false || ( stristr( $shrink, "http://" ) === FALSE )) {
|
167 |
+
update_option( 'wp_url_failure','1' );
|
168 |
+
$shrink = urldecode( $thispostlink );
|
169 |
+
} else {
|
170 |
+
update_option( 'wp_url_failure','0' );
|
171 |
+
}
|
172 |
+
}
|
173 |
+
return $shrink;
|
174 |
+
}
|
175 |
+
|
176 |
+
function jd_expand_url( $short_url ) {
|
177 |
+
$short_url = urlencode( $short_url );
|
178 |
+
$decoded = jd_remote_json("http://api.longurl.org/v2/expand?format=json&url=" . $short_url );
|
179 |
+
$url = $decoded['long-url'];
|
180 |
+
return $url;
|
181 |
+
//return $short_url;
|
182 |
+
}
|
183 |
+
function jd_expand_yourl( $short_url, $remote ) {
|
184 |
+
if ( $remote == 6 ) {
|
185 |
+
$short_url = urlencode( $short_url );
|
186 |
+
$yourl_api = get_option( 'yourlsurl' );
|
187 |
+
$user = get_option( 'yourlslogin' );
|
188 |
+
$pass = stripcslashes( get_option( 'yourlsapi' ) );
|
189 |
+
$decoded = jd_remote_json( $yourl_api . "?action=expand&shorturl=$short_url&format=json&username=$user&password=$pass" );
|
190 |
+
$url = $decoded['longurl'];
|
191 |
+
return $url;
|
192 |
+
} else {
|
193 |
+
global $yourls_reserved_URL;
|
194 |
+
define('YOURLS_INSTALLING', true); // Pretend we're installing YOURLS to bypass test for install or upgrade
|
195 |
+
define('YOURLS_FLOOD_DELAY_SECONDS', 0); // Disable flood check
|
196 |
+
if ( file_exists( dirname( get_option( 'yourlspath' ) ).'/load-yourls.php' ) ) { // YOURLS 1.4
|
197 |
+
global $ydb;
|
198 |
+
require_once( dirname( get_option( 'yourlspath' ) ).'/load-yourls.php' );
|
199 |
+
$yourls_result = yourls_api_expand( $short_url );
|
200 |
+
} else { // YOURLS 1.3
|
201 |
+
require_once( get_option( 'yourlspath' ) );
|
202 |
+
$yourls_db = new wpdb( YOURLS_DB_USER, YOURLS_DB_PASS, YOURLS_DB_NAME, YOURLS_DB_HOST );
|
203 |
+
$yourls_result = yourls_api_expand( $short_url );
|
204 |
+
}
|
205 |
+
$url = $yourls_result['longurl'];
|
206 |
+
return $url;
|
207 |
+
}
|
208 |
+
}
|
wp-to-twitter-zh_TW.mo
DELETED
Binary file
|
wp-to-twitter-zh_TW.po
DELETED
@@ -1,1162 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: WP to Twitter\n"
|
4 |
-
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-to-twitter\n"
|
5 |
-
"POT-Creation-Date: 2011-08-01 22:02:33+00:00\n"
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: pnuts <i@pnuts.cc>\n"
|
8 |
-
"Language-Team: Racent <pnuts.zhao@racent.com>\n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Poedit-Language: Chinese\n"
|
13 |
-
"X-Poedit-Country: CHINA\n"
|
14 |
-
|
15 |
-
#: functions.php:201
|
16 |
-
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."
|
17 |
-
msgstr "[<a href='options-general.php?page=wp-to-twitter/wp-to-twitter.php'>隱藏</a>]如果你在使用中遇到錯誤,請復制這些設置信息給我們以獲得技術支持。"
|
18 |
-
|
19 |
-
#: wp-to-twitter.php:48
|
20 |
-
msgid "WP to Twitter requires PHP version 5 or above with cURL support. Please upgrade PHP or install cURL to run WP to Twitter."
|
21 |
-
msgstr "WP to Twitter需要PHP5或以上版本,並啟用了cURL支持。請升級PHP並安裝cURL。"
|
22 |
-
|
23 |
-
#: wp-to-twitter.php:69
|
24 |
-
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>"
|
25 |
-
msgstr "WP to Twitter需要Wordpress2.9.2或以上版本。 <a href=\"http://codex.wordpress.org/Upgrading_WordPress\">請更新你的Wordpress版本!</a>"
|
26 |
-
|
27 |
-
#: wp-to-twitter.php:83
|
28 |
-
msgid "Twitter requires authentication by OAuth. You will need to <a href='%s'>update your settings</a> to complete installation of WP to Twitter."
|
29 |
-
msgstr "Twitter需要OAuth驗證。若要完成安裝,請先<a href='%s'>更新設置</a>。"
|
30 |
-
|
31 |
-
#: wp-to-twitter.php:197
|
32 |
-
msgid "200 OK: Success!"
|
33 |
-
msgstr "200 OK: 成功!"
|
34 |
-
|
35 |
-
#: wp-to-twitter.php:201
|
36 |
-
msgid "400 Bad Request: The request was invalid. This is the status code returned during rate limiting."
|
37 |
-
msgstr "400 無效請求:請求無效。在請求頻率限制的範圍內返回了400的狀態碼。"
|
38 |
-
|
39 |
-
#: wp-to-twitter.php:205
|
40 |
-
msgid "401 Unauthorized: Authentication credentials were missing or incorrect."
|
41 |
-
msgstr "401 未授權:授權證書丟失或不正確。"
|
42 |
-
|
43 |
-
#: wp-to-twitter.php:209
|
44 |
-
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."
|
45 |
-
msgstr "403 禁止訪問:請求已被識別,但被服務器拒絕響應。當Twitter拒絕響應用戶請求時會返回此錯誤。原因包括:內容超過140個字或者API變動等。"
|
46 |
-
|
47 |
-
#: wp-to-twitter.php:213
|
48 |
-
msgid "500 Internal Server Error: Something is broken at Twitter."
|
49 |
-
msgstr "500 內部錯誤:Twitter服務器發生了內部錯誤。"
|
50 |
-
|
51 |
-
#: wp-to-twitter.php:217
|
52 |
-
msgid "503 Service Unavailable: The Twitter servers are up, but overloaded with requests Please try again later."
|
53 |
-
msgstr "503 服務不可用:Twitter服務器負荷過重,請稍後再試。"
|
54 |
-
|
55 |
-
#: wp-to-twitter.php:221
|
56 |
-
msgid "502 Bad Gateway: Twitter is down or being upgraded."
|
57 |
-
msgstr "502 錯誤的網關:Twitter服務器宕機或升級中。"
|
58 |
-
|
59 |
-
#. #-#-#-#-# plugin.pot (WP to Twitter 2.3.5) #-#-#-#-#
|
60 |
-
#. Plugin Name of the plugin/theme
|
61 |
-
#: wp-to-twitter.php:803
|
62 |
-
msgid "WP to Twitter"
|
63 |
-
msgstr "WP to Twitter"
|
64 |
-
|
65 |
-
#: wp-to-twitter.php:833
|
66 |
-
msgid "Tweet this post."
|
67 |
-
msgstr "推這篇博文。"
|
68 |
-
|
69 |
-
#: wp-to-twitter.php:836
|
70 |
-
msgid "Don't Tweet this post."
|
71 |
-
msgstr "不要將這篇日誌同步至Twitter"
|
72 |
-
|
73 |
-
#: wp-to-twitter.php:877
|
74 |
-
msgid "Custom Twitter Post"
|
75 |
-
msgstr "定制推文"
|
76 |
-
|
77 |
-
#: wp-to-twitter.php:886
|
78 |
-
#: wp-to-twitter-manager.php:385
|
79 |
-
msgid "Make a Donation"
|
80 |
-
msgstr "捐助"
|
81 |
-
|
82 |
-
#: wp-to-twitter.php:886
|
83 |
-
#: wp-to-twitter-manager.php:385
|
84 |
-
msgid "Get Support"
|
85 |
-
msgstr "獲得支持"
|
86 |
-
|
87 |
-
#: wp-to-twitter.php:899
|
88 |
-
msgid "This URL is direct and has not been shortened: "
|
89 |
-
msgstr "URL沒有使用短域名服務:"
|
90 |
-
|
91 |
-
#: wp-to-twitter.php:961
|
92 |
-
msgid "WP to Twitter User Settings"
|
93 |
-
msgstr "WP to Twitter 用戶設置"
|
94 |
-
|
95 |
-
#: wp-to-twitter.php:965
|
96 |
-
msgid "Use My Twitter Username"
|
97 |
-
msgstr "使用我Twitter的用戶名"
|
98 |
-
|
99 |
-
#: wp-to-twitter.php:966
|
100 |
-
msgid "Tweet my posts with an @ reference to my username."
|
101 |
-
msgstr "同步日誌到Twitter後,使用@通知我的Twitter賬戶。"
|
102 |
-
|
103 |
-
#: wp-to-twitter.php:967
|
104 |
-
msgid "Tweet my posts with an @ reference to both my username and to the main site username."
|
105 |
-
msgstr "如果如果同步日誌到Twitter後,使用@通知我的Twitter賬戶以及博客的主Twitter賬戶。"
|
106 |
-
|
107 |
-
#: wp-to-twitter.php:971
|
108 |
-
msgid "Your Twitter Username"
|
109 |
-
msgstr "你的Twitter用戶名"
|
110 |
-
|
111 |
-
#: wp-to-twitter.php:972
|
112 |
-
msgid "Enter your own Twitter username."
|
113 |
-
msgstr "輸入你的Twitter用戶名。"
|
114 |
-
|
115 |
-
#: wp-to-twitter.php:1011
|
116 |
-
msgid "Check the categories you want to tweet:"
|
117 |
-
msgstr "選擇你想要推的分類:"
|
118 |
-
|
119 |
-
#: wp-to-twitter.php:1028
|
120 |
-
msgid "Set Categories"
|
121 |
-
msgstr "設定分類"
|
122 |
-
|
123 |
-
#: wp-to-twitter.php:1052
|
124 |
-
msgid "<p>Couldn't locate the settings page.</p>"
|
125 |
-
msgstr "<p>不能確定設置頁面的位置。</p>"
|
126 |
-
|
127 |
-
#: wp-to-twitter.php:1057
|
128 |
-
msgid "Settings"
|
129 |
-
msgstr "設置"
|
130 |
-
|
131 |
-
#: wp-to-twitter-oauth.php:105
|
132 |
-
msgid "There was an error querying Twitter's servers."
|
133 |
-
msgstr "查詢Twitter服務器的過程中發生了錯誤。"
|
134 |
-
|
135 |
-
#: wp-to-twitter-oauth.php:112
|
136 |
-
#: wp-to-twitter-oauth.php:156
|
137 |
-
msgid "Connect to Twitter"
|
138 |
-
msgstr "連接到Twitter"
|
139 |
-
|
140 |
-
#: wp-to-twitter-oauth.php:115
|
141 |
-
#: wp-to-twitter-oauth.php:186
|
142 |
-
msgid "Your server time:"
|
143 |
-
msgstr "你服務器的時間:"
|
144 |
-
|
145 |
-
#: wp-to-twitter-oauth.php:115
|
146 |
-
msgid "If these times are not within 5 minutes of each other, your server will not be able to connect to Twitter."
|
147 |
-
msgstr "如果他們之間的時間間隔超過5分鐘,你的服務器將無法訪問Twitter。"
|
148 |
-
|
149 |
-
#: wp-to-twitter-oauth.php:116
|
150 |
-
msgid "The process to set up OAuth authentication for your web site is needlessly laborious. However, this is the method available. Note that you will not add your Twitter username or password to WP to Twitter; they are not used in OAuth authentication."
|
151 |
-
msgstr "設置OAuth驗證的過程雖然復雜,但卻是唯一的可用方法。註意:你不需要在WP to Twitter中輸入你Twitter賬戶的用戶名和密碼,OAuth驗證過程不需要這些信息。"
|
152 |
-
|
153 |
-
#: wp-to-twitter-oauth.php:119
|
154 |
-
msgid "1. Register this site as an application on "
|
155 |
-
msgstr "1. 將本站註冊為一個應用:"
|
156 |
-
|
157 |
-
#: wp-to-twitter-oauth.php:119
|
158 |
-
msgid "Twitter's application registration page"
|
159 |
-
msgstr "Twitter應用的註冊頁面"
|
160 |
-
|
161 |
-
#: wp-to-twitter-oauth.php:121
|
162 |
-
msgid "If you're not currently logged in, log-in with the Twitter username and password which you want associated with this site"
|
163 |
-
msgstr "如果你沒有登陸到Twitter,你先登陸到你想要綁定的Twitter賬戶。"
|
164 |
-
|
165 |
-
#: wp-to-twitter-oauth.php:122
|
166 |
-
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."
|
167 |
-
msgstr "應用名稱會顯示在你每條新鮮事的\"via\"後面。應用程序名稱不能包含\"Twitter.\"字樣。你可能用你網站的名稱。"
|
168 |
-
|
169 |
-
#: wp-to-twitter-oauth.php:123
|
170 |
-
msgid "Your Application Description can be whatever you want."
|
171 |
-
msgstr "應用程序的描述可以任意填寫。"
|
172 |
-
|
173 |
-
#: wp-to-twitter-oauth.php:124
|
174 |
-
msgid "The WebSite and Callback URL should be "
|
175 |
-
msgstr "WebSite和Callback URL應該是"
|
176 |
-
|
177 |
-
#: wp-to-twitter-oauth.php:126
|
178 |
-
msgid "Agree to the Developer Rules of the Road and continue."
|
179 |
-
msgstr "同意開發者協議,並繼續。"
|
180 |
-
|
181 |
-
#: wp-to-twitter-oauth.php:127
|
182 |
-
msgid "2. Switch to \"Settings\" tab in Twitter apps"
|
183 |
-
msgstr "2. 在Twitter Apps頁面切換到\"Settings\"標簽"
|
184 |
-
|
185 |
-
#: wp-to-twitter-oauth.php:129
|
186 |
-
msgid "Select \"Read and Write\" for the Application Type"
|
187 |
-
msgstr "應用程序類型選擇\"Read and Write\""
|
188 |
-
|
189 |
-
#: wp-to-twitter-oauth.php:130
|
190 |
-
msgid "Update the application settings"
|
191 |
-
msgstr "更新程序設置"
|
192 |
-
|
193 |
-
#: wp-to-twitter-oauth.php:131
|
194 |
-
msgid "Return to Details tab and create your access token. Refresh page to view your access tokens."
|
195 |
-
msgstr "返回詳細設置標簽頁,創建你的Access Token。刷新頁面後就可以看到你的Access Token了。"
|
196 |
-
|
197 |
-
#: wp-to-twitter-oauth.php:133
|
198 |
-
msgid "Once you have registered your site as an application, you will be provided with four keys."
|
199 |
-
msgstr "應用程序註冊成功後,你要輸入Twitter所提示的4個Key。"
|
200 |
-
|
201 |
-
#: wp-to-twitter-oauth.php:134
|
202 |
-
msgid "3. Copy and paste your consumer key and consumer secret into the fields below"
|
203 |
-
msgstr "3. 將你的Consumer Key和Consumer Secert復制到下面"
|
204 |
-
|
205 |
-
#: wp-to-twitter-oauth.php:137
|
206 |
-
msgid "Twitter Consumer Key"
|
207 |
-
msgstr "Twitter Consumer Key"
|
208 |
-
|
209 |
-
#: wp-to-twitter-oauth.php:141
|
210 |
-
msgid "Twitter Consumer Secret"
|
211 |
-
msgstr "Twitter Consumer Secret"
|
212 |
-
|
213 |
-
#: wp-to-twitter-oauth.php:144
|
214 |
-
msgid "4. Copy and paste your Access Token and Access Token Secret into the fields below"
|
215 |
-
msgstr "4. 將你的Access Token和Access Token Secret復制至下面"
|
216 |
-
|
217 |
-
#: wp-to-twitter-oauth.php:145
|
218 |
-
msgid "If the Access level reported for your Access Token is not \"Read and write\", you will need to delete your application from Twitter and start over. Don't blame me, I'm not the _______ who designed this process."
|
219 |
-
msgstr "如果系統提示你的Access Token不具有讀寫權限(\"Read and write\"),你只能刪掉你的應用重頭再來。別罵我哦~~我可不是那個XXXXXX的設計者。"
|
220 |
-
|
221 |
-
#: wp-to-twitter-oauth.php:147
|
222 |
-
msgid "Access Token"
|
223 |
-
msgstr "Access Token"
|
224 |
-
|
225 |
-
#: wp-to-twitter-oauth.php:151
|
226 |
-
msgid "Access Token Secret"
|
227 |
-
msgstr "Access Token Secret"
|
228 |
-
|
229 |
-
#: wp-to-twitter-oauth.php:166
|
230 |
-
msgid "Disconnect from Twitter"
|
231 |
-
msgstr "已與Twitter斷開連接"
|
232 |
-
|
233 |
-
#: wp-to-twitter-oauth.php:173
|
234 |
-
msgid "Twitter Username "
|
235 |
-
msgstr "Twitter的用戶名"
|
236 |
-
|
237 |
-
#: wp-to-twitter-oauth.php:174
|
238 |
-
msgid "Consumer Key "
|
239 |
-
msgstr "Consumer Key "
|
240 |
-
|
241 |
-
#: wp-to-twitter-oauth.php:175
|
242 |
-
msgid "Consumer Secret "
|
243 |
-
msgstr "Consumer Secret "
|
244 |
-
|
245 |
-
#: wp-to-twitter-oauth.php:176
|
246 |
-
msgid "Access Token "
|
247 |
-
msgstr "Access Token "
|
248 |
-
|
249 |
-
#: wp-to-twitter-oauth.php:177
|
250 |
-
msgid "Access Token Secret "
|
251 |
-
msgstr "Access Token Secret "
|
252 |
-
|
253 |
-
#: wp-to-twitter-oauth.php:180
|
254 |
-
msgid "Disconnect Your WordPress and Twitter Account"
|
255 |
-
msgstr "斷開你的Wordpress與Twitter連接"
|
256 |
-
|
257 |
-
#: wp-to-twitter-oauth.php:186
|
258 |
-
msgid "Twitter's current server time: "
|
259 |
-
msgstr "Twitter服務器的當前時間:"
|
260 |
-
|
261 |
-
#: wp-to-twitter-oauth.php:186
|
262 |
-
msgid "If these times are not within 5 minutes of each other, your server could lose it's connection with Twitter."
|
263 |
-
msgstr "如果他們之間的時間間隔超過5分鐘,你將會失去與Twitter服務器的連接。"
|
264 |
-
|
265 |
-
#: wp-to-twitter-manager.php:96
|
266 |
-
msgid "WP to Twitter is now connected with Twitter."
|
267 |
-
msgstr "WP to Twitter已連接到Twitter服務器。"
|
268 |
-
|
269 |
-
#: wp-to-twitter-manager.php:106
|
270 |
-
msgid "OAuth Authentication Data Cleared."
|
271 |
-
msgstr "OAuth驗證信息已被清除。"
|
272 |
-
|
273 |
-
#: wp-to-twitter-manager.php:113
|
274 |
-
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."
|
275 |
-
msgstr "OAuth驗證失敗。你服務器的時間與Twitter的時間不同步。請聯系你服務器的管理員。"
|
276 |
-
|
277 |
-
#: wp-to-twitter-manager.php:120
|
278 |
-
msgid "OAuth Authentication response not understood."
|
279 |
-
msgstr "OAuth驗證的返回信息無法別解析。"
|
280 |
-
|
281 |
-
#: wp-to-twitter-manager.php:129
|
282 |
-
msgid "WP to Twitter Errors Cleared"
|
283 |
-
msgstr "WP to Twitter 的錯誤信息已清除"
|
284 |
-
|
285 |
-
#: wp-to-twitter-manager.php:136
|
286 |
-
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! "
|
287 |
-
msgstr "抱歉! 我不能連接到Twitter服務器,將你的新日誌同步至Twitter。你的推已經保存在該日誌的自定義域中,如果你想可以手動發送。"
|
288 |
-
|
289 |
-
#: wp-to-twitter-manager.php:138
|
290 |
-
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. "
|
291 |
-
msgstr "抱歉! 不能連接Twitter服務器來將你的<strong>新鏈接</strong>同步至Twitter! 我恐怕你得手動發這個推了。"
|
292 |
-
|
293 |
-
#: wp-to-twitter-manager.php:174
|
294 |
-
msgid "WP to Twitter Advanced Options Updated"
|
295 |
-
msgstr "WP to Twitter高級選項"
|
296 |
-
|
297 |
-
#: wp-to-twitter-manager.php:197
|
298 |
-
msgid "You must add your Bit.ly login and API key in order to shorten URLs with Bit.ly."
|
299 |
-
msgstr "如果你想使用Bit.ly提供的URL縮短功能,就必須添加Bit.ly登錄信息和API Key。"
|
300 |
-
|
301 |
-
#: wp-to-twitter-manager.php:201
|
302 |
-
msgid "You must add your YOURLS remote URL, login, and password in order to shorten URLs with a remote installation of YOURLS."
|
303 |
-
msgstr "要使用遠程的YOURLS短域名服務,請先添加你的YOURLS的URL,用戶名和密碼。"
|
304 |
-
|
305 |
-
#: wp-to-twitter-manager.php:205
|
306 |
-
msgid "You must add your YOURLS server path in order to shorten URLs with a remote installation of YOURLS."
|
307 |
-
msgstr "要使用本機的YOURLS短域名服務,請先添加你的YOURLS路徑。"
|
308 |
-
|
309 |
-
#: wp-to-twitter-manager.php:209
|
310 |
-
msgid "WP to Twitter Options Updated"
|
311 |
-
msgstr "WP to Twitter 的設置已經更新"
|
312 |
-
|
313 |
-
#: wp-to-twitter-manager.php:219
|
314 |
-
msgid "Category limits updated."
|
315 |
-
msgstr "分類的限制已更新。"
|
316 |
-
|
317 |
-
#: wp-to-twitter-manager.php:223
|
318 |
-
msgid "Category limits unset."
|
319 |
-
msgstr "分類的限制未設定。"
|
320 |
-
|
321 |
-
#: wp-to-twitter-manager.php:231
|
322 |
-
msgid "YOURLS password updated. "
|
323 |
-
msgstr "YOURLS的密碼已經更新。"
|
324 |
-
|
325 |
-
#: wp-to-twitter-manager.php:234
|
326 |
-
msgid "YOURLS password deleted. You will be unable to use your remote YOURLS account to create short URLS."
|
327 |
-
msgstr "YOURLS的密碼已刪除。你將無法使用YOURLS短域名服務來縮短域名。"
|
328 |
-
|
329 |
-
#: wp-to-twitter-manager.php:236
|
330 |
-
msgid "Failed to save your YOURLS password! "
|
331 |
-
msgstr "YOURLS的密碼保存失敗!"
|
332 |
-
|
333 |
-
#: wp-to-twitter-manager.php:240
|
334 |
-
msgid "YOURLS username added. "
|
335 |
-
msgstr "YOURLS的用戶名已添加。"
|
336 |
-
|
337 |
-
#: wp-to-twitter-manager.php:244
|
338 |
-
msgid "YOURLS API url added. "
|
339 |
-
msgstr "YOURLS的API URL已添加。"
|
340 |
-
|
341 |
-
#: wp-to-twitter-manager.php:247
|
342 |
-
msgid "YOURLS API url removed. "
|
343 |
-
msgstr "YOURLS的API URL已移除。"
|
344 |
-
|
345 |
-
#: wp-to-twitter-manager.php:252
|
346 |
-
msgid "YOURLS local server path added. "
|
347 |
-
msgstr "本地YOURLS服務的路徑地址已添加。"
|
348 |
-
|
349 |
-
#: wp-to-twitter-manager.php:254
|
350 |
-
msgid "The path to your YOURLS installation is not correct. "
|
351 |
-
msgstr "所輸入的YOURLS的路徑無效。"
|
352 |
-
|
353 |
-
#: wp-to-twitter-manager.php:258
|
354 |
-
msgid "YOURLS local server path removed. "
|
355 |
-
msgstr "YOURLS的路徑地址已刪除。"
|
356 |
-
|
357 |
-
#: wp-to-twitter-manager.php:262
|
358 |
-
msgid "YOURLS will use Post ID for short URL slug."
|
359 |
-
msgstr "YOURLS采用博文的ID來縮短域名。"
|
360 |
-
|
361 |
-
#: wp-to-twitter-manager.php:265
|
362 |
-
msgid "YOURLS will not use Post ID for the short URL slug."
|
363 |
-
msgstr "YOURLS不采用博文的ID來縮短域名。"
|
364 |
-
|
365 |
-
#: wp-to-twitter-manager.php:273
|
366 |
-
msgid "Su.pr API Key and Username Updated"
|
367 |
-
msgstr "Su.pr API Key和用戶名已更新"
|
368 |
-
|
369 |
-
#: wp-to-twitter-manager.php:277
|
370 |
-
msgid "Su.pr API Key and username deleted. Su.pr URLs created by WP to Twitter will no longer be associated with your account. "
|
371 |
-
msgstr "Su.pr API Key已經被刪除。WP to Twitter將不再與Su.pr關聯。"
|
372 |
-
|
373 |
-
#: wp-to-twitter-manager.php:279
|
374 |
-
msgid "Su.pr API Key not added - <a href='http://su.pr/'>get one here</a>! "
|
375 |
-
msgstr "Su.pr API Key 還沒有添加 - <a href='http://cli.gs/user/api/'>這裏</a>來獲取一個吧!"
|
376 |
-
|
377 |
-
#: wp-to-twitter-manager.php:285
|
378 |
-
msgid "Bit.ly API Key Updated."
|
379 |
-
msgstr "Bit.ly API Key 已經更新"
|
380 |
-
|
381 |
-
#: wp-to-twitter-manager.php:288
|
382 |
-
msgid "Bit.ly API Key deleted. You cannot use the Bit.ly API without an API key. "
|
383 |
-
msgstr "Bit.ly API Key 已經刪除。如果沒有 API,將無法使用Bit.ly提供的服務。"
|
384 |
-
|
385 |
-
#: wp-to-twitter-manager.php:290
|
386 |
-
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."
|
387 |
-
msgstr "Bit.ly的API還沒有添加 - <a href='http://bit.ly/account/'>這裏</a>獲得一個吧! 如果你想使用URL縮短功能,就必須提供一個Bit.ly的API。"
|
388 |
-
|
389 |
-
#: wp-to-twitter-manager.php:294
|
390 |
-
msgid " Bit.ly User Login Updated."
|
391 |
-
msgstr "Bit.ly登錄信息已經更新。"
|
392 |
-
|
393 |
-
#: wp-to-twitter-manager.php:297
|
394 |
-
msgid "Bit.ly User Login deleted. You cannot use the Bit.ly API without providing your username. "
|
395 |
-
msgstr "Bit.ly登錄信息已經刪除。沒有了登錄信息,你將不能使用Bit.ly。"
|
396 |
-
|
397 |
-
#: wp-to-twitter-manager.php:299
|
398 |
-
msgid "Bit.ly Login not added - <a href='http://bit.ly/account/'>get one here</a>! "
|
399 |
-
msgstr "Bit.ly 登錄信息沒有添加 - <a href='http://bit.ly/account/'>這裏</a>來獲取一個吧!"
|
400 |
-
|
401 |
-
#: wp-to-twitter-manager.php:328
|
402 |
-
msgid "No error information is available for your shortener."
|
403 |
-
msgstr "短語名服務發生未知錯誤。"
|
404 |
-
|
405 |
-
#: wp-to-twitter-manager.php:330
|
406 |
-
msgid "<li class=\"error\"><strong>WP to Twitter was unable to contact your selected URL shortening service.</strong></li>"
|
407 |
-
msgstr "<li class=\"error\"><strong>WP to Twitter無法連接到所選的短域名服務。</strong></li>"
|
408 |
-
|
409 |
-
#: wp-to-twitter-manager.php:333
|
410 |
-
msgid "<li><strong>WP to Twitter successfully contacted your selected URL shortening service.</strong> The following link should point to your blog homepage:"
|
411 |
-
msgstr "<li><strong>WP to Twitter成功的連接到所選的短域名服務。</strong> 下面的鏈接會指向你的博客首頁。"
|
412 |
-
|
413 |
-
#: wp-to-twitter-manager.php:342
|
414 |
-
msgid "<li><strong>WP to Twitter successfully submitted a status update to Twitter.</strong></li>"
|
415 |
-
msgstr "<li><strong>WP to Twitter成功的更新了一條推。</strong></li>"
|
416 |
-
|
417 |
-
#: wp-to-twitter-manager.php:345
|
418 |
-
msgid "<li class=\"error\"><strong>WP to Twitter failed to submit an update to Twitter.</strong></li>"
|
419 |
-
msgstr "<li class=\"error\"><strong>WP to Twitter更新Twitter失敗。</strong></li>"
|
420 |
-
|
421 |
-
#: wp-to-twitter-manager.php:349
|
422 |
-
msgid "You have not connected WordPress to Twitter."
|
423 |
-
msgstr "你還沒有建立Wordpress到Twitter的連接。"
|
424 |
-
|
425 |
-
#: wp-to-twitter-manager.php:353
|
426 |
-
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>"
|
427 |
-
msgstr "<li><strong>你的服務器可能缺少一些WP to Twitter需要的PHP函數。</strong>你可以繼續嘗試,因為這些測試結果並不保證是正確的。</li>"
|
428 |
-
|
429 |
-
#: wp-to-twitter-manager.php:357
|
430 |
-
msgid "<li><strong>Your server should run WP to Twitter successfully.</strong></li>"
|
431 |
-
msgstr "<li><strong>你的服務器應該可以正常運行WP to Twitter。</strong></li>"
|
432 |
-
|
433 |
-
#: wp-to-twitter-manager.php:374
|
434 |
-
msgid "WP to Twitter Options"
|
435 |
-
msgstr "WP to Twitter 選項"
|
436 |
-
|
437 |
-
#: wp-to-twitter-manager.php:384
|
438 |
-
msgid "Pledge to new features"
|
439 |
-
msgstr "征求新功能"
|
440 |
-
|
441 |
-
#: wp-to-twitter-manager.php:385
|
442 |
-
msgid "View Settings"
|
443 |
-
msgstr "查看設置"
|
444 |
-
|
445 |
-
#: wp-to-twitter-manager.php:412
|
446 |
-
msgid "Shortcodes available in post update templates:"
|
447 |
-
msgstr "推文模板支持的簡碼:"
|
448 |
-
|
449 |
-
#: wp-to-twitter-manager.php:414
|
450 |
-
msgid "<code>#title#</code>: the title of your blog post"
|
451 |
-
msgstr "<code>#title#</code>: 博文的標題"
|
452 |
-
|
453 |
-
#: wp-to-twitter-manager.php:415
|
454 |
-
msgid "<code>#blog#</code>: the title of your blog"
|
455 |
-
msgstr "<code>#blog#</code>: 博客的站名"
|
456 |
-
|
457 |
-
#: wp-to-twitter-manager.php:416
|
458 |
-
msgid "<code>#post#</code>: a short excerpt of the post content"
|
459 |
-
msgstr "<code>#post#</code>: 博文概要"
|
460 |
-
|
461 |
-
#: wp-to-twitter-manager.php:417
|
462 |
-
msgid "<code>#category#</code>: the first selected category for the post"
|
463 |
-
msgstr "<code>#category#</code>: 博文的第一個分類"
|
464 |
-
|
465 |
-
#: wp-to-twitter-manager.php:418
|
466 |
-
msgid "<code>#date#</code>: the post date"
|
467 |
-
msgstr "<code>#date#</code>: 發布日期"
|
468 |
-
|
469 |
-
#: wp-to-twitter-manager.php:419
|
470 |
-
msgid "<code>#url#</code>: the post URL"
|
471 |
-
msgstr "<code>#url#</code>: 博文地址"
|
472 |
-
|
473 |
-
#: wp-to-twitter-manager.php:420
|
474 |
-
msgid "<code>#author#</code>: the post author"
|
475 |
-
msgstr "<code>#author#</code>: 博文作者"
|
476 |
-
|
477 |
-
#: wp-to-twitter-manager.php:421
|
478 |
-
msgid "<code>#account#</code>: the twitter @reference for the account (or the author, if author settings are enabled and set.)"
|
479 |
-
msgstr "<code>#account#</code>: 用@通知當前用戶的twitter賬戶(如果啟用了作者選項,則是作者)"
|
480 |
-
|
481 |
-
#: wp-to-twitter-manager.php:423
|
482 |
-
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>"
|
483 |
-
msgstr "你可以自定義短碼,以便於引用那些自定義的字段。要在推文中加入自定義字段,請用兩個方括號將自己字段的名字括起來。如: <code>[[custom_field]]</code></p>"
|
484 |
-
|
485 |
-
#: wp-to-twitter-manager.php:428
|
486 |
-
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>"
|
487 |
-
msgstr "<p>在同步一個或多個日誌到Twitter時出現錯誤。你的推已經保存在日誌的自定義域中,你可以在空閑時間重新發送他們。</p>"
|
488 |
-
|
489 |
-
#: wp-to-twitter-manager.php:432
|
490 |
-
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>"
|
491 |
-
msgstr "<p>在請求URL縮短服務的API時出錯,你的URL並沒有被縮短。一個完整的URL已經包含在你的推中。檢查你的URL縮短功能提供商看那裏是不是有一些已知的錯誤。[<a href=\"http://blog.cli.gs\">Su.pr Blog</a>] [<a href=\"http://blog.bit.ly\">Bit.ly Blog</a>]</p>"
|
492 |
-
|
493 |
-
#: wp-to-twitter-manager.php:439
|
494 |
-
msgid "Clear 'WP to Twitter' Error Messages"
|
495 |
-
msgstr "清除WP to Twitter的錯誤信息"
|
496 |
-
|
497 |
-
#: wp-to-twitter-manager.php:452
|
498 |
-
msgid "Basic Settings"
|
499 |
-
msgstr "基本設置"
|
500 |
-
|
501 |
-
#: wp-to-twitter-manager.php:486
|
502 |
-
msgid "Settings for Comments"
|
503 |
-
msgstr "評論設置"
|
504 |
-
|
505 |
-
#: wp-to-twitter-manager.php:489
|
506 |
-
msgid "Update Twitter when new comments are posted"
|
507 |
-
msgstr "當添加評論時同步至Twitter"
|
508 |
-
|
509 |
-
#: wp-to-twitter-manager.php:490
|
510 |
-
msgid "Text for new comments:"
|
511 |
-
msgstr "發表新評論時,推的內容:"
|
512 |
-
|
513 |
-
#: wp-to-twitter-manager.php:494
|
514 |
-
msgid "Settings for Links"
|
515 |
-
msgstr "鏈接設置"
|
516 |
-
|
517 |
-
#: wp-to-twitter-manager.php:497
|
518 |
-
msgid "Update Twitter when you post a Blogroll link"
|
519 |
-
msgstr "當Blogroll鏈接更新時同步至Twitter"
|
520 |
-
|
521 |
-
#: wp-to-twitter-manager.php:498
|
522 |
-
msgid "Text for new link updates:"
|
523 |
-
msgstr "添加新鏈接時,推的內容:"
|
524 |
-
|
525 |
-
#: wp-to-twitter-manager.php:498
|
526 |
-
msgid "Available shortcodes: <code>#url#</code>, <code>#title#</code>, and <code>#description#</code>."
|
527 |
-
msgstr "支持的簡碼:<code>#url#</code>,<code>#title#</code>,<code>#description#</code>。"
|
528 |
-
|
529 |
-
#: wp-to-twitter-manager.php:502
|
530 |
-
msgid "Choose your short URL service (account settings below)"
|
531 |
-
msgstr "選擇你的短域名服務(賬戶設置在下面)"
|
532 |
-
|
533 |
-
#: wp-to-twitter-manager.php:505
|
534 |
-
msgid "Don't shorten URLs."
|
535 |
-
msgstr "不要縮短URL。"
|
536 |
-
|
537 |
-
#: wp-to-twitter-manager.php:506
|
538 |
-
msgid "Use Su.pr for my URL shortener."
|
539 |
-
msgstr "使用<strong>Su.pr</strong>來為我縮短URL。"
|
540 |
-
|
541 |
-
#: wp-to-twitter-manager.php:507
|
542 |
-
msgid "Use Bit.ly for my URL shortener."
|
543 |
-
msgstr "使用<strong>Bit.ly</strong>短域名服務。"
|
544 |
-
|
545 |
-
#: wp-to-twitter-manager.php:508
|
546 |
-
msgid "YOURLS (installed on this server)"
|
547 |
-
msgstr "YOURLS (安裝在這臺服務器上)"
|
548 |
-
|
549 |
-
#: wp-to-twitter-manager.php:509
|
550 |
-
msgid "YOURLS (installed on a remote server)"
|
551 |
-
msgstr "YOURLS(安裝在遠程的服務器上)"
|
552 |
-
|
553 |
-
#: wp-to-twitter-manager.php:510
|
554 |
-
msgid "Use WordPress as a URL shortener."
|
555 |
-
msgstr "使用<strong>Wordpress</strong>短域名服務。"
|
556 |
-
|
557 |
-
#: wp-to-twitter-manager.php:512
|
558 |
-
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."
|
559 |
-
msgstr "使用Wordpress短域名服務,地址將會自動被格式化為<code>http://domain.com/subdir/?p=123</code>。同時,無法使用Google Analytics來跟蹤。"
|
560 |
-
|
561 |
-
#: wp-to-twitter-manager.php:518
|
562 |
-
msgid "Save WP->Twitter Options"
|
563 |
-
msgstr "保存 WP to Twitter 選項"
|
564 |
-
|
565 |
-
#: wp-to-twitter-manager.php:527
|
566 |
-
msgid "<abbr title=\"Uniform Resource Locator\">URL</abbr> Shortener Account Settings"
|
567 |
-
msgstr "<abbr title=\"統一資源定位符\">URL</abbr>短域名賬戶設置"
|
568 |
-
|
569 |
-
#: wp-to-twitter-manager.php:531
|
570 |
-
msgid "Your Su.pr account details"
|
571 |
-
msgstr "你的Su.pr賬戶信息:"
|
572 |
-
|
573 |
-
#: wp-to-twitter-manager.php:536
|
574 |
-
msgid "Your Su.pr Username:"
|
575 |
-
msgstr "你的Su.pr用戶名:"
|
576 |
-
|
577 |
-
#: wp-to-twitter-manager.php:540
|
578 |
-
msgid "Your Su.pr <abbr title='application programming interface'>API</abbr> Key:"
|
579 |
-
msgstr "你的Su.pr<abbr title='應用程序接口'>API</abbr> Key:"
|
580 |
-
|
581 |
-
#: wp-to-twitter-manager.php:546
|
582 |
-
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."
|
583 |
-
msgstr "你還沒有Su.pr賬戶或者Su.pr的API Key麽? 那快來<a href='http://cli.gs/user/api/'>這裏</a>免費獲取一個吧!<br />如果你需要關聯你的Su.pr賬戶,你還需要一個API Key。"
|
584 |
-
|
585 |
-
#: wp-to-twitter-manager.php:552
|
586 |
-
msgid "Your Bit.ly account details"
|
587 |
-
msgstr "你的Bit.ly賬戶信息"
|
588 |
-
|
589 |
-
#: wp-to-twitter-manager.php:557
|
590 |
-
msgid "Your Bit.ly username:"
|
591 |
-
msgstr "你的Bit.ly用戶名:"
|
592 |
-
|
593 |
-
#: wp-to-twitter-manager.php:561
|
594 |
-
msgid "Your Bit.ly <abbr title='application programming interface'>API</abbr> Key:"
|
595 |
-
msgstr "你Bit.ly<abbr title='應用程序接口'>API</abbr> Key:"
|
596 |
-
|
597 |
-
#: wp-to-twitter-manager.php:568
|
598 |
-
msgid "Save Bit.ly API Key"
|
599 |
-
msgstr "保存Bit.ly API Key"
|
600 |
-
|
601 |
-
#: wp-to-twitter-manager.php:568
|
602 |
-
msgid "Clear Bit.ly API Key"
|
603 |
-
msgstr "清除Bit.ly API Key"
|
604 |
-
|
605 |
-
#: wp-to-twitter-manager.php:568
|
606 |
-
msgid "A Bit.ly API key and username is required to shorten URLs via the Bit.ly API and WP to Twitter."
|
607 |
-
msgstr "當通過Bit.ly API縮短URL時,需要Bit.ly的API Key和用戶名。"
|
608 |
-
|
609 |
-
#: wp-to-twitter-manager.php:573
|
610 |
-
msgid "Your YOURLS account details"
|
611 |
-
msgstr "你的YOURLS賬戶信息:"
|
612 |
-
|
613 |
-
#: wp-to-twitter-manager.php:577
|
614 |
-
msgid "Path to your YOURLS config file (Local installations)"
|
615 |
-
msgstr "本地YOURLS的配置文件(本地安裝)"
|
616 |
-
|
617 |
-
#: wp-to-twitter-manager.php:578
|
618 |
-
#: wp-to-twitter-manager.php:582
|
619 |
-
msgid "Example:"
|
620 |
-
msgstr "如:"
|
621 |
-
|
622 |
-
#: wp-to-twitter-manager.php:581
|
623 |
-
msgid "URI to the YOURLS API (Remote installations)"
|
624 |
-
msgstr "YOURLS API的URI地址(遠程安裝)"
|
625 |
-
|
626 |
-
#: wp-to-twitter-manager.php:585
|
627 |
-
msgid "Your YOURLS username:"
|
628 |
-
msgstr "你的YOURLS用戶名:"
|
629 |
-
|
630 |
-
#: wp-to-twitter-manager.php:589
|
631 |
-
msgid "Your YOURLS password:"
|
632 |
-
msgstr "你的YOURLS的密碼:"
|
633 |
-
|
634 |
-
#: wp-to-twitter-manager.php:589
|
635 |
-
msgid "<em>Saved</em>"
|
636 |
-
msgstr "<em>已保存</em>"
|
637 |
-
|
638 |
-
#: wp-to-twitter-manager.php:593
|
639 |
-
msgid "Use Post ID for YOURLS url slug."
|
640 |
-
msgstr "YOURLS采用博文的ID縮短域名。"
|
641 |
-
|
642 |
-
#: wp-to-twitter-manager.php:598
|
643 |
-
msgid "Save YOURLS Account Info"
|
644 |
-
msgstr "保存YOURLS賬戶信息"
|
645 |
-
|
646 |
-
#: wp-to-twitter-manager.php:598
|
647 |
-
msgid "Clear YOURLS password"
|
648 |
-
msgstr "清除YOURLS的密碼"
|
649 |
-
|
650 |
-
#: wp-to-twitter-manager.php:598
|
651 |
-
msgid "A YOURLS password and username is required to shorten URLs via the remote YOURLS API and WP to Twitter."
|
652 |
-
msgstr "當通過YOURLS API縮短URL時,需要YOURLS的用戶名和密碼。"
|
653 |
-
|
654 |
-
#: wp-to-twitter-manager.php:610
|
655 |
-
msgid "Advanced Settings"
|
656 |
-
msgstr "高級設置"
|
657 |
-
|
658 |
-
#: wp-to-twitter-manager.php:617
|
659 |
-
msgid "Advanced Tweet settings"
|
660 |
-
msgstr "高級推文設置"
|
661 |
-
|
662 |
-
#: wp-to-twitter-manager.php:619
|
663 |
-
msgid "Add tags as hashtags on Tweets"
|
664 |
-
msgstr "在推中將Tag添加為hashTags(#)"
|
665 |
-
|
666 |
-
#: wp-to-twitter-manager.php:619
|
667 |
-
msgid "Strip nonalphanumeric characters"
|
668 |
-
msgstr "跳過非阿拉伯字符"
|
669 |
-
|
670 |
-
#: wp-to-twitter-manager.php:620
|
671 |
-
msgid "Spaces replaced with:"
|
672 |
-
msgstr "空格被替換為:"
|
673 |
-
|
674 |
-
#: wp-to-twitter-manager.php:622
|
675 |
-
msgid "Default replacement is an underscore (<code>_</code>). Use <code>[ ]</code> to remove spaces entirely."
|
676 |
-
msgstr "默認替換為下劃線(<code>_</code>)。使用<code>[ ]</code>來刪除日誌中的空格。"
|
677 |
-
|
678 |
-
#: wp-to-twitter-manager.php:625
|
679 |
-
msgid "Maximum number of tags to include:"
|
680 |
-
msgstr "包含Tag的最大數量:"
|
681 |
-
|
682 |
-
#: wp-to-twitter-manager.php:626
|
683 |
-
msgid "Maximum length in characters for included tags:"
|
684 |
-
msgstr "包含Tag的最大長度:"
|
685 |
-
|
686 |
-
#: wp-to-twitter-manager.php:627
|
687 |
-
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."
|
688 |
-
msgstr "這些選項可以讓你限制WP日誌中,Tag的數量和長度。設置<code>0</code>或者留空來顯示所有的標簽。"
|
689 |
-
|
690 |
-
#: wp-to-twitter-manager.php:630
|
691 |
-
msgid "Length of post excerpt (in characters):"
|
692 |
-
msgstr "日誌摘要的長度(以字符計算):"
|
693 |
-
|
694 |
-
#: wp-to-twitter-manager.php:630
|
695 |
-
msgid "By default, extracted from the post itself. If you use the 'Excerpt' field, that will be used instead."
|
696 |
-
msgstr "默認的,將會從日誌內提取,如果你使用了‘摘要’這個自定義域,將會自動替換為你自定義的內容。"
|
697 |
-
|
698 |
-
#: wp-to-twitter-manager.php:633
|
699 |
-
msgid "WP to Twitter Date Formatting:"
|
700 |
-
msgstr "WP to Twitter 日期格式:"
|
701 |
-
|
702 |
-
#: wp-to-twitter-manager.php:634
|
703 |
-
msgid "Default is from your general settings. <a href='http://codex.wordpress.org/Formatting_Date_and_Time'>Date Formatting Documentation</a>."
|
704 |
-
msgstr "默認將會使用通用設置。請參考<a href='http://codex.wordpress.org/Formatting_Date_and_Time'>時間格式文檔</a>。"
|
705 |
-
|
706 |
-
#: wp-to-twitter-manager.php:638
|
707 |
-
msgid "Custom text before all Tweets:"
|
708 |
-
msgstr "每條推前的自定義文字:"
|
709 |
-
|
710 |
-
#: wp-to-twitter-manager.php:639
|
711 |
-
msgid "Custom text after all Tweets:"
|
712 |
-
msgstr "每條推後的自定義文字:"
|
713 |
-
|
714 |
-
#: wp-to-twitter-manager.php:642
|
715 |
-
msgid "Custom field for an alternate URL to be shortened and Tweeted:"
|
716 |
-
msgstr "會替換為短URL並且同步至至Twitter的域的名稱:"
|
717 |
-
|
718 |
-
#: wp-to-twitter-manager.php:643
|
719 |
-
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."
|
720 |
-
msgstr "你可以用自定義字段同步一些其實的鏈接。這裏的值就是那個字段的名稱。"
|
721 |
-
|
722 |
-
#: wp-to-twitter-manager.php:647
|
723 |
-
msgid "Special Cases when WordPress should send a Tweet"
|
724 |
-
msgstr "Wordpress同步博文的條件"
|
725 |
-
|
726 |
-
#: wp-to-twitter-manager.php:650
|
727 |
-
msgid "Do not post status updates by default"
|
728 |
-
msgstr "默認不發表狀態更新"
|
729 |
-
|
730 |
-
#: wp-to-twitter-manager.php:651
|
731 |
-
msgid "By default, all posts meeting other requirements will be posted to Twitter. Check this to change your setting."
|
732 |
-
msgstr "默認情況下,所有的博文滿足其他需求的,會被發表到Twitter。點擊這裏更改設置。"
|
733 |
-
|
734 |
-
#: wp-to-twitter-manager.php:655
|
735 |
-
msgid "Allow status updates from Quick Edit"
|
736 |
-
msgstr "允許在快速編輯中更新狀態"
|
737 |
-
|
738 |
-
#: wp-to-twitter-manager.php:656
|
739 |
-
msgid "If checked, all posts edited individually or in bulk through the Quick Edit feature will be tweeted."
|
740 |
-
msgstr "如果被選中,所有的博文,無論是單獨編輯的,還是通過快速編輯功能批量編輯的,都會被發表到Twitter上。"
|
741 |
-
|
742 |
-
#: wp-to-twitter-manager.php:661
|
743 |
-
msgid "Send Twitter Updates on remote publication (Post by Email or XMLRPC Client)"
|
744 |
-
msgstr "當遠程發布日誌的時候(通過EMail或者XMLRPC客戶端),同步至Twitter"
|
745 |
-
|
746 |
-
#: wp-to-twitter-manager.php:665
|
747 |
-
msgid "Google Analytics Settings"
|
748 |
-
msgstr "Google Analytics設置"
|
749 |
-
|
750 |
-
#: wp-to-twitter-manager.php:666
|
751 |
-
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."
|
752 |
-
msgstr "通過定義一個標識,你可以用Google Analytics跟蹤Twitter的反響。標識包含靜態和動態的兩種:靜態標識這所有博文公用的,不會改變。動態標識依據博文不同而不同。動態標識可以幫助你更細的拆分統計結果。"
|
753 |
-
|
754 |
-
#: wp-to-twitter-manager.php:670
|
755 |
-
msgid "Use a Static Identifier with WP-to-Twitter"
|
756 |
-
msgstr "WP to Twitter使用靜態標識"
|
757 |
-
|
758 |
-
#: wp-to-twitter-manager.php:671
|
759 |
-
msgid "Static Campaign identifier for Google Analytics:"
|
760 |
-
msgstr "Google Analytics的靜態標識符"
|
761 |
-
|
762 |
-
#: wp-to-twitter-manager.php:675
|
763 |
-
msgid "Use a dynamic identifier with Google Analytics and WP-to-Twitter"
|
764 |
-
msgstr "WP to Twitter為Google Analysis使用動態標識"
|
765 |
-
|
766 |
-
#: wp-to-twitter-manager.php:676
|
767 |
-
msgid "What dynamic identifier would you like to use?"
|
768 |
-
msgstr "你想選擇什麽樣的動態標識?"
|
769 |
-
|
770 |
-
#: wp-to-twitter-manager.php:678
|
771 |
-
msgid "Category"
|
772 |
-
msgstr "分類"
|
773 |
-
|
774 |
-
#: wp-to-twitter-manager.php:679
|
775 |
-
msgid "Post ID"
|
776 |
-
msgstr "博文ID"
|
777 |
-
|
778 |
-
#: wp-to-twitter-manager.php:680
|
779 |
-
msgid "Post Title"
|
780 |
-
msgstr "博文標題"
|
781 |
-
|
782 |
-
#: wp-to-twitter-manager.php:681
|
783 |
-
#: wp-to-twitter-manager.php:695
|
784 |
-
msgid "Author"
|
785 |
-
msgstr "作者"
|
786 |
-
|
787 |
-
#: wp-to-twitter-manager.php:686
|
788 |
-
msgid "Individual Authors"
|
789 |
-
msgstr "獨立的作者"
|
790 |
-
|
791 |
-
#: wp-to-twitter-manager.php:689
|
792 |
-
msgid "Authors have individual Twitter accounts"
|
793 |
-
msgstr "作者有獨立的Twitter賬戶"
|
794 |
-
|
795 |
-
#: wp-to-twitter-manager.php:689
|
796 |
-
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.)"
|
797 |
-
msgstr "作者可以在個人設置中設定他們的用戶名。但在2.2.0版本中,已不再允許作者們發布到各自的Twitter上。要添加一個作者,你只能通過添加一個@通知。通過<code>#account#</code>短碼指定@所要放置的位置。(如果沒有指定,會自動選擇用戶的主賬戶。)"
|
798 |
-
|
799 |
-
#: wp-to-twitter-manager.php:692
|
800 |
-
msgid "Choose the lowest user group that can add their Twitter information"
|
801 |
-
msgstr "選擇具有添加Twitter賬戶權限的最低用戶組"
|
802 |
-
|
803 |
-
#: wp-to-twitter-manager.php:693
|
804 |
-
msgid "Subscriber"
|
805 |
-
msgstr "訂閱者"
|
806 |
-
|
807 |
-
#: wp-to-twitter-manager.php:694
|
808 |
-
msgid "Contributor"
|
809 |
-
msgstr "投稿者"
|
810 |
-
|
811 |
-
#: wp-to-twitter-manager.php:696
|
812 |
-
msgid "Editor"
|
813 |
-
msgstr "編輯"
|
814 |
-
|
815 |
-
#: wp-to-twitter-manager.php:697
|
816 |
-
msgid "Administrator"
|
817 |
-
msgstr "管理員"
|
818 |
-
|
819 |
-
#: wp-to-twitter-manager.php:702
|
820 |
-
msgid "Disable Error Messages"
|
821 |
-
msgstr "禁用錯誤信息"
|
822 |
-
|
823 |
-
#: wp-to-twitter-manager.php:705
|
824 |
-
msgid "Disable global URL shortener error messages."
|
825 |
-
msgstr "全局禁用短域名服務的錯誤信息。"
|
826 |
-
|
827 |
-
#: wp-to-twitter-manager.php:709
|
828 |
-
msgid "Disable global Twitter API error messages."
|
829 |
-
msgstr "全局禁用Twitter API的錯誤信息。"
|
830 |
-
|
831 |
-
#: wp-to-twitter-manager.php:713
|
832 |
-
msgid "Disable notification to implement OAuth"
|
833 |
-
msgstr "禁用OAuth請求的通知"
|
834 |
-
|
835 |
-
#: wp-to-twitter-manager.php:717
|
836 |
-
msgid "Get Debugging Data for OAuth Connection"
|
837 |
-
msgstr "OAuth連接的調試信息"
|
838 |
-
|
839 |
-
#: wp-to-twitter-manager.php:721
|
840 |
-
msgid "I made a donation, so stop showing me ads, please. <a href='http://pluginsponsors.com/privacy.html'>PluginSponsors.com Privacy Policy</a>"
|
841 |
-
msgstr "我已經捐贈過,所以請不要再顯示廣告。<a href='http://pluginsponsors.com/privacy.html'>PluginSponsors.com隱私協議</a>"
|
842 |
-
|
843 |
-
#: wp-to-twitter-manager.php:727
|
844 |
-
msgid "Save Advanced WP->Twitter Options"
|
845 |
-
msgstr "保存WP To Twitter的高級選項"
|
846 |
-
|
847 |
-
#: wp-to-twitter-manager.php:737
|
848 |
-
msgid "Limit Updating Categories"
|
849 |
-
msgstr "限制更新分類"
|
850 |
-
|
851 |
-
#: wp-to-twitter-manager.php:741
|
852 |
-
msgid "Select which blog categories will be Tweeted. Uncheck all categories to disable category limits."
|
853 |
-
msgstr "選擇要同步到Twitter的分類"
|
854 |
-
|
855 |
-
#: wp-to-twitter-manager.php:744
|
856 |
-
msgid "<em>Category limits are disabled.</em>"
|
857 |
-
msgstr "<em>分類限制已被禁用。</em>"
|
858 |
-
|
859 |
-
#: wp-to-twitter-manager.php:758
|
860 |
-
msgid "Check Support"
|
861 |
-
msgstr "查看支持"
|
862 |
-
|
863 |
-
#: wp-to-twitter-manager.php:758
|
864 |
-
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."
|
865 |
-
msgstr "測試你的服務器是否支持<a href=\"http://www.joedolson.com/articles/wp-to-twitter/\">WP to Twitter</a>的Twitter同步功能和短域名服務。這項測試會在你的Twitter賬戶中發一條帶短域名的推。"
|
866 |
-
|
867 |
-
#. Plugin URI of the plugin/theme
|
868 |
-
msgid "http://www.joedolson.com/articles/wp-to-twitter/"
|
869 |
-
msgstr "http://www.joedolson.com/articles/wp-to-twitter/"
|
870 |
-
|
871 |
-
#. Description of the plugin/theme
|
872 |
-
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."
|
873 |
-
msgstr "當你發布或更新Wordpress的博文或鏈接時,自動發送一條推到你的Twitter賬戶,支持多種短域名服務。同時還包含了豐富的功能、設置選項。"
|
874 |
-
|
875 |
-
#. Author of the plugin/theme
|
876 |
-
msgid "Joseph Dolson"
|
877 |
-
msgstr "Joseph Dolson"
|
878 |
-
|
879 |
-
#. Author URI of the plugin/theme
|
880 |
-
msgid "http://www.joedolson.com/"
|
881 |
-
msgstr "http://www.joedolson.com/"
|
882 |
-
|
883 |
-
#~ msgid "Twitter Password Saved"
|
884 |
-
#~ msgstr "Twitter密碼已保存"
|
885 |
-
|
886 |
-
#~ msgid "Twitter Password Not Saved"
|
887 |
-
#~ msgstr "Twitter密碼未保存"
|
888 |
-
|
889 |
-
#~ msgid "Bit.ly API Saved"
|
890 |
-
#~ msgstr "Bit.ly API Key 已保存"
|
891 |
-
|
892 |
-
#~ msgid "Bit.ly API Not Saved"
|
893 |
-
#~ msgstr "Bit.ly API Key 未保存"
|
894 |
-
|
895 |
-
#~ msgid ""
|
896 |
-
#~ "Set your Twitter login information and URL shortener API information to "
|
897 |
-
#~ "use this plugin!"
|
898 |
-
#~ msgstr "設置你Twitter的登錄信息還有短URL服務商的API,來使用此插件!"
|
899 |
-
|
900 |
-
#~ msgid "Please add your Twitter password. "
|
901 |
-
#~ msgstr "請填寫你Twitter的密碼。"
|
902 |
-
|
903 |
-
#~ msgid "You need to provide your twitter login and password! "
|
904 |
-
#~ msgstr "你必須提供你的Twitter登錄信息"
|
905 |
-
|
906 |
-
#~ msgid "Cligs API Key Updated"
|
907 |
-
#~ msgstr "Cli.gs API Key 已經更新"
|
908 |
-
|
909 |
-
#~ msgid ""
|
910 |
-
#~ "<li>Successfully contacted the Cli.gs API via Snoopy, but the URL "
|
911 |
-
#~ "creation failed.</li>"
|
912 |
-
#~ msgstr "<li>通過Snoopy連接Cli.gs API成功,但是URL創建失敗。</li>"
|
913 |
-
|
914 |
-
#~ msgid ""
|
915 |
-
#~ "<li>Successfully contacted the Cli.gs API via Snoopy, but a Cli.gs server "
|
916 |
-
#~ "error prevented the URL from being shrotened.</li>"
|
917 |
-
#~ msgstr ""
|
918 |
-
#~ "<li>通過Snoopy連接Cli.gs API成功,但是遠程服務器發生錯誤致使URL沒有被縮"
|
919 |
-
#~ "短。</li>"
|
920 |
-
|
921 |
-
#~ msgid ""
|
922 |
-
#~ "<li>Successfully contacted the Cli.gs API via Snoopy and created a "
|
923 |
-
#~ "shortened link.</li>"
|
924 |
-
#~ msgstr "<li>成功的通過Snoopy連接到Cli.gs的API,並且創建了短URL。</li>"
|
925 |
-
|
926 |
-
#~ msgid "<li>Successfully contacted the Bit.ly API via Snoopy.</li>"
|
927 |
-
#~ msgstr "<li>成功的通過Snoopy連接到Bit.ly的API。</li>"
|
928 |
-
|
929 |
-
#~ msgid "<li>Failed to contact the Bit.ly API via Snoopy.</li>"
|
930 |
-
#~ msgstr "<li>通過Snoopy連接Bit.ly的API失敗。</li>"
|
931 |
-
|
932 |
-
#~ msgid "<li>Cannot check the Bit.ly API without a valid API key.</li>"
|
933 |
-
#~ msgstr "<li>沒有一個有效的API Key,不能訪問Bit.ly的API。</li>"
|
934 |
-
|
935 |
-
#~ msgid "<li>Successfully contacted the Twitter API via Snoopy.</li>"
|
936 |
-
#~ msgstr "<li>通過Snoopy連接到Twitter API成功。</li>"
|
937 |
-
|
938 |
-
#~ msgid "<li>Failed to contact the Twitter API via Snoopy.</li>"
|
939 |
-
#~ msgstr "<li>通過Snoopy連接到Twitter API失敗。</li>"
|
940 |
-
|
941 |
-
#~ msgid "<li>Successfully contacted the Twitter API via cURL.</li>"
|
942 |
-
#~ msgstr "<li>通過cURL連接到Twitter API成功。</li>"
|
943 |
-
|
944 |
-
#~ msgid "<li>Failed to contact the Twitter API via cURL.</li>"
|
945 |
-
#~ msgstr "<li>通過cURL連接到Twitter API失敗。</li>"
|
946 |
-
|
947 |
-
#~ msgid "<li>Successfully contacted the Cli.gs API via Snoopy.</li>"
|
948 |
-
#~ msgstr "<li>通過Snoopy連接Cli.gs API成功。</li>"
|
949 |
-
|
950 |
-
#~ msgid "<li>Failed to contact the Cli.gs API via Snoopy.</li>"
|
951 |
-
#~ msgstr "<li>通過Snoopy連接CLi.gs API失敗。</li>"
|
952 |
-
|
953 |
-
#~ msgid "<li>Your server does not support <code>fputs</code>.</li>"
|
954 |
-
#~ msgstr "<li>你的服務器不支持<code>fputs</code>函數。</li>"
|
955 |
-
|
956 |
-
#~ msgid ""
|
957 |
-
#~ "<li>Your server does not support <code>file_get_contents</code> or "
|
958 |
-
#~ "<code>cURL</code> functions.</li>"
|
959 |
-
#~ msgstr ""
|
960 |
-
#~ "<li>你的服務器不支持<code>file_get_contents</code>或者<code>cURL</code>函"
|
961 |
-
#~ "數。</li>"
|
962 |
-
|
963 |
-
#~ msgid "<li>Your server does not support <code>Snoopy</code>.</li>"
|
964 |
-
#~ msgstr "<li>你的服務器不支持<code>Snoopy</code>函數。</li>"
|
965 |
-
|
966 |
-
#~ msgid ""
|
967 |
-
#~ "This plugin may not fully work in your server environment. The plugin "
|
968 |
-
#~ "failed to contact both a URL shortener API and the Twitter service API."
|
969 |
-
#~ msgstr ""
|
970 |
-
#~ "此插件或許在當前服務器環境下正常工作。當訪問URL縮短功能和Twitter的API時發"
|
971 |
-
#~ "生了錯誤。"
|
972 |
-
|
973 |
-
#~ msgid "Export Settings"
|
974 |
-
#~ msgstr "導出設置"
|
975 |
-
|
976 |
-
#~ msgid ""
|
977 |
-
#~ "For any post update field, you can use the codes <code>#title#</code> for "
|
978 |
-
#~ "the title of your blog post, <code>#blog#</code> for the title of your "
|
979 |
-
#~ "blog, <code>#post#</code> for a short excerpt of the post content, "
|
980 |
-
#~ "<code>#category#</code> for the first selected category for the post, "
|
981 |
-
#~ "<code>#date#</code> for the post date, or <code>#url#</code> for the post "
|
982 |
-
#~ "URL (shortened or not, depending on your preferences.) You can also "
|
983 |
-
#~ "create custom shortcodes to access WordPress custom fields. Use doubled "
|
984 |
-
#~ "square brackets surrounding the name of your custom field to add the "
|
985 |
-
#~ "value of that custom field to your status update. Example: <code>"
|
986 |
-
#~ "[[custom_field]]</code>"
|
987 |
-
#~ msgstr ""
|
988 |
-
#~ "在任何一個日誌的更新區域,你可以使用<code>#title#</code>來代替日誌標題,"
|
989 |
-
#~ "<code>#blog#</code>代替博客標題,<code>#post#</code>代替日誌內容的一個摘"
|
990 |
-
#~ "要,<code>#category#</code>來代替第一個被選中的分類,<code>#date#</code>代"
|
991 |
-
#~ "替日誌發布的日期,<code>#url#</code>代替日誌發布的URL(將會根據你的設置顯"
|
992 |
-
#~ "示長、短鏈接)。你也可以使用自定義的快捷代碼來顯示日誌中自定義與的內容。例"
|
993 |
-
#~ "如:<code>[[custom_field]]</code>這樣。"
|
994 |
-
|
995 |
-
#~ msgid "Set what should be in a Tweet"
|
996 |
-
#~ msgstr "設置推中應該有什麽"
|
997 |
-
|
998 |
-
#~ msgid "Update when a post is published"
|
999 |
-
#~ msgstr "當日誌發布的時候同步至Twitter"
|
1000 |
-
|
1001 |
-
#~ msgid "Update when a post is edited"
|
1002 |
-
#~ msgstr "當日誌修改的時候同步Twitter"
|
1003 |
-
|
1004 |
-
#~ msgid "Text for editing updates:"
|
1005 |
-
#~ msgstr "修改日誌時,推的內容:"
|
1006 |
-
|
1007 |
-
#~ msgid "Text for new page updates:"
|
1008 |
-
#~ msgstr "添加新頁面時,推的內容:"
|
1009 |
-
|
1010 |
-
#~ msgid "Update Twitter when WordPress Pages are edited"
|
1011 |
-
#~ msgstr "當修改靜態頁面是同步至Twitter"
|
1012 |
-
|
1013 |
-
#~ msgid "Text for page edit updates:"
|
1014 |
-
#~ msgstr "修改頁面時,推的內容:"
|
1015 |
-
|
1016 |
-
#~ msgid "Set default Tweet status to 'No.'"
|
1017 |
-
#~ msgstr "設置默認的推狀態為'否'。"
|
1018 |
-
|
1019 |
-
#~ msgid ""
|
1020 |
-
#~ "Twitter updates can be set on a post by post basis. By default, posts "
|
1021 |
-
#~ "WILL be posted to Twitter. Check this to change the default to NO."
|
1022 |
-
#~ msgstr ""
|
1023 |
-
#~ "可以設置當發布新日誌的時候自動同步至Twitter。默認情況下,日誌將會自動被發"
|
1024 |
-
#~ "送至Twitter。檢查這個是否設置為'否'。"
|
1025 |
-
|
1026 |
-
#~ msgid "Update Twitter when a post is published using QuickPress"
|
1027 |
-
#~ msgstr "當使用QuickPress功能發布新日誌時,同步至Twitter"
|
1028 |
-
|
1029 |
-
#~ msgid "Special Fields"
|
1030 |
-
#~ msgstr "特殊的域"
|
1031 |
-
|
1032 |
-
#~ msgid ""
|
1033 |
-
#~ "You can track the response from Twitter using Google Analytics by "
|
1034 |
-
#~ "defining a campaign identifier here."
|
1035 |
-
#~ msgstr "你可以給Google Analytics定義Campaign標識符來追蹤Twitter上的響應。"
|
1036 |
-
|
1037 |
-
#~ msgid ""
|
1038 |
-
#~ "Each author can set their own Twitter username and password in their user "
|
1039 |
-
#~ "profile. Their posts will be sent to their own Twitter accounts."
|
1040 |
-
#~ msgstr ""
|
1041 |
-
#~ "每一個作者可以設置自己獨立的Twitter賬戶信息。他們的日誌將會同步至到他們自"
|
1042 |
-
#~ "己的Twitter帳號中。"
|
1043 |
-
|
1044 |
-
#~ msgid "Set your preferred URL Shortener"
|
1045 |
-
#~ msgstr "設置你喜歡的URL縮短服務商"
|
1046 |
-
|
1047 |
-
#~ msgid "Your Twitter account details"
|
1048 |
-
#~ msgstr "你Twitter賬戶的細節"
|
1049 |
-
|
1050 |
-
#~ msgid "Save Twitter Login Info"
|
1051 |
-
#~ msgstr "保存Twitter登錄信息"
|
1052 |
-
|
1053 |
-
#~ msgid ""
|
1054 |
-
#~ "» <small>Don't have a Twitter account? <a href='http://www.twitter."
|
1055 |
-
#~ "com'>Get one for free here</a>"
|
1056 |
-
#~ msgstr ""
|
1057 |
-
#~ "» <small>還沒有Twitter賬戶? 快來<a href='http://www.twitter.com'>這"
|
1058 |
-
#~ "裏</a>免費獲取一個吧。"
|
1059 |
-
|
1060 |
-
#~ msgid ""
|
1061 |
-
#~ "Check whether your server supports WP to Twitter's queries to the Twitter "
|
1062 |
-
#~ "and URL shortening APIs."
|
1063 |
-
#~ msgstr "檢查你的服務器是否支持WP to Twitter請求Twitter和短URL功能的API。"
|
1064 |
-
|
1065 |
-
#~ msgid "Need help?"
|
1066 |
-
#~ msgstr "需要幫助?"
|
1067 |
-
|
1068 |
-
#~ msgid ""
|
1069 |
-
#~ "Visit the <a href='http://www.joedolson.com/articles/wp-to-twitter/'>WP "
|
1070 |
-
#~ "to Twitter plugin page</a>."
|
1071 |
-
#~ msgstr ""
|
1072 |
-
#~ "訪問<a href='http://www.joedolson.com/articles/wp-to-twitter/'>WP to "
|
1073 |
-
#~ "Twitter 插件的主頁</a>."
|
1074 |
-
|
1075 |
-
#~ msgid ""
|
1076 |
-
#~ " characters.<br />Twitter posts are a maximum of 140 characters; if your "
|
1077 |
-
#~ "Cli.gs URL is appended to the end of your document, you have 119 "
|
1078 |
-
#~ "characters available. You can use <code>#url#</code>, <code>#title#</"
|
1079 |
-
#~ "code>, <code>#post#</code>, <code>#category#</code>, <code>#date#</code>, "
|
1080 |
-
#~ "or <code>#blog#</code> to insert the shortened URL, post title, the first "
|
1081 |
-
#~ "category selected, the post date, or a post excerpt or blog name into the "
|
1082 |
-
#~ "Tweet."
|
1083 |
-
#~ msgstr ""
|
1084 |
-
#~ " 字符。<br />推不能超過140個字符;當Cli.gs的短URL在最後時,你還剩119個字。"
|
1085 |
-
#~ "你可以在推中使用<code>#url#</code>,<code>#title#</code>,<code>#post#</"
|
1086 |
-
#~ "code>,<code>#date#</code>或者<code>#blog#</code>來插入一個短URL,日誌標"
|
1087 |
-
#~ "題,第一個分類,發布日期,日誌摘要或者Blog名稱。"
|
1088 |
-
|
1089 |
-
#~ msgid "Use My Twitter Account"
|
1090 |
-
#~ msgstr "使用我的Twitter賬戶"
|
1091 |
-
|
1092 |
-
#~ msgid ""
|
1093 |
-
#~ "Select this option if you would like your posts to be Tweeted into your "
|
1094 |
-
#~ "own Twitter account with no @ references."
|
1095 |
-
#~ msgstr ""
|
1096 |
-
#~ "如果你想同步日誌到Twitter,但不使用@通知任何人,那快來選中這個選項吧。"
|
1097 |
-
|
1098 |
-
#~ msgid ""
|
1099 |
-
#~ "Tweet my posts into the main site Twitter account with an @ reference to "
|
1100 |
-
#~ "my username. (Password not required with this option.)"
|
1101 |
-
#~ msgstr ""
|
1102 |
-
#~ "同步日誌使用Blog的主Twitter賬戶,並且使用@通知我自己的賬戶(不需要提供密"
|
1103 |
-
#~ "碼)。"
|
1104 |
-
|
1105 |
-
#~ msgid "Your Twitter Password"
|
1106 |
-
#~ msgstr "你的Twitter密碼"
|
1107 |
-
|
1108 |
-
#~ msgid "Enter your own Twitter password."
|
1109 |
-
#~ msgstr "輸入你的Twitter密碼。"
|
1110 |
-
|
1111 |
-
#~ msgid ""
|
1112 |
-
#~ "Updates Twitter when you create a new blog post or add to your blogroll "
|
1113 |
-
#~ "using Cli.gs. With a Cli.gs API key, creates a clig in your Cli.gs "
|
1114 |
-
#~ "account with the name of your post as the title."
|
1115 |
-
#~ msgstr ""
|
1116 |
-
#~ "當你發布新日誌或者添加新鏈接的時候,使用Cli.gs縮短鏈接,並且同步至"
|
1117 |
-
#~ "Twitter。使用一個Cli.gs API Key,可以使用日誌名作為標題來創建一個Cli.gs短"
|
1118 |
-
#~ "鏈接。"
|
1119 |
-
|
1120 |
-
#~ msgid ""
|
1121 |
-
#~ "The query to the URL shortener API failed, and your URL was not shrunk. "
|
1122 |
-
#~ "The full post URL was attached to your Tweet."
|
1123 |
-
#~ msgstr ""
|
1124 |
-
#~ "Die Verbindung zum URL Kürzer API schlug fehl und deine URL wurde nicht "
|
1125 |
-
#~ "verkürzt. Es wurde die normale URL wurde im Tweet veröffentlicht."
|
1126 |
-
|
1127 |
-
#~ msgid "Add_new_tag"
|
1128 |
-
#~ msgstr "Tag_hinzufügen"
|
1129 |
-
|
1130 |
-
#~ msgid "This plugin may not work in your server environment."
|
1131 |
-
#~ msgstr ""
|
1132 |
-
#~ "Dieses Plugin funktioniert vielleicht nicht in deiner Server Umgebung."
|
1133 |
-
|
1134 |
-
#~ msgid "Wordpress to Twitter Publishing Options"
|
1135 |
-
#~ msgstr "Wordpress to Twitter Veröffentlichungs-Optionen"
|
1136 |
-
|
1137 |
-
#~ msgid "Provide link to blog?"
|
1138 |
-
#~ msgstr "Link zum Blog hinzufügen?"
|
1139 |
-
|
1140 |
-
#~ msgid "Use <strong>link title</strong> for Twitter updates"
|
1141 |
-
#~ msgstr ""
|
1142 |
-
#~ "Verwende den <strong>Link Namen</strong> für Twitter Aktualisierungen"
|
1143 |
-
|
1144 |
-
#~ msgid "Use <strong>link description</strong> for Twitter updates"
|
1145 |
-
#~ msgstr ""
|
1146 |
-
#~ "Verwende die <strong>Link Beschreibung</strong> für Twitter "
|
1147 |
-
#~ "Aktualisierungen"
|
1148 |
-
|
1149 |
-
#~ msgid ""
|
1150 |
-
#~ "Text for new link updates (used if title/description isn't available.):"
|
1151 |
-
#~ msgstr ""
|
1152 |
-
#~ "Text für neuen Link (wenn kein Namen oder Beschreibung vorhanden sind.):"
|
1153 |
-
|
1154 |
-
#~ msgid "Custom text prepended to Tweets:"
|
1155 |
-
#~ msgstr "Eigener Text zu Beginn des Tweets:"
|
1156 |
-
|
1157 |
-
#~ msgid ""
|
1158 |
-
#~ "Your server appears to support the required PHP functions and classes for "
|
1159 |
-
#~ "WP to Twitter to function."
|
1160 |
-
#~ msgstr ""
|
1161 |
-
#~ "Es scheint als würde dein Server die benötigten PHP Funktion und Klassen "
|
1162 |
-
#~ "für WP to Twitter bereitstellen."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 Tweet 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.
|
7 |
Author: Joseph Dolson
|
8 |
Author URI: http://www.joedolson.com/
|
9 |
*/
|
@@ -23,47 +23,57 @@ Author URI: http://www.joedolson.com/
|
|
23 |
along with this program; if not, write to the Free Software
|
24 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
25 |
*/
|
26 |
-
|
|
|
|
|
|
|
27 |
$wp_content_url = str_replace( 'http://' , 'https://' , get_option( 'siteurl' ) );
|
28 |
} else {
|
29 |
$wp_content_url = get_option( 'siteurl' );
|
30 |
}
|
31 |
-
$wp_content_url
|
32 |
-
$wp_content_dir =
|
|
|
|
|
33 |
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
$wp_plugin_url =
|
41 |
include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); // required in order to access is_plugin_active()
|
42 |
|
43 |
if ( version_compare( phpversion(), '5.0', '<' ) ) {
|
44 |
$warning = __('WP to Twitter requires PHP version 5 or above. Please upgrade PHP to run WP to Twitter.','wp-to-twitter' );
|
45 |
add_action('admin_notices', create_function( '', "echo \"<div class='error'><p>$warning</p></div>\";" ) );
|
46 |
} else {
|
47 |
-
require_once(
|
48 |
}
|
49 |
-
require_once(
|
50 |
-
|
51 |
-
require_once(
|
52 |
|
53 |
-
global $
|
54 |
-
$wpt_version = "2.
|
55 |
$plugin_dir = basename(dirname(__FILE__));
|
56 |
-
load_plugin_textdomain( 'wp-to-twitter', false, dirname( plugin_basename( __FILE__ ) ) );
|
57 |
|
58 |
-
|
59 |
-
|
|
|
|
|
|
|
|
|
|
|
60 |
|
61 |
$jd_plugin_url = "http://www.joedolson.com/articles/wp-to-twitter/";
|
62 |
$jd_donate_url = "http://www.joedolson.com/articles/wp-tweets-pro/";
|
63 |
|
64 |
function wpt_marginal_function() {
|
65 |
global $wp_version;
|
66 |
-
$exit_msg=__('WP to Twitter requires WordPress
|
67 |
if ( version_compare( $wp_version,"3.0.6","<" ) ) {
|
68 |
if ( is_admin() ) {
|
69 |
echo "<div class='error'><p>".($exit_msg)."</p></div>";
|
@@ -173,7 +183,7 @@ $upgrade = version_compare( $prev_version, "2.3.15","<" );
|
|
173 |
}
|
174 |
delete_option( 'use_tags_as_hashtags' );
|
175 |
}
|
176 |
-
$upgrade = version_compare( $prev_version, "2.4.0","<" );
|
177 |
if ( $upgrade ) {
|
178 |
$perms = get_option('wtt_user_permissions');
|
179 |
switch( $perms ) {
|
@@ -186,40 +196,54 @@ $upgrade = version_compare( $prev_version, "2.4.0","<" );
|
|
186 |
}
|
187 |
update_option( 'wtt_user_permissions',$update );
|
188 |
}
|
189 |
-
$upgrade = version_compare( $prev_version, "2.4.1","<" );
|
190 |
-
$
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
$role
|
208 |
-
|
209 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
210 |
}
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
break;
|
223 |
}
|
224 |
update_option( 'wp_to_twitter_version',$wpt_version );
|
225 |
}
|
@@ -235,24 +259,61 @@ function external_or_permalink( $post_ID ) {
|
|
235 |
return ( $ex_link ) ? $ex_link : $permalink;
|
236 |
}
|
237 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
238 |
// This function performs the API post to Twitter
|
239 |
-
function jd_doTwitterAPIPost( $twit, $auth=false ) {
|
240 |
// prevent duplicate Tweets
|
241 |
-
if ( !wpt_check_oauth( $auth ) ) {
|
242 |
-
|
|
|
|
|
243 |
$check = ( !$auth )?get_option('jd_last_tweet'):get_user_meta( $auth, 'wpt_last_tweet', true ); // get user's last tweet
|
244 |
-
if ( $check == $twit
|
|
|
|
|
|
|
|
|
245 |
return true;
|
|
|
|
|
|
|
|
|
|
|
|
|
246 |
} else {
|
247 |
-
|
|
|
|
|
248 |
if ( wtt_oauth_test( $auth ) && ( $connection = wtt_oauth_connection( $auth ) ) ) {
|
249 |
-
|
250 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
251 |
} else if ( wtt_oauth_test( false ) && ( $connection = wtt_oauth_connection( false ) ) ) {
|
252 |
-
$connection->post( $jdwp_api_post_status, array( 'status' => $twit, 'source' => 'wp-to-twitter' ) );
|
253 |
-
$http_code = ($connection)?$connection->http_code:'failed';
|
254 |
}
|
255 |
if ( $connection ) {
|
|
|
256 |
switch ($http_code) {
|
257 |
case '200':
|
258 |
$return = true;
|
@@ -272,27 +333,55 @@ function jd_doTwitterAPIPost( $twit, $auth=false ) {
|
|
272 |
$return = false;
|
273 |
$error = __("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 can include: Too many Tweets created in a short time or the same Tweet was submitted twice in a row, among others. This is not an error by WP to Twitter.",'wp-to-twitter');
|
274 |
break;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
275 |
case '500':
|
276 |
$return = false;
|
277 |
$error = __("500 Internal Server Error: Something is broken at Twitter.",'wp-to-twitter');
|
278 |
break;
|
|
|
|
|
|
|
|
|
279 |
case '503':
|
280 |
$return = false;
|
281 |
$error = __("503 Service Unavailable: The Twitter servers are up, but overloaded with requests - Please try again later.",'wp-to-twitter');
|
282 |
break;
|
283 |
-
case '
|
284 |
$return = false;
|
285 |
-
$error = __("
|
286 |
break;
|
287 |
default:
|
288 |
$return = false;
|
289 |
$error = __("<strong>Code $http_code</strong>: Twitter did not return a recognized response code.",'wp-to-twitter');
|
290 |
break;
|
291 |
}
|
|
|
292 |
// debugging
|
293 |
-
|
|
|
|
|
294 |
// end debugging
|
295 |
$update = ( !$auth )?update_option( 'jd_last_tweet',$twit ):update_user_meta( $auth, 'wpt_last_tweet',$twit );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
296 |
if ( !$return ) {
|
297 |
update_option( 'jd_status_message',$error );
|
298 |
} else {
|
@@ -306,82 +395,132 @@ function jd_doTwitterAPIPost( $twit, $auth=false ) {
|
|
306 |
}
|
307 |
|
308 |
function fake_normalize( $string ) {
|
309 |
-
if ( version_compare( PHP_VERSION, '5.0.0', '>=' ) && function_exists('normalizer_normalize') ) {
|
310 |
if ( normalizer_is_normalized( $string ) ) { return $string; }
|
311 |
return normalizer_normalize( $string );
|
312 |
} else {
|
313 |
-
return preg_replace( '~&([a-z]{1,2})(acute|cedil|circ|grave|lig|orn|ring|slash|th|tilde|uml|mp);~i', '$1', htmlentities( $string,
|
314 |
}
|
315 |
}
|
316 |
|
317 |
-
function
|
318 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
319 |
// generate all template variable values
|
320 |
$auth = $postinfo['authId'];
|
321 |
-
$
|
322 |
-
$
|
323 |
-
$
|
324 |
-
$thisposturl = trim($
|
325 |
-
$
|
326 |
$post = get_post( $post_ID );
|
327 |
-
|
328 |
-
$
|
329 |
-
$
|
330 |
-
$
|
331 |
-
$
|
|
|
|
|
332 |
if ( get_option( 'jd_individual_twitter_users' ) == 1 ) {
|
333 |
-
if (
|
334 |
if ( get_user_meta( $auth, 'wp-to-twitter-enable-user',true ) == 'mainAtTwitter' ) {
|
335 |
-
$
|
336 |
} else if ( get_user_meta( $auth, 'wp-to-twitter-enable-user',true ) == 'mainAtTwitterPlus' ) {
|
337 |
-
$
|
338 |
}
|
|
|
|
|
339 |
}
|
340 |
}
|
341 |
-
if (
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
}
|
348 |
}
|
349 |
$encoding = get_option('blog_charset');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
350 |
// create full unconditional post sentence - prior to truncation
|
351 |
-
$post_sentence = str_ireplace( '#account#', $
|
|
|
|
|
|
|
|
|
|
|
352 |
$post_sentence = str_ireplace( '#url#', $thisposturl, $post_sentence );
|
353 |
-
$post_sentence = str_ireplace( '#title#', $
|
354 |
-
$post_sentence = str_ireplace( '#blog#',$
|
355 |
-
$post_sentence = str_ireplace( '#post#',$
|
356 |
-
$post_sentence = str_ireplace( '#category#',$
|
357 |
-
$post_sentence = str_ireplace( '#date#', $
|
358 |
-
$post_sentence = str_ireplace( '#author#', $
|
359 |
-
$post_sentence = str_ireplace( '#
|
360 |
-
$post_sentence = str_ireplace( '#
|
361 |
-
|
362 |
$url_strlen = mb_strlen( urldecode( fake_normalize( $thisposturl ) ), $encoding );
|
363 |
// check total length
|
364 |
$str_length = mb_strlen( urldecode( fake_normalize( $post_sentence ) ), $encoding );
|
365 |
if ( $str_length < 140 ) {
|
366 |
-
if ( mb_strlen( fake_normalize ( $post_sentence ) ) > 140 ) { $post_sentence = mb_substr( $post_sentence,0,139,$encoding ); }
|
|
|
367 |
} else {
|
368 |
-
|
369 |
// what is the excerpt supposed to be?
|
370 |
$length = get_option( 'jd_post_excerpt' );
|
371 |
// build an array of variable names and the number of characters in that variable.
|
372 |
$length_array = array();
|
373 |
-
$length_array['excerpt'] = mb_strlen(fake_normalize($
|
374 |
-
$length_array['title'] = mb_strlen(fake_normalize($
|
375 |
-
$length_array['date'] = mb_strlen(fake_normalize($
|
376 |
-
$length_array['category'] = mb_strlen(fake_normalize($
|
377 |
-
$length_array['blogname'] = mb_strlen(fake_normalize($
|
378 |
-
$length_array['author'] = mb_strlen(fake_normalize($
|
379 |
-
$length_array['account'] = mb_strlen(fake_normalize($
|
380 |
-
|
|
|
|
|
|
|
|
|
381 |
// if the total length is too long, truncate items until the length is appropriate.
|
382 |
// truncation is in order of items which can most afford to be truncated. URL is never truncated.
|
383 |
// Twitter has made their t.co shortener automatic and mandatory; this has some weird effects on
|
384 |
-
// character counting
|
|
|
|
|
|
|
|
|
|
|
|
|
385 |
$order = get_option( 'wpt_truncation_order' );
|
386 |
if ( is_array( $order ) ) {
|
387 |
asort($order);
|
@@ -392,7 +531,7 @@ function jd_truncate_tweet( $sentence, $postinfo, $thisposturl, $post_ID, $retwe
|
|
392 |
} else {
|
393 |
$preferred = $length_array;
|
394 |
}
|
395 |
-
$diff = $url_strlen -
|
396 |
if ( $str_length > ( 140 + $diff ) ) {
|
397 |
foreach($preferred AS $key=>$value) {
|
398 |
$str_length = mb_strlen( urldecode( fake_normalize( trim( $post_sentence ) ) ),$encoding );
|
@@ -402,12 +541,19 @@ function jd_truncate_tweet( $sentence, $postinfo, $thisposturl, $post_ID, $retwe
|
|
402 |
// prevent URL from being modified
|
403 |
$post_sentence = str_ireplace( $thisposturl, '#url#', $post_sentence );
|
404 |
// modify the value and replace old with new
|
405 |
-
if ( $key == 'account' || $key == 'author' || $key == 'category' || $key == 'date' ) {
|
406 |
-
|
407 |
$new_value = '';
|
408 |
} else if ( $key == 'tags' ) {
|
409 |
-
|
410 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
411 |
} else {
|
412 |
$new_value = mb_substr( $old_value,0,-( $trim ),$encoding );
|
413 |
}
|
@@ -420,241 +566,62 @@ function jd_truncate_tweet( $sentence, $postinfo, $thisposturl, $post_ID, $retwe
|
|
420 |
}
|
421 |
}
|
422 |
// this is needed in case a tweet needs to be truncated outright and the truncation values aren't in the above.
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
$suprlogin = trim ( get_option( 'suprlogin' ) );
|
432 |
-
$bitlyapi = trim ( get_option( 'bitlyapi' ) );
|
433 |
-
$bitlylogin = trim ( strtolower( get_option( 'bitlylogin' ) ) );
|
434 |
-
$yourlslogin = trim ( get_option( 'yourlslogin') );
|
435 |
-
$yourlsapi = stripcslashes( get_option( 'yourlsapi' ) );
|
436 |
-
if ($testmode == 'false') {
|
437 |
-
if ( get_option('use-twitter-analytics') == 1 || get_option('use_dynamic_analytics') == 1 ) {
|
438 |
-
if ( get_option('use_dynamic_analytics') == '1' ) {
|
439 |
-
$campaign_type = get_option('jd_dynamic_analytics');
|
440 |
-
if ($campaign_type == "post_category" && $testmode != 'link' ) {
|
441 |
-
$category = get_the_category( $post_ID );
|
442 |
-
$campaign = $category[0]->cat_name;
|
443 |
-
} else if ($campaign_type == "post_ID") {
|
444 |
-
$campaign = $post_ID;
|
445 |
-
} else if ($campaign_type == "post_title" && $testmode != 'link' ) {
|
446 |
-
$post = get_post( $post_ID );
|
447 |
-
$campaign = $post->post_title;
|
448 |
-
} else {
|
449 |
-
if ( $testmode != 'link' ) {
|
450 |
-
$post = get_post( $post_ID );
|
451 |
-
$post_author = $post->post_author;
|
452 |
-
$campaign = get_the_author_meta( 'user_login',$post_author );
|
453 |
-
} else {
|
454 |
-
$post_author = '';
|
455 |
-
$campaign = '';
|
456 |
-
}
|
457 |
-
}
|
458 |
-
} else {
|
459 |
-
$campaign = get_option('twitter-analytics-campaign');
|
460 |
-
}
|
461 |
-
$campaign = urlencode($campaign);
|
462 |
-
if ( strpos( $thispostlink,"%3F" ) === FALSE || strpos( $thispostlink,"?" ) === FALSE ) {
|
463 |
-
$thispostlink .= "?";
|
464 |
-
} else {
|
465 |
-
$thispostlink .= "&";
|
466 |
-
}
|
467 |
-
$thispostlink .= "utm_campaign=$campaign&utm_medium=twitter&utm_source=twitter";
|
468 |
-
}
|
469 |
-
}
|
470 |
-
$thispostlink = urldecode(trim($thispostlink));
|
471 |
-
$thispostlink = urlencode($thispostlink);
|
472 |
-
|
473 |
-
// custom word setting
|
474 |
-
$keyword_format = ( get_option( 'jd_keyword_format' ) == '1' )?$post_ID:'';
|
475 |
-
$keyword_format = ( get_option( 'jd_keyword_format' ) == '2' )?get_post_meta( $post_ID,'_yourls_keyword',true ):$keyword_format;
|
476 |
-
// Generate and grab the short url
|
477 |
-
switch ( get_option( 'jd_shortener' ) ) {
|
478 |
-
case 0:
|
479 |
-
case 1:
|
480 |
-
$shrink = urldecode($thispostlink);
|
481 |
-
break;
|
482 |
-
case 2: // updated to v3 3/31/2010
|
483 |
-
$decoded = jd_remote_json( "http://api.bit.ly/v3/shorten?longUrl=".$thispostlink."&login=".$bitlylogin."&apiKey=".$bitlyapi."&format=json" );
|
484 |
-
$error = '';
|
485 |
-
if ($decoded) {
|
486 |
-
if ($decoded['status_code'] != 200) {
|
487 |
-
$shrink = $decoded;
|
488 |
-
$error = $decoded['status_txt'];
|
489 |
-
} else {
|
490 |
-
$shrink = $decoded['data']['url'];
|
491 |
-
}
|
492 |
-
} else {
|
493 |
-
$shrink = false;
|
494 |
-
update_option( 'wp_bitly_error',"JSON result could not be decoded");
|
495 |
-
}
|
496 |
-
if ( !is_valid_url($shrink) ) { $shrink = false; update_option( 'wp_bitly_error',$error ); }
|
497 |
-
break;
|
498 |
-
case 3:
|
499 |
-
$shrink = urldecode($thispostlink);
|
500 |
-
break;
|
501 |
-
case 4:
|
502 |
-
if ( $testmode == 'link' ) {
|
503 |
-
$shrink = urldecode($thispostlink);
|
504 |
-
} else {
|
505 |
-
if ( function_exists( 'wp_get_shortlink' ) ) {
|
506 |
-
$shrink = wp_get_shortlink();
|
507 |
-
if ( !$shrink ) { $shrink = home_url( '?p=' . $post_ID ); }
|
508 |
-
} else {
|
509 |
-
$shrink = home_url( '?p=' . $post_ID );
|
510 |
-
}
|
511 |
-
}
|
512 |
-
break;
|
513 |
-
case 5:
|
514 |
-
// local YOURLS installation
|
515 |
-
$thispostlink = urldecode($thispostlink);
|
516 |
-
global $yourls_reserved_URL;
|
517 |
-
define('YOURLS_INSTALLING', true); // Pretend we're installing YOURLS to bypass test for install or upgrade
|
518 |
-
define('YOURLS_FLOOD_DELAY_SECONDS', 0); // Disable flood check
|
519 |
-
$opath = get_option( 'yourlspath' );
|
520 |
-
$ypath = str_replace( 'user','includes', $opath );
|
521 |
-
if ( file_exists( dirname( $ypath ).'/load-yourls.php' ) ) { // YOURLS 1.4+
|
522 |
-
global $ydb;
|
523 |
-
require_once( dirname( $ypath ).'/load-yourls.php' );
|
524 |
-
if ( function_exists( 'yourls_add_new_link' ) ) {
|
525 |
-
$yourls_result = yourls_add_new_link( $thispostlink, $keyword_format );
|
526 |
-
} else {
|
527 |
-
$yourls_result = $thispostlink;
|
528 |
-
}
|
529 |
-
} else { // YOURLS 1.3
|
530 |
-
require_once( get_option( 'yourlspath' ) );
|
531 |
-
$yourls_db = new wpdb( YOURLS_DB_USER, YOURLS_DB_PASS, YOURLS_DB_NAME, YOURLS_DB_HOST );
|
532 |
-
$yourls_result = yourls_add_new_link( $thispostlink, $keyword_format, $yourls_db );
|
533 |
-
}
|
534 |
-
if ($yourls_result) {
|
535 |
-
$shrink = $yourls_result['shorturl'];
|
536 |
} else {
|
537 |
-
$
|
538 |
-
}
|
539 |
-
break;
|
540 |
-
case 6:
|
541 |
-
// remote YOURLS installation
|
542 |
-
$api_url = sprintf( get_option('yourlsurl') . '?username=%s&password=%s&url=%s&format=json&action=shorturl&keyword=%s',
|
543 |
-
$yourlslogin, $yourlsapi, $thispostlink, $keyword_format );
|
544 |
-
$json = jd_remote_json( $api_url, false );
|
545 |
-
if ($json) {
|
546 |
-
$shrink = $json->shorturl;
|
547 |
-
} else {
|
548 |
-
$shrink = false;
|
549 |
-
}
|
550 |
-
break;
|
551 |
-
case 7:
|
552 |
-
if ( $suprapi != '') {
|
553 |
-
$decoded = jd_remote_json( "http://su.pr/api/shorten?longUrl=".$thispostlink."&login=".$suprlogin."&apiKey=".$suprapi );
|
554 |
-
} else {
|
555 |
-
$decoded = jd_remote_json( "http://su.pr/api/shorten?longUrl=".$thispostlink );
|
556 |
-
}
|
557 |
-
update_option( 'wp_supr_error',"Su.pr API result: $decoded" );
|
558 |
-
if ($decoded['statusCode'] == 'OK') {
|
559 |
-
$page = urldecode($thispostlink);
|
560 |
-
$shrink = $decoded['results'][$page]['shortUrl'];
|
561 |
-
$error = $decode['errorMessage'];
|
562 |
-
} else {
|
563 |
-
$shrink = false;
|
564 |
-
$error = $decode['errorMessage'];
|
565 |
-
update_option( 'wp_supr_error',"JSON result could not be decoded");
|
566 |
-
}
|
567 |
-
if ( !is_valid_url($shrink) ) { $shrink = false; update_option( 'wp_supr_error',$error ); }
|
568 |
-
break;
|
569 |
-
case 8:
|
570 |
-
// Goo.gl
|
571 |
-
$url = "https://www.googleapis.com/urlshortener/v1/url?key=AIzaSyBSnqQOg3vX1gwR7y2l-40yEG9SZiaYPUQ";
|
572 |
-
$link = urldecode($thispostlink);
|
573 |
-
$body = "{'longUrl':'$link'}";
|
574 |
-
//$body = json_encode($data);
|
575 |
-
$json = jd_fetch_url( $url, 'POST', $body, 'Content-Type: application/json' );
|
576 |
-
$decoded = json_decode($json);
|
577 |
-
//$url = $decoded['id'];
|
578 |
-
$shrink = $decoded->id;
|
579 |
-
if ( !is_valid_url($shrink) ) { $shrink = false; }
|
580 |
-
break;
|
581 |
-
}
|
582 |
-
if ($testmode != 'true') {
|
583 |
-
if ( $shrink === false || ( stristr( $shrink, "http://" ) === FALSE )) {
|
584 |
-
update_option( 'wp_url_failure','1' );
|
585 |
-
$shrink = urldecode( $thispostlink );
|
586 |
-
} else {
|
587 |
-
update_option( 'wp_url_failure','0' );
|
588 |
}
|
|
|
|
|
|
|
589 |
}
|
590 |
-
return $shrink;
|
591 |
-
}
|
592 |
-
|
593 |
-
function jd_expand_url( $short_url ) {
|
594 |
-
$short_url = urlencode( $short_url );
|
595 |
-
$decoded = jd_remote_json("http://api.longurl.org/v2/expand?format=json&url=" . $short_url );
|
596 |
-
$url = $decoded['long-url'];
|
597 |
-
return $url;
|
598 |
-
//return $short_url;
|
599 |
-
}
|
600 |
-
function jd_expand_yourl( $short_url, $remote ) {
|
601 |
-
if ( $remote == 6 ) {
|
602 |
-
$short_url = urlencode( $short_url );
|
603 |
-
$yourl_api = get_option( 'yourlsurl' );
|
604 |
-
$user = get_option( 'yourlslogin' );
|
605 |
-
$pass = stripcslashes( get_option( 'yourlsapi' ) );
|
606 |
-
$decoded = jd_remote_json( $yourl_api . "?action=expand&shorturl=$short_url&format=json&username=$user&password=$pass" );
|
607 |
-
$url = $decoded['longurl'];
|
608 |
-
return $url;
|
609 |
-
} else {
|
610 |
-
global $yourls_reserved_URL;
|
611 |
-
define('YOURLS_INSTALLING', true); // Pretend we're installing YOURLS to bypass test for install or upgrade
|
612 |
-
define('YOURLS_FLOOD_DELAY_SECONDS', 0); // Disable flood check
|
613 |
-
if ( file_exists( dirname( get_option( 'yourlspath' ) ).'/load-yourls.php' ) ) { // YOURLS 1.4
|
614 |
-
global $ydb;
|
615 |
-
require_once( dirname( get_option( 'yourlspath' ) ).'/load-yourls.php' );
|
616 |
-
$yourls_result = yourls_api_expand( $short_url );
|
617 |
-
} else { // YOURLS 1.3
|
618 |
-
require_once( get_option( 'yourlspath' ) );
|
619 |
-
$yourls_db = new wpdb( YOURLS_DB_USER, YOURLS_DB_PASS, YOURLS_DB_NAME, YOURLS_DB_HOST );
|
620 |
-
$yourls_result = yourls_api_expand( $short_url );
|
621 |
-
}
|
622 |
-
$url = $yourls_result['longurl'];
|
623 |
-
return $url;
|
624 |
}
|
|
|
625 |
}
|
626 |
|
627 |
function in_allowed_category( $array ) {
|
628 |
$allowed_categories = get_option( 'tweet_categories' );
|
629 |
if ( is_array( $array ) && is_array( $allowed_categories ) ) {
|
630 |
$common = @array_intersect( $array,$allowed_categories );
|
|
|
|
|
|
|
631 |
if ( count( $common ) >= 1 ) {
|
632 |
return true;
|
633 |
} else {
|
634 |
return false;
|
635 |
}
|
636 |
} else {
|
|
|
|
|
|
|
637 |
return true;
|
638 |
}
|
639 |
}
|
640 |
|
641 |
function jd_post_info( $post_ID ) {
|
642 |
-
$
|
643 |
$category_ids = false;
|
644 |
$values = array();
|
645 |
$values['id'] = $post_ID;
|
646 |
// get post author
|
647 |
-
$values['
|
648 |
-
|
649 |
-
$
|
|
|
650 |
$dateformat = (get_option('jd_date_format')=='')?get_option('date_format'):get_option('jd_date_format');
|
651 |
$thisdate = mysql2date( $dateformat,$postdate );
|
652 |
$altdate = mysql2date( $altformat, $postdate );
|
653 |
$values['_postDate'] = $altdate;
|
654 |
$values['postDate'] = $thisdate;
|
655 |
-
$moddate = $
|
656 |
-
|
657 |
-
$values['_postModified'] = $moddate;
|
658 |
$values['postModified'] = mysql2date( $dateformat,$moddate );
|
659 |
// get first category
|
660 |
$category = null;
|
@@ -673,44 +640,34 @@ function jd_post_info( $post_ID ) {
|
|
673 |
$values['categoryIds'] = $category_ids;
|
674 |
$values['category'] = $category;
|
675 |
$excerpt_length = get_option( 'jd_post_excerpt' );
|
676 |
-
$post_excerpt = ( trim( $
|
677 |
$values['postExcerpt'] = html_entity_decode( $post_excerpt, ENT_COMPAT, get_option('blog_charset') );
|
678 |
-
|
679 |
-
// Want to deal with this later, when I have time to provide full support. Don't see the point in just providing support for titles.
|
680 |
-
if ( function_exists( 'something from qtranslate' ) ) {
|
681 |
-
$thisposttitle = wpt_qtranslate( $get_post_info->post_title);
|
682 |
-
if ($thisposttitle == "") {
|
683 |
-
$thisposttitle = wpt_qtranslate( $_POST['title'] ) ;
|
684 |
-
}
|
685 |
-
} else { */
|
686 |
-
$thisposttitle = stripcslashes( strip_tags( $get_post_info->post_title ) );
|
687 |
if ($thisposttitle == "") {
|
688 |
$thisposttitle = stripcslashes( strip_tags( $_POST['title'] ) );
|
689 |
}
|
690 |
-
/* } */
|
691 |
$values['postTitle'] = html_entity_decode( $thisposttitle, ENT_COMPAT, get_option('blog_charset') );
|
692 |
$values['postLink'] = external_or_permalink( $post_ID );
|
693 |
$values['blogTitle'] = get_bloginfo( 'name' );
|
694 |
-
$values['shortUrl'] =
|
695 |
-
$values['postStatus'] = $
|
696 |
-
$values['postType'] = $
|
697 |
$values = apply_filters( 'wpt_post_info',$values, $post_ID );
|
698 |
return $values;
|
699 |
}
|
700 |
-
|
701 |
-
function
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
}
|
713 |
-
*/
|
714 |
|
715 |
function jd_get_post_meta( $post_ID, $value, $boolean ) {
|
716 |
$return = get_post_meta( $post_ID, "_$value", TRUE );
|
@@ -720,61 +677,101 @@ function jd_get_post_meta( $post_ID, $value, $boolean ) {
|
|
720 |
return $return;
|
721 |
}
|
722 |
|
723 |
-
function jd_twit( $post_ID ) {
|
|
|
|
|
|
|
|
|
|
|
724 |
wpt_check_version();
|
725 |
$jd_tweet_this = get_post_meta( $post_ID, '_jd_tweet_this', true );
|
726 |
$newpost = $oldpost = $is_inline_edit = false;
|
|
|
727 |
if ( get_option('wpt_inline_edits') != 1 ) {
|
728 |
if ( isset($_POST['_inline_edit']) ) { return; }
|
729 |
} else {
|
730 |
if ( isset($_POST['_inline_edit']) ) { $is_inline_edit = true; }
|
731 |
}
|
732 |
-
if (
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
733 |
$post_info = jd_post_info( $post_ID );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
734 |
$post_type = $post_info['postType'];
|
735 |
// if the post modified date and the post date are the same, this is new.
|
736 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
737 |
// if this post is not previously published but has been backdated: lit. if post date is edited, but save option is 'publish'
|
738 |
if ( $new == 0 && ( isset( $_POST['edit_date'] ) && $_POST['edit_date'] == 1 && !isset( $_POST['save'] ) ) ) { $new = 1; }
|
739 |
// post modified = updated? // postdate == published? therefore: posts which have been updated after creation (scheduled, updated in draft) may not turn up as new. // postStatus == future
|
740 |
$post_type_settings = get_option('wpt_post_types');
|
741 |
$post_types = array_keys($post_type_settings);
|
742 |
if ( in_array( $post_type, $post_types ) ) {
|
743 |
-
$
|
744 |
$cT = get_post_meta( $post_ID, '_jd_twitter', true );
|
745 |
if ( isset( $_POST['_jd_twitter'] ) && $_POST['_jd_twitter'] != '' ) { $cT = $_POST['_jd_twitter']; }
|
746 |
$customTweet = ( $cT != '' )?stripcslashes( trim( $cT ) ):'';
|
747 |
-
// excluded post statuses that should never be tweeted
|
748 |
-
if ( $post_info['postStatus'] != 'draft' && $post_info['postStatus'] != 'auto-draft' && $post_info['postStatus'] != 'private' && $post_info['postStatus'] != 'inherit' && $post_info['postStatus'] != 'trash' ) {
|
749 |
// && $post_info['postStatus'] != 'pending'
|
750 |
// if ops is set and equals 'publish', this is being edited. Otherwise, it's a new post.
|
751 |
if ( ( $new == 0 && $post_info['postStatus'] != 'future' ) || $is_inline_edit == true ) {
|
752 |
// if this is an old post and editing updates are enabled
|
753 |
-
if (
|
|
|
|
|
|
|
754 |
$nptext = stripcslashes( $post_type_settings[$post_type]['post-edited-text'] );
|
755 |
$oldpost = true;
|
756 |
}
|
757 |
} else {
|
|
|
|
|
|
|
758 |
if ( $post_type_settings[$post_type]['post-published-update'] == '1' ) {
|
759 |
$nptext = stripcslashes( $post_type_settings[$post_type]['post-published-text'] );
|
760 |
$newpost = true;
|
761 |
}
|
762 |
}
|
763 |
-
}
|
764 |
if ($newpost || $oldpost) {
|
765 |
-
$
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
|
|
|
771 |
}
|
772 |
-
$sentence = jd_truncate_tweet( $sentence, $post_info, $shrink, $post_ID );
|
773 |
-
/* vestigial qtrans support
|
774 |
-
$regex="/<!--:[a-z]+-->(.*)<!--:-->/U";
|
775 |
-
//Return all the languages in the posttitle
|
776 |
-
preg_match_all($regex,$jd_post_info['postTitle'],$matches,PREG_PATTERN_ORDER);
|
777 |
-
*/
|
778 |
}
|
779 |
if ( $sentence != '' ) {
|
780 |
if ( get_option('jd_twit_cats') == '1' ) {
|
@@ -782,55 +779,81 @@ function jd_twit( $post_ID ) {
|
|
782 |
} else {
|
783 |
$continue = ( in_allowed_category( $post_info['categoryIds'] ) )?true:false;
|
784 |
}
|
|
|
|
|
|
|
785 |
if ( get_option('limit_categories') == '0' ) { $continue = true; }
|
786 |
if ( $continue ) {
|
787 |
// WPT PRO //
|
788 |
-
if ( function_exists( 'wpt_pro_exists' ) ) {
|
789 |
-
$auth = $post_info['authId'];
|
790 |
$user = get_userdata( $auth );
|
791 |
$auth_verified = wtt_oauth_test( $auth,'verify' );
|
792 |
-
|
793 |
-
|
|
|
794 |
if ( $post_info['wpt_cotweet'] == 1 && $auth_verified ) {
|
795 |
-
$
|
796 |
-
wp_schedule_single_event( time()+$offset, 'wpt_schedule_tweet_action', array( 'id'=>false, 'sentence'=>$sentence, 'rt'=>0 ) );
|
797 |
}
|
798 |
} else {
|
799 |
$time = ( (int) $post_info['wpt_delay_tweet'] )*60;
|
800 |
-
wp_schedule_single_event( time()+$time, 'wpt_schedule_tweet_action', array( 'id'=>$auth, 'sentence'=>$sentence, 'rt'=>0 ) );
|
|
|
|
|
|
|
|
|
801 |
if ( $post_info['wpt_cotweet'] == 1 && $auth_verified ) {
|
802 |
$offset = rand(60,240); // delay co-tweet by 1-4 minutes.
|
803 |
-
wp_schedule_single_event( time()+$time+$offset, 'wpt_schedule_tweet_action', array( 'id'=>false, 'sentence'=>$
|
804 |
-
|
805 |
-
|
|
|
|
|
|
|
806 |
}
|
807 |
if ( $post_info['wpt_retweet_after'] != 0 && $post_info['wpt_no_repost'] != 'on' ) {
|
808 |
$repeat = $post_info['wpt_retweet_repeat'];
|
809 |
for ( $i=1;$i<=$repeat;$i++ ) {
|
810 |
-
if ( $i == 1 ) {
|
811 |
-
|
812 |
-
|
813 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
814 |
$time = ($post_info['wpt_retweet_after'])*(60*60)*$i;
|
815 |
-
wp_schedule_single_event( time()+$time, 'wpt_schedule_tweet_action', array( 'id'=>$auth, 'sentence'=>$retweet, 'rt'=>$i ) );
|
816 |
if ( $post_info['wpt_cotweet'] == 1 && $auth_verified ) {
|
817 |
$offset = rand(60,240); // delay each co-tweet by 1-4 minutes
|
818 |
-
wp_schedule_single_event( time()+$time+$offset, 'wpt_schedule_tweet_action', array( 'id'=>false, 'sentence'=>$
|
819 |
}
|
820 |
-
$
|
821 |
if ( $i == 4 ) { break; }
|
822 |
}
|
823 |
}
|
824 |
} else {
|
825 |
-
$
|
826 |
}
|
827 |
// END WPT PRO //
|
828 |
-
|
829 |
-
if ( !is_array( $jwt ) ){ $jwt=array(); }
|
830 |
-
$jwt[] = urldecode( $sentence );
|
831 |
-
$_POST['_jd_wp_twitter'] = $jwt;
|
832 |
-
update_post_meta( $post_ID,'_jd_wp_twitter', $jwt );
|
833 |
-
if ( $sendToTwitter == false ) {
|
834 |
update_option( 'wp_twitter_failure','1' );
|
835 |
}
|
836 |
}
|
@@ -842,7 +865,6 @@ function jd_twit( $post_ID ) {
|
|
842 |
return $post_ID;
|
843 |
}
|
844 |
|
845 |
-
|
846 |
// Add Tweets on links in Blogroll
|
847 |
function jd_twit_link( $link_ID ) {
|
848 |
wpt_check_version();
|
@@ -856,18 +878,18 @@ function jd_twit_link( $link_ID ) {
|
|
856 |
$sentence = str_ireplace("#title#",$thislinkname,$sentence);
|
857 |
$sentence = str_ireplace("#description#",$thislinkdescription,$sentence);
|
858 |
|
859 |
-
if (mb_strlen( $sentence ) >
|
860 |
-
$sentence = mb_substr($sentence,0,
|
861 |
}
|
862 |
-
$shrink =
|
863 |
if ( stripos($sentence,"#url#") === FALSE ) {
|
864 |
$sentence = $sentence . " " . $shrink;
|
865 |
} else {
|
866 |
$sentence = str_ireplace("#url#",$shrink,$sentence);
|
867 |
}
|
868 |
if ( $sentence != '' ) {
|
869 |
-
$
|
870 |
-
if ( $
|
871 |
}
|
872 |
return $link_ID;
|
873 |
} else {
|
@@ -879,31 +901,36 @@ function jd_twit_xmlrpc( $post_ID ) {
|
|
879 |
wpt_check_version();
|
880 |
|
881 |
$post_info = jd_post_info( $post_ID );
|
|
|
|
|
|
|
|
|
|
|
882 |
$post_type = $post_info['postType'];
|
883 |
$settings = get_option('wpt_post_types');
|
884 |
$post_types = array_keys($settings);
|
885 |
// if the post modified date and the post date are the same, this is new.
|
886 |
$new = wpt_date_compare( $post_info['_postModified'], $post_info['_postDate'] );
|
887 |
if ( in_array( $post_type, $post_types ) ) {
|
888 |
-
$
|
889 |
if ( get_option('jd_tweet_default') != '1' && get_option('jd_twit_remote') == '1' ) {
|
890 |
$poststatus = $post_info['postStatus'];
|
891 |
if ( $poststatus == 'publish' ) {
|
892 |
if ( $new === 1 && $settings[$post_type]['post-published-update'] == '1' ) {
|
893 |
-
$
|
894 |
-
} else if ( $new === 0 && $settings[$post_type]['post-edited-update'] == '1' ) {
|
895 |
-
$
|
896 |
} else {
|
897 |
return;
|
898 |
}
|
899 |
} else {
|
900 |
return;
|
901 |
-
}
|
902 |
-
$shrink = jd_shorten_link( $post_info['postLink'], $post_info['postTitle'], $post_ID );
|
903 |
-
// Stores the short URL in a custom field for later use as needed.
|
904 |
-
store_url($post_ID, $shrink);
|
905 |
// Check the length of the Tweet and truncate parts as necessary.
|
906 |
-
$sentence = jd_truncate_tweet( $
|
|
|
|
|
|
|
907 |
if ( $sentence != '' ) {
|
908 |
if ( get_option('jd_twit_cats') == '1' ) {
|
909 |
$continue = ( !in_allowed_category( $post_info['categoryIds'] ) )?true:false;
|
@@ -914,39 +941,69 @@ function jd_twit_xmlrpc( $post_ID ) {
|
|
914 |
if ( $continue ) {
|
915 |
// WPT PRO //
|
916 |
if ( function_exists( 'wpt_pro_exists' ) ) {
|
917 |
-
$auth = $post_info['authId'];
|
918 |
$user = get_userdata( $auth );
|
919 |
-
|
920 |
-
if ( $post_info['wpt_delay_tweet'] == 0 || $post_info['wpt_no_delay'] == 'on' ) {
|
921 |
-
$
|
|
|
|
|
|
|
|
|
922 |
} else {
|
923 |
$time = ( (int) $post_info['wpt_delay_tweet'] )*60;
|
924 |
-
wp_schedule_single_event( time()+$time, 'wpt_schedule_tweet_action', array( 'id'=>$auth, 'sentence'=>$sentence, 'rt'=>0 ) );
|
925 |
-
$
|
|
|
|
|
|
|
|
|
926 |
}
|
927 |
if ( $post_info['wpt_retweet_after'] != 0 && $post_info['wpt_no_repost'] != 'on' ) {
|
928 |
$repeat = $post_info['wpt_retweet_repeat'];
|
929 |
for ( $i=1;$i<=$repeat;$i++ ) {
|
930 |
-
if ( $i == 1 ) {
|
931 |
-
|
932 |
-
|
933 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
934 |
$time = ($post_info['wpt_retweet_after'])*(60*60)*$i;
|
935 |
-
wp_schedule_single_event( time()+$time, 'wpt_schedule_tweet_action', array( 'id'=>$auth, 'sentence'=>$retweet, 'rt'=>$i ) );
|
936 |
-
$
|
|
|
|
|
|
|
|
|
937 |
if ( $i == 4 ) { break; }
|
938 |
}
|
939 |
}
|
940 |
} else {
|
941 |
-
$
|
942 |
}
|
943 |
// END WPT PRO //
|
944 |
-
|
945 |
-
|
946 |
-
|
947 |
-
|
948 |
-
|
949 |
-
|
|
|
|
|
950 |
update_option('wp_twitter_failure','1');
|
951 |
}
|
952 |
}
|
@@ -966,16 +1023,10 @@ function jd_twit_comment( $comment_id, $approved ) {
|
|
966 |
$post_info = jd_post_info( $post_ID );
|
967 |
$sentence = '';
|
968 |
$sentence = stripcslashes( get_option( 'comment-published-text' ) );
|
969 |
-
|
970 |
-
$shrink = $post_info['shortUrl'];
|
971 |
-
} else {
|
972 |
-
$shrink = jd_shorten_link( $post_info['postLink'], $post_info['postTitle'], $post_ID );
|
973 |
-
store_url( $post_ID, $shrink );
|
974 |
-
}
|
975 |
-
$sentence = jd_truncate_tweet( $sentence, $post_info, $shrink, $post_ID );
|
976 |
$sentence = str_replace("#commenter#",$commenter,$sentence);
|
977 |
if ( $sentence != '' ) {
|
978 |
-
$
|
979 |
}
|
980 |
}
|
981 |
return $post_ID;
|
@@ -984,24 +1035,27 @@ function jd_twit_comment( $comment_id, $approved ) {
|
|
984 |
add_action('admin_menu','jd_add_twitter_outer_box');
|
985 |
|
986 |
function store_url($post_ID, $url) {
|
987 |
-
|
988 |
-
|
989 |
-
|
990 |
-
|
991 |
-
|
992 |
-
|
993 |
-
|
994 |
-
|
995 |
-
|
996 |
-
|
997 |
-
|
998 |
-
|
999 |
-
|
1000 |
-
|
1001 |
-
|
1002 |
-
|
1003 |
-
|
1004 |
-
|
|
|
|
|
|
|
1005 |
}
|
1006 |
update_post_meta( $post_ID, '_wp_jd_target', $target );
|
1007 |
}
|
@@ -1016,10 +1070,14 @@ function generate_hash_tags( $post_ID ) {
|
|
1016 |
if ( $tags > 0 ) {
|
1017 |
$i = 1;
|
1018 |
foreach ( $tags as $value ) {
|
1019 |
-
|
|
|
|
|
|
|
|
|
1020 |
$replace = get_option( 'jd_replace_character' );
|
1021 |
$strip = get_option( 'jd_strip_nonan' );
|
1022 |
-
$search = "/[
|
1023 |
if ($replace == "[ ]") { $replace = ""; }
|
1024 |
$tag = str_ireplace( " ",$replace,trim( $tag ) );
|
1025 |
if ($strip == '1') { $tag = preg_replace( $search, $replace, $tag ); }
|
@@ -1054,6 +1112,8 @@ function jd_add_twitter_old_box() {
|
|
1054 |
}
|
1055 |
|
1056 |
function jd_add_twitter_inner_box() {
|
|
|
|
|
1057 |
global $post, $jd_plugin_url, $jd_donate_url;
|
1058 |
$post_length = 140;
|
1059 |
$wpt_settings = get_option('wpt_post_types');
|
@@ -1067,48 +1127,81 @@ global $post, $jd_plugin_url, $jd_donate_url;
|
|
1067 |
$type = $post->post_type;
|
1068 |
$status = $post->post_status;
|
1069 |
}
|
1070 |
-
if ( get_post_meta ( $post_id, "_jd_post_meta_fixed", true ) != 'true' ) {
|
1071 |
-
jd_fix_post_meta( $post_id );
|
1072 |
-
}
|
1073 |
$jd_twitter = esc_attr( stripcslashes( get_post_meta($post_id, '_jd_twitter', true ) ) );
|
1074 |
$jd_template = ( $status == 'publish' )?$wpt_settings[$type]['post-edited-text']:$wpt_settings[$type]['post-published-text'];
|
1075 |
$jd_tweet_this = get_post_meta( $post_id, '_jd_tweet_this', true );
|
1076 |
-
if ( $jd_tweet_this == '' ) {
|
1077 |
-
|
1078 |
-
|
1079 |
-
|
1080 |
-
if ( $jd_short == "" ) {$jd_short = get_post_meta( $post_id, '_wp_jd_ind', true ); $sht = "other"; }
|
1081 |
-
if ( $jd_short == "" ) {$jd_short = get_post_meta( $post_id, '_wp_jd_bitly', true );$sht = "Bit.ly";}
|
1082 |
-
if ( $jd_short == "" ) {$jd_short = get_post_meta( $post_id, '_wp_jd_wp', true ); $sht = "WordPress";}
|
1083 |
-
if ( $jd_short == "" ) {$jd_short = get_post_meta( $post_id, '_wp_jd_yourls', true );$sht = "YOURLS";}
|
1084 |
-
if ( $jd_short == "" ) {$jd_direct = get_post_meta( $post_id, '_wp_jd_url', true );}
|
1085 |
-
$jd_expansion = get_post_meta( $post_id, '_wp_jd_target', true );
|
1086 |
$previous_tweets = get_post_meta ( $post_id, '_jd_wp_twitter', true );
|
|
|
1087 |
?>
|
1088 |
-
<?php if (
|
1089 |
-
<?php if ( ! empty( $previous_tweets ) ) { ?>
|
1090 |
|
|
|
|
|
1091 |
<p class='error'><strong><?php _e('Previous Tweets','wp-to-twitter'); ?>:</strong></p>
|
1092 |
<ul>
|
1093 |
<?php
|
1094 |
$hidden_fields = '';
|
1095 |
-
|
1096 |
-
|
1097 |
-
|
1098 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1099 |
}
|
1100 |
}
|
|
|
1101 |
?>
|
1102 |
</ul>
|
1103 |
<?php echo "<div>".$hidden_fields."</div>"; } ?>
|
|
|
1104 |
<?php if ( current_user_can( 'wpt_twitter_custom' ) || current_user_can('update_core') ) { ?>
|
1105 |
<p class='jtw'>
|
1106 |
<label for="jtw"><?php _e("Custom Twitter Post", 'wp-to-twitter', 'wp-to-twitter') ?></label><br /><textarea class="attachmentlinks" name="_jd_twitter" id="jtw" rows="2" cols="60"><?php echo esc_attr( $jd_twitter ); ?></textarea>
|
1107 |
</p>
|
1108 |
-
<?php
|
1109 |
-
|
1110 |
-
|
1111 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1112 |
|
1113 |
<?php
|
1114 |
if ( get_option('jd_keyword_format') == 2 ) {
|
@@ -1116,104 +1209,105 @@ $hidden_fields = '';
|
|
1116 |
echo "<label for='yourls_keyword'>".__('YOURLS Custom Keyword','wp-to-twitter')."</label> <input type='text' name='_yourls_keyword' id='yourls_keyword' value='$custom_keyword' />";
|
1117 |
}
|
1118 |
?>
|
1119 |
-
<p>
|
1120 |
-
<?php if ( !function_exists( 'wpt_pro_exists' ) ) { ?>
|
1121 |
-
<a target="_blank" href="<?php echo admin_url('options-general.php?page=wp-to-twitter/wp-to-twitter.php'); ?>#get-support"><?php _e('Get Support', 'wp-to-twitter', 'wp-to-twitter') ?></a> • <a target="__blank" href="<?php echo $jd_donate_url; ?>"><?php _e('Upgrade to WP Tweets Pro', 'wp-to-twitter', 'wp-to-twitter') ?></a> »
|
1122 |
<?php } else { ?>
|
1123 |
-
<
|
1124 |
-
<?php } ?>
|
1125 |
-
</p>
|
1126 |
<?php } ?>
|
1127 |
-
<?php if ( current_user_can( '
|
1128 |
<?php
|
1129 |
// "no" means 'Don't Tweet' (is checked)
|
1130 |
$nochecked = ( $jd_tweet_this == 'no' )?' checked="checked"':'';
|
1131 |
$yeschecked = ( $jd_tweet_this == 'yes' )?' checked="checked"':'';
|
1132 |
?>
|
1133 |
<p><input type="radio" name="_jd_tweet_this" value="no" id="jtn"<?php echo $nochecked; ?> /> <label for="jtn"><?php _e("Don't Tweet this post.", 'wp-to-twitter'); ?></label> <input type="radio" name="_jd_tweet_this" value="yes" id="jty"<?php echo $yeschecked; ?> /> <label for="jty"><?php _e("Tweet this post.", 'wp-to-twitter'); ?></label></p>
|
|
|
|
|
1134 |
<?php } ?>
|
1135 |
<?php /* WPT PRO */ ?>
|
1136 |
<?php
|
1137 |
-
if ( function_exists('wpt_pro_exists') ) {
|
1138 |
wpt_schedule_values( $post_id );
|
1139 |
} ?>
|
1140 |
<?php /* WPT PRO */ ?>
|
1141 |
-
<?php if ( !current_user_can( 'wpt_twitter_custom' )
|
1142 |
<div>
|
1143 |
<p><?php _e('Access to customizing WP to Twitter values is not allowed for your user role.','wp-to-twitter'); ?></p>
|
1144 |
-
<?php if ( !current_user_can( 'wpt_twitter_switch' ) ) { ?>
|
1145 |
-
<input type="hidden" name='_jd_tweet_this' value='<?php echo $jd_tweet_this; ?>' />
|
1146 |
-
<?php } ?>
|
1147 |
-
<input type="hidden" name='_jd_twitter' value='' />
|
1148 |
<?php
|
1149 |
-
if ( function_exists('wpt_pro_exists') ) {
|
1150 |
wpt_schedule_values( $post_id, 'hidden' );
|
1151 |
} ?>
|
1152 |
</div>
|
1153 |
<?php } ?>
|
|
|
1154 |
<p>
|
1155 |
-
<?php
|
1156 |
-
|
1157 |
-
|
1158 |
-
|
1159 |
-
|
1160 |
-
|
1161 |
-
|
1162 |
-
|
1163 |
-
|
1164 |
-
}
|
1165 |
-
?>
|
1166 |
</p>
|
1167 |
-
<?php
|
|
|
|
|
|
|
|
|
1168 |
function jd_add_twitter_outer_box() {
|
1169 |
wpt_check_version();
|
1170 |
$wpt_post_types = get_option('wpt_post_types');
|
1171 |
if ( function_exists( 'add_meta_box' )) {
|
1172 |
if ( is_array( $wpt_post_types ) ) {
|
1173 |
foreach ($wpt_post_types as $key=>$value) {
|
1174 |
-
|
|
|
|
|
1175 |
}
|
1176 |
}
|
1177 |
}
|
1178 |
}
|
1179 |
|
1180 |
-
function jd_fix_post_meta( $post_id ) {
|
1181 |
-
$oldmeta = array('jd_tweet_this','jd_twitter','wp_jd_clig','wp_jd_bitly','wp_jd_wp','wp_jd_yourls','wp_jd_url','wp_jd_target','jd_wp_twitter');
|
1182 |
-
foreach ($oldmeta as $value) {
|
1183 |
-
$old_value = get_post_meta($post_id,$value,true);
|
1184 |
-
update_post_meta( $post_id, "_$value", $old_value );
|
1185 |
-
delete_post_meta( $post_id, $value );
|
1186 |
-
}
|
1187 |
-
if ( $post_id != 0 ) {
|
1188 |
-
add_post_meta( $post_id, "_jd_post_meta_fixed",'true' );
|
1189 |
-
}
|
1190 |
-
}
|
1191 |
-
|
1192 |
function wpt_admin_scripts( $hook ) {
|
1193 |
-
|
|
|
1194 |
wp_enqueue_script( 'charCount', plugins_url( 'wp-to-twitter/js/jquery.charcount.js'), array('jquery') );
|
1195 |
-
|
1196 |
}
|
1197 |
add_action( 'admin_enqueue_scripts', 'wpt_admin_scripts', 10, 1 );
|
1198 |
|
1199 |
function wpt_admin_script( $hook ) {
|
1200 |
global $current_screen;
|
|
|
1201 |
if ( $current_screen->base == 'post' ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1202 |
echo "
|
1203 |
<script type='text/javascript'>
|
1204 |
jQuery(document).ready(function(\$){
|
1205 |
//default usage
|
1206 |
-
\$('#jtw').charCount( { counterText: '".__('Characters left: ','wp-to-twitter')."' } );
|
1207 |
});
|
1208 |
</script>
|
1209 |
<style type='text/css'>
|
1210 |
-
#wptotwitter_div .jtw{ position: relative;
|
1211 |
#wptotwitter_div .counter{
|
1212 |
-
position:absolute;right:4%;
|
1213 |
-
font-size:1.
|
1214 |
}
|
1215 |
#wptotwitter_div .warning{color:#700;}
|
1216 |
#wptotwitter_div .exceeded{color:#e00;}
|
|
|
1217 |
</style>";
|
1218 |
}
|
1219 |
}
|
@@ -1221,12 +1315,7 @@ add_action( 'admin_head', 'wpt_admin_script' );
|
|
1221 |
|
1222 |
// Post the Custom Tweet into the post meta table
|
1223 |
function post_jd_twitter( $id ) {
|
1224 |
-
if ( defined('DOING_AUTOSAVE') && DOING_AUTOSAVE ) { return $id; }
|
1225 |
-
if ( isset($_POST['_inline_edit']) ) { return $id; }
|
1226 |
-
// update meta data to new format
|
1227 |
-
if ( get_post_meta ( $id, "_jd_post_meta_fixed", true ) != 'true' ) {
|
1228 |
-
jd_fix_post_meta( $id );
|
1229 |
-
}
|
1230 |
if ( isset( $_POST['_yourls_keyword'] ) ) {
|
1231 |
$yourls = $_POST[ '_yourls_keyword' ];
|
1232 |
update_post_meta( $id, '_yourls_keyword', $yourls );
|
@@ -1251,6 +1340,10 @@ function post_jd_twitter( $id ) {
|
|
1251 |
// WPT PRO //
|
1252 |
apply_filters( 'wpt_insert_post', $_POST, $id );
|
1253 |
// WPT PRO //
|
|
|
|
|
|
|
|
|
1254 |
}
|
1255 |
|
1256 |
function jd_twitter_profile() {
|
@@ -1261,6 +1354,7 @@ function jd_twitter_profile() {
|
|
1261 |
|
1262 |
$is_enabled = get_user_meta( $user_edit, 'wp-to-twitter-enable-user',true );
|
1263 |
$twitter_username = get_user_meta( $user_edit, 'wp-to-twitter-user-username',true );
|
|
|
1264 |
?>
|
1265 |
<h3><?php _e('WP Tweets User Settings', 'wp-to-twitter'); ?></h3>
|
1266 |
<?php if ( function_exists('wpt_connect_oauth_message') ) { wpt_connect_oauth_message( $user_edit ); } ?>
|
@@ -1275,13 +1369,14 @@ function jd_twitter_profile() {
|
|
1275 |
<th scope="row"><label for="wp-to-twitter-user-username"><?php _e("Your Twitter Username", 'wp-to-twitter'); ?></label></th>
|
1276 |
<td><input type="text" name="wp-to-twitter-user-username" id="wp-to-twitter-user-username" value="<?php echo esc_attr( $twitter_username ); ?>" /> <?php _e('Enter your own Twitter username.', 'wp-to-twitter'); ?></td>
|
1277 |
</tr>
|
|
|
|
|
|
|
|
|
1278 |
</table>
|
1279 |
<?php if ( function_exists('wpt_schedule_tweet') ) { ?>
|
1280 |
<?php if ( function_exists('wtt_connect_oauth') ) { wtt_connect_oauth( $user_edit ); } ?>
|
1281 |
-
<?php
|
1282 |
-
<?php } ?>
|
1283 |
-
|
1284 |
-
<?php
|
1285 |
}
|
1286 |
}
|
1287 |
|
@@ -1293,7 +1388,7 @@ function custom_shortcodes( $sentence, $post_ID ) {
|
|
1293 |
foreach ($matches[0] as $value) {
|
1294 |
$shortcode = "$value";
|
1295 |
$field = str_replace($params, "", $shortcode);
|
1296 |
-
$custom = get_post_meta( $post_ID, $field, TRUE );
|
1297 |
$sentence = str_replace( $shortcode, $custom, $sentence );
|
1298 |
}
|
1299 |
return $sentence;
|
@@ -1310,8 +1405,12 @@ function jd_twitter_save_profile(){
|
|
1310 |
} else {
|
1311 |
$edit_id = $user_ID;
|
1312 |
}
|
1313 |
-
|
1314 |
-
|
|
|
|
|
|
|
|
|
1315 |
//WPT PRO
|
1316 |
apply_filters( 'wpt_save_user', $edit_id, $_POST );
|
1317 |
}
|
@@ -1355,14 +1454,12 @@ function jd_list_categories() {
|
|
1355 |
function jd_addTwitterAdminPages() {
|
1356 |
if ( function_exists( 'add_options_page' ) && !function_exists( 'wpt_pro_functions') ) {
|
1357 |
$plugin_page = add_options_page( 'WP to Twitter', 'WP to Twitter', 'manage_options', __FILE__, 'wpt_update_settings' );
|
1358 |
-
add_action( 'admin_head-'. $plugin_page, 'jd_addTwitterAdminStyles' );
|
1359 |
}
|
1360 |
}
|
1361 |
-
|
1362 |
function jd_addTwitterAdminStyles() {
|
1363 |
-
|
1364 |
-
|
1365 |
-
echo '<link type="text/css" rel="stylesheet" href="'.$wp_plugin_url.'/wp-to-twitter/styles.css" />';
|
1366 |
}
|
1367 |
}
|
1368 |
|
@@ -1383,13 +1480,13 @@ if ( get_option( 'jd_individual_twitter_users')=='1') {
|
|
1383 |
}
|
1384 |
|
1385 |
if ( get_option( 'disable_url_failure' ) != '1' ) {
|
1386 |
-
if ( get_option( 'wp_url_failure' ) == '1' ) {
|
1387 |
-
add_action('admin_notices', create_function( '', "if ( ! current_user_can( 'manage_options' ) ) { return; } echo '<div class=\"error\"><p>';_e('There\'s been an error shortening your URL! <a href=\"".
|
1388 |
}
|
1389 |
}
|
1390 |
if ( get_option( 'disable_twitter_failure' ) != '1' ) {
|
1391 |
-
if ( get_option( 'wp_twitter_failure' ) == '1' ) {
|
1392 |
-
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=\"".
|
1393 |
}
|
1394 |
}
|
1395 |
|
@@ -1409,18 +1506,31 @@ function wpt_plugin_update_message() {
|
|
1409 |
echo $note;
|
1410 |
}
|
1411 |
|
1412 |
-
add_action( 'save_post','post_jd_twitter', 10 );
|
1413 |
-
|
1414 |
if ( get_option( 'jd_twit_blogroll' ) == '1' ) {
|
1415 |
add_action( 'add_link', 'jd_twit_link' );
|
1416 |
}
|
1417 |
-
|
1418 |
-
|
1419 |
-
|
1420 |
-
|
1421 |
-
|
1422 |
-
|
|
|
|
|
1423 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1424 |
|
1425 |
if ( get_option( 'jd_twit_remote' ) == '1' ) {
|
1426 |
add_action( 'xmlrpc_publish_post', 'jd_twit_xmlrpc' );
|
3 |
Plugin Name: WP to Twitter
|
4 |
Plugin URI: http://www.joedolson.com/articles/wp-to-twitter/
|
5 |
Description: Posts a Tweet 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.5.9
|
7 |
Author: Joseph Dolson
|
8 |
Author URI: http://www.joedolson.com/
|
9 |
*/
|
23 |
along with this program; if not, write to the Free Software
|
24 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
25 |
*/
|
26 |
+
|
27 |
+
if ('wp-to-twitter.php' == basename($_SERVER['SCRIPT_FILENAME'])) { die ('<h2>Direct File Access Prohibited</h2>');}
|
28 |
+
global $wp_version;
|
29 |
+
if ( version_compare( $wp_version , '3.0' , '<' ) && is_ssl() ) {
|
30 |
$wp_content_url = str_replace( 'http://' , 'https://' , get_option( 'siteurl' ) );
|
31 |
} else {
|
32 |
$wp_content_url = get_option( 'siteurl' );
|
33 |
}
|
34 |
+
$wp_content_url = content_url();
|
35 |
+
$wp_content_dir = str_replace( '/plugins/wp-to-twitter','',plugin_dir_path( __FILE__ ) );
|
36 |
+
if ( defined('WP_CONTENT_URL') ) { $wp_content_url = constant('WP_CONTENT_URL');}
|
37 |
+
if ( defined('WP_CONTENT_DIR') ) { $wp_content_dir = constant('WP_CONTENT_DIR');}
|
38 |
|
39 |
+
define( 'WPT_DEBUG',false );
|
40 |
+
define( 'WPT_DEBUG_ADDRESS', 'debug@joedolson.com' );
|
41 |
+
/*function wpt_pro_exists() {
|
42 |
+
return false;
|
43 |
+
}*/
|
44 |
+
|
45 |
+
$wp_plugin_url = plugins_url();
|
46 |
include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); // required in order to access is_plugin_active()
|
47 |
|
48 |
if ( version_compare( phpversion(), '5.0', '<' ) ) {
|
49 |
$warning = __('WP to Twitter requires PHP version 5 or above. Please upgrade PHP to run WP to Twitter.','wp-to-twitter' );
|
50 |
add_action('admin_notices', create_function( '', "echo \"<div class='error'><p>$warning</p></div>\";" ) );
|
51 |
} else {
|
52 |
+
require_once( plugin_dir_path(__FILE__).'/wp-to-twitter-oauth.php' );
|
53 |
}
|
54 |
+
require_once( plugin_dir_path(__FILE__).'/wp-to-twitter-shorteners.php' );
|
55 |
+
require_once( plugin_dir_path(__FILE__).'/wp-to-twitter-manager.php' );
|
56 |
+
require_once( plugin_dir_path(__FILE__).'/functions.php' );
|
57 |
|
58 |
+
global $wpt_version,$jd_plugin_url;
|
59 |
+
$wpt_version = "2.5.9";
|
60 |
$plugin_dir = basename(dirname(__FILE__));
|
61 |
+
load_plugin_textdomain( 'wp-to-twitter', false, dirname( plugin_basename( __FILE__ ) ) . '/lang' );
|
62 |
|
63 |
+
function wpt_pro_compatibility() {
|
64 |
+
global $wptp_version;
|
65 |
+
$current_wptp_version = '1.3.2';
|
66 |
+
if ( version_compare( $wptp_version, $current_wptp_version, '<' ) ) {
|
67 |
+
echo "<div class='error notice'><p class='upgrade'>".sprintf( __('The current version of WP Tweets PRO is <strong>%s</strong>. Upgrade for best compatibility!','wp-to-twitter'),$current_wptp_version )."</p></div>";
|
68 |
+
}
|
69 |
+
}
|
70 |
|
71 |
$jd_plugin_url = "http://www.joedolson.com/articles/wp-to-twitter/";
|
72 |
$jd_donate_url = "http://www.joedolson.com/articles/wp-tweets-pro/";
|
73 |
|
74 |
function wpt_marginal_function() {
|
75 |
global $wp_version;
|
76 |
+
$exit_msg=__('WP to Twitter requires WordPress 3.0.6 or a more recent version <a href="http://codex.wordpress.org/Upgrading_WordPress">Please update WordPress to continue using WP to Twitter with all features!</a>','wp-to-twitter');
|
77 |
if ( version_compare( $wp_version,"3.0.6","<" ) ) {
|
78 |
if ( is_admin() ) {
|
79 |
echo "<div class='error'><p>".($exit_msg)."</p></div>";
|
183 |
}
|
184 |
delete_option( 'use_tags_as_hashtags' );
|
185 |
}
|
186 |
+
$upgrade = version_compare( $prev_version, "2.4.0","<" );
|
187 |
if ( $upgrade ) {
|
188 |
$perms = get_option('wtt_user_permissions');
|
189 |
switch( $perms ) {
|
196 |
}
|
197 |
update_option( 'wtt_user_permissions',$update );
|
198 |
}
|
199 |
+
$upgrade = version_compare( $prev_version, "2.4.1","<" );
|
200 |
+
if ( $upgrade ) {
|
201 |
+
$subscriber = get_role('subscriber');
|
202 |
+
$contributor = get_role('contributor');
|
203 |
+
$author = get_role('author');
|
204 |
+
$editor = get_role('editor');
|
205 |
+
$administrator = get_role('administrator');
|
206 |
+
$administrator->add_cap('wpt_twitter_oauth');
|
207 |
+
$administrator->add_cap('wpt_twitter_custom');
|
208 |
+
$administrator->add_cap('wpt_twitter_switch'); // can toggle tweet/don't tweet
|
209 |
+
switch ( get_option('wtt_user_permissions') ) { // users that can add twitter information
|
210 |
+
case 'subscriber': $subscriber->add_cap('wpt_twitter_oauth'); $contributor->add_cap('wpt_twitter_oauth'); $author->add_cap('wpt_twitter_oauth'); $editor->add_cap('wpt_twitter_oauth'); break;
|
211 |
+
case 'contributor': $contributor->add_cap('wpt_twitter_oauth'); $author->add_cap('wpt_twitter_oauth'); $editor->add_cap('wpt_twitter_oauth'); break;
|
212 |
+
case 'author': $author->add_cap('wpt_twitter_oauth'); $editor->add_cap('wpt_twitter_oauth'); break;
|
213 |
+
case 'editor':$editor->add_cap('wpt_twitter_oauth'); break;
|
214 |
+
case 'administrator': break;
|
215 |
+
default:
|
216 |
+
$role = get_role( get_option('wtt_user_permissions') );
|
217 |
+
if ( is_object($role) ) {
|
218 |
+
$role->add_cap('wpt_twitter_oauth');
|
219 |
+
}
|
220 |
+
break;
|
221 |
+
}
|
222 |
+
switch ( get_option('wtt_show_custom_tweet') ) { // users that can compose a custom tweet
|
223 |
+
case 'subscriber': $subscriber->add_cap('wpt_twitter_custom'); $contributor->add_cap('wpt_twitter_custom'); $author->add_cap('wpt_twitter_custom'); $editor->add_cap('wpt_twitter_custom'); break;
|
224 |
+
case 'contributor': $contributor->add_cap('wpt_twitter_custom'); $author->add_cap('wpt_twitter_custom'); $editor->add_cap('wpt_twitter_custom'); break;
|
225 |
+
case 'author': $author->add_cap('wpt_twitter_custom'); $editor->add_cap('wpt_twitter_custom'); break;
|
226 |
+
case 'editor':$editor->add_cap('wpt_twitter_custom'); break;
|
227 |
+
case 'administrator': break;
|
228 |
+
default:
|
229 |
+
$role = get_role( get_option('wtt_show_custom_tweet') );
|
230 |
+
if ( is_object($role) ) {
|
231 |
+
$role->add_cap('wpt_twitter_custom');
|
232 |
+
}
|
233 |
+
break;
|
234 |
+
}
|
235 |
}
|
236 |
+
$upgrade = version_compare( $prev_version, "2.4.13","<" );
|
237 |
+
if ( $upgrade ) {
|
238 |
+
$administrator = get_role('administrator');
|
239 |
+
$administrator->add_cap('wpt_can_tweet');
|
240 |
+
$editor = get_role('editor');
|
241 |
+
if ( is_object( $editor ) ) { $editor->add_cap('wpt_can_tweet'); }
|
242 |
+
$author = get_role('author');
|
243 |
+
if ( is_object( $author ) ) { $author->add_cap('wpt_can_tweet'); }
|
244 |
+
$contributor = get_role('contributor');
|
245 |
+
if ( is_object( $contributor ) ) { $contributor->add_cap('wpt_can_tweet'); }
|
246 |
+
update_option('wpt_can_tweet','contributor');
|
|
|
247 |
}
|
248 |
update_option( 'wp_to_twitter_version',$wpt_version );
|
249 |
}
|
259 |
return ( $ex_link ) ? $ex_link : $permalink;
|
260 |
}
|
261 |
|
262 |
+
function wpt_saves_error( $id, $auth, $twit, $error, $http_code, $ts ) {
|
263 |
+
$http_code = (int) $http_code;
|
264 |
+
if ( $http_code != 200 ) {
|
265 |
+
add_post_meta( $id, '_wpt_failed', array( 'author'=>$auth, 'sentence'=>$twit, 'error'=>$error,'code'=>$http_code, 'timestamp'=>$ts ) );
|
266 |
+
}
|
267 |
+
}
|
268 |
+
|
269 |
// This function performs the API post to Twitter
|
270 |
+
function jd_doTwitterAPIPost( $twit, $auth=false, $id=false ) {
|
271 |
// prevent duplicate Tweets
|
272 |
+
if ( !wpt_check_oauth( $auth ) ) {
|
273 |
+
wpt_saves_error( $id, $auth, $twit, __('This account is not authorized to post to Twitter.','wp-tweets-pro'), '401', time() );
|
274 |
+
return true;
|
275 |
+
} // exit silently if not authorized
|
276 |
$check = ( !$auth )?get_option('jd_last_tweet'):get_user_meta( $auth, 'wpt_last_tweet', true ); // get user's last tweet
|
277 |
+
if ( $check == $twit ) {
|
278 |
+
if ( WPT_DEBUG && function_exists( 'wpt_pro_exists' ) ) {
|
279 |
+
wp_mail( WPT_DEBUG_ADDRESS,'Matched twit check: tweet identical',"$twit, $auth, $id" ); // DEBUG
|
280 |
+
}
|
281 |
+
wpt_saves_error( $id, $auth, $twit, __('This tweet is identical to another Tweet recently sent to this account.','wp-tweets-pro'), '403', time() );
|
282 |
return true;
|
283 |
+
} else if ( $twit == '' || !$twit ) {
|
284 |
+
if ( WPT_DEBUG && function_exists( 'wpt_pro_exists' ) ) {
|
285 |
+
wp_mail( WPT_DEBUG_ADDRESS,'Tweet check: empty sentence.',"$twit, $auth, $id" ); // DEBUG
|
286 |
+
}
|
287 |
+
wpt_saves_error( $id, $auth, $twit, __('This tweet was blank and could not be sent to Twitter.','wp-tweets-pro'), '403', time() );
|
288 |
+
return true;
|
289 |
} else {
|
290 |
+
$protocol = ( get_option( 'wpt_http' ) == '1' )?'http:':'https:';
|
291 |
+
$jdwp_api_post_status = "$protocol//api.twitter.com/1.1/statuses/update.json";
|
292 |
+
//$jdwp_api_media_status = "$protocol//upload.twitter.com/1.1/statuses/update_with_media.json";
|
293 |
if ( wtt_oauth_test( $auth ) && ( $connection = wtt_oauth_connection( $auth ) ) ) {
|
294 |
+
/* $add_media = true; // This needs to wait until I figure out multipart submissions via OAuth.
|
295 |
+
if ( $add_media == true ) {
|
296 |
+
$featured = get_post_thumbnail_id( $id );
|
297 |
+
$image = wp_get_attachment_image_src( $featured, 'large' );
|
298 |
+
$url = $image[0];
|
299 |
+
$base = wp_upload_dir();
|
300 |
+
$base_url = $base['baseurl'];
|
301 |
+
$base_path = $base['basedir'];
|
302 |
+
$path = str_replace( $base_url, $base_path, $url );
|
303 |
+
$connection->media( $jdwp_api_media_status, array( 'status' => $twit, 'source' => 'wp-to-twitter', 'include_entities' => 'true', 'media[]'=>"@{$path}" ) );
|
304 |
+
$http_code = ($connection)?$connection->http_code:'failed';
|
305 |
+
$debug = array( $connection, array( 'status' => $twit, 'source' => 'wp-to-twitter', 'include_entities' => 'true', 'media[]'=>"$path" ) );
|
306 |
+
wp_mail( WPT_DEBUG_ADDRESS,'Add Media Test',print_r($debug,1) );
|
307 |
+
} else { */
|
308 |
+
$connection->post( $jdwp_api_post_status, array( 'status' => $twit, 'source' => 'wp-to-twitter', 'include_entities' => 'true', 'lang'=>'de' ) );
|
309 |
+
$http_code = ($connection)?$connection->http_code:'failed';
|
310 |
+
// }
|
311 |
} else if ( wtt_oauth_test( false ) && ( $connection = wtt_oauth_connection( false ) ) ) {
|
312 |
+
$connection->post( $jdwp_api_post_status, array( 'status' => $twit, 'source' => 'wp-to-twitter', 'include_entities' => 'true' ) );
|
313 |
+
$http_code = ($connection)?$connection->http_code:'failed';
|
314 |
}
|
315 |
if ( $connection ) {
|
316 |
+
if ( isset($connection->http_header['x-access-level']) && $connection->http_header['x-access-level'] == 'read' ) { $supplement = __('Your Twitter application does not have read and write permissions. Go to <a href="%s">your Twitter apps</a> to modify these settings.','wp-to-twitter'); } else { $supplement = ''; }
|
317 |
switch ($http_code) {
|
318 |
case '200':
|
319 |
$return = true;
|
333 |
$return = false;
|
334 |
$error = __("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 can include: Too many Tweets created in a short time or the same Tweet was submitted twice in a row, among others. This is not an error by WP to Twitter.",'wp-to-twitter');
|
335 |
break;
|
336 |
+
case '404':
|
337 |
+
$return = false;
|
338 |
+
$error = __("404 Not Found: The URI requested is invalid or the resource requested does not exist.",'wp-to-twitter');
|
339 |
+
break;
|
340 |
+
case '406':
|
341 |
+
$return = false;
|
342 |
+
$error = __("406 Not Acceptable: Invalid Format Specified.",'wp-to-twitter');
|
343 |
+
break;
|
344 |
+
case '429':
|
345 |
+
$return = false;
|
346 |
+
$error = __("429 Too Many Requests: You have exceeded your rate limits.",'wp-to-twitter');
|
347 |
+
break;
|
348 |
case '500':
|
349 |
$return = false;
|
350 |
$error = __("500 Internal Server Error: Something is broken at Twitter.",'wp-to-twitter');
|
351 |
break;
|
352 |
+
case '502':
|
353 |
+
$return = false;
|
354 |
+
$error = __("502 Bad Gateway: Twitter is down or being upgraded.",'wp-to-twitter');
|
355 |
+
break;
|
356 |
case '503':
|
357 |
$return = false;
|
358 |
$error = __("503 Service Unavailable: The Twitter servers are up, but overloaded with requests - Please try again later.",'wp-to-twitter');
|
359 |
break;
|
360 |
+
case '504':
|
361 |
$return = false;
|
362 |
+
$error = __("504 Gateway Timeout: The Twitter servers are up, but the request couldn't be serviced due to some failure within our stack. Try again later.",'wp-to-twitter');
|
363 |
break;
|
364 |
default:
|
365 |
$return = false;
|
366 |
$error = __("<strong>Code $http_code</strong>: Twitter did not return a recognized response code.",'wp-to-twitter');
|
367 |
break;
|
368 |
}
|
369 |
+
$error .= ($supplement != '')?" $supplement":'';
|
370 |
// debugging
|
371 |
+
if ( WPT_DEBUG && function_exists( 'wpt_pro_exists' ) ) {
|
372 |
+
wp_mail( WPT_DEBUG_ADDRESS,'Twitter Response Code',"$http_code, $error" ); // DEBUG
|
373 |
+
}
|
374 |
// end debugging
|
375 |
$update = ( !$auth )?update_option( 'jd_last_tweet',$twit ):update_user_meta( $auth, 'wpt_last_tweet',$twit );
|
376 |
+
wpt_saves_error( $id, $auth, $twit, $error, $http_code, time() );
|
377 |
+
if ( $http_code == '200' ) {
|
378 |
+
$jwt = get_post_meta( $id, '_jd_wp_twitter', true );
|
379 |
+
if ( !is_array( $jwt ) ){ $jwt=array(); }
|
380 |
+
$jwt[] = urldecode( $twit );
|
381 |
+
if ( empty($_POST) ) { $_POST = array(); }
|
382 |
+
$_POST['_jd_wp_twitter'] = $jwt;
|
383 |
+
update_post_meta( $id,'_jd_wp_twitter', $jwt );
|
384 |
+
}
|
385 |
if ( !$return ) {
|
386 |
update_option( 'jd_status_message',$error );
|
387 |
} else {
|
395 |
}
|
396 |
|
397 |
function fake_normalize( $string ) {
|
398 |
+
if ( version_compare( PHP_VERSION, '5.0.0', '>=' ) && function_exists('normalizer_normalize') && 1==2 ) {
|
399 |
if ( normalizer_is_normalized( $string ) ) { return $string; }
|
400 |
return normalizer_normalize( $string );
|
401 |
} else {
|
402 |
+
return preg_replace( '~&([a-z]{1,2})(acute|cedil|circ|grave|lig|orn|ring|slash|th|tilde|uml|mp);~i', '$1', htmlentities( $string, ENT_NOQUOTES, 'UTF-8' ) );
|
403 |
}
|
404 |
}
|
405 |
|
406 |
+
function wpt_is_ssl( $url ) {
|
407 |
+
if ( stripos( $url, 'https' ) ) { return true; } else { return false; }
|
408 |
+
}
|
409 |
+
|
410 |
+
function jd_truncate_tweet( $sentence, $postinfo, $post_ID, $retweet=false, $ref=false ) {
|
411 |
+
$sentence = trim(custom_shortcodes( $sentence, $post_ID ));
|
412 |
+
if ($postinfo['shortUrl'] != '') {
|
413 |
+
$shrink = $postinfo['shortUrl'];
|
414 |
+
} else {
|
415 |
+
$shrink = apply_filters( 'wptt_shorten_link', $postinfo['postLink'], $postinfo['postTitle'], $post_ID, false );
|
416 |
+
store_url( $post_ID, $shrink );
|
417 |
+
}
|
418 |
// generate all template variable values
|
419 |
$auth = $postinfo['authId'];
|
420 |
+
$title = trim( apply_filters( 'wpt_status', $postinfo['postTitle'], $post_ID, 'title' ) );
|
421 |
+
$blogname = trim($postinfo['blogTitle']);
|
422 |
+
$excerpt = trim( apply_filters( 'wpt_status', $postinfo['postExcerpt'], $post_ID, 'post' ) );
|
423 |
+
$thisposturl = trim($shrink);
|
424 |
+
$category = trim($postinfo['category']);
|
425 |
$post = get_post( $post_ID );
|
426 |
+
$user_account = get_user_meta( $auth,'wtt_twitter_username', true ) ;
|
427 |
+
$author = ( $user_account != '' )?"@$user_account":get_the_author_meta( 'display_name',$post->post_author );
|
428 |
+
$display_name = get_the_author_meta( 'display_name',$post->post_author );
|
429 |
+
$tags = generate_hash_tags( $post_ID );
|
430 |
+
$account = "@".get_option('wtt_twitter_username');
|
431 |
+
$date = trim($postinfo['postDate']);
|
432 |
+
$modified = trim($postinfo['postModified']);
|
433 |
if ( get_option( 'jd_individual_twitter_users' ) == 1 ) {
|
434 |
+
if ( $user_account == '' ) {
|
435 |
if ( get_user_meta( $auth, 'wp-to-twitter-enable-user',true ) == 'mainAtTwitter' ) {
|
436 |
+
$account = "@" . stripcslashes(get_user_meta( $auth, 'wp-to-twitter-user-username',true ));
|
437 |
} else if ( get_user_meta( $auth, 'wp-to-twitter-enable-user',true ) == 'mainAtTwitterPlus' ) {
|
438 |
+
$account = "@" . stripcslashes(get_user_meta( $auth, 'wp-to-twitter-user-username',true ) . ' @' . get_option( 'wtt_twitter_username' ));
|
439 |
}
|
440 |
+
} else {
|
441 |
+
$account = "@$user_account";
|
442 |
}
|
443 |
}
|
444 |
+
if ( get_user_meta( $auth, 'wpt-remove', true ) == 'on' ) { $account = ''; }
|
445 |
+
if ( get_option( 'jd_twit_prepend' ) != "" && $sentence != '' ) {
|
446 |
+
$sentence = stripslashes(get_option( 'jd_twit_prepend' )) . " " . $sentence;
|
447 |
+
}
|
448 |
+
if ( get_option( 'jd_twit_append' ) != "" && $sentence != '' ) {
|
449 |
+
$sentence = $sentence . " " . stripslashes(get_option( 'jd_twit_append' ));
|
|
|
450 |
}
|
451 |
$encoding = get_option('blog_charset');
|
452 |
+
|
453 |
+
if ( strpos( $sentence, '#url#' ) === false
|
454 |
+
&& strpos( $sentence, '#title#' ) === false
|
455 |
+
&& strpos( $sentence, '#blog#' ) === false
|
456 |
+
&& strpos( $sentence, '#post#' ) === false
|
457 |
+
&& strpos( $sentence, '#category#' ) === false
|
458 |
+
&& strpos( $sentence, '#date#' ) === false
|
459 |
+
&& strpos( $sentence, '#author#' ) === false
|
460 |
+
&& strpos( $sentence, '#displayname#' ) === false
|
461 |
+
&& strpos( $sentence, '#tags#' ) === false
|
462 |
+
&& strpos( $sentence, '#modified#' ) === false
|
463 |
+
&& strpos( $sentence, '#reference#' ) === false
|
464 |
+
&& strpos( $sentence, '#account#' ) === false
|
465 |
+
) {
|
466 |
+
// there are no tags in this Tweet. Truncate and return.
|
467 |
+
$post_sentence = mb_substr( $sentence , 0, 139 ,$encoding );
|
468 |
+
return $post_sentence;
|
469 |
+
}
|
470 |
+
|
471 |
+
if ( function_exists('wpt_pro_exists') && wpt_pro_exists() == true ) {
|
472 |
+
$reference = ( $ref ) ? $account : '@' . get_option( 'wtt_twitter_username' );
|
473 |
+
}
|
474 |
// create full unconditional post sentence - prior to truncation
|
475 |
+
$post_sentence = str_ireplace( '#account#', $account, $sentence );
|
476 |
+
if ( function_exists('wpt_pro_exists') && wpt_pro_exists() == true ) {
|
477 |
+
$post_sentence = str_ireplace( '#reference#', $reference, $post_sentence );
|
478 |
+
} else {
|
479 |
+
$post_sentence = str_ireplace( '#reference#', '', $post_sentence );
|
480 |
+
}
|
481 |
$post_sentence = str_ireplace( '#url#', $thisposturl, $post_sentence );
|
482 |
+
$post_sentence = str_ireplace( '#title#', $title, $post_sentence );
|
483 |
+
$post_sentence = str_ireplace( '#blog#',$blogname, $post_sentence );
|
484 |
+
$post_sentence = str_ireplace( '#post#',$excerpt, $post_sentence );
|
485 |
+
$post_sentence = str_ireplace( '#category#',$category, $post_sentence );
|
486 |
+
$post_sentence = str_ireplace( '#date#', $date, $post_sentence );
|
487 |
+
$post_sentence = str_ireplace( '#author#', $author, $post_sentence );
|
488 |
+
$post_sentence = str_ireplace( '#displayname#', $display_name, $post_sentence );
|
489 |
+
$post_sentence = str_ireplace( '#tags#', $tags, $post_sentence );
|
490 |
+
$post_sentence = str_ireplace( '#modified#', $modified, $post_sentence );
|
491 |
$url_strlen = mb_strlen( urldecode( fake_normalize( $thisposturl ) ), $encoding );
|
492 |
// check total length
|
493 |
$str_length = mb_strlen( urldecode( fake_normalize( $post_sentence ) ), $encoding );
|
494 |
if ( $str_length < 140 ) {
|
495 |
+
if ( mb_strlen( fake_normalize ( $post_sentence ) ) > 140 ) { $post_sentence = mb_substr( $post_sentence,0,139,$encoding ); }
|
496 |
+
return $post_sentence;
|
497 |
} else {
|
|
|
498 |
// what is the excerpt supposed to be?
|
499 |
$length = get_option( 'jd_post_excerpt' );
|
500 |
// build an array of variable names and the number of characters in that variable.
|
501 |
$length_array = array();
|
502 |
+
$length_array['excerpt'] = mb_strlen(fake_normalize($excerpt),$encoding);
|
503 |
+
$length_array['title'] = mb_strlen(fake_normalize($title),$encoding);
|
504 |
+
$length_array['date'] = mb_strlen(fake_normalize($date),$encoding);
|
505 |
+
$length_array['category'] = mb_strlen(fake_normalize($category),$encoding);
|
506 |
+
$length_array['blogname'] = mb_strlen(fake_normalize($blogname),$encoding);
|
507 |
+
$length_array['author'] = mb_strlen(fake_normalize($author),$encoding);
|
508 |
+
$length_array['account'] = mb_strlen(fake_normalize($account),$encoding);
|
509 |
+
if ( function_exists('wpt_pro_exists') && wpt_pro_exists() == true ) {
|
510 |
+
$length_array['reference'] = mb_strlen(fake_normalize($reference),$encoding);
|
511 |
+
}
|
512 |
+
$length_array['tags'] = mb_strlen(fake_normalize($tags),$encoding);
|
513 |
+
$length_array['modified'] = mb_strlen(fake_normalize($modified),$encoding);
|
514 |
// if the total length is too long, truncate items until the length is appropriate.
|
515 |
// truncation is in order of items which can most afford to be truncated. URL is never truncated.
|
516 |
// Twitter has made their t.co shortener automatic and mandatory; this has some weird effects on
|
517 |
+
// character counting. All URLS are defined by the max-character value set by Twitter. Period.
|
518 |
+
$change = wpt_date_compare( date('Y-m-d'), '2-20-2012' );
|
519 |
+
if ( $change === 1 ) {
|
520 |
+
$tco = ( wpt_is_ssl( $thisposturl ) )?21:20;
|
521 |
+
} else {
|
522 |
+
$tco = ( wpt_is_ssl( $thisposturl ) )?23:22;
|
523 |
+
}
|
524 |
$order = get_option( 'wpt_truncation_order' );
|
525 |
if ( is_array( $order ) ) {
|
526 |
asort($order);
|
531 |
} else {
|
532 |
$preferred = $length_array;
|
533 |
}
|
534 |
+
$diff = ( ($url_strlen - $tco) > 0 )?$url_strlen-$tco:0;
|
535 |
if ( $str_length > ( 140 + $diff ) ) {
|
536 |
foreach($preferred AS $key=>$value) {
|
537 |
$str_length = mb_strlen( urldecode( fake_normalize( trim( $post_sentence ) ) ),$encoding );
|
541 |
// prevent URL from being modified
|
542 |
$post_sentence = str_ireplace( $thisposturl, '#url#', $post_sentence );
|
543 |
// modify the value and replace old with new
|
544 |
+
if ( $key == 'account' || $key == 'author' || $key == 'category' || $key == 'date' || $key == 'modified' || $key == 'reference' ) {
|
545 |
+
// these elements make no sense if truncated, so remove them entirely.
|
546 |
$new_value = '';
|
547 |
} else if ( $key == 'tags' ) {
|
548 |
+
// remove any stray hash characters due to string truncation
|
549 |
+
if (mb_strlen($old_value)-$trim <= 2) {
|
550 |
+
$new_value = '';
|
551 |
+
} else {
|
552 |
+
$new_value = $old_value;
|
553 |
+
while ((mb_strlen($old_value)-$trim) < mb_strlen($new_value)) {
|
554 |
+
$new_value = trim(mb_substr($new_value,0,mb_strrpos($new_value,'#',$encoding)-1));
|
555 |
+
}
|
556 |
+
}
|
557 |
} else {
|
558 |
$new_value = mb_substr( $old_value,0,-( $trim ),$encoding );
|
559 |
}
|
566 |
}
|
567 |
}
|
568 |
// this is needed in case a tweet needs to be truncated outright and the truncation values aren't in the above.
|
569 |
+
// 1) removes URL 2) checks length of remainder 3) Replaces URL
|
570 |
+
if ( mb_strlen( fake_normalize( $post_sentence ) ) > 140 ) {
|
571 |
+
$temp_sentence = str_ireplace( $thisposturl, '#url#', $post_sentence );
|
572 |
+
if ( mb_strlen( fake_normalize( $temp_sentence ) ) > (140-$tco) && $temp_sentence != $post_sentence ) {
|
573 |
+
$post_sentence = trim(mb_substr( $temp_sentence,0,(140-$tco),$encoding ));
|
574 |
+
// it's possible to trim off the #url# part in this process. If that happens, put it back.
|
575 |
+
$sub_sentence = (strpos($sentence, '#url#')===false )?$post_sentence:$post_sentence .' '. $thisposturl;
|
576 |
+
$post_sentence = ( strpos($post_sentence,'#url#') === false )?$sub_sentence:str_ireplace( '#url#',$thisposturl,$post_sentence );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
577 |
} else {
|
578 |
+
return $post_sentence; // only longer if URL is included, therefore fine.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
579 |
}
|
580 |
+
return $post_sentence; // has been shortened due to too much text.
|
581 |
+
} else {
|
582 |
+
return $post_sentence; // was never a problem, but got this far anyway.
|
583 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
584 |
}
|
585 |
+
return $post_sentence; // catch all, should never happen. But no reason not to include it.
|
586 |
}
|
587 |
|
588 |
function in_allowed_category( $array ) {
|
589 |
$allowed_categories = get_option( 'tweet_categories' );
|
590 |
if ( is_array( $array ) && is_array( $allowed_categories ) ) {
|
591 |
$common = @array_intersect( $array,$allowed_categories );
|
592 |
+
if ( WPT_DEBUG && function_exists( 'wpt_pro_exists' ) ) {
|
593 |
+
wp_mail(WPT_DEBUG_ADDRESS,'Category Limits Results: ---', print_r($common,1) );
|
594 |
+
}
|
595 |
if ( count( $common ) >= 1 ) {
|
596 |
return true;
|
597 |
} else {
|
598 |
return false;
|
599 |
}
|
600 |
} else {
|
601 |
+
if ( WPT_DEBUG && function_exists( 'wpt_pro_exists' ) ) {
|
602 |
+
wp_mail(WPT_DEBUG_ADDRESS,'Category limits not arrays.','Content not relevant.');
|
603 |
+
}
|
604 |
return true;
|
605 |
}
|
606 |
}
|
607 |
|
608 |
function jd_post_info( $post_ID ) {
|
609 |
+
$post = get_post( $post_ID );
|
610 |
$category_ids = false;
|
611 |
$values = array();
|
612 |
$values['id'] = $post_ID;
|
613 |
// get post author
|
614 |
+
$values['postinfo'] = $post;
|
615 |
+
$values['authId'] = $post->post_author;
|
616 |
+
$postdate = $post->post_date;
|
617 |
+
$altformat = "Y-m-d H:i:00";
|
618 |
$dateformat = (get_option('jd_date_format')=='')?get_option('date_format'):get_option('jd_date_format');
|
619 |
$thisdate = mysql2date( $dateformat,$postdate );
|
620 |
$altdate = mysql2date( $altformat, $postdate );
|
621 |
$values['_postDate'] = $altdate;
|
622 |
$values['postDate'] = $thisdate;
|
623 |
+
$moddate = $post->post_modified;
|
624 |
+
$values['_postModified'] = mysql2date( $altformat,$moddate );
|
|
|
625 |
$values['postModified'] = mysql2date( $dateformat,$moddate );
|
626 |
// get first category
|
627 |
$category = null;
|
640 |
$values['categoryIds'] = $category_ids;
|
641 |
$values['category'] = $category;
|
642 |
$excerpt_length = get_option( 'jd_post_excerpt' );
|
643 |
+
$post_excerpt = ( trim( $post->post_excerpt ) == "" )?@mb_substr( strip_tags( strip_shortcodes( $post->post_content ) ), 0, $excerpt_length ):@mb_substr( strip_tags( strip_shortcodes( $post->post_excerpt ) ), 0, $excerpt_length );
|
644 |
$values['postExcerpt'] = html_entity_decode( $post_excerpt, ENT_COMPAT, get_option('blog_charset') );
|
645 |
+
$thisposttitle = stripcslashes( strip_tags( $post->post_title ) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
646 |
if ($thisposttitle == "") {
|
647 |
$thisposttitle = stripcslashes( strip_tags( $_POST['title'] ) );
|
648 |
}
|
|
|
649 |
$values['postTitle'] = html_entity_decode( $thisposttitle, ENT_COMPAT, get_option('blog_charset') );
|
650 |
$values['postLink'] = external_or_permalink( $post_ID );
|
651 |
$values['blogTitle'] = get_bloginfo( 'name' );
|
652 |
+
$values['shortUrl'] = wpt_short_url( $post_ID );
|
653 |
+
$values['postStatus'] = $post->post_status;
|
654 |
+
$values['postType'] = $post->post_type;
|
655 |
$values = apply_filters( 'wpt_post_info',$values, $post_ID );
|
656 |
return $values;
|
657 |
}
|
658 |
+
|
659 |
+
function wpt_short_url( $post_id ) {
|
660 |
+
$jd_short = get_post_meta( $post_id, '_wp_jd_clig', true );
|
661 |
+
if ( $jd_short == "" ) {$jd_short = get_post_meta( $post_id, '_wp_jd_supr', true ); }
|
662 |
+
if ( $jd_short == "" ) {$jd_short = get_post_meta( $post_id, '_wp_jd_ind', true ); }
|
663 |
+
if ( $jd_short == "" ) {$jd_short = get_post_meta( $post_id, '_wp_jd_bitly', true );}
|
664 |
+
if ( $jd_short == "" ) {$jd_short = get_post_meta( $post_id, '_wp_jd_wp', true ); }
|
665 |
+
if ( $jd_short == "" ) {$jd_short = get_post_meta( $post_id, '_wp_jd_yourls', true );}
|
666 |
+
if ( $jd_short == "" ) {$jd_short = get_post_meta( $post_id, '_wp_jd_url', true );}
|
667 |
+
if ( $jd_short == "" ) {$jd_short = get_post_meta( $post_id, '_wp_jd_goo', true );}
|
668 |
+
if ( $jd_short == "" ) {$jd_short = get_post_meta( $post_id, '_wp_jd_target', true );}
|
669 |
+
return $jd_short;
|
670 |
}
|
|
|
671 |
|
672 |
function jd_get_post_meta( $post_ID, $value, $boolean ) {
|
673 |
$return = get_post_meta( $post_ID, "_$value", TRUE );
|
677 |
return $return;
|
678 |
}
|
679 |
|
680 |
+
function jd_twit( $post_ID, $type='instant' ) {
|
681 |
+
// new
|
682 |
+
if ( WPT_DEBUG && function_exists( 'wpt_pro_exists' ) ) {
|
683 |
+
wp_mail( WPT_DEBUG_ADDRESS,"jd_twit 0: jd_twit running #$post_ID","Post ID: $post_ID" ); // DEBUG
|
684 |
+
}
|
685 |
+
if ( defined('DOING_AUTOSAVE') && DOING_AUTOSAVE || wp_is_post_revision($post_ID) ) { return $post_ID; }
|
686 |
wpt_check_version();
|
687 |
$jd_tweet_this = get_post_meta( $post_ID, '_jd_tweet_this', true );
|
688 |
$newpost = $oldpost = $is_inline_edit = false;
|
689 |
+
$sentence = '';
|
690 |
if ( get_option('wpt_inline_edits') != 1 ) {
|
691 |
if ( isset($_POST['_inline_edit']) ) { return; }
|
692 |
} else {
|
693 |
if ( isset($_POST['_inline_edit']) ) { $is_inline_edit = true; }
|
694 |
}
|
695 |
+
if ( WPT_DEBUG && function_exists( 'wpt_pro_exists' ) ) {
|
696 |
+
wp_mail( WPT_DEBUG_ADDRESS,"jd_twit 1: JD Tweet This Value: #$post_ID","Tweet this: $jd_tweet_this" ); // DEBUG
|
697 |
+
}
|
698 |
+
if ( get_option('jd_tweet_default') == 0 ) {
|
699 |
+
$test = ( $jd_tweet_this != 'no')?true:false;
|
700 |
+
} else {
|
701 |
+
$test = ( $jd_tweet_this == 'yes')?true:false;
|
702 |
+
}
|
703 |
+
if ( $test ) { // test switch: depend on default settings.
|
704 |
$post_info = jd_post_info( $post_ID );
|
705 |
+
if ( function_exists( 'wpt_pro_exists' ) && wpt_pro_exists() == true ) {
|
706 |
+
$auth = ( get_option( 'wpt_cotweet_lock' ) == 'false' || !get_option('wpt_cotweet_lock') )?$post_info['authId']:get_option('wpt_cotweet_lock');
|
707 |
+
} else {
|
708 |
+
$auth = $post_info['authId'];
|
709 |
+
}
|
710 |
+
/* debug data */
|
711 |
+
if ( WPT_DEBUG && function_exists( 'wpt_pro_exists' ) ) {
|
712 |
+
wp_mail(WPT_DEBUG_ADDRESS,"jd_twit 2: POST Debug Data #$post_ID","Post_Info: ".print_r($post_info,1)."POST: ".print_r($_POST, 1) );
|
713 |
+
}
|
714 |
+
if ( function_exists( 'wpt_pro_exists' ) && wpt_pro_exists() == true && function_exists('wpt_filter_post_info') ) {
|
715 |
+
$filter = wpt_filter_post_info( $post_info );
|
716 |
+
if ( $filter == true ) {
|
717 |
+
if ( WPT_DEBUG && function_exists( 'wpt_pro_exists' ) ) {
|
718 |
+
wp_mail( WPT_DEBUG_ADDRESS,"jd_twit 3: Post filtered: #$post_ID",print_r($post_info,1) );
|
719 |
+
}
|
720 |
+
return false;
|
721 |
+
}
|
722 |
+
}
|
723 |
$post_type = $post_info['postType'];
|
724 |
// if the post modified date and the post date are the same, this is new.
|
725 |
+
if ( $type == 'future' ) {
|
726 |
+
$new = 1; // if this is a future action, then it should be published regardless of relationship
|
727 |
+
if ( WPT_DEBUG && function_exists( 'wpt_pro_exists' ) ) {
|
728 |
+
wp_mail( WPT_DEBUG_ADDRESS,"jd_twit 4: Future post: #$post_ID",print_r($post_info,1) );
|
729 |
+
}
|
730 |
+
} else {
|
731 |
+
$new = wpt_date_compare( $post_info['_postModified'], $post_info['_postDate'] );
|
732 |
+
}
|
733 |
// if this post is not previously published but has been backdated: lit. if post date is edited, but save option is 'publish'
|
734 |
if ( $new == 0 && ( isset( $_POST['edit_date'] ) && $_POST['edit_date'] == 1 && !isset( $_POST['save'] ) ) ) { $new = 1; }
|
735 |
// post modified = updated? // postdate == published? therefore: posts which have been updated after creation (scheduled, updated in draft) may not turn up as new. // postStatus == future
|
736 |
$post_type_settings = get_option('wpt_post_types');
|
737 |
$post_types = array_keys($post_type_settings);
|
738 |
if ( in_array( $post_type, $post_types ) ) {
|
739 |
+
$template = '';
|
740 |
$cT = get_post_meta( $post_ID, '_jd_twitter', true );
|
741 |
if ( isset( $_POST['_jd_twitter'] ) && $_POST['_jd_twitter'] != '' ) { $cT = $_POST['_jd_twitter']; }
|
742 |
$customTweet = ( $cT != '' )?stripcslashes( trim( $cT ) ):'';
|
743 |
+
// excluded post statuses that should never be tweeted
|
744 |
+
// if ( $post_info['postStatus'] != 'draft' && $post_info['postStatus'] != 'auto-draft' && $post_info['postStatus'] != 'private' && $post_info['postStatus'] != 'inherit' && $post_info['postStatus'] != 'trash' ) { // eliminated 12/30/2012. Continue testing JCD
|
745 |
// && $post_info['postStatus'] != 'pending'
|
746 |
// if ops is set and equals 'publish', this is being edited. Otherwise, it's a new post.
|
747 |
if ( ( $new == 0 && $post_info['postStatus'] != 'future' ) || $is_inline_edit == true ) {
|
748 |
// if this is an old post and editing updates are enabled
|
749 |
+
if ( WPT_DEBUG && function_exists( 'wpt_pro_exists' ) ) {
|
750 |
+
wp_mail( WPT_DEBUG_ADDRESS,"jd_twit 4a: Processed as an Edit #$post_ID","Tweet this post: ".$post_info['postTitle']."\n".print_r($post_info,1) ); // DEBUG
|
751 |
+
}
|
752 |
+
if ( $post_type_settings[$post_type]['post-edited-update'] == '1' ) {
|
753 |
$nptext = stripcslashes( $post_type_settings[$post_type]['post-edited-text'] );
|
754 |
$oldpost = true;
|
755 |
}
|
756 |
} else {
|
757 |
+
if ( WPT_DEBUG && function_exists( 'wpt_pro_exists' ) ) {
|
758 |
+
wp_mail( WPT_DEBUG_ADDRESS,"jd_twit 4b: Processed as a New Post #$post_ID","Tweet this: ".$post_info['postTitle']."\n".print_r($post_info,1) ); // DEBUG
|
759 |
+
}
|
760 |
if ( $post_type_settings[$post_type]['post-published-update'] == '1' ) {
|
761 |
$nptext = stripcslashes( $post_type_settings[$post_type]['post-published-text'] );
|
762 |
$newpost = true;
|
763 |
}
|
764 |
}
|
765 |
+
// }
|
766 |
if ($newpost || $oldpost) {
|
767 |
+
$template = ( $customTweet != "" ) ? $customTweet : $nptext;
|
768 |
+
$sentence = jd_truncate_tweet( $template, $post_info, $post_ID );
|
769 |
+
if ( WPT_DEBUG && function_exists( 'wpt_pro_exists' ) ) {
|
770 |
+
wp_mail( WPT_DEBUG_ADDRESS,"jd_twit 5: Tweet Truncated #$post_ID","Truncated Tweet: $sentence" ); // DEBUG
|
771 |
+
}
|
772 |
+
if ( function_exists('wpt_pro_exists') && wpt_pro_exists() == true ) {
|
773 |
+
$sentence2 = jd_truncate_tweet( $template, $post_info, $post_ID, false, $auth );
|
774 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
775 |
}
|
776 |
if ( $sentence != '' ) {
|
777 |
if ( get_option('jd_twit_cats') == '1' ) {
|
779 |
} else {
|
780 |
$continue = ( in_allowed_category( $post_info['categoryIds'] ) )?true:false;
|
781 |
}
|
782 |
+
if ( WPT_DEBUG && function_exists( 'wpt_pro_exists' ) && !$continue ) {
|
783 |
+
wp_mail(WPT_DEBUG_ADDRESS,"jd_twit 6: Category limits applied #$post_ID", print_r($post_info['categoryIds'],1) );
|
784 |
+
}
|
785 |
if ( get_option('limit_categories') == '0' ) { $continue = true; }
|
786 |
if ( $continue ) {
|
787 |
// WPT PRO //
|
788 |
+
if ( function_exists( 'wpt_pro_exists' ) && wpt_pro_exists() == true ) {
|
|
|
789 |
$user = get_userdata( $auth );
|
790 |
$auth_verified = wtt_oauth_test( $auth,'verify' );
|
791 |
+
$auth = ( get_option( 'jd_individual_twitter_users' ) != 1 || !$auth_verified )?false:$auth;
|
792 |
+
if ( $post_info['wpt_delay_tweet'] == 0 || $post_info['wpt_delay_tweet'] == '' || $post_info['wpt_no_delay'] == 'on' ) {
|
793 |
+
$tweet = jd_doTwitterAPIPost( $sentence, $auth, $post_ID );
|
794 |
if ( $post_info['wpt_cotweet'] == 1 && $auth_verified ) {
|
795 |
+
$tweet2 = jd_doTwitterAPIPost( $sentence2, false, $post_ID );
|
|
|
796 |
}
|
797 |
} else {
|
798 |
$time = ( (int) $post_info['wpt_delay_tweet'] )*60;
|
799 |
+
wp_schedule_single_event( time()+$time, 'wpt_schedule_tweet_action', array( 'id'=>$auth, 'sentence'=>$sentence, 'rt'=>0, 'post_id'=>$post_ID ) );
|
800 |
+
if ( WPT_DEBUG && function_exists( 'wpt_pro_exists' ) ) {
|
801 |
+
wp_mail( WPT_DEBUG_ADDRESS,"jd_twit 7: JD Main Tweet Scheduled #$post_ID",print_r( array( 'id'=>$auth, 'sentence'=>$sentence, 'rt'=>0, 'post_id'=>$post_ID, 'timestamp'=>time()+$time, 'current_time'=>time(), 'timezone'=>get_option('gmt_offset') ),1) ); // DEBUG
|
802 |
+
}
|
803 |
+
|
804 |
if ( $post_info['wpt_cotweet'] == 1 && $auth_verified ) {
|
805 |
$offset = rand(60,240); // delay co-tweet by 1-4 minutes.
|
806 |
+
wp_schedule_single_event( time()+$time+$offset, 'wpt_schedule_tweet_action', array( 'id'=>false, 'sentence'=>$sentence2, 'rt'=>0, 'post_id'=>$post_ID ) );
|
807 |
+
if ( WPT_DEBUG && function_exists( 'wpt_pro_exists' ) ) {
|
808 |
+
wp_mail( WPT_DEBUG_ADDRESS,"jd_twit 8: JD CoTweet Scheduled #$post_ID",print_r($post_info,1) ); // DEBUG
|
809 |
+
}
|
810 |
+
}
|
811 |
+
$tweet = true;
|
812 |
}
|
813 |
if ( $post_info['wpt_retweet_after'] != 0 && $post_info['wpt_no_repost'] != 'on' ) {
|
814 |
$repeat = $post_info['wpt_retweet_repeat'];
|
815 |
for ( $i=1;$i<=$repeat;$i++ ) {
|
816 |
+
if ( $i == 1 ) {
|
817 |
+
$prepend = ( get_option('wpt_prepend') == 1 )?'':get_option('wpt_prepend_rt');
|
818 |
+
$append = ( get_option('wpt_prepend') != 1 )?'':get_option('wpt_prepend_rt');
|
819 |
+
$retweet = jd_truncate_tweet( trim( $prepend.$template.$append ), $post_info, $post_ID,true );
|
820 |
+
$retweet2 = jd_truncate_tweet( trim( $prepend.$template.$append ), $post_info, $post_ID, true, $auth );
|
821 |
+
}
|
822 |
+
if ( $i == 2 ) {
|
823 |
+
$prepend = ( get_option('wpt_prepend') == 1 )?'':get_option('wpt_prepend_rt2');
|
824 |
+
$append = ( get_option('wpt_prepend') != 1 )?'':get_option('wpt_prepend_rt2');
|
825 |
+
$retweet = jd_truncate_tweet( trim( $prepend.$template.$append ), $post_info, $post_ID,true );
|
826 |
+
$retweet2 = jd_truncate_tweet( trim( $prepend.$template.$append ), $post_info, $post_ID, true, $auth );
|
827 |
+
}
|
828 |
+
if ( $i == 3 ) {
|
829 |
+
$prepend = ( get_option('wpt_prepend') == 1 )?'':get_option('wpt_prepend_rt3');
|
830 |
+
$append = ( get_option('wpt_prepend') != 1 )?'':get_option('wpt_prepend_rt3');
|
831 |
+
$retweet = jd_truncate_tweet( trim( $prepend.$template.$append ), $post_info, $post_ID,true );
|
832 |
+
$retweet2 = jd_truncate_tweet( trim( $prepend.$template.$append ), $post_info, $post_ID, true, $auth );
|
833 |
+
}
|
834 |
+
if ( $i == 4 ) {
|
835 |
+
$prepend = ( get_option('wpt_prepend') == 1 )?'':get_option('wpt_prepend_rt');
|
836 |
+
$append = ( get_option('wpt_prepend') != 1 )?'':get_option('wpt_prepend_rt');
|
837 |
+
$retweet = jd_truncate_tweet( trim( $prepend.$template.$append ), $post_info, $post_ID,true );
|
838 |
+
$retweet2 = jd_truncate_tweet( trim( $prepend.$template.$append ), $post_info, $post_ID, true, $auth );
|
839 |
+
}
|
840 |
+
// add original delay to schedule
|
841 |
+
$delay = ( isset($post_info['wpt_delay_tweet'] ) )?( (int) $post_info['wpt_delay_tweet'] )*60:0;
|
842 |
$time = ($post_info['wpt_retweet_after'])*(60*60)*$i;
|
843 |
+
wp_schedule_single_event( time()+$time+$delay, 'wpt_schedule_tweet_action', array( 'id'=>$auth, 'sentence'=>$retweet, 'rt'=>$i, 'post_id'=>$post_ID ) );
|
844 |
if ( $post_info['wpt_cotweet'] == 1 && $auth_verified ) {
|
845 |
$offset = rand(60,240); // delay each co-tweet by 1-4 minutes
|
846 |
+
wp_schedule_single_event( time()+$time+$offset+$delay, 'wpt_schedule_tweet_action', array( 'id'=>false, 'sentence'=>$retweet2, 'rt'=>$i, 'post_id'=>$post_ID ) );
|
847 |
}
|
848 |
+
$tweet = true;
|
849 |
if ( $i == 4 ) { break; }
|
850 |
}
|
851 |
}
|
852 |
} else {
|
853 |
+
$tweet = jd_doTwitterAPIPost( $sentence, false, $post_ID );
|
854 |
}
|
855 |
// END WPT PRO //
|
856 |
+
if ( $tweet == false ) {
|
|
|
|
|
|
|
|
|
|
|
857 |
update_option( 'wp_twitter_failure','1' );
|
858 |
}
|
859 |
}
|
865 |
return $post_ID;
|
866 |
}
|
867 |
|
|
|
868 |
// Add Tweets on links in Blogroll
|
869 |
function jd_twit_link( $link_ID ) {
|
870 |
wpt_check_version();
|
878 |
$sentence = str_ireplace("#title#",$thislinkname,$sentence);
|
879 |
$sentence = str_ireplace("#description#",$thislinkdescription,$sentence);
|
880 |
|
881 |
+
if (mb_strlen( $sentence ) > 118) {
|
882 |
+
$sentence = mb_substr($sentence,0,114) . '...';
|
883 |
}
|
884 |
+
$shrink = apply_filters( 'wptt_shorten_link', $thispostlink, $thislinkname, false, 'link' );
|
885 |
if ( stripos($sentence,"#url#") === FALSE ) {
|
886 |
$sentence = $sentence . " " . $shrink;
|
887 |
} else {
|
888 |
$sentence = str_ireplace("#url#",$shrink,$sentence);
|
889 |
}
|
890 |
if ( $sentence != '' ) {
|
891 |
+
$tweet = jd_doTwitterAPIPost( $sentence, false, $link_ID );
|
892 |
+
if ( $tweet == false ) { update_option('wp_twitter_failure','2'); }
|
893 |
}
|
894 |
return $link_ID;
|
895 |
} else {
|
901 |
wpt_check_version();
|
902 |
|
903 |
$post_info = jd_post_info( $post_ID );
|
904 |
+
if ( function_exists( 'wpt_pro_exists' ) && wpt_pro_exists() == true ) {
|
905 |
+
$auth = ( get_option( 'wpt_cotweet_lock' ) == 'false' || !get_option('wpt_cotweet_lock') )?$post_info['authId']:get_option('wpt_cotweet_lock');
|
906 |
+
} else {
|
907 |
+
$auth = $post_info['authId'];
|
908 |
+
}
|
909 |
$post_type = $post_info['postType'];
|
910 |
$settings = get_option('wpt_post_types');
|
911 |
$post_types = array_keys($settings);
|
912 |
// if the post modified date and the post date are the same, this is new.
|
913 |
$new = wpt_date_compare( $post_info['_postModified'], $post_info['_postDate'] );
|
914 |
if ( in_array( $post_type, $post_types ) ) {
|
915 |
+
$template = '';
|
916 |
if ( get_option('jd_tweet_default') != '1' && get_option('jd_twit_remote') == '1' ) {
|
917 |
$poststatus = $post_info['postStatus'];
|
918 |
if ( $poststatus == 'publish' ) {
|
919 |
if ( $new === 1 && $settings[$post_type]['post-published-update'] == '1' ) {
|
920 |
+
$template = stripcslashes( $settings[$post_type]['post-published-text'] );
|
921 |
+
} else if ( $new === 0 && $settings[$post_type]['post-edited-update'] == '1' && get_option( 'jd_tweet_default_edit' ) != '1' ) {
|
922 |
+
$template = stripcslashes( $settings[$post_type]['post-edited-text'] );
|
923 |
} else {
|
924 |
return;
|
925 |
}
|
926 |
} else {
|
927 |
return;
|
928 |
+
}
|
|
|
|
|
|
|
929 |
// Check the length of the Tweet and truncate parts as necessary.
|
930 |
+
$sentence = jd_truncate_tweet( $template, $post_info, $post_ID );
|
931 |
+
if ( function_exists('wpt_pro_exists') ) {
|
932 |
+
$sentence2 = jd_truncate_tweet( $template, $post_info, $post_ID, false, $auth );
|
933 |
+
}
|
934 |
if ( $sentence != '' ) {
|
935 |
if ( get_option('jd_twit_cats') == '1' ) {
|
936 |
$continue = ( !in_allowed_category( $post_info['categoryIds'] ) )?true:false;
|
941 |
if ( $continue ) {
|
942 |
// WPT PRO //
|
943 |
if ( function_exists( 'wpt_pro_exists' ) ) {
|
|
|
944 |
$user = get_userdata( $auth );
|
945 |
+
$auth_verified = wtt_oauth_test( $auth,'verify' );
|
946 |
+
if ( $post_info['wpt_delay_tweet'] == 0 || $post_info['wpt_delay_tweet'] == '' || $post_info['wpt_no_delay'] == 'on' ) {
|
947 |
+
$tweet = jd_doTwitterAPIPost( $sentence, $auth, $post_ID );
|
948 |
+
if ( $post_info['wpt_cotweet'] == 1 && $auth_verified ) {
|
949 |
+
$offset = rand(60,240); // delay co-tweet by 1-4 minutes.
|
950 |
+
wp_schedule_single_event( time()+$offset, 'wpt_schedule_tweet_action', array( 'id'=>false, 'sentence'=>$sentence2, 'rt'=>0, 'post_id'=>$post_ID ) );
|
951 |
+
}
|
952 |
} else {
|
953 |
$time = ( (int) $post_info['wpt_delay_tweet'] )*60;
|
954 |
+
wp_schedule_single_event( time()+$time, 'wpt_schedule_tweet_action', array( 'id'=>$auth, 'sentence'=>$sentence, 'rt'=>0, 'post_id'=>$post_ID ) );
|
955 |
+
if ( $post_info['wpt_cotweet'] == 1 && $auth_verified ) {
|
956 |
+
$offset = rand(60,240); // delay co-tweet by 1-4 minutes.
|
957 |
+
wp_schedule_single_event( time()+$time+$offset, 'wpt_schedule_tweet_action', array( 'id'=>false, 'sentence'=>$sentence2, 'rt'=>0, 'post_id'=>$post_ID ) );
|
958 |
+
}
|
959 |
+
$tweet = true;
|
960 |
}
|
961 |
if ( $post_info['wpt_retweet_after'] != 0 && $post_info['wpt_no_repost'] != 'on' ) {
|
962 |
$repeat = $post_info['wpt_retweet_repeat'];
|
963 |
for ( $i=1;$i<=$repeat;$i++ ) {
|
964 |
+
if ( $i == 1 ) {
|
965 |
+
$prepend = ( get_option('wpt_prepend') == 1 )?'':get_option('wpt_prepend_rt');
|
966 |
+
$append = ( get_option('wpt_prepend') != 1 )?'':get_option('wpt_prepend_rt');
|
967 |
+
$retweet = jd_truncate_tweet( trim( $prepend.$sentence.$append ), $post_info, $post_ID,true );
|
968 |
+
$retweet2 = jd_truncate_tweet( trim( $prepend.$sentence2.$append ), $post_info, $post_ID,true, $auth );
|
969 |
+
}
|
970 |
+
if ( $i == 2 ) {
|
971 |
+
$prepend = ( get_option('wpt_prepend') == 1 )?'':get_option('wpt_prepend_rt2');
|
972 |
+
$append = ( get_option('wpt_prepend') != 1 )?'':get_option('wpt_prepend_rt2');
|
973 |
+
$retweet = jd_truncate_tweet( trim( $prepend.$sentence.$append ), $post_info, $post_ID,true );
|
974 |
+
$retweet2 = jd_truncate_tweet( trim( $prepend.$sentence2.$append ), $post_info, $post_ID,true, $auth );
|
975 |
+
}
|
976 |
+
if ( $i == 3 ) {
|
977 |
+
$retweet = $sentence;
|
978 |
+
}
|
979 |
+
if ( $i == 4 ) {
|
980 |
+
$prepend = ( get_option('wpt_prepend') == 1 )?'':get_option('wpt_prepend_rt');
|
981 |
+
$append = ( get_option('wpt_prepend') != 1 )?'':get_option('wpt_prepend_rt');
|
982 |
+
$retweet = jd_truncate_tweet( trim( $prepend.$sentence.$append ), $post_info, $post_ID,true );
|
983 |
+
$retweet2 = jd_truncate_tweet( trim( $prepend.$sentence2.$append ), $post_info, $post_ID,true, $auth );
|
984 |
+
}
|
985 |
$time = ($post_info['wpt_retweet_after'])*(60*60)*$i;
|
986 |
+
wp_schedule_single_event( time()+$time, 'wpt_schedule_tweet_action', array( 'id'=>$auth, 'sentence'=>$retweet, 'rt'=>$i, 'post_id'=>$post_ID ) );
|
987 |
+
if ( $post_info['wpt_cotweet'] == 1 && $auth_verified ) {
|
988 |
+
$offset = rand(60,240); // delay each co-tweet by 1-4 minutes
|
989 |
+
wp_schedule_single_event( time()+$time+$offset, 'wpt_schedule_tweet_action', array( 'id'=>false, 'sentence'=>$retweet2, 'rt'=>$i, 'post_id'=>$post_ID ) );
|
990 |
+
}
|
991 |
+
$tweet = true;
|
992 |
if ( $i == 4 ) { break; }
|
993 |
}
|
994 |
}
|
995 |
} else {
|
996 |
+
$tweet = jd_doTwitterAPIPost( $sentence, false, $post_ID );
|
997 |
}
|
998 |
// END WPT PRO //
|
999 |
+
/*if ( $tweet && $tweet != 2 ) {
|
1000 |
+
$jwt = get_post_meta( $post_ID, '_jd_wp_twitter', true );
|
1001 |
+
if ( !is_array( $jwt ) ){ $jwt=array(); }
|
1002 |
+
$jwt[] = urldecode( $sentence );
|
1003 |
+
$_POST['_jd_wp_twitter'] = $jwt;
|
1004 |
+
update_post_meta( $post_ID,'_jd_wp_twitter', $jwt );
|
1005 |
+
}*/
|
1006 |
+
if ($tweet == false ) {
|
1007 |
update_option('wp_twitter_failure','1');
|
1008 |
}
|
1009 |
}
|
1023 |
$post_info = jd_post_info( $post_ID );
|
1024 |
$sentence = '';
|
1025 |
$sentence = stripcslashes( get_option( 'comment-published-text' ) );
|
1026 |
+
$sentence = jd_truncate_tweet( $sentence, $post_info, $post_ID );
|
|
|
|
|
|
|
|
|
|
|
|
|
1027 |
$sentence = str_replace("#commenter#",$commenter,$sentence);
|
1028 |
if ( $sentence != '' ) {
|
1029 |
+
$tweet = jd_doTwitterAPIPost( $sentence, false, $post_ID );
|
1030 |
}
|
1031 |
}
|
1032 |
return $post_ID;
|
1035 |
add_action('admin_menu','jd_add_twitter_outer_box');
|
1036 |
|
1037 |
function store_url($post_ID, $url) {
|
1038 |
+
if ( function_exists('jd_shorten_link') ) {
|
1039 |
+
$shortener = get_option( 'jd_shortener' );
|
1040 |
+
switch ($shortener) {
|
1041 |
+
case 0: case 1: case 4: $ext = '_wp';break;
|
1042 |
+
case 2: $ext = '_bitly';break;
|
1043 |
+
case 3: $ext = '_url';break;
|
1044 |
+
case 5: case 6: $ext = '_yourls';break;
|
1045 |
+
case 7: $ext = '_supr'; break;
|
1046 |
+
case 8: $ext = '_goo'; break;
|
1047 |
+
case 9: $ext = '_tfl'; break;
|
1048 |
+
default:$ext = '_ind';
|
1049 |
+
}
|
1050 |
+
if ( get_post_meta ( $post_ID, "_wp_jd$ext", TRUE ) != $url ) {
|
1051 |
+
update_post_meta ( $post_ID, "_wp_jd$ext", $url );
|
1052 |
+
}
|
1053 |
+
switch ( $shortener ) {
|
1054 |
+
case 0: case 1: case 2: case 7: case 8: $target = jd_expand_url( $url );break;
|
1055 |
+
case 5: case 6: $target = jd_expand_yourl( $url, $shortener );break;
|
1056 |
+
case 9: $target = $url;
|
1057 |
+
default: $target = $url;
|
1058 |
+
}
|
1059 |
}
|
1060 |
update_post_meta( $post_ID, '_wp_jd_target', $target );
|
1061 |
}
|
1070 |
if ( $tags > 0 ) {
|
1071 |
$i = 1;
|
1072 |
foreach ( $tags as $value ) {
|
1073 |
+
if ( get_option('wpt_tag_source') == 'slug' ) {
|
1074 |
+
$tag = $value->slug;
|
1075 |
+
} else {
|
1076 |
+
$tag = $value->name;
|
1077 |
+
}
|
1078 |
$replace = get_option( 'jd_replace_character' );
|
1079 |
$strip = get_option( 'jd_strip_nonan' );
|
1080 |
+
$search = "/[^\p{L}\p{N}\s]/u";
|
1081 |
if ($replace == "[ ]") { $replace = ""; }
|
1082 |
$tag = str_ireplace( " ",$replace,trim( $tag ) );
|
1083 |
if ($strip == '1') { $tag = preg_replace( $search, $replace, $tag ); }
|
1112 |
}
|
1113 |
|
1114 |
function jd_add_twitter_inner_box() {
|
1115 |
+
|
1116 |
+
if ( current_user_can('wpt_can_tweet') ) {
|
1117 |
global $post, $jd_plugin_url, $jd_donate_url;
|
1118 |
$post_length = 140;
|
1119 |
$wpt_settings = get_option('wpt_post_types');
|
1127 |
$type = $post->post_type;
|
1128 |
$status = $post->post_status;
|
1129 |
}
|
|
|
|
|
|
|
1130 |
$jd_twitter = esc_attr( stripcslashes( get_post_meta($post_id, '_jd_twitter', true ) ) );
|
1131 |
$jd_template = ( $status == 'publish' )?$wpt_settings[$type]['post-edited-text']:$wpt_settings[$type]['post-published-text'];
|
1132 |
$jd_tweet_this = get_post_meta( $post_id, '_jd_tweet_this', true );
|
1133 |
+
if ( $jd_tweet_this == '' ) {
|
1134 |
+
$jd_tweet_this = (get_option( 'jd_tweet_default' ) == '1' )?'no':'yes';
|
1135 |
+
}
|
1136 |
+
if ( isset($_GET['action']) && $_GET['action'] == 'edit' && get_option( 'jd_tweet_default_edit' ) == '1' ) { $jd_tweet_this = 'no'; }
|
|
|
|
|
|
|
|
|
|
|
|
|
1137 |
$previous_tweets = get_post_meta ( $post_id, '_jd_wp_twitter', true );
|
1138 |
+
$failed_tweets = get_post_meta( $post_id, '_wpt_failed' );
|
1139 |
?>
|
1140 |
+
<?php if ( current_user_can('update_core') && function_exists( 'wpt_pro_exists' ) ) { wpt_pro_compatibility(); } ?>
|
|
|
1141 |
|
1142 |
+
<?php if ( !is_array( $previous_tweets ) && $previous_tweets != '' ) { $previous_tweets = array( 0=>$previous_tweets ); } ?>
|
1143 |
+
<?php if ( ! empty( $previous_tweets ) || ! empty( $failed_tweets ) ) { ?>
|
1144 |
<p class='error'><strong><?php _e('Previous Tweets','wp-to-twitter'); ?>:</strong></p>
|
1145 |
<ul>
|
1146 |
<?php
|
1147 |
$hidden_fields = '';
|
1148 |
+
if ( is_array( $previous_tweets ) ) {
|
1149 |
+
foreach ( $previous_tweets as $previous_tweet ) {
|
1150 |
+
if ( $previous_tweet != '' ) {
|
1151 |
+
$hidden_fields .= "<input type='hidden' name='_jd_wp_twitter[]' value='".esc_attr($previous_tweet)."' />";
|
1152 |
+
echo "<li>$previous_tweet <a href='http://twitter.com/intent/tweet?text=".urlencode($previous_tweet)."'>Retweet this</a></li>";
|
1153 |
+
}
|
1154 |
+
}
|
1155 |
+
}
|
1156 |
+
?>
|
1157 |
+
</ul>
|
1158 |
+
<p class='error'><strong><?php _e('Failed Tweets','wp-to-twitter'); ?>:</strong></p>
|
1159 |
+
<ul>
|
1160 |
+
<?php
|
1161 |
+
$list = false;
|
1162 |
+
if ( is_array( $failed_tweets ) ) {
|
1163 |
+
foreach ( $failed_tweets as $failed_tweet ) {
|
1164 |
+
if ( !empty($failed_tweet) ) {
|
1165 |
+
$ft = $failed_tweet['sentence'];
|
1166 |
+
$reason = $failed_tweet['code'];
|
1167 |
+
$error = $failed_tweet['error'];
|
1168 |
+
$list = true;
|
1169 |
+
echo "<li> <code title='$error'>Error: $reason</code> $ft <a href='http://twitter.com/intent/tweet?text=".urlencode($ft)."'>Tweet this</a></li>";
|
1170 |
+
}
|
1171 |
}
|
1172 |
}
|
1173 |
+
if ( !$list ) { echo "<li>".__('No failed tweets on this post.','wp-to-twitter')."</li>"; }
|
1174 |
?>
|
1175 |
</ul>
|
1176 |
<?php echo "<div>".$hidden_fields."</div>"; } ?>
|
1177 |
+
<?php if ( current_user_can('update_core') && !function_exists( 'wpt_pro_exists' ) ) { ?> <strong><a target="__blank" href="<?php echo $jd_donate_url; ?>"><?php _e('WP to Twitter can do more for you! Take a look at WP Tweets Pro!', 'wp-to-twitter', 'wp-to-twitter') ?></a></strong> <?php } ?>
|
1178 |
<?php if ( current_user_can( 'wpt_twitter_custom' ) || current_user_can('update_core') ) { ?>
|
1179 |
<p class='jtw'>
|
1180 |
<label for="jtw"><?php _e("Custom Twitter Post", 'wp-to-twitter', 'wp-to-twitter') ?></label><br /><textarea class="attachmentlinks" name="_jd_twitter" id="jtw" rows="2" cols="60"><?php echo esc_attr( $jd_twitter ); ?></textarea>
|
1181 |
</p>
|
1182 |
+
<?php
|
1183 |
+
$jd_expanded = $jd_template;
|
1184 |
+
if ( get_option( 'jd_twit_prepend' ) != "" ) {
|
1185 |
+
$jd_expanded = "<span title='".__('Your prepended Tweet text; not part of your template.','wp-to-twitter')."'>".stripslashes( get_option( 'jd_twit_prepend' )) . "</span> " . $jd_expanded;
|
1186 |
+
}
|
1187 |
+
if ( get_option( 'jd_twit_append' ) != "" ) {
|
1188 |
+
$jd_expanded = $jd_expanded . " <span title='".__('Your appended Tweet text; not part of your template.','wp-to-twitter')."'>" . stripslashes(get_option( 'jd_twit_append' ))."</span>";
|
1189 |
+
}
|
1190 |
+
/* $turl = ( $status = "publish" )?wpt_short_url( $post_id ):'http://t.co/example1';
|
1191 |
+
$search = array( '#url#','#title#','#reference#','#post#','#category#','#date#','#modified#','#author#','#account#','#tags#','#blog#' );
|
1192 |
+
$replace = array(
|
1193 |
+
'<span class="tw_url">'.$turl.'</span>',
|
1194 |
+
'<span class="tw_title">#title#</span>',
|
1195 |
+
'<span class="tw_post">#post#</span>',
|
1196 |
+
'<span class="tw_reference">#reference#</span>',
|
1197 |
+
'<span class="tw_category">#category#</span>',
|
1198 |
+
'<span class="tw_date">#date#</span>',
|
1199 |
+
'<span class="tw_modified">#modified#</span>',
|
1200 |
+
'<span class="tw_author">#author#</span>',
|
1201 |
+
'<span class="tw_tags">#tags#</span>',
|
1202 |
+
get_bloginfo('blogname') );
|
1203 |
+
$jd_expanded = str_replace( $search, $replace, $jd_expanded ); */ ?>
|
1204 |
+
<p class='template'><?php _e('Your template:','wp-to-twitter'); ?> <code><?php echo stripcslashes( $jd_expanded ); ?></code></p>
|
1205 |
|
1206 |
<?php
|
1207 |
if ( get_option('jd_keyword_format') == 2 ) {
|
1209 |
echo "<label for='yourls_keyword'>".__('YOURLS Custom Keyword','wp-to-twitter')."</label> <input type='text' name='_yourls_keyword' id='yourls_keyword' value='$custom_keyword' />";
|
1210 |
}
|
1211 |
?>
|
|
|
|
|
|
|
1212 |
<?php } else { ?>
|
1213 |
+
<input type="hidden" name='_jd_twitter' value='' />
|
|
|
|
|
1214 |
<?php } ?>
|
1215 |
+
<?php if ( current_user_can( 'wpt_twitter_switch' ) || current_user_can('update_core') ) { ?>
|
1216 |
<?php
|
1217 |
// "no" means 'Don't Tweet' (is checked)
|
1218 |
$nochecked = ( $jd_tweet_this == 'no' )?' checked="checked"':'';
|
1219 |
$yeschecked = ( $jd_tweet_this == 'yes' )?' checked="checked"':'';
|
1220 |
?>
|
1221 |
<p><input type="radio" name="_jd_tweet_this" value="no" id="jtn"<?php echo $nochecked; ?> /> <label for="jtn"><?php _e("Don't Tweet this post.", 'wp-to-twitter'); ?></label> <input type="radio" name="_jd_tweet_this" value="yes" id="jty"<?php echo $yeschecked; ?> /> <label for="jty"><?php _e("Tweet this post.", 'wp-to-twitter'); ?></label></p>
|
1222 |
+
<?php } else { ?>
|
1223 |
+
<input type='hidden' name='_jd_tweet_this' value='<?php echo $jd_tweet_this; ?>' />
|
1224 |
<?php } ?>
|
1225 |
<?php /* WPT PRO */ ?>
|
1226 |
<?php
|
1227 |
+
if ( function_exists('wpt_pro_exists') && wpt_pro_exists() == true && ( current_user_can( 'wpt_twitter_custom' ) || current_user_can( 'update_core' ) ) ) {
|
1228 |
wpt_schedule_values( $post_id );
|
1229 |
} ?>
|
1230 |
<?php /* WPT PRO */ ?>
|
1231 |
+
<?php if ( !current_user_can( 'wpt_twitter_custom' ) && !current_user_can( 'update_core' ) ) { ?>
|
1232 |
<div>
|
1233 |
<p><?php _e('Access to customizing WP to Twitter values is not allowed for your user role.','wp-to-twitter'); ?></p>
|
|
|
|
|
|
|
|
|
1234 |
<?php
|
1235 |
+
if ( function_exists('wpt_pro_exists') && wpt_pro_exists() == true ) {
|
1236 |
wpt_schedule_values( $post_id, 'hidden' );
|
1237 |
} ?>
|
1238 |
</div>
|
1239 |
<?php } ?>
|
1240 |
+
<?php if ( current_user_can( 'wpt_twitter_custom' ) || current_user_can( 'update_core' ) ) { ?>
|
1241 |
<p>
|
1242 |
+
<?php _e("Tweets are no more than 140 characters; Twitter counts URLs as 20 or 21 characters. Template tags: <code>#url#</code>, <code>#title#</code>, <code>#post#</code>, <code>#category#</code>, <code>#date#</code>, <code>#modified#</code>, <code>#author#</code>, <code>#account#</code>, <code>#tags#</code>, or <code>#blog#</code>.", 'wp-to-twitter') ?>
|
1243 |
+
</p>
|
1244 |
+
<?php } ?>
|
1245 |
+
<p>
|
1246 |
+
<?php if ( !function_exists( 'wpt_pro_exists' ) ) { ?>
|
1247 |
+
<a target="_blank" href="<?php echo admin_url('options-general.php?page=wp-to-twitter/wp-to-twitter.php'); ?>#get-support"><?php _e('Get Support', 'wp-to-twitter', 'wp-to-twitter') ?></a> • <strong><a target="__blank" href="<?php echo $jd_donate_url; ?>"><?php _e('Upgrade to WP Tweets Pro', 'wp-to-twitter', 'wp-to-twitter') ?></a></strong> »
|
1248 |
+
<?php } else { ?>
|
1249 |
+
<a target="_blank" href="<?php echo admin_url('admin.php?page=wp-tweets-pro'); ?>#get-support"><?php _e('Get Support', 'wp-to-twitter', 'wp-to-twitter') ?></a> »
|
1250 |
+
<?php } ?>
|
|
|
|
|
1251 |
</p>
|
1252 |
+
<?php
|
1253 |
+
} else { // permissions: this user isn't allowed to Tweet;
|
1254 |
+
_e('Your role does not have the ability to Post Tweets from this site.','wp-to-twitter'); ?> <input type='hidden' name='_jd_tweet_this' value='no' /> <?php
|
1255 |
+
}
|
1256 |
+
}
|
1257 |
function jd_add_twitter_outer_box() {
|
1258 |
wpt_check_version();
|
1259 |
$wpt_post_types = get_option('wpt_post_types');
|
1260 |
if ( function_exists( 'add_meta_box' )) {
|
1261 |
if ( is_array( $wpt_post_types ) ) {
|
1262 |
foreach ($wpt_post_types as $key=>$value) {
|
1263 |
+
if ( $value['post-published-update'] == 1 || $value['post-edited-update'] == 1 ) {
|
1264 |
+
add_meta_box( 'wptotwitter_div','WP to Twitter', 'jd_add_twitter_inner_box', $key, 'advanced' );
|
1265 |
+
}
|
1266 |
}
|
1267 |
}
|
1268 |
}
|
1269 |
}
|
1270 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1271 |
function wpt_admin_scripts( $hook ) {
|
1272 |
+
global $current_screen;
|
1273 |
+
if ( $current_screen->base == 'post' || $current_screen->id == 'wp-tweets-pro_page_wp-to-twitter-schedule' ) {
|
1274 |
wp_enqueue_script( 'charCount', plugins_url( 'wp-to-twitter/js/jquery.charcount.js'), array('jquery') );
|
1275 |
+
}
|
1276 |
}
|
1277 |
add_action( 'admin_enqueue_scripts', 'wpt_admin_scripts', 10, 1 );
|
1278 |
|
1279 |
function wpt_admin_script( $hook ) {
|
1280 |
global $current_screen;
|
1281 |
+
if ( $current_screen->base == 'post' || $current_screen->id == 'wp-tweets-pro_page_wp-to-twitter-schedule' ) {
|
1282 |
if ( $current_screen->base == 'post' ) {
|
1283 |
+
$allowed = 140 - mb_strlen( get_option('jd_twit_prepend').get_option('jd_twit_append') );
|
1284 |
+
} else {
|
1285 |
+
$change = wpt_date_compare( date('Y-m-d'), '2012-02-20' );
|
1286 |
+
// temporary fix incase I don't hit the release date of 2/20.
|
1287 |
+
if ( $change === 1 ) {
|
1288 |
+
// if the home URL is SSL, I'm assuming sent URLs will be. Best I can do.
|
1289 |
+
$allowed = ( wpt_is_ssl( home_url() ) )?139:140;
|
1290 |
+
} else {
|
1291 |
+
// after February 20th, t.co links will be two characters longer.
|
1292 |
+
$allowed = ( wpt_is_ssl( home_url() ) )?137:138;
|
1293 |
+
}
|
1294 |
+
}
|
1295 |
echo "
|
1296 |
<script type='text/javascript'>
|
1297 |
jQuery(document).ready(function(\$){
|
1298 |
//default usage
|
1299 |
+
\$('#jtw').charCount( { allowed: $allowed, counterText: '".__('Characters left: ','wp-to-twitter')."' } );
|
1300 |
});
|
1301 |
</script>
|
1302 |
<style type='text/css'>
|
1303 |
+
#wptotwitter_div .jtw{ position: relative; padding-bottom: 1.4em;}
|
1304 |
#wptotwitter_div .counter{
|
1305 |
+
position:absolute;right:4%;bottom:0;
|
1306 |
+
font-size:1.3em;font-weight:700;color:#666;
|
1307 |
}
|
1308 |
#wptotwitter_div .warning{color:#700;}
|
1309 |
#wptotwitter_div .exceeded{color:#e00;}
|
1310 |
+
#wptotwitter_div code span { border-bottom: 1px dashed!important; cursor: pointer; }
|
1311 |
</style>";
|
1312 |
}
|
1313 |
}
|
1315 |
|
1316 |
// Post the Custom Tweet into the post meta table
|
1317 |
function post_jd_twitter( $id ) {
|
1318 |
+
if ( empty($_POST) || ( defined('DOING_AUTOSAVE') && DOING_AUTOSAVE ) || wp_is_post_revision($id) || isset($_POST['_inline_edit']) ) { return $id; }
|
|
|
|
|
|
|
|
|
|
|
1319 |
if ( isset( $_POST['_yourls_keyword'] ) ) {
|
1320 |
$yourls = $_POST[ '_yourls_keyword' ];
|
1321 |
update_post_meta( $id, '_yourls_keyword', $yourls );
|
1340 |
// WPT PRO //
|
1341 |
apply_filters( 'wpt_insert_post', $_POST, $id );
|
1342 |
// WPT PRO //
|
1343 |
+
|
1344 |
+
if ( WPT_DEBUG && function_exists( 'wpt_pro_exists' ) ) {
|
1345 |
+
wp_mail( WPT_DEBUG_ADDRESS,"Post Meta Inserted: #$id",print_r($_POST,1) ); // DEBUG
|
1346 |
+
}
|
1347 |
}
|
1348 |
|
1349 |
function jd_twitter_profile() {
|
1354 |
|
1355 |
$is_enabled = get_user_meta( $user_edit, 'wp-to-twitter-enable-user',true );
|
1356 |
$twitter_username = get_user_meta( $user_edit, 'wp-to-twitter-user-username',true );
|
1357 |
+
$wpt_remove = get_user_meta( $user_edit, 'wpt-remove', true );
|
1358 |
?>
|
1359 |
<h3><?php _e('WP Tweets User Settings', 'wp-to-twitter'); ?></h3>
|
1360 |
<?php if ( function_exists('wpt_connect_oauth_message') ) { wpt_connect_oauth_message( $user_edit ); } ?>
|
1369 |
<th scope="row"><label for="wp-to-twitter-user-username"><?php _e("Your Twitter Username", 'wp-to-twitter'); ?></label></th>
|
1370 |
<td><input type="text" name="wp-to-twitter-user-username" id="wp-to-twitter-user-username" value="<?php echo esc_attr( $twitter_username ); ?>" /> <?php _e('Enter your own Twitter username.', 'wp-to-twitter'); ?></td>
|
1371 |
</tr>
|
1372 |
+
<tr>
|
1373 |
+
<th scope="row"><label for="wpt-remove"><?php _e("Hide account name in Tweets", 'wp-to-twitter'); ?></label></th>
|
1374 |
+
<td><input type="checkbox" name="wpt-remove" id="wpt-remove" value="on"<?php if ( $wpt_remove == 'on' ) { echo ' checked="checked"'; } ?> /> <?php _e('Do not display my account in the #account# template tag.', 'wp-to-twitter'); ?></td>
|
1375 |
+
</tr>
|
1376 |
</table>
|
1377 |
<?php if ( function_exists('wpt_schedule_tweet') ) { ?>
|
1378 |
<?php if ( function_exists('wtt_connect_oauth') ) { wtt_connect_oauth( $user_edit ); } ?>
|
1379 |
+
<?php }
|
|
|
|
|
|
|
1380 |
}
|
1381 |
}
|
1382 |
|
1388 |
foreach ($matches[0] as $value) {
|
1389 |
$shortcode = "$value";
|
1390 |
$field = str_replace($params, "", $shortcode);
|
1391 |
+
$custom = strip_tags(get_post_meta( $post_ID, $field, TRUE ));
|
1392 |
$sentence = str_replace( $shortcode, $custom, $sentence );
|
1393 |
}
|
1394 |
return $sentence;
|
1405 |
} else {
|
1406 |
$edit_id = $user_ID;
|
1407 |
}
|
1408 |
+
$enable = ( isset($_POST['wp-to-twitter-enable-user']) )?$_POST['wp-to-twitter-enable-user']:'';
|
1409 |
+
$username = ( isset($_POST['wp-to-twitter-user-username']) )?$_POST['wp-to-twitter-user-username']:'';
|
1410 |
+
$wpt_remove = ( isset($_POST['wpt-remove']) )?'on':'';
|
1411 |
+
update_user_meta($edit_id ,'wp-to-twitter-enable-user' , $enable );
|
1412 |
+
update_user_meta($edit_id ,'wp-to-twitter-user-username' , $username );
|
1413 |
+
update_user_meta($edit_id ,'wpt-remove' , $wpt_remove );
|
1414 |
//WPT PRO
|
1415 |
apply_filters( 'wpt_save_user', $edit_id, $_POST );
|
1416 |
}
|
1454 |
function jd_addTwitterAdminPages() {
|
1455 |
if ( function_exists( 'add_options_page' ) && !function_exists( 'wpt_pro_functions') ) {
|
1456 |
$plugin_page = add_options_page( 'WP to Twitter', 'WP to Twitter', 'manage_options', __FILE__, 'wpt_update_settings' );
|
|
|
1457 |
}
|
1458 |
}
|
1459 |
+
add_action( 'admin_head', 'jd_addTwitterAdminStyles' );
|
1460 |
function jd_addTwitterAdminStyles() {
|
1461 |
+
if ( isset($_GET['page']) && ( 1==1 || $_GET['page'] == "wp-to-twitter" || $_GET['page'] == "wp-to-twitter/wp-to-twitter.php" || $_GET['page'] == "wp-tweets-pro" || $_GET['page'] == "wp-to-twitter-schedule" || $_GET['page'] == "wp-to-twitter-tweets" || $_GET['page'] == "wp-to-twitter-errors" ) ) {
|
1462 |
+
echo '<link type="text/css" rel="stylesheet" href="'.plugins_url('/wp-to-twitter/styles.css').'" />';
|
|
|
1463 |
}
|
1464 |
}
|
1465 |
|
1480 |
}
|
1481 |
|
1482 |
if ( get_option( 'disable_url_failure' ) != '1' ) {
|
1483 |
+
if ( get_option( 'wp_url_failure' ) == '1' && !( isset($_POST['submit-type']) && $_POST['submit-type'] == 'clear-error' ) ) {
|
1484 |
+
add_action('admin_notices', create_function( '', "if ( ! current_user_can( 'manage_options' ) ) { return; } echo '<div class=\"error\"><p>';_e('There\'s been an error shortening your URL! <a href=\"".site_url()."/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>';" ) );
|
1485 |
}
|
1486 |
}
|
1487 |
if ( get_option( 'disable_twitter_failure' ) != '1' ) {
|
1488 |
+
if ( get_option( 'wp_twitter_failure' ) == '1' && !( isset($_POST['submit-type']) && $_POST['submit-type'] == 'clear-error' ) ) {
|
1489 |
+
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=\"".site_url()."/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>';" ) );
|
1490 |
}
|
1491 |
}
|
1492 |
|
1506 |
echo $note;
|
1507 |
}
|
1508 |
|
|
|
|
|
1509 |
if ( get_option( 'jd_twit_blogroll' ) == '1' ) {
|
1510 |
add_action( 'add_link', 'jd_twit_link' );
|
1511 |
}
|
1512 |
+
|
1513 |
+
$post_type_settings = get_option('wpt_post_types');
|
1514 |
+
if ( is_array( $post_type_settings ) ) {
|
1515 |
+
$post_types = array_keys($post_type_settings);
|
1516 |
+
foreach ($post_types as $value ) {
|
1517 |
+
add_action( 'publish_future_'.$value, 'wpt_twit_future', 16 );
|
1518 |
+
add_action( 'publish_'.$value, 'post_jd_twitter', 10 );
|
1519 |
+
add_action( 'publish_'.$value, 'wpt_twit_instant', 16 );
|
1520 |
}
|
1521 |
+
}
|
1522 |
+
|
1523 |
+
function wpt_twit_future( $id ) {
|
1524 |
+
jd_twit( $id, 'future' );
|
1525 |
+
}
|
1526 |
+
function wpt_twit_instant( $id ) {
|
1527 |
+
jd_twit( $id, 'instant' );
|
1528 |
+
}
|
1529 |
+
|
1530 |
+
if ( WPT_DEBUG && function_exists( 'wpt_pro_exists' ) ) {
|
1531 |
+
//wp_mail( WPT_DEBUG_ADDRESS,'initialize jd_twit',print_r( $post_types, 1 ) ); // DEBUG
|
1532 |
+
}
|
1533 |
+
add_action( 'save_post', 'post_jd_twitter', 10 ); // Now things will happen twice. Hmmm...guess that's OK.
|
1534 |
|
1535 |
if ( get_option( 'jd_twit_remote' ) == '1' ) {
|
1536 |
add_action( 'xmlrpc_publish_post', 'jd_twit_xmlrpc' );
|