source: documentation/trunk/packages/dokuwiki-2011-05-25a/lib/tpl/monobook/lang/es/lang.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.8 KB
Line 
1<?php
2
3/**
4 * Spanish language for the "monobook" DokuWiki template
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//tabs
34$lang["monobook_tab_article"] = "Artículo";
35$lang["monobook_tab_discussion"] = "Discusión";
36$lang["monobook_tab_userpage"] = "Página del usuario";
37$lang["monobook_tab_specialpage"] = "Páginas especiales";
38$lang["monobook_tab_mytalk"] = "Mis discusiones";
39$lang["monobook_tab_exportodt"] = "Exportar: ODT";
40$lang["monobook_tab_exportpdf"] = "Exportar: PDF";
41
42//headlines for the different bars
43$lang["monobook_bar_views"] = "Vistas";
44$lang["monobook_bar_personnaltools"] = "Herramientas Personales";
45$lang["monobook_bar_navigation"] = "Navegación";
46$lang["monobook_bar_toolbox"] = "Herramientas";
47$lang["monobook_bar_inotherlanguages"] = "En otros idiomas";
48$lang["monobook_bar_search"] = "Búsqueda";
49
50//buttons
51$lang["monobook_btn_go"] = "Ir";
52$lang["monobook_btn_search"] = "Buscar";
53
54//default toolbox
55$lang["monobook_toolbxdef_whatlinkshere"] = "Qué enlaza aquí";
56$lang["monobook_toolbxdef_upload"] = "Subir archivo";
57$lang["monobook_toolbxdef_siteindex"] = "Índice del sitio";
58$lang["monobook_toolbxdef_print"] = "Versión imprimible";
59$lang["monobook_toolboxdef_permanent"] = "Enlace permanente";
60$lang["monobook_toolboxdef_cite"] = "Citar este artículo";
61
62//cite this article
63$lang["monobook_cite_bibdetailsfor"] = "Detalles bibliográficos de";
64$lang["monobook_cite_pagename"] = "Nombre de la página";
65$lang["monobook_cite_author"] = "Autor";
66$lang["monobook_cite_publisher"] = "Publicado por";
67$lang["monobook_cite_dateofrev"] = "Fecha de revisión";
68$lang["monobook_cite_dateretrieved"] = "Fecha actual";
69$lang["monobook_cite_permurl"] = "URL permanente";
70$lang["monobook_cite_pageversionid"] = "ID de la página";
71$lang["monobook_cite_citationstyles"] = "Estilos de cita para";
72$lang["monobook_cite_checkstandards"] = "Por favor, recuerda comprobar tu guía de estilo o las indicaciones de tu profesor para que la sintaxis cuadre con tus necesidades.";
73$lang["monobook_cite_latexusepackagehint"] = "Al usar el paquete 'url' de LaTeX (pista: busca '\userpackage{url}' en el preámbulo), que suele dar una dirección web mucho mejor formateada, es preferible lo siguiente";
74$lang["monobook_cite_retrieved"] = "obtenido";
75$lang["monobook_cite_from"] = "de";
76$lang["monobook_cite_accessed"] = "accedido";
77$lang["monobook_cite_cited"] = "citado";
78$lang["monobook_cite_lastvisited"] = "última visita";
79$lang["monobook_cite_availableat"] = "disponible en";
80
81//other
82$lang["monobook_accessdenied"] = "Acceso denegado";
83$lang["monobook_fillplaceholder"] = "Por favor, completa este espacio";
84$lang["monobook_donate"] = "Donar";
85$lang["monobook_mdtemplatefordw"] = "Monobook para DokuWiki";
86$lang["monobook_recentchanges"] = "Cambios recientes";
87
Note: See TracBrowser for help on using the repository browser.