xref: /plugin/upgrade/lang/en/lang.php (revision eb52c46a343434f52d0105c529efb816add8ca38)
1<?php
2/**
3 * English language file for upgrade plugin
4 *
5 * @author Andreas Gohr <andi@splitbrain.org>
6 */
7
8// menu entry for admin plugins
9$lang['menu'] = 'Wiki Upgrade';
10
11// custom language strings for the plugin
12$lang['vs_php']     = 'New DokuWiki releases need at least PHP %s, but you\'re running %s. You should upgrade your PHP version before upgrading!';
13$lang['vs_tgzno']   = 'Could not determine the newest version of DokuWiki.';
14$lang['vs_tgz']     = 'DokuWiki <b>%s</b> is available for download.';
15$lang['vs_local']   = 'You\'re currently running DokuWiki <b>%s</b>.';
16$lang['vs_localno'] = 'It\'s not clear how old your currently running version is, manual upgrade is recommended.';
17$lang['vs_newer']   = 'It seems your current DokuWiki is even newer than the latest stable release. Upgrade not recommended.';
18$lang['vs_same']    = 'Your current DokuWiki is already up to date. No need for upgrading.';
19$lang['vs_plugin']  = 'There is a newer upgrade plugin available (%s) you should update the plugin before continuing.';
20
21$lang['dl_from']    = 'Downloading archive from %s...';
22$lang['dl_fail']    = 'Download failed.';
23$lang['dl_done']    = 'Download completed (%s).';
24$lang['pk_extract'] = 'Unpacking archive...';
25$lang['pk_fail']    = 'Unpacking failed.';
26$lang['pk_done']    = 'Unpacking completed.';
27$lang['pk_version'] = 'DokuWiki <b>%s</b> is ready to install (You\'re currently running <b>%s</b>).';
28$lang['ck_start']   = 'Checking file permissions...';
29$lang['ck_done']    = 'All files are writable. Ready to upgrade.';
30$lang['ck_fail']    = 'Some files aren\'t writable. Automatic upgrade not possible.';
31$lang['cp_start']   = 'Updating files...';
32$lang['cp_done']    = 'All files updated.';
33$lang['cp_fail']    = 'Uh-Oh. Something went wrong. Better check manually.';
34$lang['tv_noperm']  = '<code>%s</code> is not writable!';
35$lang['tv_upd']     = '<code>%s</code> will be updated.';
36$lang['tv_nocopy']  = 'Could not copy file <code>%s</code>!';
37$lang['tv_nodir']   = 'Could not create directory <code>%s</code>!';
38$lang['tv_done']    = 'updated <code>%s</code>';
39$lang['rm_done']    = 'Deprecated <code>%s</code> deleted.';
40$lang['rm_fail']    = 'Could not delete deprecated <code>%s</code>. <b>Please delete manually!</b>';
41$lang['finish']     = 'Upgrade completed. Enjoy your new DokuWiki';
42
43$lang['step_version']  = 'Check';
44$lang['step_download'] = 'Download';
45$lang['step_unpack']   = 'Unpack';
46$lang['step_check']    = 'Verify';
47$lang['step_upgrade']  = 'Install';
48
49//Setup VIM: ex: et ts=4 enc=utf-8 :
50