xref: /template/wikiweko/lang/ca/settings.php (revision dbba3fd5d0de6350525ab4e6b6e68b8896a78a4e)
19ee13318SAndreas Haerter<?php
29ee13318SAndreas Haerter
39ee13318SAndreas Haerter/**
49ee13318SAndreas Haerter * Catalan language for the Config Manager
59ee13318SAndreas Haerter *
69ee13318SAndreas Haerter * If your language is not/only partially translated or you found an error/typo,
79ee13318SAndreas Haerter * have a look at the following files:
89ee13318SAndreas Haerter * - "/lib/tpl/vector/lang/<your lang>/lang.php"
99ee13318SAndreas Haerter * - "/lib/tpl/vector/lang/<your lang>/settings.php"
109ee13318SAndreas Haerter * If they are not existing, copy and translate the English ones (hint: looking
119ee13318SAndreas Haerter * at <http://[your lang].wikipedia.org> might be helpful). And don't forget to
12*dbba3fd5SAndreas Haerter * mail the translation to us, SYN Systems <dokuwiki@dev.syn-systems.com>.
13*dbba3fd5SAndreas Haerter * Thanks :-D.
149ee13318SAndreas Haerter *
159ee13318SAndreas Haerter *
169ee13318SAndreas Haerter * LICENSE: This file is open source software (OSS) and may be copied under
179ee13318SAndreas Haerter *          certain conditions. See COPYING file for details or try to contact
189ee13318SAndreas Haerter *          the author(s) of this file in doubt.
199ee13318SAndreas Haerter *
209ee13318SAndreas Haerter * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
219ee13318SAndreas Haerter * @author Albert Gasset Romo <albert.gasset@gmail.com>
229ee13318SAndreas Haerter * @link http://www.dokuwiki.org/template:vector
239ee13318SAndreas Haerter * @link http://www.dokuwiki.org/config:lang
249ee13318SAndreas Haerter * @link http://www.dokuwiki.org/devel:configuration
259ee13318SAndreas Haerter */
269ee13318SAndreas Haerter
279ee13318SAndreas Haerter
289ee13318SAndreas Haerter//check if we are running within the DokuWiki environment
299ee13318SAndreas Haerterif (!defined("DOKU_INC")){
309ee13318SAndreas Haerter    die();
319ee13318SAndreas Haerter}
329ee13318SAndreas Haerter
339ee13318SAndreas Haerter//user pages
349ee13318SAndreas Haerter$lang["vector_userpage"]    = "Habilita les pàgines d'usuari";
359ee13318SAndreas Haerter$lang["vector_userpage_ns"] = "Espai arrel de les pàgines d'usauri";
369ee13318SAndreas Haerter
379ee13318SAndreas Haerter//discussion pages
389ee13318SAndreas Haerter$lang["vector_discuss"]    = "Habilita les discussions";
399ee13318SAndreas Haerter$lang["vector_discuss_ns"] = "Espai arrel de les discussions";
409ee13318SAndreas Haerter
419ee13318SAndreas Haerter//site notice
429ee13318SAndreas Haerter$lang["vector_sitenotice"]           = "Mostra l'avís del lloc";
439ee13318SAndreas Haerter$lang["vector_sitenotice_location"]  = "Pàgina de l'avís del lloc";
44d02d2cb0SAlbert Gasset$lang["vector_sitenotice_translate"] = "Utilitza l'avís del lloc traduït si el <a href=\"http://www.dokuwiki.org/plugin:translation\">connector Translation</a> està disponible.<br />La pàgina de l'avís del lloc traduït és [valor de 'vector_sitenotice_location']_[icodi llengüa ISO] (per exemple. ':wiki:site_notice_de').";
459ee13318SAndreas Haerter
469ee13318SAndreas Haerter//navigation
479ee13318SAndreas Haerter$lang["vector_navigation"]          = "Mostra la navegació";
489ee13318SAndreas Haerter$lang["vector_navigation_location"] = "Pàgina de la navegació";
49bfa48d63SAlbert Gasset$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').";
509ee13318SAndreas Haerter
519ee13318SAndreas Haerter//exportbox ("print/export")
529ee13318SAndreas Haerter$lang["vector_exportbox"]          = "Mostra el quadre 'imprimeix/exporta'";
539ee13318SAndreas Haerter$lang["vector_exportbox_default"]  = "Quadre 'imprimeix/exporta' predeterminat";
549ee13318SAndreas Haerter$lang["vector_exportbox_location"] = "Pàgina del quadre 'imprimeix/exporta'";
559ee13318SAndreas Haerter
569ee13318SAndreas Haerter//toolbox
579ee13318SAndreas Haerter$lang["vector_toolbox"]          = "Mostra el quadre d'eines";
589ee13318SAndreas Haerter$lang["vector_toolbox_default"]  = "Quadre d'eines predeterminat";
599ee13318SAndreas Haerter$lang["vector_toolbox_location"] = "Pàgina del quadre d'eines";
609ee13318SAndreas Haerter
61d02d2cb0SAlbert Gasset//qr code box
62d02d2cb0SAlbert Gasset$lang["vector_qrcodebox"] = "Mostra el codi QR de la pàgina actual (per a transferir fàcilment l'URL a navegadors mòbils)";
63d02d2cb0SAlbert Gasset
649ee13318SAndreas Haerter//custom copyright notice
659ee13318SAndreas Haerter$lang["vector_copyright"]           = "Mostra l'avís de drets d'autor";
669ee13318SAndreas Haerter$lang["vector_copyright_default"]   = "Avís de drets d'autor predeterminat";
679ee13318SAndreas Haerter$lang["vector_copyright_location"]  = "Pàgina de l'avís de drets d'autor";
68d02d2cb0SAlbert Gasset$lang["vector_copyright_translate"] = "Utilitza l'avís de drets d'autor traduït si el <a href=\"http://www.dokuwiki.org/plugin:translation\">connector Translation</a> està disponible.<br />La pàgina de l'avís de drets d'autor traduït és [valor de 'vector_copyright_location']_[icodi llengüa ISO] (per exemple. ':wiki:copyright_de').";
699ee13318SAndreas Haerter
709ee13318SAndreas Haerter//donation link/button
719ee13318SAndreas Haerter$lang["vector_donate"]          = "Mostra l'enllaç/botó de donacions";
729ee13318SAndreas Haerter$lang["vector_donate_url"]      = "URL de donacions:";
739ee13318SAndreas Haerter
749ee13318SAndreas Haerter//TOC
759ee13318SAndreas Haerter$lang["vector_toc_position"] = "Posició de la taule de continguts";
769ee13318SAndreas Haerter
779ee13318SAndreas Haerter//other stuff
789ee13318SAndreas Haerter$lang["vector_breadcrumbs_position"]  = "Posició del camí de navegació";
799ee13318SAndreas Haerter$lang["vector_youarehere_position"]   = "Posició de la navegació 'sou aquí'";
809ee13318SAndreas Haerter$lang["vector_cite_author"]           = "Nom de l'autor a 'cita aquest article'";
819ee13318SAndreas Haerter$lang["vector_loaduserjs"]            = "Carrega 'vector/user/user.js'";
829ee13318SAndreas Haerter$lang["vector_closedwiki"]            = "Wiki tancada (la majoria d'enllaços/pestanyes/quadres s'amaguen fins que l'usuari entri)";
839ee13318SAndreas Haerter
84