source: documentation/trunk/packages/dokuwiki-2011-05-25a/lib/tpl/monobook/lang/es/settings.php@ 25027

Last change on this file since 25027 was 25027, checked in by jmt12, 12 years ago

Adding the packages directory, and within it a configured version of dokuwiki all ready to run

File size: 3.2 KB
Line 
1<?php
2
3/**
4 * Spanish language for the Config Manager
5 *
6 * If your language is not/only partially translated or you found an error/typo,
7 * have a look at the following files:
8 * - "/lib/tpl/monobook/lang/<your lang>/lang.php"
9 * - "/lib/tpl/monobook/lang/<your lang>/settings.php"
10 * If they are not existing, copy and translate the English ones. And don't
11 * forget to mail the translation to me,
12 * Andreas Haerter <[email protected]>. Thanks :-D.
13 *
14 *
15 * LICENSE: This file is open source software (OSS) and may be copied under
16 * certain conditions. See COPYING file for details or try to contact
17 * the author(s) of this file in doubt.
18 *
19 * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
20 * @author Jacobo María Pantoja Checa <[email protected]>
21 * @link http://andreas-haerter.com/projects/dokuwiki-template-monobook
22 * @link http://www.dokuwiki.org/template:monobook
23 * @link http://www.dokuwiki.org/config:lang
24 * @link http://www.dokuwiki.org/devel:configuration
25 */
26
27
28//check if we are running within the DokuWiki environment
29if (!defined("DOKU_INC")){
30 die();
31}
32
33//discussion pages
34$lang["monobook_discuss"] = "¿Usar pestañas y páginas de discusión?";
35$lang["monobook_discuss_ns"] = "En caso afirmativo, usar el siguiente ':namespace:' como raíz de las mismas:";
36
37//site notice
38$lang["monobook_sitenotice"] = "¿Mostrar noticias del sitio?";
39$lang["monobook_sitenotice_location"] = "En caso afirmativo, usar la siguiente wiki-página para las noticias:";
40
41//navigation
42$lang["monobook_navigation"] = "¿Mostrar navegación?";
43$lang["monobook_navigation_location"] = "En caso afirmativo, usar la siguiente wiki-página para la navegación:";
44
45//custom copyright notice
46$lang["monobook_copyright"] = "¿Mostrar aviso de copyright?";
47$lang["monobook_copyright_default"] = "En caso afirmativo, ¿usar el aviso por defecto?";
48$lang["monobook_copyright_location"] = "En caso de no mostrar el aviso por defecto, usar la siguiente wiki-página como aviso:";
49
50//search form
51$lang["monobook_search"] = "¿Mostrar la barra de búsqueda?";
52
53//toolbox
54$lang["monobook_toolbox"] = "¿Mostrar herramientas?";
55$lang["monobook_toolbox_default"] = "En caso afirmativo, ¿usar las herramientas por defecto?";
56$lang["monobook_toolbox_default_print"] = "Si se usan las herramientas por defecto, ¿mostrar el enlace 'Versión imprimible'?";
57$lang["monobook_toolbox_location"] = "Si no se usan las herramientas por defecto, usar la siguiente wiki-página para las herramientas";
58
59//donation link/button
60$lang["monobook_donate"] = "¿Mostrar el enlace/botón 'Donar'?";
61$lang["monobook_donate_default"] = "En caso afirmativo, ¿usar la URL por defecto?";
62$lang["monobook_donate_url"] = "En caso contrario, usar la siguiente URL:";
63
64//other stuff
65$lang["monobook_breadcrumbs_position"] = "&Position of breadcrumb navigation (if enabled):";
66$lang["monobook_youarehere_position"] = "Posición de 'Estás aquí' (si está habilitado)";
67$lang["monobook_cite_author"] = "Nombre de autor en 'Citar este artículo':";
68$lang["monobook_loaduserjs"] = "¿Cargar 'monobook/user/user.js'?";
69
Note: See TracBrowser for help on using the repository browser.