2005-11-17 18:06:11 +00:00
< ? php
2007-10-04 15:08:22 +00:00
/**
2005-11-17 18:06:11 +00:00
*
* acp_attachments [ English ]
*
* @ package language
* @ version $Id $
2007-10-04 15:08:22 +00:00
* @ copyright ( c ) 2005 phpBB Group
* @ license http :// opensource . org / licenses / gpl - license . php GNU Public License
2005-11-17 18:06:11 +00:00
*
*/
/**
* DO NOT CHANGE
*/
2007-10-04 15:08:22 +00:00
if ( ! defined ( 'IN_PHPBB' ))
{
exit ;
}
2005-11-17 18:06:11 +00:00
if ( empty ( $lang ) || ! is_array ( $lang ))
{
$lang = array ();
}
2006-09-17 22:02:28 +00:00
// DEVELOPERS PLEASE NOTE
//
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
2005-11-17 18:06:11 +00:00
//
// Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct
//
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
2005-12-12 23:17:30 +00:00
$lang = array_merge ( $lang , array (
Righto... my first checkin for these language related thingies. Hopefully nothing
has blown up! ;)
The basic style guide is:
1) British English, Cambridge style... ie: -ise, not -ize, etc.
2) Sentence-case pervasively with exception of acronyms/abbreviations, which if not in their contracted form, shall be in title-case. If you don't like it, you can
restyle it via CSS using text-transform: none|uppercase|lowercase|capitalize; ...
additional hooks may be added to the strings to assist this.
3) For those that have missed the switch to UTF-8, it means that the language files need not use numeric entities anymore. <, > and & stay though, as
they must always be entitised.
There'll be more tweaks and changes, though this "big 'un" is out of the way and will get progressively chilly so that it can be frozen for RC1 after
however many betas there may be. ;) Wooh! :P
git-svn-id: file:///svn/phpbb/trunk@6399 89ea8834-ac86-4346-8a33-228a782c2dd0
2006-09-24 00:28:32 +00:00
'ACP_ATTACHMENT_SETTINGS_EXPLAIN' => 'Here you can configure the main settings for attachments and the associated special categories.' ,
'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.' ,
2007-05-10 15:31:35 +00:00
'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…).' ,
2007-05-12 13:20:38 +00:00
'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.' ,
2005-11-17 18:06:11 +00:00
'ADD_EXTENSION' => 'Add extension' ,
Righto... my first checkin for these language related thingies. Hopefully nothing
has blown up! ;)
The basic style guide is:
1) British English, Cambridge style... ie: -ise, not -ize, etc.
2) Sentence-case pervasively with exception of acronyms/abbreviations, which if not in their contracted form, shall be in title-case. If you don't like it, you can
restyle it via CSS using text-transform: none|uppercase|lowercase|capitalize; ...
additional hooks may be added to the strings to assist this.
3) For those that have missed the switch to UTF-8, it means that the language files need not use numeric entities anymore. <, > and & stay though, as
they must always be entitised.
There'll be more tweaks and changes, though this "big 'un" is out of the way and will get progressively chilly so that it can be frozen for RC1 after
however many betas there may be. ;) Wooh! :P
git-svn-id: file:///svn/phpbb/trunk@6399 89ea8834-ac86-4346-8a33-228a782c2dd0
2006-09-24 00:28:32 +00:00
'ADD_EXTENSION_GROUP' => 'Add extension group' ,
2007-05-10 15:31:35 +00:00
'ADMIN_UPLOAD_ERROR' => 'Errors while trying to attach file: “%s”.' ,
Righto... my first checkin for these language related thingies. Hopefully nothing
has blown up! ;)
The basic style guide is:
1) British English, Cambridge style... ie: -ise, not -ize, etc.
2) Sentence-case pervasively with exception of acronyms/abbreviations, which if not in their contracted form, shall be in title-case. If you don't like it, you can
restyle it via CSS using text-transform: none|uppercase|lowercase|capitalize; ...
additional hooks may be added to the strings to assist this.
3) For those that have missed the switch to UTF-8, it means that the language files need not use numeric entities anymore. <, > and & stay though, as
they must always be entitised.
There'll be more tweaks and changes, though this "big 'un" is out of the way and will get progressively chilly so that it can be frozen for RC1 after
however many betas there may be. ;) Wooh! :P
git-svn-id: file:///svn/phpbb/trunk@6399 89ea8834-ac86-4346-8a33-228a782c2dd0
2006-09-24 00:28:32 +00:00
'ALLOWED_FORUMS' => 'Allowed forums' ,
2007-05-10 15:31:35 +00:00
'ALLOWED_FORUMS_EXPLAIN' => 'Able to post the assigned extensions at the selected (or all if selected) forums.' ,
2007-05-17 14:59:33 +00:00
'ALLOWED_IN_PM_POST' => 'Allowed' ,
Righto... my first checkin for these language related thingies. Hopefully nothing
has blown up! ;)
The basic style guide is:
1) British English, Cambridge style... ie: -ise, not -ize, etc.
2) Sentence-case pervasively with exception of acronyms/abbreviations, which if not in their contracted form, shall be in title-case. If you don't like it, you can
restyle it via CSS using text-transform: none|uppercase|lowercase|capitalize; ...
additional hooks may be added to the strings to assist this.
3) For those that have missed the switch to UTF-8, it means that the language files need not use numeric entities anymore. <, > and & stay though, as
they must always be entitised.
There'll be more tweaks and changes, though this "big 'un" is out of the way and will get progressively chilly so that it can be frozen for RC1 after
however many betas there may be. ;) Wooh! :P
git-svn-id: file:///svn/phpbb/trunk@6399 89ea8834-ac86-4346-8a33-228a782c2dd0
2006-09-24 00:28:32 +00:00
'ALLOW_ATTACHMENTS' => 'Allow attachments' ,
'ALLOW_ALL_FORUMS' => 'Allow all forums' ,
2005-11-17 18:06:11 +00:00
'ALLOW_IN_PM' => 'Allowed in private messaging' ,
Righto... my first checkin for these language related thingies. Hopefully nothing
has blown up! ;)
The basic style guide is:
1) British English, Cambridge style... ie: -ise, not -ize, etc.
2) Sentence-case pervasively with exception of acronyms/abbreviations, which if not in their contracted form, shall be in title-case. If you don't like it, you can
restyle it via CSS using text-transform: none|uppercase|lowercase|capitalize; ...
additional hooks may be added to the strings to assist this.
3) For those that have missed the switch to UTF-8, it means that the language files need not use numeric entities anymore. <, > and & stay though, as
they must always be entitised.
There'll be more tweaks and changes, though this "big 'un" is out of the way and will get progressively chilly so that it can be frozen for RC1 after
however many betas there may be. ;) Wooh! :P
git-svn-id: file:///svn/phpbb/trunk@6399 89ea8834-ac86-4346-8a33-228a782c2dd0
2006-09-24 00:28:32 +00:00
'ALLOW_PM_ATTACHMENTS' => 'Allow attachments in private messages' ,
'ALLOW_SELECTED_FORUMS' => 'Only forums selected below' ,
'ASSIGNED_EXTENSIONS' => 'Assigned extensions' ,
'ASSIGNED_GROUP' => 'Assigned extension group' ,
2005-11-17 18:06:11 +00:00
'ATTACH_EXTENSIONS_URL' => 'Extensions' ,
Righto... my first checkin for these language related thingies. Hopefully nothing
has blown up! ;)
The basic style guide is:
1) British English, Cambridge style... ie: -ise, not -ize, etc.
2) Sentence-case pervasively with exception of acronyms/abbreviations, which if not in their contracted form, shall be in title-case. If you don't like it, you can
restyle it via CSS using text-transform: none|uppercase|lowercase|capitalize; ...
additional hooks may be added to the strings to assist this.
3) For those that have missed the switch to UTF-8, it means that the language files need not use numeric entities anymore. <, > and & stay though, as
they must always be entitised.
There'll be more tweaks and changes, though this "big 'un" is out of the way and will get progressively chilly so that it can be frozen for RC1 after
however many betas there may be. ;) Wooh! :P
git-svn-id: file:///svn/phpbb/trunk@6399 89ea8834-ac86-4346-8a33-228a782c2dd0
2006-09-24 00:28:32 +00:00
'ATTACH_EXT_GROUPS_URL' => 'Extension groups' ,
2007-05-07 13:19:59 +00:00
'ATTACH_ID' => 'ID' ,
2007-05-03 14:29:22 +00:00
'ATTACH_MAX_FILESIZE' => 'Maximum file size' ,
2006-12-22 22:51:33 +00:00
'ATTACH_MAX_FILESIZE_EXPLAIN' => 'Maximum size of each file, with 0 being unlimited.' ,
2007-05-03 14:29:22 +00:00
'ATTACH_MAX_PM_FILESIZE' => 'Maximum file size messaging' ,
2008-09-26 18:32:05 +00:00
'ATTACH_MAX_PM_FILESIZE_EXPLAIN' => 'Maximum size of each file, with 0 being unlimited, attached to a private message.' ,
Righto... my first checkin for these language related thingies. Hopefully nothing
has blown up! ;)
The basic style guide is:
1) British English, Cambridge style... ie: -ise, not -ize, etc.
2) Sentence-case pervasively with exception of acronyms/abbreviations, which if not in their contracted form, shall be in title-case. If you don't like it, you can
restyle it via CSS using text-transform: none|uppercase|lowercase|capitalize; ...
additional hooks may be added to the strings to assist this.
3) For those that have missed the switch to UTF-8, it means that the language files need not use numeric entities anymore. <, > and & stay though, as
they must always be entitised.
There'll be more tweaks and changes, though this "big 'un" is out of the way and will get progressively chilly so that it can be frozen for RC1 after
however many betas there may be. ;) Wooh! :P
git-svn-id: file:///svn/phpbb/trunk@6399 89ea8834-ac86-4346-8a33-228a782c2dd0
2006-09-24 00:28:32 +00:00
'ATTACH_ORPHAN_URL' => 'Orphan attachments' ,
2005-11-17 18:06:11 +00:00
'ATTACH_POST_ID' => 'Post ID' ,
'ATTACH_QUOTA' => 'Total attachment quota' ,
2006-12-13 21:57:15 +00:00
'ATTACH_QUOTA_EXPLAIN' => 'Maximum drive space available for attachments for the whole board, with 0 being unlimited.' ,
2005-11-17 18:06:11 +00:00
'ATTACH_TO_POST' => 'Attach file to post' ,
2006-12-22 22:51:33 +00:00
'CAT_FLASH_FILES' => 'Flash files' ,
2005-11-17 18:06:11 +00:00
'CAT_IMAGES' => 'Images' ,
2006-12-22 22:51:33 +00:00
'CAT_QUICKTIME_FILES' => 'Quicktime media files' ,
'CAT_RM_FILES' => 'RealMedia media files' ,
'CAT_WM_FILES' => 'Windows Media media files' ,
2008-05-15 14:10:11 +00:00
'CHECK_CONTENT' => 'Check attachment files' ,
'CHECK_CONTENT_EXPLAIN' => 'Some browsers can be tricked to assume an incorrect mimetype for uploaded files. This option ensures that such files likely to cause this are rejected.' ,
2005-11-17 18:06:11 +00:00
'CREATE_GROUP' => 'Create new group' ,
'CREATE_THUMBNAIL' => 'Create thumbnail' ,
'CREATE_THUMBNAIL_EXPLAIN' => 'Create a thumbnail in all possible situations.' ,
Righto... my first checkin for these language related thingies. Hopefully nothing
has blown up! ;)
The basic style guide is:
1) British English, Cambridge style... ie: -ise, not -ize, etc.
2) Sentence-case pervasively with exception of acronyms/abbreviations, which if not in their contracted form, shall be in title-case. If you don't like it, you can
restyle it via CSS using text-transform: none|uppercase|lowercase|capitalize; ...
additional hooks may be added to the strings to assist this.
3) For those that have missed the switch to UTF-8, it means that the language files need not use numeric entities anymore. <, > and & stay though, as
they must always be entitised.
There'll be more tweaks and changes, though this "big 'un" is out of the way and will get progressively chilly so that it can be frozen for RC1 after
however many betas there may be. ;) Wooh! :P
git-svn-id: file:///svn/phpbb/trunk@6399 89ea8834-ac86-4346-8a33-228a782c2dd0
2006-09-24 00:28:32 +00:00
'DEFINE_ALLOWED_IPS' => 'Define allowed IPs/hostnames' ,
'DEFINE_DISALLOWED_IPS' => 'Define disallowed IPs/hostnames' ,
2007-05-10 15:31:35 +00:00
'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 “*”.' ,
Righto... my first checkin for these language related thingies. Hopefully nothing
has blown up! ;)
The basic style guide is:
1) British English, Cambridge style... ie: -ise, not -ize, etc.
2) Sentence-case pervasively with exception of acronyms/abbreviations, which if not in their contracted form, shall be in title-case. If you don't like it, you can
restyle it via CSS using text-transform: none|uppercase|lowercase|capitalize; ...
additional hooks may be added to the strings to assist this.
3) For those that have missed the switch to UTF-8, it means that the language files need not use numeric entities anymore. <, > and & stay though, as
they must always be entitised.
There'll be more tweaks and changes, though this "big 'un" is out of the way and will get progressively chilly so that it can be frozen for RC1 after
however many betas there may be. ;) Wooh! :P
git-svn-id: file:///svn/phpbb/trunk@6399 89ea8834-ac86-4346-8a33-228a782c2dd0
2006-09-24 00:28:32 +00:00
'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.' ,
2005-11-17 18:06:11 +00:00
'DISPLAY_INLINED' => 'Display images inline' ,
'DISPLAY_INLINED_EXPLAIN' => 'If set to No image attachments will show as a link.' ,
Righto... my first checkin for these language related thingies. Hopefully nothing
has blown up! ;)
The basic style guide is:
1) British English, Cambridge style... ie: -ise, not -ize, etc.
2) Sentence-case pervasively with exception of acronyms/abbreviations, which if not in their contracted form, shall be in title-case. If you don't like it, you can
restyle it via CSS using text-transform: none|uppercase|lowercase|capitalize; ...
additional hooks may be added to the strings to assist this.
3) For those that have missed the switch to UTF-8, it means that the language files need not use numeric entities anymore. <, > and & stay though, as
they must always be entitised.
There'll be more tweaks and changes, though this "big 'un" is out of the way and will get progressively chilly so that it can be frozen for RC1 after
however many betas there may be. ;) Wooh! :P
git-svn-id: file:///svn/phpbb/trunk@6399 89ea8834-ac86-4346-8a33-228a782c2dd0
2006-09-24 00:28:32 +00:00
'DISPLAY_ORDER' => 'Attachment display order' ,
2005-11-17 18:06:11 +00:00
'DISPLAY_ORDER_EXPLAIN' => 'Display attachments ordered by time.' ,
2010-04-11 20:42:49 +02:00
Righto... my first checkin for these language related thingies. Hopefully nothing
has blown up! ;)
The basic style guide is:
1) British English, Cambridge style... ie: -ise, not -ize, etc.
2) Sentence-case pervasively with exception of acronyms/abbreviations, which if not in their contracted form, shall be in title-case. If you don't like it, you can
restyle it via CSS using text-transform: none|uppercase|lowercase|capitalize; ...
additional hooks may be added to the strings to assist this.
3) For those that have missed the switch to UTF-8, it means that the language files need not use numeric entities anymore. <, > and & stay though, as
they must always be entitised.
There'll be more tweaks and changes, though this "big 'un" is out of the way and will get progressively chilly so that it can be frozen for RC1 after
however many betas there may be. ;) Wooh! :P
git-svn-id: file:///svn/phpbb/trunk@6399 89ea8834-ac86-4346-8a33-228a782c2dd0
2006-09-24 00:28:32 +00:00
'EDIT_EXTENSION_GROUP' => 'Edit extension group' ,
'EXCLUDE_ENTERED_IP' => 'Enable this to exclude the entered IP/hostname.' ,
'EXCLUDE_FROM_ALLOWED_IP' => 'Exclude IP from allowed IPs/hostnames' ,
'EXCLUDE_FROM_DISALLOWED_IP' => 'Exclude IP from disallowed IPs/hostnames' ,
2007-05-10 15:31:35 +00:00
'EXTENSIONS_UPDATED' => 'Extensions successfully updated.' ,
'EXTENSION_EXIST' => 'The extension %s already exists.' ,
Righto... my first checkin for these language related thingies. Hopefully nothing
has blown up! ;)
The basic style guide is:
1) British English, Cambridge style... ie: -ise, not -ize, etc.
2) Sentence-case pervasively with exception of acronyms/abbreviations, which if not in their contracted form, shall be in title-case. If you don't like it, you can
restyle it via CSS using text-transform: none|uppercase|lowercase|capitalize; ...
additional hooks may be added to the strings to assist this.
3) For those that have missed the switch to UTF-8, it means that the language files need not use numeric entities anymore. <, > and & stay though, as
they must always be entitised.
There'll be more tweaks and changes, though this "big 'un" is out of the way and will get progressively chilly so that it can be frozen for RC1 after
however many betas there may be. ;) Wooh! :P
git-svn-id: file:///svn/phpbb/trunk@6399 89ea8834-ac86-4346-8a33-228a782c2dd0
2006-09-24 00:28:32 +00:00
'EXTENSION_GROUP' => 'Extension group' ,
'EXTENSION_GROUPS' => 'Extension groups' ,
2006-10-02 15:11:40 +00:00
'EXTENSION_GROUP_DELETED' => 'Extension group successfully deleted.' ,
2007-05-10 15:31:35 +00:00
'EXTENSION_GROUP_EXIST' => 'The extension group %s already exists.' ,
2005-11-17 18:06:11 +00:00
2010-04-11 20:42:49 +02:00
'EXT_GROUP_ARCHIVES' => 'Archives' ,
'EXT_GROUP_DOCUMENTS' => 'Documents' ,
'EXT_GROUP_DOWNLOADABLE_FILES' => 'Downloadable Files' ,
'EXT_GROUP_FLASH_FILES' => 'Flash Files' ,
'EXT_GROUP_IMAGES' => 'Images' ,
'EXT_GROUP_PLAIN_TEXT' => 'Plain Text' ,
'EXT_GROUP_QUICKTIME_MEDIA' => 'Quicktime Media' ,
'EXT_GROUP_REAL_MEDIA' => 'Real Media' ,
'EXT_GROUP_WINDOWS_MEDIA' => 'Windows Media' ,
Righto... my first checkin for these language related thingies. Hopefully nothing
has blown up! ;)
The basic style guide is:
1) British English, Cambridge style... ie: -ise, not -ize, etc.
2) Sentence-case pervasively with exception of acronyms/abbreviations, which if not in their contracted form, shall be in title-case. If you don't like it, you can
restyle it via CSS using text-transform: none|uppercase|lowercase|capitalize; ...
additional hooks may be added to the strings to assist this.
3) For those that have missed the switch to UTF-8, it means that the language files need not use numeric entities anymore. <, > and & stay though, as
they must always be entitised.
There'll be more tweaks and changes, though this "big 'un" is out of the way and will get progressively chilly so that it can be frozen for RC1 after
however many betas there may be. ;) Wooh! :P
git-svn-id: file:///svn/phpbb/trunk@6399 89ea8834-ac86-4346-8a33-228a782c2dd0
2006-09-24 00:28:32 +00:00
'GO_TO_EXTENSIONS' => 'Go to extension management screen' ,
2005-11-17 18:06:11 +00:00
'GROUP_NAME' => 'Group name' ,
Righto... my first checkin for these language related thingies. Hopefully nothing
has blown up! ;)
The basic style guide is:
1) British English, Cambridge style... ie: -ise, not -ize, etc.
2) Sentence-case pervasively with exception of acronyms/abbreviations, which if not in their contracted form, shall be in title-case. If you don't like it, you can
restyle it via CSS using text-transform: none|uppercase|lowercase|capitalize; ...
additional hooks may be added to the strings to assist this.
3) For those that have missed the switch to UTF-8, it means that the language files need not use numeric entities anymore. <, > and & stay though, as
they must always be entitised.
There'll be more tweaks and changes, though this "big 'un" is out of the way and will get progressively chilly so that it can be frozen for RC1 after
however many betas there may be. ;) Wooh! :P
git-svn-id: file:///svn/phpbb/trunk@6399 89ea8834-ac86-4346-8a33-228a782c2dd0
2006-09-24 00:28:32 +00:00
'IMAGE_LINK_SIZE' => 'Image link dimensions' ,
2006-12-22 22:51:33 +00:00
'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.' ,
2005-11-17 18:06:11 +00:00
'IMAGICK_PATH' => 'Imagemagick path' ,
2007-05-10 15:31:35 +00:00
'IMAGICK_PATH_EXPLAIN' => 'Full path to the imagemagick convert application, e.g. <samp>/usr/bin/</samp>.' ,
2005-11-17 18:06:11 +00:00
2008-09-26 18:32:05 +00:00
'MAX_ATTACHMENTS' => 'Maximum number of attachments per post' ,
'MAX_ATTACHMENTS_PM' => 'Maximum number of attachments per private message' ,
2007-05-03 14:29:22 +00:00
'MAX_EXTGROUP_FILESIZE' => 'Maximum file size' ,
Righto... my first checkin for these language related thingies. Hopefully nothing
has blown up! ;)
The basic style guide is:
1) British English, Cambridge style... ie: -ise, not -ize, etc.
2) Sentence-case pervasively with exception of acronyms/abbreviations, which if not in their contracted form, shall be in title-case. If you don't like it, you can
restyle it via CSS using text-transform: none|uppercase|lowercase|capitalize; ...
additional hooks may be added to the strings to assist this.
3) For those that have missed the switch to UTF-8, it means that the language files need not use numeric entities anymore. <, > and & stay though, as
they must always be entitised.
There'll be more tweaks and changes, though this "big 'un" is out of the way and will get progressively chilly so that it can be frozen for RC1 after
however many betas there may be. ;) Wooh! :P
git-svn-id: file:///svn/phpbb/trunk@6399 89ea8834-ac86-4346-8a33-228a782c2dd0
2006-09-24 00:28:32 +00:00
'MAX_IMAGE_SIZE' => 'Maximum image dimensions' ,
2006-12-22 22:51:33 +00:00
'MAX_IMAGE_SIZE_EXPLAIN' => 'Maximum size of image attachments. Set both values to 0px by 0px to disable dimension checking.' ,
2006-08-28 15:50:33 +00:00
'MAX_THUMB_WIDTH' => 'Maximum thumbnail width in pixel' ,
2007-05-10 15:31:35 +00:00
'MAX_THUMB_WIDTH_EXPLAIN' => 'A generated thumbnail will not exceed the width set here.' ,
2007-05-03 14:29:22 +00:00
'MIN_THUMB_FILESIZE' => 'Minimum thumbnail file size' ,
2005-11-17 18:06:11 +00:00
'MIN_THUMB_FILESIZE_EXPLAIN' => 'Do not create a thumbnail for images smaller than this.' ,
'MODE_INLINE' => 'Inline' ,
'MODE_PHYSICAL' => 'Physical' ,
2007-05-17 14:59:33 +00:00
'NOT_ALLOWED_IN_PM' => 'Only allowed in posts' ,
'NOT_ALLOWED_IN_PM_POST' => 'Not allowed' ,
2005-11-17 18:06:11 +00:00
'NOT_ASSIGNED' => 'Not assigned' ,
2006-08-06 17:25:29 +00:00
'NO_EXT_GROUP' => 'None' ,
Righto... my first checkin for these language related thingies. Hopefully nothing
has blown up! ;)
The basic style guide is:
1) British English, Cambridge style... ie: -ise, not -ize, etc.
2) Sentence-case pervasively with exception of acronyms/abbreviations, which if not in their contracted form, shall be in title-case. If you don't like it, you can
restyle it via CSS using text-transform: none|uppercase|lowercase|capitalize; ...
additional hooks may be added to the strings to assist this.
3) For those that have missed the switch to UTF-8, it means that the language files need not use numeric entities anymore. <, > and & stay though, as
they must always be entitised.
There'll be more tweaks and changes, though this "big 'un" is out of the way and will get progressively chilly so that it can be frozen for RC1 after
however many betas there may be. ;) Wooh! :P
git-svn-id: file:///svn/phpbb/trunk@6399 89ea8834-ac86-4346-8a33-228a782c2dd0
2006-09-24 00:28:32 +00:00
'NO_EXT_GROUP_NAME' => 'No group name entered' ,
2006-10-02 15:11:40 +00:00
'NO_EXT_GROUP_SPECIFIED' => 'No extension group specified.' ,
2006-08-06 17:25:29 +00:00
'NO_FILE_CAT' => 'None' ,
Righto... my first checkin for these language related thingies. Hopefully nothing
has blown up! ;)
The basic style guide is:
1) British English, Cambridge style... ie: -ise, not -ize, etc.
2) Sentence-case pervasively with exception of acronyms/abbreviations, which if not in their contracted form, shall be in title-case. If you don't like it, you can
restyle it via CSS using text-transform: none|uppercase|lowercase|capitalize; ...
additional hooks may be added to the strings to assist this.
3) For those that have missed the switch to UTF-8, it means that the language files need not use numeric entities anymore. <, > and & stay though, as
they must always be entitised.
There'll be more tweaks and changes, though this "big 'un" is out of the way and will get progressively chilly so that it can be frozen for RC1 after
however many betas there may be. ;) Wooh! :P
git-svn-id: file:///svn/phpbb/trunk@6399 89ea8834-ac86-4346-8a33-228a782c2dd0
2006-09-24 00:28:32 +00:00
'NO_IMAGE' => 'No image' ,
2007-02-18 13:42:08 +00:00
'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.' ,
2005-11-17 18:06:11 +00:00
'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.' ,
2006-12-27 17:43:55 +00:00
'ONLY_ALLOWED_IN_PM' => 'Only allowed in private messages' ,
2005-11-17 18:06:11 +00:00
'ORDER_ALLOW_DENY' => 'Allow' ,
'ORDER_DENY_ALLOW' => 'Deny' ,
2006-12-13 21:57:15 +00:00
'REMOVE_ALLOWED_IPS' => 'Remove or un-exclude <em>allowed</em> IPs/hostnames' ,
'REMOVE_DISALLOWED_IPS' => 'Remove or un-exclude <em>disallowed</em> IPs/hostnames' ,
2005-11-17 18:06:11 +00:00
'SEARCH_IMAGICK' => 'Search for Imagemagick' ,
Righto... my first checkin for these language related thingies. Hopefully nothing
has blown up! ;)
The basic style guide is:
1) British English, Cambridge style... ie: -ise, not -ize, etc.
2) Sentence-case pervasively with exception of acronyms/abbreviations, which if not in their contracted form, shall be in title-case. If you don't like it, you can
restyle it via CSS using text-transform: none|uppercase|lowercase|capitalize; ...
additional hooks may be added to the strings to assist this.
3) For those that have missed the switch to UTF-8, it means that the language files need not use numeric entities anymore. <, > and & stay though, as
they must always be entitised.
There'll be more tweaks and changes, though this "big 'un" is out of the way and will get progressively chilly so that it can be frozen for RC1 after
however many betas there may be. ;) Wooh! :P
git-svn-id: file:///svn/phpbb/trunk@6399 89ea8834-ac86-4346-8a33-228a782c2dd0
2006-09-24 00:28:32 +00:00
'SECURE_ALLOW_DENY' => 'Allow/Deny list' ,
2007-05-10 15:31:35 +00:00
'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).' ,
2005-11-17 18:06:11 +00:00
'SECURE_DOWNLOADS' => 'Enable secure downloads' ,
2006-12-13 21:57:15 +00:00
'SECURE_DOWNLOADS_EXPLAIN' => 'With this option enabled, downloads are limited to IP’ s/hostnames you define.' ,
2005-11-17 18:06:11 +00:00
'SECURE_DOWNLOAD_NOTICE' => 'Secure Downloads are not enabled. The settings below will be applied after enabling secure downloads.' ,
2006-10-02 15:11:40 +00:00
'SECURE_DOWNLOAD_UPDATE_SUCCESS' => 'The IP list has been updated successfully.' ,
2006-07-06 16:46:53 +00:00
'SECURE_EMPTY_REFERRER' => 'Allow empty referrer' ,
2007-01-21 18:33:45 +00:00
'SECURE_EMPTY_REFERRER_EXPLAIN' => 'Secure downloads are based on referrers. Do you want to allow downloads for those omitting the referrer?' ,
2005-11-17 18:06:11 +00:00
'SETTINGS_CAT_IMAGES' => 'Image category settings' ,
2006-12-22 22:51:33 +00:00
'SPECIAL_CATEGORY' => 'Special category' ,
'SPECIAL_CATEGORY_EXPLAIN' => 'Special categories differ between the way presented within posts.' ,
2007-05-10 15:31:35 +00:00
'SUCCESSFULLY_UPLOADED' => 'Successfully uploaded.' ,
'SUCCESS_EXTENSION_GROUP_ADD' => 'Extension group successfully added.' ,
'SUCCESS_EXTENSION_GROUP_EDIT' => 'Extension group successfully updated.' ,
2005-11-17 18:06:11 +00:00
Righto... my first checkin for these language related thingies. Hopefully nothing
has blown up! ;)
The basic style guide is:
1) British English, Cambridge style... ie: -ise, not -ize, etc.
2) Sentence-case pervasively with exception of acronyms/abbreviations, which if not in their contracted form, shall be in title-case. If you don't like it, you can
restyle it via CSS using text-transform: none|uppercase|lowercase|capitalize; ...
additional hooks may be added to the strings to assist this.
3) For those that have missed the switch to UTF-8, it means that the language files need not use numeric entities anymore. <, > and & stay though, as
they must always be entitised.
There'll be more tweaks and changes, though this "big 'un" is out of the way and will get progressively chilly so that it can be frozen for RC1 after
however many betas there may be. ;) Wooh! :P
git-svn-id: file:///svn/phpbb/trunk@6399 89ea8834-ac86-4346-8a33-228a782c2dd0
2006-09-24 00:28:32 +00:00
'UPLOADING_FILES' => 'Uploading files' ,
2006-12-22 22:51:33 +00:00
'UPLOADING_FILE_TO' => 'Uploading file “%1$s” to post number %2$d…' ,
2007-05-10 15:31:35 +00:00
'UPLOAD_DENIED_FORUM' => 'You do not have the permission to upload files to forum “%s”.' ,
Righto... my first checkin for these language related thingies. Hopefully nothing
has blown up! ;)
The basic style guide is:
1) British English, Cambridge style... ie: -ise, not -ize, etc.
2) Sentence-case pervasively with exception of acronyms/abbreviations, which if not in their contracted form, shall be in title-case. If you don't like it, you can
restyle it via CSS using text-transform: none|uppercase|lowercase|capitalize; ...
additional hooks may be added to the strings to assist this.
3) For those that have missed the switch to UTF-8, it means that the language files need not use numeric entities anymore. <, > and & stay though, as
they must always be entitised.
There'll be more tweaks and changes, though this "big 'un" is out of the way and will get progressively chilly so that it can be frozen for RC1 after
however many betas there may be. ;) Wooh! :P
git-svn-id: file:///svn/phpbb/trunk@6399 89ea8834-ac86-4346-8a33-228a782c2dd0
2006-09-24 00:28:32 +00:00
'UPLOAD_DIR' => 'Upload directory' ,
2007-05-07 15:18:44 +00:00
'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.' ,
Righto... my first checkin for these language related thingies. Hopefully nothing
has blown up! ;)
The basic style guide is:
1) British English, Cambridge style... ie: -ise, not -ize, etc.
2) Sentence-case pervasively with exception of acronyms/abbreviations, which if not in their contracted form, shall be in title-case. If you don't like it, you can
restyle it via CSS using text-transform: none|uppercase|lowercase|capitalize; ...
additional hooks may be added to the strings to assist this.
3) For those that have missed the switch to UTF-8, it means that the language files need not use numeric entities anymore. <, > and & stay though, as
they must always be entitised.
There'll be more tweaks and changes, though this "big 'un" is out of the way and will get progressively chilly so that it can be frozen for RC1 after
however many betas there may be. ;) Wooh! :P
git-svn-id: file:///svn/phpbb/trunk@6399 89ea8834-ac86-4346-8a33-228a782c2dd0
2006-09-24 00:28:32 +00:00
'UPLOAD_ICON' => 'Upload icon' ,
2005-11-17 18:06:11 +00:00
'UPLOAD_NOT_DIR' => 'The upload location you specified does not appear to be a directory.' ,
2005-12-12 23:17:30 +00:00
));
2005-11-17 18:06:11 +00:00
?>