~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to www/php/phpBB3/language/en/acp/attachments.php

  • Committer: William Grant
  • Date: 2009-02-23 23:47:02 UTC
  • mfrom: (1099.1.211 new-dispatch)
  • Revision ID: grantw@unimelb.edu.au-20090223234702-db4b1llly46ignwo
Merge from lp:~ivle-dev/ivle/new-dispatch.

Pretty much everything changes. Reread the setup docs. Backup your databases.
Every file is now in a different installed location, the configuration system
is rewritten, the dispatch system is rewritten, URLs are different, the
database is different, worksheets and exercises are no longer on the
filesystem, we use a templating engine, jail service protocols are rewritten,
we don't repeat ourselves, we have authorization rewritten, phpBB is gone,
and probably lots of other things that I cannot remember.

This is certainly the biggest commit I have ever made, and hopefully
the largest I ever will.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?php
2
 
/**
3
 
*
4
 
* acp_attachments [English]
5
 
*
6
 
* @package language
7
 
* @version $Id: attachments.php,v 1.31 2007/10/04 15:07:24 acydburn Exp $
8
 
* @copyright (c) 2005 phpBB Group
9
 
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
10
 
*
11
 
*/
12
 
 
13
 
/**
14
 
* DO NOT CHANGE
15
 
*/
16
 
if (!defined('IN_PHPBB'))
17
 
{
18
 
        exit;
19
 
}
20
 
 
21
 
if (empty($lang) || !is_array($lang))
22
 
{
23
 
        $lang = array();
24
 
}
25
 
 
26
 
// DEVELOPERS PLEASE NOTE
27
 
//
28
 
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
29
 
//
30
 
// Placeholders can now contain order information, e.g. instead of
31
 
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
32
 
// translators to re-order the output of data while ensuring it remains correct
33
 
//
34
 
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
35
 
// equally where a string contains only two placeholders which are used to wrap text
36
 
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
37
 
 
38
 
