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 12f378cb7eSAndreas Gohr$lang['vs_php'] = 'New DokuWiki releases need at least PHP %s, but you\'re running %s. You should upgrade your PHP version before upgrading!'; 13f378cb7eSAndreas Gohr$lang['vs_tgzno'] = 'Could not determine the newest version of DokuWiki.'; 14f378cb7eSAndreas Gohr$lang['vs_tgz'] = 'DokuWiki <b>%s</b> is available for download.'; 15f378cb7eSAndreas Gohr$lang['vs_local'] = 'You\'re currently running DokuWiki <b>%s</b>.'; 16f378cb7eSAndreas Gohr$lang['vs_localno'] = 'It\'s not clear how old your currently running version is, manual upgrade is recommended.'; 17f378cb7eSAndreas Gohr$lang['vs_newer'] = 'It seems your current DokuWiki is even newer than the latest stable release. Upgrade not recommended.'; 18f378cb7eSAndreas Gohr$lang['vs_same'] = 'Your current DokuWiki is already up to date. No need for upgrading.'; 19f378cb7eSAndreas Gohr$lang['vs_plugin'] = 'There is a newer upgrade plugin available (%s) you should update the plugin before continuing.'; 20f378cb7eSAndreas Gohr 213c38de15SAndreas Gohr$lang['dl_from'] = 'Downloading archive from %s...'; 223c38de15SAndreas Gohr$lang['dl_fail'] = 'Download failed.'; 233c38de15SAndreas Gohr$lang['dl_done'] = 'Download completed (%s).'; 243c38de15SAndreas Gohr$lang['pk_extract'] = 'Unpacking archive...'; 253c38de15SAndreas Gohr$lang['pk_fail'] = 'Unpacking failed.'; 263c38de15SAndreas Gohr$lang['pk_done'] = 'Unpacking completed.'; 273c38de15SAndreas Gohr$lang['pk_version'] = 'DokuWiki <b>%s</b> is ready to install (You\'re currently running <b>%s</b>).'; 283c38de15SAndreas Gohr$lang['ck_start'] = 'Checking file permissions...'; 293c38de15SAndreas Gohr$lang['ck_done'] = 'All files are writable. Ready to upgrade.'; 303c38de15SAndreas Gohr$lang['ck_fail'] = 'Some files aren\'t writable. Automatic upgrade not possible.'; 313c38de15SAndreas Gohr$lang['cp_start'] = 'Updating files...'; 32e32047e3SAndreas Gohr$lang['cp_done'] = 'All files updated.'; 333c38de15SAndreas Gohr$lang['cp_fail'] = 'Uh-Oh. Something went wrong. Better check manually.'; 343c38de15SAndreas Gohr$lang['tv_noperm'] = '<code>%s</code> is not writable!'; 353c38de15SAndreas Gohr$lang['tv_upd'] = '<code>%s</code> will be updated.'; 363c38de15SAndreas Gohr$lang['tv_nocopy'] = 'Could not copy file <code>%s</code>!'; 373c38de15SAndreas Gohr$lang['tv_nodir'] = 'Could not create directory <code>%s</code>!'; 383c38de15SAndreas Gohr$lang['tv_done'] = 'updated <code>%s</code>'; 3963712694SAndreas Gohr$lang['rm_done'] = 'Deprecated <code>%s</code> deleted.'; 4063712694SAndreas Gohr$lang['rm_fail'] = 'Could not delete deprecated <code>%s</code>. <b>Please delete manually!</b>'; 41e32047e3SAndreas Gohr$lang['finish'] = 'Upgrade completed. Enjoy your new DokuWiki'; 4234aae6dbSAndreas Gohr 43*6e7afd39SAndreas Gohr$lang['btn_continue'] = 'Continue'; 44*6e7afd39SAndreas Gohr$lang['btn_abort'] = 'Abort'; 45*6e7afd39SAndreas Gohr 46eb52c46aSAndreas Gohr$lang['step_version'] = 'Check'; 47eb52c46aSAndreas Gohr$lang['step_download'] = 'Download'; 48eb52c46aSAndreas Gohr$lang['step_unpack'] = 'Unpack'; 49eb52c46aSAndreas Gohr$lang['step_check'] = 'Verify'; 50eb52c46aSAndreas Gohr$lang['step_upgrade'] = 'Install'; 51eb52c46aSAndreas Gohr 5234aae6dbSAndreas Gohr//Setup VIM: ex: et ts=4 enc=utf-8 : 53