Version Description
- Stop other videos if there is more than one instance of the plugin in the same page.
- Corrected problem with pagination when there are multiple instances in the same page.
- Added option to show video duration in thumbnails.
- Added options to show title, description and published date below the player.
- Added option to select description words number in player description.
- Option to select title tag of player.
- Added option to show published date in thumbnail content.
- Added option to order published date.
- Convert plain text URI to HTML links in description text.
- Added Customizer support.
- Correction for shortcodes inside pre tags.
- Error control in thumbnail alignment.
- Error control in max columns.
- Help as jquery tooltips.
- Some little optimizations.
- Error message optimization.
- Deleted default Google API Key because quota exceded and added link to Googl Developers Console and hto help.
- Updated spanish translation and pot file.
Download this release
Release Info
Developer | javitxu123 |
Plugin | ![]() |
Version | 2.3 |
Comparing to | |
See all releases |
Code changes from version 2.2.2 to 2.3
- admin-scripts.js +247 -211
- admin-styles.css +1 -1
- languages/youtube-channel-gallery-es_ES.mo +0 -0
- languages/youtube-channel-gallery-es_ES.po +209 -310
- languages/youtube-channel-gallery.mo +0 -0
- languages/youtube-channel-gallery.pot +904 -0
- readme.txt +46 -10
- scripts.js +46 -8
- styles.css +1 -1
- templates/admin_tabs.php +123 -40
- templates/desc.php +4 -4
- templates/publishedAt.php +3 -0
- templates/thumb.php +5 -0
- templates/thumbs.php +13 -4
- templates/title.php +10 -3
- youtube-channel-gallery.php +159 -28
admin-scripts.js
CHANGED
@@ -1,271 +1,307 @@
|
|
1 |
-
jQuery(
|
|
|
|
|
2 |
|
3 |
-
|
|
|
|
|
|
|
|
|
4 |
|
5 |
-
// on added or saved
|
6 |
-
if(settings.data.search('action=save-widget') != -1 && settings.data.search('id_base=youtubechannelgallery_widget') != -1) {
|
7 |
-
$widget = $(e.currentTarget.activeElement).parents('.widget');
|
8 |
-
ytchg_ActivateChosen();
|
9 |
-
ytchg_init_tabs();
|
10 |
|
|
|
11 |
|
12 |
-
|
|
|
|
|
|
|
|
|
13 |
|
14 |
-
// on
|
15 |
-
|
16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
}
|
18 |
-
});
|
19 |
-
|
20 |
-
// on load
|
21 |
-
function ytchg_ActivateChosen() {
|
22 |
-
$( '#widgets-right .widget[id*="youtubechannelgallery_widget"]' ).each( function() {
|
23 |
-
ytchg_SetChosen( $(this) );
|
24 |
-
show_title_description( $(this) );
|
25 |
-
changeFeedType( $(this) );
|
26 |
-
changeplayerType( $(this) );
|
27 |
-
changeAlignThumb( $(this) );
|
28 |
-
//searchTab( $(this) );
|
29 |
-
});
|
30 |
-
}
|
31 |
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
|
36 |
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
|
43 |
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
|
91 |
-
|
92 |
|
93 |
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
//content tabs
|
105 |
-
var currentTab = $selectList.attr('href');
|
106 |
-
//slideUp and slideDown to give it animation
|
107 |
-
$('.ytchgtabs > div', $parentWidget).slideUp('fast');
|
108 |
-
$(currentTab, $parentWidget).slideDown('fast');
|
109 |
-
}
|
110 |
-
return false;
|
111 |
-
}
|
112 |
|
113 |
-
|
114 |
-
|
115 |
-
|
|
|
|
|
|
|
|
|
|
|
116 |
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
|
|
|
|
|
|
|
|
|
|
125 |
}
|
126 |
-
}
|
127 |
|
128 |
|
129 |
-
|
130 |
-
|
131 |
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
|
|
141 |
}
|
142 |
-
}
|
143 |
|
144 |
|
145 |
-
|
146 |
-
|
147 |
|
148 |
-
|
149 |
-
|
150 |
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
|
|
175 |
}
|
176 |
-
}
|
177 |
|
178 |
|
179 |
-
|
180 |
-
|
181 |
|
182 |
-
|
183 |
-
|
184 |
|
185 |
-
|
186 |
-
|
187 |
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
|
|
192 |
}
|
193 |
-
}
|
194 |
|
195 |
|
196 |
-
|
197 |
-
|
198 |
|
199 |
-
|
200 |
-
|
201 |
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
|
|
217 |
}
|
218 |
-
}
|
219 |
|
220 |
|
221 |
-
|
222 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
223 |
|
224 |
-
function searchTab(widget) {
|
225 |
|
226 |
-
|
227 |
|
228 |
-
|
229 |
-
return;
|
230 |
-
}
|
231 |
-
else {
|
232 |
-
this.llamada[widget[0].id] = 1;
|
233 |
-
}
|
234 |
|
235 |
-
|
|
|
|
|
|
|
|
|
236 |
|
237 |
-
|
|
|
|
|
238 |
|
239 |
-
|
240 |
-
|
241 |
-
restrict = '',
|
242 |
-
options = '';
|
243 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
244 |
|
245 |
-
|
246 |
|
247 |
-
|
|
|
|
|
|
|
248 |
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
254 |
|
255 |
-
|
256 |
-
|
257 |
-
$select.append(options);
|
258 |
|
259 |
-
|
260 |
-
|
|
|
261 |
|
262 |
-
|
263 |
-
if ($(this).val() === 'user') {
|
264 |
-
$widget.find('.ytchgtabs-tabs > li:eq(2)').show();
|
265 |
-
}
|
266 |
-
else {
|
267 |
-
$widget.find('.ytchgtabs-tabs > li:eq(2)').hide();
|
268 |
-
}
|
269 |
-
});
|
270 |
-
}
|
271 |
-
});
|
1 |
+
jQuery( function ( $ ) {
|
2 |
+
function init( widget_el, is_cloned ) {
|
3 |
+
$(document).ajaxSuccess(function(e, xhr, settings) {
|
4 |
|
5 |
+
// on added or saved
|
6 |
+
if(settings.data.search('action=save-widget') != -1 && settings.data.search('id_base=youtubechannelgallery_widget') != -1) {
|
7 |
+
$widget = $(e.currentTarget.activeElement).parents('.widget');
|
8 |
+
ytchg_ActivateChosen();
|
9 |
+
ytchg_init_tabs();
|
10 |
|
|
|
|
|
|
|
|
|
|
|
11 |
|
12 |
+
}
|
13 |
|
14 |
+
// on re-ordered
|
15 |
+
if(settings.data.search('action=widgets-order') != -1) {
|
16 |
+
ytchg_ActivateChosen();
|
17 |
+
}
|
18 |
+
});
|
19 |
|
20 |
+
// on load
|
21 |
+
function ytchg_ActivateChosen() {
|
22 |
+
$( '.widget[id*="youtubechannelgallery_widget"]' ).each( function() {
|
23 |
+
ytchg_SetChosen( $(this) );
|
24 |
+
show_title_description( $(this), '.tabs-2' );
|
25 |
+
show_title_description( $(this), '.tabs-4' );
|
26 |
+
changeFeedType( $(this) );
|
27 |
+
changeplayerType( $(this) );
|
28 |
+
changeAlignThumb( $(this) );
|
29 |
+
add_tooltips( $(this) );
|
30 |
+
//searchTab( $(this) );
|
31 |
+
});
|
32 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
|
34 |
+
// fire on page load
|
35 |
+
ytchg_ActivateChosen();
|
36 |
+
ytchg_init_tabs();
|
37 |
|
38 |
|
39 |
+
function ytchg_init_tabs() {
|
40 |
+
// hide content but first
|
41 |
+
$('.ytchgtabs-tabs li:first-child').addClass('active');
|
42 |
+
$('.ytchgtabs .ytchgtabs-content:not(:first-of-type)').hide();
|
43 |
+
}
|
44 |
|
45 |
|
46 |
+
function ytchg_SetChosen( widget ) {
|
47 |
+
$widget = $(widget);
|
48 |
+
$selectList = $('.ytchgtabs', $widget);
|
49 |
|
50 |
+
//tabs
|
51 |
+
$('.ytchgtabs-tabs li a', $widget).click(
|
52 |
+
function(event){
|
53 |
+
$selectList = event.currentTarget;
|
54 |
+
ytchg_update_tabs( $selectList );
|
55 |
+
return false;
|
56 |
+
}
|
57 |
+
);
|
58 |
+
|
59 |
+
// link open title and description
|
60 |
+
$('.tabs-2 .ytchg-tit-desc a', $widget).click(
|
61 |
+
function(event){
|
62 |
+
$tit_desc_link = event.currentTarget;
|
63 |
+
click_title_description( $tit_desc_link );
|
64 |
+
return false;
|
65 |
+
}
|
66 |
+
);
|
67 |
+
$('.tabs-4 .ytchg-tit-desc a', $widget).click(
|
68 |
+
function(event){
|
69 |
+
$tit_desc_link = event.currentTarget;
|
70 |
+
click_title_description( $tit_desc_link );
|
71 |
+
return false;
|
72 |
+
}
|
73 |
+
);
|
74 |
+
var alignSelect = '.ytchg-field-tit-desc select[id*="ytchag_thumbnail_alignment"]';
|
75 |
+
$(alignSelect, $widget).change(
|
76 |
+
function (event) {
|
77 |
+
$align_change = event.currentTarget;
|
78 |
+
$current_widget = $(event.currentTarget).parents('.widget');
|
79 |
+
changeAlignThumb ($current_widget);
|
80 |
+
});
|
81 |
|
82 |
+
//feed
|
83 |
+
var feedSelect = '.tabs-1 select[id*="ytchag_feed"]';
|
84 |
+
$(feedSelect, $widget).change(
|
85 |
+
function (event) {
|
86 |
+
$feed_change = event.currentTarget;
|
87 |
+
$current_widget = $(event.currentTarget).parents('.widget');
|
88 |
+
changeFeedType ($current_widget);
|
89 |
+
});
|
90 |
|
91 |
+
//player?
|
92 |
+
var playerSelect = '.tabs-2 select[id*="ytchag_player"]';
|
93 |
+
$(playerSelect, $widget).change(
|
94 |
+
function (event) {
|
95 |
+
$player_change = event.currentTarget;
|
96 |
+
$current_widget = $(event.currentTarget).parents('.widget');
|
97 |
+
changeplayerType ($current_widget);
|
98 |
+
});
|
99 |
|
100 |
+
}
|
101 |
|
102 |
|
103 |
+
function ytchg_update_tabs( selectList ) {
|
104 |
+
$selectList = $(selectList);
|
105 |
+
$parentWidget = $selectList.parents('.widget');
|
106 |
|
107 |
+
//not work on the current tab
|
108 |
+
if(!$selectList.parent().hasClass('active')){
|
109 |
+
//tabs
|
110 |
+
$('.ytchgtabs-tabs li', $parentWidget).removeClass('active');
|
111 |
+
$selectList.parent().addClass('active');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
112 |
|
113 |
+
//content tabs
|
114 |
+
var currentTab = $selectList.attr('href');
|
115 |
+
//slideUp and slideDown to give it animation
|
116 |
+
$('.ytchgtabs > div', $parentWidget).slideUp('fast');
|
117 |
+
$(currentTab, $parentWidget).slideDown('fast');
|
118 |
+
}
|
119 |
+
return false;
|
120 |
+
}
|
121 |
|
122 |
+
function click_title_description( tit_desc_link ) {
|
123 |
+
$tit_desc_link = $(tit_desc_link);
|
124 |
+
$parentWidget = $tit_desc_link.parents('.ytchgtabs-content');
|
125 |
+
|
126 |
+
if(!$('fieldset.ytchg-field-tit-desc', $parentWidget).hasClass('active')){
|
127 |
+
$('.ytchg-title-and-description', $parentWidget).slideDown('fast',function(){
|
128 |
+
$('.ytchg-field-tit-desc', $parentWidget).addClass('ytchg-fieldborder active');
|
129 |
+
});
|
130 |
+
} else{
|
131 |
+
$('.ytchg-title-and-description', $parentWidget).slideUp('fast',function(){
|
132 |
+
$('.ytchg-field-tit-desc', $parentWidget).removeClass('ytchg-fieldborder active');
|
133 |
+
});
|
134 |
+
}
|
135 |
}
|
|
|
136 |
|
137 |
|
138 |
+
//checkboxes with associated content
|
139 |
+
//---------------
|
140 |
|
141 |
+
function show_title_description ( widget, tab ) {
|
142 |
+
$widget = $(widget);
|
143 |
+
$tabs = $(tab, $widget);
|
144 |
|
145 |
+
if( $('.ytchg-tit', $tabs).is(':checked') || $('.ytchg-desc', $tabs).is(':checked')){
|
146 |
+
$('.ytchg-title-and-description', $tabs).show();
|
147 |
+
$('fieldset.ytchg-field-tit-desc', $tabs).addClass('ytchg-fieldborder active');
|
148 |
+
} else{
|
149 |
+
$('.ytchg-title-and-description', $tabs).hide();
|
150 |
+
}
|
151 |
}
|
|
|
152 |
|
153 |
|
154 |
+
//Feed label title
|
155 |
+
//---------------
|
156 |
|
157 |
+
function changeFeedType ( widget ) {
|
158 |
+
$widget = $(widget);
|
159 |
|
160 |
+
var feedSelect = '.tabs-1 select[id*="ytchag_feed"]';
|
161 |
+
var userLabel = 'label[for*="ytchag_user"]';
|
162 |
+
var feedOrder = 'p[class*="ytchag_feed_order"]';
|
163 |
|
164 |
+
// user / playlist label
|
165 |
+
if(['user', 'favorites', 'likes'].indexOf($(feedSelect + ' option:selected', $widget).val()) !== -1){
|
166 |
+
$('.feed_user_id_label', $widget).show();
|
167 |
+
$('.feed_playlist_id_label', $widget).hide();
|
168 |
+
$('.identify_by', $widget).show();
|
169 |
+
$('.user', $widget).removeClass('col-md-12').addClass('col-md-8');
|
170 |
+
}
|
171 |
+
else if(['playlist'].indexOf($(feedSelect + ' option:selected', $widget).val()) !== -1){
|
172 |
+
$('.feed_playlist_id_label', $widget).show();
|
173 |
+
$('.feed_user_id_label', $widget).hide();
|
174 |
+
$('.identify_by', $widget).hide();
|
175 |
+
$('.user', $widget).removeClass('col-md-8').addClass('col-md-12');
|
176 |
+
}
|
177 |
|
178 |
+
// order
|
179 |
+
if(['user'].indexOf($(feedSelect + ' option:selected', $widget).val()) !== -1){
|
180 |
+
$(feedOrder, $widget).slideDown('fast');
|
181 |
+
}
|
182 |
+
else{
|
183 |
+
$(feedOrder, $widget).slideUp('fast');
|
184 |
+
}
|
185 |
}
|
|
|
186 |
|
187 |
|
188 |
+
//Feed label title
|
189 |
+
//---------------
|
190 |
|
191 |
+
function changeAlignThumb ( widget ) {
|
192 |
+
$widget = $(widget);
|
193 |
|
194 |
+
var alignmentSelect = 'select[id*="ytchag_thumbnail_alignment"]';
|
195 |
+
var align_options = '.align-options';
|
196 |
|
197 |
+
if($(alignmentSelect + ' option:selected', $widget).val() === 'none'){
|
198 |
+
$(align_options, $widget).slideUp('fast');
|
199 |
+
} else{
|
200 |
+
$(align_options, $widget).slideDown('fast');
|
201 |
+
}
|
202 |
}
|
|
|
203 |
|
204 |
|
205 |
+
//Player type
|
206 |
+
//---------------
|
207 |
|
208 |
+
function changeplayerType ( widget ) {
|
209 |
+
$widget = $(widget);
|
210 |
|
211 |
+
var playerSelect = '.tabs-2 select[id*="ytchag_player"]';
|
212 |
+
var player_options = '.tabs-2 .player_options';
|
213 |
+
var thumb_window = '.tabs-4 .thumb_window';
|
214 |
|
215 |
+
if($(playerSelect + ' option:selected', $widget).val() === '0'){
|
216 |
+
$(thumb_window, $widget).show();
|
217 |
+
$(player_options, $widget).slideUp('fast');
|
218 |
+
}
|
219 |
+
if($(playerSelect + ' option:selected', $widget).val() === '1'){
|
220 |
+
$(thumb_window, $widget).hide();
|
221 |
+
$(player_options, $widget).slideDown('fast');
|
222 |
+
}
|
223 |
+
if($(playerSelect + ' option:selected', $widget).val() === '2'){
|
224 |
+
$(thumb_window, $widget).hide();
|
225 |
+
$(player_options, $widget).slideUp('fast');
|
226 |
+
}
|
227 |
}
|
|
|
228 |
|
229 |
|
230 |
+
//Search tab
|
231 |
+
//---------------
|
232 |
+
|
233 |
+
function searchTab(widget) {
|
234 |
+
|
235 |
+
this.llamada = this.llamada || {};
|
236 |
+
|
237 |
+
if (this.llamada[widget[0].id]) {
|
238 |
+
return;
|
239 |
+
}
|
240 |
+
else {
|
241 |
+
this.llamada[widget[0].id] = 1;
|
242 |
+
}
|
243 |
+
|
244 |
+
$widget = $(widget);
|
245 |
+
|
246 |
+
$widget.on('keyup', '[id$="ytchag_search_playlists"]', function(e) {
|
247 |
+
|
248 |
+
var campos = this.value.split('#'),
|
249 |
+
$select = $widget.find('[id$="ytchag_search_restrict"]'),
|
250 |
+
restrict = '',
|
251 |
+
options = '';
|
252 |
|
|
|
253 |
|
254 |
+
$.each(campos, function(i, c) {
|
255 |
|
256 |
+
var tag = c.toLocaleLowerCase().replace(/ /g, '_');
|
|
|
|
|
|
|
|
|
|
|
257 |
|
258 |
+
if (c !== '') {
|
259 |
+
restrict += (restrict ? ',' : '') + 'restrict_' + tag;
|
260 |
+
options += '<option value="' + tag + '">' + c + '</option>';
|
261 |
+
}
|
262 |
+
});
|
263 |
|
264 |
+
$widget.find('.restrict').html(restrict);
|
265 |
+
$select.find('option:gt(0)').remove();
|
266 |
+
$select.append(options);
|
267 |
|
268 |
+
return true;
|
269 |
+
});
|
|
|
|
|
270 |
|
271 |
+
$widget.on('change', '[id$="ytchag_feed"]', function(e) {
|
272 |
+
if ($(this).val() === 'user') {
|
273 |
+
$widget.find('.ytchgtabs-tabs > li:eq(2)').show();
|
274 |
+
}
|
275 |
+
else {
|
276 |
+
$widget.find('.ytchgtabs-tabs > li:eq(2)').hide();
|
277 |
+
}
|
278 |
+
});
|
279 |
+
}
|
280 |
|
281 |
+
function add_tooltips(widget) {
|
282 |
|
283 |
+
$( ".ytchag_info" ).tooltip(
|
284 |
+
{
|
285 |
+
tooltipClass: "ytchgtooltip",
|
286 |
+
position: { my: "center bottom-28px", at: "center bottom", collision: "none" },
|
287 |
|
288 |
+
});
|
289 |
+
}
|
290 |
+
|
291 |
+
}
|
292 |
+
|
293 |
+
|
294 |
+
function on_form_update( e, widget_el ) {
|
295 |
+
if ( 'youtubechannelgallery_widget' === widget_el.find( 'input[name="id_base"]' ).val() ) {
|
296 |
+
init( widget_el, 'widget-added' === e.type );
|
297 |
+
}
|
298 |
+
}
|
299 |
|
300 |
+
$( document ).on( 'widget-updated', on_form_update );
|
301 |
+
$( document ).on( 'widget-added', on_form_update );
|
|
|
302 |
|
303 |
+
$( '.widget[id*="youtubechannelgallery_widget"]' ).each( function () {
|
304 |
+
init( $( this ) );
|
305 |
+
} );
|
306 |
|
307 |
+
} );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
admin-styles.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.ytchg{margin-bottom:13px}.ytchgtabs *{-webkit-box-sizing:border-box;box-sizing:border-box}.ytchgtabs :before,.ytchgtabs :after{-webkit-box-sizing:border-box;box-sizing:border-box}.ytchgtabs .clearfix:before,.ytchgtabs .clearfix:after{content:'';display:table}.ytchgtabs .clearfix:after{clear:both}.ytchgtabs .clearfix{zoom:1}.ytchgtabs ul{margin:0;padding:0}.ytchgtabs li{display:inline-block;margin:1px .2em 0 0;padding:0;list-style:none;white-space:nowrap;position:relative;background:#f3f3f3;border:1px solid #dfdfdf;border-bottom:none;border-radius:5px 5px 0 0}.ytchgtabs li.active{margin-bottom:-1px;padding-bottom:1px;background:#fafafa}.ytchgtabs .ytchgtabs-tabs a{padding:5px;display:inline-block;text-decoration:none;outline:0}.ytchgtabs .ytchgtabs-tabs a:focus{-webkit-box-shadow:none;box-shadow:none}.ytchgtabs .ytchg-tit-desc a:focus{-webkit-box-shadow:none;box-shadow:none}.ytchgtabs input,.ytchgtabs select{margin:3px 1px 1px}.ytchgtabs select{vertical-align:baseline}.ytchgtabs div.ytchgtabs-content{border:1px solid #dfdfdf;padding:15px 12px;background:#fafafa}.ytchgtabs .ytchgtabs-content p:last-child{margin-bottom:0}.ytchgtabs .feed_playlist_id_label{display:none}.ytchgtabs .ytchg-field-tit-desc{margin:13px 0}.ytchgtabs div.ytchg-title-and-description{border:none;background:0 0;display:none}.ytchgtabs fieldset{border:1px solid transparent;border-radius:5px}.ytchgtabs fieldset.ytchg-fieldborder{border-color:#dfdfdf}.ytchgtabs .align-options{display:none}.ytchgtabs .ytchag_info{background:#D7D7D7;border-radius:20px;font-size:11px;width:15px;height:15px;line-height:14px;display:inline-block;text-align:center;cursor:pointer;position:relative;vertical-align:text-top;margin-top:1px}.ytchgtabs .wideinfo{width:100%;margin-right:-25px;padding-right:25px}.ytchgtabs select+.ytchag_info{margin-left:-12px}.ytchgtabs .player_options{width:100%}.ytchgtabs .row{margin:13px -15px}.ytchgtabs .flex{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:flex-end;-ms-flex-align:end;align-items:flex-end}.ytchgtabs .clearfix:before,.ytchgtabs .clearfix:after,.ytchgtabs .row:before,.ytchgtabs .row:after{content:' ';display:table}.ytchgtabs .clearfix:after,.ytchgtabs .row:after{clear:both}.ytchgtabs .col-md-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px;width:100%;float:left}.ytchgtabs .col-md-6{position:relative;min-height:1px;padding-left:15px;padding-right:15px;width:50%;float:left}.ytchgtabs .col-md-1,.ytchgtabs .col-md-2,.ytchgtabs .col-md-3,.ytchgtabs .col-md-4,.ytchgtabs .col-md-5,.ytchgtabs .col-md-6,.ytchgtabs .col-md-7,.ytchgtabs .col-md-8,.ytchgtabs .col-md-9,.ytchgtabs .col-md-10,.ytchgtabs .col-md-11,.ytchgtabs .col-md-12{float:left}.ytchgtabs .col-xs-1,.ytchgtabs .col-sm-1,.ytchgtabs .col-md-1,.ytchgtabs .col-lg-1,.ytchgtabs .col-xs-2,.ytchgtabs .col-sm-2,.ytchgtabs .col-md-2,.ytchgtabs .col-lg-2,.ytchgtabs .col-xs-3,.ytchgtabs .col-sm-3,.ytchgtabs .col-md-3,.ytchgtabs .col-lg-3,.ytchgtabs .col-xs-4,.ytchgtabs .col-sm-4,.ytchgtabs .col-md-4,.ytchgtabs .col-lg-4,.ytchgtabs .col-xs-5,.ytchgtabs .col-sm-5,.ytchgtabs .col-md-5,.ytchgtabs .col-lg-5,.ytchgtabs .col-xs-6,.ytchgtabs .col-sm-6,.ytchgtabs .col-md-6,.ytchgtabs .col-lg-6,.ytchgtabs .col-xs-7,.ytchgtabs .col-sm-7,.ytchgtabs .col-md-7,.ytchgtabs .col-lg-7,.ytchgtabs .col-xs-8,.ytchgtabs .col-sm-8,.ytchgtabs .col-md-8,.ytchgtabs .col-lg-8,.ytchgtabs .col-xs-9,.ytchgtabs .col-sm-9,.ytchgtabs .col-md-9,.ytchgtabs .col-lg-9,.ytchgtabs .col-xs-10,.ytchgtabs .col-sm-10,.ytchgtabs .col-md-10,.ytchgtabs .col-lg-10,.ytchgtabs .col-xs-11,.ytchgtabs .col-sm-11,.ytchgtabs .col-md-11,.ytchgtabs .col-lg-11,.ytchgtabs .col-xs-12,.ytchgtabs .col-sm-12,.ytchgtabs .col-md-12,.ytchgtabs .col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.ytchgtabs .col-md-12{width:100%}.ytchgtabs .col-md-11{width:91.66666667%}.ytchgtabs .col-md-10{width:83.33333333%}.ytchgtabs .col-md-9{width:75%}.ytchgtabs .col-md-8{width:66.66666667%}.ytchgtabs .col-md-7{width:58.33333333%}.ytchgtabs .col-md-6{width:50%}.ytchgtabs .col-md-5{width:41.66666667%}.ytchgtabs .col-md-4{width:33.33333333%}.ytchgtabs .col-md-3{width:25%}.ytchgtabs .col-md-2-4{width:20%}.ytchgtabs .col-md-2{width:16.66666667%}.ytchgtabs .col-md-1{width:8.33333333%}.ytchgtabs .text-right{text-align:right}.ytchgtabs .thumbs-cols .col-md-6{width:auto}.ytchgtabs .no-w{width:auto}.ytchgtabs .table{display:table}.ytchgtabs .table .table-row{display:table-row}.ytchgtabs .table .table-row>div{display:table-cell}.ytchgtabs .table .table-row>div label{margin-right:5px}
|
1 |
+
li[id^=customize-control-widget_youtubechannelgallery_widget-] .widget-content{width:400px}.ytchgtooltip.ui-tooltip{padding:8px;position:absolute;z-index:99999999999;max-width:300px;-webkit-box-shadow:0 0 8px rgba(0,0,0,.5);box-shadow:0 0 8px rgba(0,0,0,.5);border-width:2px;background:#fff}.ytchgtooltip.ui-tooltip:after{content:'▼';display:block;width:0;height:0;position:absolute;text-shadow:0 2px 5px rgba(0,0,0,.5);color:#fff;line-height:0;font-size:10px;left:48%;bottom:-4px}.ytchg{margin-bottom:13px}.ytchg .ytchgtabs *{-webkit-box-sizing:border-box;box-sizing:border-box}.ytchg .ytchgtabs :before,.ytchg .ytchgtabs :after{-webkit-box-sizing:border-box;box-sizing:border-box}.ytchg .ytchgtabs .clearfix:before,.ytchg .ytchgtabs .clearfix:after{content:'';display:table}.ytchg .ytchgtabs .clearfix:after{clear:both}.ytchg .ytchgtabs .clearfix{zoom:1}.ytchg .ytchgtabs ul{margin:0;padding:0}.ytchg .ytchgtabs li{display:inline-block;margin:1px .2em 0 0;padding:0;list-style:none;white-space:nowrap;position:relative;background:#f3f3f3;border:1px solid #dfdfdf;border-bottom:none;border-radius:5px 5px 0 0}.ytchg .ytchgtabs li.active{margin-bottom:-1px;padding-bottom:1px;background:#fafafa}.ytchg .ytchgtabs .ytchgtabs-tabs a{padding:5px;display:inline-block;text-decoration:none;outline:0}.ytchg .ytchgtabs .ytchgtabs-tabs a:focus{-webkit-box-shadow:none;box-shadow:none}.ytchg .ytchgtabs .ytchg-tit-desc a:focus{-webkit-box-shadow:none;box-shadow:none}.ytchg .ytchgtabs input,.ytchg .ytchgtabs select{margin:3px 1px 1px;width:auto}.ytchg .ytchgtabs select{vertical-align:baseline}.ytchg .ytchgtabs div.ytchgtabs-content{border:1px solid #dfdfdf;padding:15px 12px;background:#fafafa}.ytchg .ytchgtabs .ytchgtabs-content p:last-child{margin-bottom:0}.ytchg .ytchgtabs .feed_playlist_id_label{display:none}.ytchg .ytchgtabs .ytchg-field-tit-desc{margin:13px 0}.ytchg .ytchgtabs div.ytchg-title-and-description{border:none;background:0 0;display:none}.ytchg .ytchgtabs fieldset{border:1px solid transparent;border-radius:5px}.ytchg .ytchgtabs fieldset.ytchg-fieldborder{border-color:#dfdfdf}.ytchg .ytchgtabs .align-options{display:none}.ytchg .ytchgtabs .ytchag_info{background:#D7D7D7;border-radius:20px;font-size:11px;width:15px;height:15px;line-height:14px;display:inline-block;text-align:center;cursor:pointer;position:relative;vertical-align:text-top;margin-top:1px}.ytchg .ytchgtabs .widefat{width:100%}.ytchg .ytchgtabs .wideinfo{width:100%;margin-right:-25px;padding-right:25px}.ytchg .ytchgtabs select+.ytchag_info{margin-left:-12px}.ytchg .ytchgtabs .player_options{width:100%}.ytchg .ytchgtabs .row{margin:13px -15px}.ytchg .ytchgtabs .flex{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:flex-end;-ms-flex-align:end;align-items:flex-end}.ytchg .ytchgtabs .clearfix:before,.ytchg .ytchgtabs .clearfix:after,.ytchg .ytchgtabs .row:before,.ytchg .ytchgtabs .row:after{content:' ';display:table}.ytchg .ytchgtabs .clearfix:after,.ytchg .ytchgtabs .row:after{clear:both}.ytchg .ytchgtabs .col-md-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px;width:100%;float:left}.ytchg .ytchgtabs .col-md-6{position:relative;min-height:1px;padding-left:15px;padding-right:15px;width:50%;float:left}.ytchg .ytchgtabs .col-md-1,.ytchg .ytchgtabs .col-md-2,.ytchg .ytchgtabs .col-md-3,.ytchg .ytchgtabs .col-md-4,.ytchg .ytchgtabs .col-md-5,.ytchg .ytchgtabs .col-md-6,.ytchg .ytchgtabs .col-md-7,.ytchg .ytchgtabs .col-md-8,.ytchg .ytchgtabs .col-md-9,.ytchg .ytchgtabs .col-md-10,.ytchg .ytchgtabs .col-md-11,.ytchg .ytchgtabs .col-md-12{float:left}.ytchg .ytchgtabs .col-xs-1,.ytchg .ytchgtabs .col-sm-1,.ytchg .ytchgtabs .col-md-1,.ytchg .ytchgtabs .col-lg-1,.ytchg .ytchgtabs .col-xs-2,.ytchg .ytchgtabs .col-sm-2,.ytchg .ytchgtabs .col-md-2,.ytchg .ytchgtabs .col-lg-2,.ytchg .ytchgtabs .col-xs-3,.ytchg .ytchgtabs .col-sm-3,.ytchg .ytchgtabs .col-md-3,.ytchg .ytchgtabs .col-lg-3,.ytchg .ytchgtabs .col-xs-4,.ytchg .ytchgtabs .col-sm-4,.ytchg .ytchgtabs .col-md-4,.ytchg .ytchgtabs .col-lg-4,.ytchg .ytchgtabs .col-xs-5,.ytchg .ytchgtabs .col-sm-5,.ytchg .ytchgtabs .col-md-5,.ytchg .ytchgtabs .col-lg-5,.ytchg .ytchgtabs .col-xs-6,.ytchg .ytchgtabs .col-sm-6,.ytchg .ytchgtabs .col-md-6,.ytchg .ytchgtabs .col-lg-6,.ytchg .ytchgtabs .col-xs-7,.ytchg .ytchgtabs .col-sm-7,.ytchg .ytchgtabs .col-md-7,.ytchg .ytchgtabs .col-lg-7,.ytchg .ytchgtabs .col-xs-8,.ytchg .ytchgtabs .col-sm-8,.ytchg .ytchgtabs .col-md-8,.ytchg .ytchgtabs .col-lg-8,.ytchg .ytchgtabs .col-xs-9,.ytchg .ytchgtabs .col-sm-9,.ytchg .ytchgtabs .col-md-9,.ytchg .ytchgtabs .col-lg-9,.ytchg .ytchgtabs .col-xs-10,.ytchg .ytchgtabs .col-sm-10,.ytchg .ytchgtabs .col-md-10,.ytchg .ytchgtabs .col-lg-10,.ytchg .ytchgtabs .col-xs-11,.ytchg .ytchgtabs .col-sm-11,.ytchg .ytchgtabs .col-md-11,.ytchg .ytchgtabs .col-lg-11,.ytchg .ytchgtabs .col-xs-12,.ytchg .ytchgtabs .col-sm-12,.ytchg .ytchgtabs .col-md-12,.ytchg .ytchgtabs .col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.ytchg .ytchgtabs .col-md-12{width:100%}.ytchg .ytchgtabs .col-md-11{width:91.66666667%}.ytchg .ytchgtabs .col-md-10{width:83.33333333%}.ytchg .ytchgtabs .col-md-9{width:75%}.ytchg .ytchgtabs .col-md-8{width:66.66666667%}.ytchg .ytchgtabs .col-md-7{width:58.33333333%}.ytchg .ytchgtabs .col-md-6{width:50%}.ytchg .ytchgtabs .col-md-5{width:41.66666667%}.ytchg .ytchgtabs .col-md-4{width:33.33333333%}.ytchg .ytchgtabs .col-md-3{width:25%}.ytchg .ytchgtabs .col-md-2-4{width:20%}.ytchg .ytchgtabs .col-md-2{width:16.66666667%}.ytchg .ytchgtabs .col-md-1{width:8.33333333%}.ytchg .ytchgtabs .text-right{text-align:right}.ytchg .ytchgtabs .thumbs-cols .col-md-6{width:auto}.ytchg .ytchgtabs .no-w{width:auto}.ytchg .ytchgtabs .table{display:table}.ytchg .ytchgtabs .table .table-row{display:table-row}.ytchg .ytchgtabs .table .table-row>div{display:table-cell}.ytchg .ytchgtabs .table .table-row>div label{margin-right:5px}
|
languages/youtube-channel-gallery-es_ES.mo
CHANGED
Binary file
|
languages/youtube-channel-gallery-es_ES.po
CHANGED
@@ -7,8 +7,8 @@ msgid ""
|
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: youtube-channel-gallery\n"
|
9 |
"Report-Msgid-Bugs-To: \n"
|
10 |
-
"POT-Creation-Date: 2015-
|
11 |
-
"PO-Revision-Date: 2015-
|
12 |
"Last-Translator: Javier <javierpose@gmail.com>\n"
|
13 |
"Language-Team: PoseLab <javierpose@gmail.com>\n"
|
14 |
"Language: es_ES\n"
|
@@ -16,13 +16,13 @@ msgstr ""
|
|
16 |
"Content-Type: text/plain; charset=UTF-8\n"
|
17 |
"Content-Transfer-Encoding: 8bit\n"
|
18 |
"X-Launchpad-Export-Date: 2010-06-23 21:48+0000\n"
|
19 |
-
"X-Generator: Poedit 1.
|
20 |
"X-Poedit-Basepath: ..\n"
|
21 |
"X-Poedit-KeywordsList: _e;__\n"
|
22 |
"X-Poedit-SourceCharset: utf-8\n"
|
23 |
"X-Poedit-SearchPath-0: .\n"
|
24 |
|
25 |
-
#: templates/admin_tabs.php:3 templates/admin_tabs.php:
|
26 |
msgid "Title:"
|
27 |
msgstr "Título:"
|
28 |
|
@@ -54,79 +54,89 @@ msgstr "YouTube API Key:"
|
|
54 |
msgid "Get your own YouTube API Key and put here."
|
55 |
msgstr "Obtén tu propia YouTube API Key e insertada aquí"
|
56 |
|
57 |
-
#: templates/admin_tabs.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
msgid "Video feed type:"
|
59 |
msgstr "Tipo de feed de vídeo:"
|
60 |
|
61 |
-
#: templates/admin_tabs.php:
|
62 |
msgid "Uploaded by a user"
|
63 |
msgstr "Subidos por el usuario"
|
64 |
|
65 |
-
#: templates/admin_tabs.php:
|
66 |
msgid "User's favorites"
|
67 |
msgstr "Favoritos del usuario"
|
68 |
|
69 |
-
#: templates/admin_tabs.php:
|
70 |
msgid "User's likes"
|
71 |
msgstr "Likes de usuario"
|
72 |
|
73 |
-
#: templates/admin_tabs.php:
|
74 |
msgid "Playlist"
|
75 |
msgstr "Lista de reproducción"
|
76 |
|
77 |
-
#: templates/admin_tabs.php:
|
78 |
msgid "Identify by:"
|
79 |
msgstr "Identificar por:"
|
80 |
|
81 |
-
#: templates/admin_tabs.php:
|
82 |
msgid "Username"
|
83 |
msgstr "Nombre de usuario"
|
84 |
|
85 |
-
#: templates/admin_tabs.php:
|
86 |
msgid "Channel ID"
|
87 |
msgstr "ID de canal:"
|
88 |
|
89 |
-
#: templates/admin_tabs.php:
|
90 |
msgid "YouTube id:"
|
91 |
msgstr "Id de Youtube:"
|
92 |
|
93 |
-
#: templates/admin_tabs.php:
|
94 |
msgid "YouTube playlist id:"
|
95 |
msgstr "Id de lista de reproducción de YouTube:"
|
96 |
|
97 |
-
#: templates/admin_tabs.php:
|
98 |
msgid "Playlist order:"
|
99 |
msgstr "Orden de lista de reproducción:"
|
100 |
|
101 |
-
#: templates/admin_tabs.php:
|
102 |
msgid "Date Order"
|
103 |
msgstr "Ordenar por fecha"
|
104 |
|
105 |
-
#: templates/admin_tabs.php:
|
106 |
msgid "Rating Order"
|
107 |
msgstr "Ordenar por calificación"
|
108 |
|
109 |
-
#: templates/admin_tabs.php:
|
110 |
msgid "Relevance Order"
|
111 |
msgstr "Ordenar por relevancia"
|
112 |
|
113 |
-
#: templates/admin_tabs.php:
|
114 |
msgid "Title Order"
|
115 |
msgstr "Ordenar por título"
|
116 |
|
117 |
-
#: templates/admin_tabs.php:
|
118 |
msgid "Video Count Order"
|
119 |
msgstr "Ordenar por número de vídeos subidos"
|
120 |
|
121 |
-
#: templates/admin_tabs.php:
|
122 |
msgid "View Count Order"
|
123 |
msgstr "Ordenar por número de reproducciones"
|
124 |
|
125 |
-
#: templates/admin_tabs.php:
|
126 |
msgid "Cache time (hours):"
|
127 |
msgstr "Tiempo de cache (horas):"
|
128 |
|
129 |
-
#: templates/admin_tabs.php:
|
130 |
msgid ""
|
131 |
"Hours that RSS data is saved in database, to not make a request every time "
|
132 |
"the page is displayed. Assign this value according to how often you upgrade "
|
@@ -136,11 +146,11 @@ msgstr ""
|
|
136 |
"solicitud cada vez que se muestra la página. Asigna este valor en función de "
|
137 |
"la frecuencia con que actualizas la lista de reproducción en YouTube."
|
138 |
|
139 |
-
#: templates/admin_tabs.php:
|
140 |
msgid "Activate cache"
|
141 |
msgstr "Activar caché"
|
142 |
|
143 |
-
#: templates/admin_tabs.php:
|
144 |
msgid ""
|
145 |
"If you disable this field the cache will be deleted and will not be used. "
|
146 |
"This is useful to refresh immediately the YouTube RSS used by the plugin. "
|
@@ -152,103 +162,103 @@ msgstr ""
|
|
152 |
"Vuelve a habilitar la caché cuando la galería muestre los cambios que ha "
|
153 |
"realizado en su cuenta de YouTube."
|
154 |
|
155 |
-
#: templates/admin_tabs.php:
|
156 |
msgid "Player:"
|
157 |
msgstr "Reproductor:"
|
158 |
|
159 |
-
#: templates/admin_tabs.php:
|
160 |
msgid "Without player"
|
161 |
msgstr "Sin reproductor"
|
162 |
|
163 |
-
#: templates/admin_tabs.php:
|
164 |
msgid "show player"
|
165 |
msgstr "mostrar reproductor"
|
166 |
|
167 |
-
#: templates/admin_tabs.php:
|
168 |
msgid "show player in Magnific Popup"
|
169 |
msgstr "mostrar reproductor en Magnific Popup"
|
170 |
|
171 |
-
#: templates/admin_tabs.php:
|
172 |
msgid "Width:"
|
173 |
msgstr "Ancho:"
|
174 |
|
175 |
-
#: templates/admin_tabs.php:
|
176 |
msgid "%"
|
177 |
msgstr "%"
|
178 |
|
179 |
-
#: templates/admin_tabs.php:
|
180 |
msgid "px"
|
181 |
msgstr "px"
|
182 |
|
183 |
-
#: templates/admin_tabs.php:
|
184 |
msgid "Aspect ratio:"
|
185 |
msgstr "Relación de aspecto:"
|
186 |
|
187 |
-
#: templates/admin_tabs.php:
|
188 |
msgid "Standard (4x3)"
|
189 |
msgstr "Estándar (4x3)"
|
190 |
|
191 |
-
#: templates/admin_tabs.php:
|
192 |
msgid "Widescreen (16x9)"
|
193 |
msgstr "Panorámico (16x9)"
|
194 |
|
195 |
-
#: templates/admin_tabs.php:
|
196 |
msgid "Theme:"
|
197 |
msgstr "Tema:"
|
198 |
|
199 |
-
#: templates/admin_tabs.php:
|
200 |
msgid "Dark"
|
201 |
msgstr "Oscuro"
|
202 |
|
203 |
-
#: templates/admin_tabs.php:
|
204 |
msgid "Light"
|
205 |
msgstr "Claro"
|
206 |
|
207 |
-
#: templates/admin_tabs.php:
|
208 |
msgid "Progress bar color:"
|
209 |
msgstr "Color de barra de progreso:"
|
210 |
|
211 |
-
#: templates/admin_tabs.php:
|
212 |
msgid "Red"
|
213 |
msgstr "Rojo"
|
214 |
|
215 |
-
#: templates/admin_tabs.php:
|
216 |
msgid "White"
|
217 |
msgstr "Blanco"
|
218 |
|
219 |
-
#: templates/admin_tabs.php:
|
220 |
msgid "Video quality:"
|
221 |
msgstr "Calidad del vídeo:"
|
222 |
|
223 |
-
#: templates/admin_tabs.php:
|
224 |
msgid "default"
|
225 |
msgstr "por defecto"
|
226 |
|
227 |
-
#: templates/admin_tabs.php:
|
228 |
msgid "highres"
|
229 |
msgstr "alta resolución"
|
230 |
|
231 |
-
#: templates/admin_tabs.php:
|
232 |
msgid "hd1080"
|
233 |
msgstr "hd1080"
|
234 |
|
235 |
-
#: templates/admin_tabs.php:
|
236 |
msgid "hd720"
|
237 |
msgstr "hd720"
|
238 |
|
239 |
-
#: templates/admin_tabs.php:
|
240 |
msgid "large"
|
241 |
msgstr "largo"
|
242 |
|
243 |
-
#: templates/admin_tabs.php:
|
244 |
msgid "medium"
|
245 |
msgstr "mediano"
|
246 |
|
247 |
-
#: templates/admin_tabs.php:
|
248 |
msgid "small"
|
249 |
msgstr "pequeño"
|
250 |
|
251 |
-
#: templates/admin_tabs.php:
|
252 |
msgid ""
|
253 |
"Default value enables YouTube to select the most appropriate playback "
|
254 |
"quality. If you select a quality level that is not available for the video, "
|
@@ -259,15 +269,15 @@ msgstr ""
|
|
259 |
"disponible para el vídeo, la calidad se ajustará al siguiente nivel más bajo "
|
260 |
"que este disponible."
|
261 |
|
262 |
-
#: templates/admin_tabs.php:
|
263 |
msgid "Autoplay"
|
264 |
msgstr "Autoplay"
|
265 |
|
266 |
-
#: templates/admin_tabs.php:
|
267 |
msgid "Show YouTube logo"
|
268 |
msgstr "Mostrar el logotipo de YouTube"
|
269 |
|
270 |
-
#: templates/admin_tabs.php:
|
271 |
msgid ""
|
272 |
"Activate this field to show the YouTube logo in the control bar. Setting the "
|
273 |
"color parameter to white will show the YouTube logo in the control bar."
|
@@ -276,22 +286,22 @@ msgstr ""
|
|
276 |
"Un ajuste del parámetro de color a blanco mostrará el logotipo de YouTube en "
|
277 |
"la barra de control."
|
278 |
|
279 |
-
#: templates/admin_tabs.php:
|
280 |
msgid "Show related videos"
|
281 |
msgstr "Mostrar los vídeos relacionados"
|
282 |
|
283 |
-
#: templates/admin_tabs.php:
|
284 |
msgid ""
|
285 |
"Activate this field to show related videos when playback of the video ends."
|
286 |
msgstr ""
|
287 |
"Activa este campo para mostrar videos relacionados cuando termine la "
|
288 |
"reproducción del vídeo."
|
289 |
|
290 |
-
#: templates/admin_tabs.php:
|
291 |
msgid "Show info"
|
292 |
msgstr "Mostrar información"
|
293 |
|
294 |
-
#: templates/admin_tabs.php:
|
295 |
msgid ""
|
296 |
"Activate this field to display information like the video title and uploader "
|
297 |
"before the video starts playing."
|
@@ -299,198 +309,209 @@ msgstr ""
|
|
299 |
"Active este campo para mostrar información como el título del vídeo y nombre "
|
300 |
"de usuario antes de que el vídeo comience a reproducirse."
|
301 |
|
302 |
-
#: templates/admin_tabs.php:
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
|
|
|
|
307 |
|
308 |
-
#: templates/admin_tabs.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
309 |
msgid "Search input text:"
|
310 |
msgstr "Campo de búsqueda de texto:"
|
311 |
|
312 |
-
#: templates/admin_tabs.php:
|
313 |
msgid "Restrict search to (# separated):"
|
314 |
msgstr "Restringir búsqueda a (separa con #):"
|
315 |
|
316 |
-
#: templates/admin_tabs.php:
|
317 |
msgid "You must assing this tags to your videos to restrict the search:"
|
318 |
msgstr "Debes asignar estas etiquetas a los vídeos para restringir la búsqueda:"
|
319 |
|
320 |
-
#: templates/admin_tabs.php:
|
321 |
msgid "Restrict search by default: It will overwrite results of feed tab)"
|
322 |
msgstr ""
|
323 |
"Restringir búsqueda por defecto: Sobreescribirá los resultados de la pestaña "
|
324 |
"Feed"
|
325 |
|
326 |
-
#: templates/admin_tabs.php:
|
327 |
#: templates/search.php:10
|
328 |
msgid "All"
|
329 |
msgstr "Todos"
|
330 |
|
331 |
-
#: templates/admin_tabs.php:
|
332 |
msgid "Show search box"
|
333 |
msgstr "Mostrar caja de búsqueda"
|
334 |
|
335 |
-
#: templates/admin_tabs.php:
|
336 |
msgid "Show select with Playlists"
|
337 |
msgstr "Show desplegable con Playlistas"
|
338 |
|
339 |
-
#: templates/admin_tabs.php:
|
340 |
msgid "Number of videos to show:"
|
341 |
msgstr "Vídeos a mostrar:"
|
342 |
|
343 |
-
#: templates/admin_tabs.php:
|
344 |
msgid "The plugin can display a maximum of 50 videos for each page."
|
345 |
msgstr "El plugin puede mostrar un máximo de 50 vídeos por página."
|
346 |
|
347 |
-
#: templates/admin_tabs.php:
|
348 |
msgid "Thumbnail resolution:"
|
349 |
msgstr "Resolución de miniaturas:"
|
350 |
|
351 |
-
#: templates/admin_tabs.php:
|
352 |
msgid "Default (120x90 px)"
|
353 |
msgstr "Por defecto (120x90 px)"
|
354 |
|
355 |
-
#: templates/admin_tabs.php:
|
356 |
msgid "Medium (320x180)"
|
357 |
msgstr "Media (320x180)"
|
358 |
|
359 |
-
#: templates/admin_tabs.php:
|
360 |
msgid "High (480x360)"
|
361 |
msgstr "Alta (480x360)"
|
362 |
|
363 |
-
#: templates/admin_tabs.php:
|
364 |
msgid "Thumbnail columns:"
|
365 |
msgstr "Columnas de las miniaturas:"
|
366 |
|
367 |
-
#: templates/admin_tabs.php:
|
368 |
msgid "Phones:"
|
369 |
msgstr "Móviles:"
|
370 |
|
371 |
-
#: templates/admin_tabs.php:
|
372 |
msgid "Tablets:"
|
373 |
msgstr "Tablet:"
|
374 |
|
375 |
-
#: templates/admin_tabs.php:
|
376 |
msgid "Medium Desktops:"
|
377 |
msgstr "Escritorios medio:"
|
378 |
|
379 |
-
#: templates/admin_tabs.php:
|
380 |
msgid "Large Desktops:"
|
381 |
msgstr "Escritorios grandes:"
|
382 |
|
383 |
-
#: templates/admin_tabs.php:
|
384 |
-
msgid "Show
|
385 |
-
msgstr "Mostrar
|
386 |
-
|
387 |
-
#: templates/admin_tabs.php:331
|
388 |
-
msgid "Show title"
|
389 |
-
msgstr "Mostrar Título"
|
390 |
-
|
391 |
-
#: templates/admin_tabs.php:335
|
392 |
-
msgid "Show description"
|
393 |
-
msgstr "Mostrar descripción"
|
394 |
-
|
395 |
-
#: templates/admin_tabs.php:341
|
396 |
-
msgid "Title tag:"
|
397 |
-
msgstr "Etiqueta de título:"
|
398 |
-
|
399 |
-
#: templates/admin_tabs.php:343
|
400 |
-
msgid "h1"
|
401 |
-
msgstr "h1"
|
402 |
-
|
403 |
-
#: templates/admin_tabs.php:344
|
404 |
-
msgid "h2"
|
405 |
-
msgstr "h2"
|
406 |
-
|
407 |
-
#: templates/admin_tabs.php:345
|
408 |
-
msgid "h3"
|
409 |
-
msgstr "h3"
|
410 |
-
|
411 |
-
#: templates/admin_tabs.php:346
|
412 |
-
msgid "h4"
|
413 |
-
msgstr "h4"
|
414 |
-
|
415 |
-
#: templates/admin_tabs.php:347
|
416 |
-
msgid "h5"
|
417 |
-
msgstr "h5"
|
418 |
-
|
419 |
-
#: templates/admin_tabs.php:348
|
420 |
-
msgid "h6"
|
421 |
-
msgstr "h6"
|
422 |
-
|
423 |
-
#: templates/admin_tabs.php:352
|
424 |
-
msgid "Description words:"
|
425 |
-
msgstr "Palabras en descripción:"
|
426 |
|
427 |
-
#: templates/admin_tabs.php:
|
428 |
-
msgid
|
429 |
-
"
|
430 |
-
"This field is useful when the descriptions of videos in the gallery have "
|
431 |
-
"different sizes."
|
432 |
-
msgstr ""
|
433 |
-
"Establece el número máximo de palabras que se mostrarán en la descripción. "
|
434 |
-
"Este campo es útil cuando la descripción de los vídeos de la galería tienen "
|
435 |
-
"diferentes tamaños."
|
436 |
|
437 |
-
#: templates/admin_tabs.php:
|
438 |
msgid "Thumbnail alignment:"
|
439 |
msgstr "Alineación de miniaturas:"
|
440 |
|
441 |
-
#: templates/admin_tabs.php:
|
442 |
msgid "none"
|
443 |
msgstr "Ninguno"
|
444 |
|
445 |
-
#: templates/admin_tabs.php:
|
446 |
msgid "Left"
|
447 |
msgstr "Izquierda"
|
448 |
|
449 |
-
#: templates/admin_tabs.php:
|
450 |
msgid "Right"
|
451 |
msgstr "Derecha"
|
452 |
|
453 |
-
#: templates/admin_tabs.php:
|
454 |
msgid "Thumbnail width:"
|
455 |
msgstr "Ancho de miniaturas:"
|
456 |
|
457 |
-
#: templates/admin_tabs.php:
|
458 |
msgid "Extra small"
|
459 |
msgstr "Extra pequeño"
|
460 |
|
461 |
-
#: templates/admin_tabs.php:
|
462 |
msgid "Small"
|
463 |
msgstr "Pequeño"
|
464 |
|
465 |
-
#: templates/admin_tabs.php:
|
466 |
msgid "Half"
|
467 |
msgstr "Medio"
|
468 |
|
469 |
-
#: templates/admin_tabs.php:
|
470 |
msgid "Large"
|
471 |
msgstr "Grande"
|
472 |
|
473 |
-
#: templates/admin_tabs.php:
|
474 |
msgid "Extra large"
|
475 |
msgstr "Extra grande"
|
476 |
|
477 |
-
#: templates/admin_tabs.php:
|
478 |
msgid "Min. size with alignment:"
|
479 |
msgstr "Mín. tamaño con alineación:"
|
480 |
|
481 |
-
#: templates/admin_tabs.php:
|
482 |
msgid "Tablets"
|
483 |
-
msgstr "Tablet
|
484 |
|
485 |
-
#: templates/admin_tabs.php:
|
486 |
msgid "Medium Desktops"
|
487 |
-
msgstr "Escritorio medio
|
488 |
|
489 |
-
#: templates/admin_tabs.php:
|
490 |
msgid "Large devices"
|
491 |
msgstr "Dispositivos grandes"
|
492 |
|
493 |
-
#: templates/admin_tabs.php:
|
494 |
msgid ""
|
495 |
"Thumbnails will be aligned only from the size of selected device to prevent "
|
496 |
"unwanted effects in small sizes."
|
@@ -498,43 +519,43 @@ msgstr ""
|
|
498 |
"Las miniaturas serán alineadas sólo desde el tamaño del dispositivo "
|
499 |
"seleccionado para prevenir efectos no deseados en dispositivos pequeños."
|
500 |
|
501 |
-
#: templates/admin_tabs.php:
|
502 |
-
msgid "
|
503 |
-
msgstr "
|
504 |
-
|
505 |
-
#: templates/admin_tabs.php:396
|
506 |
-
msgid ""
|
507 |
-
"\"nofollow\" attribute provides a way for webmasters to tell search engines "
|
508 |
-
"\"Don't follow this specific link.\""
|
509 |
-
msgstr ""
|
510 |
-
"El atributo \"nofollow\" ofrece a los webmasters un modo de indicar a los "
|
511 |
-
"motores de búsqueda para no seguir un enlace."
|
512 |
-
|
513 |
-
#: templates/admin_tabs.php:402 templates/admin_tabs.php:447
|
514 |
-
msgid "Open in a new window or tab"
|
515 |
-
msgstr "Abrir en una ventana nueva o pestaña"
|
516 |
|
517 |
-
#: templates/admin_tabs.php:
|
518 |
msgid "Show pagination"
|
519 |
msgstr "Mostrar paginación"
|
520 |
|
521 |
-
#: templates/admin_tabs.php:
|
|
|
|
|
|
|
|
|
522 |
msgid "Thumbnail:"
|
523 |
msgstr "Miniatura:"
|
524 |
|
525 |
-
#: templates/admin_tabs.php:
|
|
|
|
|
|
|
|
|
526 |
msgid "Description:"
|
527 |
msgstr "Descripción:"
|
528 |
|
529 |
-
#: templates/admin_tabs.php:
|
530 |
msgid "Link text:"
|
531 |
msgstr "Texto del enlace"
|
532 |
|
533 |
-
#: templates/admin_tabs.php:
|
534 |
msgid "Show link to channel"
|
535 |
msgstr "Mostrar enlace al canal"
|
536 |
|
537 |
-
#: templates/admin_tabs.php:
|
|
|
|
|
|
|
|
|
538 |
msgid "Show link to thank the developer"
|
539 |
msgstr "Mostrar enlace para agradecer al desarrollador"
|
540 |
|
@@ -550,11 +571,11 @@ msgstr "Ver más vídeos"
|
|
550 |
msgid "Private video"
|
551 |
msgstr "Vídeo privado"
|
552 |
|
553 |
-
#: templates/thumbs.php:
|
554 |
msgid "«Previous"
|
555 |
msgstr "«Anterior"
|
556 |
|
557 |
-
#: templates/thumbs.php:
|
558 |
msgid "Next»"
|
559 |
msgstr "Siguiente»"
|
560 |
|
@@ -566,50 +587,50 @@ msgstr "Galería de Canal de Youtube"
|
|
566 |
msgid "Show a youtube video and a gallery of thumbnails for a youtube channel"
|
567 |
msgstr "Muestra un vídeo y una galería de miniaturas de una canal de Youtube "
|
568 |
|
569 |
-
#: youtube-channel-gallery.php:
|
570 |
msgid "Show more videos»"
|
571 |
msgstr "Ver más vídeos»"
|
572 |
|
573 |
-
#: youtube-channel-gallery.php:
|
574 |
msgid "There is no video to show."
|
575 |
msgstr "No hay ningún vídeo para mostrar."
|
576 |
|
577 |
-
#: youtube-channel-gallery.php:
|
578 |
#, php-format
|
579 |
msgid "Error type: \"%1$s\". "
|
580 |
msgstr "Tipo de error: \"%1$s\". "
|
581 |
|
582 |
-
#: youtube-channel-gallery.php:
|
583 |
#, php-format
|
584 |
msgid "Error message: \"%1$s\" "
|
585 |
msgstr "Mensaje de error: \"%1$s\" "
|
586 |
|
587 |
-
#: youtube-channel-gallery.php:
|
588 |
#, php-format
|
589 |
msgid "Domain: \"%1$s\". "
|
590 |
msgstr "Dominio: \"%1$s\". "
|
591 |
|
592 |
-
#: youtube-channel-gallery.php:
|
593 |
#, php-format
|
594 |
msgid "Reason: \"%1$s\". "
|
595 |
msgstr "Razón: \"%1$s\". "
|
596 |
|
597 |
-
#: youtube-channel-gallery.php:
|
598 |
#, php-format
|
599 |
msgid "Location type: \"%1$s\". "
|
600 |
msgstr "Tipo de localización: \"%1$s\". "
|
601 |
|
602 |
-
#: youtube-channel-gallery.php:
|
603 |
#, php-format
|
604 |
msgid "Location: \"%1$s\". "
|
605 |
msgstr "Localización: \"%1$s\". "
|
606 |
|
607 |
-
#: youtube-channel-gallery.php:
|
608 |
#, php-format
|
609 |
msgid "Check in YouTube if the id %1$s belongs to a %2$s. "
|
610 |
msgstr "Comprueba en YouTube si el id %1$s corresponde a un %2$s. "
|
611 |
|
612 |
-
#: youtube-channel-gallery.php:
|
613 |
#, php-format
|
614 |
msgid ""
|
615 |
"If the user id is correct, check that the channel of the user has list of "
|
@@ -618,7 +639,7 @@ msgstr ""
|
|
618 |
"Si el id de usuario es correcto, comprueba que el canal de usuario tiene una "
|
619 |
"lista de \"%1$s\". "
|
620 |
|
621 |
-
#: youtube-channel-gallery.php:
|
622 |
msgid ""
|
623 |
"Check the <a href=\"http://wordpress.org/extend/plugins/youtube-channel-"
|
624 |
"gallery/faq/\" target=\"_blank\">FAQ</a> of the plugin or send error messages "
|
@@ -630,135 +651,13 @@ msgstr ""
|
|
630 |
"error a <a href=\"https://wordpress.org/support/plugin/youtube-channel-gallery"
|
631 |
"\" target=\"_blank\">support</a>."
|
632 |
|
633 |
-
#: youtube-channel-gallery.php:
|
634 |
msgid "There are no videos matching selected criteria"
|
635 |
msgstr "No hay vídeos que se ajusten al criterio seleccionado"
|
636 |
|
637 |
-
#~ msgid "Message from server: \"%1$s\". "
|
638 |
-
#~ msgstr "Mensaje del servidor: \"%1$s\". "
|
639 |
-
|
640 |
-
#~ msgid "Show player above thumbnails"
|
641 |
-
#~ msgstr "Mostrar reproductor sobre miniaturas"
|
642 |
-
|
643 |
-
#~ msgid ""
|
644 |
-
#~ "This field is used to assign the appropriate quality of thumbnail images "
|
645 |
-
#~ "in top and bottom alignments and to assign width to thumbnails in left and "
|
646 |
-
#~ "right alignments. If the quality of thumbnail images is not enough, insert "
|
647 |
-
#~ "a larger value. If you are unsure you can assign one of the following "
|
648 |
-
#~ "values: 120, 320, 480 or 640"
|
649 |
-
#~ msgstr ""
|
650 |
-
#~ "Este campo se utiliza para asignar la calidad de imagen más adecuada a las "
|
651 |
-
#~ "miniaturas en las alineaciones superior e inferior y para asignar ancho a "
|
652 |
-
#~ "las miniaturas en las alineaciones izquierda y derecha. Si la calidad de "
|
653 |
-
#~ "las imágenes de las miniaturas no es suficiente, introduzca un valor "
|
654 |
-
#~ "mayor. Si no está seguro de que valor usar puede asignar uno de los "
|
655 |
-
#~ "siguientes valores: 120, 320, 480 ó 640"
|
656 |
-
|
657 |
-
#~ msgid "Top"
|
658 |
-
#~ msgstr "Arriba"
|
659 |
-
|
660 |
-
#~ msgid "Bottom"
|
661 |
-
#~ msgstr "Abajo"
|
662 |
-
|
663 |
-
#~ msgid "Video width:"
|
664 |
-
#~ msgstr "Ancho del vídeo:"
|
665 |
-
|
666 |
-
#~ msgid "Show info (title, uploader)"
|
667 |
-
#~ msgstr "Mostrar información (título, cargador)"
|
668 |
-
|
669 |
-
#~ msgid "You must insert a valid YouTube user id."
|
670 |
-
#~ msgstr "Debes introducir un id válido de usuario de YouTube."
|
671 |
-
|
672 |
-
#~ msgid "You must insert a valid playlist id."
|
673 |
-
#~ msgstr "Debes introducir un id válido de lista de reproducción de YouTube."
|
674 |
-
|
675 |
-
#~ msgid "Light:"
|
676 |
-
#~ msgstr "Claro"
|
677 |
-
|
678 |
-
#~ msgid "No post to duplicate has been supplied!"
|
679 |
-
#~ msgstr "No se facilitó ninguna entrada a copiar"
|
680 |
-
|
681 |
-
#~ msgid "Post creation failed, could not find original post:"
|
682 |
-
#~ msgstr ""
|
683 |
-
#~ "Creación realizada sin éxito, no ha sido posible encontrar la entrada "
|
684 |
-
#~ "original:"
|
685 |
-
|
686 |
-
#~ msgid "No page to duplicate has been supplied!"
|
687 |
-
#~ msgstr "No se facilitó ninguna página a copiar"
|
688 |
-
|
689 |
-
#~ msgid "Make a duplicate from this post"
|
690 |
-
#~ msgstr "Crea una copia de esta entrada"
|
691 |
-
|
692 |
-
#~ msgid "Duplicate"
|
693 |
-
#~ msgstr "Duplicar"
|
694 |
-
|
695 |
-
#~ msgid "Make a duplicate from this page"
|
696 |
-
#~ msgstr "Crea una copia de esta página"
|
697 |
-
|
698 |
-
#~ msgid "Copy to a new draft"
|
699 |
-
#~ msgstr "Copia en un borrador nuevo"
|
700 |
-
|
701 |
-
#~ msgid "Duplicate Post Options"
|
702 |
-
#~ msgstr "Opciones"
|
703 |
-
|
704 |
-
#~ msgid "Duplicate Post"
|
705 |
-
#~ msgstr "Duplicate Post"
|
706 |
-
|
707 |
-
#~ msgid "Copy post/page date also"
|
708 |
-
#~ msgstr "Copiar también fecha del post o la página"
|
709 |
-
|
710 |
-
#~ msgid ""
|
711 |
-
#~ "Normally, the new draft has publication date set to current time: check "
|
712 |
-
#~ "the box to copy the original post/page date"
|
713 |
-
#~ msgstr ""
|
714 |
-
#~ "Normalmente se establece la fecha de publicación del nuevo borrador a la "
|
715 |
-
#~ "fecha actual: compruebe la casilla para copiar la fecha original del post "
|
716 |
-
#~ "o la página"
|
717 |
-
|
718 |
-
#~ msgid "Do not copy these fields"
|
719 |
-
#~ msgstr "No copiar estos campos"
|
720 |
-
|
721 |
-
#~ msgid ""
|
722 |
-
#~ "Comma-separated list of meta fields that must not be copied when cloning a "
|
723 |
-
#~ "post/page"
|
724 |
-
#~ msgstr ""
|
725 |
-
#~ "Lista separada por comas de meta campos que no pueden ser copiados cuando "
|
726 |
-
#~ "se clona una entrada/pagina."
|
727 |
-
|
728 |
-
#~ msgid ""
|
729 |
-
#~ "Prefix to be added before the original title when cloning a post/page, e."
|
730 |
-
#~ "g. \"Copy of\" (blank for no prefix)"
|
731 |
-
#~ msgstr ""
|
732 |
-
#~ "Prefijo a ser agregado antes del titulo original cuando se clona una "
|
733 |
-
#~ "entrada/pagina, ej. \"Copia de\" (en blanco para no agregar prefijo)"
|
734 |
-
|
735 |
-
#~ msgid "Minimum level to copy posts"
|
736 |
-
#~ msgstr "Nivel mínimo para copiar posts"
|
737 |
-
|
738 |
#~ msgid ""
|
739 |
-
#~
|
740 |
-
#~ "
|
741 |
#~ msgstr ""
|
742 |
-
#~ "
|
743 |
-
#~ "
|
744 |
-
|
745 |
-
#~ msgid "Save Changes"
|
746 |
-
#~ msgstr "Guardar los cambios"
|
747 |
-
|
748 |
-
#~ msgid "Donate"
|
749 |
-
#~ msgstr "Hacer una donación"
|
750 |
-
|
751 |
-
#~ msgid "Translate"
|
752 |
-
#~ msgstr "Traducir"
|
753 |
-
|
754 |
-
#~ msgid "http://www.lopo.it/duplicate-post-plugin/"
|
755 |
-
#~ msgstr "Copy text \t http://www.lopo.it/duplicate-post-plugin/"
|
756 |
-
|
757 |
-
#~ msgid "Creates a copy of a post."
|
758 |
-
#~ msgstr "Crear una copia de las entradas."
|
759 |
-
|
760 |
-
#~ msgid "Enrico Battocchi"
|
761 |
-
#~ msgstr "Enrico Battocchi"
|
762 |
-
|
763 |
-
#~ msgid "http://www.lopo.it"
|
764 |
-
#~ msgstr "http://www.lopo.it"
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: youtube-channel-gallery\n"
|
9 |
"Report-Msgid-Bugs-To: \n"
|
10 |
+
"POT-Creation-Date: 2015-07-30 00:50+0200\n"
|
11 |
+
"PO-Revision-Date: 2015-07-30 00:51+0200\n"
|
12 |
"Last-Translator: Javier <javierpose@gmail.com>\n"
|
13 |
"Language-Team: PoseLab <javierpose@gmail.com>\n"
|
14 |
"Language: es_ES\n"
|
16 |
"Content-Type: text/plain; charset=UTF-8\n"
|
17 |
"Content-Transfer-Encoding: 8bit\n"
|
18 |
"X-Launchpad-Export-Date: 2010-06-23 21:48+0000\n"
|
19 |
+
"X-Generator: Poedit 1.8.3\n"
|
20 |
"X-Poedit-Basepath: ..\n"
|
21 |
"X-Poedit-KeywordsList: _e;__\n"
|
22 |
"X-Poedit-SourceCharset: utf-8\n"
|
23 |
"X-Poedit-SearchPath-0: .\n"
|
24 |
|
25 |
+
#: templates/admin_tabs.php:3 templates/admin_tabs.php:489
|
26 |
msgid "Title:"
|
27 |
msgstr "Título:"
|
28 |
|
54 |
msgid "Get your own YouTube API Key and put here."
|
55 |
msgstr "Obtén tu propia YouTube API Key e insertada aquí"
|
56 |
|
57 |
+
#: templates/admin_tabs.php:29
|
58 |
+
msgid ""
|
59 |
+
"Get <a href=\"https://console.developers.google.com/\" target=\"_blank\">your "
|
60 |
+
"Google API key</a>. See <a href=\"http://poselab.com/en/youtube-channel-"
|
61 |
+
"gallery-help/\" target=\"_blank\">help</a>"
|
62 |
+
msgstr ""
|
63 |
+
"Obtén tu <a href=\"https://console.developers.google.com/\" target=\"_blank"
|
64 |
+
"\">Google API key</a>. Mira la <a href=\"http://poselab.com/en/youtube-"
|
65 |
+
"channel-gallery-help/\" target=\"_blank\">ayuda</a>"
|
66 |
+
|
67 |
+
#: templates/admin_tabs.php:34
|
68 |
msgid "Video feed type:"
|
69 |
msgstr "Tipo de feed de vídeo:"
|
70 |
|
71 |
+
#: templates/admin_tabs.php:36
|
72 |
msgid "Uploaded by a user"
|
73 |
msgstr "Subidos por el usuario"
|
74 |
|
75 |
+
#: templates/admin_tabs.php:37
|
76 |
msgid "User's favorites"
|
77 |
msgstr "Favoritos del usuario"
|
78 |
|
79 |
+
#: templates/admin_tabs.php:38
|
80 |
msgid "User's likes"
|
81 |
msgstr "Likes de usuario"
|
82 |
|
83 |
+
#: templates/admin_tabs.php:39
|
84 |
msgid "Playlist"
|
85 |
msgstr "Lista de reproducción"
|
86 |
|
87 |
+
#: templates/admin_tabs.php:44
|
88 |
msgid "Identify by:"
|
89 |
msgstr "Identificar por:"
|
90 |
|
91 |
+
#: templates/admin_tabs.php:46
|
92 |
msgid "Username"
|
93 |
msgstr "Nombre de usuario"
|
94 |
|
95 |
+
#: templates/admin_tabs.php:47
|
96 |
msgid "Channel ID"
|
97 |
msgstr "ID de canal:"
|
98 |
|
99 |
+
#: templates/admin_tabs.php:51
|
100 |
msgid "YouTube id:"
|
101 |
msgstr "Id de Youtube:"
|
102 |
|
103 |
+
#: templates/admin_tabs.php:52
|
104 |
msgid "YouTube playlist id:"
|
105 |
msgstr "Id de lista de reproducción de YouTube:"
|
106 |
|
107 |
+
#: templates/admin_tabs.php:58
|
108 |
msgid "Playlist order:"
|
109 |
msgstr "Orden de lista de reproducción:"
|
110 |
|
111 |
+
#: templates/admin_tabs.php:60
|
112 |
msgid "Date Order"
|
113 |
msgstr "Ordenar por fecha"
|
114 |
|
115 |
+
#: templates/admin_tabs.php:61
|
116 |
msgid "Rating Order"
|
117 |
msgstr "Ordenar por calificación"
|
118 |
|
119 |
+
#: templates/admin_tabs.php:62
|
120 |
msgid "Relevance Order"
|
121 |
msgstr "Ordenar por relevancia"
|
122 |
|
123 |
+
#: templates/admin_tabs.php:63
|
124 |
msgid "Title Order"
|
125 |
msgstr "Ordenar por título"
|
126 |
|
127 |
+
#: templates/admin_tabs.php:64
|
128 |
msgid "Video Count Order"
|
129 |
msgstr "Ordenar por número de vídeos subidos"
|
130 |
|
131 |
+
#: templates/admin_tabs.php:65
|
132 |
msgid "View Count Order"
|
133 |
msgstr "Ordenar por número de reproducciones"
|
134 |
|
135 |
+
#: templates/admin_tabs.php:72
|
136 |
msgid "Cache time (hours):"
|
137 |
msgstr "Tiempo de cache (horas):"
|
138 |
|
139 |
+
#: templates/admin_tabs.php:74
|
140 |
msgid ""
|
141 |
"Hours that RSS data is saved in database, to not make a request every time "
|
142 |
"the page is displayed. Assign this value according to how often you upgrade "
|
146 |
"solicitud cada vez que se muestra la página. Asigna este valor en función de "
|
147 |
"la frecuencia con que actualizas la lista de reproducción en YouTube."
|
148 |
|
149 |
+
#: templates/admin_tabs.php:81
|
150 |
msgid "Activate cache"
|
151 |
msgstr "Activar caché"
|
152 |
|
153 |
+
#: templates/admin_tabs.php:82
|
154 |
msgid ""
|
155 |
"If you disable this field the cache will be deleted and will not be used. "
|
156 |
"This is useful to refresh immediately the YouTube RSS used by the plugin. "
|
162 |
"Vuelve a habilitar la caché cuando la galería muestre los cambios que ha "
|
163 |
"realizado en su cuenta de YouTube."
|
164 |
|
165 |
+
#: templates/admin_tabs.php:97
|
166 |
msgid "Player:"
|
167 |
msgstr "Reproductor:"
|
168 |
|
169 |
+
#: templates/admin_tabs.php:99
|
170 |
msgid "Without player"
|
171 |
msgstr "Sin reproductor"
|
172 |
|
173 |
+
#: templates/admin_tabs.php:100
|
174 |
msgid "show player"
|
175 |
msgstr "mostrar reproductor"
|
176 |
|
177 |
+
#: templates/admin_tabs.php:101
|
178 |
msgid "show player in Magnific Popup"
|
179 |
msgstr "mostrar reproductor en Magnific Popup"
|
180 |
|
181 |
+
#: templates/admin_tabs.php:108
|
182 |
msgid "Width:"
|
183 |
msgstr "Ancho:"
|
184 |
|
185 |
+
#: templates/admin_tabs.php:111
|
186 |
msgid "%"
|
187 |
msgstr "%"
|
188 |
|
189 |
+
#: templates/admin_tabs.php:112
|
190 |
msgid "px"
|
191 |
msgstr "px"
|
192 |
|
193 |
+
#: templates/admin_tabs.php:116 templates/admin_tabs.php:316
|
194 |
msgid "Aspect ratio:"
|
195 |
msgstr "Relación de aspecto:"
|
196 |
|
197 |
+
#: templates/admin_tabs.php:118 templates/admin_tabs.php:318
|
198 |
msgid "Standard (4x3)"
|
199 |
msgstr "Estándar (4x3)"
|
200 |
|
201 |
+
#: templates/admin_tabs.php:119 templates/admin_tabs.php:319
|
202 |
msgid "Widescreen (16x9)"
|
203 |
msgstr "Panorámico (16x9)"
|
204 |
|
205 |
+
#: templates/admin_tabs.php:126
|
206 |
msgid "Theme:"
|
207 |
msgstr "Tema:"
|
208 |
|
209 |
+
#: templates/admin_tabs.php:128
|
210 |
msgid "Dark"
|
211 |
msgstr "Oscuro"
|
212 |
|
213 |
+
#: templates/admin_tabs.php:129
|
214 |
msgid "Light"
|
215 |
msgstr "Claro"
|
216 |
|
217 |
+
#: templates/admin_tabs.php:133
|
218 |
msgid "Progress bar color:"
|
219 |
msgstr "Color de barra de progreso:"
|
220 |
|
221 |
+
#: templates/admin_tabs.php:135
|
222 |
msgid "Red"
|
223 |
msgstr "Rojo"
|
224 |
|
225 |
+
#: templates/admin_tabs.php:136
|
226 |
msgid "White"
|
227 |
msgstr "Blanco"
|
228 |
|
229 |
+
#: templates/admin_tabs.php:143
|
230 |
msgid "Video quality:"
|
231 |
msgstr "Calidad del vídeo:"
|
232 |
|
233 |
+
#: templates/admin_tabs.php:145
|
234 |
msgid "default"
|
235 |
msgstr "por defecto"
|
236 |
|
237 |
+
#: templates/admin_tabs.php:146
|
238 |
msgid "highres"
|
239 |
msgstr "alta resolución"
|
240 |
|
241 |
+
#: templates/admin_tabs.php:147
|
242 |
msgid "hd1080"
|
243 |
msgstr "hd1080"
|
244 |
|
245 |
+
#: templates/admin_tabs.php:148
|
246 |
msgid "hd720"
|
247 |
msgstr "hd720"
|
248 |
|
249 |
+
#: templates/admin_tabs.php:149
|
250 |
msgid "large"
|
251 |
msgstr "largo"
|
252 |
|
253 |
+
#: templates/admin_tabs.php:150
|
254 |
msgid "medium"
|
255 |
msgstr "mediano"
|
256 |
|
257 |
+
#: templates/admin_tabs.php:151
|
258 |
msgid "small"
|
259 |
msgstr "pequeño"
|
260 |
|
261 |
+
#: templates/admin_tabs.php:153
|
262 |
msgid ""
|
263 |
"Default value enables YouTube to select the most appropriate playback "
|
264 |
"quality. If you select a quality level that is not available for the video, "
|
269 |
"disponible para el vídeo, la calidad se ajustará al siguiente nivel más bajo "
|
270 |
"que este disponible."
|
271 |
|
272 |
+
#: templates/admin_tabs.php:160
|
273 |
msgid "Autoplay"
|
274 |
msgstr "Autoplay"
|
275 |
|
276 |
+
#: templates/admin_tabs.php:164
|
277 |
msgid "Show YouTube logo"
|
278 |
msgstr "Mostrar el logotipo de YouTube"
|
279 |
|
280 |
+
#: templates/admin_tabs.php:165
|
281 |
msgid ""
|
282 |
"Activate this field to show the YouTube logo in the control bar. Setting the "
|
283 |
"color parameter to white will show the YouTube logo in the control bar."
|
286 |
"Un ajuste del parámetro de color a blanco mostrará el logotipo de YouTube en "
|
287 |
"la barra de control."
|
288 |
|
289 |
+
#: templates/admin_tabs.php:172
|
290 |
msgid "Show related videos"
|
291 |
msgstr "Mostrar los vídeos relacionados"
|
292 |
|
293 |
+
#: templates/admin_tabs.php:173
|
294 |
msgid ""
|
295 |
"Activate this field to show related videos when playback of the video ends."
|
296 |
msgstr ""
|
297 |
"Activa este campo para mostrar videos relacionados cuando termine la "
|
298 |
"reproducción del vídeo."
|
299 |
|
300 |
+
#: templates/admin_tabs.php:177
|
301 |
msgid "Show info"
|
302 |
msgstr "Mostrar información"
|
303 |
|
304 |
+
#: templates/admin_tabs.php:178
|
305 |
msgid ""
|
306 |
"Activate this field to display information like the video title and uploader "
|
307 |
"before the video starts playing."
|
309 |
"Active este campo para mostrar información como el título del vídeo y nombre "
|
310 |
"de usuario antes de que el vídeo comience a reproducirse."
|
311 |
|
312 |
+
#: templates/admin_tabs.php:185 templates/admin_tabs.php:387
|
313 |
+
msgid "Show additional content"
|
314 |
+
msgstr "Mostrar contenido adicional"
|
315 |
+
|
316 |
+
#: templates/admin_tabs.php:193 templates/admin_tabs.php:395
|
317 |
+
msgid "Show title"
|
318 |
+
msgstr "Mostrar Título"
|
319 |
|
320 |
+
#: templates/admin_tabs.php:197 templates/admin_tabs.php:399
|
321 |
+
msgid "Show published date"
|
322 |
+
msgstr "Mostrar fecha de publicación"
|
323 |
+
|
324 |
+
#: templates/admin_tabs.php:204 templates/admin_tabs.php:406
|
325 |
+
msgid "Show description"
|
326 |
+
msgstr "Mostrar descripción"
|
327 |
+
|
328 |
+
#: templates/admin_tabs.php:212 templates/admin_tabs.php:414
|
329 |
+
msgid "Title tag:"
|
330 |
+
msgstr "Etiqueta de título:"
|
331 |
+
|
332 |
+
#: templates/admin_tabs.php:214 templates/admin_tabs.php:416
|
333 |
+
msgid "h1"
|
334 |
+
msgstr "h1"
|
335 |
+
|
336 |
+
#: templates/admin_tabs.php:215 templates/admin_tabs.php:417
|
337 |
+
msgid "h2"
|
338 |
+
msgstr "h2"
|
339 |
+
|
340 |
+
#: templates/admin_tabs.php:216 templates/admin_tabs.php:418
|
341 |
+
msgid "h3"
|
342 |
+
msgstr "h3"
|
343 |
+
|
344 |
+
#: templates/admin_tabs.php:217 templates/admin_tabs.php:419
|
345 |
+
msgid "h4"
|
346 |
+
msgstr "h4"
|
347 |
+
|
348 |
+
#: templates/admin_tabs.php:218 templates/admin_tabs.php:420
|
349 |
+
msgid "h5"
|
350 |
+
msgstr "h5"
|
351 |
+
|
352 |
+
#: templates/admin_tabs.php:219 templates/admin_tabs.php:421
|
353 |
+
msgid "h6"
|
354 |
+
msgstr "h6"
|
355 |
+
|
356 |
+
#: templates/admin_tabs.php:223 templates/admin_tabs.php:425
|
357 |
+
msgid "Description words:"
|
358 |
+
msgstr "Palabras en descripción:"
|
359 |
+
|
360 |
+
#: templates/admin_tabs.php:225 templates/admin_tabs.php:427
|
361 |
+
msgid ""
|
362 |
+
"Set the maximum number of words that will be displayed of the description. "
|
363 |
+
"This field is useful when the descriptions of videos in the gallery have "
|
364 |
+
"different sizes."
|
365 |
+
msgstr ""
|
366 |
+
"Establece el número máximo de palabras que se mostrarán en la descripción. "
|
367 |
+
"Este campo es útil cuando la descripción de los vídeos de la galería tienen "
|
368 |
+
"diferentes tamaños."
|
369 |
+
|
370 |
+
#: templates/admin_tabs.php:234 templates/admin_tabs.php:286
|
371 |
+
#: templates/admin_tabs.php:503 templates/admin_tabs.php:540
|
372 |
+
msgid "Tab order:"
|
373 |
+
msgstr "Orden de pestaña:"
|
374 |
+
|
375 |
+
#: templates/admin_tabs.php:251
|
376 |
msgid "Search input text:"
|
377 |
msgstr "Campo de búsqueda de texto:"
|
378 |
|
379 |
+
#: templates/admin_tabs.php:255
|
380 |
msgid "Restrict search to (# separated):"
|
381 |
msgstr "Restringir búsqueda a (separa con #):"
|
382 |
|
383 |
+
#: templates/admin_tabs.php:259
|
384 |
msgid "You must assing this tags to your videos to restrict the search:"
|
385 |
msgstr "Debes asignar estas etiquetas a los vídeos para restringir la búsqueda:"
|
386 |
|
387 |
+
#: templates/admin_tabs.php:268
|
388 |
msgid "Restrict search by default: It will overwrite results of feed tab)"
|
389 |
msgstr ""
|
390 |
"Restringir búsqueda por defecto: Sobreescribirá los resultados de la pestaña "
|
391 |
"Feed"
|
392 |
|
393 |
+
#: templates/admin_tabs.php:270 templates/admin_tabs.php:456
|
394 |
#: templates/search.php:10
|
395 |
msgid "All"
|
396 |
msgstr "Todos"
|
397 |
|
398 |
+
#: templates/admin_tabs.php:278
|
399 |
msgid "Show search box"
|
400 |
msgstr "Mostrar caja de búsqueda"
|
401 |
|
402 |
+
#: templates/admin_tabs.php:282
|
403 |
msgid "Show select with Playlists"
|
404 |
msgstr "Show desplegable con Playlistas"
|
405 |
|
406 |
+
#: templates/admin_tabs.php:300
|
407 |
msgid "Number of videos to show:"
|
408 |
msgstr "Vídeos a mostrar:"
|
409 |
|
410 |
+
#: templates/admin_tabs.php:302
|
411 |
msgid "The plugin can display a maximum of 50 videos for each page."
|
412 |
msgstr "El plugin puede mostrar un máximo de 50 vídeos por página."
|
413 |
|
414 |
+
#: templates/admin_tabs.php:305
|
415 |
msgid "Thumbnail resolution:"
|
416 |
msgstr "Resolución de miniaturas:"
|
417 |
|
418 |
+
#: templates/admin_tabs.php:307
|
419 |
msgid "Default (120x90 px)"
|
420 |
msgstr "Por defecto (120x90 px)"
|
421 |
|
422 |
+
#: templates/admin_tabs.php:308
|
423 |
msgid "Medium (320x180)"
|
424 |
msgstr "Media (320x180)"
|
425 |
|
426 |
+
#: templates/admin_tabs.php:309
|
427 |
msgid "High (480x360)"
|
428 |
msgstr "Alta (480x360)"
|
429 |
|
430 |
+
#: templates/admin_tabs.php:326
|
431 |
msgid "Thumbnail columns:"
|
432 |
msgstr "Columnas de las miniaturas:"
|
433 |
|
434 |
+
#: templates/admin_tabs.php:332
|
435 |
msgid "Phones:"
|
436 |
msgstr "Móviles:"
|
437 |
|
438 |
+
#: templates/admin_tabs.php:340
|
439 |
msgid "Tablets:"
|
440 |
msgstr "Tablet:"
|
441 |
|
442 |
+
#: templates/admin_tabs.php:352
|
443 |
msgid "Medium Desktops:"
|
444 |
msgstr "Escritorios medio:"
|
445 |
|
446 |
+
#: templates/admin_tabs.php:360
|
447 |
msgid "Large Desktops:"
|
448 |
msgstr "Escritorios grandes:"
|
449 |
|
450 |
+
#: templates/admin_tabs.php:374
|
451 |
+
msgid "Show duration"
|
452 |
+
msgstr "Mostrar duración"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
453 |
|
454 |
+
#: templates/admin_tabs.php:378
|
455 |
+
msgid "Add \"nofollow\" to links"
|
456 |
+
msgstr "Añade \"nofollow\" a enlaces"
|
|
|
|
|
|
|
|
|
|
|
|
|
457 |
|
458 |
+
#: templates/admin_tabs.php:433
|
459 |
msgid "Thumbnail alignment:"
|
460 |
msgstr "Alineación de miniaturas:"
|
461 |
|
462 |
+
#: templates/admin_tabs.php:435
|
463 |
msgid "none"
|
464 |
msgstr "Ninguno"
|
465 |
|
466 |
+
#: templates/admin_tabs.php:436
|
467 |
msgid "Left"
|
468 |
msgstr "Izquierda"
|
469 |
|
470 |
+
#: templates/admin_tabs.php:437
|
471 |
msgid "Right"
|
472 |
msgstr "Derecha"
|
473 |
|
474 |
+
#: templates/admin_tabs.php:444
|
475 |
msgid "Thumbnail width:"
|
476 |
msgstr "Ancho de miniaturas:"
|
477 |
|
478 |
+
#: templates/admin_tabs.php:446
|
479 |
msgid "Extra small"
|
480 |
msgstr "Extra pequeño"
|
481 |
|
482 |
+
#: templates/admin_tabs.php:447
|
483 |
msgid "Small"
|
484 |
msgstr "Pequeño"
|
485 |
|
486 |
+
#: templates/admin_tabs.php:448
|
487 |
msgid "Half"
|
488 |
msgstr "Medio"
|
489 |
|
490 |
+
#: templates/admin_tabs.php:449
|
491 |
msgid "Large"
|
492 |
msgstr "Grande"
|
493 |
|
494 |
+
#: templates/admin_tabs.php:450
|
495 |
msgid "Extra large"
|
496 |
msgstr "Extra grande"
|
497 |
|
498 |
+
#: templates/admin_tabs.php:454
|
499 |
msgid "Min. size with alignment:"
|
500 |
msgstr "Mín. tamaño con alineación:"
|
501 |
|
502 |
+
#: templates/admin_tabs.php:457
|
503 |
msgid "Tablets"
|
504 |
+
msgstr "Tablet"
|
505 |
|
506 |
+
#: templates/admin_tabs.php:458
|
507 |
msgid "Medium Desktops"
|
508 |
+
msgstr "Escritorio medio"
|
509 |
|
510 |
+
#: templates/admin_tabs.php:459
|
511 |
msgid "Large devices"
|
512 |
msgstr "Dispositivos grandes"
|
513 |
|
514 |
+
#: templates/admin_tabs.php:461
|
515 |
msgid ""
|
516 |
"Thumbnails will be aligned only from the size of selected device to prevent "
|
517 |
"unwanted effects in small sizes."
|
519 |
"Las miniaturas serán alineadas sólo desde el tamaño del dispositivo "
|
520 |
"seleccionado para prevenir efectos no deseados en dispositivos pequeños."
|
521 |
|
522 |
+
#: templates/admin_tabs.php:471
|
523 |
+
msgid "Open in a new window"
|
524 |
+
msgstr "Abrir en ventana nueva"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
525 |
|
526 |
+
#: templates/admin_tabs.php:475
|
527 |
msgid "Show pagination"
|
528 |
msgstr "Mostrar paginación"
|
529 |
|
530 |
+
#: templates/admin_tabs.php:482
|
531 |
+
msgid "Thumbnail content tab order:"
|
532 |
+
msgstr "Orden del contenido de pestaña miniaturas:"
|
533 |
+
|
534 |
+
#: templates/admin_tabs.php:485
|
535 |
msgid "Thumbnail:"
|
536 |
msgstr "Miniatura:"
|
537 |
|
538 |
+
#: templates/admin_tabs.php:493
|
539 |
+
msgid "Published date:"
|
540 |
+
msgstr "Fecha de publicación"
|
541 |
+
|
542 |
+
#: templates/admin_tabs.php:497
|
543 |
msgid "Description:"
|
544 |
msgstr "Descripción:"
|
545 |
|
546 |
+
#: templates/admin_tabs.php:519
|
547 |
msgid "Link text:"
|
548 |
msgstr "Texto del enlace"
|
549 |
|
550 |
+
#: templates/admin_tabs.php:525
|
551 |
msgid "Show link to channel"
|
552 |
msgstr "Mostrar enlace al canal"
|
553 |
|
554 |
+
#: templates/admin_tabs.php:530
|
555 |
+
msgid "Open in a new window or tab"
|
556 |
+
msgstr "Abrir en una ventana nueva o pestaña"
|
557 |
+
|
558 |
+
#: templates/admin_tabs.php:535
|
559 |
msgid "Show link to thank the developer"
|
560 |
msgstr "Mostrar enlace para agradecer al desarrollador"
|
561 |
|
571 |
msgid "Private video"
|
572 |
msgstr "Vídeo privado"
|
573 |
|
574 |
+
#: templates/thumbs.php:119
|
575 |
msgid "«Previous"
|
576 |
msgstr "«Anterior"
|
577 |
|
578 |
+
#: templates/thumbs.php:128
|
579 |
msgid "Next»"
|
580 |
msgstr "Siguiente»"
|
581 |
|
587 |
msgid "Show a youtube video and a gallery of thumbnails for a youtube channel"
|
588 |
msgstr "Muestra un vídeo y una galería de miniaturas de una canal de Youtube "
|
589 |
|
590 |
+
#: youtube-channel-gallery.php:714
|
591 |
msgid "Show more videos»"
|
592 |
msgstr "Ver más vídeos»"
|
593 |
|
594 |
+
#: youtube-channel-gallery.php:723
|
595 |
msgid "There is no video to show."
|
596 |
msgstr "No hay ningún vídeo para mostrar."
|
597 |
|
598 |
+
#: youtube-channel-gallery.php:801
|
599 |
#, php-format
|
600 |
msgid "Error type: \"%1$s\". "
|
601 |
msgstr "Tipo de error: \"%1$s\". "
|
602 |
|
603 |
+
#: youtube-channel-gallery.php:802
|
604 |
#, php-format
|
605 |
msgid "Error message: \"%1$s\" "
|
606 |
msgstr "Mensaje de error: \"%1$s\" "
|
607 |
|
608 |
+
#: youtube-channel-gallery.php:803
|
609 |
#, php-format
|
610 |
msgid "Domain: \"%1$s\". "
|
611 |
msgstr "Dominio: \"%1$s\". "
|
612 |
|
613 |
+
#: youtube-channel-gallery.php:804
|
614 |
#, php-format
|
615 |
msgid "Reason: \"%1$s\". "
|
616 |
msgstr "Razón: \"%1$s\". "
|
617 |
|
618 |
+
#: youtube-channel-gallery.php:805
|
619 |
#, php-format
|
620 |
msgid "Location type: \"%1$s\". "
|
621 |
msgstr "Tipo de localización: \"%1$s\". "
|
622 |
|
623 |
+
#: youtube-channel-gallery.php:806
|
624 |
#, php-format
|
625 |
msgid "Location: \"%1$s\". "
|
626 |
msgstr "Localización: \"%1$s\". "
|
627 |
|
628 |
+
#: youtube-channel-gallery.php:809
|
629 |
#, php-format
|
630 |
msgid "Check in YouTube if the id %1$s belongs to a %2$s. "
|
631 |
msgstr "Comprueba en YouTube si el id %1$s corresponde a un %2$s. "
|
632 |
|
633 |
+
#: youtube-channel-gallery.php:811
|
634 |
#, php-format
|
635 |
msgid ""
|
636 |
"If the user id is correct, check that the channel of the user has list of "
|
639 |
"Si el id de usuario es correcto, comprueba que el canal de usuario tiene una "
|
640 |
"lista de \"%1$s\". "
|
641 |
|
642 |
+
#: youtube-channel-gallery.php:813
|
643 |
msgid ""
|
644 |
"Check the <a href=\"http://wordpress.org/extend/plugins/youtube-channel-"
|
645 |
"gallery/faq/\" target=\"_blank\">FAQ</a> of the plugin or send error messages "
|
651 |
"error a <a href=\"https://wordpress.org/support/plugin/youtube-channel-gallery"
|
652 |
"\" target=\"_blank\">support</a>."
|
653 |
|
654 |
+
#: youtube-channel-gallery.php:890
|
655 |
msgid "There are no videos matching selected criteria"
|
656 |
msgstr "No hay vídeos que se ajusten al criterio seleccionado"
|
657 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
658 |
#~ msgid ""
|
659 |
+
#~ "\"nofollow\" attribute provides a way for webmasters to tell search "
|
660 |
+
#~ "engines \"Don't follow this specific link.\""
|
661 |
#~ msgstr ""
|
662 |
+
#~ "El atributo \"nofollow\" ofrece a los webmasters un modo de indicar a los "
|
663 |
+
#~ "motores de búsqueda para no seguir un enlace."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/youtube-channel-gallery.mo
ADDED
Binary file
|
languages/youtube-channel-gallery.pot
ADDED
@@ -0,0 +1,904 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#, fuzzy
|
2 |
+
msgid ""
|
3 |
+
msgstr ""
|
4 |
+
"Project-Id-Version: youtube-channel-gallery\n"
|
5 |
+
"Report-Msgid-Bugs-To: \n"
|
6 |
+
"POT-Creation-Date: 2015-07-25 02:03+0200\n"
|
7 |
+
"PO-Revision-Date: 2015-07-22 20:54+0100\n"
|
8 |
+
"Last-Translator: Javier <javierpose@gmail.com>\n"
|
9 |
+
"Language-Team: PoseLab <javierpose@gmail.com>\n"
|
10 |
+
"Language: es_ES\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Launchpad-Export-Date: 2010-06-23 21:48+0000\n"
|
15 |
+
"X-Generator: Poedit 1.8.3\n"
|
16 |
+
"X-Poedit-Basepath: ..\n"
|
17 |
+
"X-Poedit-KeywordsList: _e;__\n"
|
18 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
19 |
+
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
|
21 |
+
#: templates/admin_tabs.php:3 templates/admin_tabs.php:487
|
22 |
+
#, fuzzy
|
23 |
+
msgid "Title:"
|
24 |
+
msgstr "Título:"
|
25 |
+
|
26 |
+
#: templates/admin_tabs.php:9
|
27 |
+
#, fuzzy
|
28 |
+
msgid "Feed"
|
29 |
+
msgstr "Feed"
|
30 |
+
|
31 |
+
#: templates/admin_tabs.php:10
|
32 |
+
#, fuzzy
|
33 |
+
msgid "Player"
|
34 |
+
msgstr "Reproductor"
|
35 |
+
|
36 |
+
#: templates/admin_tabs.php:11
|
37 |
+
#, fuzzy
|
38 |
+
msgid "Search"
|
39 |
+
msgstr "Búsqueda"
|
40 |
+
|
41 |
+
#: templates/admin_tabs.php:12
|
42 |
+
#, fuzzy
|
43 |
+
msgid "Thumbnails"
|
44 |
+
msgstr "Miniaturas"
|
45 |
+
|
46 |
+
#: templates/admin_tabs.php:13
|
47 |
+
#, fuzzy
|
48 |
+
msgid "Link"
|
49 |
+
msgstr "Enlace"
|
50 |
+
|
51 |
+
#: templates/admin_tabs.php:26
|
52 |
+
#, fuzzy
|
53 |
+
msgid "YouTube API Key:"
|
54 |
+
msgstr "YouTube API Key:"
|
55 |
+
|
56 |
+
#: templates/admin_tabs.php:28
|
57 |
+
#, fuzzy
|
58 |
+
msgid "Get your own YouTube API Key and put here."
|
59 |
+
msgstr "Obtén tu propia YouTube API Key e insertada aquí"
|
60 |
+
|
61 |
+
#: templates/admin_tabs.php:32
|
62 |
+
#, fuzzy
|
63 |
+
msgid "Video feed type:"
|
64 |
+
msgstr "Tipo de feed de vídeo:"
|
65 |
+
|
66 |
+
#: templates/admin_tabs.php:34
|
67 |
+
#, fuzzy
|
68 |
+
msgid "Uploaded by a user"
|
69 |
+
msgstr "Subidos por el usuario"
|
70 |
+
|
71 |
+
#: templates/admin_tabs.php:35
|
72 |
+
#, fuzzy
|
73 |
+
msgid "User's favorites"
|
74 |
+
msgstr "Favoritos del usuario"
|
75 |
+
|
76 |
+
#: templates/admin_tabs.php:36
|
77 |
+
#, fuzzy
|
78 |
+
msgid "User's likes"
|
79 |
+
msgstr "Likes de usuario"
|
80 |
+
|
81 |
+
#: templates/admin_tabs.php:37
|
82 |
+
#, fuzzy
|
83 |
+
msgid "Playlist"
|
84 |
+
msgstr "Lista de reproducción"
|
85 |
+
|
86 |
+
#: templates/admin_tabs.php:42
|
87 |
+
#, fuzzy
|
88 |
+
msgid "Identify by:"
|
89 |
+
msgstr "Identificar por:"
|
90 |
+
|
91 |
+
#: templates/admin_tabs.php:44
|
92 |
+
#, fuzzy
|
93 |
+
msgid "Username"
|
94 |
+
msgstr "Nombre de usuario"
|
95 |
+
|
96 |
+
#: templates/admin_tabs.php:45
|
97 |
+
#, fuzzy
|
98 |
+
msgid "Channel ID"
|
99 |
+
msgstr "ID de canal:"
|
100 |
+
|
101 |
+
#: templates/admin_tabs.php:49
|
102 |
+
#, fuzzy
|
103 |
+
msgid "YouTube id:"
|
104 |
+
msgstr "Id de Youtube:"
|
105 |
+
|
106 |
+
#: templates/admin_tabs.php:50
|
107 |
+
#, fuzzy
|
108 |
+
msgid "YouTube playlist id:"
|
109 |
+
msgstr "Id de lista de reproducción de YouTube:"
|
110 |
+
|
111 |
+
#: templates/admin_tabs.php:56
|
112 |
+
#, fuzzy
|
113 |
+
msgid "Playlist order:"
|
114 |
+
msgstr "Orden de lista de reproducción:"
|
115 |
+
|
116 |
+
#: templates/admin_tabs.php:58
|
117 |
+
#, fuzzy
|
118 |
+
msgid "Date Order"
|
119 |
+
msgstr "Ordenar por fecha"
|
120 |
+
|
121 |
+
#: templates/admin_tabs.php:59
|
122 |
+
#, fuzzy
|
123 |
+
msgid "Rating Order"
|
124 |
+
msgstr "Ordenar por calificación"
|
125 |
+
|
126 |
+
#: templates/admin_tabs.php:60
|
127 |
+
#, fuzzy
|
128 |
+
msgid "Relevance Order"
|
129 |
+
msgstr "Ordenar por relevancia"
|
130 |
+
|
131 |
+
#: templates/admin_tabs.php:61
|
132 |
+
#, fuzzy
|
133 |
+
msgid "Title Order"
|
134 |
+
msgstr "Ordenar por título"
|
135 |
+
|
136 |
+
#: templates/admin_tabs.php:62
|
137 |
+
#, fuzzy
|
138 |
+
msgid "Video Count Order"
|
139 |
+
msgstr "Ordenar por número de vídeos subidos"
|
140 |
+
|
141 |
+
#: templates/admin_tabs.php:63
|
142 |
+
#, fuzzy
|
143 |
+
msgid "View Count Order"
|
144 |
+
msgstr "Ordenar por número de reproducciones"
|
145 |
+
|
146 |
+
#: templates/admin_tabs.php:70
|
147 |
+
#, fuzzy
|
148 |
+
msgid "Cache time (hours):"
|
149 |
+
msgstr "Tiempo de cache (horas):"
|
150 |
+
|
151 |
+
#: templates/admin_tabs.php:72
|
152 |
+
#, fuzzy
|
153 |
+
msgid ""
|
154 |
+
"Hours that RSS data is saved in database, to not make a request every time "
|
155 |
+
"the page is displayed. Assign this value according to how often you upgrade "
|
156 |
+
"your playlist in YouTube."
|
157 |
+
msgstr ""
|
158 |
+
"Horas que los datos del RSS se guardan en la base de datos, para no hacer una "
|
159 |
+
"solicitud cada vez que se muestra la página. Asigna este valor en función de "
|
160 |
+
"la frecuencia con que actualizas la lista de reproducción en YouTube."
|
161 |
+
|
162 |
+
#: templates/admin_tabs.php:79
|
163 |
+
#, fuzzy
|
164 |
+
msgid "Activate cache"
|
165 |
+
msgstr "Activar caché"
|
166 |
+
|
167 |
+
#: templates/admin_tabs.php:80
|
168 |
+
#, fuzzy
|
169 |
+
msgid ""
|
170 |
+
"If you disable this field the cache will be deleted and will not be used. "
|
171 |
+
"This is useful to refresh immediately the YouTube RSS used by the plugin. "
|
172 |
+
"Reenable the cache when the gallery shows the changes you made in your "
|
173 |
+
"youtube account."
|
174 |
+
msgstr ""
|
175 |
+
"Si se deshabilita este campo la caché se borrará y no será utilizada. Esto es "
|
176 |
+
"útil para actualizar inmediatamente el RSS de YouTube usado por el plugin. "
|
177 |
+
"Vuelve a habilitar la caché cuando la galería muestre los cambios que ha "
|
178 |
+
"realizado en su cuenta de YouTube."
|
179 |
+
|
180 |
+
#: templates/admin_tabs.php:95
|
181 |
+
#, fuzzy
|
182 |
+
msgid "Player:"
|
183 |
+
msgstr "Reproductor:"
|
184 |
+
|
185 |
+
#: templates/admin_tabs.php:97
|
186 |
+
#, fuzzy
|
187 |
+
msgid "Without player"
|
188 |
+
msgstr "Sin reproductor"
|
189 |
+
|
190 |
+
#: templates/admin_tabs.php:98
|
191 |
+
#, fuzzy
|
192 |
+
msgid "show player"
|
193 |
+
msgstr "mostrar reproductor"
|
194 |
+
|
195 |
+
#: templates/admin_tabs.php:99
|
196 |
+
#, fuzzy
|
197 |
+
msgid "show player in Magnific Popup"
|
198 |
+
msgstr "mostrar reproductor en Magnific Popup"
|
199 |
+
|
200 |
+
#: templates/admin_tabs.php:106
|
201 |
+
#, fuzzy
|
202 |
+
msgid "Width:"
|
203 |
+
msgstr "Ancho:"
|
204 |
+
|
205 |
+
#: templates/admin_tabs.php:109
|
206 |
+
msgid "%"
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: templates/admin_tabs.php:110
|
210 |
+
#, fuzzy
|
211 |
+
msgid "px"
|
212 |
+
msgstr "px"
|
213 |
+
|
214 |
+
#: templates/admin_tabs.php:114 templates/admin_tabs.php:314
|
215 |
+
#, fuzzy
|
216 |
+
msgid "Aspect ratio:"
|
217 |
+
msgstr "Relación de aspecto:"
|
218 |
+
|
219 |
+
#: templates/admin_tabs.php:116 templates/admin_tabs.php:316
|
220 |
+
#, fuzzy
|
221 |
+
msgid "Standard (4x3)"
|
222 |
+
msgstr "Estándar (4x3)"
|
223 |
+
|
224 |
+
#: templates/admin_tabs.php:117 templates/admin_tabs.php:317
|
225 |
+
#, fuzzy
|
226 |
+
msgid "Widescreen (16x9)"
|
227 |
+
msgstr "Panorámico (16x9)"
|
228 |
+
|
229 |
+
#: templates/admin_tabs.php:124
|
230 |
+
#, fuzzy
|
231 |
+
msgid "Theme:"
|
232 |
+
msgstr "Tema:"
|
233 |
+
|
234 |
+
#: templates/admin_tabs.php:126
|
235 |
+
#, fuzzy
|
236 |
+
msgid "Dark"
|
237 |
+
msgstr "Oscuro"
|
238 |
+
|
239 |
+
#: templates/admin_tabs.php:127
|
240 |
+
#, fuzzy
|
241 |
+
msgid "Light"
|
242 |
+
msgstr "Claro"
|
243 |
+
|
244 |
+
#: templates/admin_tabs.php:131
|
245 |
+
#, fuzzy
|
246 |
+
msgid "Progress bar color:"
|
247 |
+
msgstr "Color de barra de progreso:"
|
248 |
+
|
249 |
+
#: templates/admin_tabs.php:133
|
250 |
+
#, fuzzy
|
251 |
+
msgid "Red"
|
252 |
+
msgstr "Rojo"
|
253 |
+
|
254 |
+
#: templates/admin_tabs.php:134
|
255 |
+
#, fuzzy
|
256 |
+
msgid "White"
|
257 |
+
msgstr "Blanco"
|
258 |
+
|
259 |
+
#: templates/admin_tabs.php:141
|
260 |
+
#, fuzzy
|
261 |
+
msgid "Video quality:"
|
262 |
+
msgstr "Calidad del vídeo:"
|
263 |
+
|
264 |
+
#: templates/admin_tabs.php:143
|
265 |
+
#, fuzzy
|
266 |
+
msgid "default"
|
267 |
+
msgstr "por defecto"
|
268 |
+
|
269 |
+
#: templates/admin_tabs.php:144
|
270 |
+
#, fuzzy
|
271 |
+
msgid "highres"
|
272 |
+
msgstr "alta resolución"
|
273 |
+
|
274 |
+
#: templates/admin_tabs.php:145
|
275 |
+
#, fuzzy
|
276 |
+
msgid "hd1080"
|
277 |
+
msgstr "hd1080"
|
278 |
+
|
279 |
+
#: templates/admin_tabs.php:146
|
280 |
+
#, fuzzy
|
281 |
+
msgid "hd720"
|
282 |
+
msgstr "hd720"
|
283 |
+
|
284 |
+
#: templates/admin_tabs.php:147
|
285 |
+
#, fuzzy
|
286 |
+
msgid "large"
|
287 |
+
msgstr "largo"
|
288 |
+
|
289 |
+
#: templates/admin_tabs.php:148
|
290 |
+
#, fuzzy
|
291 |
+
msgid "medium"
|
292 |
+
msgstr "mediano"
|
293 |
+
|
294 |
+
#: templates/admin_tabs.php:149
|
295 |
+
#, fuzzy
|
296 |
+
msgid "small"
|
297 |
+
msgstr "pequeño"
|
298 |
+
|
299 |
+
#: templates/admin_tabs.php:151
|
300 |
+
#, fuzzy
|
301 |
+
msgid ""
|
302 |
+
"Default value enables YouTube to select the most appropriate playback "
|
303 |
+
"quality. If you select a quality level that is not available for the video, "
|
304 |
+
"then the quality will be set to the next lowest level that is available."
|
305 |
+
msgstr ""
|
306 |
+
"El valor predeterminado permite a YouTube seleccionar la calidad de "
|
307 |
+
"reproducción más adecuada. Si selecciona un nivel de calidad que no está "
|
308 |
+
"disponible para el vídeo, la calidad se ajustará al siguiente nivel más bajo "
|
309 |
+
"que este disponible."
|
310 |
+
|
311 |
+
#: templates/admin_tabs.php:158
|
312 |
+
#, fuzzy
|
313 |
+
msgid "Autoplay"
|
314 |
+
msgstr "Autoplay"
|
315 |
+
|
316 |
+
#: templates/admin_tabs.php:162
|
317 |
+
#, fuzzy
|
318 |
+
msgid "Show YouTube logo"
|
319 |
+
msgstr "Mostrar el logotipo de YouTube"
|
320 |
+
|
321 |
+
#: templates/admin_tabs.php:163
|
322 |
+
#, fuzzy
|
323 |
+
msgid ""
|
324 |
+
"Activate this field to show the YouTube logo in the control bar. Setting the "
|
325 |
+
"color parameter to white will show the YouTube logo in the control bar."
|
326 |
+
msgstr ""
|
327 |
+
"Activa este campo para mostrar el logotipo de YouTube en la barra de control. "
|
328 |
+
"Un ajuste del parámetro de color a blanco mostrará el logotipo de YouTube en "
|
329 |
+
"la barra de control."
|
330 |
+
|
331 |
+
#: templates/admin_tabs.php:170
|
332 |
+
#, fuzzy
|
333 |
+
msgid "Show related videos"
|
334 |
+
msgstr "Mostrar los vídeos relacionados"
|
335 |
+
|
336 |
+
#: templates/admin_tabs.php:171
|
337 |
+
#, fuzzy
|
338 |
+
msgid ""
|
339 |
+
"Activate this field to show related videos when playback of the video ends."
|
340 |
+
msgstr ""
|
341 |
+
"Activa este campo para mostrar videos relacionados cuando termine la "
|
342 |
+
"reproducción del vídeo."
|
343 |
+
|
344 |
+
#: templates/admin_tabs.php:175
|
345 |
+
#, fuzzy
|
346 |
+
msgid "Show info"
|
347 |
+
msgstr "Mostrar información"
|
348 |
+
|
349 |
+
#: templates/admin_tabs.php:176
|
350 |
+
#, fuzzy
|
351 |
+
msgid ""
|
352 |
+
"Activate this field to display information like the video title and uploader "
|
353 |
+
"before the video starts playing."
|
354 |
+
msgstr ""
|
355 |
+
"Active este campo para mostrar información como el título del vídeo y nombre "
|
356 |
+
"de usuario antes de que el vídeo comience a reproducirse."
|
357 |
+
|
358 |
+
#: templates/admin_tabs.php:183 templates/admin_tabs.php:385
|
359 |
+
msgid "Show additional content"
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: templates/admin_tabs.php:191 templates/admin_tabs.php:393
|
363 |
+
#, fuzzy
|
364 |
+
msgid "Show title"
|
365 |
+
msgstr "Mostrar Título"
|
366 |
+
|
367 |
+
#: templates/admin_tabs.php:195 templates/admin_tabs.php:397
|
368 |
+
msgid "Show published date"
|
369 |
+
msgstr ""
|
370 |
+
|
371 |
+
#: templates/admin_tabs.php:202 templates/admin_tabs.php:404
|
372 |
+
#, fuzzy
|
373 |
+
msgid "Show description"
|
374 |
+
msgstr "Mostrar descripción"
|
375 |
+
|
376 |
+
#: templates/admin_tabs.php:210 templates/admin_tabs.php:412
|
377 |
+
#, fuzzy
|
378 |
+
msgid "Title tag:"
|
379 |
+
msgstr "Etiqueta de título:"
|
380 |
+
|
381 |
+
#: templates/admin_tabs.php:212 templates/admin_tabs.php:414
|
382 |
+
#, fuzzy
|
383 |
+
msgid "h1"
|
384 |
+
msgstr "h1"
|
385 |
+
|
386 |
+
#: templates/admin_tabs.php:213 templates/admin_tabs.php:415
|
387 |
+
#, fuzzy
|
388 |
+
msgid "h2"
|
389 |
+
msgstr "h2"
|
390 |
+
|
391 |
+
#: templates/admin_tabs.php:214 templates/admin_tabs.php:416
|
392 |
+
#, fuzzy
|
393 |
+
msgid "h3"
|
394 |
+
msgstr "h3"
|
395 |
+
|
396 |
+
#: templates/admin_tabs.php:215 templates/admin_tabs.php:417
|
397 |
+
#, fuzzy
|
398 |
+
msgid "h4"
|
399 |
+
msgstr "h4"
|
400 |
+
|
401 |
+
#: templates/admin_tabs.php:216 templates/admin_tabs.php:418
|
402 |
+
#, fuzzy
|
403 |
+
msgid "h5"
|
404 |
+
msgstr "h5"
|
405 |
+
|
406 |
+
#: templates/admin_tabs.php:217 templates/admin_tabs.php:419
|
407 |
+
#, fuzzy
|
408 |
+
msgid "h6"
|
409 |
+
msgstr "h6"
|
410 |
+
|
411 |
+
#: templates/admin_tabs.php:221 templates/admin_tabs.php:423
|
412 |
+
#, fuzzy
|
413 |
+
msgid "Description words:"
|
414 |
+
msgstr "Palabras en descripción:"
|
415 |
+
|
416 |
+
#: templates/admin_tabs.php:223 templates/admin_tabs.php:425
|
417 |
+
#, fuzzy
|
418 |
+
msgid ""
|
419 |
+
"Set the maximum number of words that will be displayed of the description. "
|
420 |
+
"This field is useful when the descriptions of videos in the gallery have "
|
421 |
+
"different sizes."
|
422 |
+
msgstr ""
|
423 |
+
"Establece el número máximo de palabras que se mostrarán en la descripción. "
|
424 |
+
"Este campo es útil cuando la descripción de los vídeos de la galería tienen "
|
425 |
+
"diferentes tamaños."
|
426 |
+
|
427 |
+
#: templates/admin_tabs.php:232 templates/admin_tabs.php:284
|
428 |
+
#: templates/admin_tabs.php:501 templates/admin_tabs.php:538
|
429 |
+
msgid "Tab order:"
|
430 |
+
msgstr ""
|
431 |
+
|
432 |
+
#: templates/admin_tabs.php:249
|
433 |
+
#, fuzzy
|
434 |
+
msgid "Search input text:"
|
435 |
+
msgstr "Campo de búsqueda de texto:"
|
436 |
+
|
437 |
+
#: templates/admin_tabs.php:253
|
438 |
+
#, fuzzy
|
439 |
+
msgid "Restrict search to (# separated):"
|
440 |
+
msgstr "Restringir búsqueda a (separa con #):"
|
441 |
+
|
442 |
+
#: templates/admin_tabs.php:257
|
443 |
+
#, fuzzy
|
444 |
+
msgid "You must assing this tags to your videos to restrict the search:"
|
445 |
+
msgstr "Debes asignar estas etiquetas a los vídeos para restringir la búsqueda:"
|
446 |
+
|
447 |
+
#: templates/admin_tabs.php:266
|
448 |
+
#, fuzzy
|
449 |
+
msgid "Restrict search by default: It will overwrite results of feed tab)"
|
450 |
+
msgstr ""
|
451 |
+
"Restringir búsqueda por defecto: Sobreescribirá los resultados de la pestaña "
|
452 |
+
"Feed"
|
453 |
+
|
454 |
+
#: templates/admin_tabs.php:268 templates/admin_tabs.php:454
|
455 |
+
#: templates/search.php:10
|
456 |
+
#, fuzzy
|
457 |
+
msgid "All"
|
458 |
+
msgstr "Todos"
|
459 |
+
|
460 |
+
#: templates/admin_tabs.php:276
|
461 |
+
#, fuzzy
|
462 |
+
msgid "Show search box"
|
463 |
+
msgstr "Mostrar caja de búsqueda"
|
464 |
+
|
465 |
+
#: templates/admin_tabs.php:280
|
466 |
+
#, fuzzy
|
467 |
+
msgid "Show select with Playlists"
|
468 |
+
msgstr "Show desplegable con Playlistas"
|
469 |
+
|
470 |
+
#: templates/admin_tabs.php:298
|
471 |
+
#, fuzzy
|
472 |
+
msgid "Number of videos to show:"
|
473 |
+
msgstr "Vídeos a mostrar:"
|
474 |
+
|
475 |
+
#: templates/admin_tabs.php:300
|
476 |
+
#, fuzzy
|
477 |
+
msgid "The plugin can display a maximum of 50 videos for each page."
|
478 |
+
msgstr "El plugin puede mostrar un máximo de 50 vídeos por página."
|
479 |
+
|
480 |
+
#: templates/admin_tabs.php:303
|
481 |
+
#, fuzzy
|
482 |
+
msgid "Thumbnail resolution:"
|
483 |
+
msgstr "Resolución de miniaturas:"
|
484 |
+
|
485 |
+
#: templates/admin_tabs.php:305
|
486 |
+
#, fuzzy
|
487 |
+
msgid "Default (120x90 px)"
|
488 |
+
msgstr "Por defecto (120x90 px)"
|
489 |
+
|
490 |
+
#: templates/admin_tabs.php:306
|
491 |
+
#, fuzzy
|
492 |
+
msgid "Medium (320x180)"
|
493 |
+
msgstr "Media (320x180)"
|
494 |
+
|
495 |
+
#: templates/admin_tabs.php:307
|
496 |
+
#, fuzzy
|
497 |
+
msgid "High (480x360)"
|
498 |
+
msgstr "Alta (480x360)"
|
499 |
+
|
500 |
+
#: templates/admin_tabs.php:324
|
501 |
+
#, fuzzy
|
502 |
+
msgid "Thumbnail columns:"
|
503 |
+
msgstr "Columnas de las miniaturas:"
|
504 |
+
|
505 |
+
#: templates/admin_tabs.php:330
|
506 |
+
#, fuzzy
|
507 |
+
msgid "Phones:"
|
508 |
+
msgstr "Móviles:"
|
509 |
+
|
510 |