Version Description
- Maintenance: Updated admin screen headings for compatibility with 4.3.
- Maintenance: Updated demo video on profile page. Just because.
- Bug: Fixed (I hope) the problem with the editor button not appearing for some users. Thanks to Mark Aarhus for getting to the bottom of this for me.
- Enhancement: Added donation link to plugin meta. Because I'm worth it.
Download this release
Release Info
Developer | dartiss |
Plugin | YouTube Embed |
Version | 3.3.4 |
Comparing to | |
See all releases |
Code changes from version 3.3.3 to 3.3.4
- includes/admin-config.php +2 -1
- includes/options-general.php +5 -1
- includes/options-lists.php +5 -1
- includes/options-profiles.php +6 -3
- js/mce4-button.min.php +1 -1
- js/mce4-button.php +2 -1
- languages/youtube-embed.mo +0 -0
- languages/youtube-embed.po +247 -282
- readme.txt +17 -4
- youtube-embed.php +2 -2
includes/admin-config.php
CHANGED
@@ -52,6 +52,7 @@ function vye_set_plugin_meta( $links, $file ) {
|
|
52 |
if ( strpos( $file, 'youtube-embed.php' ) !== false ) {
|
53 |
|
54 |
$links = array_merge( $links, array( '<a href="https://wordpress.org/support/plugin/youtube-embed">' . __( 'Support', 'youtube-embed' ) . '</a>' ) );
|
|
|
55 |
|
56 |
}
|
57 |
|
@@ -79,7 +80,7 @@ function vye_menu_initialise() {
|
|
79 |
$menu_access = $options[ 'menu_access' ];
|
80 |
|
81 |
// Add main admin option
|
82 |
-
|
83 |
$menu_icon = 'dashicons-video-alt3';
|
84 |
|
85 |
add_menu_page( __( 'About YouTube Embed', 'youtube-embed' ), __( 'YouTube', 'youtube-embed' ), $menu_access, 'general-options', 'vye_general_options', $menu_icon, 12 );
|
52 |
if ( strpos( $file, 'youtube-embed.php' ) !== false ) {
|
53 |
|
54 |
$links = array_merge( $links, array( '<a href="https://wordpress.org/support/plugin/youtube-embed">' . __( 'Support', 'youtube-embed' ) . '</a>' ) );
|
55 |
+
$links = array_merge( $links, array( '<a href="http://www.artiss.co.uk/donate">' . __( 'Donate', 'youtube-embed' ) . '</a>' ) );
|
56 |
|
57 |
}
|
58 |
|
80 |
$menu_access = $options[ 'menu_access' ];
|
81 |
|
82 |
// Add main admin option
|
83 |
+
|
84 |
$menu_icon = 'dashicons-video-alt3';
|
85 |
|
86 |
add_menu_page( __( 'About YouTube Embed', 'youtube-embed' ), __( 'YouTube', 'youtube-embed' ), $menu_access, 'general-options', 'vye_general_options', $menu_icon, 12 );
|
includes/options-general.php
CHANGED
@@ -9,7 +9,11 @@
|
|
9 |
*/
|
10 |
?>
|
11 |
<div class="wrap" style="width: 1010px;">
|
12 |
-
|
|
|
|
|
|
|
|
|
13 |
|
14 |
<?php
|
15 |
|
9 |
*/
|
10 |
?>
|
11 |
<div class="wrap" style="width: 1010px;">
|
12 |
+
<?php
|
13 |
+
global $wp_version;
|
14 |
+
if ( ( float ) $wp_version >= 4.3 ) { $heading = '1'; } else { $heading = '2'; }
|
15 |
+
?>
|
16 |
+
<h<?php echo $heading; ?>><?php _e( 'YouTube Embed Options', 'youtube-embed' ); ?></h<?php echo $heading; ?>>
|
17 |
|
18 |
<?php
|
19 |
|
includes/options-lists.php
CHANGED
@@ -9,7 +9,11 @@
|
|
9 |
*/
|
10 |
?>
|
11 |
<div class="wrap" style="width: 1010px;">
|
12 |
-
|
|
|
|
|
|
|
|
|
13 |
|
14 |
<?php
|
15 |
// Set current list number
|
9 |
*/
|
10 |
?>
|
11 |
<div class="wrap" style="width: 1010px;">
|
12 |
+
<?php
|
13 |
+
global $wp_version;
|
14 |
+
if ( ( float ) $wp_version >= 4.3 ) { $heading = '1'; } else { $heading = '2'; }
|
15 |
+
?>
|
16 |
+
<h<?php echo $heading; ?>><?php _e( 'YouTube Embed Lists', 'youtube-embed' ); ?></h<?php echo $heading; ?>>
|
17 |
|
18 |
<?php
|
19 |
// Set current list number
|
includes/options-profiles.php
CHANGED
@@ -9,13 +9,16 @@
|
|
9 |
*/
|
10 |
?>
|
11 |
|
12 |
-
<?php $demo_video = '
|
13 |
|
14 |
<div class="wrap">
|
15 |
|
16 |
<div style="width: 1010px;">
|
17 |
-
|
18 |
-
|
|
|
|
|
|
|
19 |
|
20 |
<?php
|
21 |
|
9 |
*/
|
10 |
?>
|
11 |
|
12 |
+
<?php $demo_video = 'ngElkyQ6Rhs'; ?>
|
13 |
|
14 |
<div class="wrap">
|
15 |
|
16 |
<div style="width: 1010px;">
|
17 |
+
<?php
|
18 |
+
global $wp_version;
|
19 |
+
if ( ( float ) $wp_version >= 4.3 ) { $heading = '1'; } else { $heading = '2'; }
|
20 |
+
?>
|
21 |
+
<h<?php echo $heading; ?>><?php _e( 'YouTube Embed Profiles', 'youtube-embed' ); ?></h<?php echo $heading; ?>>
|
22 |
|
23 |
<?php
|
24 |
|
js/mce4-button.min.php
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
-
(function(){
|
2 |
<?php $cookie_name='vye_mce_shortcode';if(isset($_COOKIE[$cookie_name])){$shortcode=$_COOKIE[$cookie_name];}else{$shortcode='youtube';}?>
|
3 |
var shortcode="<?php echo $shortcode; ?>";tinymce.PluginManager.add('mce4_youtube_button',function(editor,url){editor.addButton('mce4_youtube_button',{title:'YouTube Embed',icon:'icon dashicons-video-alt3',onclick:function(){selectText=tinymce.activeEditor.selection.getContent({format:'text'});if(selectText==''){var yeOut='Insert video URL or ID here'}else{var yeOut=selectText}editor.insertContent('['+shortcode+']'+yeOut+'[/'+shortcode+']')}})})})();
|
1 |
+
<?php header('Content-Type: application/javascript'); ?>(function(){
|
2 |
<?php $cookie_name='vye_mce_shortcode';if(isset($_COOKIE[$cookie_name])){$shortcode=$_COOKIE[$cookie_name];}else{$shortcode='youtube';}?>
|
3 |
var shortcode="<?php echo $shortcode; ?>";tinymce.PluginManager.add('mce4_youtube_button',function(editor,url){editor.addButton('mce4_youtube_button',{title:'YouTube Embed',icon:'icon dashicons-video-alt3',onclick:function(){selectText=tinymce.activeEditor.selection.getContent({format:'text'});if(selectText==''){var yeOut='Insert video URL or ID here'}else{var yeOut=selectText}editor.insertContent('['+shortcode+']'+yeOut+'[/'+shortcode+']')}})})})();
|
js/mce4-button.php
CHANGED
@@ -1,3 +1,4 @@
|
|
|
|
1 |
(function() {
|
2 |
<?php
|
3 |
|
@@ -17,7 +18,7 @@ if ( isset( $_COOKIE[ $cookie_name ] ) ) { $shortcode = $_COOKIE[ $cookie_name ]
|
|
17 |
var yeOut = 'Insert video URL or ID here';
|
18 |
} else {
|
19 |
var yeOut = selectText;
|
20 |
-
}
|
21 |
editor.insertContent('[' + shortcode + ']' + yeOut + '[/' + shortcode + ']');
|
22 |
}
|
23 |
});
|
1 |
+
<?php header('Content-Type: application/javascript'); ?>
|
2 |
(function() {
|
3 |
<?php
|
4 |
|
18 |
var yeOut = 'Insert video URL or ID here';
|
19 |
} else {
|
20 |
var yeOut = selectText;
|
21 |
+
}
|
22 |
editor.insertContent('[' + shortcode + ']' + yeOut + '[/' + shortcode + ']');
|
23 |
}
|
24 |
});
|
languages/youtube-embed.mo
CHANGED
Binary file
|
languages/youtube-embed.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Vixy YouTube Embed\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: David Artiss <david.artiss@artiss.co.uk>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: en_GB\n"
|
@@ -17,19 +17,19 @@ msgstr ""
|
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: includes/add-to-admin-bar.php:35 includes/generate-widgets.php:
|
21 |
msgid "YouTube Embed"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: includes/add-to-admin-bar.php:40 includes/admin-config.php:
|
25 |
msgid "Options"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: includes/add-to-admin-bar.php:47 includes/admin-config.php:
|
29 |
msgid "Profiles"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: includes/add-to-admin-bar.php:54 includes/admin-config.php:
|
33 |
msgid "Lists"
|
34 |
msgstr ""
|
35 |
|
@@ -41,61 +41,65 @@ msgstr ""
|
|
41 |
msgid "Support"
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: includes/admin-config.php:
|
|
|
|
|
|
|
|
|
45 |
msgid "About YouTube Embed"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: includes/admin-config.php:
|
49 |
msgid "YouTube"
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: includes/admin-config.php:
|
53 |
msgid "YouTube Embed Options"
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: includes/admin-config.php:
|
57 |
msgid "YouTube Embed Profiles"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: includes/admin-config.php:
|
61 |
msgid "YouTube Embed Lists"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: includes/admin-config.php:
|
65 |
-
#: includes/admin-config.php:
|
66 |
msgid "Help"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: includes/admin-config.php:
|
70 |
msgid ""
|
71 |
"This screen allows you to select non-specific options for the YouTube Embed "
|
72 |
"plugin. For the default embedding settings, please select the <a href="
|
73 |
"\"admin.php?page=profile-options\">Profiles</a> administration option."
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: includes/admin-config.php:
|
77 |
-
#: includes/admin-config.php:
|
78 |
msgid ""
|
79 |
"Remember to click the Save Settings button at the bottom of the screen for "
|
80 |
"new settings to take effect."
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: includes/admin-config.php:191 includes/admin-config.php:232
|
84 |
-
#: includes/admin-config.php:274
|
85 |
-
msgid "For more information:"
|
86 |
-
msgstr ""
|
87 |
-
|
88 |
#: includes/admin-config.php:192 includes/admin-config.php:233
|
89 |
#: includes/admin-config.php:275
|
90 |
-
msgid "
|
91 |
msgstr ""
|
92 |
|
93 |
#: includes/admin-config.php:193 includes/admin-config.php:234
|
94 |
#: includes/admin-config.php:276
|
|
|
|
|
|
|
|
|
|
|
95 |
msgid "YouTube Player Documentation"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: includes/admin-config.php:
|
99 |
msgid ""
|
100 |
"This screen allows you to set the options for the default and additional "
|
101 |
"profiles. If you don't specify a specific parameter when displaying your "
|
@@ -104,31 +108,31 @@ msgid ""
|
|
104 |
"required."
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: includes/admin-config.php:
|
108 |
msgid "EmbedPlus website"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: includes/admin-config.php:
|
112 |
msgid ""
|
113 |
"This screen allows you to create lists of YouTube videos, which may be "
|
114 |
"named. These lists can then be used in preference to a single video ID."
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: includes/admin-config.php:
|
118 |
msgid "Welcome to YouTube Embed"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: includes/admin-config.php:
|
122 |
msgid "Thank you for installing this plugin."
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: includes/admin-config.php:
|
126 |
msgid ""
|
127 |
"These new menu options will allow you to configure your videos to just how "
|
128 |
"you want them and provide links for help and support."
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: includes/admin-config.php:
|
132 |
msgid ""
|
133 |
"Even if you do nothing else, please visit the Profiles option to check your "
|
134 |
"default video values."
|
@@ -165,13 +169,13 @@ msgstr ""
|
|
165 |
msgid "No video/playlist ID has been supplied"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: includes/generate-embed-code.php:
|
169 |
msgid ""
|
170 |
"A video list cannot be viewed within this feed - please view the original "
|
171 |
"content"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: includes/generate-embed-code.php:
|
175 |
msgid "Click here to view the video on YouTube"
|
176 |
msgstr ""
|
177 |
|
@@ -184,924 +188,890 @@ msgstr ""
|
|
184 |
msgid "YouTube Video %s"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: includes/generate-widgets.php:
|
188 |
msgid "Embed YouTube Widget."
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: includes/options-general.php:
|
192 |
msgid "Settings Saved."
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: includes/options-general.php:
|
196 |
msgid "Cache cleared."
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: includes/options-general.php:
|
200 |
msgid ""
|
201 |
"These are the general settings for YouTube Embed. Please select <a href="
|
202 |
"\"admin.php?page=profile-options\">Profiles</a> for default embedding "
|
203 |
"settings."
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: includes/options-general.php:
|
207 |
msgid "Embedding"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: includes/options-general.php:
|
211 |
msgid "Add Metadata"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: includes/options-general.php:
|
215 |
msgid "Allow rich metadata to be added to code."
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: includes/options-general.php:
|
219 |
msgid "Comment Embedding"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: includes/options-general.php:
|
223 |
msgid "Allow YouTube URLs in comments - will display as embedded videos."
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: includes/options-general.php:
|
227 |
-
#: includes/options-general.php:
|
228 |
msgid "Profile to use"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: includes/options-general.php:
|
232 |
msgid "Feed"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: includes/options-general.php:
|
236 |
msgid "Text link"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: includes/options-general.php:
|
240 |
msgid "Thumbnail"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: includes/options-general.php:
|
244 |
msgid "Thumbnail & Text Link"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: includes/options-general.php:
|
248 |
msgid ""
|
249 |
"Videos cannot be embedded in feeds. Select how you wish them to be shown "
|
250 |
"instead"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: includes/options-general.php:
|
254 |
msgid "Thumbnail to use"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: includes/options-general.php:
|
258 |
msgid "Default"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: includes/options-general.php:
|
262 |
msgid "Default (HQ)"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: includes/options-general.php:
|
266 |
msgid "Start"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: includes/options-general.php:
|
270 |
msgid "Middle"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: includes/options-general.php:
|
274 |
msgid "End"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: includes/options-general.php:
|
278 |
msgid "Which thumbnail to use"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: includes/options-general.php:
|
282 |
msgid "Allow shortcodes in widgets"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: includes/options-general.php:
|
286 |
msgid ""
|
287 |
"Allow shortcodes to be used in widgets - this will apply to <strong>all</"
|
288 |
"strong> widgets"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: includes/options-general.php:
|
292 |
msgid "Alternative Shortcodes"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: includes/options-general.php:
|
296 |
msgid ""
|
297 |
"Specify up to 2 alternative shortcodes to compliment the standard "
|
298 |
"<code>youtube</code> shortcode. <strong>NB: These should be specified "
|
299 |
"without the surrounding square brackets.</strong>"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: includes/options-general.php:
|
303 |
msgid "Alternative Shortcode 1"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: includes/options-general.php:
|
307 |
msgid "Alternative Shortcode 2"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: includes/options-general.php:
|
311 |
msgid "Migration"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: includes/options-general.php:
|
315 |
msgid ""
|
316 |
"Switch on compatibility with other embedding plugins. For more details "
|
317 |
"please <a href=\"http://www.artiss.co.uk/youtube-embed-compatibility\">click "
|
318 |
"here</a>."
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: includes/options-general.php:
|
322 |
msgid "Bracket Embedding"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: includes/options-general.php:
|
326 |
msgid ""
|
327 |
"Allow embedding using URLs within brackets. Activating impacts performance"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: includes/options-general.php:
|
331 |
msgid "Alternative Embedding"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: includes/options-general.php:
|
335 |
msgid "Allow all other types of embedding. Activating impacts performance"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: includes/options-general.php:
|
339 |
msgid "For above 2 options"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: includes/options-general.php:
|
343 |
msgid "Admin Options"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: includes/options-general.php:
|
347 |
msgid "Show Editor Button"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: includes/options-general.php:
|
351 |
msgid "Show the YouTube button on the post editor"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: includes/options-general.php:
|
355 |
msgid "Editor Button Shortcode"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: includes/options-general.php:
|
359 |
msgid "Shortcode for editor button to use."
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: includes/options-general.php:
|
363 |
msgid "Add to Admin Bar"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: includes/options-general.php:
|
367 |
msgid "Add link to options screen to Admin Bar"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: includes/options-general.php:
|
371 |
msgid "Menu Screen Access"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: includes/options-general.php:
|
375 |
msgid "Administrator"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: includes/options-general.php:
|
379 |
msgid "Editor"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: includes/options-general.php:
|
383 |
msgid "Author"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: includes/options-general.php:
|
387 |
msgid "Contributor"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: includes/options-general.php:
|
391 |
msgid "Specify the user access required for the menu screens"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: includes/options-general.php:
|
395 |
msgid "Profile & List Sizes"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: includes/options-general.php:
|
399 |
msgid "Number of Profiles"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: includes/options-general.php:
|
403 |
msgid "Maximum number of profiles"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: includes/options-general.php:
|
407 |
msgid "Number of Lists"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: includes/options-general.php:
|
411 |
msgid "Maximum number of lists"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: includes/options-general.php:
|
415 |
msgid "Performance"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: includes/options-general.php:
|
419 |
msgid "Embed Cache"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: includes/options-general.php:
|
423 |
msgid "How many hours to retain embed output. 0 to switch off"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: includes/options-general.php:
|
427 |
msgid "Video Information Cache"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: includes/options-general.php:
|
431 |
msgid ""
|
432 |
"How many hours to retain video information, including it's validity. 0 to "
|
433 |
"switch off"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: includes/options-general.php:
|
437 |
msgid "Transcript Cache"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: includes/options-general.php:
|
441 |
msgid "How many hours to store transcripts for in cache. 0 to switch off"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: includes/options-general.php:
|
445 |
msgid "Comments Cache"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: includes/options-general.php:
|
449 |
msgid "How many minutes to store video comments for in cache. 0 to switch off"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: includes/options-general.php:
|
453 |
msgid "You currently have cache for"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: includes/options-general.php:
|
457 |
msgid "and"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: includes/options-general.php:
|
461 |
msgid "Clear Cache"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: includes/options-general.php:274
|
465 |
-
msgid "Select this option to remove all YouTube Embed cache."
|
466 |
-
msgstr ""
|
467 |
-
|
468 |
#: includes/options-general.php:277
|
469 |
-
msgid "YouTube
|
470 |
-
msgstr ""
|
471 |
-
|
472 |
-
#: includes/options-general.php:279
|
473 |
-
msgid ""
|
474 |
-
"The YouTube API is used to validate video IDs and to determine if it is a "
|
475 |
-
"video or playlist."
|
476 |
-
msgstr ""
|
477 |
-
|
478 |
-
#: includes/options-general.php:283
|
479 |
-
msgid "API State"
|
480 |
-
msgstr ""
|
481 |
-
|
482 |
-
#: includes/options-general.php:285
|
483 |
-
msgid "API should not be used"
|
484 |
-
msgstr ""
|
485 |
-
|
486 |
-
#: includes/options-general.php:286
|
487 |
-
msgid "HTTP API used and errors are reported"
|
488 |
-
msgstr ""
|
489 |
-
|
490 |
-
#: includes/options-general.php:287
|
491 |
-
msgid "HTTPS API used and errors are reported"
|
492 |
-
msgstr ""
|
493 |
-
|
494 |
-
#: includes/options-general.php:288
|
495 |
-
msgid "HTTP API used and no errors are reported"
|
496 |
-
msgstr ""
|
497 |
-
|
498 |
-
#: includes/options-general.php:289
|
499 |
-
msgid "HTTPS API used and no errors are reported"
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: includes/options-general.php:
|
503 |
msgid "Error Reporting"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: includes/options-general.php:
|
507 |
msgid ""
|
508 |
"Playback errors are within the XHTML source code as comments - parameter "
|
509 |
"errors and other types are displayed on the post output."
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: includes/options-general.php:
|
513 |
msgid "Video Playback Error Message"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: includes/options-general.php:
|
517 |
msgid "This is the message that will be shown on the post"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: includes/options-general.php:
|
521 |
msgid "Security"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: includes/options-general.php:
|
525 |
msgid "Privacy-Enhanced Mode"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: includes/options-general.php:
|
529 |
msgid "Cookies should always be stored"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: includes/options-general.php:
|
533 |
msgid "Cookies should never be stored"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: includes/options-general.php:
|
537 |
msgid "Cookies should be stored based on user's Do Not Track setting"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: includes/options-general.php:
|
541 |
msgid "Read more about <a href=\"http://donottrack.us/\">Do Not Track</a>"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: includes/options-general.php:
|
545 |
msgid "Compatibility"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: includes/options-general.php:
|
549 |
msgid "Allow Frame Border on IFRAME"
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: includes/options-general.php:
|
553 |
msgid "FRAMEBORDER is not HTML5 compliant"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: includes/options-general.php:
|
557 |
-
#: includes/options-profiles.php:
|
558 |
msgid "Save Settings"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: includes/options-lists.php:
|
562 |
msgid "All fields must be completed."
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: includes/options-lists.php:
|
566 |
msgid "Errors were found with your video list. See the list below for details."
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: includes/options-lists.php:
|
570 |
msgid "List"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: includes/options-lists.php:
|
574 |
msgid "Change list"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: includes/options-lists.php:
|
578 |
#, php-format
|
579 |
msgid "These are the options for list %s."
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: includes/options-lists.php:
|
583 |
msgid ""
|
584 |
"Update the name, if required, and specify a list of YouTube video IDs. Use "
|
585 |
"the drop-down on the right hand side to swap between lists."
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: includes/options-lists.php:
|
589 |
msgid "List name"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: includes/options-lists.php:
|
593 |
msgid "The name you wish to give this list"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: includes/options-lists.php:
|
597 |
msgid "Video IDs (one per line)"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: includes/options-lists.php:
|
601 |
msgid "Video ID"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: includes/options-lists.php:
|
605 |
msgid "Video Title"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: includes/options-lists.php:
|
609 |
msgid "Status"
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: includes/options-lists.php:
|
613 |
msgid "This is a playlist"
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: includes/options-lists.php:
|
617 |
msgid "Invalid video ID"
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: includes/options-lists.php:
|
621 |
msgid "YouTube API error"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: includes/options-lists.php:
|
625 |
msgid "Valid video"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: includes/options-lists.php:
|
629 |
msgid "The video ID is valid"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: includes/options-lists.php:
|
633 |
msgid "The video ID is invalid"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: includes/options-profiles.php:
|
637 |
msgid " Profile Saved."
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: includes/options-profiles.php:
|
641 |
msgid "Change profile"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: includes/options-profiles.php:
|
645 |
msgid "These are the options for the default profile."
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: includes/options-profiles.php:
|
649 |
#, php-format
|
650 |
msgid "These are the options for profile %s."
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: includes/options-profiles.php:
|
654 |
msgid "Use the drop-down on the right hand side to swap between profiles."
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: includes/options-profiles.php:
|
658 |
msgid "Profile name"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: includes/options-profiles.php:
|
662 |
msgid "The name you wish to give this profile"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: includes/options-profiles.php:
|
666 |
msgid "Video Embed Type"
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: includes/options-profiles.php:
|
670 |
msgid "The type of player to use for videos."
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: includes/options-profiles.php:
|
674 |
-
#: includes/options-profiles.php:
|
675 |
msgid "IFRAME"
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: includes/options-profiles.php:
|
679 |
msgid ""
|
680 |
"Uses AS3 Flash player, if Flash is available. Alternatively, uses HTML5 "
|
681 |
"player. This is the current YouTube default."
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: includes/options-profiles.php:
|
685 |
-
#: includes/options-profiles.php:
|
686 |
msgid "OBJECT"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: includes/options-profiles.php:
|
690 |
msgid "Use the AS3 Flash player."
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: includes/options-profiles.php:
|
694 |
msgid "Chromeless"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: includes/options-profiles.php:
|
698 |
msgid ""
|
699 |
"Use the <a href=\"http://www.artiss.co.uk/youtube-embed-help#ye-chromeless"
|
700 |
"\">Chromeless</a> version of the AS3 Flash Player."
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: includes/options-profiles.php:
|
704 |
#: includes/options-widgets.php:95
|
705 |
msgid "EmbedPlus"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: includes/options-profiles.php:
|
709 |
msgid ""
|
710 |
"Use <a href=\"http://www.artiss.co.uk/youtube-embed-help#ye-embedplus"
|
711 |
"\">EmbedPlus</a>, if Flash is available."
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: includes/options-profiles.php:
|
715 |
msgid "Playlist Embed Type"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: includes/options-profiles.php:
|
719 |
msgid "The type of player to use when showing playlists."
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: includes/options-profiles.php:
|
723 |
msgid "Template"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: includes/options-profiles.php:
|
727 |
msgid ""
|
728 |
"Wrapper for video output. Must include <code>%video%</code> tag to show "
|
729 |
"video position"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: includes/options-profiles.php:
|
733 |
msgid "Style"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: includes/options-profiles.php:
|
737 |
msgid "CSS elements to apply to video"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: includes/options-profiles.php:
|
741 |
msgid "Video Quality"
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: includes/options-profiles.php:
|
745 |
msgid "Not set"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: includes/options-profiles.php:
|
749 |
msgid "Specify the required resolution (if available)."
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: includes/options-profiles.php:
|
753 |
msgid "Audio Only"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: includes/options-profiles.php:
|
757 |
msgid "Only show the toolbar for audio only playback"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: includes/options-profiles.php:
|
761 |
msgid "Autoplay"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: includes/options-profiles.php:
|
765 |
msgid "The video will start playing when the player loads"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: includes/options-profiles.php:
|
769 |
msgid "Download Link"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: includes/options-profiles.php:
|
773 |
msgid "Show Download Link"
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: includes/options-profiles.php:
|
777 |
#, php-format
|
778 |
msgid "Show a link to %s under the video"
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: includes/options-profiles.php:
|
782 |
msgid "Download Text"
|
783 |
msgstr ""
|
784 |
|
785 |
-
#: includes/options-profiles.php:
|
786 |
msgid "Text or HTML to display to prompt download"
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: includes/options-profiles.php:
|
790 |
msgid "Download Style"
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: includes/options-profiles.php:
|
794 |
msgid "CSS elements to apply to video download link"
|
795 |
msgstr ""
|
796 |
|
797 |
-
#: includes/options-profiles.php:
|
798 |
msgid "Video Size"
|
799 |
msgstr ""
|
800 |
|
801 |
-
#: includes/options-profiles.php:
|
802 |
msgid "Video size"
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: includes/options-profiles.php:
|
806 |
msgid "The width x height of the video, in pixels"
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: includes/options-profiles.php:
|
810 |
msgid "Default Sizes"
|
811 |
msgstr ""
|
812 |
|
813 |
-
#: includes/options-profiles.php:
|
814 |
msgid "Use above sizes"
|
815 |
msgstr ""
|
816 |
|
817 |
-
#: includes/options-profiles.php:
|
818 |
msgid "Select one of these default sizes to override the above video sizes"
|
819 |
msgstr ""
|
820 |
|
821 |
-
#: includes/options-profiles.php:
|
822 |
msgid "Dynamically Resize"
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: includes/options-profiles.php:
|
826 |
msgid "Show full width and resize with the browser"
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: includes/options-profiles.php:
|
830 |
msgid "Set Maximum Size"
|
831 |
msgstr ""
|
832 |
|
833 |
-
#: includes/options-profiles.php:
|
834 |
msgid "Use above width to define maximum size"
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: includes/options-profiles.php:
|
838 |
msgid "Options Not Supported by EmbedPlus"
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: includes/options-profiles.php:
|
842 |
msgid "Auto hide"
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: includes/options-profiles.php:
|
846 |
msgid "Controls & progress bar remain visible"
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: includes/options-profiles.php:
|
850 |
msgid "Controls & progress bar fade out"
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: includes/options-profiles.php:
|
854 |
msgid "Progress bar fades"
|
855 |
msgstr ""
|
856 |
|
857 |
-
#: includes/options-profiles.php:
|
858 |
msgid "Video controls will automatically hide after a video begins playing"
|
859 |
msgstr ""
|
860 |
|
861 |
-
#: includes/options-profiles.php:
|
862 |
msgid "Controls"
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: includes/options-profiles.php:
|
866 |
msgid "Controls do not display & Flash player loads immediately"
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: includes/options-profiles.php:
|
870 |
msgid "Controls display & Flash player loads immediately"
|
871 |
msgstr ""
|
872 |
|
873 |
-
#: includes/options-profiles.php:
|
874 |
msgid "Controls display & Flash player loads once video starts"
|
875 |
msgstr ""
|
876 |
|
877 |
-
#: includes/options-profiles.php:
|
878 |
msgid ""
|
879 |
"Whether the video player controls will display. For AS3 player it also "
|
880 |
"defines when the Flash player will load"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: includes/options-profiles.php:
|
884 |
msgid ""
|
885 |
"Use SSL? <a href=\"http://www.google.com/support/youtube/bin/answer.py?"
|
886 |
"answer=171780&expand=UseHTTPS#HTTPS\">Read more</a>"
|
887 |
msgstr ""
|
888 |
|
889 |
-
#: includes/options-profiles.php:
|
890 |
msgid "Loop Video"
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: includes/options-profiles.php:
|
894 |
msgid ""
|
895 |
"Play the initial video again and again. In the case of a playlist, this will "
|
896 |
"play the entire playlist and then start again at the first video"
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: includes/options-profiles.php:
|
900 |
msgid "Information"
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: includes/options-profiles.php:
|
904 |
msgid ""
|
905 |
"Display the video title and uploader before the video starts. If displaying "
|
906 |
"a playlist this will show video thumbnails"
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: includes/options-profiles.php:
|
910 |
msgid "Related Videos"
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: includes/options-profiles.php:
|
914 |
msgid ""
|
915 |
"Load related videos once playback starts. Also toggles the search option."
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: includes/options-profiles.php:
|
919 |
msgid "Theme"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: includes/options-profiles.php:
|
923 |
msgid "Dark"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: includes/options-profiles.php:
|
927 |
msgid "Light"
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: includes/options-profiles.php:
|
931 |
msgid "Display player controls within a dark or light control bar"
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: includes/options-profiles.php:
|
935 |
msgid "Progress Bar Color"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: includes/options-profiles.php:
|
939 |
msgid "Red"
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: includes/options-profiles.php:
|
943 |
msgid "White (desaturated)"
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: includes/options-profiles.php:
|
947 |
msgid ""
|
948 |
"The color that will be used in the player's video progress bar to highlight "
|
949 |
"the amount of the video that's already been seen"
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: includes/options-profiles.php:
|
953 |
msgid "Modest Branding"
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: includes/options-profiles.php:
|
957 |
msgid "Reduce branding on video."
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: includes/options-profiles.php:
|
961 |
msgid "Options for AS3 Player"
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: includes/options-profiles.php:
|
965 |
msgid ""
|
966 |
"The following options are not supported if using EmbedPlus or if the IFRAME "
|
967 |
"player uses HTML5."
|
968 |
msgstr ""
|
969 |
|
970 |
-
#: includes/options-profiles.php:
|
971 |
msgid "Annotations"
|
972 |
msgstr ""
|
973 |
|
974 |
-
#: includes/options-profiles.php:
|
975 |
msgid "Video annotations are shown by default"
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: includes/options-profiles.php:
|
979 |
msgid "Closed Captions"
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: includes/options-profiles.php:
|
983 |
msgid ""
|
984 |
"Show closed captions (subtitles) by default, even if the user has turned "
|
985 |
"captions off"
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: includes/options-profiles.php:
|
989 |
msgid "Disable Keyboard"
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: includes/options-profiles.php:
|
993 |
msgid "Disable the player keyboard controls"
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: includes/options-profiles.php:
|
997 |
msgid "Fullscreen"
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: includes/options-profiles.php:
|
1001 |
msgid "A button will allow the viewer to watch the video fullscreen"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: includes/options-profiles.php:
|
1005 |
msgid "Link to YouTube"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: includes/options-profiles.php:
|
1009 |
msgid "Video links back to YouTube when clicked"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: includes/options-profiles.php:
|
1013 |
msgid "Options Not Supported by HTML5 Player"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: includes/options-profiles.php:
|
1017 |
msgid "Window Mode"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#: includes/options-profiles.php:
|
1021 |
msgid "Opaque"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#: includes/options-profiles.php:
|
1025 |
msgid "Transparent"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
-
#: includes/options-profiles.php:
|
1029 |
msgid "Window"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
-
#: includes/options-profiles.php:
|
1033 |
msgid ""
|
1034 |
"Sets the Window Mode property of the Flash movie for transparency, layering, "
|
1035 |
"and positioning in the browser. <a href=\"http://www.communitymx.com/content/"
|
1036 |
"article.cfm?cid=e5141\">Learn more</a>."
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: includes/options-profiles.php:
|
1040 |
msgid "Options Only Supported By EmbedPlus"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: includes/options-profiles.php:
|
1044 |
msgid "Learn more about EmbedPlus"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: includes/options-profiles.php:
|
1048 |
msgid "Fallback Embed Type"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: includes/options-profiles.php:
|
1052 |
msgid ""
|
1053 |
"The type of player to use if Flash is not available and EmbedPlus cannot be "
|
1054 |
"used."
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: includes/options-profiles.php:
|
1058 |
msgid "Play HD"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: includes/options-profiles.php:
|
1062 |
msgid "Play the video in HD if possible"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: includes/options-profiles.php:
|
1066 |
msgid "Real-time Reactions"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: includes/options-profiles.php:
|
1070 |
msgid "Show the Real-time Reactions button"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#: includes/options-profiles.php:
|
1074 |
msgid "Sweet Spots"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: includes/options-profiles.php:
|
1078 |
msgid "Find sweet spots for the next and previous buttons"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: includes/options-profiles.php:
|
1082 |
msgid "YouTube Video Sample"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
-
#: includes/options-profiles.php:
|
1086 |
msgid ""
|
1087 |
"The video below uses the above, saved profile settings. Use the drop-down "
|
1088 |
"below to change which parameters the video uses - press the Change Video "
|
1089 |
"button to update it."
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: includes/options-profiles.php:
|
1093 |
msgid "Standard"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: includes/options-profiles.php:
|
1097 |
msgid "3D"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: includes/options-profiles.php:
|
1101 |
msgid "Playlist"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: includes/options-profiles.php:
|
1105 |
msgid "Change video"
|
1106 |
msgstr ""
|
1107 |
|
@@ -1125,7 +1095,7 @@ msgstr ""
|
|
1125 |
msgid "User"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#: includes/options-widgets.php:41 includes/shared-functions.php:
|
1129 |
msgid "Profile"
|
1130 |
msgstr ""
|
1131 |
|
@@ -1184,8 +1154,3 @@ msgstr ""
|
|
1184 |
#: includes/set-defaults.php:95
|
1185 |
msgid "The video cannot be shown at the moment. Please try again later."
|
1186 |
msgstr ""
|
1187 |
-
|
1188 |
-
#: includes/shared-functions.php:240
|
1189 |
-
#, php-format
|
1190 |
-
msgid "An error occurred accessing the YouTube API for video ID %s - %s"
|
1191 |
-
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Vixy YouTube Embed\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-09-07 21:08-0000\n"
|
6 |
+
"PO-Revision-Date: 2015-09-07 21:08-0000\n"
|
7 |
"Last-Translator: David Artiss <david.artiss@artiss.co.uk>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: en_GB\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: includes/add-to-admin-bar.php:35 includes/generate-widgets.php:25
|
21 |
msgid "YouTube Embed"
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: includes/add-to-admin-bar.php:40 includes/admin-config.php:92
|
25 |
msgid "Options"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: includes/add-to-admin-bar.php:47 includes/admin-config.php:100
|
29 |
msgid "Profiles"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: includes/add-to-admin-bar.php:54 includes/admin-config.php:108
|
33 |
msgid "Lists"
|
34 |
msgstr ""
|
35 |
|
41 |
msgid "Support"
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: includes/admin-config.php:55
|
45 |
+
msgid "Donate"
|
46 |
+
msgstr ""
|
47 |
+
|
48 |
+
#: includes/admin-config.php:86
|
49 |
msgid "About YouTube Embed"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: includes/admin-config.php:86
|
53 |
msgid "YouTube"
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: includes/admin-config.php:92 includes/options-general.php:16
|
57 |
msgid "YouTube Embed Options"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: includes/admin-config.php:100 includes/options-profiles.php:21
|
61 |
msgid "YouTube Embed Profiles"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: includes/admin-config.php:108 includes/options-lists.php:16
|
65 |
msgid "YouTube Embed Lists"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: includes/admin-config.php:175 includes/admin-config.php:216
|
69 |
+
#: includes/admin-config.php:258
|
70 |
msgid "Help"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: includes/admin-config.php:190
|
74 |
msgid ""
|
75 |
"This screen allows you to select non-specific options for the YouTube Embed "
|
76 |
"plugin. For the default embedding settings, please select the <a href="
|
77 |
"\"admin.php?page=profile-options\">Profiles</a> administration option."
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: includes/admin-config.php:191 includes/admin-config.php:232
|
81 |
+
#: includes/admin-config.php:274
|
82 |
msgid ""
|
83 |
"Remember to click the Save Settings button at the bottom of the screen for "
|
84 |
"new settings to take effect."
|
85 |
msgstr ""
|
86 |
|
|
|
|
|
|
|
|
|
|
|
87 |
#: includes/admin-config.php:192 includes/admin-config.php:233
|
88 |
#: includes/admin-config.php:275
|
89 |
+
msgid "For more information:"
|
90 |
msgstr ""
|
91 |
|
92 |
#: includes/admin-config.php:193 includes/admin-config.php:234
|
93 |
#: includes/admin-config.php:276
|
94 |
+
msgid "YouTube Embed Plugin Documentation"
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: includes/admin-config.php:194 includes/admin-config.php:235
|
98 |
+
#: includes/admin-config.php:277
|
99 |
msgid "YouTube Player Documentation"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: includes/admin-config.php:231
|
103 |
msgid ""
|
104 |
"This screen allows you to set the options for the default and additional "
|
105 |
"profiles. If you don't specify a specific parameter when displaying your "
|
108 |
"required."
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: includes/admin-config.php:236
|
112 |
msgid "EmbedPlus website"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: includes/admin-config.php:273
|
116 |
msgid ""
|
117 |
"This screen allows you to create lists of YouTube videos, which may be "
|
118 |
"named. These lists can then be used in preference to a single video ID."
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: includes/admin-config.php:333
|
122 |
msgid "Welcome to YouTube Embed"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: includes/admin-config.php:334
|
126 |
msgid "Thank you for installing this plugin."
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: includes/admin-config.php:335
|
130 |
msgid ""
|
131 |
"These new menu options will allow you to configure your videos to just how "
|
132 |
"you want them and provide links for help and support."
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: includes/admin-config.php:336
|
136 |
msgid ""
|
137 |
"Even if you do nothing else, please visit the Profiles option to check your "
|
138 |
"default video values."
|
169 |
msgid "No video/playlist ID has been supplied"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: includes/generate-embed-code.php:194
|
173 |
msgid ""
|
174 |
"A video list cannot be viewed within this feed - please view the original "
|
175 |
"content"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: includes/generate-embed-code.php:198
|
179 |
msgid "Click here to view the video on YouTube"
|
180 |
msgstr ""
|
181 |
|
188 |
msgid "YouTube Video %s"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: includes/generate-widgets.php:26
|
192 |
msgid "Embed YouTube Widget."
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: includes/options-general.php:62 includes/options-lists.php:27
|
196 |
msgid "Settings Saved."
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: includes/options-general.php:86
|
200 |
msgid "Cache cleared."
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: includes/options-general.php:100
|
204 |
msgid ""
|
205 |
"These are the general settings for YouTube Embed. Please select <a href="
|
206 |
"\"admin.php?page=profile-options\">Profiles</a> for default embedding "
|
207 |
"settings."
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: includes/options-general.php:104
|
211 |
msgid "Embedding"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: includes/options-general.php:108
|
215 |
msgid "Add Metadata"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: includes/options-general.php:109
|
219 |
msgid "Allow rich metadata to be added to code."
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: includes/options-general.php:113
|
223 |
msgid "Comment Embedding"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: includes/options-general.php:114
|
227 |
msgid "Allow YouTube URLs in comments - will display as embedded videos."
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: includes/options-general.php:118 includes/options-general.php:159
|
231 |
+
#: includes/options-general.php:171 includes/options-general.php:192
|
232 |
msgid "Profile to use"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: includes/options-general.php:125
|
236 |
msgid "Feed"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: includes/options-general.php:127
|
240 |
msgid "Text link"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: includes/options-general.php:128
|
244 |
msgid "Thumbnail"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: includes/options-general.php:129
|
248 |
msgid "Thumbnail & Text Link"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: includes/options-general.php:130
|
252 |
msgid ""
|
253 |
"Videos cannot be embedded in feeds. Select how you wish them to be shown "
|
254 |
"instead"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: includes/options-general.php:134
|
258 |
msgid "Thumbnail to use"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: includes/options-general.php:136 includes/shared-functions.php:422
|
262 |
msgid "Default"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: includes/options-general.php:137
|
266 |
msgid "Default (HQ)"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: includes/options-general.php:138
|
270 |
msgid "Start"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: includes/options-general.php:139
|
274 |
msgid "Middle"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: includes/options-general.php:140
|
278 |
msgid "End"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: includes/options-general.php:141
|
282 |
msgid "Which thumbnail to use"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: includes/options-general.php:145
|
286 |
msgid "Allow shortcodes in widgets"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: includes/options-general.php:146
|
290 |
msgid ""
|
291 |
"Allow shortcodes to be used in widgets - this will apply to <strong>all</"
|
292 |
"strong> widgets"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: includes/options-general.php:150
|
296 |
msgid "Alternative Shortcodes"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: includes/options-general.php:150
|
300 |
msgid ""
|
301 |
"Specify up to 2 alternative shortcodes to compliment the standard "
|
302 |
"<code>youtube</code> shortcode. <strong>NB: These should be specified "
|
303 |
"without the surrounding square brackets.</strong>"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: includes/options-general.php:154
|
307 |
msgid "Alternative Shortcode 1"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: includes/options-general.php:166
|
311 |
msgid "Alternative Shortcode 2"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: includes/options-general.php:178
|
315 |
msgid "Migration"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: includes/options-general.php:178
|
319 |
msgid ""
|
320 |
"Switch on compatibility with other embedding plugins. For more details "
|
321 |
"please <a href=\"http://www.artiss.co.uk/youtube-embed-compatibility\">click "
|
322 |
"here</a>."
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: includes/options-general.php:182
|
326 |
msgid "Bracket Embedding"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: includes/options-general.php:183
|
330 |
msgid ""
|
331 |
"Allow embedding using URLs within brackets. Activating impacts performance"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: includes/options-general.php:187
|
335 |
msgid "Alternative Embedding"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: includes/options-general.php:188
|
339 |
msgid "Allow all other types of embedding. Activating impacts performance"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: includes/options-general.php:195
|
343 |
msgid "For above 2 options"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: includes/options-general.php:199
|
347 |
msgid "Admin Options"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: includes/options-general.php:203
|
351 |
msgid "Show Editor Button"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: includes/options-general.php:204
|
355 |
msgid "Show the YouTube button on the post editor"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: includes/options-general.php:208
|
359 |
msgid "Editor Button Shortcode"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: includes/options-general.php:209
|
363 |
msgid "Shortcode for editor button to use."
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: includes/options-general.php:213
|
367 |
msgid "Add to Admin Bar"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: includes/options-general.php:214
|
371 |
msgid "Add link to options screen to Admin Bar"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: includes/options-general.php:218
|
375 |
msgid "Menu Screen Access"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: includes/options-general.php:220
|
379 |
msgid "Administrator"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: includes/options-general.php:221
|
383 |
msgid "Editor"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: includes/options-general.php:222
|
387 |
msgid "Author"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: includes/options-general.php:223
|
391 |
msgid "Contributor"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: includes/options-general.php:224
|
395 |
msgid "Specify the user access required for the menu screens"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: includes/options-general.php:228
|
399 |
msgid "Profile & List Sizes"
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: includes/options-general.php:232
|
403 |
msgid "Number of Profiles"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: includes/options-general.php:233
|
407 |
msgid "Maximum number of profiles"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: includes/options-general.php:237
|
411 |
msgid "Number of Lists"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: includes/options-general.php:238
|
415 |
msgid "Maximum number of lists"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: includes/options-general.php:242
|
419 |
msgid "Performance"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: includes/options-general.php:246
|
423 |
msgid "Embed Cache"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: includes/options-general.php:247
|
427 |
msgid "How many hours to retain embed output. 0 to switch off"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: includes/options-general.php:251
|
431 |
msgid "Video Information Cache"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: includes/options-general.php:252
|
435 |
msgid ""
|
436 |
"How many hours to retain video information, including it's validity. 0 to "
|
437 |
"switch off"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: includes/options-general.php:256
|
441 |
msgid "Transcript Cache"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: includes/options-general.php:257
|
445 |
msgid "How many hours to store transcripts for in cache. 0 to switch off"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: includes/options-general.php:261
|
449 |
msgid "Comments Cache"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: includes/options-general.php:262
|
453 |
msgid "How many minutes to store video comments for in cache. 0 to switch off"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: includes/options-general.php:272
|
457 |
msgid "You currently have cache for"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: includes/options-general.php:272
|
461 |
msgid "and"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: includes/options-general.php:276
|
465 |
msgid "Clear Cache"
|
466 |
msgstr ""
|
467 |
|
|
|
|
|
|
|
|
|
468 |
#: includes/options-general.php:277
|
469 |
+
msgid "Select this option to remove all YouTube Embed cache."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: includes/options-general.php:280
|
473 |
msgid "Error Reporting"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: includes/options-general.php:282
|
477 |
msgid ""
|
478 |
"Playback errors are within the XHTML source code as comments - parameter "
|
479 |
"errors and other types are displayed on the post output."
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: includes/options-general.php:285
|
483 |
msgid "Video Playback Error Message"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: includes/options-general.php:286
|
487 |
msgid "This is the message that will be shown on the post"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: includes/options-general.php:289
|
491 |
msgid "Security"
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: includes/options-general.php:294
|
495 |
msgid "Privacy-Enhanced Mode"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: includes/options-general.php:296
|
499 |
msgid "Cookies should always be stored"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: includes/options-general.php:297
|
503 |
msgid "Cookies should never be stored"
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: includes/options-general.php:298
|
507 |
msgid "Cookies should be stored based on user's Do Not Track setting"
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: includes/options-general.php:299
|
511 |
msgid "Read more about <a href=\"http://donottrack.us/\">Do Not Track</a>"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: includes/options-general.php:302
|
515 |
msgid "Compatibility"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: includes/options-general.php:305
|
519 |
msgid "Allow Frame Border on IFRAME"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: includes/options-general.php:306
|
523 |
msgid "FRAMEBORDER is not HTML5 compliant"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: includes/options-general.php:311 includes/options-lists.php:120
|
527 |
+
#: includes/options-profiles.php:383
|
528 |
msgid "Save Settings"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: includes/options-lists.php:32
|
532 |
msgid "All fields must be completed."
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: includes/options-lists.php:54
|
536 |
msgid "Errors were found with your video list. See the list below for details."
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: includes/options-lists.php:89
|
540 |
msgid "List"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: includes/options-lists.php:99
|
544 |
msgid "Change list"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: includes/options-lists.php:102
|
548 |
#, php-format
|
549 |
msgid "These are the options for list %s."
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: includes/options-lists.php:102
|
553 |
msgid ""
|
554 |
"Update the name, if required, and specify a list of YouTube video IDs. Use "
|
555 |
"the drop-down on the right hand side to swap between lists."
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: includes/options-lists.php:107
|
559 |
msgid "List name"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: includes/options-lists.php:109
|
563 |
msgid "The name you wish to give this list"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: includes/options-lists.php:113
|
567 |
msgid "Video IDs (one per line)"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: includes/options-lists.php:131 includes/options-widgets.php:19
|
571 |
msgid "Video ID"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: includes/options-lists.php:131
|
575 |
msgid "Video Title"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: includes/options-lists.php:131
|
579 |
msgid "Status"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: includes/options-lists.php:147
|
583 |
msgid "This is a playlist"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: includes/options-lists.php:151
|
587 |
msgid "Invalid video ID"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: includes/options-lists.php:155
|
591 |
msgid "YouTube API error"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: includes/options-lists.php:158
|
595 |
msgid "Valid video"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: includes/options-lists.php:176
|
599 |
msgid "The video ID is valid"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: includes/options-lists.php:179
|
603 |
msgid "The video ID is invalid"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: includes/options-profiles.php:98
|
607 |
msgid " Profile Saved."
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: includes/options-profiles.php:119
|
611 |
msgid "Change profile"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: includes/options-profiles.php:124
|
615 |
msgid "These are the options for the default profile."
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: includes/options-profiles.php:126
|
619 |
#, php-format
|
620 |
msgid "These are the options for profile %s."
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: includes/options-profiles.php:128
|
624 |
msgid "Use the drop-down on the right hand side to swap between profiles."
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: includes/options-profiles.php:134
|
628 |
msgid "Profile name"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: includes/options-profiles.php:136
|
632 |
msgid "The name you wish to give this profile"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: includes/options-profiles.php:140
|
636 |
msgid "Video Embed Type"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: includes/options-profiles.php:141
|
640 |
msgid "The type of player to use for videos."
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: includes/options-profiles.php:142 includes/options-profiles.php:152
|
644 |
+
#: includes/options-profiles.php:361 includes/options-widgets.php:89
|
645 |
msgid "IFRAME"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: includes/options-profiles.php:142
|
649 |
msgid ""
|
650 |
"Uses AS3 Flash player, if Flash is available. Alternatively, uses HTML5 "
|
651 |
"player. This is the current YouTube default."
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: includes/options-profiles.php:143 includes/options-profiles.php:153
|
655 |
+
#: includes/options-profiles.php:362 includes/options-widgets.php:91
|
656 |
msgid "OBJECT"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: includes/options-profiles.php:143
|
660 |
msgid "Use the AS3 Flash player."
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: includes/options-profiles.php:144 includes/options-widgets.php:93
|
664 |
msgid "Chromeless"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: includes/options-profiles.php:144
|
668 |
msgid ""
|
669 |
"Use the <a href=\"http://www.artiss.co.uk/youtube-embed-help#ye-chromeless"
|
670 |
"\">Chromeless</a> version of the AS3 Flash Player."
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: includes/options-profiles.php:145 includes/options-profiles.php:395
|
674 |
#: includes/options-widgets.php:95
|
675 |
msgid "EmbedPlus"
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: includes/options-profiles.php:145
|
679 |
msgid ""
|
680 |
"Use <a href=\"http://www.artiss.co.uk/youtube-embed-help#ye-embedplus"
|
681 |
"\">EmbedPlus</a>, if Flash is available."
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: includes/options-profiles.php:150
|
685 |
msgid "Playlist Embed Type"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: includes/options-profiles.php:151
|
689 |
msgid "The type of player to use when showing playlists."
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: includes/options-profiles.php:160 includes/options-widgets.php:49
|
693 |
msgid "Template"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: includes/options-profiles.php:161
|
697 |
msgid ""
|
698 |
"Wrapper for video output. Must include <code>%video%</code> tag to show "
|
699 |
"video position"
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: includes/options-profiles.php:165 includes/options-widgets.php:55
|
703 |
msgid "Style"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: includes/options-profiles.php:166
|
707 |
msgid "CSS elements to apply to video"
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: includes/options-profiles.php:170
|
711 |
msgid "Video Quality"
|
712 |
msgstr ""
|
713 |
|
714 |
+
#: includes/options-profiles.php:172
|
715 |
msgid "Not set"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: includes/options-profiles.php:178
|
719 |
msgid "Specify the required resolution (if available)."
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: includes/options-profiles.php:182
|
723 |
msgid "Audio Only"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: includes/options-profiles.php:183
|
727 |
msgid "Only show the toolbar for audio only playback"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: includes/options-profiles.php:187 includes/options-widgets.php:101
|
731 |
msgid "Autoplay"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: includes/options-profiles.php:188
|
735 |
msgid "The video will start playing when the player loads"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: includes/options-profiles.php:193
|
739 |
msgid "Download Link"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: includes/options-profiles.php:197
|
743 |
msgid "Show Download Link"
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: includes/options-profiles.php:198
|
747 |
#, php-format
|
748 |
msgid "Show a link to %s under the video"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: includes/options-profiles.php:202
|
752 |
msgid "Download Text"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: includes/options-profiles.php:203
|
756 |
msgid "Text or HTML to display to prompt download"
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: includes/options-profiles.php:207
|
760 |
msgid "Download Style"
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: includes/options-profiles.php:208
|
764 |
msgid "CSS elements to apply to video download link"
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: includes/options-profiles.php:211
|
768 |
msgid "Video Size"
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: includes/options-profiles.php:215
|
772 |
msgid "Video size"
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: includes/options-profiles.php:216
|
776 |
msgid "The width x height of the video, in pixels"
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: includes/options-profiles.php:220
|
780 |
msgid "Default Sizes"
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: includes/options-profiles.php:222
|
784 |
msgid "Use above sizes"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: includes/options-profiles.php:228
|
788 |
msgid "Select one of these default sizes to override the above video sizes"
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: includes/options-profiles.php:232 includes/options-widgets.php:73
|
792 |
msgid "Dynamically Resize"
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: includes/options-profiles.php:233
|
796 |
msgid "Show full width and resize with the browser"
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: includes/options-profiles.php:237
|
800 |
msgid "Set Maximum Size"
|
801 |
msgstr ""
|
802 |
|
803 |
+
#: includes/options-profiles.php:238
|
804 |
msgid "Use above width to define maximum size"
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: includes/options-profiles.php:243
|
808 |
msgid "Options Not Supported by EmbedPlus"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: includes/options-profiles.php:248
|
812 |
msgid "Auto hide"
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: includes/options-profiles.php:250
|
816 |
msgid "Controls & progress bar remain visible"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: includes/options-profiles.php:251
|
820 |
msgid "Controls & progress bar fade out"
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: includes/options-profiles.php:252
|
824 |
msgid "Progress bar fades"
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: includes/options-profiles.php:253
|
828 |
msgid "Video controls will automatically hide after a video begins playing"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: includes/options-profiles.php:257
|
832 |
msgid "Controls"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: includes/options-profiles.php:259
|
836 |
msgid "Controls do not display & Flash player loads immediately"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: includes/options-profiles.php:260
|
840 |
msgid "Controls display & Flash player loads immediately"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: includes/options-profiles.php:261
|
844 |
msgid "Controls display & Flash player loads once video starts"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: includes/options-profiles.php:262
|
848 |
msgid ""
|
849 |
"Whether the video player controls will display. For AS3 player it also "
|
850 |
"defines when the Flash player will load"
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: includes/options-profiles.php:267
|
854 |
msgid ""
|
855 |
"Use SSL? <a href=\"http://www.google.com/support/youtube/bin/answer.py?"
|
856 |
"answer=171780&expand=UseHTTPS#HTTPS\">Read more</a>"
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: includes/options-profiles.php:271 includes/options-widgets.php:147
|
860 |
msgid "Loop Video"
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: includes/options-profiles.php:272
|
864 |
msgid ""
|
865 |
"Play the initial video again and again. In the case of a playlist, this will "
|
866 |
"play the entire playlist and then start again at the first video"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: includes/options-profiles.php:276
|
870 |
msgid "Information"
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: includes/options-profiles.php:277
|
874 |
msgid ""
|
875 |
"Display the video title and uploader before the video starts. If displaying "
|
876 |
"a playlist this will show video thumbnails"
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: includes/options-profiles.php:281
|
880 |
msgid "Related Videos"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: includes/options-profiles.php:282
|
884 |
msgid ""
|
885 |
"Load related videos once playback starts. Also toggles the search option."
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: includes/options-profiles.php:286
|
889 |
msgid "Theme"
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: includes/options-profiles.php:288
|
893 |
msgid "Dark"
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: includes/options-profiles.php:289
|
897 |
msgid "Light"
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: includes/options-profiles.php:290
|
901 |
msgid "Display player controls within a dark or light control bar"
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: includes/options-profiles.php:294
|
905 |
msgid "Progress Bar Color"
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: includes/options-profiles.php:296
|
909 |
msgid "Red"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: includes/options-profiles.php:297
|
913 |
msgid "White (desaturated)"
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: includes/options-profiles.php:298
|
917 |
msgid ""
|
918 |
"The color that will be used in the player's video progress bar to highlight "
|
919 |
"the amount of the video that's already been seen"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: includes/options-profiles.php:302
|
923 |
msgid "Modest Branding"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: includes/options-profiles.php:303
|
927 |
msgid "Reduce branding on video."
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: includes/options-profiles.php:308
|
931 |
msgid "Options for AS3 Player"
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: includes/options-profiles.php:309
|
935 |
msgid ""
|
936 |
"The following options are not supported if using EmbedPlus or if the IFRAME "
|
937 |
"player uses HTML5."
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: includes/options-profiles.php:313
|
941 |
msgid "Annotations"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: includes/options-profiles.php:314
|
945 |
msgid "Video annotations are shown by default"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: includes/options-profiles.php:318
|
949 |
msgid "Closed Captions"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: includes/options-profiles.php:319
|
953 |
msgid ""
|
954 |
"Show closed captions (subtitles) by default, even if the user has turned "
|
955 |
"captions off"
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: includes/options-profiles.php:323
|
959 |
msgid "Disable Keyboard"
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: includes/options-profiles.php:324
|
963 |
msgid "Disable the player keyboard controls"
|
964 |
msgstr ""
|
965 |
|
966 |
+
#: includes/options-profiles.php:328
|
967 |
msgid "Fullscreen"
|
968 |
msgstr ""
|
969 |
|
970 |
+
#: includes/options-profiles.php:329
|
971 |
msgid "A button will allow the viewer to watch the video fullscreen"
|
972 |
msgstr ""
|
973 |
|
974 |
+
#: includes/options-profiles.php:333
|
975 |
msgid "Link to YouTube"
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: includes/options-profiles.php:334
|
979 |
msgid "Video links back to YouTube when clicked"
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: includes/options-profiles.php:339
|
983 |
msgid "Options Not Supported by HTML5 Player"
|
984 |
msgstr ""
|
985 |
|
986 |
+
#: includes/options-profiles.php:343
|
987 |
msgid "Window Mode"
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: includes/options-profiles.php:345
|
991 |
msgid "Opaque"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: includes/options-profiles.php:346
|
995 |
msgid "Transparent"
|
996 |
msgstr ""
|
997 |
|
998 |
+
#: includes/options-profiles.php:347
|
999 |
msgid "Window"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
+
#: includes/options-profiles.php:348
|
1003 |
msgid ""
|
1004 |
"Sets the Window Mode property of the Flash movie for transparency, layering, "
|
1005 |
"and positioning in the browser. <a href=\"http://www.communitymx.com/content/"
|
1006 |
"article.cfm?cid=e5141\">Learn more</a>."
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: includes/options-profiles.php:353
|
1010 |
msgid "Options Only Supported By EmbedPlus"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
+
#: includes/options-profiles.php:355
|
1014 |
msgid "Learn more about EmbedPlus"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
+
#: includes/options-profiles.php:359
|
1018 |
msgid "Fallback Embed Type"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
+
#: includes/options-profiles.php:360
|
1022 |
msgid ""
|
1023 |
"The type of player to use if Flash is not available and EmbedPlus cannot be "
|
1024 |
"used."
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: includes/options-profiles.php:366
|
1028 |
msgid "Play HD"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: includes/options-profiles.php:367
|
1032 |
msgid "Play the video in HD if possible"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
+
#: includes/options-profiles.php:371
|
1036 |
msgid "Real-time Reactions"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
+
#: includes/options-profiles.php:372
|
1040 |
msgid "Show the Real-time Reactions button"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
+
#: includes/options-profiles.php:376
|
1044 |
msgid "Sweet Spots"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
#: includes/options-profiles.php:377
|
1048 |
msgid "Find sweet spots for the next and previous buttons"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
+
#: includes/options-profiles.php:391
|
1052 |
msgid "YouTube Video Sample"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
+
#: includes/options-profiles.php:392
|
1056 |
msgid ""
|
1057 |
"The video below uses the above, saved profile settings. Use the drop-down "
|
1058 |
"below to change which parameters the video uses - press the Change Video "
|
1059 |
"button to update it."
|
1060 |
msgstr ""
|
1061 |
|
1062 |
+
#: includes/options-profiles.php:394
|
1063 |
msgid "Standard"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: includes/options-profiles.php:396
|
1067 |
msgid "3D"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: includes/options-profiles.php:397
|
1071 |
msgid "Playlist"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: includes/options-profiles.php:400
|
1075 |
msgid "Change video"
|
1076 |
msgstr ""
|
1077 |
|
1095 |
msgid "User"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
+
#: includes/options-widgets.php:41 includes/shared-functions.php:429
|
1099 |
msgid "Profile"
|
1100 |
msgstr ""
|
1101 |
|
1154 |
#: includes/set-defaults.php:95
|
1155 |
msgid "The video cannot be shown at the moment. Please try again later."
|
1156 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
readme.txt
CHANGED
@@ -4,7 +4,9 @@ Donate link: http://artiss.co.uk/donate
|
|
4 |
Tags: annotations, artiss, chromecast, comments, download, embed, embedding, embedplus, flash, flv, hd, iframe, media, play, playlist, profile, responsive, seo, url, video, widget, youtube, youtuber
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 4.3
|
7 |
-
Stable tag: 3.3.
|
|
|
|
|
8 |
|
9 |
A simple to use method of embedding YouTube videos into your posts and pages but with powerful features for those that need them.
|
10 |
|
@@ -362,9 +364,11 @@ For problems, suggestions or enhancements for this plugin, please use the [WordP
|
|
362 |
|
363 |
== Installation ==
|
364 |
|
365 |
-
|
366 |
-
|
367 |
-
|
|
|
|
|
368 |
|
369 |
== Frequently Asked Questions ==
|
370 |
|
@@ -483,6 +487,12 @@ Although I attempt to keep with PHP 4 compatibility there are no guarantees of t
|
|
483 |
|
484 |
== Changelog ==
|
485 |
|
|
|
|
|
|
|
|
|
|
|
|
|
486 |
= 3.3.3 =
|
487 |
* Maintenance: Now working with newer playlist IDs (README instructions chaneged to reflect how to do this)
|
488 |
* Maintenance: Resolved widget issues with version 4.3 of WordPress
|
@@ -776,6 +786,9 @@ Although I attempt to keep with PHP 4 compatibility there are no guarantees of t
|
|
776 |
|
777 |
== Upgrade Notice ==
|
778 |
|
|
|
|
|
|
|
779 |
= 3.3.3 =
|
780 |
* Fix to resolve multiple urgent issues
|
781 |
|
4 |
Tags: annotations, artiss, chromecast, comments, download, embed, embedding, embedplus, flash, flv, hd, iframe, media, play, playlist, profile, responsive, seo, url, video, widget, youtube, youtuber
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 4.3
|
7 |
+
Stable tag: 3.3.4
|
8 |
+
License: GPLv2 or later
|
9 |
+
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
11 |
A simple to use method of embedding YouTube videos into your posts and pages but with powerful features for those that need them.
|
12 |
|
364 |
|
365 |
== Installation ==
|
366 |
|
367 |
+
YouTube Embed can be found and installed via the Plugin menu within WordPress administration. Alternatively, it can be downloaded and installed manually...
|
368 |
+
|
369 |
+
1. Upload the entire `youtube-embed` folder to your wp-content/plugins/ directory.
|
370 |
+
2. Activate the plugin through the 'Plugins' menu in WordPress.
|
371 |
+
3. Now you can add the shortcode to your posts and pages!
|
372 |
|
373 |
== Frequently Asked Questions ==
|
374 |
|
487 |
|
488 |
== Changelog ==
|
489 |
|
490 |
+
= 3.3.4 =
|
491 |
+
* Maintenance: Updated admin screen headings for compatibility with 4.3.
|
492 |
+
* Maintenance: Updated demo video on profile page. Just because.
|
493 |
+
* Bug: Fixed (I hope) the problem with the editor button not appearing for some users. Thanks to Mark Aarhus for getting to the bottom of this for me.
|
494 |
+
* Enhancement: Added donation link to plugin meta. Because I'm worth it.
|
495 |
+
|
496 |
= 3.3.3 =
|
497 |
* Maintenance: Now working with newer playlist IDs (README instructions chaneged to reflect how to do this)
|
498 |
* Maintenance: Resolved widget issues with version 4.3 of WordPress
|
786 |
|
787 |
== Upgrade Notice ==
|
788 |
|
789 |
+
= 3.3.4 =
|
790 |
+
* Assorted fixes and enhancements inc. (I hope) a fix to the editor button not working
|
791 |
+
|
792 |
= 3.3.3 =
|
793 |
* Fix to resolve multiple urgent issues
|
794 |
|
youtube-embed.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: YouTube Embed
|
4 |
Plugin URI: https://wordpress.org/plugins/youtube-embed/
|
5 |
Description: Embed YouTube Videos in WordPress
|
6 |
-
Version: 3.3.
|
7 |
Author: David Artiss
|
8 |
Author URI: http://www.artiss.co.uk
|
9 |
*/
|
@@ -17,7 +17,7 @@ Author URI: http://www.artiss.co.uk
|
|
17 |
* @since 2.0
|
18 |
*/
|
19 |
|
20 |
-
define( 'youtube_embed_version', '3.3.
|
21 |
|
22 |
$functions_dir = WP_PLUGIN_DIR . '/youtube-embed/includes/';
|
23 |
|
3 |
Plugin Name: YouTube Embed
|
4 |
Plugin URI: https://wordpress.org/plugins/youtube-embed/
|
5 |
Description: Embed YouTube Videos in WordPress
|
6 |
+
Version: 3.3.4
|
7 |
Author: David Artiss
|
8 |
Author URI: http://www.artiss.co.uk
|
9 |
*/
|
17 |
* @since 2.0
|
18 |
*/
|
19 |
|
20 |
+
define( 'youtube_embed_version', '3.3.4' );
|
21 |
|
22 |
$functions_dir = WP_PLUGIN_DIR . '/youtube-embed/includes/';
|
23 |
|