diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2004-07-08 22:41:04 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2004-07-08 22:41:04 +0000 |
| commit | 05f1315ebb96b46ea384df73d387aeb05602d2b5 (patch) | |
| tree | 97ba594f068532d15df4e64f27fa5c271b1f7f30 /phpBB/language | |
| parent | 48eeecb25893839ef9c9290d616083a6f1351b19 (diff) | |
| download | forums-05f1315ebb96b46ea384df73d387aeb05602d2b5.tar forums-05f1315ebb96b46ea384df73d387aeb05602d2b5.tar.gz forums-05f1315ebb96b46ea384df73d387aeb05602d2b5.tar.bz2 forums-05f1315ebb96b46ea384df73d387aeb05602d2b5.tar.xz forums-05f1315ebb96b46ea384df73d387aeb05602d2b5.zip | |
- remove output buffering options from download.php (not needed anymore)
- optimized viewtopic.php a little bit
- removed the create_function (was consuming too much memory) from viewtopic
- check for manually added convert[.exe] program name to imagemagick path in admin_attachments
- reduced filesize checking for imagemagick program (some installations require less than 20k)
- added checked="checked" for "not selected" topic icon
- moved parse_text_display function from functions_posting.php to functions.php (see comment above function)
- check for user_id != ANONYMOUS in page_footer for displaying the administration link (there seems to be a problem checking for global options)
- rewrote attachment thumbnail functions - utilize GD2 functions if available, more uptodate checks...
- changed final thumbnail size calculation
- define S_ROW_COUNT within template class itself
- added SID to template vars in page_header
- added ability to view topic/forum within admin_viewlogs
- added optional acl checking to make_jumpbox, no need to duplicate the function for this small need
- added custom body file for confirm_box
git-svn-id: file:///svn/phpbb/trunk@4920 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/language')
| -rw-r--r-- | phpBB/language/en/admin.php | 2 | ||||
| -rw-r--r-- | phpBB/language/en/common.php | 1 | ||||
| -rw-r--r-- | phpBB/language/en/posting.php | 4 |
3 files changed, 5 insertions, 2 deletions
diff --git a/phpBB/language/en/admin.php b/phpBB/language/en/admin.php index cd6da18843..128c29878b 100644 --- a/phpBB/language/en/admin.php +++ b/phpBB/language/en/admin.php @@ -1786,7 +1786,7 @@ $lang += array( 'MIN_THUMB_FILESIZE' => 'Minimum thumbnail filesize', 'MIN_THUMB_FILESIZE_EXPLAIN' => 'Do not create a thumbnail for images smaller than this.', 'IMAGICK_PATH' => 'Imagemagick path', - 'IMAGICK_PATH_EXPLAIN' => 'Full path to the imagemagick convert application, e.g. /usr/bin/convert', + 'IMAGICK_PATH_EXPLAIN' => 'Full path to the imagemagick convert application, e.g. /usr/bin/', 'SEARCH_IMAGICK' => 'Search for Imagemagick', 'MAX_IMAGE_SIZE' => 'Maximum Image Dimensions', 'MAX_IMAGE_SIZE_EXPLAIN' => 'Maximum size of image attachments, 0px by 0px disables image attachments.', diff --git a/phpBB/language/en/common.php b/phpBB/language/en/common.php index 7498a8ef5a..5d5519a7c9 100644 --- a/phpBB/language/en/common.php +++ b/phpBB/language/en/common.php @@ -263,6 +263,7 @@ $lang += array( 'POSTS' => 'Posts', 'POST_BY_FOE' => 'This post was made by <b>%1$s</b> who is currently on your ignore list. To display this post click %2$sHERE%3$s.', 'POST_DAY' => '%.2f posts per day', + 'POST_DETAILS' => 'Post Details', 'POST_PCT' => '%.2f%% of all posts', 'POST_REPORTED' => 'Click to view reports', 'POST_SUBJECT' => 'Post Subject', diff --git a/phpBB/language/en/posting.php b/phpBB/language/en/posting.php index 2b23df3982..c22261b3e0 100644 --- a/phpBB/language/en/posting.php +++ b/phpBB/language/en/posting.php @@ -73,7 +73,7 @@ $lang += array( 'DELETE_MESSAGE' => 'Delete Message', 'DELETE_MESSAGE_CONFIRM' => 'Are you sure you want to delete this message?', 'DELETE_OWN_POSTS' => 'Sorry but you can only delete your own posts.', - 'DELETE_POST' => 'Delete', + 'DELETE_POST' => 'Delete Post', 'DELETE_POST_CONFIRM' => 'Are you sure you want to delete this message?', 'DELETE_POST_WARN' => 'Once deleted the post cannot be recovered', 'DISABLE_BBCODE' => 'Disable BBCode', @@ -139,6 +139,8 @@ $lang += array( 'POSTED_ATTACHMENTS' => 'Posted attachments', 'POST_ANNOUNCEMENT' => 'Announce', 'POST_DELETED' => 'Your message has been deleted successfully', + 'POST_EDITED' => 'Your message has been edited successfully', + 'POST_EDITED_MOD' => 'Your message has been edited but requires approval', 'POST_GLOBAL' => 'Global', 'POST_ICON' => 'Post icon', 'POST_NORMAL' => 'Normal', |
