1<?php 2/** 3 * english language file 4 * 5 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 6 * @author Andreas Gohr <andi@splitbrain.org> 7 * @author Anika Henke <henke@cosmocode.de> 8 * @author Matthias Grimm <matthiasgrimm@users.sourceforge.net> 9 */ 10 11$lang['admin_acl'] = 'Access Control List Management with filter'; 12$lang['acl_group'] = 'Group'; 13$lang['acl_user'] = 'User'; 14$lang['acl_perms'] = 'Permissions for'; 15$lang['page'] = 'Page'; 16$lang['namespace'] = 'Namespace'; 17 18$lang['btn_select'] = 'Select'; 19 20$lang['p_user_id'] = 'User <b class="acluser">%s</b> currently has the following permissions on page <b class="aclpage">%s</b>: <i>%s</i>.'; 21$lang['p_user_ns'] = 'User <b class="acluser">%s</b> currently has the following permissions in namespace <b class="aclns">%s</b>: <i>%s</i>.'; 22$lang['p_group_id'] = 'Members of group <b class="aclgroup">%s</b> currently have the following permissions on page <b class="aclpage">%s</b>: <i>%s</i>.'; 23$lang['p_group_ns'] = 'Members of group <b class="aclgroup">%s</b> currently have the following permissions in namespace <b class="aclns">%s</b>: <i>%s</i>.'; 24 25$lang['p_choose_id'] = 'Please <b>enter a user or group</b> in the form above to view or edit the permissions set for the page <b class="aclpage">%s</b>.'; 26$lang['p_choose_ns'] = 'Please <b>enter a user or group</b> in the form above to view or edit the permissions set for the namespace <b class="aclns">%s</b>.'; 27 28 29$lang['p_inherited'] = 'Note: Those permissions were not set explicitly but were inherited from other groups or higher namespaces.'; 30$lang['p_isadmin'] = 'Note: The selected group or user has always full permissions because it is configured as superuser.'; 31 32$lang['current'] = 'Current ACL Rules'; 33$lang['where'] = 'Page/Namespace'; 34$lang['who'] = 'User/Group'; 35$lang['perm'] = 'Permissions'; 36$lang['filter'] = 'Show rules from all namespaces'; 37 38$lang['acl_perm0'] = 'None'; 39$lang['acl_perm1'] = 'Read'; 40$lang['acl_perm2'] = 'Edit'; 41$lang['acl_perm4'] = 'Create'; 42$lang['acl_perm8'] = 'Upload'; 43$lang['acl_perm16'] = 'Delete'; 44$lang['acl_new'] = 'Add new Entry'; 45$lang['acl_mod'] = 'Modify Entry'; 46//Setup VIM: ex: et ts=2 enc=utf-8 : 47