xref: /plugin/upgrade/lang/en/lang.php (revision 3c38de15bc9da755a332c4ade8df1dc426be20fa)
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['dl_from'] = 'Downloading archive from %s...';
13$lang['dl_fail'] = 'Download failed.';
14$lang['dl_done'] = 'Download completed (%s).';
15$lang['pk_extract'] = 'Unpacking archive...';
16$lang['pk_fail']    = 'Unpacking failed.';
17$lang['pk_done']    = 'Unpacking completed.';
18$lang['pk_version'] = 'DokuWiki <b>%s</b> is ready to install (You\'re currently running <b>%s</b>).';
19$lang['ck_start']   = 'Checking file permissions...';
20$lang['ck_done']    = 'All files are writable. Ready to upgrade.';
21$lang['ck_fail']    = 'Some files aren\'t writable. Automatic upgrade not possible.';
22$lang['cp_start']   = 'Updating files...';
23$lang['cp_done']    = 'Upgrade successful. Enjoy your new DokuWiki!';
24$lang['cp_fail']    = 'Uh-Oh. Something went wrong. Better check manually.';
25$lang['tv_noperm']  = '<code>%s</code> is not writable!';
26$lang['tv_upd']     = '<code>%s</code> will be updated.';
27$lang['tv_nocopy']  = 'Could not copy file <code>%s</code>!';
28$lang['tv_nodir']   = 'Could not create directory <code>%s</code>!';
29$lang['tv_done']    = 'updated <code>%s</code>';
30
31
32
33//Setup VIM: ex: et ts=4 enc=utf-8 :
34