Version Description
Includes an important upgrade needed for Rotating Tweets to keep working after March 2013. Supports version 1.1 of the Twitter API. Fixed problem with cacheing.
=
Download this release
Release Info
Developer | mpntod |
Plugin | Rotating Tweets (Twitter widget and shortcode) |
Version | 0.712 |
Comparing to | |
See all releases |
Code changes from version 0.711 to 0.712
- js/rotating_tweet.js +31 -10
- languages/rotatingtweets-de_DE.mo +0 -0
- languages/rotatingtweets-de_DE.po +201 -70
- languages/rotatingtweets-en_GB.mo +0 -0
- languages/rotatingtweets-en_GB.po +156 -104
- languages/rotatingtweets-es_ES.mo +0 -0
- languages/rotatingtweets-es_ES.po +154 -105
- languages/rotatingtweets-it_IT.mo +0 -0
- languages/rotatingtweets-it_IT.po +154 -105
- languages/rotatingtweets-nl_NL.mo +0 -0
- languages/rotatingtweets-nl_NL.po +463 -0
- languages/rotatingtweets.pot +154 -105
- lib/wp_twitteroauth.php +2 -0
- readme.txt +14 -3
- rotatingtweets.php +8 -3
js/rotating_tweet.js
CHANGED
@@ -8,6 +8,10 @@ jQuery(document).ready(function() {
|
|
8 |
var rotate_id_split = rotate_id.split('_');
|
9 |
var rotate_timeout = rotate_id_split[1];
|
10 |
var rotate_fx = rotate_id_split[2];
|
|
|
|
|
|
|
|
|
11 |
/* If the rotation type has not been set - then set it to scrollUp */
|
12 |
if(rotate_fx == null){rotate_fx = 'scrollUp'};
|
13 |
var rt_height_px = 'auto';
|
@@ -20,7 +24,9 @@ jQuery(document).ready(function() {
|
|
20 |
if( rt_target_width == null ) {
|
21 |
rt_fit = 0;
|
22 |
}
|
23 |
-
|
|
|
|
|
24 |
/* If we're displaying an 'official' tweet, reset all the heights - this option is currently switched off! */
|
25 |
// var rt_official_child = rotate_id + ' .twitter-tweet';
|
26 |
// var rt_official_num = jQuery(rt_official_child).length;
|
@@ -36,7 +42,7 @@ jQuery(document).ready(function() {
|
|
36 |
});
|
37 |
/* If the height of the rotating tweet box is zero - kill the box and start again */
|
38 |
var rt_height = jQuery(rotate_id).height();
|
39 |
-
if(rt_height == 0) {
|
40 |
var rt_children_id = rotate_id + ' .rotatingtweet';
|
41 |
var rt_height = 0;
|
42 |
/* Go through the tweets - get their height - and set the minimum height */
|
@@ -47,6 +53,9 @@ jQuery(document).ready(function() {
|
|
47 |
}
|
48 |
});
|
49 |
var rt_height_px = rt_height + 'px';
|
|
|
|
|
|
|
50 |
jQuery(rotate_id).cycle('destroy');
|
51 |
jQuery(rotate_id).cycle({
|
52 |
pause: 1,
|
@@ -67,8 +76,11 @@ jQuery(document).ready(function() {
|
|
67 |
if(rt_official_num > 0) {
|
68 |
/* Now run through and make sure all the boxes are the right size */
|
69 |
if(jQuery(rt_icon_id).length > 0) {
|
70 |
-
|
71 |
-
|
|
|
|
|
|
|
72 |
var rt_icon_width = 0;
|
73 |
jQuery(rt_icon_id).each( function() {
|
74 |
newiconsize = jQuery(this).width();
|
@@ -76,7 +88,9 @@ jQuery(document).ready(function() {
|
|
76 |
rt_icon_width = newiconsize;
|
77 |
}
|
78 |
});
|
79 |
-
|
|
|
|
|
80 |
if(rt_icon_width > 0) {
|
81 |
jQuery(rt_block_id).each( function() {
|
82 |
jQuery(this).css('padding-left', ( rt_icon_width + 10 ) + 'px');
|
@@ -84,15 +98,22 @@ jQuery(document).ready(function() {
|
|
84 |
}
|
85 |
}
|
86 |
/* Now get the padding-left dimension (if it exists) and subtract it from the max width */
|
87 |
-
|
|
|
|
|
|
|
88 |
var rt_max_width = jQuery(rotate_id).width();
|
89 |
if( typeof jQuery(rt_block_id).css('padding-left') != 'undefined' ) {
|
90 |
rt_max_width = rt_max_width - parseInt(jQuery(rt_block_id).css('padding-left'));
|
91 |
-
|
92 |
-
|
93 |
-
|
|
|
|
|
94 |
}
|
95 |
-
|
|
|
|
|
96 |
/* Go through the tweets - and set the minimum width */
|
97 |
jQuery(rt_children_id).each(function() {
|
98 |
jQuery(this).width(rt_max_width);
|
8 |
var rotate_id_split = rotate_id.split('_');
|
9 |
var rotate_timeout = rotate_id_split[1];
|
10 |
var rotate_fx = rotate_id_split[2];
|
11 |
+
var rotate_wp_debug = jQuery(this).hasClass('wp_debug');
|
12 |
+
if( typeof console == "undefined" || typeof console.log == "undefined" ) {
|
13 |
+
rotate_wp_debug = false;
|
14 |
+
}
|
15 |
/* If the rotation type has not been set - then set it to scrollUp */
|
16 |
if(rotate_fx == null){rotate_fx = 'scrollUp'};
|
17 |
var rt_height_px = 'auto';
|
24 |
if( rt_target_width == null ) {
|
25 |
rt_fit = 0;
|
26 |
}
|
27 |
+
if(rotate_wp_debug) {
|
28 |
+
console.log('rt_target_width = '+rt_target_width);
|
29 |
+
};
|
30 |
/* If we're displaying an 'official' tweet, reset all the heights - this option is currently switched off! */
|
31 |
// var rt_official_child = rotate_id + ' .twitter-tweet';
|
32 |
// var rt_official_num = jQuery(rt_official_child).length;
|
42 |
});
|
43 |
/* If the height of the rotating tweet box is zero - kill the box and start again */
|
44 |
var rt_height = jQuery(rotate_id).height();
|
45 |
+
if(rt_height == 0) {
|
46 |
var rt_children_id = rotate_id + ' .rotatingtweet';
|
47 |
var rt_height = 0;
|
48 |
/* Go through the tweets - get their height - and set the minimum height */
|
53 |
}
|
54 |
});
|
55 |
var rt_height_px = rt_height + 'px';
|
56 |
+
if(rotate_wp_debug) {
|
57 |
+
console.log('Resetting height to rt_height_px '+rt_height_px);
|
58 |
+
};
|
59 |
jQuery(rotate_id).cycle('destroy');
|
60 |
jQuery(rotate_id).cycle({
|
61 |
pause: 1,
|
76 |
if(rt_official_num > 0) {
|
77 |
/* Now run through and make sure all the boxes are the right size */
|
78 |
if(jQuery(rt_icon_id).length > 0) {
|
79 |
+
if(rotate_wp_debug) {
|
80 |
+
console.log('Adjusting widths for \'Official Twitter Version 2\'');
|
81 |
+
console.log('- Width of Rotating Tweets container: ' + jQuery(this).width());
|
82 |
+
console.log('- Width of the icon container: ' + jQuery(rt_icon_id).show().width());
|
83 |
+
};
|
84 |
var rt_icon_width = 0;
|
85 |
jQuery(rt_icon_id).each( function() {
|
86 |
newiconsize = jQuery(this).width();
|
88 |
rt_icon_width = newiconsize;
|
89 |
}
|
90 |
});
|
91 |
+
if(rotate_wp_debug) {
|
92 |
+
console.log('- Width of the icon: '+rt_icon_width);
|
93 |
+
};
|
94 |
if(rt_icon_width > 0) {
|
95 |
jQuery(rt_block_id).each( function() {
|
96 |
jQuery(this).css('padding-left', ( rt_icon_width + 10 ) + 'px');
|
98 |
}
|
99 |
}
|
100 |
/* Now get the padding-left dimension (if it exists) and subtract it from the max width */
|
101 |
+
if(rotate_wp_debug) {
|
102 |
+
console.log ('Now check for \'padding-left\'');
|
103 |
+
console.log ('- leftpadding - text : '+ jQuery(rt_block_id).css('padding-left') + ' and value: ' +parseInt(jQuery(rt_block_id).css('padding-left')));
|
104 |
+
};
|
105 |
var rt_max_width = jQuery(rotate_id).width();
|
106 |
if( typeof jQuery(rt_block_id).css('padding-left') != 'undefined' ) {
|
107 |
rt_max_width = rt_max_width - parseInt(jQuery(rt_block_id).css('padding-left'));
|
108 |
+
if(rotate_wp_debug) {
|
109 |
+
console.log('- Padding is not undefined');
|
110 |
+
};
|
111 |
+
} else if(rotate_wp_debug) {
|
112 |
+
console.log('- Padding IS undefined - leave width unchanged');
|
113 |
}
|
114 |
+
if(rotate_wp_debug) {
|
115 |
+
console.log('- rt_max_width: ' + rt_max_width);
|
116 |
+
};
|
117 |
/* Go through the tweets - and set the minimum width */
|
118 |
jQuery(rt_children_id).each(function() {
|
119 |
jQuery(this).width(rt_max_width);
|
languages/rotatingtweets-de_DE.mo
CHANGED
Binary file
|
languages/rotatingtweets-de_DE.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Rotating Tweets (Twitter widget & shortcode) 0.505\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/rotatingtweets\n"
|
7 |
-
"POT-Creation-Date: 2013-02
|
8 |
-
"PO-Revision-Date: 2013-02
|
9 |
"Last-Translator: Martin Tod <martin@martintod.org.uk>\n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: de_DE\n"
|
@@ -19,298 +19,429 @@ msgstr ""
|
|
19 |
msgid "A widget to show tweets for a particular user in rotation."
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: rotatingtweets.php:
|
23 |
msgid "Title:"
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: rotatingtweets.php:
|
27 |
msgid "Twitter name:"
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: rotatingtweets.php:
|
31 |
msgid "Include retweets?"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: rotatingtweets.php:
|
35 |
msgid "Exclude replies?"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: rotatingtweets.php:
|
39 |
msgid "Open all links in new window or tab?"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: rotatingtweets.php:
|
43 |
msgid "How many tweets?"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: rotatingtweets.php:
|
47 |
msgid "Speed"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: rotatingtweets.php:
|
51 |
msgid "Faster (3 seconds)"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: rotatingtweets.php:
|
55 |
msgid "Normal (4 seconds)"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: rotatingtweets.php:
|
59 |
msgid "Slower (5 seconds)"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: rotatingtweets.php:
|
63 |
msgid "Slowest (6 seconds)"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: rotatingtweets.php:
|
67 |
msgid "Ultra slow (20 seconds)"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: rotatingtweets.php:
|
71 |
msgid "Scroll Up"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: rotatingtweets.php:
|
75 |
msgid "Scroll Down"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: rotatingtweets.php:
|
79 |
msgid "Scroll Left"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: rotatingtweets.php:
|
83 |
msgid "Scroll Right"
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: rotatingtweets.php:
|
87 |
msgid "Fade"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: rotatingtweets.php:
|
91 |
msgid "Type of rotation"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: rotatingtweets.php:
|
95 |
msgid "Display format"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: rotatingtweets.php:
|
99 |
msgid "Original rotating tweets layout"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: rotatingtweets.php:
|
103 |
msgid ""
|
104 |
"<a target='_blank' href='https://dev.twitter.com/terms/display-"
|
105 |
"guidelines'>Official Twitter guidelines</a> (regular)"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: rotatingtweets.php:
|
109 |
msgid ""
|
110 |
"<a target='_blank' href='https://dev.twitter.com/terms/display-"
|
111 |
"guidelines'>Official Twitter guidelines</a> (wide)"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: rotatingtweets.php:
|
115 |
msgid "Show tweet details?"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: rotatingtweets.php:
|
119 |
msgid "Time/date of tweet"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: rotatingtweets.php:
|
123 |
msgid "Name of person tweeting"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: rotatingtweets.php:
|
127 |
msgid "Source of tweet"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: rotatingtweets.php:
|
131 |
msgid "'reply · retweet · favorite' links"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: rotatingtweets.php:
|
135 |
msgid "Show follow button?"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: rotatingtweets.php:
|
139 |
msgctxt "Show follow button?"
|
140 |
msgid "None"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: rotatingtweets.php:
|
144 |
msgid "Show name and number of followers"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: rotatingtweets.php:
|
148 |
msgid "Show name only"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: rotatingtweets.php:
|
152 |
msgid "Show followers only"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: rotatingtweets.php:
|
156 |
msgid "Show button only"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: rotatingtweets.php:
|
160 |
msgid "less than a second ago"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: rotatingtweets.php:
|
164 |
msgid "%d seconds ago"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: rotatingtweets.php:
|
168 |
msgid "about a minute ago"
|
169 |
msgid_plural "about %d minutes ago"
|
170 |
msgstr[0] ""
|
171 |
msgstr[1] ""
|
172 |
|
173 |
-
#: rotatingtweets.php:
|
174 |
msgid "about an hour ago"
|
175 |
msgid_plural "about %d hours ago"
|
176 |
msgstr[0] ""
|
177 |
msgstr[1] ""
|
178 |
|
179 |
-
#: rotatingtweets.php:
|
180 |
msgid "yesterday"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: rotatingtweets.php:
|
184 |
msgid "about a day ago"
|
185 |
msgid_plural "about %d days ago"
|
186 |
msgstr[0] ""
|
187 |
msgstr[1] ""
|
188 |
|
189 |
-
#: rotatingtweets.php:
|
190 |
msgid "last week"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: rotatingtweets.php:
|
194 |
msgid "about a week ago"
|
195 |
msgid_plural "about %d weeks ago"
|
196 |
msgstr[0] ""
|
197 |
msgstr[1] ""
|
198 |
|
199 |
-
#: rotatingtweets.php:
|
200 |
msgid "last month"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: rotatingtweets.php:
|
204 |
msgid "about a month ago"
|
205 |
msgid_plural "about %d months ago"
|
206 |
msgstr[0] ""
|
207 |
msgstr[1] ""
|
208 |
|
209 |
-
#: rotatingtweets.php:
|
210 |
msgid "last year"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: rotatingtweets.php:
|
214 |
msgid "about a year ago"
|
215 |
msgid_plural "about %d years ago"
|
216 |
msgstr[0] ""
|
217 |
msgstr[1] ""
|
218 |
|
219 |
-
#: rotatingtweets.php:
|
220 |
msgctxt "abbreviated timestamp in seconds"
|
221 |
msgid "%ds"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: rotatingtweets.php:
|
225 |
msgctxt "abbreviated timestamp in minutes"
|
226 |
msgid "%dm"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: rotatingtweets.php:
|
230 |
msgctxt "abbreviated timestamp in hours"
|
231 |
msgid "%dh"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: rotatingtweets.php:
|
235 |
msgctxt ""
|
236 |
"short date format as per http://uk.php.net/manual/en/function.date.php"
|
237 |
msgid "j M"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: rotatingtweets.php:
|
241 |
msgctxt ""
|
242 |
"slightly longer date format as per http://uk.php.net/manual/en/function.date."
|
243 |
"php"
|
244 |
msgid "j M Y"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: rotatingtweets.php:
|
248 |
msgid "reply"
|
249 |
msgstr "Antworten"
|
250 |
|
251 |
-
#: rotatingtweets.php:
|
252 |
msgid "retweet"
|
253 |
msgstr "Retweeten"
|
254 |
|
255 |
-
#: rotatingtweets.php:
|
256 |
msgid "favorite"
|
257 |
msgstr "Favorisieren"
|
258 |
|
259 |
-
#: rotatingtweets.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
260 |
msgid "Problem retrieving data from Twitter"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: rotatingtweets.php:
|
264 |
msgid "This website is currently <a href='%s'>rate-limited by Twitter</a>."
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: rotatingtweets.php:
|
268 |
msgid "Next attempt to get data will be in %d minute"
|
269 |
msgid_plural "Next attempt to get data will be in %d minutes"
|
270 |
msgstr[0] ""
|
271 |
msgstr[1] ""
|
272 |
|
273 |
-
#: rotatingtweets.php:
|
274 |
msgid "Next attempt to get data will be in less than a minute"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: rotatingtweets.php:
|
278 |
msgid "Wordpress error message"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: rotatingtweets.php:
|
282 |
-
msgid "
|
|
|
|
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: rotatingtweets.php:
|
286 |
msgid "from <a href='%1$s' title='%2$s'>%2$s's Twitter</a>"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: rotatingtweets.php:
|
290 |
msgid "via %s"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: rotatingtweets.php:
|
294 |
msgid "Twitter"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: rotatingtweets.php:
|
298 |
msgid "Retweeted by %s"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: rotatingtweets.php:
|
302 |
msgid "Expand"
|
303 |
msgstr "Öffnen"
|
304 |
|
305 |
-
#: rotatingtweets.php:
|
306 |
msgid "Problem retrieving data from Twitter."
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: rotatingtweets.php:
|
310 |
msgid "Please check the comments on this page's HTML to understand more."
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: rotatingtweets.php:
|
314 |
msgid "Follow @%s"
|
315 |
msgstr "Folgen @%s"
|
316 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Rotating Tweets (Twitter widget & shortcode) 0.505\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/rotatingtweets\n"
|
7 |
+
"POT-Creation-Date: 2013-03-02 20:25:59+00:00\n"
|
8 |
+
"PO-Revision-Date: 2013-03-02 20:28-0000\n"
|
9 |
"Last-Translator: Martin Tod <martin@martintod.org.uk>\n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: de_DE\n"
|
19 |
msgid "A widget to show tweets for a particular user in rotation."
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: rotatingtweets.php:130
|
23 |
msgid "Title:"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: rotatingtweets.php:131
|
27 |
msgid "Twitter name:"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: rotatingtweets.php:132
|
31 |
msgid "Include retweets?"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: rotatingtweets.php:133
|
35 |
msgid "Exclude replies?"
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: rotatingtweets.php:134
|
39 |
msgid "Open all links in new window or tab?"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: rotatingtweets.php:135
|
43 |
msgid "How many tweets?"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: rotatingtweets.php:143
|
47 |
msgid "Speed"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: rotatingtweets.php:146
|
51 |
msgid "Faster (3 seconds)"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: rotatingtweets.php:147
|
55 |
msgid "Normal (4 seconds)"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: rotatingtweets.php:148
|
59 |
msgid "Slower (5 seconds)"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: rotatingtweets.php:149
|
63 |
msgid "Slowest (6 seconds)"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: rotatingtweets.php:150
|
67 |
msgid "Ultra slow (20 seconds)"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: rotatingtweets.php:162
|
71 |
msgid "Scroll Up"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: rotatingtweets.php:163
|
75 |
msgid "Scroll Down"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: rotatingtweets.php:164
|
79 |
msgid "Scroll Left"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: rotatingtweets.php:165
|
83 |
msgid "Scroll Right"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: rotatingtweets.php:166
|
87 |
msgid "Fade"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: rotatingtweets.php:170
|
91 |
msgid "Type of rotation"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: rotatingtweets.php:179
|
95 |
msgid "Display format"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: rotatingtweets.php:182
|
99 |
msgid "Original rotating tweets layout"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: rotatingtweets.php:183
|
103 |
msgid ""
|
104 |
"<a target='_blank' href='https://dev.twitter.com/terms/display-"
|
105 |
"guidelines'>Official Twitter guidelines</a> (regular)"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: rotatingtweets.php:184
|
109 |
msgid ""
|
110 |
"<a target='_blank' href='https://dev.twitter.com/terms/display-"
|
111 |
"guidelines'>Official Twitter guidelines</a> (wide)"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: rotatingtweets.php:194
|
115 |
msgid "Show tweet details?"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: rotatingtweets.php:197
|
119 |
msgid "Time/date of tweet"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: rotatingtweets.php:198
|
123 |
msgid "Name of person tweeting"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: rotatingtweets.php:199
|
127 |
msgid "Source of tweet"
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: rotatingtweets.php:200
|
131 |
msgid "'reply · retweet · favorite' links"
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: rotatingtweets.php:210
|
135 |
msgid "Show follow button?"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: rotatingtweets.php:213
|
139 |
msgctxt "Show follow button?"
|
140 |
msgid "None"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: rotatingtweets.php:214
|
144 |
msgid "Show name and number of followers"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: rotatingtweets.php:215
|
148 |
msgid "Show name only"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: rotatingtweets.php:216
|
152 |
msgid "Show followers only"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: rotatingtweets.php:217
|
156 |
msgid "Show button only"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: rotatingtweets.php:242
|
160 |
msgid "less than a second ago"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: rotatingtweets.php:243
|
164 |
msgid "%d seconds ago"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: rotatingtweets.php:244
|
168 |
msgid "about a minute ago"
|
169 |
msgid_plural "about %d minutes ago"
|
170 |
msgstr[0] ""
|
171 |
msgstr[1] ""
|
172 |
|
173 |
+
#: rotatingtweets.php:245 rotatingtweets.php:247
|
174 |
msgid "about an hour ago"
|
175 |
msgid_plural "about %d hours ago"
|
176 |
msgstr[0] ""
|
177 |
msgstr[1] ""
|
178 |
|
179 |
+
#: rotatingtweets.php:246
|
180 |
msgid "yesterday"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: rotatingtweets.php:248
|
184 |
msgid "about a day ago"
|
185 |
msgid_plural "about %d days ago"
|
186 |
msgstr[0] ""
|
187 |
msgstr[1] ""
|
188 |
|
189 |
+
#: rotatingtweets.php:249
|
190 |
msgid "last week"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: rotatingtweets.php:250
|
194 |
msgid "about a week ago"
|
195 |
msgid_plural "about %d weeks ago"
|
196 |
msgstr[0] ""
|
197 |
msgstr[1] ""
|
198 |
|
199 |
+
#: rotatingtweets.php:251
|
200 |
msgid "last month"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: rotatingtweets.php:252
|
204 |
msgid "about a month ago"
|
205 |
msgid_plural "about %d months ago"
|
206 |
msgstr[0] ""
|
207 |
msgstr[1] ""
|
208 |
|
209 |
+
#: rotatingtweets.php:253
|
210 |
msgid "last year"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: rotatingtweets.php:254
|
214 |
msgid "about a year ago"
|
215 |
msgid_plural "about %d years ago"
|
216 |
msgstr[0] ""
|
217 |
msgstr[1] ""
|
218 |
|
219 |
+
#: rotatingtweets.php:261
|
220 |
msgctxt "abbreviated timestamp in seconds"
|
221 |
msgid "%ds"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: rotatingtweets.php:262
|
225 |
msgctxt "abbreviated timestamp in minutes"
|
226 |
msgid "%dm"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: rotatingtweets.php:263
|
230 |
msgctxt "abbreviated timestamp in hours"
|
231 |
msgid "%dh"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: rotatingtweets.php:264
|
235 |
msgctxt ""
|
236 |
"short date format as per http://uk.php.net/manual/en/function.date.php"
|
237 |
msgid "j M"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: rotatingtweets.php:265
|
241 |
msgctxt ""
|
242 |
"slightly longer date format as per http://uk.php.net/manual/en/function.date."
|
243 |
"php"
|
244 |
msgid "j M Y"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: rotatingtweets.php:271
|
248 |
msgid "reply"
|
249 |
msgstr "Antworten"
|
250 |
|
251 |
+
#: rotatingtweets.php:272
|
252 |
msgid "retweet"
|
253 |
msgstr "Retweeten"
|
254 |
|
255 |
+
#: rotatingtweets.php:273
|
256 |
msgid "favorite"
|
257 |
msgstr "Favorisieren"
|
258 |
|
259 |
+
#: rotatingtweets.php:411
|
260 |
+
msgid ""
|
261 |
+
"Please update <a href=\"%2$s\">your settings for Rotating Tweets</a>. The "
|
262 |
+
"Twitter API <a href=\"%1$s\">changed in March 2013</a> and new settings are "
|
263 |
+
"needed for Rotating Tweets to continue working."
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: rotatingtweets.php:413
|
267 |
+
msgid ""
|
268 |
+
"Please update <a href=\"%2$s\">your settings for Rotating Tweets</a>. The "
|
269 |
+
"Twitter API will <a href=\"%1$s\">be changing in March 2013</a> and new "
|
270 |
+
"settings are needed for Rotating Tweets to continue working after the API "
|
271 |
+
"changes."
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: rotatingtweets.php:419
|
275 |
+
msgid ""
|
276 |
+
"Please update <a href=\"%1$s\">your settings for Rotating Tweets</a>. "
|
277 |
+
"Currently Rotating Tweets cannot authenticate you with Twitter using the "
|
278 |
+
"details you have given."
|
279 |
+
msgstr ""
|
280 |
+
|
281 |
+
#: rotatingtweets.php:427 rotatingtweets.php:433
|
282 |
+
msgid "Rotating Tweets: Twitter API settings"
|
283 |
+
msgstr ""
|
284 |
+
|
285 |
+
#: rotatingtweets.php:435
|
286 |
+
msgid "You do not have sufficient permissions to access this page."
|
287 |
+
msgstr ""
|
288 |
+
|
289 |
+
#: rotatingtweets.php:437
|
290 |
+
msgid ""
|
291 |
+
"<p>Twitter <a href=\"%s\">recently announced</a> that they will be changing "
|
292 |
+
"the way that they allow people to use the information in their tweets.</"
|
293 |
+
"p><p>Please take the following steps to make sure that Rotating Tweets "
|
294 |
+
"continues working:</p>"
|
295 |
+
msgstr ""
|
296 |
+
|
297 |
+
#: rotatingtweets.php:438
|
298 |
+
msgid ""
|
299 |
+
"<h3>Step 1:</h3><p>Go to the <a href=\"%s\">My applications page</a> on the "
|
300 |
+
"Twitter website to set up your website as a new Twitter 'application'. You "
|
301 |
+
"may need to log-in using your Twitter user name and password.</p>"
|
302 |
+
msgstr ""
|
303 |
+
|
304 |
+
#: rotatingtweets.php:439
|
305 |
+
msgid ""
|
306 |
+
"<h3>Step 2:</h3><p>If you don't already have a suitable 'application' that "
|
307 |
+
"you can use for your website, set one up on the <a href=\"%s\">Create an "
|
308 |
+
"Application page</a>.</p> <p>It's normally best to use the name, description "
|
309 |
+
"and website URL of the website where you plan to use Rotating Tweets.</"
|
310 |
+
"p><p>You don't need a Callback URL.</p>"
|
311 |
+
msgstr ""
|
312 |
+
|
313 |
+
#: rotatingtweets.php:440
|
314 |
+
msgid ""
|
315 |
+
"<h3>Step 3:</h3><p>After clicking <strong>Create your Twitter application</"
|
316 |
+
"strong>, on the following page, click on <strong>Create my access token</"
|
317 |
+
"strong>.</p>"
|
318 |
+
msgstr ""
|
319 |
+
|
320 |
+
#: rotatingtweets.php:441
|
321 |
+
msgid ""
|
322 |
+
"<h3>Step 4:</h3><p>Copy the <strong>Consumer key</strong>, <strong>Consumer "
|
323 |
+
"secret</strong>, <strong>Access token</strong> and <strong>Access token "
|
324 |
+
"secret</strong> from your Twitter application page into the settings below.</"
|
325 |
+
"p>"
|
326 |
+
msgstr ""
|
327 |
+
|
328 |
+
#: rotatingtweets.php:442
|
329 |
+
msgid ""
|
330 |
+
"<h3>Step 5:</h3><p>Click on <strong>Save Changes</strong>. If there are any "
|
331 |
+
"problems, you will get an error message from Twitter which should help "
|
332 |
+
"diagnose the problem.</p>"
|
333 |
+
msgstr ""
|
334 |
+
|
335 |
+
#: rotatingtweets.php:443
|
336 |
+
msgid ""
|
337 |
+
"<p><em>Even though you are only entering one set of Twitter API data, "
|
338 |
+
"Rotating Tweets will continue to support multiple widgets and shortcodes "
|
339 |
+
"pulling from a variety of different Twitter accounts.</em></p>"
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
#: rotatingtweets.php:447
|
343 |
+
msgid "Save Changes"
|
344 |
+
msgstr ""
|
345 |
+
|
346 |
+
#: rotatingtweets.php:454
|
347 |
+
msgid "Twitter API Settings"
|
348 |
+
msgstr ""
|
349 |
+
|
350 |
+
#: rotatingtweets.php:455
|
351 |
+
msgid "Twitter API Consumer Key"
|
352 |
+
msgstr ""
|
353 |
+
|
354 |
+
#: rotatingtweets.php:456
|
355 |
+
msgid "Twitter API Consumer Secret"
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: rotatingtweets.php:457
|
359 |
+
msgid "Twitter API Access Token"
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: rotatingtweets.php:458
|
363 |
+
msgid "Twitter API Access Token Secret"
|
364 |
+
msgstr ""
|
365 |
+
|
366 |
+
#: rotatingtweets.php:489
|
367 |
+
msgid "Error: Twitter API Consumer Key not correctly formatted."
|
368 |
+
msgstr ""
|
369 |
+
|
370 |
+
#: rotatingtweets.php:496
|
371 |
+
msgid "Error: Twitter API Consumer Secret not correctly formatted."
|
372 |
+
msgstr ""
|
373 |
+
|
374 |
+
#: rotatingtweets.php:503
|
375 |
+
msgid "Error: Twitter API Access Token not correctly formatted."
|
376 |
+
msgstr ""
|
377 |
+
|
378 |
+
#: rotatingtweets.php:510
|
379 |
+
msgid "Error: Twitter API Access Token Secret not correctly formatted."
|
380 |
+
msgstr ""
|
381 |
+
|
382 |
+
#: rotatingtweets.php:517
|
383 |
+
msgid ""
|
384 |
+
"Error message received from Twitter: %1$s. <a href=\"%2$s\">Please check "
|
385 |
+
"your API key, secret, token and secret token on the Twitter website</a>."
|
386 |
+
msgstr ""
|
387 |
+
|
388 |
+
#: rotatingtweets.php:772
|
389 |
msgid "Problem retrieving data from Twitter"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: rotatingtweets.php:776
|
393 |
msgid "This website is currently <a href='%s'>rate-limited by Twitter</a>."
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: rotatingtweets.php:778
|
397 |
msgid "Next attempt to get data will be in %d minute"
|
398 |
msgid_plural "Next attempt to get data will be in %d minutes"
|
399 |
msgstr[0] ""
|
400 |
msgstr[1] ""
|
401 |
|
402 |
+
#: rotatingtweets.php:779
|
403 |
msgid "Next attempt to get data will be in less than a minute"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: rotatingtweets.php:785
|
407 |
msgid "Wordpress error message"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: rotatingtweets.php:788
|
411 |
+
msgid ""
|
412 |
+
"Please check the Rotating Tweets settings or the <a href='%s'>Twitter API "
|
413 |
+
"status</a>."
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: rotatingtweets.php:910
|
417 |
msgid "from <a href='%1$s' title='%2$s'>%2$s's Twitter</a>"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: rotatingtweets.php:914
|
421 |
msgid "via %s"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: rotatingtweets.php:925
|
425 |
msgid "Twitter"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: rotatingtweets.php:934 rotatingtweets.php:950
|
429 |
msgid "Retweeted by %s"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: rotatingtweets.php:952
|
433 |
msgid "Expand"
|
434 |
msgstr "Öffnen"
|
435 |
|
436 |
+
#: rotatingtweets.php:964
|
437 |
msgid "Problem retrieving data from Twitter."
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: rotatingtweets.php:966
|
441 |
msgid "Please check the comments on this page's HTML to understand more."
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: rotatingtweets.php:986
|
445 |
msgid "Follow @%s"
|
446 |
msgstr "Folgen @%s"
|
447 |
|
languages/rotatingtweets-en_GB.mo
CHANGED
Binary file
|
languages/rotatingtweets-en_GB.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Rotating Tweets (Twitter widget & shortcode) 0.504\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/rotatingtweets\n"
|
7 |
-
"POT-Creation-Date: 2013-02
|
8 |
-
"PO-Revision-Date: 2013-02
|
9 |
"Last-Translator: Martin Tod <martin@martintod.org.uk>\n"
|
10 |
"Language-Team: Martin Tod <martin@martintod.org.uk>\n"
|
11 |
"Language: en_GB\n"
|
@@ -20,87 +20,87 @@ msgstr ""
|
|
20 |
msgid "A widget to show tweets for a particular user in rotation."
|
21 |
msgstr "A widget to show tweets for a particular user in rotation."
|
22 |
|
23 |
-
#: rotatingtweets.php:
|
24 |
msgid "Title:"
|
25 |
msgstr "Title:"
|
26 |
|
27 |
-
#: rotatingtweets.php:
|
28 |
msgid "Twitter name:"
|
29 |
msgstr "Twitter name:"
|
30 |
|
31 |
-
#: rotatingtweets.php:
|
32 |
msgid "Include retweets?"
|
33 |
msgstr "Include retweets?"
|
34 |
|
35 |
-
#: rotatingtweets.php:
|
36 |
msgid "Exclude replies?"
|
37 |
msgstr "Exclude replies?"
|
38 |
|
39 |
-
#: rotatingtweets.php:
|
40 |
msgid "Open all links in new window or tab?"
|
41 |
msgstr "Open all links in new window or tab?"
|
42 |
|
43 |
-
#: rotatingtweets.php:
|
44 |
msgid "How many tweets?"
|
45 |
msgstr "How many tweets?"
|
46 |
|
47 |
-
#: rotatingtweets.php:
|
48 |
msgid "Speed"
|
49 |
msgstr "Speed"
|
50 |
|
51 |
-
#: rotatingtweets.php:
|
52 |
msgid "Faster (3 seconds)"
|
53 |
msgstr "Faster (3 seconds)"
|
54 |
|
55 |
-
#: rotatingtweets.php:
|
56 |
msgid "Normal (4 seconds)"
|
57 |
msgstr "Normal (4 seconds)"
|
58 |
|
59 |
-
#: rotatingtweets.php:
|
60 |
msgid "Slower (5 seconds)"
|
61 |
msgstr "Slower (5 seconds)"
|
62 |
|
63 |
-
#: rotatingtweets.php:
|
64 |
msgid "Slowest (6 seconds)"
|
65 |
msgstr "Slowest (6 seconds)"
|
66 |
|
67 |
-
#: rotatingtweets.php:
|
68 |
msgid "Ultra slow (20 seconds)"
|
69 |
msgstr "Ultra slow (20 seconds)"
|
70 |
|
71 |
-
#: rotatingtweets.php:
|
72 |
msgid "Scroll Up"
|
73 |
msgstr "Scroll Up"
|
74 |
|
75 |
-
#: rotatingtweets.php:
|
76 |
msgid "Scroll Down"
|
77 |
msgstr "Scroll Down"
|
78 |
|
79 |
-
#: rotatingtweets.php:
|
80 |
msgid "Scroll Left"
|
81 |
msgstr "Scroll Left"
|
82 |
|
83 |
-
#: rotatingtweets.php:
|
84 |
msgid "Scroll Right"
|
85 |
msgstr "Scroll Right"
|
86 |
|
87 |
-
#: rotatingtweets.php:
|
88 |
msgid "Fade"
|
89 |
msgstr "Fade"
|
90 |
|
91 |
-
#: rotatingtweets.php:
|
92 |
msgid "Type of rotation"
|
93 |
msgstr "Type of rotation"
|
94 |
|
95 |
-
#: rotatingtweets.php:
|
96 |
msgid "Display format"
|
97 |
msgstr "Display format"
|
98 |
|
99 |
-
#: rotatingtweets.php:
|
100 |
msgid "Original rotating tweets layout"
|
101 |
msgstr "Original rotating tweets layout"
|
102 |
|
103 |
-
#: rotatingtweets.php:
|
104 |
msgid ""
|
105 |
"<a target='_blank' href='https://dev.twitter.com/terms/display-"
|
106 |
"guidelines'>Official Twitter guidelines</a> (regular)"
|
@@ -108,7 +108,7 @@ msgstr ""
|
|
108 |
"<a target='_blank' href='https://dev.twitter.com/terms/display-"
|
109 |
"guidelines'>Official Twitter guidelines</a> (regular)"
|
110 |
|
111 |
-
#: rotatingtweets.php:
|
112 |
msgid ""
|
113 |
"<a target='_blank' href='https://dev.twitter.com/terms/display-"
|
114 |
"guidelines'>Official Twitter guidelines</a> (wide)"
|
@@ -116,159 +116,159 @@ msgstr ""
|
|
116 |
"<a target='_blank' href='https://dev.twitter.com/terms/display-"
|
117 |
"guidelines'>Official Twitter guidelines</a> (wide)"
|
118 |
|
119 |
-
#: rotatingtweets.php:
|
120 |
msgid "Show tweet details?"
|
121 |
msgstr "Show tweet details?"
|
122 |
|
123 |
-
#: rotatingtweets.php:
|
124 |
msgid "Time/date of tweet"
|
125 |
msgstr "Time/date of tweet"
|
126 |
|
127 |
-
#: rotatingtweets.php:
|
128 |
msgid "Name of person tweeting"
|
129 |
msgstr "Name of person tweeting"
|
130 |
|
131 |
-
#: rotatingtweets.php:
|
132 |
msgid "Source of tweet"
|
133 |
msgstr "Source of tweet"
|
134 |
|
135 |
-
#: rotatingtweets.php:
|
136 |
msgid "'reply · retweet · favorite' links"
|
137 |
msgstr "'reply · retweet · favourite' links"
|
138 |
|
139 |
-
#: rotatingtweets.php:
|
140 |
msgid "Show follow button?"
|
141 |
msgstr "Show follow button?"
|
142 |
|
143 |
-
#: rotatingtweets.php:
|
144 |
msgctxt "Show follow button?"
|
145 |
msgid "None"
|
146 |
msgstr "None"
|
147 |
|
148 |
-
#: rotatingtweets.php:
|
149 |
msgid "Show name and number of followers"
|
150 |
msgstr "Show name and number of followers"
|
151 |
|
152 |
-
#: rotatingtweets.php:
|
153 |
msgid "Show name only"
|
154 |
msgstr "Show name only"
|
155 |
|
156 |
-
#: rotatingtweets.php:
|
157 |
msgid "Show followers only"
|
158 |
msgstr "Show followers only"
|
159 |
|
160 |
-
#: rotatingtweets.php:
|
161 |
msgid "Show button only"
|
162 |
msgstr "Show button only"
|
163 |
|
164 |
-
#: rotatingtweets.php:
|
165 |
msgid "less than a second ago"
|
166 |
msgstr "less than a second ago"
|
167 |
|
168 |
-
#: rotatingtweets.php:
|
169 |
msgid "%d seconds ago"
|
170 |
msgstr "%d seconds ago"
|
171 |
|
172 |
-
#: rotatingtweets.php:
|
173 |
msgid "about a minute ago"
|
174 |
msgid_plural "about %d minutes ago"
|
175 |
msgstr[0] "about a minute ago"
|
176 |
msgstr[1] "about %d minutes ago"
|
177 |
|
178 |
-
#: rotatingtweets.php:
|
179 |
msgid "about an hour ago"
|
180 |
msgid_plural "about %d hours ago"
|
181 |
msgstr[0] "about an hour ago"
|
182 |
msgstr[1] "about %d hours ago"
|
183 |
|
184 |
-
#: rotatingtweets.php:
|
185 |
msgid "yesterday"
|
186 |
msgstr "yesterday"
|
187 |
|
188 |
-
#: rotatingtweets.php:
|
189 |
msgid "about a day ago"
|
190 |
msgid_plural "about %d days ago"
|
191 |
msgstr[0] "about a day ago"
|
192 |
msgstr[1] "about %d days ago"
|
193 |
|
194 |
-
#: rotatingtweets.php:
|
195 |
msgid "last week"
|
196 |
msgstr "last week"
|
197 |
|
198 |
-
#: rotatingtweets.php:
|
199 |
msgid "about a week ago"
|
200 |
msgid_plural "about %d weeks ago"
|
201 |
msgstr[0] "about a week ago"
|
202 |
msgstr[1] "about %d weeks ago"
|
203 |
|
204 |
-
#: rotatingtweets.php:
|
205 |
msgid "last month"
|
206 |
msgstr "last month"
|
207 |
|
208 |
-
#: rotatingtweets.php:
|
209 |
msgid "about a month ago"
|
210 |
msgid_plural "about %d months ago"
|
211 |
msgstr[0] "about a month ago"
|
212 |
msgstr[1] "about %d months ago"
|
213 |
|
214 |
-
#: rotatingtweets.php:
|
215 |
msgid "last year"
|
216 |
msgstr "last year"
|
217 |
|
218 |
-
#: rotatingtweets.php:
|
219 |
msgid "about a year ago"
|
220 |
msgid_plural "about %d years ago"
|
221 |
msgstr[0] "about a year ago"
|
222 |
msgstr[1] "about %d years ago"
|
223 |
|
224 |
-
#: rotatingtweets.php:
|
225 |
msgctxt "abbreviated timestamp in seconds"
|
226 |
msgid "%ds"
|
227 |
msgstr "%ds"
|
228 |
|
229 |
-
#: rotatingtweets.php:
|
230 |
msgctxt "abbreviated timestamp in minutes"
|
231 |
msgid "%dm"
|
232 |
msgstr "%dm"
|
233 |
|
234 |
-
#: rotatingtweets.php:
|
235 |
msgctxt "abbreviated timestamp in hours"
|
236 |
msgid "%dh"
|
237 |
msgstr "%dh"
|
238 |
|
239 |
-
#: rotatingtweets.php:
|
240 |
msgctxt ""
|
241 |
"short date format as per http://uk.php.net/manual/en/function.date.php"
|
242 |
msgid "j M"
|
243 |
msgstr "j M"
|
244 |
|
245 |
-
#: rotatingtweets.php:
|
246 |
msgctxt ""
|
247 |
"slightly longer date format as per http://uk.php.net/manual/en/function.date."
|
248 |
"php"
|
249 |
msgid "j M Y"
|
250 |
msgstr "j M Y"
|
251 |
|
252 |
-
#: rotatingtweets.php:
|
253 |
msgid "reply"
|
254 |
msgstr "reply"
|
255 |
|
256 |
-
#: rotatingtweets.php:
|
257 |
msgid "retweet"
|
258 |
msgstr "retweet"
|
259 |
|
260 |
-
#: rotatingtweets.php:
|
261 |
msgid "favorite"
|
262 |
msgstr "favourite"
|
263 |
|
264 |
-
#: rotatingtweets.php:
|
265 |
msgid ""
|
266 |
"Please update <a href=\"%2$s\">your settings for Rotating Tweets</a>. The "
|
267 |
"Twitter API <a href=\"%1$s\">changed in March 2013</a> and new settings are "
|
268 |
"needed for Rotating Tweets to continue working."
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: rotatingtweets.php:
|
272 |
msgid ""
|
273 |
"Please update <a href=\"%2$s\">your settings for Rotating Tweets</a>. The "
|
274 |
"Twitter API will <a href=\"%1$s\">be changing in March 2013</a> and new "
|
@@ -276,128 +276,177 @@ msgid ""
|
|
276 |
"changes."
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: rotatingtweets.php:
|
280 |
msgid ""
|
281 |
"Please update <a href=\"%1$s\">your settings for Rotating Tweets</a>. "
|
282 |
-
"Currently
|
|
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: rotatingtweets.php:
|
286 |
msgid "Rotating Tweets: Twitter API settings"
|
287 |
msgstr "Rotating Tweets: Twitter API settings"
|
288 |
|
289 |
-
#: rotatingtweets.php:
|
290 |
msgid "You do not have sufficient permissions to access this page."
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: rotatingtweets.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
294 |
msgid ""
|
295 |
-
"<p>
|
296 |
-
"
|
297 |
-
"
|
298 |
-
"
|
299 |
-
"\">My applications page</a> on the Twitter website to set up your website as "
|
300 |
-
"a new Twitter 'application'. You may need to log-in using your Twitter user "
|
301 |
-
"name and password.</p><h3>Step 2:</h3><p>If you don't already have a "
|
302 |
-
"suitable 'application' that you can use for your website, set one up on the "
|
303 |
-
"<a href=\"%2$s\">Create an Application page</a>.</p> <p>It's normally best "
|
304 |
-
"to use the name, description and website URL of the website where you plan "
|
305 |
-
"to use Rotating Tweets.</p><p>You don't need a Callback URL.</p><h3>Step 3:</"
|
306 |
-
"h3><p>After clicking <strong>Create your Twitter application</strong>, on "
|
307 |
-
"the following page, click on <strong>Create my access token</strong>.</"
|
308 |
-
"p><h3>Step 4:</h3><p>Copy the <strong>Consumer key</strong>, "
|
309 |
-
"<strong>Consumer secret</strong>, <strong>Access token</strong> and "
|
310 |
-
"<strong>Access token secret</strong> from your Twitter application page into "
|
311 |
-
"the settings below.</p><h3>Step 5:</h3><p>Click on <strong>Save Changes</"
|
312 |
-
"strong>. If there are any problems, you will get an error message from "
|
313 |
-
"Twitter which should help diagnose the problem.</p>"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: rotatingtweets.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
317 |
msgid "Save Changes"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: rotatingtweets.php:
|
321 |
msgid "Twitter API Settings"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: rotatingtweets.php:
|
325 |
msgid "Twitter API Consumer Key"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: rotatingtweets.php:
|
329 |
msgid "Twitter API Consumer Secret"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: rotatingtweets.php:
|
333 |
msgid "Twitter API Access Token"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: rotatingtweets.php:
|
337 |
msgid "Twitter API Access Token Secret"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: rotatingtweets.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
341 |
msgid ""
|
342 |
"Error message received from Twitter: %1$s. <a href=\"%2$s\">Please check "
|
343 |
"your API key, secret, token and secret token on the Twitter website</a>."
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: rotatingtweets.php:
|
347 |
msgid "Problem retrieving data from Twitter"
|
348 |
msgstr "Problem retrieving data from Twitter"
|
349 |
|
350 |
-
#: rotatingtweets.php:
|
351 |
msgid "This website is currently <a href='%s'>rate-limited by Twitter</a>."
|
352 |
msgstr "This website is currently <a href='%s'>rate-limited by Twitter</a>."
|
353 |
|
354 |
-
#: rotatingtweets.php:
|
355 |
msgid "Next attempt to get data will be in %d minute"
|
356 |
msgid_plural "Next attempt to get data will be in %d minutes"
|
357 |
msgstr[0] "Next attempt to get data will be in %d minute"
|
358 |
msgstr[1] "Next attempt to get data will be in %d minutes"
|
359 |
|
360 |
-
#: rotatingtweets.php:
|
361 |
msgid "Next attempt to get data will be in less than a minute"
|
362 |
msgstr "Next attempt to get data will be in less than a minute"
|
363 |
|
364 |
-
#: rotatingtweets.php:
|
365 |
msgid "Wordpress error message"
|
366 |
msgstr "Wordpress error message"
|
367 |
|
368 |
-
#: rotatingtweets.php:
|
369 |
-
msgid "
|
370 |
-
|
|
|
|
|
371 |
|
372 |
-
#: rotatingtweets.php:
|
373 |
msgid "from <a href='%1$s' title='%2$s'>%2$s's Twitter</a>"
|
374 |
msgstr "from <a href='%1$s' title='%2$s'>%2$s's Twitter</a>"
|
375 |
|
376 |
-
#: rotatingtweets.php:
|
377 |
msgid "via %s"
|
378 |
msgstr "via %s"
|
379 |
|
380 |
-
#: rotatingtweets.php:
|
381 |
msgid "Twitter"
|
382 |
msgstr "Twitter"
|
383 |
|
384 |
-
#: rotatingtweets.php:
|
385 |
msgid "Retweeted by %s"
|
386 |
msgstr "Retweeted by %s"
|
387 |
|
388 |
-
#: rotatingtweets.php:
|
389 |
msgid "Expand"
|
390 |
msgstr "Expand"
|
391 |
|
392 |
-
#: rotatingtweets.php:
|
393 |
msgid "Problem retrieving data from Twitter."
|
394 |
msgstr "Problem retrieving data from Twitter."
|
395 |
|
396 |
-
#: rotatingtweets.php:
|
397 |
msgid "Please check the comments on this page's HTML to understand more."
|
398 |
msgstr "Please check the comments on this page's HTML to understand more."
|
399 |
|
400 |
-
#: rotatingtweets.php:
|
401 |
msgid "Follow @%s"
|
402 |
msgstr "Follow @%s"
|
403 |
|
@@ -420,3 +469,6 @@ msgstr "Martin Tod"
|
|
420 |
#. Author URI of the plugin/theme
|
421 |
msgid "http://www.martintod.org.uk"
|
422 |
msgstr "http://www.martintod.org.uk"
|
|
|
|
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Rotating Tweets (Twitter widget & shortcode) 0.504\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/rotatingtweets\n"
|
7 |
+
"POT-Creation-Date: 2013-03-02 20:25:59+00:00\n"
|
8 |
+
"PO-Revision-Date: 2013-03-02 20:29-0000\n"
|
9 |
"Last-Translator: Martin Tod <martin@martintod.org.uk>\n"
|
10 |
"Language-Team: Martin Tod <martin@martintod.org.uk>\n"
|
11 |
"Language: en_GB\n"
|
20 |
msgid "A widget to show tweets for a particular user in rotation."
|
21 |
msgstr "A widget to show tweets for a particular user in rotation."
|
22 |
|
23 |
+
#: rotatingtweets.php:130
|
24 |
msgid "Title:"
|
25 |
msgstr "Title:"
|
26 |
|
27 |
+
#: rotatingtweets.php:131
|
28 |
msgid "Twitter name:"
|
29 |
msgstr "Twitter name:"
|
30 |
|
31 |
+
#: rotatingtweets.php:132
|
32 |
msgid "Include retweets?"
|
33 |
msgstr "Include retweets?"
|
34 |
|
35 |
+
#: rotatingtweets.php:133
|
36 |
msgid "Exclude replies?"
|
37 |
msgstr "Exclude replies?"
|
38 |
|
39 |
+
#: rotatingtweets.php:134
|
40 |
msgid "Open all links in new window or tab?"
|
41 |
msgstr "Open all links in new window or tab?"
|
42 |
|
43 |
+
#: rotatingtweets.php:135
|
44 |
msgid "How many tweets?"
|
45 |
msgstr "How many tweets?"
|
46 |
|
47 |
+
#: rotatingtweets.php:143
|
48 |
msgid "Speed"
|
49 |
msgstr "Speed"
|
50 |
|
51 |
+
#: rotatingtweets.php:146
|
52 |
msgid "Faster (3 seconds)"
|
53 |
msgstr "Faster (3 seconds)"
|
54 |
|
55 |
+
#: rotatingtweets.php:147
|
56 |
msgid "Normal (4 seconds)"
|
57 |
msgstr "Normal (4 seconds)"
|
58 |
|
59 |
+
#: rotatingtweets.php:148
|
60 |
msgid "Slower (5 seconds)"
|
61 |
msgstr "Slower (5 seconds)"
|
62 |
|
63 |
+
#: rotatingtweets.php:149
|
64 |
msgid "Slowest (6 seconds)"
|
65 |
msgstr "Slowest (6 seconds)"
|
66 |
|
67 |
+
#: rotatingtweets.php:150
|
68 |
msgid "Ultra slow (20 seconds)"
|
69 |
msgstr "Ultra slow (20 seconds)"
|
70 |
|
71 |
+
#: rotatingtweets.php:162
|
72 |
msgid "Scroll Up"
|
73 |
msgstr "Scroll Up"
|
74 |
|
75 |
+
#: rotatingtweets.php:163
|
76 |
msgid "Scroll Down"
|
77 |
msgstr "Scroll Down"
|
78 |
|
79 |
+
#: rotatingtweets.php:164
|
80 |
msgid "Scroll Left"
|
81 |
msgstr "Scroll Left"
|
82 |
|
83 |
+
#: rotatingtweets.php:165
|
84 |
msgid "Scroll Right"
|
85 |
msgstr "Scroll Right"
|
86 |
|
87 |
+
#: rotatingtweets.php:166
|
88 |
msgid "Fade"
|
89 |
msgstr "Fade"
|
90 |
|
91 |
+
#: rotatingtweets.php:170
|
92 |
msgid "Type of rotation"
|
93 |
msgstr "Type of rotation"
|
94 |
|
95 |
+
#: rotatingtweets.php:179
|
96 |
msgid "Display format"
|
97 |
msgstr "Display format"
|
98 |
|
99 |
+
#: rotatingtweets.php:182
|
100 |
msgid "Original rotating tweets layout"
|
101 |
msgstr "Original rotating tweets layout"
|
102 |
|
103 |
+
#: rotatingtweets.php:183
|
104 |
msgid ""
|
105 |
"<a target='_blank' href='https://dev.twitter.com/terms/display-"
|
106 |
"guidelines'>Official Twitter guidelines</a> (regular)"
|
108 |
"<a target='_blank' href='https://dev.twitter.com/terms/display-"
|
109 |
"guidelines'>Official Twitter guidelines</a> (regular)"
|
110 |
|
111 |
+
#: rotatingtweets.php:184
|
112 |
msgid ""
|
113 |
"<a target='_blank' href='https://dev.twitter.com/terms/display-"
|
114 |
"guidelines'>Official Twitter guidelines</a> (wide)"
|
116 |
"<a target='_blank' href='https://dev.twitter.com/terms/display-"
|
117 |
"guidelines'>Official Twitter guidelines</a> (wide)"
|
118 |
|
119 |
+
#: rotatingtweets.php:194
|
120 |
msgid "Show tweet details?"
|
121 |
msgstr "Show tweet details?"
|
122 |
|
123 |
+
#: rotatingtweets.php:197
|
124 |
msgid "Time/date of tweet"
|
125 |
msgstr "Time/date of tweet"
|
126 |
|
127 |
+
#: rotatingtweets.php:198
|
128 |
msgid "Name of person tweeting"
|
129 |
msgstr "Name of person tweeting"
|
130 |
|
131 |
+
#: rotatingtweets.php:199
|
132 |
msgid "Source of tweet"
|
133 |
msgstr "Source of tweet"
|
134 |
|
135 |
+
#: rotatingtweets.php:200
|
136 |
msgid "'reply · retweet · favorite' links"
|
137 |
msgstr "'reply · retweet · favourite' links"
|
138 |
|
139 |
+
#: rotatingtweets.php:210
|
140 |
msgid "Show follow button?"
|
141 |
msgstr "Show follow button?"
|
142 |
|
143 |
+
#: rotatingtweets.php:213
|
144 |
msgctxt "Show follow button?"
|
145 |
msgid "None"
|
146 |
msgstr "None"
|
147 |
|
148 |
+
#: rotatingtweets.php:214
|
149 |
msgid "Show name and number of followers"
|
150 |
msgstr "Show name and number of followers"
|
151 |
|
152 |
+
#: rotatingtweets.php:215
|
153 |
msgid "Show name only"
|
154 |
msgstr "Show name only"
|
155 |
|
156 |
+
#: rotatingtweets.php:216
|
157 |
msgid "Show followers only"
|
158 |
msgstr "Show followers only"
|
159 |
|
160 |
+
#: rotatingtweets.php:217
|
161 |
msgid "Show button only"
|
162 |
msgstr "Show button only"
|
163 |
|
164 |
+
#: rotatingtweets.php:242
|
165 |
msgid "less than a second ago"
|
166 |
msgstr "less than a second ago"
|
167 |
|
168 |
+
#: rotatingtweets.php:243
|
169 |
msgid "%d seconds ago"
|
170 |
msgstr "%d seconds ago"
|
171 |
|
172 |
+
#: rotatingtweets.php:244
|
173 |
msgid "about a minute ago"
|
174 |
msgid_plural "about %d minutes ago"
|
175 |
msgstr[0] "about a minute ago"
|
176 |
msgstr[1] "about %d minutes ago"
|
177 |
|
178 |
+
#: rotatingtweets.php:245 rotatingtweets.php:247
|
179 |
msgid "about an hour ago"
|
180 |
msgid_plural "about %d hours ago"
|
181 |
msgstr[0] "about an hour ago"
|
182 |
msgstr[1] "about %d hours ago"
|
183 |
|
184 |
+
#: rotatingtweets.php:246
|
185 |
msgid "yesterday"
|
186 |
msgstr "yesterday"
|
187 |
|
188 |
+
#: rotatingtweets.php:248
|
189 |
msgid "about a day ago"
|
190 |
msgid_plural "about %d days ago"
|
191 |
msgstr[0] "about a day ago"
|
192 |
msgstr[1] "about %d days ago"
|
193 |
|
194 |
+
#: rotatingtweets.php:249
|
195 |
msgid "last week"
|
196 |
msgstr "last week"
|
197 |
|
198 |
+
#: rotatingtweets.php:250
|
199 |
msgid "about a week ago"
|
200 |
msgid_plural "about %d weeks ago"
|
201 |
msgstr[0] "about a week ago"
|
202 |
msgstr[1] "about %d weeks ago"
|
203 |
|
204 |
+
#: rotatingtweets.php:251
|
205 |
msgid "last month"
|
206 |
msgstr "last month"
|
207 |
|
208 |
+
#: rotatingtweets.php:252
|
209 |
msgid "about a month ago"
|
210 |
msgid_plural "about %d months ago"
|
211 |
msgstr[0] "about a month ago"
|
212 |
msgstr[1] "about %d months ago"
|
213 |
|
214 |
+
#: rotatingtweets.php:253
|
215 |
msgid "last year"
|
216 |
msgstr "last year"
|
217 |
|
218 |
+
#: rotatingtweets.php:254
|
219 |
msgid "about a year ago"
|
220 |
msgid_plural "about %d years ago"
|
221 |
msgstr[0] "about a year ago"
|
222 |
msgstr[1] "about %d years ago"
|
223 |
|
224 |
+
#: rotatingtweets.php:261
|
225 |
msgctxt "abbreviated timestamp in seconds"
|
226 |
msgid "%ds"
|
227 |
msgstr "%ds"
|
228 |
|
229 |
+
#: rotatingtweets.php:262
|
230 |
msgctxt "abbreviated timestamp in minutes"
|
231 |
msgid "%dm"
|
232 |
msgstr "%dm"
|
233 |
|
234 |
+
#: rotatingtweets.php:263
|
235 |
msgctxt "abbreviated timestamp in hours"
|
236 |
msgid "%dh"
|
237 |
msgstr "%dh"
|
238 |
|
239 |
+
#: rotatingtweets.php:264
|
240 |
msgctxt ""
|
241 |
"short date format as per http://uk.php.net/manual/en/function.date.php"
|
242 |
msgid "j M"
|
243 |
msgstr "j M"
|
244 |
|
245 |
+
#: rotatingtweets.php:265
|
246 |
msgctxt ""
|
247 |
"slightly longer date format as per http://uk.php.net/manual/en/function.date."
|
248 |
"php"
|
249 |
msgid "j M Y"
|
250 |
msgstr "j M Y"
|
251 |
|
252 |
+
#: rotatingtweets.php:271
|
253 |
msgid "reply"
|
254 |
msgstr "reply"
|
255 |
|
256 |
+
#: rotatingtweets.php:272
|
257 |
msgid "retweet"
|
258 |
msgstr "retweet"
|
259 |
|
260 |
+
#: rotatingtweets.php:273
|
261 |
msgid "favorite"
|
262 |
msgstr "favourite"
|
263 |
|
264 |
+
#: rotatingtweets.php:411
|
265 |
msgid ""
|
266 |
"Please update <a href=\"%2$s\">your settings for Rotating Tweets</a>. The "
|
267 |
"Twitter API <a href=\"%1$s\">changed in March 2013</a> and new settings are "
|
268 |
"needed for Rotating Tweets to continue working."
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: rotatingtweets.php:413
|
272 |
msgid ""
|
273 |
"Please update <a href=\"%2$s\">your settings for Rotating Tweets</a>. The "
|
274 |
"Twitter API will <a href=\"%1$s\">be changing in March 2013</a> and new "
|
276 |
"changes."
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: rotatingtweets.php:419
|
280 |
msgid ""
|
281 |
"Please update <a href=\"%1$s\">your settings for Rotating Tweets</a>. "
|
282 |
+
"Currently Rotating Tweets cannot authenticate you with Twitter using the "
|
283 |
+
"details you have given."
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: rotatingtweets.php:427 rotatingtweets.php:433
|
287 |
msgid "Rotating Tweets: Twitter API settings"
|
288 |
msgstr "Rotating Tweets: Twitter API settings"
|
289 |
|
290 |
+
#: rotatingtweets.php:435
|
291 |
msgid "You do not have sufficient permissions to access this page."
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: rotatingtweets.php:437
|
295 |
+
msgid ""
|
296 |
+
"<p>Twitter <a href=\"%s\">recently announced</a> that they will be changing "
|
297 |
+
"the way that they allow people to use the information in their tweets.</"
|
298 |
+
"p><p>Please take the following steps to make sure that Rotating Tweets "
|
299 |
+
"continues working:</p>"
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: rotatingtweets.php:438
|
303 |
+
msgid ""
|
304 |
+
"<h3>Step 1:</h3><p>Go to the <a href=\"%s\">My applications page</a> on the "
|
305 |
+
"Twitter website to set up your website as a new Twitter 'application'. You "
|
306 |
+
"may need to log-in using your Twitter user name and password.</p>"
|
307 |
+
msgstr ""
|
308 |
+
|
309 |
+
#: rotatingtweets.php:439
|
310 |
+
msgid ""
|
311 |
+
"<h3>Step 2:</h3><p>If you don't already have a suitable 'application' that "
|
312 |
+
"you can use for your website, set one up on the <a href=\"%s\">Create an "
|
313 |
+
"Application page</a>.</p> <p>It's normally best to use the name, description "
|
314 |
+
"and website URL of the website where you plan to use Rotating Tweets.</"
|
315 |
+
"p><p>You don't need a Callback URL.</p>"
|
316 |
+
msgstr ""
|
317 |
+
|
318 |
+
#: rotatingtweets.php:440
|
319 |
+
msgid ""
|
320 |
+
"<h3>Step 3:</h3><p>After clicking <strong>Create your Twitter application</"
|
321 |
+
"strong>, on the following page, click on <strong>Create my access token</"
|
322 |
+
"strong>.</p>"
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: rotatingtweets.php:441
|
326 |
msgid ""
|
327 |
+
"<h3>Step 4:</h3><p>Copy the <strong>Consumer key</strong>, <strong>Consumer "
|
328 |
+
"secret</strong>, <strong>Access token</strong> and <strong>Access token "
|
329 |
+
"secret</strong> from your Twitter application page into the settings below.</"
|
330 |
+
"p>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: rotatingtweets.php:442
|
334 |
+
msgid ""
|
335 |
+
"<h3>Step 5:</h3><p>Click on <strong>Save Changes</strong>. If there are any "
|
336 |
+
"problems, you will get an error message from Twitter which should help "
|
337 |
+
"diagnose the problem.</p>"
|
338 |
+
msgstr ""
|
339 |
+
|
340 |
+
#: rotatingtweets.php:443
|
341 |
+
msgid ""
|
342 |
+
"<p><em>Even though you are only entering one set of Twitter API data, "
|
343 |
+
"Rotating Tweets will continue to support multiple widgets and shortcodes "
|
344 |
+
"pulling from a variety of different Twitter accounts.</em></p>"
|
345 |
+
msgstr ""
|
346 |
+
|
347 |
+
#: rotatingtweets.php:447
|
348 |
msgid "Save Changes"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: rotatingtweets.php:454
|
352 |
msgid "Twitter API Settings"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: rotatingtweets.php:455
|
356 |
msgid "Twitter API Consumer Key"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: rotatingtweets.php:456
|
360 |
msgid "Twitter API Consumer Secret"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: rotatingtweets.php:457
|
364 |
msgid "Twitter API Access Token"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: rotatingtweets.php:458
|
368 |
msgid "Twitter API Access Token Secret"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: rotatingtweets.php:489
|
372 |
+
msgid "Error: Twitter API Consumer Key not correctly formatted."
|
373 |
+
msgstr ""
|
374 |
+
|
375 |
+
#: rotatingtweets.php:496
|
376 |
+
msgid "Error: Twitter API Consumer Secret not correctly formatted."
|
377 |
+
msgstr ""
|
378 |
+
|
379 |
+
#: rotatingtweets.php:503
|
380 |
+
msgid "Error: Twitter API Access Token not correctly formatted."
|
381 |
+
msgstr ""
|
382 |
+
|
383 |
+
#: rotatingtweets.php:510
|
384 |
+
msgid "Error: Twitter API Access Token Secret not correctly formatted."
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
#: rotatingtweets.php:517
|
388 |
msgid ""
|
389 |
"Error message received from Twitter: %1$s. <a href=\"%2$s\">Please check "
|
390 |
"your API key, secret, token and secret token on the Twitter website</a>."
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: rotatingtweets.php:772
|
394 |
msgid "Problem retrieving data from Twitter"
|
395 |
msgstr "Problem retrieving data from Twitter"
|
396 |
|
397 |
+
#: rotatingtweets.php:776
|
398 |
msgid "This website is currently <a href='%s'>rate-limited by Twitter</a>."
|
399 |
msgstr "This website is currently <a href='%s'>rate-limited by Twitter</a>."
|
400 |
|
401 |
+
#: rotatingtweets.php:778
|
402 |
msgid "Next attempt to get data will be in %d minute"
|
403 |
msgid_plural "Next attempt to get data will be in %d minutes"
|
404 |
msgstr[0] "Next attempt to get data will be in %d minute"
|
405 |
msgstr[1] "Next attempt to get data will be in %d minutes"
|
406 |
|
407 |
+
#: rotatingtweets.php:779
|
408 |
msgid "Next attempt to get data will be in less than a minute"
|
409 |
msgstr "Next attempt to get data will be in less than a minute"
|
410 |
|
411 |
+
#: rotatingtweets.php:785
|
412 |
msgid "Wordpress error message"
|
413 |
msgstr "Wordpress error message"
|
414 |
|
415 |
+
#: rotatingtweets.php:788
|
416 |
+
msgid ""
|
417 |
+
"Please check the Rotating Tweets settings or the <a href='%s'>Twitter API "
|
418 |
+
"status</a>."
|
419 |
+
msgstr ""
|
420 |
|
421 |
+
#: rotatingtweets.php:910
|
422 |
msgid "from <a href='%1$s' title='%2$s'>%2$s's Twitter</a>"
|
423 |
msgstr "from <a href='%1$s' title='%2$s'>%2$s's Twitter</a>"
|
424 |
|
425 |
+
#: rotatingtweets.php:914
|
426 |
msgid "via %s"
|
427 |
msgstr "via %s"
|
428 |
|
429 |
+
#: rotatingtweets.php:925
|
430 |
msgid "Twitter"
|
431 |
msgstr "Twitter"
|
432 |
|
433 |
+
#: rotatingtweets.php:934 rotatingtweets.php:950
|
434 |
msgid "Retweeted by %s"
|
435 |
msgstr "Retweeted by %s"
|
436 |
|
437 |
+
#: rotatingtweets.php:952
|
438 |
msgid "Expand"
|
439 |
msgstr "Expand"
|
440 |
|
441 |
+
#: rotatingtweets.php:964
|
442 |
msgid "Problem retrieving data from Twitter."
|
443 |
msgstr "Problem retrieving data from Twitter."
|
444 |
|
445 |
+
#: rotatingtweets.php:966
|
446 |
msgid "Please check the comments on this page's HTML to understand more."
|
447 |
msgstr "Please check the comments on this page's HTML to understand more."
|
448 |
|
449 |
+
#: rotatingtweets.php:986
|
450 |
msgid "Follow @%s"
|
451 |
msgstr "Follow @%s"
|
452 |
|
469 |
#. Author URI of the plugin/theme
|
470 |
msgid "http://www.martintod.org.uk"
|
471 |
msgstr "http://www.martintod.org.uk"
|
472 |
+
|
473 |
+
#~ msgid "Please check the Twitter name used in the settings."
|
474 |
+
#~ msgstr "Please check the Twitter name used in the settings."
|
languages/rotatingtweets-es_ES.mo
CHANGED
Binary file
|
languages/rotatingtweets-es_ES.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Rotating Tweets (Twitter widget & shortcode) 0.600\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/rotatingtweets\n"
|
7 |
-
"POT-Creation-Date: 2013-02
|
8 |
-
"PO-Revision-Date: 2013-02
|
9 |
"Last-Translator: Martin Tod <martin@martintod.org.uk>\n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: es_ES\n"
|
@@ -20,251 +20,251 @@ msgstr ""
|
|
20 |
msgid "A widget to show tweets for a particular user in rotation."
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: rotatingtweets.php:
|
24 |
msgid "Title:"
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: rotatingtweets.php:
|
28 |
msgid "Twitter name:"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: rotatingtweets.php:
|
32 |
msgid "Include retweets?"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: rotatingtweets.php:
|
36 |
msgid "Exclude replies?"
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: rotatingtweets.php:
|
40 |
msgid "Open all links in new window or tab?"
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: rotatingtweets.php:
|
44 |
msgid "How many tweets?"
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: rotatingtweets.php:
|
48 |
msgid "Speed"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: rotatingtweets.php:
|
52 |
msgid "Faster (3 seconds)"
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: rotatingtweets.php:
|
56 |
msgid "Normal (4 seconds)"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: rotatingtweets.php:
|
60 |
msgid "Slower (5 seconds)"
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: rotatingtweets.php:
|
64 |
msgid "Slowest (6 seconds)"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: rotatingtweets.php:
|
68 |
msgid "Ultra slow (20 seconds)"
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: rotatingtweets.php:
|
72 |
msgid "Scroll Up"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: rotatingtweets.php:
|
76 |
msgid "Scroll Down"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: rotatingtweets.php:
|
80 |
msgid "Scroll Left"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: rotatingtweets.php:
|
84 |
msgid "Scroll Right"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: rotatingtweets.php:
|
88 |
msgid "Fade"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: rotatingtweets.php:
|
92 |
msgid "Type of rotation"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: rotatingtweets.php:
|
96 |
msgid "Display format"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: rotatingtweets.php:
|
100 |
msgid "Original rotating tweets layout"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: rotatingtweets.php:
|
104 |
msgid ""
|
105 |
"<a target='_blank' href='https://dev.twitter.com/terms/display-"
|
106 |
"guidelines'>Official Twitter guidelines</a> (regular)"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: rotatingtweets.php:
|
110 |
msgid ""
|
111 |
"<a target='_blank' href='https://dev.twitter.com/terms/display-"
|
112 |
"guidelines'>Official Twitter guidelines</a> (wide)"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: rotatingtweets.php:
|
116 |
msgid "Show tweet details?"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: rotatingtweets.php:
|
120 |
msgid "Time/date of tweet"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: rotatingtweets.php:
|
124 |
msgid "Name of person tweeting"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: rotatingtweets.php:
|
128 |
msgid "Source of tweet"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: rotatingtweets.php:
|
132 |
msgid "'reply · retweet · favorite' links"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: rotatingtweets.php:
|
136 |
msgid "Show follow button?"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: rotatingtweets.php:
|
140 |
msgctxt "Show follow button?"
|
141 |
msgid "None"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: rotatingtweets.php:
|
145 |
msgid "Show name and number of followers"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: rotatingtweets.php:
|
149 |
msgid "Show name only"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: rotatingtweets.php:
|
153 |
msgid "Show followers only"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: rotatingtweets.php:
|
157 |
msgid "Show button only"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: rotatingtweets.php:
|
161 |
msgid "less than a second ago"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: rotatingtweets.php:
|
165 |
msgid "%d seconds ago"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: rotatingtweets.php:
|
169 |
msgid "about a minute ago"
|
170 |
msgid_plural "about %d minutes ago"
|
171 |
msgstr[0] ""
|
172 |
msgstr[1] ""
|
173 |
|
174 |
-
#: rotatingtweets.php:
|
175 |
msgid "about an hour ago"
|
176 |
msgid_plural "about %d hours ago"
|
177 |
msgstr[0] ""
|
178 |
msgstr[1] ""
|
179 |
|
180 |
-
#: rotatingtweets.php:
|
181 |
msgid "yesterday"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: rotatingtweets.php:
|
185 |
msgid "about a day ago"
|
186 |
msgid_plural "about %d days ago"
|
187 |
msgstr[0] ""
|
188 |
msgstr[1] ""
|
189 |
|
190 |
-
#: rotatingtweets.php:
|
191 |
msgid "last week"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: rotatingtweets.php:
|
195 |
msgid "about a week ago"
|
196 |
msgid_plural "about %d weeks ago"
|
197 |
msgstr[0] ""
|
198 |
msgstr[1] ""
|
199 |
|
200 |
-
#: rotatingtweets.php:
|
201 |
msgid "last month"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: rotatingtweets.php:
|
205 |
msgid "about a month ago"
|
206 |
msgid_plural "about %d months ago"
|
207 |
msgstr[0] ""
|
208 |
msgstr[1] ""
|
209 |
|
210 |
-
#: rotatingtweets.php:
|
211 |
msgid "last year"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: rotatingtweets.php:
|
215 |
msgid "about a year ago"
|
216 |
msgid_plural "about %d years ago"
|
217 |
msgstr[0] ""
|
218 |
msgstr[1] ""
|
219 |
|
220 |
-
#: rotatingtweets.php:
|
221 |
msgctxt "abbreviated timestamp in seconds"
|
222 |
msgid "%ds"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: rotatingtweets.php:
|
226 |
msgctxt "abbreviated timestamp in minutes"
|
227 |
msgid "%dm"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: rotatingtweets.php:
|
231 |
msgctxt "abbreviated timestamp in hours"
|
232 |
msgid "%dh"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: rotatingtweets.php:
|
236 |
msgctxt ""
|
237 |
"short date format as per http://uk.php.net/manual/en/function.date.php"
|
238 |
msgid "j M"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: rotatingtweets.php:
|
242 |
msgctxt ""
|
243 |
"slightly longer date format as per http://uk.php.net/manual/en/function.date."
|
244 |
"php"
|
245 |
msgid "j M Y"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: rotatingtweets.php:
|
249 |
msgid "reply"
|
250 |
msgstr "Responder"
|
251 |
|
252 |
-
#: rotatingtweets.php:
|
253 |
msgid "retweet"
|
254 |
msgstr "Retwittear"
|
255 |
|
256 |
-
#: rotatingtweets.php:
|
257 |
msgid "favorite"
|
258 |
msgstr "Favorito"
|
259 |
|
260 |
-
#: rotatingtweets.php:
|
261 |
msgid ""
|
262 |
"Please update <a href=\"%2$s\">your settings for Rotating Tweets</a>. The "
|
263 |
"Twitter API <a href=\"%1$s\">changed in March 2013</a> and new settings are "
|
264 |
"needed for Rotating Tweets to continue working."
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: rotatingtweets.php:
|
268 |
msgid ""
|
269 |
"Please update <a href=\"%2$s\">your settings for Rotating Tweets</a>. The "
|
270 |
"Twitter API will <a href=\"%1$s\">be changing in March 2013</a> and new "
|
@@ -272,128 +272,177 @@ msgid ""
|
|
272 |
"changes."
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: rotatingtweets.php:
|
276 |
msgid ""
|
277 |
"Please update <a href=\"%1$s\">your settings for Rotating Tweets</a>. "
|
278 |
-
"Currently
|
|
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: rotatingtweets.php:
|
282 |
msgid "Rotating Tweets: Twitter API settings"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: rotatingtweets.php:
|
286 |
msgid "You do not have sufficient permissions to access this page."
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: rotatingtweets.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
290 |
msgid ""
|
291 |
-
"<p>
|
292 |
-
"
|
293 |
-
"
|
294 |
-
"
|
295 |
-
"
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
"<
|
300 |
-
"
|
301 |
-
"
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
"<
|
307 |
-
"
|
308 |
-
"
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
#: rotatingtweets.php:465
|
313 |
msgid "Save Changes"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: rotatingtweets.php:
|
317 |
msgid "Twitter API Settings"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: rotatingtweets.php:
|
321 |
msgid "Twitter API Consumer Key"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: rotatingtweets.php:
|
325 |
msgid "Twitter API Consumer Secret"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: rotatingtweets.php:
|
329 |
msgid "Twitter API Access Token"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: rotatingtweets.php:
|
333 |
msgid "Twitter API Access Token Secret"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: rotatingtweets.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
337 |
msgid ""
|
338 |
"Error message received from Twitter: %1$s. <a href=\"%2$s\">Please check "
|
339 |
"your API key, secret, token and secret token on the Twitter website</a>."
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: rotatingtweets.php:
|
343 |
msgid "Problem retrieving data from Twitter"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: rotatingtweets.php:
|
347 |
msgid "This website is currently <a href='%s'>rate-limited by Twitter</a>."
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: rotatingtweets.php:
|
351 |
msgid "Next attempt to get data will be in %d minute"
|
352 |
msgid_plural "Next attempt to get data will be in %d minutes"
|
353 |
msgstr[0] ""
|
354 |
msgstr[1] ""
|
355 |
|
356 |
-
#: rotatingtweets.php:
|
357 |
msgid "Next attempt to get data will be in less than a minute"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: rotatingtweets.php:
|
361 |
msgid "Wordpress error message"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: rotatingtweets.php:
|
365 |
-
msgid "
|
|
|
|
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: rotatingtweets.php:
|
369 |
msgid "from <a href='%1$s' title='%2$s'>%2$s's Twitter</a>"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: rotatingtweets.php:
|
373 |
msgid "via %s"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: rotatingtweets.php:
|
377 |
msgid "Twitter"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: rotatingtweets.php:
|
381 |
msgid "Retweeted by %s"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: rotatingtweets.php:
|
385 |
msgid "Expand"
|
386 |
msgstr "Abrir"
|
387 |
|
388 |
-
#: rotatingtweets.php:
|
389 |
msgid "Problem retrieving data from Twitter."
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: rotatingtweets.php:
|
393 |
msgid "Please check the comments on this page's HTML to understand more."
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: rotatingtweets.php:
|
397 |
msgid "Follow @%s"
|
398 |
msgstr "Seguir a @%s"
|
399 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Rotating Tweets (Twitter widget & shortcode) 0.600\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/rotatingtweets\n"
|
7 |
+
"POT-Creation-Date: 2013-03-02 20:25:59+00:00\n"
|
8 |
+
"PO-Revision-Date: 2013-03-02 20:29-0000\n"
|
9 |
"Last-Translator: Martin Tod <martin@martintod.org.uk>\n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: es_ES\n"
|
20 |
msgid "A widget to show tweets for a particular user in rotation."
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: rotatingtweets.php:130
|
24 |
msgid "Title:"
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: rotatingtweets.php:131
|
28 |
msgid "Twitter name:"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: rotatingtweets.php:132
|
32 |
msgid "Include retweets?"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: rotatingtweets.php:133
|
36 |
msgid "Exclude replies?"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: rotatingtweets.php:134
|
40 |
msgid "Open all links in new window or tab?"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: rotatingtweets.php:135
|
44 |
msgid "How many tweets?"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: rotatingtweets.php:143
|
48 |
msgid "Speed"
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: rotatingtweets.php:146
|
52 |
msgid "Faster (3 seconds)"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: rotatingtweets.php:147
|
56 |
msgid "Normal (4 seconds)"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: rotatingtweets.php:148
|
60 |
msgid "Slower (5 seconds)"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: rotatingtweets.php:149
|
64 |
msgid "Slowest (6 seconds)"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: rotatingtweets.php:150
|
68 |
msgid "Ultra slow (20 seconds)"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: rotatingtweets.php:162
|
72 |
msgid "Scroll Up"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: rotatingtweets.php:163
|
76 |
msgid "Scroll Down"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: rotatingtweets.php:164
|
80 |
msgid "Scroll Left"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: rotatingtweets.php:165
|
84 |
msgid "Scroll Right"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: rotatingtweets.php:166
|
88 |
msgid "Fade"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: rotatingtweets.php:170
|
92 |
msgid "Type of rotation"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: rotatingtweets.php:179
|
96 |
msgid "Display format"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: rotatingtweets.php:182
|
100 |
msgid "Original rotating tweets layout"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: rotatingtweets.php:183
|
104 |
msgid ""
|
105 |
"<a target='_blank' href='https://dev.twitter.com/terms/display-"
|
106 |
"guidelines'>Official Twitter guidelines</a> (regular)"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: rotatingtweets.php:184
|
110 |
msgid ""
|
111 |
"<a target='_blank' href='https://dev.twitter.com/terms/display-"
|
112 |
"guidelines'>Official Twitter guidelines</a> (wide)"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: rotatingtweets.php:194
|
116 |
msgid "Show tweet details?"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: rotatingtweets.php:197
|
120 |
msgid "Time/date of tweet"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: rotatingtweets.php:198
|
124 |
msgid "Name of person tweeting"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: rotatingtweets.php:199
|
128 |
msgid "Source of tweet"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: rotatingtweets.php:200
|
132 |
msgid "'reply · retweet · favorite' links"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: rotatingtweets.php:210
|
136 |
msgid "Show follow button?"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: rotatingtweets.php:213
|
140 |
msgctxt "Show follow button?"
|
141 |
msgid "None"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: rotatingtweets.php:214
|
145 |
msgid "Show name and number of followers"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: rotatingtweets.php:215
|
149 |
msgid "Show name only"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: rotatingtweets.php:216
|
153 |
msgid "Show followers only"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: rotatingtweets.php:217
|
157 |
msgid "Show button only"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: rotatingtweets.php:242
|
161 |
msgid "less than a second ago"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: rotatingtweets.php:243
|
165 |
msgid "%d seconds ago"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: rotatingtweets.php:244
|
169 |
msgid "about a minute ago"
|
170 |
msgid_plural "about %d minutes ago"
|
171 |
msgstr[0] ""
|
172 |
msgstr[1] ""
|
173 |
|
174 |
+
#: rotatingtweets.php:245 rotatingtweets.php:247
|
175 |
msgid "about an hour ago"
|
176 |
msgid_plural "about %d hours ago"
|
177 |
msgstr[0] ""
|
178 |
msgstr[1] ""
|
179 |
|
180 |
+
#: rotatingtweets.php:246
|
181 |
msgid "yesterday"
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: rotatingtweets.php:248
|
185 |
msgid "about a day ago"
|
186 |
msgid_plural "about %d days ago"
|
187 |
msgstr[0] ""
|
188 |
msgstr[1] ""
|
189 |
|
190 |
+
#: rotatingtweets.php:249
|
191 |
msgid "last week"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: rotatingtweets.php:250
|
195 |
msgid "about a week ago"
|
196 |
msgid_plural "about %d weeks ago"
|
197 |
msgstr[0] ""
|
198 |
msgstr[1] ""
|
199 |
|
200 |
+
#: rotatingtweets.php:251
|
201 |
msgid "last month"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: rotatingtweets.php:252
|
205 |
msgid "about a month ago"
|
206 |
msgid_plural "about %d months ago"
|
207 |
msgstr[0] ""
|
208 |
msgstr[1] ""
|
209 |
|
210 |
+
#: rotatingtweets.php:253
|
211 |
msgid "last year"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: rotatingtweets.php:254
|
215 |
msgid "about a year ago"
|
216 |
msgid_plural "about %d years ago"
|
217 |
msgstr[0] ""
|
218 |
msgstr[1] ""
|
219 |
|
220 |
+
#: rotatingtweets.php:261
|
221 |
msgctxt "abbreviated timestamp in seconds"
|
222 |
msgid "%ds"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: rotatingtweets.php:262
|
226 |
msgctxt "abbreviated timestamp in minutes"
|
227 |
msgid "%dm"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: rotatingtweets.php:263
|
231 |
msgctxt "abbreviated timestamp in hours"
|
232 |
msgid "%dh"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: rotatingtweets.php:264
|
236 |
msgctxt ""
|
237 |
"short date format as per http://uk.php.net/manual/en/function.date.php"
|
238 |
msgid "j M"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: rotatingtweets.php:265
|
242 |
msgctxt ""
|
243 |
"slightly longer date format as per http://uk.php.net/manual/en/function.date."
|
244 |
"php"
|
245 |
msgid "j M Y"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: rotatingtweets.php:271
|
249 |
msgid "reply"
|
250 |
msgstr "Responder"
|
251 |
|
252 |
+
#: rotatingtweets.php:272
|
253 |
msgid "retweet"
|
254 |
msgstr "Retwittear"
|
255 |
|
256 |
+
#: rotatingtweets.php:273
|
257 |
msgid "favorite"
|
258 |
msgstr "Favorito"
|
259 |
|
260 |
+
#: rotatingtweets.php:411
|
261 |
msgid ""
|
262 |
"Please update <a href=\"%2$s\">your settings for Rotating Tweets</a>. The "
|
263 |
"Twitter API <a href=\"%1$s\">changed in March 2013</a> and new settings are "
|
264 |
"needed for Rotating Tweets to continue working."
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: rotatingtweets.php:413
|
268 |
msgid ""
|
269 |
"Please update <a href=\"%2$s\">your settings for Rotating Tweets</a>. The "
|
270 |
"Twitter API will <a href=\"%1$s\">be changing in March 2013</a> and new "
|
272 |
"changes."
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: rotatingtweets.php:419
|
276 |
msgid ""
|
277 |
"Please update <a href=\"%1$s\">your settings for Rotating Tweets</a>. "
|
278 |
+
"Currently Rotating Tweets cannot authenticate you with Twitter using the "
|
279 |
+
"details you have given."
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: rotatingtweets.php:427 rotatingtweets.php:433
|
283 |
msgid "Rotating Tweets: Twitter API settings"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: rotatingtweets.php:435
|
287 |
msgid "You do not have sufficient permissions to access this page."
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: rotatingtweets.php:437
|
291 |
+
msgid ""
|
292 |
+
"<p>Twitter <a href=\"%s\">recently announced</a> that they will be changing "
|
293 |
+
"the way that they allow people to use the information in their tweets.</"
|
294 |
+
"p><p>Please take the following steps to make sure that Rotating Tweets "
|
295 |
+
"continues working:</p>"
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: rotatingtweets.php:438
|
299 |
+
msgid ""
|
300 |
+
"<h3>Step 1:</h3><p>Go to the <a href=\"%s\">My applications page</a> on the "
|
301 |
+
"Twitter website to set up your website as a new Twitter 'application'. You "
|
302 |
+
"may need to log-in using your Twitter user name and password.</p>"
|
303 |
+
msgstr ""
|
304 |
+
|
305 |
+
#: rotatingtweets.php:439
|
306 |
+
msgid ""
|
307 |
+
"<h3>Step 2:</h3><p>If you don't already have a suitable 'application' that "
|
308 |
+
"you can use for your website, set one up on the <a href=\"%s\">Create an "
|
309 |
+
"Application page</a>.</p> <p>It's normally best to use the name, description "
|
310 |
+
"and website URL of the website where you plan to use Rotating Tweets.</"
|
311 |
+
"p><p>You don't need a Callback URL.</p>"
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: rotatingtweets.php:440
|
315 |
+
msgid ""
|
316 |
+
"<h3>Step 3:</h3><p>After clicking <strong>Create your Twitter application</"
|
317 |
+
"strong>, on the following page, click on <strong>Create my access token</"
|
318 |
+
"strong>.</p>"
|
319 |
+
msgstr ""
|
320 |
+
|
321 |
+
#: rotatingtweets.php:441
|
322 |
msgid ""
|
323 |
+
"<h3>Step 4:</h3><p>Copy the <strong>Consumer key</strong>, <strong>Consumer "
|
324 |
+
"secret</strong>, <strong>Access token</strong> and <strong>Access token "
|
325 |
+
"secret</strong> from your Twitter application page into the settings below.</"
|
326 |
+
"p>"
|
327 |
+
msgstr ""
|
328 |
+
|
329 |
+
#: rotatingtweets.php:442
|
330 |
+
msgid ""
|
331 |
+
"<h3>Step 5:</h3><p>Click on <strong>Save Changes</strong>. If there are any "
|
332 |
+
"problems, you will get an error message from Twitter which should help "
|
333 |
+
"diagnose the problem.</p>"
|
334 |
+
msgstr ""
|
335 |
+
|
336 |
+
#: rotatingtweets.php:443
|
337 |
+
msgid ""
|
338 |
+
"<p><em>Even though you are only entering one set of Twitter API data, "
|
339 |
+
"Rotating Tweets will continue to support multiple widgets and shortcodes "
|
340 |
+
"pulling from a variety of different Twitter accounts.</em></p>"
|
341 |
+
msgstr ""
|
342 |
+
|
343 |
+
#: rotatingtweets.php:447
|
|
|
344 |
msgid "Save Changes"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: rotatingtweets.php:454
|
348 |
msgid "Twitter API Settings"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: rotatingtweets.php:455
|
352 |
msgid "Twitter API Consumer Key"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: rotatingtweets.php:456
|
356 |
msgid "Twitter API Consumer Secret"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: rotatingtweets.php:457
|
360 |
msgid "Twitter API Access Token"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: rotatingtweets.php:458
|
364 |
msgid "Twitter API Access Token Secret"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: rotatingtweets.php:489
|
368 |
+
msgid "Error: Twitter API Consumer Key not correctly formatted."
|
369 |
+
msgstr ""
|
370 |
+
|
371 |
+
#: rotatingtweets.php:496
|
372 |
+
msgid "Error: Twitter API Consumer Secret not correctly formatted."
|
373 |
+
msgstr ""
|
374 |
+
|
375 |
+
#: rotatingtweets.php:503
|
376 |
+
msgid "Error: Twitter API Access Token not correctly formatted."
|
377 |
+
msgstr ""
|
378 |
+
|
379 |
+
#: rotatingtweets.php:510
|
380 |
+
msgid "Error: Twitter API Access Token Secret not correctly formatted."
|
381 |
+
msgstr ""
|
382 |
+
|
383 |
+
#: rotatingtweets.php:517
|
384 |
msgid ""
|
385 |
"Error message received from Twitter: %1$s. <a href=\"%2$s\">Please check "
|
386 |
"your API key, secret, token and secret token on the Twitter website</a>."
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: rotatingtweets.php:772
|
390 |
msgid "Problem retrieving data from Twitter"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: rotatingtweets.php:776
|
394 |
msgid "This website is currently <a href='%s'>rate-limited by Twitter</a>."
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: rotatingtweets.php:778
|
398 |
msgid "Next attempt to get data will be in %d minute"
|
399 |
msgid_plural "Next attempt to get data will be in %d minutes"
|
400 |
msgstr[0] ""
|
401 |
msgstr[1] ""
|
402 |
|
403 |
+
#: rotatingtweets.php:779
|
404 |
msgid "Next attempt to get data will be in less than a minute"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: rotatingtweets.php:785
|
408 |
msgid "Wordpress error message"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: rotatingtweets.php:788
|
412 |
+
msgid ""
|
413 |
+
"Please check the Rotating Tweets settings or the <a href='%s'>Twitter API "
|
414 |
+
"status</a>."
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: rotatingtweets.php:910
|
418 |
msgid "from <a href='%1$s' title='%2$s'>%2$s's Twitter</a>"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: rotatingtweets.php:914
|
422 |
msgid "via %s"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: rotatingtweets.php:925
|
426 |
msgid "Twitter"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: rotatingtweets.php:934 rotatingtweets.php:950
|
430 |
msgid "Retweeted by %s"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: rotatingtweets.php:952
|
434 |
msgid "Expand"
|
435 |
msgstr "Abrir"
|
436 |
|
437 |
+
#: rotatingtweets.php:964
|
438 |
msgid "Problem retrieving data from Twitter."
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: rotatingtweets.php:966
|
442 |
msgid "Please check the comments on this page's HTML to understand more."
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: rotatingtweets.php:986
|
446 |
msgid "Follow @%s"
|
447 |
msgstr "Seguir a @%s"
|
448 |
|
languages/rotatingtweets-it_IT.mo
CHANGED
Binary file
|
languages/rotatingtweets-it_IT.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Rotating Tweets (Twitter widget & shortcode) 0.600\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/rotatingtweets\n"
|
7 |
-
"POT-Creation-Date: 2013-02
|
8 |
-
"PO-Revision-Date: 2013-02
|
9 |
"Last-Translator: Martin Tod <martin@martintod.org.uk>\n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: Italian\n"
|
@@ -20,251 +20,251 @@ msgstr ""
|
|
20 |
msgid "A widget to show tweets for a particular user in rotation."
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: rotatingtweets.php:
|
24 |
msgid "Title:"
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: rotatingtweets.php:
|
28 |
msgid "Twitter name:"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: rotatingtweets.php:
|
32 |
msgid "Include retweets?"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: rotatingtweets.php:
|
36 |
msgid "Exclude replies?"
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: rotatingtweets.php:
|
40 |
msgid "Open all links in new window or tab?"
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: rotatingtweets.php:
|
44 |
msgid "How many tweets?"
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: rotatingtweets.php:
|
48 |
msgid "Speed"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: rotatingtweets.php:
|
52 |
msgid "Faster (3 seconds)"
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: rotatingtweets.php:
|
56 |
msgid "Normal (4 seconds)"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: rotatingtweets.php:
|
60 |
msgid "Slower (5 seconds)"
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: rotatingtweets.php:
|
64 |
msgid "Slowest (6 seconds)"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: rotatingtweets.php:
|
68 |
msgid "Ultra slow (20 seconds)"
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: rotatingtweets.php:
|
72 |
msgid "Scroll Up"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: rotatingtweets.php:
|
76 |
msgid "Scroll Down"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: rotatingtweets.php:
|
80 |
msgid "Scroll Left"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: rotatingtweets.php:
|
84 |
msgid "Scroll Right"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: rotatingtweets.php:
|
88 |
msgid "Fade"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: rotatingtweets.php:
|
92 |
msgid "Type of rotation"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: rotatingtweets.php:
|
96 |
msgid "Display format"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: rotatingtweets.php:
|
100 |
msgid "Original rotating tweets layout"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: rotatingtweets.php:
|
104 |
msgid ""
|
105 |
"<a target='_blank' href='https://dev.twitter.com/terms/display-"
|
106 |
"guidelines'>Official Twitter guidelines</a> (regular)"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: rotatingtweets.php:
|
110 |
msgid ""
|
111 |
"<a target='_blank' href='https://dev.twitter.com/terms/display-"
|
112 |
"guidelines'>Official Twitter guidelines</a> (wide)"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: rotatingtweets.php:
|
116 |
msgid "Show tweet details?"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: rotatingtweets.php:
|
120 |
msgid "Time/date of tweet"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: rotatingtweets.php:
|
124 |
msgid "Name of person tweeting"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: rotatingtweets.php:
|
128 |
msgid "Source of tweet"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: rotatingtweets.php:
|
132 |
msgid "'reply · retweet · favorite' links"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: rotatingtweets.php:
|
136 |
msgid "Show follow button?"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: rotatingtweets.php:
|
140 |
msgctxt "Show follow button?"
|
141 |
msgid "None"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: rotatingtweets.php:
|
145 |
msgid "Show name and number of followers"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: rotatingtweets.php:
|
149 |
msgid "Show name only"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: rotatingtweets.php:
|
153 |
msgid "Show followers only"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: rotatingtweets.php:
|
157 |
msgid "Show button only"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: rotatingtweets.php:
|
161 |
msgid "less than a second ago"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: rotatingtweets.php:
|
165 |
msgid "%d seconds ago"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: rotatingtweets.php:
|
169 |
msgid "about a minute ago"
|
170 |
msgid_plural "about %d minutes ago"
|
171 |
msgstr[0] ""
|
172 |
msgstr[1] ""
|
173 |
|
174 |
-
#: rotatingtweets.php:
|
175 |
msgid "about an hour ago"
|
176 |
msgid_plural "about %d hours ago"
|
177 |
msgstr[0] ""
|
178 |
msgstr[1] ""
|
179 |
|
180 |
-
#: rotatingtweets.php:
|
181 |
msgid "yesterday"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: rotatingtweets.php:
|
185 |
msgid "about a day ago"
|
186 |
msgid_plural "about %d days ago"
|
187 |
msgstr[0] ""
|
188 |
msgstr[1] ""
|
189 |
|
190 |
-
#: rotatingtweets.php:
|
191 |
msgid "last week"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: rotatingtweets.php:
|
195 |
msgid "about a week ago"
|
196 |
msgid_plural "about %d weeks ago"
|
197 |
msgstr[0] ""
|
198 |
msgstr[1] ""
|
199 |
|
200 |
-
#: rotatingtweets.php:
|
201 |
msgid "last month"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: rotatingtweets.php:
|
205 |
msgid "about a month ago"
|
206 |
msgid_plural "about %d months ago"
|
207 |
msgstr[0] ""
|
208 |
msgstr[1] ""
|
209 |
|
210 |
-
#: rotatingtweets.php:
|
211 |
msgid "last year"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: rotatingtweets.php:
|
215 |
msgid "about a year ago"
|
216 |
msgid_plural "about %d years ago"
|
217 |
msgstr[0] ""
|
218 |
msgstr[1] ""
|
219 |
|
220 |
-
#: rotatingtweets.php:
|
221 |
msgctxt "abbreviated timestamp in seconds"
|
222 |
msgid "%ds"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: rotatingtweets.php:
|
226 |
msgctxt "abbreviated timestamp in minutes"
|
227 |
msgid "%dm"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: rotatingtweets.php:
|
231 |
msgctxt "abbreviated timestamp in hours"
|
232 |
msgid "%dh"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: rotatingtweets.php:
|
236 |
msgctxt ""
|
237 |
"short date format as per http://uk.php.net/manual/en/function.date.php"
|
238 |
msgid "j M"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: rotatingtweets.php:
|
242 |
msgctxt ""
|
243 |
"slightly longer date format as per http://uk.php.net/manual/en/function.date."
|
244 |
"php"
|
245 |
msgid "j M Y"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: rotatingtweets.php:
|
249 |
msgid "reply"
|
250 |
msgstr "Risposta"
|
251 |
|
252 |
-
#: rotatingtweets.php:
|
253 |
msgid "retweet"
|
254 |
msgstr "Retweet"
|
255 |
|
256 |
-
#: rotatingtweets.php:
|
257 |
msgid "favorite"
|
258 |
msgstr "Preferiti"
|
259 |
|
260 |
-
#: rotatingtweets.php:
|
261 |
msgid ""
|
262 |
"Please update <a href=\"%2$s\">your settings for Rotating Tweets</a>. The "
|
263 |
"Twitter API <a href=\"%1$s\">changed in March 2013</a> and new settings are "
|
264 |
"needed for Rotating Tweets to continue working."
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: rotatingtweets.php:
|
268 |
msgid ""
|
269 |
"Please update <a href=\"%2$s\">your settings for Rotating Tweets</a>. The "
|
270 |
"Twitter API will <a href=\"%1$s\">be changing in March 2013</a> and new "
|
@@ -272,128 +272,177 @@ msgid ""
|
|
272 |
"changes."
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: rotatingtweets.php:
|
276 |
msgid ""
|
277 |
"Please update <a href=\"%1$s\">your settings for Rotating Tweets</a>. "
|
278 |
-
"Currently
|
|
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: rotatingtweets.php:
|
282 |
msgid "Rotating Tweets: Twitter API settings"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: rotatingtweets.php:
|
286 |
msgid "You do not have sufficient permissions to access this page."
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: rotatingtweets.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
290 |
msgid ""
|
291 |
-
"<p>
|
292 |
-
"
|
293 |
-
"
|
294 |
-
"
|
295 |
-
"
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
"<
|
300 |
-
"
|
301 |
-
"
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
"<
|
307 |
-
"
|
308 |
-
"
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
#: rotatingtweets.php:465
|
313 |
msgid "Save Changes"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: rotatingtweets.php:
|
317 |
msgid "Twitter API Settings"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: rotatingtweets.php:
|
321 |
msgid "Twitter API Consumer Key"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: rotatingtweets.php:
|
325 |
msgid "Twitter API Consumer Secret"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: rotatingtweets.php:
|
329 |
msgid "Twitter API Access Token"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: rotatingtweets.php:
|
333 |
msgid "Twitter API Access Token Secret"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: rotatingtweets.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
337 |
msgid ""
|
338 |
"Error message received from Twitter: %1$s. <a href=\"%2$s\">Please check "
|
339 |
"your API key, secret, token and secret token on the Twitter website</a>."
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: rotatingtweets.php:
|
343 |
msgid "Problem retrieving data from Twitter"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: rotatingtweets.php:
|
347 |
msgid "This website is currently <a href='%s'>rate-limited by Twitter</a>."
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: rotatingtweets.php:
|
351 |
msgid "Next attempt to get data will be in %d minute"
|
352 |
msgid_plural "Next attempt to get data will be in %d minutes"
|
353 |
msgstr[0] ""
|
354 |
msgstr[1] ""
|
355 |
|
356 |
-
#: rotatingtweets.php:
|
357 |
msgid "Next attempt to get data will be in less than a minute"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: rotatingtweets.php:
|
361 |
msgid "Wordpress error message"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: rotatingtweets.php:
|
365 |
-
msgid "
|
|
|
|
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: rotatingtweets.php:
|
369 |
msgid "from <a href='%1$s' title='%2$s'>%2$s's Twitter</a>"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: rotatingtweets.php:
|
373 |
msgid "via %s"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: rotatingtweets.php:
|
377 |
msgid "Twitter"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: rotatingtweets.php:
|
381 |
msgid "Retweeted by %s"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: rotatingtweets.php:
|
385 |
msgid "Expand"
|
386 |
msgstr "Espandi"
|
387 |
|
388 |
-
#: rotatingtweets.php:
|
389 |
msgid "Problem retrieving data from Twitter."
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: rotatingtweets.php:
|
393 |
msgid "Please check the comments on this page's HTML to understand more."
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: rotatingtweets.php:
|
397 |
msgid "Follow @%s"
|
398 |
msgstr "Segui @%s"
|
399 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Rotating Tweets (Twitter widget & shortcode) 0.600\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/rotatingtweets\n"
|
7 |
+
"POT-Creation-Date: 2013-03-02 20:25:59+00:00\n"
|
8 |
+
"PO-Revision-Date: 2013-03-02 20:29-0000\n"
|
9 |
"Last-Translator: Martin Tod <martin@martintod.org.uk>\n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: Italian\n"
|
20 |
msgid "A widget to show tweets for a particular user in rotation."
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: rotatingtweets.php:130
|
24 |
msgid "Title:"
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: rotatingtweets.php:131
|
28 |
msgid "Twitter name:"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: rotatingtweets.php:132
|
32 |
msgid "Include retweets?"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: rotatingtweets.php:133
|
36 |
msgid "Exclude replies?"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: rotatingtweets.php:134
|
40 |
msgid "Open all links in new window or tab?"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: rotatingtweets.php:135
|
44 |
msgid "How many tweets?"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: rotatingtweets.php:143
|
48 |
msgid "Speed"
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: rotatingtweets.php:146
|
52 |
msgid "Faster (3 seconds)"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: rotatingtweets.php:147
|
56 |
msgid "Normal (4 seconds)"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: rotatingtweets.php:148
|
60 |
msgid "Slower (5 seconds)"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: rotatingtweets.php:149
|
64 |
msgid "Slowest (6 seconds)"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: rotatingtweets.php:150
|
68 |
msgid "Ultra slow (20 seconds)"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: rotatingtweets.php:162
|
72 |
msgid "Scroll Up"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: rotatingtweets.php:163
|
76 |
msgid "Scroll Down"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: rotatingtweets.php:164
|
80 |
msgid "Scroll Left"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: rotatingtweets.php:165
|
84 |
msgid "Scroll Right"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: rotatingtweets.php:166
|
88 |
msgid "Fade"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: rotatingtweets.php:170
|
92 |
msgid "Type of rotation"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: rotatingtweets.php:179
|
96 |
msgid "Display format"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: rotatingtweets.php:182
|
100 |
msgid "Original rotating tweets layout"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: rotatingtweets.php:183
|
104 |
msgid ""
|
105 |
"<a target='_blank' href='https://dev.twitter.com/terms/display-"
|
106 |
"guidelines'>Official Twitter guidelines</a> (regular)"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: rotatingtweets.php:184
|
110 |
msgid ""
|
111 |
"<a target='_blank' href='https://dev.twitter.com/terms/display-"
|
112 |
"guidelines'>Official Twitter guidelines</a> (wide)"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: rotatingtweets.php:194
|
116 |
msgid "Show tweet details?"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: rotatingtweets.php:197
|
120 |
msgid "Time/date of tweet"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: rotatingtweets.php:198
|
124 |
msgid "Name of person tweeting"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: rotatingtweets.php:199
|
128 |
msgid "Source of tweet"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: rotatingtweets.php:200
|
132 |
msgid "'reply · retweet · favorite' links"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: rotatingtweets.php:210
|
136 |
msgid "Show follow button?"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: rotatingtweets.php:213
|
140 |
msgctxt "Show follow button?"
|
141 |
msgid "None"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: rotatingtweets.php:214
|
145 |
msgid "Show name and number of followers"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: rotatingtweets.php:215
|
149 |
msgid "Show name only"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: rotatingtweets.php:216
|
153 |
msgid "Show followers only"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: rotatingtweets.php:217
|
157 |
msgid "Show button only"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: rotatingtweets.php:242
|
161 |
msgid "less than a second ago"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: rotatingtweets.php:243
|
165 |
msgid "%d seconds ago"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: rotatingtweets.php:244
|
169 |
msgid "about a minute ago"
|
170 |
msgid_plural "about %d minutes ago"
|
171 |
msgstr[0] ""
|
172 |
msgstr[1] ""
|
173 |
|
174 |
+
#: rotatingtweets.php:245 rotatingtweets.php:247
|
175 |
msgid "about an hour ago"
|
176 |
msgid_plural "about %d hours ago"
|
177 |
msgstr[0] ""
|
178 |
msgstr[1] ""
|
179 |
|
180 |
+
#: rotatingtweets.php:246
|
181 |
msgid "yesterday"
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: rotatingtweets.php:248
|
185 |
msgid "about a day ago"
|
186 |
msgid_plural "about %d days ago"
|
187 |
msgstr[0] ""
|
188 |
msgstr[1] ""
|
189 |
|
190 |
+
#: rotatingtweets.php:249
|
191 |
msgid "last week"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: rotatingtweets.php:250
|
195 |
msgid "about a week ago"
|
196 |
msgid_plural "about %d weeks ago"
|
197 |
msgstr[0] ""
|
198 |
msgstr[1] ""
|
199 |
|
200 |
+
#: rotatingtweets.php:251
|
201 |
msgid "last month"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: rotatingtweets.php:252
|
205 |
msgid "about a month ago"
|
206 |
msgid_plural "about %d months ago"
|
207 |
msgstr[0] ""
|
208 |
msgstr[1] ""
|
209 |
|
210 |
+
#: rotatingtweets.php:253
|
211 |
msgid "last year"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: rotatingtweets.php:254
|
215 |
msgid "about a year ago"
|
216 |
msgid_plural "about %d years ago"
|
217 |
msgstr[0] ""
|
218 |
msgstr[1] ""
|
219 |
|
220 |
+
#: rotatingtweets.php:261
|
221 |
msgctxt "abbreviated timestamp in seconds"
|
222 |
msgid "%ds"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: rotatingtweets.php:262
|
226 |
msgctxt "abbreviated timestamp in minutes"
|
227 |
msgid "%dm"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: rotatingtweets.php:263
|
231 |
msgctxt "abbreviated timestamp in hours"
|
232 |
msgid "%dh"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: rotatingtweets.php:264
|
236 |
msgctxt ""
|
237 |
"short date format as per http://uk.php.net/manual/en/function.date.php"
|
238 |
msgid "j M"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: rotatingtweets.php:265
|
242 |
msgctxt ""
|
243 |
"slightly longer date format as per http://uk.php.net/manual/en/function.date."
|
244 |
"php"
|
245 |
msgid "j M Y"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: rotatingtweets.php:271
|
249 |
msgid "reply"
|
250 |
msgstr "Risposta"
|
251 |
|
252 |
+
#: rotatingtweets.php:272
|
253 |
msgid "retweet"
|
254 |
msgstr "Retweet"
|
255 |
|
256 |
+
#: rotatingtweets.php:273
|
257 |
msgid "favorite"
|
258 |
msgstr "Preferiti"
|
259 |
|
260 |
+
#: rotatingtweets.php:411
|
261 |
msgid ""
|
262 |
"Please update <a href=\"%2$s\">your settings for Rotating Tweets</a>. The "
|
263 |
"Twitter API <a href=\"%1$s\">changed in March 2013</a> and new settings are "
|
264 |
"needed for Rotating Tweets to continue working."
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: rotatingtweets.php:413
|
268 |
msgid ""
|
269 |
"Please update <a href=\"%2$s\">your settings for Rotating Tweets</a>. The "
|
270 |
"Twitter API will <a href=\"%1$s\">be changing in March 2013</a> and new "
|
272 |
"changes."
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: rotatingtweets.php:419
|
276 |
msgid ""
|
277 |
"Please update <a href=\"%1$s\">your settings for Rotating Tweets</a>. "
|
278 |
+
"Currently Rotating Tweets cannot authenticate you with Twitter using the "
|
279 |
+
"details you have given."
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: rotatingtweets.php:427 rotatingtweets.php:433
|
283 |
msgid "Rotating Tweets: Twitter API settings"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: rotatingtweets.php:435
|
287 |
msgid "You do not have sufficient permissions to access this page."
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: rotatingtweets.php:437
|
291 |
+
msgid ""
|
292 |
+
"<p>Twitter <a href=\"%s\">recently announced</a> that they will be changing "
|
293 |
+
"the way that they allow people to use the information in their tweets.</"
|
294 |
+
"p><p>Please take the following steps to make sure that Rotating Tweets "
|
295 |
+
"continues working:</p>"
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: rotatingtweets.php:438
|
299 |
+
msgid ""
|
300 |
+
"<h3>Step 1:</h3><p>Go to the <a href=\"%s\">My applications page</a> on the "
|
301 |
+
"Twitter website to set up your website as a new Twitter 'application'. You "
|
302 |
+
"may need to log-in using your Twitter user name and password.</p>"
|
303 |
+
msgstr ""
|
304 |
+
|
305 |
+
#: rotatingtweets.php:439
|
306 |
+
msgid ""
|
307 |
+
"<h3>Step 2:</h3><p>If you don't already have a suitable 'application' that "
|
308 |
+
"you can use for your website, set one up on the <a href=\"%s\">Create an "
|
309 |
+
"Application page</a>.</p> <p>It's normally best to use the name, description "
|
310 |
+
"and website URL of the website where you plan to use Rotating Tweets.</"
|
311 |
+
"p><p>You don't need a Callback URL.</p>"
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: rotatingtweets.php:440
|
315 |
+
msgid ""
|
316 |
+
"<h3>Step 3:</h3><p>After clicking <strong>Create your Twitter application</"
|
317 |
+
"strong>, on the following page, click on <strong>Create my access token</"
|
318 |
+
"strong>.</p>"
|
319 |
+
msgstr ""
|
320 |
+
|
321 |
+
#: rotatingtweets.php:441
|
322 |
msgid ""
|
323 |
+
"<h3>Step 4:</h3><p>Copy the <strong>Consumer key</strong>, <strong>Consumer "
|
324 |
+
"secret</strong>, <strong>Access token</strong> and <strong>Access token "
|
325 |
+
"secret</strong> from your Twitter application page into the settings below.</"
|
326 |
+
"p>"
|
327 |
+
msgstr ""
|
328 |
+
|
329 |
+
#: rotatingtweets.php:442
|
330 |
+
msgid ""
|
331 |
+
"<h3>Step 5:</h3><p>Click on <strong>Save Changes</strong>. If there are any "
|
332 |
+
"problems, you will get an error message from Twitter which should help "
|
333 |
+
"diagnose the problem.</p>"
|
334 |
+
msgstr ""
|
335 |
+
|
336 |
+
#: rotatingtweets.php:443
|
337 |
+
msgid ""
|
338 |
+
"<p><em>Even though you are only entering one set of Twitter API data, "
|
339 |
+
"Rotating Tweets will continue to support multiple widgets and shortcodes "
|
340 |
+
"pulling from a variety of different Twitter accounts.</em></p>"
|
341 |
+
msgstr ""
|
342 |
+
|
343 |
+
#: rotatingtweets.php:447
|
|
|
344 |
msgid "Save Changes"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: rotatingtweets.php:454
|
348 |
msgid "Twitter API Settings"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: rotatingtweets.php:455
|
352 |
msgid "Twitter API Consumer Key"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: rotatingtweets.php:456
|
356 |
msgid "Twitter API Consumer Secret"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: rotatingtweets.php:457
|
360 |
msgid "Twitter API Access Token"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: rotatingtweets.php:458
|
364 |
msgid "Twitter API Access Token Secret"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: rotatingtweets.php:489
|
368 |
+
msgid "Error: Twitter API Consumer Key not correctly formatted."
|
369 |
+
msgstr ""
|
370 |
+
|
371 |
+
#: rotatingtweets.php:496
|
372 |
+
msgid "Error: Twitter API Consumer Secret not correctly formatted."
|
373 |
+
msgstr ""
|
374 |
+
|
375 |
+
#: rotatingtweets.php:503
|
376 |
+
msgid "Error: Twitter API Access Token not correctly formatted."
|
377 |
+
msgstr ""
|
378 |
+
|
379 |
+
#: rotatingtweets.php:510
|
380 |
+
msgid "Error: Twitter API Access Token Secret not correctly formatted."
|
381 |
+
msgstr ""
|
382 |
+
|
383 |
+
#: rotatingtweets.php:517
|
384 |
msgid ""
|
385 |
"Error message received from Twitter: %1$s. <a href=\"%2$s\">Please check "
|
386 |
"your API key, secret, token and secret token on the Twitter website</a>."
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: rotatingtweets.php:772
|
390 |
msgid "Problem retrieving data from Twitter"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: rotatingtweets.php:776
|
394 |
msgid "This website is currently <a href='%s'>rate-limited by Twitter</a>."
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: rotatingtweets.php:778
|
398 |
msgid "Next attempt to get data will be in %d minute"
|
399 |
msgid_plural "Next attempt to get data will be in %d minutes"
|
400 |
msgstr[0] ""
|
401 |
msgstr[1] ""
|
402 |
|
403 |
+
#: rotatingtweets.php:779
|
404 |
msgid "Next attempt to get data will be in less than a minute"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: rotatingtweets.php:785
|
408 |
msgid "Wordpress error message"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: rotatingtweets.php:788
|
412 |
+
msgid ""
|
413 |
+
"Please check the Rotating Tweets settings or the <a href='%s'>Twitter API "
|
414 |
+
"status</a>."
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: rotatingtweets.php:910
|
418 |
msgid "from <a href='%1$s' title='%2$s'>%2$s's Twitter</a>"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: rotatingtweets.php:914
|
422 |
msgid "via %s"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: rotatingtweets.php:925
|
426 |
msgid "Twitter"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: rotatingtweets.php:934 rotatingtweets.php:950
|
430 |
msgid "Retweeted by %s"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: rotatingtweets.php:952
|
434 |
msgid "Expand"
|
435 |
msgstr "Espandi"
|
436 |
|
437 |
+
#: rotatingtweets.php:964
|
438 |
msgid "Problem retrieving data from Twitter."
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: rotatingtweets.php:966
|
442 |
msgid "Please check the comments on this page's HTML to understand more."
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: rotatingtweets.php:986
|
446 |
msgid "Follow @%s"
|
447 |
msgstr "Segui @%s"
|
448 |
|
languages/rotatingtweets-nl_NL.mo
ADDED
Binary file
|
languages/rotatingtweets-nl_NL.po
ADDED
@@ -0,0 +1,463 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2013 Rotating Tweets (Twitter widget & shortcode)
|
2 |
+
# This file is distributed under the same license as the Rotating Tweets (Twitter widget & shortcode) package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: Rotating Tweets (Twitter widget & shortcode) 0.711\n"
|
6 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/rotatingtweets\n"
|
7 |
+
"POT-Creation-Date: 2013-03-02 20:25:59+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-03-02 20:39-0000\n"
|
12 |
+
"Last-Translator: Martin Tod <martin@martintod.org.uk>\n"
|
13 |
+
"Language-Team: \n"
|
14 |
+
"X-Generator: Poedit 1.5.5\n"
|
15 |
+
"Language: nl_NL\n"
|
16 |
+
|
17 |
+
#: rotatingtweets.php:41
|
18 |
+
msgid "A widget to show tweets for a particular user in rotation."
|
19 |
+
msgstr ""
|
20 |
+
|
21 |
+
#: rotatingtweets.php:130
|
22 |
+
msgid "Title:"
|
23 |
+
msgstr ""
|
24 |
+
|
25 |
+
#: rotatingtweets.php:131
|
26 |
+
msgid "Twitter name:"
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: rotatingtweets.php:132
|
30 |
+
msgid "Include retweets?"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: rotatingtweets.php:133
|
34 |
+
msgid "Exclude replies?"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: rotatingtweets.php:134
|
38 |
+
msgid "Open all links in new window or tab?"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: rotatingtweets.php:135
|
42 |
+
msgid "How many tweets?"
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: rotatingtweets.php:143
|
46 |
+
msgid "Speed"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: rotatingtweets.php:146
|
50 |
+
msgid "Faster (3 seconds)"
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: rotatingtweets.php:147
|
54 |
+
msgid "Normal (4 seconds)"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: rotatingtweets.php:148
|
58 |
+
msgid "Slower (5 seconds)"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: rotatingtweets.php:149
|
62 |
+
msgid "Slowest (6 seconds)"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: rotatingtweets.php:150
|
66 |
+
msgid "Ultra slow (20 seconds)"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: rotatingtweets.php:162
|
70 |
+
msgid "Scroll Up"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: rotatingtweets.php:163
|
74 |
+
msgid "Scroll Down"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: rotatingtweets.php:164
|
78 |
+
msgid "Scroll Left"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: rotatingtweets.php:165
|
82 |
+
msgid "Scroll Right"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: rotatingtweets.php:166
|
86 |
+
msgid "Fade"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: rotatingtweets.php:170
|
90 |
+
msgid "Type of rotation"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: rotatingtweets.php:179
|
94 |
+
msgid "Display format"
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: rotatingtweets.php:182
|
98 |
+
msgid "Original rotating tweets layout"
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: rotatingtweets.php:183
|
102 |
+
msgid ""
|
103 |
+
"<a target='_blank' href='https://dev.twitter.com/terms/display-"
|
104 |
+
"guidelines'>Official Twitter guidelines</a> (regular)"
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
+
#: rotatingtweets.php:184
|
108 |
+
msgid ""
|
109 |
+
"<a target='_blank' href='https://dev.twitter.com/terms/display-"
|
110 |
+
"guidelines'>Official Twitter guidelines</a> (wide)"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: rotatingtweets.php:194
|
114 |
+
msgid "Show tweet details?"
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: rotatingtweets.php:197
|
118 |
+
msgid "Time/date of tweet"
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: rotatingtweets.php:198
|
122 |
+
msgid "Name of person tweeting"
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: rotatingtweets.php:199
|
126 |
+
msgid "Source of tweet"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: rotatingtweets.php:200
|
130 |
+
msgid "'reply · retweet · favorite' links"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: rotatingtweets.php:210
|
134 |
+
msgid "Show follow button?"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: rotatingtweets.php:213
|
138 |
+
msgctxt "Show follow button?"
|
139 |
+
msgid "None"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: rotatingtweets.php:214
|
143 |
+
msgid "Show name and number of followers"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: rotatingtweets.php:215
|
147 |
+
msgid "Show name only"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: rotatingtweets.php:216
|
151 |
+
msgid "Show followers only"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: rotatingtweets.php:217
|
155 |
+
msgid "Show button only"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: rotatingtweets.php:242
|
159 |
+
msgid "less than a second ago"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: rotatingtweets.php:243
|
163 |
+
msgid "%d seconds ago"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: rotatingtweets.php:244
|
167 |
+
msgid "about a minute ago"
|
168 |
+
msgid_plural "about %d minutes ago"
|
169 |
+
msgstr[0] ""
|
170 |
+
msgstr[1] ""
|
171 |
+
|
172 |
+
#: rotatingtweets.php:245 rotatingtweets.php:247
|
173 |
+
msgid "about an hour ago"
|
174 |
+
msgid_plural "about %d hours ago"
|
175 |
+
msgstr[0] ""
|
176 |
+
msgstr[1] ""
|
177 |
+
|
178 |
+
#: rotatingtweets.php:246
|
179 |
+
msgid "yesterday"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: rotatingtweets.php:248
|
183 |
+
msgid "about a day ago"
|
184 |
+
msgid_plural "about %d days ago"
|
185 |
+
msgstr[0] ""
|
186 |
+
msgstr[1] ""
|
187 |
+
|
188 |
+
#: rotatingtweets.php:249
|
189 |
+
msgid "last week"
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: rotatingtweets.php:250
|
193 |
+
msgid "about a week ago"
|
194 |
+
msgid_plural "about %d weeks ago"
|
195 |
+
msgstr[0] ""
|
196 |
+
msgstr[1] ""
|
197 |
+
|
198 |
+
#: rotatingtweets.php:251
|
199 |
+
msgid "last month"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: rotatingtweets.php:252
|
203 |
+
msgid "about a month ago"
|
204 |
+
msgid_plural "about %d months ago"
|
205 |
+
msgstr[0] ""
|
206 |
+
msgstr[1] ""
|
207 |
+
|
208 |
+
#: rotatingtweets.php:253
|
209 |
+
msgid "last year"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: rotatingtweets.php:254
|
213 |
+
msgid "about a year ago"
|
214 |
+
msgid_plural "about %d years ago"
|
215 |
+
msgstr[0] ""
|
216 |
+
msgstr[1] ""
|
217 |
+
|
218 |
+
#: rotatingtweets.php:261
|
219 |
+
msgctxt "abbreviated timestamp in seconds"
|
220 |
+
msgid "%ds"
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: rotatingtweets.php:262
|
224 |
+
msgctxt "abbreviated timestamp in minutes"
|
225 |
+
msgid "%dm"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: rotatingtweets.php:263
|
229 |
+
msgctxt "abbreviated timestamp in hours"
|
230 |
+
msgid "%dh"
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: rotatingtweets.php:264
|
234 |
+
msgctxt ""
|
235 |
+
"short date format as per http://uk.php.net/manual/en/function.date.php"
|
236 |
+
msgid "j M"
|
237 |
+
msgstr ""
|
238 |
+
|
239 |
+
#: rotatingtweets.php:265
|
240 |
+
msgctxt ""
|
241 |
+
"slightly longer date format as per http://uk.php.net/manual/en/function.date."
|
242 |
+
"php"
|
243 |
+
msgid "j M Y"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: rotatingtweets.php:271
|
247 |
+
msgid "reply"
|
248 |
+
msgstr "Beantwoorden"
|
249 |
+
|
250 |
+
#: rotatingtweets.php:272
|
251 |
+
msgid "retweet"
|
252 |
+
msgstr "Retweeten"
|
253 |
+
|
254 |
+
#: rotatingtweets.php:273
|
255 |
+
msgid "favorite"
|
256 |
+
msgstr "Toevoegen aan favorieten"
|
257 |
+
|
258 |
+
#: rotatingtweets.php:411
|
259 |
+
msgid ""
|
260 |
+
"Please update <a href=\"%2$s\">your settings for Rotating Tweets</a>. The "
|
261 |
+
"Twitter API <a href=\"%1$s\">changed in March 2013</a> and new settings are "
|
262 |
+
"needed for Rotating Tweets to continue working."
|
263 |
+
msgstr ""
|
264 |
+
|
265 |
+
#: rotatingtweets.php:413
|
266 |
+
msgid ""
|
267 |
+
"Please update <a href=\"%2$s\">your settings for Rotating Tweets</a>. The "
|
268 |
+
"Twitter API will <a href=\"%1$s\">be changing in March 2013</a> and new "
|
269 |
+
"settings are needed for Rotating Tweets to continue working after the API "
|
270 |
+
"changes."
|
271 |
+
msgstr ""
|
272 |
+
|
273 |
+
#: rotatingtweets.php:419
|
274 |
+
msgid ""
|
275 |
+
"Please update <a href=\"%1$s\">your settings for Rotating Tweets</a>. "
|
276 |
+
"Currently Rotating Tweets cannot authenticate you with Twitter using the "
|
277 |
+
"details you have given."
|
278 |
+
msgstr ""
|
279 |
+
|
280 |
+
#: rotatingtweets.php:427 rotatingtweets.php:433
|
281 |
+
msgid "Rotating Tweets: Twitter API settings"
|
282 |
+
msgstr ""
|
283 |
+
|
284 |
+
#: rotatingtweets.php:435
|
285 |
+
msgid "You do not have sufficient permissions to access this page."
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
#: rotatingtweets.php:437
|
289 |
+
msgid ""
|
290 |
+
"<p>Twitter <a href=\"%s\">recently announced</a> that they will be changing "
|
291 |
+
"the way that they allow people to use the information in their tweets.</"
|
292 |
+
"p><p>Please take the following steps to make sure that Rotating Tweets "
|
293 |
+
"continues working:</p>"
|
294 |
+
msgstr ""
|
295 |
+
|
296 |
+
#: rotatingtweets.php:438
|
297 |
+
msgid ""
|
298 |
+
"<h3>Step 1:</h3><p>Go to the <a href=\"%s\">My applications page</a> on the "
|
299 |
+
"Twitter website to set up your website as a new Twitter 'application'. You "
|
300 |
+
"may need to log-in using your Twitter user name and password.</p>"
|
301 |
+
msgstr ""
|
302 |
+
|
303 |
+
#: rotatingtweets.php:439
|
304 |
+
msgid ""
|
305 |
+
"<h3>Step 2:</h3><p>If you don't already have a suitable 'application' that "
|
306 |
+
"you can use for your website, set one up on the <a href=\"%s\">Create an "
|
307 |
+
"Application page</a>.</p> <p>It's normally best to use the name, description "
|
308 |
+
"and website URL of the website where you plan to use Rotating Tweets.</"
|
309 |
+
"p><p>You don't need a Callback URL.</p>"
|
310 |
+
msgstr ""
|
311 |
+
|
312 |
+
#: rotatingtweets.php:440
|
313 |
+
msgid ""
|
314 |
+
"<h3>Step 3:</h3><p>After clicking <strong>Create your Twitter application</"
|
315 |
+
"strong>, on the following page, click on <strong>Create my access token</"
|
316 |
+
"strong>.</p>"
|
317 |
+
msgstr ""
|
318 |
+
|
319 |
+
#: rotatingtweets.php:441
|
320 |
+
msgid ""
|
321 |
+
"<h3>Step 4:</h3><p>Copy the <strong>Consumer key</strong>, <strong>Consumer "
|
322 |
+
"secret</strong>, <strong>Access token</strong> and <strong>Access token "
|
323 |
+
"secret</strong> from your Twitter application page into the settings below.</"
|
324 |
+
"p>"
|
325 |
+
msgstr ""
|
326 |
+
|
327 |
+
#: rotatingtweets.php:442
|
328 |
+
msgid ""
|
329 |
+
"<h3>Step 5:</h3><p>Click on <strong>Save Changes</strong>. If there are any "
|
330 |
+
"problems, you will get an error message from Twitter which should help "
|
331 |
+
"diagnose the problem.</p>"
|
332 |
+
msgstr ""
|
333 |
+
|
334 |
+
#: rotatingtweets.php:443
|
335 |
+
msgid ""
|
336 |
+
"<p><em>Even though you are only entering one set of Twitter API data, "
|
337 |
+
"Rotating Tweets will continue to support multiple widgets and shortcodes "
|
338 |
+
"pulling from a variety of different Twitter accounts.</em></p>"
|
339 |
+
msgstr ""
|
340 |
+
|
341 |
+
#: rotatingtweets.php:447
|
342 |
+
msgid "Save Changes"
|
343 |
+
msgstr ""
|
344 |
+
|
345 |
+
#: rotatingtweets.php:454
|
346 |
+
msgid "Twitter API Settings"
|
347 |
+
msgstr ""
|
348 |
+
|
349 |
+
#: rotatingtweets.php:455
|
350 |
+
msgid "Twitter API Consumer Key"
|
351 |
+
msgstr ""
|
352 |
+
|
353 |
+
#: rotatingtweets.php:456
|
354 |
+
msgid "Twitter API Consumer Secret"
|
355 |
+
msgstr ""
|
356 |
+
|
357 |
+
#: rotatingtweets.php:457
|
358 |
+
msgid "Twitter API Access Token"
|
359 |
+
msgstr ""
|
360 |
+
|
361 |
+
#: rotatingtweets.php:458
|
362 |
+
msgid "Twitter API Access Token Secret"
|
363 |
+
msgstr ""
|
364 |
+
|
365 |
+
#: rotatingtweets.php:489
|
366 |
+
msgid "Error: Twitter API Consumer Key not correctly formatted."
|
367 |
+
msgstr ""
|
368 |
+
|
369 |
+
#: rotatingtweets.php:496
|
370 |
+
msgid "Error: Twitter API Consumer Secret not correctly formatted."
|
371 |
+
msgstr ""
|
372 |
+
|
373 |
+
#: rotatingtweets.php:503
|
374 |
+
msgid "Error: Twitter API Access Token not correctly formatted."
|
375 |
+
msgstr ""
|
376 |
+
|
377 |
+
#: rotatingtweets.php:510
|
378 |
+
msgid "Error: Twitter API Access Token Secret not correctly formatted."
|
379 |
+
msgstr ""
|
380 |
+
|
381 |
+
#: rotatingtweets.php:517
|
382 |
+
msgid ""
|
383 |
+
"Error message received from Twitter: %1$s. <a href=\"%2$s\">Please check "
|
384 |
+
"your API key, secret, token and secret token on the Twitter website</a>."
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
#: rotatingtweets.php:772
|
388 |
+
msgid "Problem retrieving data from Twitter"
|
389 |
+
msgstr ""
|
390 |
+
|
391 |
+
#: rotatingtweets.php:776
|
392 |
+
msgid "This website is currently <a href='%s'>rate-limited by Twitter</a>."
|
393 |
+
msgstr ""
|
394 |
+
|
395 |
+
#: rotatingtweets.php:778
|
396 |
+
msgid "Next attempt to get data will be in %d minute"
|
397 |
+
msgid_plural "Next attempt to get data will be in %d minutes"
|
398 |
+
msgstr[0] ""
|
399 |
+
msgstr[1] ""
|
400 |
+
|
401 |
+
#: rotatingtweets.php:779
|
402 |
+
msgid "Next attempt to get data will be in less than a minute"
|
403 |
+
msgstr ""
|
404 |
+
|
405 |
+
#: rotatingtweets.php:785
|
406 |
+
msgid "Wordpress error message"
|
407 |
+
msgstr ""
|
408 |
+
|
409 |
+
#: rotatingtweets.php:788
|
410 |
+
msgid ""
|
411 |
+
"Please check the Rotating Tweets settings or the <a href='%s'>Twitter API "
|
412 |
+
"status</a>."
|
413 |
+
msgstr ""
|
414 |
+
|
415 |
+
#: rotatingtweets.php:910
|
416 |
+
msgid "from <a href='%1$s' title='%2$s'>%2$s's Twitter</a>"
|
417 |
+
msgstr ""
|
418 |
+
|
419 |
+
#: rotatingtweets.php:914
|
420 |
+
msgid "via %s"
|
421 |
+
msgstr ""
|
422 |
+
|
423 |
+
#: rotatingtweets.php:925
|
424 |
+
msgid "Twitter"
|
425 |
+
msgstr ""
|
426 |
+
|
427 |
+
#: rotatingtweets.php:934 rotatingtweets.php:950
|
428 |
+
msgid "Retweeted by %s"
|
429 |
+
msgstr "Geretweet door %s"
|
430 |
+
|
431 |
+
#: rotatingtweets.php:952
|
432 |
+
msgid "Expand"
|
433 |
+
msgstr "Openen"
|
434 |
+
|
435 |
+
#: rotatingtweets.php:964
|
436 |
+
msgid "Problem retrieving data from Twitter."
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: rotatingtweets.php:966
|
440 |
+
msgid "Please check the comments on this page's HTML to understand more."
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: rotatingtweets.php:986
|
444 |
+
msgid "Follow @%s"
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#. Plugin Name of the plugin/theme
|
448 |
+
msgid "Rotating Tweets (Twitter widget & shortcode)"
|
449 |
+
msgstr ""
|
450 |
+
|
451 |
+
#. Description of the plugin/theme
|
452 |
+
msgid ""
|
453 |
+
"Replaces a shortcode such as [rotatingtweets "
|
454 |
+
"screen_name='your_twitter_name'], or a widget, with a rotating tweets display"
|
455 |
+
msgstr ""
|
456 |
+
|
457 |
+
#. Author of the plugin/theme
|
458 |
+
msgid "Martin Tod"
|
459 |
+
msgstr ""
|
460 |
+
|
461 |
+
#. Author URI of the plugin/theme
|
462 |
+
msgid "http://www.martintod.org.uk"
|
463 |
+
msgstr ""
|
languages/rotatingtweets.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the Rotating Tweets (Twitter widget & shortcode) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Rotating Tweets (Twitter widget & shortcode) 0.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/rotatingtweets\n"
|
7 |
-
"POT-Creation-Date: 2013-02
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -16,251 +16,251 @@ msgstr ""
|
|
16 |
msgid "A widget to show tweets for a particular user in rotation."
|
17 |
msgstr ""
|
18 |
|
19 |
-
#: rotatingtweets.php:
|
20 |
msgid "Title:"
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: rotatingtweets.php:
|
24 |
msgid "Twitter name:"
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: rotatingtweets.php:
|
28 |
msgid "Include retweets?"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: rotatingtweets.php:
|
32 |
msgid "Exclude replies?"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: rotatingtweets.php:
|
36 |
msgid "Open all links in new window or tab?"
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: rotatingtweets.php:
|
40 |
msgid "How many tweets?"
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: rotatingtweets.php:
|
44 |
msgid "Speed"
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: rotatingtweets.php:
|
48 |
msgid "Faster (3 seconds)"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: rotatingtweets.php:
|
52 |
msgid "Normal (4 seconds)"
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: rotatingtweets.php:
|
56 |
msgid "Slower (5 seconds)"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: rotatingtweets.php:
|
60 |
msgid "Slowest (6 seconds)"
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: rotatingtweets.php:
|
64 |
msgid "Ultra slow (20 seconds)"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: rotatingtweets.php:
|
68 |
msgid "Scroll Up"
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: rotatingtweets.php:
|
72 |
msgid "Scroll Down"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: rotatingtweets.php:
|
76 |
msgid "Scroll Left"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: rotatingtweets.php:
|
80 |
msgid "Scroll Right"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: rotatingtweets.php:
|
84 |
msgid "Fade"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: rotatingtweets.php:
|
88 |
msgid "Type of rotation"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: rotatingtweets.php:
|
92 |
msgid "Display format"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: rotatingtweets.php:
|
96 |
msgid "Original rotating tweets layout"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: rotatingtweets.php:
|
100 |
msgid ""
|
101 |
"<a target='_blank' href='https://dev.twitter.com/terms/display-"
|
102 |
"guidelines'>Official Twitter guidelines</a> (regular)"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: rotatingtweets.php:
|
106 |
msgid ""
|
107 |
"<a target='_blank' href='https://dev.twitter.com/terms/display-"
|
108 |
"guidelines'>Official Twitter guidelines</a> (wide)"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: rotatingtweets.php:
|
112 |
msgid "Show tweet details?"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: rotatingtweets.php:
|
116 |
msgid "Time/date of tweet"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: rotatingtweets.php:
|
120 |
msgid "Name of person tweeting"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: rotatingtweets.php:
|
124 |
msgid "Source of tweet"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: rotatingtweets.php:
|
128 |
msgid "'reply · retweet · favorite' links"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: rotatingtweets.php:
|
132 |
msgid "Show follow button?"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: rotatingtweets.php:
|
136 |
msgctxt "Show follow button?"
|
137 |
msgid "None"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: rotatingtweets.php:
|
141 |
msgid "Show name and number of followers"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: rotatingtweets.php:
|
145 |
msgid "Show name only"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: rotatingtweets.php:
|
149 |
msgid "Show followers only"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: rotatingtweets.php:
|
153 |
msgid "Show button only"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: rotatingtweets.php:
|
157 |
msgid "less than a second ago"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: rotatingtweets.php:
|
161 |
msgid "%d seconds ago"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: rotatingtweets.php:
|
165 |
msgid "about a minute ago"
|
166 |
msgid_plural "about %d minutes ago"
|
167 |
msgstr[0] ""
|
168 |
msgstr[1] ""
|
169 |
|
170 |
-
#: rotatingtweets.php:
|
171 |
msgid "about an hour ago"
|
172 |
msgid_plural "about %d hours ago"
|
173 |
msgstr[0] ""
|
174 |
msgstr[1] ""
|
175 |
|
176 |
-
#: rotatingtweets.php:
|
177 |
msgid "yesterday"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: rotatingtweets.php:
|
181 |
msgid "about a day ago"
|
182 |
msgid_plural "about %d days ago"
|
183 |
msgstr[0] ""
|
184 |
msgstr[1] ""
|
185 |
|
186 |
-
#: rotatingtweets.php:
|
187 |
msgid "last week"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: rotatingtweets.php:
|
191 |
msgid "about a week ago"
|
192 |
msgid_plural "about %d weeks ago"
|
193 |
msgstr[0] ""
|
194 |
msgstr[1] ""
|
195 |
|
196 |
-
#: rotatingtweets.php:
|
197 |
msgid "last month"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: rotatingtweets.php:
|
201 |
msgid "about a month ago"
|
202 |
msgid_plural "about %d months ago"
|
203 |
msgstr[0] ""
|
204 |
msgstr[1] ""
|
205 |
|
206 |
-
#: rotatingtweets.php:
|
207 |
msgid "last year"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: rotatingtweets.php:
|
211 |
msgid "about a year ago"
|
212 |
msgid_plural "about %d years ago"
|
213 |
msgstr[0] ""
|
214 |
msgstr[1] ""
|
215 |
|
216 |
-
#: rotatingtweets.php:
|
217 |
msgctxt "abbreviated timestamp in seconds"
|
218 |
msgid "%ds"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: rotatingtweets.php:
|
222 |
msgctxt "abbreviated timestamp in minutes"
|
223 |
msgid "%dm"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: rotatingtweets.php:
|
227 |
msgctxt "abbreviated timestamp in hours"
|
228 |
msgid "%dh"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: rotatingtweets.php:
|
232 |
msgctxt ""
|
233 |
"short date format as per http://uk.php.net/manual/en/function.date.php"
|
234 |
msgid "j M"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: rotatingtweets.php:
|
238 |
msgctxt ""
|
239 |
"slightly longer date format as per http://uk.php.net/manual/en/function.date."
|
240 |
"php"
|
241 |
msgid "j M Y"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: rotatingtweets.php:
|
245 |
msgid "reply"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: rotatingtweets.php:
|
249 |
msgid "retweet"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: rotatingtweets.php:
|
253 |
msgid "favorite"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: rotatingtweets.php:
|
257 |
msgid ""
|
258 |
"Please update <a href=\"%2$s\">your settings for Rotating Tweets</a>. The "
|
259 |
"Twitter API <a href=\"%1$s\">changed in March 2013</a> and new settings are "
|
260 |
"needed for Rotating Tweets to continue working."
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: rotatingtweets.php:
|
264 |
msgid ""
|
265 |
"Please update <a href=\"%2$s\">your settings for Rotating Tweets</a>. The "
|
266 |
"Twitter API will <a href=\"%1$s\">be changing in March 2013</a> and new "
|
@@ -268,128 +268,177 @@ msgid ""
|
|
268 |
"changes."
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: rotatingtweets.php:
|
272 |
msgid ""
|
273 |
"Please update <a href=\"%1$s\">your settings for Rotating Tweets</a>. "
|
274 |
-
"Currently
|
|
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: rotatingtweets.php:
|
278 |
msgid "Rotating Tweets: Twitter API settings"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: rotatingtweets.php:
|
282 |
msgid "You do not have sufficient permissions to access this page."
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: rotatingtweets.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
286 |
msgid ""
|
287 |
-
"<p>
|
288 |
-
"
|
289 |
-
"
|
290 |
-
"
|
291 |
-
"
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
"<
|
296 |
-
"
|
297 |
-
"
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
"<
|
303 |
-
"
|
304 |
-
"
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
#: rotatingtweets.php:465
|
309 |
msgid "Save Changes"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: rotatingtweets.php:
|
313 |
msgid "Twitter API Settings"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: rotatingtweets.php:
|
317 |
msgid "Twitter API Consumer Key"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: rotatingtweets.php:
|
321 |
msgid "Twitter API Consumer Secret"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: rotatingtweets.php:
|
325 |
msgid "Twitter API Access Token"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: rotatingtweets.php:
|
329 |
msgid "Twitter API Access Token Secret"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: rotatingtweets.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
333 |
msgid ""
|
334 |
"Error message received from Twitter: %1$s. <a href=\"%2$s\">Please check "
|
335 |
"your API key, secret, token and secret token on the Twitter website</a>."
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: rotatingtweets.php:
|
339 |
msgid "Problem retrieving data from Twitter"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: rotatingtweets.php:
|
343 |
msgid "This website is currently <a href='%s'>rate-limited by Twitter</a>."
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: rotatingtweets.php:
|
347 |
msgid "Next attempt to get data will be in %d minute"
|
348 |
msgid_plural "Next attempt to get data will be in %d minutes"
|
349 |
msgstr[0] ""
|
350 |
msgstr[1] ""
|
351 |
|
352 |
-
#: rotatingtweets.php:
|
353 |
msgid "Next attempt to get data will be in less than a minute"
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: rotatingtweets.php:
|
357 |
msgid "Wordpress error message"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: rotatingtweets.php:
|
361 |
-
msgid "
|
|
|
|
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: rotatingtweets.php:
|
365 |
msgid "from <a href='%1$s' title='%2$s'>%2$s's Twitter</a>"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: rotatingtweets.php:
|
369 |
msgid "via %s"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: rotatingtweets.php:
|
373 |
msgid "Twitter"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: rotatingtweets.php:
|
377 |
msgid "Retweeted by %s"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: rotatingtweets.php:
|
381 |
msgid "Expand"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: rotatingtweets.php:
|
385 |
msgid "Problem retrieving data from Twitter."
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: rotatingtweets.php:
|
389 |
msgid "Please check the comments on this page's HTML to understand more."
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: rotatingtweets.php:
|
393 |
msgid "Follow @%s"
|
394 |
msgstr ""
|
395 |
|
2 |
# This file is distributed under the same license as the Rotating Tweets (Twitter widget & shortcode) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Rotating Tweets (Twitter widget & shortcode) 0.711\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/rotatingtweets\n"
|
7 |
+
"POT-Creation-Date: 2013-03-02 20:25:59+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
msgid "A widget to show tweets for a particular user in rotation."
|
17 |
msgstr ""
|
18 |
|
19 |
+
#: rotatingtweets.php:130
|
20 |
msgid "Title:"
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: rotatingtweets.php:131
|
24 |
msgid "Twitter name:"
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: rotatingtweets.php:132
|
28 |
msgid "Include retweets?"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: rotatingtweets.php:133
|
32 |
msgid "Exclude replies?"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: rotatingtweets.php:134
|
36 |
msgid "Open all links in new window or tab?"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: rotatingtweets.php:135
|
40 |
msgid "How many tweets?"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: rotatingtweets.php:143
|
44 |
msgid "Speed"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: rotatingtweets.php:146
|
48 |
msgid "Faster (3 seconds)"
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: rotatingtweets.php:147
|
52 |
msgid "Normal (4 seconds)"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: rotatingtweets.php:148
|
56 |
msgid "Slower (5 seconds)"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: rotatingtweets.php:149
|
60 |
msgid "Slowest (6 seconds)"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: rotatingtweets.php:150
|
64 |
msgid "Ultra slow (20 seconds)"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: rotatingtweets.php:162
|
68 |
msgid "Scroll Up"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: rotatingtweets.php:163
|
72 |
msgid "Scroll Down"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: rotatingtweets.php:164
|
76 |
msgid "Scroll Left"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: rotatingtweets.php:165
|
80 |
msgid "Scroll Right"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: rotatingtweets.php:166
|
84 |
msgid "Fade"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: rotatingtweets.php:170
|
88 |
msgid "Type of rotation"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: rotatingtweets.php:179
|
92 |
msgid "Display format"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: rotatingtweets.php:182
|
96 |
msgid "Original rotating tweets layout"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: rotatingtweets.php:183
|
100 |
msgid ""
|
101 |
"<a target='_blank' href='https://dev.twitter.com/terms/display-"
|
102 |
"guidelines'>Official Twitter guidelines</a> (regular)"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: rotatingtweets.php:184
|
106 |
msgid ""
|
107 |
"<a target='_blank' href='https://dev.twitter.com/terms/display-"
|
108 |
"guidelines'>Official Twitter guidelines</a> (wide)"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: rotatingtweets.php:194
|
112 |
msgid "Show tweet details?"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: rotatingtweets.php:197
|
116 |
msgid "Time/date of tweet"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: rotatingtweets.php:198
|
120 |
msgid "Name of person tweeting"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: rotatingtweets.php:199
|
124 |
msgid "Source of tweet"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: rotatingtweets.php:200
|
128 |
msgid "'reply · retweet · favorite' links"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: rotatingtweets.php:210
|
132 |
msgid "Show follow button?"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: rotatingtweets.php:213
|
136 |
msgctxt "Show follow button?"
|
137 |
msgid "None"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: rotatingtweets.php:214
|
141 |
msgid "Show name and number of followers"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: rotatingtweets.php:215
|
145 |
msgid "Show name only"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: rotatingtweets.php:216
|
149 |
msgid "Show followers only"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: rotatingtweets.php:217
|
153 |
msgid "Show button only"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: rotatingtweets.php:242
|
157 |
msgid "less than a second ago"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: rotatingtweets.php:243
|
161 |
msgid "%d seconds ago"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: rotatingtweets.php:244
|
165 |
msgid "about a minute ago"
|
166 |
msgid_plural "about %d minutes ago"
|
167 |
msgstr[0] ""
|
168 |
msgstr[1] ""
|
169 |
|
170 |
+
#: rotatingtweets.php:245 rotatingtweets.php:247
|
171 |
msgid "about an hour ago"
|
172 |
msgid_plural "about %d hours ago"
|
173 |
msgstr[0] ""
|
174 |
msgstr[1] ""
|
175 |
|
176 |
+
#: rotatingtweets.php:246
|
177 |
msgid "yesterday"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: rotatingtweets.php:248
|
181 |
msgid "about a day ago"
|
182 |
msgid_plural "about %d days ago"
|
183 |
msgstr[0] ""
|
184 |
msgstr[1] ""
|
185 |
|
186 |
+
#: rotatingtweets.php:249
|
187 |
msgid "last week"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: rotatingtweets.php:250
|
191 |
msgid "about a week ago"
|
192 |
msgid_plural "about %d weeks ago"
|
193 |
msgstr[0] ""
|
194 |
msgstr[1] ""
|
195 |
|
196 |
+
#: rotatingtweets.php:251
|
197 |
msgid "last month"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: rotatingtweets.php:252
|
201 |
msgid "about a month ago"
|
202 |
msgid_plural "about %d months ago"
|
203 |
msgstr[0] ""
|
204 |
msgstr[1] ""
|
205 |
|
206 |
+
#: rotatingtweets.php:253
|
207 |
msgid "last year"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: rotatingtweets.php:254
|
211 |
msgid "about a year ago"
|
212 |
msgid_plural "about %d years ago"
|
213 |
msgstr[0] ""
|
214 |
msgstr[1] ""
|
215 |
|
216 |
+
#: rotatingtweets.php:261
|
217 |
msgctxt "abbreviated timestamp in seconds"
|
218 |
msgid "%ds"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: rotatingtweets.php:262
|
222 |
msgctxt "abbreviated timestamp in minutes"
|
223 |
msgid "%dm"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: rotatingtweets.php:263
|
227 |
msgctxt "abbreviated timestamp in hours"
|
228 |
msgid "%dh"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: rotatingtweets.php:264
|
232 |
msgctxt ""
|
233 |
"short date format as per http://uk.php.net/manual/en/function.date.php"
|
234 |
msgid "j M"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: rotatingtweets.php:265
|
238 |
msgctxt ""
|
239 |
"slightly longer date format as per http://uk.php.net/manual/en/function.date."
|
240 |
"php"
|
241 |
msgid "j M Y"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: rotatingtweets.php:271
|
245 |
msgid "reply"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: rotatingtweets.php:272
|
249 |
msgid "retweet"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: rotatingtweets.php:273
|
253 |
msgid "favorite"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: rotatingtweets.php:411
|
257 |
msgid ""
|
258 |
"Please update <a href=\"%2$s\">your settings for Rotating Tweets</a>. The "
|
259 |
"Twitter API <a href=\"%1$s\">changed in March 2013</a> and new settings are "
|
260 |
"needed for Rotating Tweets to continue working."
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: rotatingtweets.php:413
|
264 |
msgid ""
|
265 |
"Please update <a href=\"%2$s\">your settings for Rotating Tweets</a>. The "
|
266 |
"Twitter API will <a href=\"%1$s\">be changing in March 2013</a> and new "
|
268 |
"changes."
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: rotatingtweets.php:419
|
272 |
msgid ""
|
273 |
"Please update <a href=\"%1$s\">your settings for Rotating Tweets</a>. "
|
274 |
+
"Currently Rotating Tweets cannot authenticate you with Twitter using the "
|
275 |
+
"details you have given."
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: rotatingtweets.php:427 rotatingtweets.php:433
|
279 |
msgid "Rotating Tweets: Twitter API settings"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: rotatingtweets.php:435
|
283 |
msgid "You do not have sufficient permissions to access this page."
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: rotatingtweets.php:437
|
287 |
+
msgid ""
|
288 |
+
"<p>Twitter <a href=\"%s\">recently announced</a> that they will be changing "
|
289 |
+
"the way that they allow people to use the information in their tweets.</"
|
290 |
+
"p><p>Please take the following steps to make sure that Rotating Tweets "
|
291 |
+
"continues working:</p>"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: rotatingtweets.php:438
|
295 |
+
msgid ""
|
296 |
+
"<h3>Step 1:</h3><p>Go to the <a href=\"%s\">My applications page</a> on the "
|
297 |
+
"Twitter website to set up your website as a new Twitter 'application'. You "
|
298 |
+
"may need to log-in using your Twitter user name and password.</p>"
|
299 |
+
msgstr ""
|
300 |
+
|
301 |
+
#: rotatingtweets.php:439
|
302 |
+
msgid ""
|
303 |
+
"<h3>Step 2:</h3><p>If you don't already have a suitable 'application' that "
|
304 |
+
"you can use for your website, set one up on the <a href=\"%s\">Create an "
|
305 |
+
"Application page</a>.</p> <p>It's normally best to use the name, description "
|
306 |
+
"and website URL of the website where you plan to use Rotating Tweets.</"
|
307 |
+
"p><p>You don't need a Callback URL.</p>"
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: rotatingtweets.php:440
|
311 |
+
msgid ""
|
312 |
+
"<h3>Step 3:</h3><p>After clicking <strong>Create your Twitter application</"
|
313 |
+
"strong>, on the following page, click on <strong>Create my access token</"
|
314 |
+
"strong>.</p>"
|
315 |
+
msgstr ""
|
316 |
+
|
317 |
+
#: rotatingtweets.php:441
|
318 |
msgid ""
|
319 |
+
"<h3>Step 4:</h3><p>Copy the <strong>Consumer key</strong>, <strong>Consumer "
|
320 |
+
"secret</strong>, <strong>Access token</strong> and <strong>Access token "
|
321 |
+
"secret</strong> from your Twitter application page into the settings below.</"
|
322 |
+
"p>"
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: rotatingtweets.php:442
|
326 |
+
msgid ""
|
327 |
+
"<h3>Step 5:</h3><p>Click on <strong>Save Changes</strong>. If there are any "
|
328 |
+
"problems, you will get an error message from Twitter which should help "
|
329 |
+
"diagnose the problem.</p>"
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
+
#: rotatingtweets.php:443
|
333 |
+
msgid ""
|
334 |
+
"<p><em>Even though you are only entering one set of Twitter API data, "
|
335 |
+
"Rotating Tweets will continue to support multiple widgets and shortcodes "
|
336 |
+
"pulling from a variety of different Twitter accounts.</em></p>"
|
337 |
+
msgstr ""
|
338 |
+
|
339 |
+
#: rotatingtweets.php:447
|
|
|
340 |
msgid "Save Changes"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: rotatingtweets.php:454
|
344 |
msgid "Twitter API Settings"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: rotatingtweets.php:455
|
348 |
msgid "Twitter API Consumer Key"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: rotatingtweets.php:456
|
352 |
msgid "Twitter API Consumer Secret"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: rotatingtweets.php:457
|
356 |
msgid "Twitter API Access Token"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: rotatingtweets.php:458
|
360 |
msgid "Twitter API Access Token Secret"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: rotatingtweets.php:489
|
364 |
+
msgid "Error: Twitter API Consumer Key not correctly formatted."
|
365 |
+
msgstr ""
|
366 |
+
|
367 |
+
#: rotatingtweets.php:496
|
368 |
+
msgid "Error: Twitter API Consumer Secret not correctly formatted."
|
369 |
+
msgstr ""
|
370 |
+
|
371 |
+
#: rotatingtweets.php:503
|
372 |
+
msgid "Error: Twitter API Access Token not correctly formatted."
|
373 |
+
msgstr ""
|
374 |
+
|
375 |
+
#: rotatingtweets.php:510
|
376 |
+
msgid "Error: Twitter API Access Token Secret not correctly formatted."
|
377 |
+
msgstr ""
|
378 |
+
|
379 |
+
#: rotatingtweets.php:517
|
380 |
msgid ""
|
381 |
"Error message received from Twitter: %1$s. <a href=\"%2$s\">Please check "
|
382 |
"your API key, secret, token and secret token on the Twitter website</a>."
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: rotatingtweets.php:772
|
386 |
msgid "Problem retrieving data from Twitter"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: rotatingtweets.php:776
|
390 |
msgid "This website is currently <a href='%s'>rate-limited by Twitter</a>."
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: rotatingtweets.php:778
|
394 |
msgid "Next attempt to get data will be in %d minute"
|
395 |
msgid_plural "Next attempt to get data will be in %d minutes"
|
396 |
msgstr[0] ""
|
397 |
msgstr[1] ""
|
398 |
|
399 |
+
#: rotatingtweets.php:779
|
400 |
msgid "Next attempt to get data will be in less than a minute"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: rotatingtweets.php:785
|
404 |
msgid "Wordpress error message"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: rotatingtweets.php:788
|
408 |
+
msgid ""
|
409 |
+
"Please check the Rotating Tweets settings or the <a href='%s'>Twitter API "
|
410 |
+
"status</a>."
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: rotatingtweets.php:910
|
414 |
msgid "from <a href='%1$s' title='%2$s'>%2$s's Twitter</a>"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: rotatingtweets.php:914
|
418 |
msgid "via %s"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: rotatingtweets.php:925
|
422 |
msgid "Twitter"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: rotatingtweets.php:934 rotatingtweets.php:950
|
426 |
msgid "Retweeted by %s"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: rotatingtweets.php:952
|
430 |
msgid "Expand"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: rotatingtweets.php:964
|
434 |
msgid "Problem retrieving data from Twitter."
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: rotatingtweets.php:966
|
438 |
msgid "Please check the comments on this page's HTML to understand more."
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: rotatingtweets.php:986
|
442 |
msgid "Follow @%s"
|
443 |
msgstr ""
|
444 |
|
lib/wp_twitteroauth.php
CHANGED
@@ -204,6 +204,8 @@ class wp_TwitterOAuth {
|
|
204 |
if(!empty($args)):
|
205 |
$args['body'] = $postfields;
|
206 |
endif;
|
|
|
|
|
207 |
$response = wp_remote_request($url,$args);
|
208 |
return($response);
|
209 |
/*
|
204 |
if(!empty($args)):
|
205 |
$args['body'] = $postfields;
|
206 |
endif;
|
207 |
+
$args['timeout'] = $this->timeout;
|
208 |
+
$args['sslverify'] = $this->ssl_verifypeer;
|
209 |
$response = wp_remote_request($url,$args);
|
210 |
return($response);
|
211 |
/*
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
Tags: shortcode,widget,twitter,rotating,rotate,rotator,tweet,tweets,animation,jquery,jquery cycle,cycle,multilingual
|
5 |
Requires at least: 2.6
|
6 |
Tested up to: 3.5
|
7 |
-
Stable tag: 0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -20,7 +20,15 @@ Twitter widget and shortcode to show your latest tweets one at a time an animate
|
|
20 |
* Replaces [t.co](http://t.co) links with the original link
|
21 |
* Caches the most recent data from Twitter to avoid problems with rate limiting
|
22 |
* Uses [jQuery](http://jquery.com/) and [jQuery.Cycle](http://jquery.malsup.com/cycle/) to produce a nice smooth result.
|
23 |
-
* **Multi-lingual** - now set up to be multi-lingual. The Twitter 'follow' button is automatically translated to match your site's language setting [if Twitter has made the appropriate language available](https://dev.twitter.com/docs/api/1/get/help/languages). Also uses [Wordpress's multi-lingual capability](http://codex.wordpress.org/I18n_for_WordPress_Developers) to enable translation of all the other text used by the plug-in via language packs.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
|
25 |
If you have made the plug-in work in your language, please send the [gettext PO and MO files](http://codex.wordpress.org/I18n_for_WordPress_Developers) to [me](http://www.martintod.org.uk/contact-martin/) and I will then share them with everyone else. You can download [the latest POT file](http://plugins.svn.wordpress.org/rotatingtweets/trunk/languages/rotatingtweets.pot), and [PO files in each language](http://plugins.svn.wordpress.org/rotatingtweets/trunk/languages/) from this site. You may find [Poedit](http://www.poedit.net/) rather useful for translation and creation of PO and MO files.
|
26 |
|
@@ -82,10 +90,13 @@ In most cases, each use (or "instance") of this plug-in gets data from Twitter e
|
|
82 |
You can do this by going to the `rotatingtweets/css` directory and renaming `yourstyle-sample.css` to `yourstyle.css`. This displays a Twitter bird to the left of your tweets. Any CSS you put into `yourstyle.css` won't be overwritten when the plug-in is upgraded to the latest version.
|
83 |
|
84 |
== Upgrade notice ==
|
85 |
-
= 0.
|
86 |
Includes an important upgrade needed for Rotating Tweets to keep working after March 2013. Supports version 1.1 of the Twitter API. Fixed problem with cacheing.
|
87 |
|
88 |
== Changelog ==
|
|
|
|
|
|
|
89 |
= 0.711 =
|
90 |
Fixed up a significant problem with cacheing.
|
91 |
|
4 |
Tags: shortcode,widget,twitter,rotating,rotate,rotator,tweet,tweets,animation,jquery,jquery cycle,cycle,multilingual
|
5 |
Requires at least: 2.6
|
6 |
Tested up to: 3.5
|
7 |
+
Stable tag: 0.712
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
20 |
* Replaces [t.co](http://t.co) links with the original link
|
21 |
* Caches the most recent data from Twitter to avoid problems with rate limiting
|
22 |
* Uses [jQuery](http://jquery.com/) and [jQuery.Cycle](http://jquery.malsup.com/cycle/) to produce a nice smooth result.
|
23 |
+
* **Multi-lingual** - now set up to be multi-lingual. The Twitter 'follow' button is automatically translated to match your site's language setting [if Twitter has made the appropriate language available](https://dev.twitter.com/docs/api/1.1/get/help/languages). Also uses [Wordpress's multi-lingual capability](http://codex.wordpress.org/I18n_for_WordPress_Developers) to enable translation of all the other text used by the plug-in via language packs.
|
24 |
+
|
25 |
+
Currently the following languages are available:
|
26 |
+
* US English *(complete)*
|
27 |
+
* British English *(complete - mainly changing 'favorite' to 'favourite'!)*
|
28 |
+
* German *(basic tweet display only)*
|
29 |
+
* Spanish *(tweet display only)*
|
30 |
+
* Italian *(tweet display only)*
|
31 |
+
* Dutch *(tweet display only)*
|
32 |
|
33 |
If you have made the plug-in work in your language, please send the [gettext PO and MO files](http://codex.wordpress.org/I18n_for_WordPress_Developers) to [me](http://www.martintod.org.uk/contact-martin/) and I will then share them with everyone else. You can download [the latest POT file](http://plugins.svn.wordpress.org/rotatingtweets/trunk/languages/rotatingtweets.pot), and [PO files in each language](http://plugins.svn.wordpress.org/rotatingtweets/trunk/languages/) from this site. You may find [Poedit](http://www.poedit.net/) rather useful for translation and creation of PO and MO files.
|
34 |
|
90 |
You can do this by going to the `rotatingtweets/css` directory and renaming `yourstyle-sample.css` to `yourstyle.css`. This displays a Twitter bird to the left of your tweets. Any CSS you put into `yourstyle.css` won't be overwritten when the plug-in is upgraded to the latest version.
|
91 |
|
92 |
== Upgrade notice ==
|
93 |
+
= 0.712 =
|
94 |
Includes an important upgrade needed for Rotating Tweets to keep working after March 2013. Supports version 1.1 of the Twitter API. Fixed problem with cacheing.
|
95 |
|
96 |
== Changelog ==
|
97 |
+
= 0.712 =
|
98 |
+
Fixed bug with `console.log` javascript on IE.
|
99 |
+
|
100 |
= 0.711 =
|
101 |
Fixed up a significant problem with cacheing.
|
102 |
|
rotatingtweets.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: Rotating Tweets (Twitter widget & shortcode)
|
4 |
Description: Replaces a shortcode such as [rotatingtweets screen_name='your_twitter_name'], or a widget, with a rotating tweets display
|
5 |
-
Version: 0.
|
6 |
Text Domain: rotatingtweets
|
7 |
Author: Martin Tod
|
8 |
Author URI: http://www.martintod.org.uk
|
@@ -497,7 +497,7 @@ function rotatingtweets_api_validate($input) {
|
|
497 |
}
|
498 |
// Check 'token'
|
499 |
$options['token'] = trim($input['token']);
|
500 |
-
if(!preg_match('/^[
|
501 |
$options['token'] = '';
|
502 |
$error = 1;
|
503 |
add_settings_error( 'rotatingtweets', esc_attr('rotatingtweets-api-token'), __('Error: Twitter API Access Token not correctly formatted.','rotatingtweets'));
|
@@ -763,7 +763,12 @@ function rotating_tweets_display($json,$args,$print=TRUE) {
|
|
763 |
endforeach;
|
764 |
# Create an ID that has all the relevant info in - rotation type and speed of rotation
|
765 |
$id = uniqid('rotatingtweets_'.$timeout.'_'.$rotation_type.'_');
|
766 |
-
|
|
|
|
|
|
|
|
|
|
|
767 |
$error = get_option('rotatingtweets_api_error');
|
768 |
if(!empty($error)):
|
769 |
$result .= "\n<!-- Error: ".esc_attr($error[0]['code'])." - ".esc_attr($error[0]['message'])." -->";
|
2 |
/*
|
3 |
Plugin Name: Rotating Tweets (Twitter widget & shortcode)
|
4 |
Description: Replaces a shortcode such as [rotatingtweets screen_name='your_twitter_name'], or a widget, with a rotating tweets display
|
5 |
+
Version: 0.712
|
6 |
Text Domain: rotatingtweets
|
7 |
Author: Martin Tod
|
8 |
Author URI: http://www.martintod.org.uk
|
497 |
}
|
498 |
// Check 'token'
|
499 |
$options['token'] = trim($input['token']);
|
500 |
+
if(!preg_match('/^[a-z0-9]+\-[a-z0-9]+$/i', $options['token'])) {
|
501 |
$options['token'] = '';
|
502 |
$error = 1;
|
503 |
add_settings_error( 'rotatingtweets', esc_attr('rotatingtweets-api-token'), __('Error: Twitter API Access Token not correctly formatted.','rotatingtweets'));
|
763 |
endforeach;
|
764 |
# Create an ID that has all the relevant info in - rotation type and speed of rotation
|
765 |
$id = uniqid('rotatingtweets_'.$timeout.'_'.$rotation_type.'_');
|
766 |
+
if(WP_DEBUG):
|
767 |
+
$result = "\n<div class='rotatingtweets wp_debug' id='$id'>";
|
768 |
+
|
769 |
+
else:
|
770 |
+
$result = "\n<div class='rotatingtweets' id='$id'>";
|
771 |
+
endif;
|
772 |
$error = get_option('rotatingtweets_api_error');
|
773 |
if(!empty($error)):
|
774 |
$result .= "\n<!-- Error: ".esc_attr($error[0]['code'])." - ".esc_attr($error[0]['message'])." -->";
|