1<?php 2 3/** 4 * Catalan 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/vector/lang/<your lang>/lang.php" 9 * - "/lib/tpl/vector/lang/<your lang>/settings.php" 10 * If they are not existing, copy and translate the English ones (hint: looking 11 * at <http://[your lang].wikipedia.org> might be helpful). And don't forget to 12 * mail the translation to me, 13 * Andreas Haerter <development@andreas-haerter.com>. Thanks :-D. 14 * 15 * 16 * LICENSE: This file is open source software (OSS) and may be copied under 17 * certain conditions. See COPYING file for details or try to contact 18 * the author(s) of this file in doubt. 19 * 20 * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 21 * @author Albert Gasset Romo <albert.gasset@gmail.com> 22 * @link http://andreas-haerter.com/projects/dokuwiki-template-vector 23 * @link http://www.dokuwiki.org/template:vector 24 * @link http://www.dokuwiki.org/config:lang 25 * @link http://www.dokuwiki.org/devel:configuration 26 */ 27 28 29//check if we are running within the DokuWiki environment 30if (!defined("DOKU_INC")){ 31 die(); 32} 33 34//user pages 35$lang["vector_userpage"] = "Habilita les pàgines d'usuari"; 36$lang["vector_userpage_ns"] = "Espai arrel de les pàgines d'usauri"; 37 38//discussion pages 39$lang["vector_discuss"] = "Habilita les discussions"; 40$lang["vector_discuss_ns"] = "Espai arrel de les discussions"; 41 42//site notice 43$lang["vector_sitenotice"] = "Mostra l'avís del lloc"; 44$lang["vector_sitenotice_location"] = "Pàgina de l'avís del lloc"; 45 46//navigation 47$lang["vector_navigation"] = "Mostra la navegació"; 48$lang["vector_navigation_location"] = "Pàgina de la navegació"; 49$lang["vector_navigation_translate"] = "Utilitza la navegació traduïda si el <a href=\"http://www.dokuwiki.org/plugin:translation\">connector Translation</a> està disponible.<br/>La pàgina de navegació traduïda és [valor de 'vector_navigation_location']_[codi de llengüa ISO] (per exemple, ':wiki:navigation_de')."; 50 51//exportbox ("print/export") 52$lang["vector_exportbox"] = "Mostra el quadre 'imprimeix/exporta'"; 53$lang["vector_exportbox_default"] = "Quadre 'imprimeix/exporta' predeterminat"; 54$lang["vector_exportbox_location"] = "Pàgina del quadre 'imprimeix/exporta'"; 55 56//toolbox 57$lang["vector_toolbox"] = "Mostra el quadre d'eines"; 58$lang["vector_toolbox_default"] = "Quadre d'eines predeterminat"; 59$lang["vector_toolbox_location"] = "Pàgina del quadre d'eines"; 60 61//custom copyright notice 62$lang["vector_copyright"] = "Mostra l'avís de drets d'autor"; 63$lang["vector_copyright_default"] = "Avís de drets d'autor predeterminat"; 64$lang["vector_copyright_location"] = "Pàgina de l'avís de drets d'autor"; 65 66//donation link/button 67$lang["vector_donate"] = "Mostra l'enllaç/botó de donacions"; 68$lang["vector_donate_default"] = "URL de donacions predeterminat"; 69$lang["vector_donate_url"] = "URL de donacions:"; 70 71//TOC 72$lang["vector_toc_position"] = "Posició de la taule de continguts"; 73 74//other stuff 75$lang["vector_breadcrumbs_position"] = "Posició del camí de navegació"; 76$lang["vector_youarehere_position"] = "Posició de la navegació 'sou aquí'"; 77$lang["vector_cite_author"] = "Nom de l'autor a 'cita aquest article'"; 78$lang["vector_loaduserjs"] = "Carrega 'vector/user/user.js'"; 79$lang["vector_closedwiki"] = "Wiki tancada (la majoria d'enllaços/pestanyes/quadres s'amaguen fins que l'usuari entri)"; 80 81