$lang = array_merge($lang, array(
39
 
        'ACP_ATTACHMENT_SETTINGS_EXPLAIN'       => 'Here you can configure the main settings for attachments and the associated special categories.',
40
 
        'ACP_EXTENSION_GROUPS_EXPLAIN'          => 'Here you can add, delete, modify or disable your extension groups. Further options include the assignment of a special category to them, changing the download mechanism and defining an upload icon which will be displayed in front of the attachment which belongs to the group.',
41
 
        'ACP_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 <code>php</code>, <code>php3</code>, <code>php4</code>, <code>phtml</code>, <code>pl</code>, <code>cgi</code>, <code>py</code>, <code>rb</code>, <code>asp</code>, <code>aspx</code>, and so forth…).',
42
 
        'ACP_ORPHAN_ATTACHMENTS_EXPLAIN'        => 'Here you are able to see orphaned files. This happens mostly if users are attaching files but not submitting the post. You are able to delete the files or attach them to existing posts. Attaching to posts requires a valid post ID, you have to determine this ID by yourself. This will assign the already uploaded attachment to the post you entered.',
43
 
        'ADD_EXTENSION'                                         => 'Add extension',
44
 
        'ADD_EXTENSION_GROUP'                           => 'Add extension group',
45
 
        'ADMIN_UPLOAD_ERROR'                            => 'Errors while trying to attach file: “%s”.',
46
 
        'ALLOWED_FORUMS'                                        => 'Allowed forums',
47
 
        'ALLOWED_FORUMS_EXPLAIN'                        => 'Able to post the assigned extensions at the selected (or all if selected) forums.',
48
 
        'ALLOWED_IN_PM_POST'                            => 'Allowed',
49
 
        'ALLOW_ATTACHMENTS'                                     => 'Allow attachments',
50
 
        'ALLOW_ALL_FORUMS'                                      => 'Allow all forums',
51
 
        'ALLOW_IN_PM'                                           => 'Allowed in private messaging',
52
 
        'ALLOW_PM_ATTACHMENTS'                          => 'Allow attachments in private messages',
53
 
        'ALLOW_SELECTED_FORUMS'                         => 'Only forums selected below',
54
 
        'ASSIGNED_EXTENSIONS'                           => 'Assigned extensions',
55
 
        'ASSIGNED_GROUP'                                        => 'Assigned extension group',
56
 
        'ATTACH_EXTENSIONS_URL'                         => 'Extensions',
57
 
        'ATTACH_EXT_GROUPS_URL'                         => 'Extension groups',
58
 
        'ATTACH_ID'                                                     => 'ID',
59
 
        'ATTACH_MAX_FILESIZE'                           => 'Maximum file size',
60
 
        'ATTACH_MAX_FILESIZE_EXPLAIN'           => 'Maximum size of each file, with 0 being unlimited.',
61
 
        'ATTACH_MAX_PM_FILESIZE'                        => 'Maximum file size messaging',
62
 
        'ATTACH_MAX_PM_FILESIZE_EXPLAIN'        => 'Maximum drive space available per user for private message attachments, with 0 being unlimited.',
63
 
        'ATTACH_ORPHAN_URL'                                     => 'Orphan attachments',
64
 
        'ATTACH_POST_ID'                                        => 'Post ID',
65
 
        'ATTACH_QUOTA'                                          => 'Total attachment quota',
66
 
        'ATTACH_QUOTA_EXPLAIN'                          => 'Maximum drive space available for attachments for the whole board, with 0 being unlimited.',
67
 
        'ATTACH_TO_POST'                                        => 'Attach file to post',
68
 
 
69
 
        'CAT_FLASH_FILES'                       => 'Flash files',
70
 
        'CAT_IMAGES'                            => 'Images',
71
 
        'CAT_QUICKTIME_FILES'           => 'Quicktime media files',
72
 
        'CAT_RM_FILES'                          => 'RealMedia media files',
73
 
        'CAT_WM_FILES'                          => 'Windows Media media files',
74
 
        'CREATE_GROUP'                          => 'Create new group',
75
 
        'CREATE_THUMBNAIL'                      => 'Create thumbnail',
76
 
        'CREATE_THUMBNAIL_EXPLAIN'      => 'Create a thumbnail in all possible situations.',
77
 
 
78
 
        'DEFINE_ALLOWED_IPS'                    => 'Define allowed IPs/hostnames',
79
 
        'DEFINE_DISALLOWED_IPS'                 => 'Define disallowed IPs/hostnames',
80
 
        'DOWNLOAD_ADD_IPS_EXPLAIN'              => 'To specify several different IPs or hostnames enter each on a new line. To specify a range of IP addresses separate the start and end with a hyphen (-), to specify a wildcard use “*”.',
81
 
        'DOWNLOAD_REMOVE_IPS_EXPLAIN'   => 'You can remove (or un-exclude) multiple IP addresses in one go using the appropriate combination of mouse and keyboard for your computer and browser. Excluded IPs have a blue background.',
82
 
        'DISPLAY_INLINED'                               => 'Display images inline',
83
 
        'DISPLAY_INLINED_EXPLAIN'               => 'If set to No image attachments will show as a link.',
84
 
        'DISPLAY_ORDER'                                 => 'Attachment display order',
85
 
        'DISPLAY_ORDER_EXPLAIN'                 => 'Display attachments ordered by time.',
86
 
        
87
 
        'EDIT_EXTENSION_GROUP'                  => 'Edit extension group',
88
 
        'EXCLUDE_ENTERED_IP'                    => 'Enable this to exclude the entered IP/hostname.',
89
 
        'EXCLUDE_FROM_ALLOWED_IP'               => 'Exclude IP from allowed IPs/hostnames',
90
 
        'EXCLUDE_FROM_DISALLOWED_IP'    => 'Exclude IP from disallowed IPs/hostnames',
91
 
        'EXTENSIONS_UPDATED'                    => 'Extensions successfully updated.',
92
 
        'EXTENSION_EXIST'                               => 'The extension %s already exists.',
93
 
        'EXTENSION_GROUP'                               => 'Extension group',
94
 
        'EXTENSION_GROUPS'                              => 'Extension groups',
95
 
        'EXTENSION_GROUP_DELETED'               => 'Extension group successfully deleted.',
96
 
        'EXTENSION_GROUP_EXIST'                 => 'The extension group %s already exists.',
97
 
 
98
 
        'GO_TO_EXTENSIONS'              => 'Go to extension management screen',
99
 
        'GROUP_NAME'                    => 'Group name',
100
 
 
101
 
        'IMAGE_LINK_SIZE'                       => 'Image link dimensions',
102
 
        'IMAGE_LINK_SIZE_EXPLAIN'       => 'Display image attachment as an inline text link if image is larger than this. To disable this behaviour, set the values to 0px by 0px.',
103
 
        'IMAGICK_PATH'                          => 'Imagemagick path',
104
 
        'IMAGICK_PATH_EXPLAIN'          => 'Full path to the imagemagick convert application, e.g. <samp>/usr/bin/</samp>.',
105
 
 
106
 
        'MAX_ATTACHMENTS'                               => 'Max attachments per post',
107
 
        'MAX_ATTACHMENTS_PM'                    => 'Max attachments per message',
108
 
        'MAX_EXTGROUP_FILESIZE'                 => 'Maximum file size',
109
 
        'MAX_IMAGE_SIZE'                                => 'Maximum image dimensions',
110
 
        'MAX_IMAGE_SIZE_EXPLAIN'                => 'Maximum size of image attachments. Set both values to 0px by 0px to disable dimension checking.',
111
 
        'MAX_THUMB_WIDTH'                               => 'Maximum thumbnail width in pixel',
112
 
        'MAX_THUMB_WIDTH_EXPLAIN'               => 'A generated thumbnail will not exceed the width set here.',
113
 
        'MIN_THUMB_FILESIZE'                    => 'Minimum thumbnail file size',
114
 
        'MIN_THUMB_FILESIZE_EXPLAIN'    => 'Do not create a thumbnail for images smaller than this.',
115
 
        'MODE_INLINE'                                   => 'Inline',
116
 
        'MODE_PHYSICAL'                                 => 'Physical',
117
 
 
118
 
        'NOT_ALLOWED_IN_PM'                     => 'Only allowed in posts',
119
 
        'NOT_ALLOWED_IN_PM_POST'        => 'Not allowed',
120
 
        'NOT_ASSIGNED'                          => 'Not assigned',
121
 
        'NO_EXT_GROUP'                          => 'None',
122
 
        'NO_EXT_GROUP_NAME'                     => 'No group name entered',
123
 
        'NO_EXT_GROUP_SPECIFIED'        => 'No extension group specified.',
124
 
        'NO_FILE_CAT'                           => 'None',
125
 
        'NO_IMAGE'                                      => 'No image',
126
 
        'NO_THUMBNAIL_SUPPORT'          => 'Thumbnail support has been disabled. For proper functionality either the GD extension need to be available or imagemagick being installed. Both were not found.',
127
 
        'NO_UPLOAD_DIR'                         => 'The upload directory you specified does not exist.',
128
 
        'NO_WRITE_UPLOAD'                       => 'The upload directory you specified cannot be written to. Please alter the permissions to allow the webserver to write to it.',
129
 
 
130
 
        'ONLY_ALLOWED_IN_PM'    => 'Only allowed in private messages',
131
 
        'ORDER_ALLOW_DENY'              => 'Allow',
132
 
        'ORDER_DENY_ALLOW'              => 'Deny',
133
 
 
134
 
        'REMOVE_ALLOWED_IPS'            => 'Remove or un-exclude <em>allowed</em> IPs/hostnames',
135
 
        'REMOVE_DISALLOWED_IPS'         => 'Remove or un-exclude <em>disallowed</em> IPs/hostnames',
136
 
 
137
 
        'SEARCH_IMAGICK'                                => 'Search for Imagemagick',
138
 
        'SECURE_ALLOW_DENY'                             => 'Allow/Deny list',
139
 
        'SECURE_ALLOW_DENY_EXPLAIN'             => 'Change the default behaviour when secure downloads are enabled of the Allow/Deny list to that of a <strong>whitelist</strong> (Allow) or a <strong>blacklist</strong> (Deny).',
140
 
        'SECURE_DOWNLOADS'                              => 'Enable secure downloads',
141
 
        'SECURE_DOWNLOADS_EXPLAIN'              => 'With this option enabled, downloads are limited to IP’s/hostnames you define.',
142
 
        'SECURE_DOWNLOAD_NOTICE'                => 'Secure Downloads are not enabled. The settings below will be applied after enabling secure downloads.',
143
 
        'SECURE_DOWNLOAD_UPDATE_SUCCESS'=> 'The IP list has been updated successfully.',
144
 
        'SECURE_EMPTY_REFERRER'                 => 'Allow empty referrer',
145
 
        'SECURE_EMPTY_REFERRER_EXPLAIN' => 'Secure downloads are based on referrers. Do you want to allow downloads for those omitting the referrer?',
146
 
        'SETTINGS_CAT_IMAGES'                   => 'Image category settings',
147
 
        'SPECIAL_CATEGORY'                              => 'Special category',
148
 
        'SPECIAL_CATEGORY_EXPLAIN'              => 'Special categories differ between the way presented within posts.',
149
 
        'SUCCESSFULLY_UPLOADED'                 => 'Successfully uploaded.',
150
 
        'SUCCESS_EXTENSION_GROUP_ADD'   => 'Extension group successfully added.',
151
 
        'SUCCESS_EXTENSION_GROUP_EDIT'  => 'Extension group successfully updated.',
152
 
 
153
 
        'UPLOADING_FILES'                               => 'Uploading files',
154
 
        'UPLOADING_FILE_TO'                             => 'Uploading file “%1$s” to post number %2$d…',
155
 
        'UPLOAD_DENIED_FORUM'                   => 'You do not have the permission to upload files to forum “%s”.',
156
 
        'UPLOAD_DIR'                                    => 'Upload directory',
157
 
        'UPLOAD_DIR_EXPLAIN'                    => 'Storage path for attachments. Please note that if you change this directory while already having uploaded attachments you need to manually copy the files to their new location.',
158
 
        'UPLOAD_ICON'                                   => 'Upload icon',
159
 
        'UPLOAD_NOT_DIR'                                => 'The upload location you specified does not appear to be a directory.',
160
 
));
161
 
 
162
 
?>
 
 
b'\\ No newline at end of file'