[ Index ] |
PHP Cross Reference of phpBB-3.3.14-deutsch |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * 4 * This file is part of the phpBB Forum Software package. 5 * 6 * @copyright (c) phpBB Limited <https://www.phpbb.com> 7 * @license GNU General Public License, version 2 (GPL-2.0) 8 * 9 * For full copyright and license information, please see 10 * the docs/CREDITS.txt file. 11 * 12 */ 13 14 /** 15 * DO NOT CHANGE 16 */ 17 if (!defined('IN_PHPBB')) 18 { 19 exit; 20 } 21 22 if (empty($lang) || !is_array($lang)) 23 { 24 $lang = array(); 25 } 26 27 // DEVELOPERS PLEASE NOTE 28 // 29 // All language files should use UTF-8 as their encoding and the files must not contain a BOM. 30 // 31 // Placeholders can now contain order information, e.g. instead of 32 // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows 33 // translators to re-order the output of data while ensuring it remains correct 34 // 35 // You do not need this where single placeholders are used, e.g. 'Message %d' is fine 36 // equally where a string contains only two placeholders which are used to wrap text 37 // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine 38 39 /** 40 * EXTENSION-DEVELOPERS PLEASE NOTE 41 * 42 * You are able to put your permission sets into your extension. 43 * The permissions logic should be added via the 'core.permissions' event. 44 * You can easily add new permission categories, types and permissions, by 45 * simply merging them into the respective arrays. 46 * The respective language strings should be added into a language file, that 47 * start with 'permissions_', so they are automatically loaded within the ACP. 48 */ 49 50 $lang = array_merge($lang, array( 51 'ACL_CAT_ACTIONS' => 'Actions', 52 'ACL_CAT_CONTENT' => 'Content', 53 'ACL_CAT_FORUMS' => 'Forums', 54 'ACL_CAT_MISC' => 'Misc', 55 'ACL_CAT_PERMISSIONS' => 'Permissions', 56 'ACL_CAT_PM' => 'Private messages', 57 'ACL_CAT_POLLS' => 'Polls', 58 'ACL_CAT_POST' => 'Post', 59 'ACL_CAT_POST_ACTIONS' => 'Post actions', 60 'ACL_CAT_POSTING' => 'Posting', 61 'ACL_CAT_PROFILE' => 'Profile', 62 'ACL_CAT_SETTINGS' => 'Settings', 63 'ACL_CAT_TOPIC_ACTIONS' => 'Topic actions', 64 'ACL_CAT_USER_GROUP' => 'Users & Groups', 65 )); 66 67 // User Permissions 68 $lang = array_merge($lang, array( 69 'ACL_U_VIEWPROFILE' => 'Can view profiles, memberlist and online list', 70 'ACL_U_CHGNAME' => 'Can change username', 71 'ACL_U_CHGPASSWD' => 'Can change password', 72 'ACL_U_CHGEMAIL' => 'Can change email address', 73 'ACL_U_CHGAVATAR' => 'Can change avatar', 74 'ACL_U_CHGGRP' => 'Can change default usergroup', 75 'ACL_U_CHGPROFILEINFO' => 'Can change profile field information', 76 77 'ACL_U_ATTACH' => 'Can attach files', 78 'ACL_U_DOWNLOAD' => 'Can download files', 79 'ACL_U_SAVEDRAFTS' => 'Can save drafts', 80 'ACL_U_CHGCENSORS' => 'Can disable word censors', 81 'ACL_U_SIG' => 'Can use signature', 82 'ACL_U_EMOJI' => 'Can use emoji and rich text characters in topic title', 83 84 'ACL_U_SENDPM' => 'Can send private messages', 85 'ACL_U_MASSPM' => 'Can send private messages to multiple users', 86 'ACL_U_MASSPM_GROUP'=> 'Can send private messages to groups', 87 'ACL_U_READPM' => 'Can read private messages', 88 'ACL_U_PM_EDIT' => 'Can edit own private messages', 89 'ACL_U_PM_DELETE' => 'Can remove private messages from own folder', 90 'ACL_U_PM_FORWARD' => 'Can forward private messages', 91 'ACL_U_PM_EMAILPM' => 'Can email private messages', 92 'ACL_U_PM_PRINTPM' => 'Can print private messages', 93 'ACL_U_PM_ATTACH' => 'Can attach files in private messages', 94 'ACL_U_PM_DOWNLOAD' => 'Can download files in private messages', 95 'ACL_U_PM_BBCODE' => 'Can use BBCode in private messages', 96 'ACL_U_PM_SMILIES' => 'Can use smilies in private messages', 97 'ACL_U_PM_IMG' => 'Can use [img] BBCode tag in private messages', 98 'ACL_U_PM_FLASH' => 'Can use [flash] BBCode tag in private messages', 99 100 'ACL_U_SENDEMAIL' => 'Can send emails', 101 'ACL_U_SENDIM' => 'Can send instant messages', 102 'ACL_U_IGNOREFLOOD' => 'Can ignore flood limit', 103 'ACL_U_HIDEONLINE' => 'Can hide online status', 104 'ACL_U_VIEWONLINE' => 'Can view hidden online users', 105 'ACL_U_SEARCH' => 'Can search board', 106 )); 107 108 // Forum Permissions 109 $lang = array_merge($lang, array( 110 'ACL_F_LIST' => 'Can see forum', 111 'ACL_F_LIST_TOPICS' => 'Can see topics', 112 'ACL_F_READ' => 'Can read forum', 113 'ACL_F_SEARCH' => 'Can search the forum', 114 'ACL_F_SUBSCRIBE' => 'Can subscribe forum', 115 'ACL_F_PRINT' => 'Can print topics', 116 'ACL_F_EMAIL' => 'Can email topics', 117 'ACL_F_BUMP' => 'Can bump topics', 118 'ACL_F_USER_LOCK' => 'Can lock own topics', 119 'ACL_F_DOWNLOAD' => 'Can download files', 120 'ACL_F_REPORT' => 'Can report posts', 121 122 'ACL_F_POST' => 'Can start new topics', 123 'ACL_F_STICKY' => 'Can post stickies', 124 'ACL_F_ANNOUNCE' => 'Can post announcements', 125 'ACL_F_ANNOUNCE_GLOBAL' => 'Can post global announcements', 126 'ACL_F_REPLY' => 'Can reply to topics', 127 'ACL_F_EDIT' => 'Can edit own posts', 128 'ACL_F_DELETE' => 'Can permanently delete own posts', 129 'ACL_F_SOFTDELETE' => 'Can soft delete own posts<br /><em>Moderators, who have the approve posts permission, can restore soft deleted posts.</em>', 130 'ACL_F_IGNOREFLOOD' => 'Can ignore flood limit', 131 'ACL_F_POSTCOUNT' => 'Increment post counter<br /><em>Please note that this setting only affects new posts.</em>', 132 'ACL_F_NOAPPROVE' => 'Can post without approval', 133 134 'ACL_F_ATTACH' => 'Can attach files', 135 'ACL_F_ICONS' => 'Can use topic/post icons', 136 'ACL_F_BBCODE' => 'Can use BBCode', 137 'ACL_F_FLASH' => 'Can use [flash] BBCode tag', 138 'ACL_F_IMG' => 'Can use [img] BBCode tag', 139 'ACL_F_SIGS' => 'Can use signatures', 140 'ACL_F_SMILIES' => 'Can use smilies', 141 142 'ACL_F_POLL' => 'Can create polls', 143 'ACL_F_VOTE' => 'Can vote in polls', 144 'ACL_F_VOTECHG' => 'Can change existing vote', 145 )); 146 147 // Moderator Permissions 148 $lang = array_merge($lang, array( 149 'ACL_M_EDIT' => 'Can edit posts', 150 'ACL_M_DELETE' => 'Can permanently delete posts', 151 'ACL_M_SOFTDELETE' => 'Can soft delete posts<br /><em>Moderators, who have the approve posts permission, can restore soft deleted posts.</em>', 152 'ACL_M_APPROVE' => 'Can approve and restore posts', 153 'ACL_M_REPORT' => 'Can close and delete reports', 154 'ACL_M_CHGPOSTER' => 'Can change post author', 155 156 'ACL_M_MOVE' => 'Can move topics', 157 'ACL_M_LOCK' => 'Can lock topics', 158 'ACL_M_SPLIT' => 'Can split topics', 159 'ACL_M_MERGE' => 'Can merge topics', 160 161 'ACL_M_INFO' => 'Can view post details', 162 'ACL_M_WARN' => 'Can issue warnings', 163 'ACL_M_PM_REPORT' => 'Can close and delete reports of private messages', 164 'ACL_M_BAN' => 'Can manage bans', 165 )); 166 167 // Admin Permissions 168 $lang = array_merge($lang, array( 169 'ACL_A_BOARD' => 'Can alter board settings/check for updates', 170 'ACL_A_SERVER' => 'Can alter server/communication settings', 171 'ACL_A_JABBER' => 'Can alter Jabber settings', 172 'ACL_A_PHPINFO' => 'Can view php settings', 173 174 'ACL_A_FORUM' => 'Can manage forums', 175 'ACL_A_FORUMADD' => 'Can add new forums', 176 'ACL_A_FORUMDEL' => 'Can delete forums', 177 'ACL_A_PRUNE' => 'Can prune forums', 178 179 'ACL_A_ICONS' => 'Can alter topic/post icons and smilies', 180 'ACL_A_WORDS' => 'Can alter word censors', 181 'ACL_A_BBCODE' => 'Can define BBCode tags', 182 'ACL_A_ATTACH' => 'Can alter attachment related settings', 183 184 'ACL_A_USER' => 'Can manage users<br /><em>This also includes seeing the users browser agent within the viewonline list.</em>', 185 'ACL_A_USERDEL' => 'Can delete/prune users', 186 'ACL_A_GROUP' => 'Can manage groups', 187 'ACL_A_GROUPADD' => 'Can add new groups', 188 'ACL_A_GROUPDEL' => 'Can delete groups', 189 'ACL_A_RANKS' => 'Can manage ranks', 190 'ACL_A_PROFILE' => 'Can manage custom profile fields', 191 'ACL_A_NAMES' => 'Can manage disallowed names', 192 'ACL_A_BAN' => 'Can manage bans', 193 194 'ACL_A_VIEWAUTH' => 'Can view permission masks', 195 'ACL_A_AUTHGROUPS' => 'Can alter permissions for individual groups', 196 'ACL_A_AUTHUSERS' => 'Can alter permissions for individual users', 197 'ACL_A_FAUTH' => 'Can alter forum permission class', 198 'ACL_A_MAUTH' => 'Can alter moderator permission class', 199 'ACL_A_AAUTH' => 'Can alter admin permission class', 200 'ACL_A_UAUTH' => 'Can alter user permission class', 201 'ACL_A_ROLES' => 'Can manage roles', 202 'ACL_A_SWITCHPERM' => 'Can use others permissions', 203 204 'ACL_A_STYLES' => 'Can manage styles', 205 'ACL_A_EXTENSIONS' => 'Can manage extensions', 206 'ACL_A_VIEWLOGS' => 'Can view logs', 207 'ACL_A_CLEARLOGS' => 'Can clear logs', 208 'ACL_A_MODULES' => 'Can manage modules', 209 'ACL_A_LANGUAGE' => 'Can manage language packs', 210 'ACL_A_EMAIL' => 'Can send mass email', 211 'ACL_A_BOTS' => 'Can manage bots', 212 'ACL_A_REASONS' => 'Can manage report/denial reasons', 213 'ACL_A_BACKUP' => 'Can backup/restore database', 214 'ACL_A_SEARCH' => 'Can manage search backends and settings', 215 ));
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Mon Nov 25 19:05:08 2024 | Cross-referenced by PHPXref 0.7.1 |