Add translations for ckeditor's video #2622

pull/2624/head
Angel Fernando Quiroz Campos 7 years ago
parent 561f13464c
commit 01e14e412f
  1. 8
      main/inc/lib/javascript/ckeditor/plugins/video/dialogs/video.js
  2. 12
      main/inc/lib/javascript/ckeditor/plugins/video/plugin.js

@ -223,7 +223,7 @@ CKEDITOR.dialog.add( 'video', function ( editor )
[
{
id : 'info',
label: 'Information',
label: lang.infoLabel,
elements :
[
{
@ -384,19 +384,19 @@ CKEDITOR.dialog.add( 'video', function ( editor )
elements: [
{
type : 'html',
html : 'Multiple 360° video player can fails in one page.'
html : lang.html360
},
{
type : 'checkbox',
id : '360video',
label: 'Enable 360° video player',
label: lang.video360,
commit : commitValue,
setup : loadValue
},
{
type : 'checkbox',
id : '360videostereo',
label : 'Is a stereo video (1:1 aspect ratio)',
label : lang.video360stereo,
'default': 'checked',
commit : commitValue,
setup : loadValue

@ -179,7 +179,11 @@ var en = {
sourceVideo: 'Source video',
sourceType : 'Video type',
linkTemplate : '<a href="%src%">%type%</a> ',
fallbackTemplate : 'Your browser doesn\'t support video.<br>Please download the file: %links%'
fallbackTemplate : 'Your browser doesn\'t support video.<br>Please download the file: %links%',
infoLabel: 'Information',
html360: 'Multiple 360° video players may fails in one page.',
video360: 'Enable 360° video player',
video360stereo : 'Is a stereo video (1:1 aspect ratio)'
};
var es = {
@ -193,7 +197,11 @@ var es = {
sourceVideo: 'Archivo de video',
sourceType : 'Tipo',
linkTemplate : '<a href="%src%">%type%</a> ',
fallbackTemplate : 'Su navegador no soporta VIDEO.<br>Por favor, descargue el fichero: %links%'
fallbackTemplate : 'Su navegador no soporta VIDEO.<br>Por favor, descargue el fichero: %links%',
infoLabel: 'Información',
html360: 'Multiples reproductores de video 360° pueden fallar en una sola página.',
video360: 'Habilitar reproductor de video 360°',
video360stereo : 'Este es un video estéreo (relación de aspecto 1:1)'
};
// v3

Loading…
Cancel
Save