1f4ba5b8dSAndreas Gohr<?php 2*ab090718SFelipe Castro 3f4ba5b8dSAndreas Gohr/** 4*ab090718SFelipe Castro * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 5f4ba5b8dSAndreas Gohr * 6f4ba5b8dSAndreas Gohr * @author Felipe Castro <fefcas@uol.com.br> 7aad41e93SAndreas Gohr * @author Felipe Castro <fefcas@gmail.com> 81462e3aeSAndreas Gohr * @author Felipe Castro <fefcas (cxe) gmail (punkto) com> 97253d913SAndreas Gohr * @author Felipo Kastro <fefcas@gmail.com> 106c51446dSRobert Bogenschneider * @author Robert Bogenschneider <robog@gmx.de> 118f151af0SErik Pedersen * @author Erik Pedersen <erik pedersen@shaw.ca> 12c1c078dcSErik Pedersen * @author Erik Pedersen <erik.pedersen@shaw.ca> 13bdc67fe7SRobert Bogenschneider * @author Robert Bogenschneider <bogi@uea.org> 14*ab090718SFelipe Castro * @author Felipe Castro <fefcas@yahoo.com.br> 15f4ba5b8dSAndreas Gohr */ 162c961e61SRobert Bogenschneider$lang['menu'] = 'Administrado de uzantoj'; 17fb822afdSFelipe Castro$lang['noauth'] = '(identiĝo de uzantoj ne disponeblas)'; 18541d121aSRobert Bogenschneider$lang['nosupport'] = '(administro de uzantoj ne estas subtenata)'; 196c51446dSRobert Bogenschneider$lang['badauth'] = 'tiu identiĝa procezo ne validas'; 20fb822afdSFelipe Castro$lang['user_id'] = 'Uzanto'; 21aad41e93SAndreas Gohr$lang['user_pass'] = 'Pasvorto'; 22541d121aSRobert Bogenschneider$lang['user_name'] = 'Vera nomo'; 23bdc67fe7SRobert Bogenschneider$lang['user_mail'] = 'Retpoŝtadreso'; 24aad41e93SAndreas Gohr$lang['user_groups'] = 'Grupoj'; 25aad41e93SAndreas Gohr$lang['field'] = 'Kampo'; 26aad41e93SAndreas Gohr$lang['value'] = 'Valoro'; 27aad41e93SAndreas Gohr$lang['add'] = 'Aldoni'; 28aad41e93SAndreas Gohr$lang['delete'] = 'Forigi'; 29541d121aSRobert Bogenschneider$lang['delete_selected'] = 'Forigi elektitan'; 30aad41e93SAndreas Gohr$lang['edit'] = 'Modifi'; 31541d121aSRobert Bogenschneider$lang['edit_prompt'] = 'Modifi tiun ĉi uzanton'; 32541d121aSRobert Bogenschneider$lang['modify'] = 'Registri modifojn'; 33aad41e93SAndreas Gohr$lang['search'] = 'Serĉi'; 34aad41e93SAndreas Gohr$lang['search_prompt'] = 'Fari serĉon'; 35541d121aSRobert Bogenschneider$lang['clear'] = 'Refari serĉan filtron'; 36aad41e93SAndreas Gohr$lang['filter'] = 'Filtro'; 37*ab090718SFelipe Castro$lang['export_all'] = 'Eksporti ĉiujn uzantojn (CSV)'; 38*ab090718SFelipe Castro$lang['export_filtered'] = 'Eksporti filtritan uzant-liston (CSV)'; 39*ab090718SFelipe Castro$lang['import'] = 'Importi novajn uzantojn'; 40*ab090718SFelipe Castro$lang['line'] = 'Lini-num.'; 41*ab090718SFelipe Castro$lang['error'] = 'Erar-mesaĝo'; 42fb822afdSFelipe Castro$lang['summary'] = 'Montriĝas uzantoj %1$d-%2$d el %3$d trovitaj. %4$d uzantoj entute.'; 43bdc67fe7SRobert Bogenschneider$lang['nonefound'] = 'Neniuj uzantoj troviĝas. %d uzantoj entute.'; 44bdc67fe7SRobert Bogenschneider$lang['delete_ok'] = '%d uzantoj forigiĝis'; 457253d913SAndreas Gohr$lang['delete_fail'] = '%d malsukcesis esti forigitaj.'; 46bdc67fe7SRobert Bogenschneider$lang['update_ok'] = 'Tiu uzanto sukcese ĝisdatiĝis'; 47fb822afdSFelipe Castro$lang['update_fail'] = 'Malsukceso okazis por ĝisdatigi tiun uzanton'; 48fb822afdSFelipe Castro$lang['update_exists'] = 'Malsukceso okazis por ŝanĝi la nomon de tiu uzanto: la enmetita nomo (%s) jam ekzistas (ĉiuj aliaj ŝanĝoj estos aplikitaj)'; 49aad41e93SAndreas Gohr$lang['start'] = 'Ekigi'; 50aad41e93SAndreas Gohr$lang['prev'] = 'antaŭe'; 51aad41e93SAndreas Gohr$lang['next'] = 'sekve'; 52aad41e93SAndreas Gohr$lang['last'] = 'laste'; 53bdc67fe7SRobert Bogenschneider$lang['edit_usermissing'] = 'La elektita uzanto ne troviĝis: tiu nomo povis esti forigita aŭ ŝanĝita aliloke.'; 54fb822afdSFelipe Castro$lang['user_notify'] = 'Avizi uzanton'; 55fb822afdSFelipe Castro$lang['note_notify'] = 'Avizantaj mesaĝoj estos sendataj nur se la uzanto ekhavos novan pasvorton.'; 56fb822afdSFelipe Castro$lang['note_group'] = 'Novaj uzantoj estos aldonitaj al la komuna grupo (%s) se neniu alia estos specifita.'; 57bdc67fe7SRobert Bogenschneider$lang['note_pass'] = 'La pasvorto estos aŭtomate kreita se la kampo estos lasita malplena kaj \'avizo al uzantoj\' estos ebligita.'; 58bdc67fe7SRobert Bogenschneider$lang['add_ok'] = 'La uzanto sukcese aldoniĝis'; 59bdc67fe7SRobert Bogenschneider$lang['add_fail'] = 'Ne eblis aldoni uzanton'; 60bdc67fe7SRobert Bogenschneider$lang['notify_ok'] = 'Avizanta mesaĝo sendiĝis'; 617253d913SAndreas Gohr$lang['notify_fail'] = 'La avizanta mesaĝo ne povis esti sendita'; 62*ab090718SFelipe Castro$lang['import_success_count'] = 'Uzant-importo: %d uzantoj trovataj, %d sukcese importitaj.'; 63*ab090718SFelipe Castro$lang['import_failure_count'] = 'Uzant-importo: %d fiaskis. Fiaskoj estas sube listitaj.'; 64*ab090718SFelipe Castro$lang['import_error_fields'] = 'Nesufiĉe da kampoj, ni trovis %d, necesas 4.'; 65*ab090718SFelipe Castro$lang['import_error_baduserid'] = 'Mankas uzant-id'; 66*ab090718SFelipe Castro$lang['import_error_badname'] = 'Malĝusta nomo'; 67*ab090718SFelipe Castro$lang['import_error_badmail'] = 'Malĝusta retadreso'; 68*ab090718SFelipe Castro$lang['import_error_upload'] = 'Importo fiaskis. La csv-dosiero ne povis esti alŝutata aŭ ĝi estas malplena.'; 69*ab090718SFelipe Castro$lang['import_error_readfail'] = 'Importo fiaskis. Ne eblas legi alŝutitan dosieron.'; 70*ab090718SFelipe Castro$lang['import_error_create'] = 'Ne eblas krei la uzanton'; 71*ab090718SFelipe Castro$lang['import_notify_fail'] = 'Averta mesaĝo ne povis esti sendata al la importita uzanto %s, kun retdreso %s.'; 72