1<?php
2/**
3 * english language file for permissioninfo plugin
4 *
5 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6 * @author     Gabriel Birke <gb@birke-software.de>
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'] = 'Permission info';
16$lang['users'] = 'Users';
17$lang['permissions'] = 'Permissions';
18
19$lang['pi_resource'] = 'Namespace / Page';
20$lang['pi_permissionfor'] = "Permission info for %s";
21$lang['pi_to_overview'] = "Back to overview";
22$lang['pi_no_permissions_found'] = "No permission info found.";
23
24// This was copied form the lang file of the acl plugin
25$lang['acl_perm1']  = 'Read';
26$lang['acl_perm2']  = 'Edit';
27$lang['acl_perm4']  = 'Create';
28$lang['acl_perm8']  = 'Upload';
29$lang['acl_perm16'] = 'Delete';
30
31