xref: /plugin/upgrade/lang/en/lang.php (revision 63712694be80a76fc17f6e72bf47795e2574528d)
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
123c38de15SAndreas Gohr$lang['dl_from'] = 'Downloading archive from %s...';
133c38de15SAndreas Gohr$lang['dl_fail'] = 'Download failed.';
143c38de15SAndreas Gohr$lang['dl_done'] = 'Download completed (%s).';
153c38de15SAndreas Gohr$lang['pk_extract'] = 'Unpacking archive...';
163c38de15SAndreas Gohr$lang['pk_fail']    = 'Unpacking failed.';
173c38de15SAndreas Gohr$lang['pk_done']    = 'Unpacking completed.';
183c38de15SAndreas Gohr$lang['pk_version'] = 'DokuWiki <b>%s</b> is ready to install (You\'re currently running <b>%s</b>).';
193c38de15SAndreas Gohr$lang['ck_start']   = 'Checking file permissions...';
203c38de15SAndreas Gohr$lang['ck_done']    = 'All files are writable. Ready to upgrade.';
213c38de15SAndreas Gohr$lang['ck_fail']    = 'Some files aren\'t writable. Automatic upgrade not possible.';
223c38de15SAndreas Gohr$lang['cp_start']   = 'Updating files...';
233c38de15SAndreas Gohr$lang['cp_done']    = 'Upgrade successful. Enjoy your new DokuWiki!';
243c38de15SAndreas Gohr$lang['cp_fail']    = 'Uh-Oh. Something went wrong. Better check manually.';
253c38de15SAndreas Gohr$lang['tv_noperm']  = '<code>%s</code> is not writable!';
263c38de15SAndreas Gohr$lang['tv_upd']     = '<code>%s</code> will be updated.';
273c38de15SAndreas Gohr$lang['tv_nocopy']  = 'Could not copy file <code>%s</code>!';
283c38de15SAndreas Gohr$lang['tv_nodir']   = 'Could not create directory <code>%s</code>!';
293c38de15SAndreas Gohr$lang['tv_done']    = 'updated <code>%s</code>';
30*63712694SAndreas Gohr$lang['rm_done']    = 'Deprecated <code>%s</code> deleted.';
31*63712694SAndreas Gohr$lang['rm_fail']    = 'Could not delete deprecated <code>%s</code>. <b>Please delete manually!</b>';
3234aae6dbSAndreas Gohr
3334aae6dbSAndreas Gohr
3434aae6dbSAndreas Gohr//Setup VIM: ex: et ts=4 enc=utf-8 :
35