1*e662c9c9SAndreas Haerter<?php 2*e662c9c9SAndreas Haerter 3*e662c9c9SAndreas Haerter/** 4*e662c9c9SAndreas Haerter * Basque language for the Config Manager 5*e662c9c9SAndreas Haerter * 6*e662c9c9SAndreas Haerter * If your language is not/only partially translated or you found an error/typo, 7*e662c9c9SAndreas Haerter * have a look at the following files: 8*e662c9c9SAndreas Haerter * - "/lib/tpl/vector/lang/<your lang>/lang.php" 9*e662c9c9SAndreas Haerter * - "/lib/tpl/vector/lang/<your lang>/settings.php" 10*e662c9c9SAndreas Haerter * If they are not existing, copy and translate the English ones (hint: looking 11*e662c9c9SAndreas Haerter * at <http://[your lang].wikipedia.org> might be helpful). And don't forget to 12*e662c9c9SAndreas Haerter * mail the translation to me, 13*e662c9c9SAndreas Haerter * Andreas Haerter <development@andreas-haerter.com>. Thanks :-D. 14*e662c9c9SAndreas Haerter * 15*e662c9c9SAndreas Haerter * 16*e662c9c9SAndreas Haerter * LICENSE: This file is open source software (OSS) and may be copied under 17*e662c9c9SAndreas Haerter * certain conditions. See COPYING file for details or try to contact 18*e662c9c9SAndreas Haerter * the author(s) of this file in doubt. 19*e662c9c9SAndreas Haerter * 20*e662c9c9SAndreas Haerter * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 21*e662c9c9SAndreas Haerter * @author ander 22*e662c9c9SAndreas Haerter * @link http://andreas-haerter.com/projects/dokuwiki-template-vector 23*e662c9c9SAndreas Haerter * @link http://www.dokuwiki.org/template:vector 24*e662c9c9SAndreas Haerter * @link http://www.dokuwiki.org/config:lang 25*e662c9c9SAndreas Haerter * @link http://www.dokuwiki.org/devel:configuration 26*e662c9c9SAndreas Haerter */ 27*e662c9c9SAndreas Haerter 28*e662c9c9SAndreas Haerter 29*e662c9c9SAndreas Haerter//check if we are running within the DokuWiki environment 30*e662c9c9SAndreas Haerterif (!defined("DOKU_INC")){ 31*e662c9c9SAndreas Haerter die(); 32*e662c9c9SAndreas Haerter} 33*e662c9c9SAndreas Haerter 34*e662c9c9SAndreas Haerter//user pages 35*e662c9c9SAndreas Haerter$lang["vector_userpage"] = "Erabili erabiltzaile orrialdeak?"; 36*e662c9c9SAndreas Haerter$lang["vector_userpage_ns"] = "Bai bada, erabili hurrengo ':izenespazioa:' erabiltzaile orrialdeen erro bezala:"; 37*e662c9c9SAndreas Haerter 38*e662c9c9SAndreas Haerter//discussion pages 39*e662c9c9SAndreas Haerter$lang["vector_discuss"] = "Erabili eztabaida fitxak/lekuak?"; 40*e662c9c9SAndreas Haerter$lang["vector_discuss_ns"] = "Bai bada, erabili hurrengo ':izenespazioa:' eztabaiden orrialdeen erro bezala:"; 41*e662c9c9SAndreas Haerter 42*e662c9c9SAndreas Haerter//site notice 43*e662c9c9SAndreas Haerter$lang["vector_sitenotice"] = "Erakutsi lekuaren oharrak?"; 44*e662c9c9SAndreas Haerter$lang["vector_sitenotice_location"] = "Bai bada, erabili hurrengo wiki orrialdea lekuaren oharrenfako:"; 45*e662c9c9SAndreas Haerter 46*e662c9c9SAndreas Haerter//navigation 47*e662c9c9SAndreas Haerter$lang["vector_navigation"] = "Erakutsi Nabigazioa?"; 48*e662c9c9SAndreas Haerter$lang["vector_navigation_location"] = "Bai bada, erabili hurrengo wiki orria nabigaziorako:"; 49*e662c9c9SAndreas Haerter 50*e662c9c9SAndreas Haerter//exportbox ("print/export") 51*e662c9c9SAndreas Haerter$lang["vector_exportbox"] = "Erakutsi 'imprimatu/esportatu' koadroa?"; 52*e662c9c9SAndreas Haerter$lang["vector_exportbox_default"] = "Bai bada, erabili lehenetsitako 'imprimatu/esportatu' koadroa?"; 53*e662c9c9SAndreas Haerter$lang["vector_exportbox_location"] = "Ez bada lehenetsia, erabili hurrengo orrialdea 'inprimatu/esportatu' koadroaren kokapen bezala:"; 54*e662c9c9SAndreas Haerter 55*e662c9c9SAndreas Haerter//toolbox 56*e662c9c9SAndreas Haerter$lang["vector_toolbox"] = "Erakutsi tresna koadroa?"; 57*e662c9c9SAndreas Haerter$lang["vector_toolbox_default"] = "Bai bada, lehenetsitako tresna koadroa erabili?"; 58*e662c9c9SAndreas Haerter$lang["vector_toolbox_location"] = "Ez bada lehenetsia, erabili hurrengo wiki orrialdea tresna koadroaren kokapen bezala:"; 59*e662c9c9SAndreas Haerter 60*e662c9c9SAndreas Haerter//custom copyright notice 61*e662c9c9SAndreas Haerter$lang["vector_copyright"] = "Erakutsi copyright oharra?"; 62*e662c9c9SAndreas Haerter$lang["vector_copyright_default"] = "Bai bada, erabili lehenetsitako copyright oharra?"; 63*e662c9c9SAndreas Haerter$lang["vector_copyright_location"] = "Ez bada lehenetsia, erabili hurrengo wiki orrialdea copyright oharrarendako:"; 64*e662c9c9SAndreas Haerter 65*e662c9c9SAndreas Haerter//donation link/button 66*e662c9c9SAndreas Haerter$lang["vector_donate"] = "Erakutsi dohaintza lotura/botoia?"; 67*e662c9c9SAndreas Haerter$lang["vector_donate_default"] = "Bai bada, erabili berezko URL-a dohaintzetarako?"; 68*e662c9c9SAndreas Haerter$lang["vector_donate_url"] = "Ez bada lehenetsia, erabili hurrengo URL-a dohaintzetarako:"; 69*e662c9c9SAndreas Haerter 70*e662c9c9SAndreas Haerter//TOC 71*e662c9c9SAndreas Haerter$lang["vector_toc_position"] = "Edukien taularen (TOC) posizioa"; 72*e662c9c9SAndreas Haerter 73*e662c9c9SAndreas Haerter//other stuff 74*e662c9c9SAndreas Haerter$lang["vector_mediamanager_embedded"] = "Erakutsi mediamanger embedded itxura arruntarekin?"; 75*e662c9c9SAndreas Haerter$lang["vector_breadcrumbs_position"] = "Breadcrumb-aren posizioa nabigazioan (gaituta badago):"; 76*e662c9c9SAndreas Haerter$lang["vector_youarehere_position"] = "'Hemen zaude'-ren posizioa nabigazioan (gaituta badago):"; 77*e662c9c9SAndreas Haerter$lang["vector_cite_author"] = "Jarri autorearen izena 'Artikuluaren aipamenean':"; 78*e662c9c9SAndreas Haerter$lang["vector_loaduserjs"] = "Kargatu 'vector/user/user.js'?"; 79*e662c9c9SAndreas Haerter$lang["vector_closedwiki"] = "Wiki itxia (lotura/fitxa/koadro gehienak ezkutatuta daude erabiltzailea sartu arte)?"; 80*e662c9c9SAndreas Haerter 81