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// settings must be present and set appropriately for the language
10$lang['encoding']   = 'utf-8';
11$lang['direction']  = 'ltr';
12
13// for admin plugins, the menu prompt to be displayed in the admin menu
14// if set here, the plugin doesn't need to override the getMenuText() method
15$lang['menu'] = 'Page/Namespace Move/Rename...';
16$lang['desc'] = 'Page/Namespace Move/Rename Plugin';
17
18$lang['pm_notexist']    = 'This topic does not exist yet';
19$lang['pm_notstart']    = 'The Start page cannot be moved or renamed';
20$lang['pm_notwrite']    = 'You do not have sufficient rights to modify this page';
21$lang['pm_badns']       = 'Invalid characters in namespace.';
22$lang['pm_badname']     = 'Invalid characters in pagename.';
23$lang['pm_nochange']    = 'Document name and namespace are unchanged.';
24$lang['pm_existing']    = 'A document called %s already exists in %s';
25$lang['pm_root']        = '[Root namespace]';
26$lang['pm_current']     = '(Current)';
27$lang['pm_movedfrom']   = 'Document moved from ';
28$lang['pm_movedto']     = 'Document moved to ';
29$lang['pm_renamed']     = 'Page name changed from %s to %s';
30$lang['pm_moved']       = 'Page moved from %s to %s';
31$lang['pm_move_rename'] = 'Page moved and renamed from %s to %s';
32$lang['pm_norights']    = 'You have insufficient permissions to edit one or more backlinks for this document.';
33$lang['pm_tryagain']    = 'Try again latter.';
34$lang['pm_filelocked']  = 'This file is locked - ';
35$lang['pm_fileslocked'] = 'These files are locked - ';
36$lang['pm_linkchange']  = 'Links to %s changed to %s';
37$lang['pm_newname']     = 'New document name :';
38$lang['pm_newnsname']   = 'Use new Name for Namespace:';
39$lang['pm_targetns']    = 'Select new Namespace :';
40$lang['pm_newtargetns'] = 'Create a new Namespace';
41$lang['pm_movepage']	= 'Move page';
42$lang['pm_movens']		= 'Move Namespace';
43$lang['pm_previewpage']	= ' get moved to ';
44$lang['pm_previewns']	= 'All pages and namespaces in the namespace %s: get moved in the namespace';
45$lang['pm_delete']		= 'Deleted by PageMove plugin';
46$lang['pm_preview']		= 'Preview';
47$lang['pm_submit']      = 'Submit';
48?>