lang.php 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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 <anika@selfthinker.org>
  8. * @author Matthias Grimm <matthiasgrimm@users.sourceforge.net>
  9. */
  10. $lang['admin_acl'] = 'Access Control List Management';
  11. $lang['acl_group'] = 'Group:';
  12. $lang['acl_user'] = 'User:';
  13. $lang['acl_perms'] = 'Permissions for';
  14. $lang['page'] = 'Page';
  15. $lang['namespace'] = 'Namespace';
  16. $lang['btn_select'] = 'Select';
  17. $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>.';
  18. $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>.';
  19. $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>.';
  20. $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>.';
  21. $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>.';
  22. $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>.';
  23. $lang['p_inherited'] = 'Note: Those permissions were not set explicitly but were inherited from other groups or higher namespaces.';
  24. $lang['p_isadmin'] = 'Note: The selected group or user has always full permissions because it is configured as superuser.';
  25. $lang['p_include'] = 'Higher permissions include lower ones. Create, Upload and Delete permissions only apply to namespaces, not pages.';
  26. $lang['current'] = 'Current ACL Rules';
  27. $lang['where'] = 'Page/Namespace';
  28. $lang['who'] = 'User/Group';
  29. $lang['perm'] = 'Permissions';
  30. $lang['acl_perm0'] = 'None';
  31. $lang['acl_perm1'] = 'Read';
  32. $lang['acl_perm2'] = 'Edit';
  33. $lang['acl_perm4'] = 'Create';
  34. $lang['acl_perm8'] = 'Upload';
  35. $lang['acl_perm16'] = 'Delete';
  36. $lang['acl_new'] = 'Add new Entry';
  37. $lang['acl_mod'] = 'Modify Entry';
  38. //Setup VIM: ex: et ts=2 :