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

@ -179,7 +179,11 @@ var en = {
sourceVideo: 'Source video', sourceVideo: 'Source video',
sourceType : 'Video type', sourceType : 'Video type',
linkTemplate : '<a href="%src%">%type%</a> ', 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 = { var es = {
@ -193,7 +197,11 @@ var es = {
sourceVideo: 'Archivo de video', sourceVideo: 'Archivo de video',
sourceType : 'Tipo', sourceType : 'Tipo',
linkTemplate : '<a href="%src%">%type%</a> ', 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 // v3

Loading…
Cancel
Save