1<?php
2/**
3 * english language file
4 *
5 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6 * @author     Gary Owen <>
7 */
8
9$lang['menu']       = 'Move pages and namespaces';
10$lang['inprogress'] = '(move pending)';
11$lang['treelink']   = 'Alternatively to this simple form you can manage complex restructuring of your wiki using the <a href="%s">tree-based move manager</a>.';
12
13// page errors
14$lang['notexist']      = 'The page %s does not exist';
15$lang['norights']      = 'You have insufficient permissions to edit %s.';
16$lang['filelocked']    = 'The page %s is locked. Try again later.';
17$lang['notchanged']    = 'No new destination given for page %s (location unchanged).';
18$lang['exists']        = 'Page %s can\'t be moved to %s, the target already exists.';
19$lang['notargetperms'] = 'You don\'t have the permission to create the page %s.';
20
21// media errors
22$lang['medianotexist']      = 'The media file %s does not exist';
23$lang['nomediarights']      = 'You have insufficient permissions to delete %s.';
24$lang['medianotchanged']    = 'No new destination given for page %s (location unchanged).';
25$lang['mediaexists']        = 'Media %s can\'t be moved to %s, the target already exists.';
26$lang['nomediatargetperms'] = 'You don\'t have the permission to create the media file %s.';
27
28// system errors
29$lang['indexerror']          = 'Error while updating the search index %s';
30$lang['metamoveerror']       = 'The meta files of page %s couldn\'t be moved';
31$lang['atticmoveerror']      = 'The attic files of page %s couldn\'t be moved. Please move them manually.';
32$lang['mediametamoveerror']  = 'The meta files of the media file %s couldn\'t be moved';
33$lang['mediamoveerror']      = 'Moving the media file %s failed';
34$lang['mediaatticmoveerror'] = 'The attic files of media file %s couldn\'t be moved. Please move them manually.';
35
36// changelog summaries
37$lang['renamed']     = 'Page name changed from %s to %s';
38$lang['moved']       = 'Page moved from %s to %s';
39$lang['move_rename'] = 'Page moved and renamed from %s to %s';
40$lang['delete']      = 'Deleted by move plugin';
41$lang['linkchange']  = 'Links adapted because of a move operation';
42
43// progress view
44$lang['intro']        = 'The move operation has not been started, yet!';
45$lang['preview']      = 'Preview changes to be executed.';
46$lang['inexecution']  = 'A previous move was not completed - use the buttons below to continue or abort the execution.';
47$lang['btn_start']    = 'Start';
48$lang['btn_continue'] = 'Continue';
49$lang['btn_retry']    = 'Retry item';
50$lang['btn_skip']     = 'Skip item';
51$lang['btn_abort']    = 'Abort';
52
53// Form labels
54$lang['legend']               = 'Move current page or namespace';
55$lang['movepage']             = 'Move page';
56$lang['movens']               = 'Move namespace';
57$lang['dst']                  = 'New name:';
58$lang['content_to_move']      = 'Content to move:';
59$lang['autoskip']             = 'Ignore errors and skip pages or files that can\'t be moved';
60$lang['autorewrite']          = 'Rewrite links right after the move completed';
61$lang['move_pages']           = 'Pages';
62$lang['move_media']           = 'Media files';
63$lang['move_media_and_pages'] = 'Pages and media files';
64$lang['nodst']                = 'No new name given';
65$lang['noaction']             = 'There were no moves defined';
66
67// Rename feature
68$lang['renamepage']       = 'Rename Page';
69$lang['cantrename']       = 'The page can\'t be renamed right now. Please try later.';
70$lang['js']['rename']     = 'Rename';
71$lang['js']['cancel']     = 'Cancel';
72$lang['js']['newname']    = 'New name:';
73$lang['js']['inprogress'] = 'renaming page and adjusting links...';
74$lang['js']['complete']   = 'Move operation finished.';
75
76// Tree Manager
77$lang['root']             = '[Root namespace]';
78$lang['noscript']         = 'This feature requires JavaScript';
79$lang['moveinprogress']   = 'There is another move operation in progress currently, you can\'t use this tool right now.';
80$lang['js']['renameitem'] = 'Rename this item';
81$lang['js']['add']        = 'Create a new namespace';
82$lang['js']['duplicate']  = 'Sorry, "%s" already exists in this namespace.';
83