diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2003-11-06 15:05:50 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2003-11-06 15:05:50 +0000 |
commit | 558b8ee7ff52183b2d70e67afaa2bc39be9f6a70 (patch) | |
tree | d56192e21f8e38e512ef29182691a4870ba316a3 /phpBB/language | |
parent | 75ccd0e13cea666fafe63a9bfb99b1513d7d1126 (diff) | |
download | forums-558b8ee7ff52183b2d70e67afaa2bc39be9f6a70.tar forums-558b8ee7ff52183b2d70e67afaa2bc39be9f6a70.tar.gz forums-558b8ee7ff52183b2d70e67afaa2bc39be9f6a70.tar.bz2 forums-558b8ee7ff52183b2d70e67afaa2bc39be9f6a70.tar.xz forums-558b8ee7ff52183b2d70e67afaa2bc39be9f6a70.zip |
UCP -> Attachments
git-svn-id: file:///svn/phpbb/trunk@4652 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/language')
-rw-r--r-- | phpBB/language/en/lang_admin.php | 1 | ||||
-rw-r--r-- | phpBB/language/en/lang_main.php | 25 |
2 files changed, 23 insertions, 3 deletions
diff --git a/phpBB/language/en/lang_admin.php b/phpBB/language/en/lang_admin.php index e9898da41d..8725545e10 100644 --- a/phpBB/language/en/lang_admin.php +++ b/phpBB/language/en/lang_admin.php @@ -1678,7 +1678,6 @@ $lang += array( 'MANAGE_EXTENSIONS' => 'Manage Extensions', 'MANAGE_EXTENSIONS_EXPLAIN' => 'Here you can manage your allowed extensions. To activate your Extensions, please refer to the extension groups management panel. We strongly recommend not to allow scripting extensions (such as php, php3, php4, phtml, pl, cgi, asp, aspx...)', - 'EXTENSION' => 'Extension', 'ADD_EXTENSION' => 'Add extension', 'EXTENSIONS_UPDATED' => 'Extensions successfully updated', 'EXTENSION_EXIST' => 'The Extension %s already exist', diff --git a/phpBB/language/en/lang_main.php b/phpBB/language/en/lang_main.php index 2c1066a794..8b4f313b57 100644 --- a/phpBB/language/en/lang_main.php +++ b/phpBB/language/en/lang_main.php @@ -455,7 +455,8 @@ $lang += array( 'ALL_POSTS' => 'All Posts', 'BACK_TO_TOP' => 'Top', - 'POST_SUBJECT' => 'Post subject', + 'POST_SUBJECT' => 'Post Subject', + 'TOPIC_TITLE' => 'Topic Title', 'KARMA_LEVEL' => 'Karma Level', 'READ_PROFILE' => 'Profile', 'SEND_EMAIL' => 'Email', @@ -569,7 +570,6 @@ $lang += array( 'LOCK_POST' => 'Lock Post', 'LOCK_POST_EXPLAIN' => 'Prevent editing', - 'CONFIRM_DELETE' => 'Are you sure you want to delete this post?', 'CANNOT_EDIT_TIME' => 'You can no longer edit or delete that post', 'CANNOT_EDIT_POST_LOCKED' => 'This post has been locked. You can no longer edit that post.', 'FLOOD_ERROR' => 'You cannot make another post so soon after your last.', @@ -677,6 +677,7 @@ $lang += array( 'EXTENSION_DISABLED_AFTER_POSTING' => 'The extension <b>%s</b> has been deactivated and can no longer be displayed.', // used in Posts and PM's, replace %s with extension 'DESCRIPTION' => 'Description', 'DOWNLOAD' => 'Download', + 'DOWNLOADS' => 'Downloads', 'FILESIZE' => 'Filesize', 'FILE_NOT_FOUND_404' => 'The file <b>%s</b> does not exist.', 'DOWNLOADED' => 'Downloaded', @@ -851,6 +852,26 @@ $lang += array( 'WRONG_ACTIVATION' => 'The activation key you supplied does not match any in the database', ); +// ucp_attachments +$lang += array( + 'CONFIRM_DELETE_ATTACHMENT' => 'Are you sure you want to delete this attachment?', + 'CONFIRM_DELETE_ATTACHMENTS'=> 'Are you sure you want to delete these attachments?', + 'ATTACHMENT_DELETED' => 'Attachment successfully deleted', + 'ATTACHMENTS_DELETED' => 'Attachments successfully deleted', + + 'EXTENSION' => 'Extension', + + 'SORT_FILENAME' => 'Filename', + 'SORT_COMMENT' => 'File Comment', + 'SORT_EXTENSION' => 'Extension', + 'SORT_SIZE' => 'Filesize', + 'SORT_DOWNLOADS' => 'Downloads', + 'SORT_POST_TIME' => 'Post Time', + 'SORT_TOPIC_TITLE' => 'Topic Title', + + 'UCP_NO_ATTACHMENTS' => 'You have posted no files' +); + // ucp_remind $lang += array( 'SEND_PASSWORD' => 'Send password', |