mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-07 01:06:48 +02:00
- introduce new function build_url to easily build a valid url from the user->page object as well as optionally removing certain keys
- changed attachment config to utilize the config build methods - cleaned up posting.php - the submit/delete_post functions are now usable (functions_posting.php) - adjusted header icons (transparency) - a bunch of fixes for mssql - bug fixes git-svn-id: file:///svn/phpbb/trunk@5902 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -109,6 +109,7 @@ $lang = array_merge($lang, array(
|
||||
'NO_EXT_GROUP_NAME' => 'No Group Name entered',
|
||||
'NO_EXT_GROUP_SPECIFIED' => 'No Extension Group specified',
|
||||
'NO_IMAGE' => 'No Image',
|
||||
'NO_THUMBNAIL_SUPPORT' => 'Thumbnail support has been disabled because there is no supported GD library available and the imagemagick executable could not be found.',
|
||||
'NO_UPLOAD_DIR' => 'The upload directory you specified does not exist.',
|
||||
'NO_WRITE_UPLOAD' => 'The upload directory you specified cannot be written to. Please alter the permissions to allow the webserver to write to it.',
|
||||
|
||||
|
@@ -375,6 +375,7 @@ $lang = array_merge($lang, array(
|
||||
'ALLOW_NO_CENSORS_EXPLAIN' => 'User can disable word censoring.',
|
||||
'ALLOW_BOOKMARKS' => 'Allow bookmarking topics',
|
||||
'ALLOW_BOOKMARKS_EXPLAIN' => 'User is able to store personal bookmarks',
|
||||
|
||||
));
|
||||
|
||||
?>
|
@@ -384,18 +384,22 @@ $lang = array_merge($lang, array(
|
||||
'LOG_CLEAR_USER' => '<b>Cleared user log</b><br />» %s',
|
||||
'LOG_CLEAR_USERS' => '<b>Cleared user logs</b>',
|
||||
|
||||
'LOG_CONFIG_ATTACH' => '<b>Altered attachment settings</b>',
|
||||
'LOG_CONFIG_AUTH' => '<b>Altered authentication settings</b>',
|
||||
'LOG_CONFIG_AVATAR' => '<b>Altered avatar settings</b>',
|
||||
'LOG_CONFIG_COOKIE' => '<b>Altered cookie settings</b>',
|
||||
'LOG_CONFIG_DEFAULT' => '<b>Altered board defaults</b>',
|
||||
'LOG_CONFIG_EMAIL' => '<b>Altered email settings</b>',
|
||||
'LOG_CONFIG_LOAD' => '<b>Altered load settings</b>',
|
||||
'LOG_CONFIG_MESSAGE' => '<b>Altered private message settings</b>',
|
||||
'LOG_CONFIG_SEARCH' => '<b>Altered search settings</b>',
|
||||
'LOG_CONFIG_SERVER' => '<b>Altered server settings</b>',
|
||||
'LOG_CONFIG_SETTINGS' => '<b>Altered board settings</b>',
|
||||
'LOG_CONFIG_VISUAL' => '<b>Altered visual confirmation settings</b>',
|
||||
'LOG_CONFIG_ATTACH' => '<b>Altered attachment settings</b>',
|
||||
'LOG_CONFIG_AUTH' => '<b>Altered authentication settings</b>',
|
||||
'LOG_CONFIG_AVATAR' => '<b>Altered avatar settings</b>',
|
||||
'LOG_CONFIG_COOKIE' => '<b>Altered cookie settings</b>',
|
||||
'LOG_CONFIG_EMAIL' => '<b>Altered email settings</b>',
|
||||
'LOG_CONFIG_FEATURES' => '<b>Altered board features</b>',
|
||||
'LOG_CONFIG_LOAD' => '<b>Altered load settings</b>',
|
||||
'LOG_CONFIG_MESSAGE' => '<b>Altered private message settings</b>',
|
||||
'LOG_CONFIG_POST' => '<b>Altered post settings</b>',
|
||||
'LOG_CONFIG_REGISTRATION' => '<b>Altered user registration settings</b>',
|
||||
'LOG_CONFIG_SEARCH' => '<b>Altered search settings</b>',
|
||||
'LOG_CONFIG_SECURITY' => '<b>Altered security settings</b>',
|
||||
'LOG_CONFIG_SERVER' => '<b>Altered server settings</b>',
|
||||
'LOG_CONFIG_SETTINGS' => '<b>Altered board settings</b>',
|
||||
'LOG_CONFIG_SIGNATURE' => '<b>Altered signature settings</b>',
|
||||
'LOG_CONFIG_VISUAL' => '<b>Altered visual confirmation settings</b>',
|
||||
|
||||
'LOG_DISALLOW_ADD' => '<b>Added disallowed username</b><br />» %s',
|
||||
'LOG_DISALLOW_DELETE' => '<b>Deleted disallowed username</b>',
|
||||
|
@@ -130,6 +130,7 @@ $lang = array_merge($lang, array(
|
||||
'LOG_USER_LOCK' => '<b>User locked own topic</b><br />» %s',
|
||||
'LOG_USER_MOVE_POSTS_USER' => '<b>Moved all posts to forum "%s"</b>',
|
||||
'LOG_USER_REACTIVATE_USER' => '<b>Forced user account re-activation</b>',
|
||||
'LOG_USER_UNLOCK' => '<b>User unlocked own topic</b><br />» %s',
|
||||
'LOGIN_EXPLAIN_MCP' => 'To moderate this forum you must login.',
|
||||
'LOGVIEW_VIEWTOPIC' => 'View Topic',
|
||||
'LOGVIEW_VIEWLOGS' => 'View Topic Log',
|
||||
|
@@ -188,6 +188,7 @@ $lang = array_merge($lang, array(
|
||||
'USER_CANNOT_DELETE' => 'You cannot delete posts in this forum',
|
||||
'USER_CANNOT_EDIT' => 'You cannot edit posts in this forum',
|
||||
'USER_CANNOT_REPLY' => 'You cannot reply in this forum',
|
||||
'USER_CANNOT_FORUM_POST' => 'You are not able to do posting operations on this forum due to the forum type not supporting it.',
|
||||
'USERNAME_DISALLOWED' => 'The username you entered has been banned.',
|
||||
'USERNAME_TAKEN' => 'The username you entered is already in use, please select an alternative.',
|
||||
|
||||
|
@@ -202,6 +202,7 @@ $lang = array_merge($lang, array(
|
||||
|
||||
'HIDE_ONLINE' => 'Hide my online status',
|
||||
'HOLD_NEW_MESSAGES' => 'Do not accept new messages (New messages will be held back until enough space is available)',
|
||||
'HOLD_NEW_MESSAGES_SHORT' => 'New messages will be held back',
|
||||
|
||||
'IF_FOLDER_FULL' => 'If Folder Full',
|
||||
'IMPORTANT_NEWS' => 'Important announcements',
|
||||
|
Reference in New Issue
Block a user