1e662c9c9SAndreas Haerter<?php 2e662c9c9SAndreas Haerter 3e662c9c9SAndreas Haerter/** 4e662c9c9SAndreas Haerter * Basque language for the "vector" DokuWiki template 5e662c9c9SAndreas Haerter * 6e662c9c9SAndreas Haerter * If your language is not/only partially translated or you found an error/typo, 7e662c9c9SAndreas Haerter * have a look at the following files: 8e662c9c9SAndreas Haerter * - "/lib/tpl/vector/lang/<your lang>/lang.php" 9e662c9c9SAndreas Haerter * - "/lib/tpl/vector/lang/<your lang>/settings.php" 10e662c9c9SAndreas Haerter * If they are not existing, copy and translate the English ones (hint: looking 11*099d81c1SAndreas Haerter * at <http://[your lang].wikipedia.org> might be helpful). 12*099d81c1SAndreas Haerter * 13*099d81c1SAndreas Haerter * Don't forget to mail your translation to 14*099d81c1SAndreas Haerter * Andreas Haerter <development@andreas-haerter.com> 15dbba3fd5SAndreas Haerter * Thanks :-D. 16e662c9c9SAndreas Haerter * 17e662c9c9SAndreas Haerter * 18e662c9c9SAndreas Haerter * LICENSE: This file is open source software (OSS) and may be copied under 19e662c9c9SAndreas Haerter * certain conditions. See COPYING file for details or try to contact 20e662c9c9SAndreas Haerter * the author(s) of this file in doubt. 21e662c9c9SAndreas Haerter * 22e662c9c9SAndreas Haerter * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 23e662c9c9SAndreas Haerter * @author ander 24e662c9c9SAndreas Haerter * @link http://www.dokuwiki.org/template:vector 25e662c9c9SAndreas Haerter * @link http://www.dokuwiki.org/config:lang 26e662c9c9SAndreas Haerter * @link http://www.dokuwiki.org/devel:configuration 27e662c9c9SAndreas Haerter */ 28e662c9c9SAndreas Haerter 29e662c9c9SAndreas Haerter 30e662c9c9SAndreas Haerter//check if we are running within the DokuWiki environment 31e662c9c9SAndreas Haerterif (!defined("DOKU_INC")){ 32e662c9c9SAndreas Haerter die(); 33e662c9c9SAndreas Haerter} 34e662c9c9SAndreas Haerter 35e662c9c9SAndreas Haerter//tabs, personal tools and special links 36e662c9c9SAndreas Haerter$lang["vector_article"] = "Artikulua"; 37e662c9c9SAndreas Haerter$lang["vector_discussion"] = "Eztabaida"; 38e662c9c9SAndreas Haerter$lang["vector_read"] = "Irakurri"; 39e662c9c9SAndreas Haerter$lang["vector_edit"] = "Aldatu"; 40e662c9c9SAndreas Haerter$lang["vector_create"] = "Sortu"; 41e662c9c9SAndreas Haerter$lang["vector_userpage"] = "Erabiltzaile Orria"; 42e662c9c9SAndreas Haerter$lang["vector_specialpage"] = "Orrialde Bereziak"; 43e662c9c9SAndreas Haerter$lang["vector_mytalk"] = "Nire Eztabaida"; 44e662c9c9SAndreas Haerter$lang["vector_exportodt"] = "Esportatu: ODT"; 45e662c9c9SAndreas Haerter$lang["vector_exportpdf"] = "Esportatu: PDF"; 46e662c9c9SAndreas Haerter$lang["vector_subscribens"] = "Harpidetu NS aldaketetara"; //original DW lang $lang["btn_subscribens"] is simply too long for common tab configs 47e662c9c9SAndreas Haerter$lang["vector_unsubscribens"] = "Kendu NS aldaketetako harpidetza"; //original DW lang $lang["btn_unsubscribens"] is simply too long for common tab configs 48e662c9c9SAndreas Haerter$lang["vector_translations"] = "Hizkuntzak"; 49e662c9c9SAndreas Haerter 50e662c9c9SAndreas Haerter//headlines for the different bars and boxes 51e662c9c9SAndreas Haerter$lang["vector_navigation"] = "Nabigazioa"; 52e662c9c9SAndreas Haerter$lang["vector_toolbox"] = "Tresnak"; 53e662c9c9SAndreas Haerter$lang["vector_exportbox"] = "Imprimatu/esportatu"; 54e662c9c9SAndreas Haerter$lang["vector_inotherlanguages"] = "Hizkuntzak"; 55e662c9c9SAndreas Haerter$lang["vector_printexport"] = "Imprimatu/esportatu"; 56e662c9c9SAndreas Haerter$lang["vector_personnaltools"] = "Tresna pertsonalak"; 57e662c9c9SAndreas Haerter 58e662c9c9SAndreas Haerter//buttons 59e662c9c9SAndreas Haerter$lang["vector_btn_go"] = "Joan"; 60e662c9c9SAndreas Haerter$lang["vector_btn_search"] = "Bilatu"; 61e662c9c9SAndreas Haerter$lang["vector_btn_search_title"] = "Bilatu testu hau"; 62e662c9c9SAndreas Haerter 63e662c9c9SAndreas Haerter//exportbox ("print/export") 64e662c9c9SAndreas Haerter$lang["vector_exportbxdef_print"] = "Imprimatzeko bertsioa"; 65e662c9c9SAndreas Haerter$lang["vector_exportbxdef_downloadodt"] = "Jaitsi ODT formatuan"; 66e662c9c9SAndreas Haerter$lang["vector_exportbxdef_downloadpdf"] = "Jaitsi PDF formatuan"; 67e662c9c9SAndreas Haerter 68e662c9c9SAndreas Haerter//default toolbox 69e662c9c9SAndreas Haerter$lang["vector_toolbxdef_whatlinkshere"] = "Orri honetaranzko lotura dutenak"; 700a1cb4e9SAndreas Haerter$lang["vector_toolbxdef_upload"] = "Fitxategia igo"; 71e662c9c9SAndreas Haerter$lang["vector_toolbxdef_siteindex"] = "Gunearen aurkibidea"; 72e662c9c9SAndreas Haerter$lang["vector_toolboxdef_permanent"] = "Lotura iraunkorra"; 73e662c9c9SAndreas Haerter$lang["vector_toolboxdef_cite"] = "Sortu orrialde hau"; 74e662c9c9SAndreas Haerter 75e662c9c9SAndreas Haerter//cite this article 76e662c9c9SAndreas Haerter$lang["vector_cite_bibdetailsfor"] = "Bibliografiko xehetasunak"; 77e662c9c9SAndreas Haerter$lang["vector_cite_pagename"] = "Orrialde izena"; 78e662c9c9SAndreas Haerter$lang["vector_cite_author"] = "Autorea"; 79e662c9c9SAndreas Haerter$lang["vector_cite_publisher"] = "Argitaratzailea"; 80e662c9c9SAndreas Haerter$lang["vector_cite_dateofrev"] = "Berrikuspen honen data"; 81e662c9c9SAndreas Haerter$lang["vector_cite_dateretrieved"] = "Data berreskuratuta"; 82e662c9c9SAndreas Haerter$lang["vector_cite_permurl"] = "URL iraunkorra"; 83e662c9c9SAndreas Haerter$lang["vector_cite_pageversionid"] = "Orriaren bertsioaren ID-a"; 84e662c9c9SAndreas Haerter$lang["vector_cite_citationstyles"] = "Aipatzeko estiloak"; 85e662c9c9SAndreas Haerter$lang["vector_cite_checkstandards"] = "Gogoan izan zure estilo eskuliburua egiaztatzeao, arau gida edo irakaslearen jarraibideak sintaxia zehatza dela eta zure beharretara egokitzea lortzeko."; 86e662c9c9SAndreas Haerter$lang["vector_cite_latexusepackagehint"] = "LaTeX pakete url-a erabiltzean (\ usepackage {url} hitzaurrean nonbait), hobeto formateatutako web helbideak emateko joera duenez, gogokoagoa izan daiteke"; 87e662c9c9SAndreas Haerter$lang["vector_cite_retrieved"] = "Berreskuratuta"; 88e662c9c9SAndreas Haerter$lang["vector_cite_from"] = "-tik"; 89e662c9c9SAndreas Haerter$lang["vector_cite_in"] = "-an"; 90e662c9c9SAndreas Haerter$lang["vector_cite_accessed"] = "Atzituta"; 91e662c9c9SAndreas Haerter$lang["vector_cite_cited"] = "Aipatuta"; 92e662c9c9SAndreas Haerter$lang["vector_cite_lastvisited"] = "Azken bisita"; 93e662c9c9SAndreas Haerter$lang["vector_cite_availableat"] = "Eskuragarri"; 94e662c9c9SAndreas Haerter$lang["vector_cite_discussionpages"] = "DokuWiki-ko hitz egiteko orrialdeak"; 95e662c9c9SAndreas Haerter$lang["vector_cite_markup"] = "Markatu"; 96e662c9c9SAndreas Haerter$lang["vector_cite_result"] = "Emaitza"; 97e662c9c9SAndreas Haerter$lang["vector_cite_thisversion"] = "bertsio hau"; 98e662c9c9SAndreas Haerter 99e662c9c9SAndreas Haerter//other 100e662c9c9SAndreas Haerter$lang["vector_search"] = "Bilatu"; 101e662c9c9SAndreas Haerter$lang["vector_accessdenied"] = "Sarbidea ukatuta"; 102e662c9c9SAndreas Haerter$lang["vector_fillplaceholder"] = "Mesedez bete hauek"; 103e662c9c9SAndreas Haerter$lang["vector_donate"] = "Dohaintza egin"; 104e662c9c9SAndreas Haerter$lang["vector_mdtemplatefordw"] = "DokuWikirako Vector txantiloia"; 105e662c9c9SAndreas Haerter$lang["vector_recentchanges"] = "Aldaketa berriak"; 106