134aae6dbSAndreas Gohr<?php 234aae6dbSAndreas Gohr/** 3d391262fSAndreas Gohr * English language file for upgrade plugin 434aae6dbSAndreas Gohr * 534aae6dbSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 634aae6dbSAndreas Gohr */ 734aae6dbSAndreas Gohr 834aae6dbSAndreas Gohr// menu entry for admin plugins 934aae6dbSAndreas Gohr$lang['menu'] = 'Wiki Upgrade'; 1034aae6dbSAndreas Gohr 1134aae6dbSAndreas Gohr// custom language strings for the plugin 12*3c38de15SAndreas Gohr$lang['dl_from'] = 'Downloading archive from %s...'; 13*3c38de15SAndreas Gohr$lang['dl_fail'] = 'Download failed.'; 14*3c38de15SAndreas Gohr$lang['dl_done'] = 'Download completed (%s).'; 15*3c38de15SAndreas Gohr$lang['pk_extract'] = 'Unpacking archive...'; 16*3c38de15SAndreas Gohr$lang['pk_fail'] = 'Unpacking failed.'; 17*3c38de15SAndreas Gohr$lang['pk_done'] = 'Unpacking completed.'; 18*3c38de15SAndreas Gohr$lang['pk_version'] = 'DokuWiki <b>%s</b> is ready to install (You\'re currently running <b>%s</b>).'; 19*3c38de15SAndreas Gohr$lang['ck_start'] = 'Checking file permissions...'; 20*3c38de15SAndreas Gohr$lang['ck_done'] = 'All files are writable. Ready to upgrade.'; 21*3c38de15SAndreas Gohr$lang['ck_fail'] = 'Some files aren\'t writable. Automatic upgrade not possible.'; 22*3c38de15SAndreas Gohr$lang['cp_start'] = 'Updating files...'; 23*3c38de15SAndreas Gohr$lang['cp_done'] = 'Upgrade successful. Enjoy your new DokuWiki!'; 24*3c38de15SAndreas Gohr$lang['cp_fail'] = 'Uh-Oh. Something went wrong. Better check manually.'; 25*3c38de15SAndreas Gohr$lang['tv_noperm'] = '<code>%s</code> is not writable!'; 26*3c38de15SAndreas Gohr$lang['tv_upd'] = '<code>%s</code> will be updated.'; 27*3c38de15SAndreas Gohr$lang['tv_nocopy'] = 'Could not copy file <code>%s</code>!'; 28*3c38de15SAndreas Gohr$lang['tv_nodir'] = 'Could not create directory <code>%s</code>!'; 29*3c38de15SAndreas Gohr$lang['tv_done'] = 'updated <code>%s</code>'; 3034aae6dbSAndreas Gohr 3134aae6dbSAndreas Gohr 3234aae6dbSAndreas Gohr 3334aae6dbSAndreas Gohr//Setup VIM: ex: et ts=4 enc=utf-8 : 34