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.'; 20c37aa5dcSAndreas Gohr$lang['vs_ssl'] = 'Your PHP seems not to support SSL streams, downloading the needed data will most likely fail. Upgrade manually instead.'; 21f378cb7eSAndreas Gohr 223c38de15SAndreas Gohr$lang['dl_from'] = 'Downloading archive from %s...'; 233c38de15SAndreas Gohr$lang['dl_fail'] = 'Download failed.'; 243c38de15SAndreas Gohr$lang['dl_done'] = 'Download completed (%s).'; 253c38de15SAndreas Gohr$lang['pk_extract'] = 'Unpacking archive...'; 263c38de15SAndreas Gohr$lang['pk_fail'] = 'Unpacking failed.'; 273c38de15SAndreas Gohr$lang['pk_done'] = 'Unpacking completed.'; 283c38de15SAndreas Gohr$lang['pk_version'] = 'DokuWiki <b>%s</b> is ready to install (You\'re currently running <b>%s</b>).'; 293c38de15SAndreas Gohr$lang['ck_start'] = 'Checking file permissions...'; 303c38de15SAndreas Gohr$lang['ck_done'] = 'All files are writable. Ready to upgrade.'; 313c38de15SAndreas Gohr$lang['ck_fail'] = 'Some files aren\'t writable. Automatic upgrade not possible.'; 323c38de15SAndreas Gohr$lang['cp_start'] = 'Updating files...'; 33e32047e3SAndreas Gohr$lang['cp_done'] = 'All files updated.'; 343c38de15SAndreas Gohr$lang['cp_fail'] = 'Uh-Oh. Something went wrong. Better check manually.'; 353c38de15SAndreas Gohr$lang['tv_noperm'] = '<code>%s</code> is not writable!'; 363c38de15SAndreas Gohr$lang['tv_upd'] = '<code>%s</code> will be updated.'; 373c38de15SAndreas Gohr$lang['tv_nocopy'] = 'Could not copy file <code>%s</code>!'; 38*7b7da9aaSAndreas Gohr$lang['tv_nocopy'] = 'Could not remove existing file <code>%s</code> before overwriting!'; 393c38de15SAndreas Gohr$lang['tv_nodir'] = 'Could not create directory <code>%s</code>!'; 403c38de15SAndreas Gohr$lang['tv_done'] = 'updated <code>%s</code>'; 4163712694SAndreas Gohr$lang['rm_done'] = 'Deprecated <code>%s</code> deleted.'; 4263712694SAndreas Gohr$lang['rm_fail'] = 'Could not delete deprecated <code>%s</code>. <b>Please delete manually!</b>'; 43*7b7da9aaSAndreas Gohr$lang['rm_mismatch']= 'Case mismatch for deprecated file <code>%s</code>. Please check manually if file should really be deleted.'; 44e32047e3SAndreas Gohr$lang['finish'] = 'Upgrade completed. Enjoy your new DokuWiki'; 4534aae6dbSAndreas Gohr 466e7afd39SAndreas Gohr$lang['btn_continue'] = 'Continue'; 476e7afd39SAndreas Gohr$lang['btn_abort'] = 'Abort'; 486e7afd39SAndreas Gohr 49eb52c46aSAndreas Gohr$lang['step_version'] = 'Check'; 50eb52c46aSAndreas Gohr$lang['step_download'] = 'Download'; 51eb52c46aSAndreas Gohr$lang['step_unpack'] = 'Unpack'; 52eb52c46aSAndreas Gohr$lang['step_check'] = 'Verify'; 53eb52c46aSAndreas Gohr$lang['step_upgrade'] = 'Install'; 54eb52c46aSAndreas Gohr 554ed3677eSAndreas Gohr$lang['careful'] = 'Errors above! You should <b>not</b> continue!'; 564ed3677eSAndreas Gohr 5734aae6dbSAndreas Gohr//Setup VIM: ex: et ts=4 enc=utf-8 : 58