1 | <?php |
---|
2 | // +-----------------------------------------------------------------------+ |
---|
3 | // | Piwigo - a PHP based photo gallery | |
---|
4 | // +-----------------------------------------------------------------------+ |
---|
5 | // | Copyright(C) 2008-2013 Piwigo Team http://piwigo.org | |
---|
6 | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | |
---|
7 | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | |
---|
8 | // +-----------------------------------------------------------------------+ |
---|
9 | // | This program is free software; you can redistribute it and/or modify | |
---|
10 | // | it under the terms of the GNU General Public License as published by | |
---|
11 | // | the Free Software Foundation | |
---|
12 | // | | |
---|
13 | // | This program is distributed in the hope that it will be useful, but | |
---|
14 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
15 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
16 | // | General Public License for more details. | |
---|
17 | // | | |
---|
18 | // | You should have received a copy of the GNU General Public License | |
---|
19 | // | along with this program; if not, write to the Free Software | |
---|
20 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
21 | // | USA. | |
---|
22 | // +-----------------------------------------------------------------------+ |
---|
23 | $lang['AUTOPLAY'] = 'Reproducción automática'; |
---|
24 | $lang['AUTOPLAY_DESC'] = 'Si la reproducción automática está activada, el vídeo empezará a reproducirse tan pronto como la página cargue (sin ninguna interacción por parte del usuario). NO SOPORTADO POR DISPOSITIVOS IOS DE APPLE'; |
---|
25 | $lang['CONTROLS'] = 'Controles'; |
---|
26 | $lang['CONTROLS_DESC'] = 'La opción de control establece si el reproductor tiene controles con los que el usuario puede interactuar'; |
---|
27 | $lang['CUSTOMCSS'] = 'CSS personalizado'; |
---|
28 | $lang['CUSTOMCSS_DESC'] = 'CSS personalizado para copiar desde la web de VideoJS'; |
---|
29 | $lang['HTML5'] = 'Ajustes de etiquetas del vídeo HTML5'; |
---|
30 | $lang['LOOP'] = 'Bucle'; |
---|
31 | $lang['LOOP_DESC'] = 'El atributo bucle hace que el vídeo empiece a reproducirse de nuevo tan pronto como acaba.'; |
---|
32 | $lang['PLUGIN'] = 'Ajustes del plugin'; |
---|
33 | $lang['PRELOAD'] = 'Precargar'; |
---|
34 | $lang['PRELOAD_DESC'] = 'El atributo de precarga informa al navegador si la información del vídeo ha de empezar a cargar tan pronto como se cargue la etiqueta del vídeo.'; |
---|
35 | $lang['SKIN'] = 'Tema'; |
---|
36 | $lang['SKIN_DESC'] = 'Selecciona el tema que quieras aplicar al reproductor'; |
---|
37 | $lang['WIDTH'] = 'Anchura máxima'; |
---|
38 | $lang['WIDTH_DESC'] = 'El valor de anchura máxima determina la anchura máxima del video, si es muy alto se divide para 2.'; |
---|
39 | ?> |
---|