2005-11-17 18:06:11 +00:00
< ? php
2007-06-09 11:11:20 +00:00
/**
2005-11-17 18:06:11 +00:00
*
One commit for those fixes having a very tiny impact (mostly only whitespaces or forgotten spans, etc.)
Although i somehow mistakingly got #20445 and #15249 into it. :/
Removing s_watching_img from watch_topic_forum() function (Bug #20445)
Changing order for post review if more than one post affected (Bug #15249)
Language typos/fixes (Bug #20425, #15719, #15429, #14669, #13479)
Style/Template fixes (Bug #20065, #19405, #19205, #15028, #14934, #14821, #14752, #14497, #13707, #14738)
Tiny code fixes (Bug #20165, #20025, #19795, #14804)
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8350 89ea8834-ac86-4346-8a33-228a782c2dd0
2008-01-30 16:01:15 +00:00
* acp_common [ English ]
2005-11-17 18:06:11 +00:00
*
* @ package language
2007-06-09 11:11:20 +00:00
* @ copyright ( c ) 2005 phpBB Group
2011-12-31 13:32:52 +00:00
* @ license http :// opensource . org / licenses / gpl - 2.0 . php GNU General Public License v2
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 ();
}
// DEVELOPERS PLEASE NOTE
//
2006-12-02 13:19:40 +00:00
// 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
// Common
2005-12-12 23:17:30 +00:00
$lang = array_merge ( $lang , array (
2006-02-03 20:59:39 +00:00
'ACP_ADMINISTRATORS' => 'Administrators' ,
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_ADMIN_LOGS' => 'Admin log' ,
'ACP_ADMIN_ROLES' => 'Admin roles' ,
2005-11-17 18:06:11 +00:00
'ACP_ATTACHMENTS' => 'Attachments' ,
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' => 'Attachment settings' ,
2005-11-17 18:06:11 +00:00
'ACP_AUTH_SETTINGS' => 'Authentication' ,
2005-12-05 18:52:23 +00:00
'ACP_AUTOMATION' => 'Automation' ,
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_AVATAR_SETTINGS' => 'Avatar settings' ,
2006-02-03 20:59:39 +00:00
2006-03-18 06:39:47 +00:00
'ACP_BACKUP' => 'Backup' ,
2005-12-09 18:09:43 +00:00
'ACP_BAN' => 'Banning' ,
2012-04-15 20:10:51 +02:00
'ACP_BAN_EMAILS' => 'Ban emails' ,
2005-12-09 18:09:43 +00:00
'ACP_BAN_IPS' => 'Ban IPs' ,
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_BAN_USERNAMES' => 'Ban usernames' ,
2005-11-20 18:58:34 +00:00
'ACP_BBCODES' => 'BBCodes' ,
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_BOARD_CONFIGURATION' => 'Board configuration' ,
'ACP_BOARD_FEATURES' => 'Board features' ,
'ACP_BOARD_MANAGEMENT' => 'Board management' ,
'ACP_BOARD_SETTINGS' => 'Board settings' ,
2005-11-17 18:06:11 +00:00
'ACP_BOTS' => 'Spiders/Robots' ,
One commit for those fixes having a very tiny impact (mostly only whitespaces or forgotten spans, etc.)
Although i somehow mistakingly got #20445 and #15249 into it. :/
Removing s_watching_img from watch_topic_forum() function (Bug #20445)
Changing order for post review if more than one post affected (Bug #15249)
Language typos/fixes (Bug #20425, #15719, #15429, #14669, #13479)
Style/Template fixes (Bug #20065, #19405, #19205, #15028, #14934, #14821, #14752, #14497, #13707, #14738)
Tiny code fixes (Bug #20165, #20025, #19795, #14804)
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8350 89ea8834-ac86-4346-8a33-228a782c2dd0
2008-01-30 16:01:15 +00:00
2006-06-28 02:43:44 +00:00
'ACP_CAPTCHA' => 'CAPTCHA' ,
2005-12-09 18:09:43 +00:00
'ACP_CAT_DATABASE' => 'Database' ,
2007-04-27 16:13:03 +00:00
'ACP_CAT_DOT_MODS' => '.MODs' ,
2005-12-09 18:09:43 +00:00
'ACP_CAT_FORUMS' => 'Forums' ,
2005-11-17 18:06:11 +00:00
'ACP_CAT_GENERAL' => 'General' ,
2006-03-18 22:13:54 +00:00
'ACP_CAT_MAINTENANCE' => 'Maintenance' ,
2005-12-09 18:09:43 +00:00
'ACP_CAT_PERMISSIONS' => 'Permissions' ,
2005-11-28 18:38:49 +00:00
'ACP_CAT_POSTING' => 'Posting' ,
2005-12-09 18:09:43 +00:00
'ACP_CAT_STYLES' => 'Styles' ,
2005-11-28 18:38:49 +00:00
'ACP_CAT_SYSTEM' => 'System' ,
2006-12-25 17:07:52 +00:00
'ACP_CAT_USERGROUP' => 'Users and Groups' ,
2005-12-09 18:09:43 +00:00
'ACP_CAT_USERS' => 'Users' ,
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_CLIENT_COMMUNICATION' => 'Client communication' ,
'ACP_COOKIE_SETTINGS' => 'Cookie settings' ,
'ACP_CRITICAL_LOGS' => 'Error log' ,
'ACP_CUSTOM_PROFILE_FIELDS' => 'Custom profile fields' ,
One commit for those fixes having a very tiny impact (mostly only whitespaces or forgotten spans, etc.)
Although i somehow mistakingly got #20445 and #15249 into it. :/
Removing s_watching_img from watch_topic_forum() function (Bug #20445)
Changing order for post review if more than one post affected (Bug #15249)
Language typos/fixes (Bug #20425, #15719, #15429, #14669, #13479)
Style/Template fixes (Bug #20065, #19405, #19205, #15028, #14934, #14821, #14752, #14497, #13707, #14738)
Tiny code fixes (Bug #20165, #20025, #19795, #14804)
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8350 89ea8834-ac86-4346-8a33-228a782c2dd0
2008-01-30 16:01:15 +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
'ACP_DATABASE' => 'Database management' ,
2005-12-09 18:09:43 +00:00
'ACP_DISALLOW' => 'Disallow' ,
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_DISALLOW_USERNAMES' => 'Disallow usernames' ,
One commit for those fixes having a very tiny impact (mostly only whitespaces or forgotten spans, etc.)
Although i somehow mistakingly got #20445 and #15249 into it. :/
Removing s_watching_img from watch_topic_forum() function (Bug #20445)
Changing order for post review if more than one post affected (Bug #15249)
Language typos/fixes (Bug #20425, #15719, #15429, #14669, #13479)
Style/Template fixes (Bug #20065, #19405, #19205, #15028, #14934, #14821, #14752, #14497, #13707, #14738)
Tiny code fixes (Bug #20165, #20025, #19795, #14804)
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8350 89ea8834-ac86-4346-8a33-228a782c2dd0
2008-01-30 16:01:15 +00:00
2012-04-15 20:10:51 +02:00
'ACP_EMAIL_SETTINGS' => 'Email settings' ,
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_EXTENSION_GROUPS' => 'Manage extension groups' ,
2012-02-29 21:23:50 +00:00
'ACP_EXTENSIONS' => 'Manage board extensions' ,
One commit for those fixes having a very tiny impact (mostly only whitespaces or forgotten spans, etc.)
Although i somehow mistakingly got #20445 and #15249 into it. :/
Removing s_watching_img from watch_topic_forum() function (Bug #20445)
Changing order for post review if more than one post affected (Bug #15249)
Language typos/fixes (Bug #20425, #15719, #15429, #14669, #13479)
Style/Template fixes (Bug #20065, #19405, #19205, #15028, #14934, #14821, #14752, #14497, #13707, #14738)
Tiny code fixes (Bug #20165, #20025, #19795, #14804)
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8350 89ea8834-ac86-4346-8a33-228a782c2dd0
2008-01-30 16:01:15 +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
'ACP_FORUM_BASED_PERMISSIONS' => 'Forum based permissions' ,
'ACP_FORUM_LOGS' => 'Forum logs' ,
'ACP_FORUM_MANAGEMENT' => 'Forum management' ,
'ACP_FORUM_MODERATORS' => 'Forum moderators' ,
'ACP_FORUM_PERMISSIONS' => 'Forum permissions' ,
2009-07-28 22:09:46 +00:00
'ACP_FORUM_PERMISSIONS_COPY' => 'Copy forum permissions' ,
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_FORUM_ROLES' => 'Forum roles' ,
'ACP_GENERAL_CONFIGURATION' => 'General configuration' ,
'ACP_GENERAL_TASKS' => 'General tasks' ,
'ACP_GLOBAL_MODERATORS' => 'Global moderators' ,
'ACP_GLOBAL_PERMISSIONS' => 'Global permissions' ,
2006-02-03 20:59:39 +00:00
'ACP_GROUPS' => 'Groups' ,
2012-03-24 15:13:04 +00:00
'ACP_GROUPS_FORUM_PERMISSIONS' => 'Group forum permissions' ,
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_GROUPS_MANAGE' => 'Manage groups' ,
'ACP_GROUPS_MANAGEMENT' => 'Group management' ,
2012-03-24 15:13:04 +00:00
'ACP_GROUPS_PERMISSIONS' => 'Group permissions' ,
2011-02-09 21:05:10 +01:00
'ACP_GROUPS_POSITION' => 'Manage group positions' ,
One commit for those fixes having a very tiny impact (mostly only whitespaces or forgotten spans, etc.)
Although i somehow mistakingly got #20445 and #15249 into it. :/
Removing s_watching_img from watch_topic_forum() function (Bug #20445)
Changing order for post review if more than one post affected (Bug #15249)
Language typos/fixes (Bug #20425, #15719, #15429, #14669, #13479)
Style/Template fixes (Bug #20065, #19405, #19205, #15028, #14934, #14821, #14752, #14497, #13707, #14738)
Tiny code fixes (Bug #20165, #20025, #19795, #14804)
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8350 89ea8834-ac86-4346-8a33-228a782c2dd0
2008-01-30 16:01:15 +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
'ACP_ICONS' => 'Topic icons' ,
'ACP_ICONS_SMILIES' => 'Topic icons/smilies' ,
2006-09-23 12:27:51 +00:00
'ACP_INACTIVE_USERS' => 'Inactive users' ,
2006-12-22 22:51:33 +00:00
'ACP_INDEX' => 'ACP index' ,
One commit for those fixes having a very tiny impact (mostly only whitespaces or forgotten spans, etc.)
Although i somehow mistakingly got #20445 and #15249 into it. :/
Removing s_watching_img from watch_topic_forum() function (Bug #20445)
Changing order for post review if more than one post affected (Bug #15249)
Language typos/fixes (Bug #20425, #15719, #15429, #14669, #13479)
Style/Template fixes (Bug #20065, #19405, #19205, #15028, #14934, #14821, #14752, #14497, #13707, #14738)
Tiny code fixes (Bug #20165, #20025, #19795, #14804)
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8350 89ea8834-ac86-4346-8a33-228a782c2dd0
2008-01-30 16:01:15 +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
'ACP_JABBER_SETTINGS' => 'Jabber settings' ,
One commit for those fixes having a very tiny impact (mostly only whitespaces or forgotten spans, etc.)
Although i somehow mistakingly got #20445 and #15249 into it. :/
Removing s_watching_img from watch_topic_forum() function (Bug #20445)
Changing order for post review if more than one post affected (Bug #15249)
Language typos/fixes (Bug #20425, #15719, #15429, #14669, #13479)
Style/Template fixes (Bug #20065, #19405, #19205, #15028, #14934, #14821, #14752, #14497, #13707, #14738)
Tiny code fixes (Bug #20165, #20025, #19795, #14804)
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8350 89ea8834-ac86-4346-8a33-228a782c2dd0
2008-01-30 16:01:15 +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
'ACP_LANGUAGE' => 'Language management' ,
'ACP_LANGUAGE_PACKS' => 'Language packs' ,
'ACP_LOAD_SETTINGS' => 'Load settings' ,
2005-11-28 18:38:49 +00:00
'ACP_LOGGING' => 'Logging' ,
One commit for those fixes having a very tiny impact (mostly only whitespaces or forgotten spans, etc.)
Although i somehow mistakingly got #20445 and #15249 into it. :/
Removing s_watching_img from watch_topic_forum() function (Bug #20445)
Changing order for post review if more than one post affected (Bug #15249)
Language typos/fixes (Bug #20425, #15719, #15429, #14669, #13479)
Style/Template fixes (Bug #20065, #19405, #19205, #15028, #14934, #14821, #14752, #14497, #13707, #14738)
Tiny code fixes (Bug #20165, #20025, #19795, #14804)
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8350 89ea8834-ac86-4346-8a33-228a782c2dd0
2008-01-30 16:01:15 +00:00
2006-12-22 22:51:33 +00:00
'ACP_MAIN' => 'ACP index' ,
2011-02-17 23:31:05 +07:00
'ACP_MANAGE_ATTACHMENTS' => 'Manage attachments' ,
2011-04-11 19:59:50 +08:00
'ACP_MANAGE_ATTACHMENTS_EXPLAIN' => 'Here you can list and delete files attached to posts and private messages.' ,
2011-02-17 23:31:05 +07: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
'ACP_MANAGE_EXTENSIONS' => 'Manage extensions' ,
'ACP_MANAGE_FORUMS' => 'Manage forums' ,
'ACP_MANAGE_RANKS' => 'Manage ranks' ,
'ACP_MANAGE_REASONS' => 'Manage report/denial reasons' ,
'ACP_MANAGE_USERS' => 'Manage users' ,
2012-04-15 20:10:51 +02:00
'ACP_MASS_EMAIL' => 'Mass email' ,
2005-11-28 18:38:49 +00:00
'ACP_MESSAGES' => 'Messages' ,
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_MESSAGE_SETTINGS' => 'Private message settings' ,
'ACP_MODULE_MANAGEMENT' => 'Module management' ,
'ACP_MOD_LOGS' => 'Moderator log' ,
'ACP_MOD_ROLES' => 'Moderator roles' ,
One commit for those fixes having a very tiny impact (mostly only whitespaces or forgotten spans, etc.)
Although i somehow mistakingly got #20445 and #15249 into it. :/
Removing s_watching_img from watch_topic_forum() function (Bug #20445)
Changing order for post review if more than one post affected (Bug #15249)
Language typos/fixes (Bug #20425, #15719, #15429, #14669, #13479)
Style/Template fixes (Bug #20065, #19405, #19205, #15028, #14934, #14821, #14752, #14497, #13707, #14738)
Tiny code fixes (Bug #20165, #20025, #19795, #14804)
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8350 89ea8834-ac86-4346-8a33-228a782c2dd0
2008-01-30 16:01:15 +00:00
2008-03-13 14:08:59 +00:00
'ACP_NO_ITEMS' => 'There are no items yet.' ,
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_ORPHAN_ATTACHMENTS' => 'Orphaned attachments' ,
One commit for those fixes having a very tiny impact (mostly only whitespaces or forgotten spans, etc.)
Although i somehow mistakingly got #20445 and #15249 into it. :/
Removing s_watching_img from watch_topic_forum() function (Bug #20445)
Changing order for post review if more than one post affected (Bug #15249)
Language typos/fixes (Bug #20425, #15719, #15429, #14669, #13479)
Style/Template fixes (Bug #20065, #19405, #19205, #15028, #14934, #14821, #14752, #14497, #13707, #14738)
Tiny code fixes (Bug #20165, #20025, #19795, #14804)
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8350 89ea8834-ac86-4346-8a33-228a782c2dd0
2008-01-30 16:01:15 +00:00
2006-02-22 21:42:26 +00:00
'ACP_PERMISSIONS' => 'Permissions' ,
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_PERMISSION_MASKS' => 'Permission masks' ,
'ACP_PERMISSION_ROLES' => 'Permission roles' ,
'ACP_PERMISSION_TRACE' => 'Permission trace' ,
'ACP_PHP_INFO' => 'PHP information' ,
'ACP_POST_SETTINGS' => 'Post settings' ,
'ACP_PRUNE_FORUMS' => 'Prune forums' ,
'ACP_PRUNE_USERS' => 'Prune users' ,
2005-12-10 23:20:21 +00:00
'ACP_PRUNING' => 'Pruning' ,
One commit for those fixes having a very tiny impact (mostly only whitespaces or forgotten spans, etc.)
Although i somehow mistakingly got #20445 and #15249 into it. :/
Removing s_watching_img from watch_topic_forum() function (Bug #20445)
Changing order for post review if more than one post affected (Bug #15249)
Language typos/fixes (Bug #20425, #15719, #15429, #14669, #13479)
Style/Template fixes (Bug #20065, #19405, #19205, #15028, #14934, #14821, #14752, #14497, #13707, #14738)
Tiny code fixes (Bug #20165, #20025, #19795, #14804)
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8350 89ea8834-ac86-4346-8a33-228a782c2dd0
2008-01-30 16:01:15 +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
'ACP_QUICK_ACCESS' => 'Quick access' ,
One commit for those fixes having a very tiny impact (mostly only whitespaces or forgotten spans, etc.)
Although i somehow mistakingly got #20445 and #15249 into it. :/
Removing s_watching_img from watch_topic_forum() function (Bug #20445)
Changing order for post review if more than one post affected (Bug #15249)
Language typos/fixes (Bug #20425, #15719, #15429, #14669, #13479)
Style/Template fixes (Bug #20065, #19405, #19205, #15028, #14934, #14821, #14752, #14497, #13707, #14738)
Tiny code fixes (Bug #20165, #20025, #19795, #14804)
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8350 89ea8834-ac86-4346-8a33-228a782c2dd0
2008-01-30 16:01:15 +00:00
2005-12-09 18:09:43 +00:00
'ACP_RANKS' => 'Ranks' ,
2006-12-22 22:51:33 +00:00
'ACP_REASONS' => 'Report/denial reasons' ,
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_REGISTER_SETTINGS' => 'User registration settings' ,
2006-03-15 23:20:04 +00:00
2006-03-18 06:39:47 +00:00
'ACP_RESTORE' => 'Restore' ,
2009-06-12 14:41:03 +00:00
'ACP_FEED' => 'Feed management' ,
'ACP_FEED_SETTINGS' => 'Feed settings' ,
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_SEARCH' => 'Search configuration' ,
'ACP_SEARCH_INDEX' => 'Search index' ,
'ACP_SEARCH_SETTINGS' => 'Search settings' ,
2006-03-18 06:39:47 +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
'ACP_SECURITY_SETTINGS' => 'Security settings' ,
2009-08-13 14:51:47 +00:00
'ACP_SEND_STATISTICS' => 'Send statistical information' ,
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_SERVER_CONFIGURATION' => 'Server configuration' ,
'ACP_SERVER_SETTINGS' => 'Server settings' ,
'ACP_SIGNATURE_SETTINGS' => 'Signature settings' ,
2005-11-20 18:58:34 +00:00
'ACP_SMILIES' => 'Smilies' ,
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_STYLE_COMPONENTS' => 'Style components' ,
'ACP_STYLE_MANAGEMENT' => 'Style management' ,
2005-12-28 17:35:20 +00:00
'ACP_STYLES' => 'Styles' ,
2012-03-14 23:45:54 +02:00
'ACP_STYLES_CACHE' => 'Purge Cache' ,
'ACP_STYLES_INSTALL' => 'Install Styles' ,
One commit for those fixes having a very tiny impact (mostly only whitespaces or forgotten spans, etc.)
Although i somehow mistakingly got #20445 and #15249 into it. :/
Removing s_watching_img from watch_topic_forum() function (Bug #20445)
Changing order for post review if more than one post affected (Bug #15249)
Language typos/fixes (Bug #20425, #15719, #15429, #14669, #13479)
Style/Template fixes (Bug #20065, #19405, #19205, #15028, #14934, #14821, #14752, #14497, #13707, #14738)
Tiny code fixes (Bug #20165, #20025, #19795, #14804)
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8350 89ea8834-ac86-4346-8a33-228a782c2dd0
2008-01-30 16:01:15 +00:00
2009-06-12 14:41:03 +00:00
'ACP_SUBMIT_CHANGES' => 'Submit changes' ,
2005-12-28 17:35:20 +00:00
'ACP_TEMPLATES' => 'Templates' ,
'ACP_THEMES' => 'Themes' ,
One commit for those fixes having a very tiny impact (mostly only whitespaces or forgotten spans, etc.)
Although i somehow mistakingly got #20445 and #15249 into it. :/
Removing s_watching_img from watch_topic_forum() function (Bug #20445)
Changing order for post review if more than one post affected (Bug #15249)
Language typos/fixes (Bug #20425, #15719, #15429, #14669, #13479)
Style/Template fixes (Bug #20065, #19405, #19205, #15028, #14934, #14821, #14752, #14497, #13707, #14738)
Tiny code fixes (Bug #20165, #20025, #19795, #14804)
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8350 89ea8834-ac86-4346-8a33-228a782c2dd0
2008-01-30 16:01:15 +00:00
2006-02-03 20:59:39 +00:00
'ACP_UPDATE' => 'Updating' ,
2012-03-24 15:13:04 +00:00
'ACP_USERS_FORUM_PERMISSIONS' => 'User forum permissions' ,
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_USERS_LOGS' => 'User logs' ,
2012-03-24 15:13:04 +00:00
'ACP_USERS_PERMISSIONS' => 'User permissions' ,
2006-02-03 20:59:39 +00:00
'ACP_USER_ATTACH' => 'Attachments' ,
'ACP_USER_AVATAR' => 'Avatar' ,
'ACP_USER_FEEDBACK' => 'Feedback' ,
'ACP_USER_GROUPS' => 'Groups' ,
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_USER_MANAGEMENT' => 'User management' ,
2006-02-03 20:59:39 +00:00
'ACP_USER_OVERVIEW' => 'Overview' ,
'ACP_USER_PERM' => 'Permissions' ,
'ACP_USER_PREFS' => 'Preferences' ,
'ACP_USER_PROFILE' => 'Profile' ,
'ACP_USER_RANK' => 'Rank' ,
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_USER_ROLES' => 'User roles' ,
'ACP_USER_SECURITY' => 'User security' ,
2006-02-03 20:59:39 +00:00
'ACP_USER_SIG' => 'Signature' ,
2009-07-14 20:35:53 +00:00
'ACP_USER_WARNINGS' => 'Warnings' ,
2006-02-03 20:59:39 +00:00
2010-11-07 05:20:06 +00:00
'ACP_VC_SETTINGS' => 'Spambot countermeasures' ,
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_VC_CAPTCHA_DISPLAY' => 'CAPTCHA image preview' ,
'ACP_VERSION_CHECK' => 'Check for updates' ,
2006-10-23 15:13:45 +00:00
'ACP_VIEW_ADMIN_PERMISSIONS' => 'View administrative permissions' ,
'ACP_VIEW_FORUM_MOD_PERMISSIONS' => 'View forum moderation permissions' ,
'ACP_VIEW_FORUM_PERMISSIONS' => 'View forum-based permissions' ,
2006-12-18 17:29:39 +00:00
'ACP_VIEW_GLOBAL_MOD_PERMISSIONS' => 'View global moderation permissions' ,
2006-10-23 15:13:45 +00:00
'ACP_VIEW_USER_PERMISSIONS' => 'View user-based permissions' ,
One commit for those fixes having a very tiny impact (mostly only whitespaces or forgotten spans, etc.)
Although i somehow mistakingly got #20445 and #15249 into it. :/
Removing s_watching_img from watch_topic_forum() function (Bug #20445)
Changing order for post review if more than one post affected (Bug #15249)
Language typos/fixes (Bug #20425, #15719, #15429, #14669, #13479)
Style/Template fixes (Bug #20065, #19405, #19205, #15028, #14934, #14821, #14752, #14497, #13707, #14738)
Tiny code fixes (Bug #20165, #20025, #19795, #14804)
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8350 89ea8834-ac86-4346-8a33-228a782c2dd0
2008-01-30 16:01:15 +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
'ACP_WORDS' => 'Word censoring' ,
2005-11-17 18:06:11 +00:00
'ACTION' => 'Action' ,
2006-07-09 16:23:57 +00:00
'ACTIONS' => 'Actions' ,
2005-11-17 18:06:11 +00:00
'ACTIVATE' => 'Activate' ,
2005-11-20 18:58:34 +00:00
'ADD' => 'Add' ,
2005-11-17 18:06:11 +00:00
'ADMIN' => 'Administration' ,
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
'ADMIN_INDEX' => 'Admin index' ,
2005-11-17 18:06:11 +00:00
'ADMIN_PANEL' => 'Administration Control Panel' ,
2009-03-02 11:56:29 +00:00
'ADM_LOGOUT' => 'ACP Logout' ,
2008-06-02 17:10:21 +00:00
'ADM_LOGGED_OUT' => 'Successfully logged out from Administration Control Panel' ,
2005-11-17 18:06:11 +00:00
'BACK' => 'Back' ,
2005-12-04 20:25:51 +00:00
'COLOUR_SWATCH' => 'Web-safe colour swatch' ,
2006-10-02 15:11:40 +00:00
'CONFIG_UPDATED' => 'Configuration updated successfully.' ,
2005-11-17 18:06:11 +00:00
2005-12-28 17:35:20 +00:00
'DEACTIVATE' => 'Deactivate' ,
2007-03-08 15:49:13 +00:00
'DIRECTORY_DOES_NOT_EXIST' => 'The entered path “%s” does not exist.' ,
'DIRECTORY_NOT_DIR' => 'The entered path “%s” is not a directory.' ,
2007-05-03 14:29:22 +00:00
'DIRECTORY_NOT_WRITABLE' => 'The entered path “%s” is not writable.' ,
2005-12-28 17:35:20 +00:00
'DISABLE' => 'Disable' ,
'DOWNLOAD' => 'Download' ,
'DOWNLOAD_AS' => 'Download as' ,
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_STORE' => 'Download or store file' ,
'DOWNLOAD_STORE_EXPLAIN' => 'You may directly download the file or save it in your <samp>store/</samp> folder.' ,
2011-02-17 23:31:05 +07:00
'DOWNLOADS' => 'Downloads' ,
2005-11-17 18:06:11 +00:00
'EDIT' => 'Edit' ,
'ENABLE' => 'Enable' ,
2005-12-28 17:35:20 +00:00
'EXPORT_DOWNLOAD' => 'Download' ,
'EXPORT_STORE' => 'Store' ,
2005-11-17 18:06:11 +00:00
2011-04-11 19:59:50 +08:00
'FILES_GONE' => 'Some of the attachments you selected for deletion do not exist. They may have been already deleted. Attachments that did exist were deleted.' ,
2011-04-24 23:33:51 +08:00
'FILES_STATS_WRONG' => 'Your files statistics are probably inaccurate and need to be resynchronised. Actual values: number of attachments = %1$d, total size of attachments = %2$s.' ,
2011-04-11 19:59:50 +08: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
'GENERAL_OPTIONS' => 'General options' ,
'GENERAL_SETTINGS' => 'General settings' ,
'GLOBAL_MASK' => 'Global permission mask' ,
2005-11-17 18:06:11 +00:00
2005-11-30 17:48:06 +00:00
'INSTALL' => 'Install' ,
2005-11-17 18:06:11 +00:00
'IP' => 'User IP' ,
'IP_HOSTNAME' => 'IP addresses or hostnames' ,
'LOGGED_IN_AS' => 'You are logged in as:' ,
'LOGIN_ADMIN' => 'To administer the board you must be an authenticated user.' ,
'LOGIN_ADMIN_CONFIRM' => 'To administer the board you must re-authenticate yourself.' ,
2007-05-10 15:31:35 +00:00
'LOGIN_ADMIN_SUCCESS' => 'You have successfully authenticated and will now be redirected to the Administration Control Panel.' ,
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
'LOOK_UP_FORUM' => 'Select a forum' ,
2007-05-10 15:31:35 +00:00
'LOOK_UP_FORUMS_EXPLAIN' => 'You are able to select more than one forum.' ,
2005-11-17 18:06:11 +00:00
2005-12-04 20:25:51 +00:00
'MANAGE' => 'Manage' ,
2007-03-11 12:59:39 +00:00
'MENU_TOGGLE' => 'Hide or display the side menu' ,
2009-07-29 09:26:50 +00:00
'MORE' => 'More' , // Not used at the moment
2009-08-01 11:07:48 +00:00
'MORE_INFORMATION' => 'More information »' ,
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
'MOVE_DOWN' => 'Move down' ,
'MOVE_UP' => 'Move up' ,
2005-11-17 18:06:11 +00:00
2005-11-20 18:58:34 +00:00
'NOTIFY' => 'Notification' ,
2010-12-01 14:14:46 -05:00
'NO_ADMIN' => 'You are not authorised to administer this board.' ,
2012-04-15 20:10:51 +02:00
'NO_EMAILS_DEFINED' => 'No valid email addresses found.' ,
2011-04-11 19:59:50 +08:00
'NO_FILES_TO_DELETE' => 'Attachments you selected for deletion do not exist.' ,
One commit for those fixes having a very tiny impact (mostly only whitespaces or forgotten spans, etc.)
Although i somehow mistakingly got #20445 and #15249 into it. :/
Removing s_watching_img from watch_topic_forum() function (Bug #20445)
Changing order for post review if more than one post affected (Bug #15249)
Language typos/fixes (Bug #20425, #15719, #15429, #14669, #13479)
Style/Template fixes (Bug #20065, #19405, #19205, #15028, #14934, #14821, #14752, #14497, #13707, #14738)
Tiny code fixes (Bug #20165, #20025, #19795, #14804)
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8350 89ea8834-ac86-4346-8a33-228a782c2dd0
2008-01-30 16:01:15 +00:00
'NO_PASSWORD_SUPPLIED' => 'You need to enter your password to access the Administration Control Panel.' ,
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
'OFF' => 'Off' ,
'ON' => 'On' ,
2005-11-17 18:06:11 +00:00
2006-09-01 13:16:22 +00:00
'PARSE_BBCODE' => 'Parse BBCode' ,
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
'PARSE_SMILIES' => 'Parse smilies' ,
'PARSE_URLS' => 'Parse links' ,
2007-01-21 18:33:45 +00:00
'PERMISSIONS_TRANSFERRED' => 'Permissions transferred' ,
2007-05-16 14:45:13 +00:00
'PERMISSIONS_TRANSFERRED_EXPLAIN' => 'You currently have the permissions from %1$s. You are able to browse the board with this user’ s permissions, but not access the administration control panel since admin permissions were not transferred. You can <a href="%2$s"><strong>revert to your permission set</strong></a> at any time.' ,
2006-09-01 13:16:22 +00:00
'PROCEED_TO_ACP' => '%sProceed to the ACP%s' ,
2006-10-02 15:11:40 +00:00
2006-09-01 13:16:22 +00:00
'REMIND' => 'Remind' ,
2007-01-21 18:33:45 +00:00
'RESYNC' => 'Resynchronise' ,
2011-04-24 23:33:51 +08:00
'RESYNC_FILES_STATS' => 'Resynchronise files statistics' ,
'RESYNC_FILES_STATS_EXPLAIN' => 'Recalculates the total number and size of files attached to posts and private messages.' ,
2006-09-28 17:43:13 +00:00
'RETURN_TO' => 'Return to…' ,
2005-11-17 18:06:11 +00:00
2006-12-22 22:51:33 +00:00
'SELECT_ANONYMOUS' => 'Select anonymous user' ,
2005-12-04 20:25:51 +00:00
'SELECT_OPTION' => 'Select option' ,
2009-09-10 15:32:16 +00:00
'SETTING_TOO_LOW' => 'The provided value for the setting “%1$s” is too low. The minimum acceptable value is %2$d.' ,
2009-09-10 15:27:10 +00:00
'SETTING_TOO_BIG' => 'The provided value for the setting “%1$s” is too high. The maximum acceptable value is %2$d.' ,
'SETTING_TOO_LONG' => 'The provided value for the setting “%1$s” is too long. The maximum acceptable length is %2$d.' ,
2009-09-10 15:32:16 +00:00
'SETTING_TOO_SHORT' => 'The provided value for the setting “%1$s” is too short. The minimum acceptable length is %2$d.' ,
2008-02-27 15:09:04 +00:00
2009-07-20 00:57:18 +00:00
'SHOW_ALL_OPERATIONS' => 'Show all operations' ,
2011-02-17 23:31:05 +07:00
'TOTAL_SIZE' => 'Total size' ,
2005-11-20 18:58:34 +00:00
'UCP' => 'User Control Panel' ,
2007-05-10 15:31:35 +00:00
'USERNAMES_EXPLAIN' => 'Place each username on a separate line.' ,
2005-11-17 18:06:11 +00:00
'USER_CONTROL_PANEL' => 'User Control Panel' ,
2005-12-10 23:20:21 +00:00
'WARNING' => 'Warning' ,
2005-12-12 23:17:30 +00:00
));
2005-11-17 18:06:11 +00:00
// PHP info
2005-12-12 23:17:30 +00:00
$lang = array_merge ( $lang , array (
2007-04-06 14:03:20 +00:00
'ACP_PHP_INFO_EXPLAIN' => 'This page lists information on the version of PHP installed on this server. It includes details of loaded modules, available variables and default settings. This information may be useful when diagnosing problems. Please be aware that some hosting companies will limit what information is displayed here for security reasons. You are advised to not give out any details on this page except when asked by <a href="http://www.phpbb.com/about/team/">official team members</a> on the support forums.' ,
2006-12-06 15:47:50 +00:00
2007-08-13 12:14:07 +00:00
'NO_PHPINFO_AVAILABLE' => 'Information about your PHP configuration is unable to be determined. Phpinfo() has been disabled for security reasons.' ,
2005-12-12 23:17:30 +00:00
));
2005-11-17 18:06:11 +00:00
2005-11-28 18:38:49 +00:00
// Logs
2005-12-12 23:17:30 +00:00
$lang = array_merge ( $lang , array (
2005-11-28 18:38:49 +00:00
'ACP_ADMIN_LOGS_EXPLAIN' => 'This lists all the actions carried out by board administrators. You can sort by username, date, IP or action. If you have appropriate permissions you can also clear individual operations or the log as a whole.' ,
2012-04-15 20:10:51 +02:00
'ACP_CRITICAL_LOGS_EXPLAIN' => 'This lists the actions carried out by the board itself. This log provides you with information you are able to use for solving specific problems, for example non-delivery of emails. You can sort by username, date, IP or action. If you have appropriate permissions you can also clear individual operations or the log as a whole.' ,
2007-04-29 12:30:22 +00:00
'ACP_MOD_LOGS_EXPLAIN' => 'This lists all actions done on forums, topics and posts as well as actions carried out on users by moderators, including banning. You can sort by username, date, IP or action. If you have appropriate permissions you can also clear individual operations or the log as a whole.' ,
2007-05-14 08:30:13 +00:00
'ACP_USERS_LOGS_EXPLAIN' => 'This lists all actions carried out by users or on users (reports, warnings and user notes).' ,
2005-11-28 18:38:49 +00:00
'ALL_ENTRIES' => 'All entries' ,
'DISPLAY_LOG' => 'Display entries from previous' ,
2007-05-10 15:31:35 +00:00
'NO_ENTRIES' => 'No log entries for this period.' ,
2005-11-28 18:38:49 +00:00
'SORT_IP' => 'IP address' ,
'SORT_DATE' => 'Date' ,
'SORT_ACTION' => 'Log action' ,
2005-12-12 23:17:30 +00:00
));
2005-11-28 18:38:49 +00:00
2005-11-17 18:06:11 +00:00
// Index page
2005-12-12 23:17:30 +00:00
$lang = array_merge ( $lang , array (
2007-05-16 14:45:13 +00:00
'ADMIN_INTRO' => 'Thank you for choosing phpBB as your board solution. This screen will give you a quick overview of all the various statistics of your board. The links on the left hand side of this screen allow you to control every aspect of your board experience. Each page will have instructions on how to use the tools.' ,
2005-11-17 18:06:11 +00:00
'ADMIN_LOG' => 'Logged administrator actions' ,
2006-07-09 16:23:57 +00:00
'ADMIN_LOG_INDEX_EXPLAIN' => 'This gives an overview of the last five actions carried out by board administrators. A full copy of the log can be viewed from the appropriate menu item or following the link below.' ,
2005-11-17 18:06:11 +00:00
'AVATAR_DIR_SIZE' => 'Avatar directory size' ,
'BOARD_STARTED' => 'Board started' ,
2007-07-24 16:16:39 +00:00
'BOARD_VERSION' => 'Board version' ,
2005-11-17 18:06:11 +00:00
2006-07-09 16:23:57 +00:00
'DATABASE_SERVER_INFO' => 'Database server' ,
'DATABASE_SIZE' => 'Database size' ,
2005-11-17 18:06:11 +00:00
2011-10-18 01:54:17 +08:00
// Enviroment configuration checks, mbstring related
2011-11-15 22:33:11 +08:00
'ERROR_MBSTRING_FUNC_OVERLOAD' => 'Function overloading is improperly configured' ,
'ERROR_MBSTRING_FUNC_OVERLOAD_EXPLAIN' => '<var>mbstring.func_overload</var> must be set to either 0 or 4. You can check the current value on the <samp>PHP information</samp> page.' ,
'ERROR_MBSTRING_ENCODING_TRANSLATION' => 'Transparent character encoding is improperly configured' ,
'ERROR_MBSTRING_ENCODING_TRANSLATION_EXPLAIN' => '<var>mbstring.encoding_translation</var> must be set to 0. You can check the current value on the <samp>PHP information</samp> page.' ,
'ERROR_MBSTRING_HTTP_INPUT' => 'HTTP input character conversion is improperly configured' ,
'ERROR_MBSTRING_HTTP_INPUT_EXPLAIN' => '<var>mbstring.http_input</var> must be set to <samp>pass</samp>. You can check the current value on the <samp>PHP information</samp> page.' ,
'ERROR_MBSTRING_HTTP_OUTPUT' => 'HTTP output character conversion is improperly configured' ,
'ERROR_MBSTRING_HTTP_OUTPUT_EXPLAIN' => '<var>mbstring.http_output</var> must be set to <samp>pass</samp>. You can check the current value on the <samp>PHP information</samp> page.' ,
2011-10-18 01:54:17 +08:00
2005-11-17 18:06:11 +00:00
'FILES_PER_DAY' => 'Attachments per day' ,
2007-05-14 08:30:13 +00:00
'FORUM_STATS' => 'Board statistics' ,
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
'GZIP_COMPRESSION' => 'GZip compression' ,
2005-11-17 18:06:11 +00:00
'NOT_AVAILABLE' => 'Not available' ,
2006-09-13 16:08:36 +00:00
'NUMBER_FILES' => 'Number of attachments' ,
2005-11-17 18:06:11 +00:00
'NUMBER_POSTS' => 'Number of posts' ,
'NUMBER_TOPICS' => 'Number of topics' ,
'NUMBER_USERS' => 'Number of users' ,
2006-09-13 16:08:36 +00:00
'NUMBER_ORPHAN' => 'Orphan attachments' ,
2005-11-17 18:06:11 +00:00
2010-01-26 15:26:07 +00:00
'PHP_VERSION_OLD' => 'The version of PHP on this server will no longer be supported by future versions of phpBB. %sDetails%s' ,
2005-11-17 18:06:11 +00:00
'POSTS_PER_DAY' => 'Posts per day' ,
2007-05-16 19:20:50 +00:00
'PURGE_CACHE' => 'Purge the cache' ,
'PURGE_CACHE_CONFIRM' => 'Are you sure you wish to purge the cache?' ,
'PURGE_CACHE_EXPLAIN' => 'Purge all cache related items, this includes any cached template files or queries.' ,
2011-08-24 16:06:06 +01:00
'PURGE_CACHE_SUCCESS' => 'Cache successfully purged.' ,
2007-05-16 19:20:50 +00:00
2009-07-06 13:10:05 +00:00
'PURGE_SESSIONS' => 'Purge all sessions' ,
'PURGE_SESSIONS_CONFIRM' => 'Are you sure you wish to purge all sessions? This will log out all users.' ,
'PURGE_SESSIONS_EXPLAIN' => 'Purge all sessions. This will log out all users by truncating the session table.' ,
2011-08-24 16:06:06 +01:00
'PURGE_SESSIONS_SUCCESS' => 'Sessions successfully purged.' ,
2009-07-06 13:10:05 +00:00
2007-02-08 22:11:14 +00:00
'RESET_DATE' => 'Reset board’ s start date' ,
'RESET_DATE_CONFIRM' => 'Are you sure you wish to reset the board’ s start date?' ,
2011-08-24 16:06:06 +01:00
'RESET_DATE_SUCCESS' => 'Board’ s start date reset' ,
2007-02-08 22:11:14 +00:00
'RESET_ONLINE' => 'Reset most users ever online' ,
'RESET_ONLINE_CONFIRM' => 'Are you sure you wish to reset the most users ever online counter?' ,
2011-08-24 16:06:06 +01:00
'RESET_ONLINE_SUCCESS' => 'Most users ever online reset' ,
2011-04-24 23:33:51 +08:00
'RESYNC_FILES_STATS_CONFIRM' => 'Are you sure you wish to resynchronise files statistics?' ,
2007-02-08 22:11:14 +00:00
'RESYNC_POSTCOUNTS' => 'Resynchronise post counts' ,
'RESYNC_POSTCOUNTS_EXPLAIN' => 'Only existing posts will be taken into consideration. Pruned posts will not be counted.' ,
'RESYNC_POSTCOUNTS_CONFIRM' => 'Are you sure you wish to resynchronise post counts?' ,
2011-08-24 16:06:06 +01:00
'RESYNC_POSTCOUNTS_SUCCESS' => 'Resynchronised post counts' ,
2007-02-08 22:11:14 +00:00
'RESYNC_POST_MARKING' => 'Resynchronise dotted topics' ,
'RESYNC_POST_MARKING_CONFIRM' => 'Are you sure you wish to resynchronise dotted topics?' ,
2007-02-24 12:31:21 +00:00
'RESYNC_POST_MARKING_EXPLAIN' => 'First unmarks all topics and then correctly marks topics that have seen any activity during the past six months.' ,
2011-08-24 16:06:06 +01:00
'RESYNC_POST_MARKING_SUCCESS' => 'Resynchronised dotted topics' ,
2007-02-08 22:11:14 +00:00
'RESYNC_STATS' => 'Resynchronise statistics' ,
'RESYNC_STATS_CONFIRM' => 'Are you sure you wish to resynchronise statistics?' ,
'RESYNC_STATS_EXPLAIN' => 'Recalculates the total number of posts, topics, users and files.' ,
2011-08-24 16:06:06 +01:00
'RESYNC_STATS_SUCCESS' => 'Resynchronised statistics' ,
2007-02-08 22:11:14 +00:00
'RUN' => 'Run now' ,
'STATISTIC' => 'Statistic' ,
'STATISTIC_RESYNC_OPTIONS' => 'Resynchronise or reset statistics' ,
2005-11-17 18:06:11 +00:00
2012-06-12 19:54:26 +02:00
'TIMEZONE_INVALID' => 'The timezone you selected is invalid.' ,
'TIMEZONE_SELECTED' => '(currently selected)' ,
2005-11-17 18:06:11 +00:00
'TOPICS_PER_DAY' => 'Topics per day' ,
2006-09-13 16:08:36 +00:00
'UPLOAD_DIR_SIZE' => 'Size of posted attachments' ,
2005-11-17 18:06:11 +00:00
'USERS_PER_DAY' => 'Users per day' ,
2009-07-28 13:58:01 +00:00
'VALUE' => 'Value' ,
2009-07-29 09:26:50 +00:00
'VERSIONCHECK_FAIL' => 'Failed to obtain latest version information.' ,
2009-07-28 13:58:01 +00:00
'VERSIONCHECK_FORCE_UPDATE' => 'Re-Check version' ,
'VIEW_ADMIN_LOG' => 'View administrator log' ,
'VIEW_INACTIVE_USERS' => 'View inactive users' ,
2005-11-17 18:06:11 +00:00
'WELCOME_PHPBB' => 'Welcome to phpBB' ,
2008-07-28 14:36:27 +00:00
'WRITABLE_CONFIG' => 'Your config file (config.php) is currently world-writable. We strongly encourage you to change the permissions to 640 or at least to 644 (for example: <a href="http://en.wikipedia.org/wiki/Chmod" rel="external">chmod</a> 640 config.php).' ,
2005-12-12 23:17:30 +00:00
));
2005-11-17 18:06:11 +00:00
2006-09-23 12:27:51 +00:00
// Inactive Users
$lang = array_merge ( $lang , array (
2006-10-08 11:25:20 +00:00
'INACTIVE_DATE' => 'Inactive date' ,
'INACTIVE_REASON' => 'Reason' ,
'INACTIVE_REASON_MANUAL' => 'Account deactivated by administrator' ,
'INACTIVE_REASON_PROFILE' => 'Profile details changed' ,
'INACTIVE_REASON_REGISTER' => 'Newly registered account' ,
'INACTIVE_REASON_REMIND' => 'Forced user account reactivation' ,
'INACTIVE_REASON_UNKNOWN' => 'Unknown' ,
2006-12-22 22:51:33 +00:00
'INACTIVE_USERS' => 'Inactive users' ,
2012-04-15 20:10:51 +02:00
'INACTIVE_USERS_EXPLAIN' => 'This is a list of users who have registered but whose accounts are inactive. You can activate, delete or remind (by sending an email) these users if you wish.' ,
'INACTIVE_USERS_EXPLAIN_INDEX' => 'This is a list of the last 10 registered users who have inactive accounts. Accounts are inactive either because account activation was enabled in user registration settings and these users’ accounts have not yet been activated, or because these accounts have been deactivated. A full list is available by following the link below from where you can activate, delete or remind (by sending an email) these users if you wish.' ,
2006-09-23 12:27:51 +00:00
'NO_INACTIVE_USERS' => 'No inactive users' ,
'SORT_INACTIVE' => 'Inactive date' ,
'SORT_LAST_VISIT' => 'Last visit' ,
'SORT_REASON' => 'Reason' ,
'SORT_REG_DATE' => 'Registration date' ,
2009-07-24 11:13:32 +00:00
'SORT_LAST_REMINDER' => 'Last reminded' ,
'SORT_REMINDER' => 'Reminder sent' ,
2006-11-21 18:15:53 +00:00
'USER_IS_INACTIVE' => 'User is inactive' ,
2006-09-23 12:27:51 +00:00
));
2006-10-02 15:11:40 +00:00
2009-06-27 20:56:49 +00:00
// Send statistics page
$lang = array_merge ( $lang , array (
2009-08-13 14:51:47 +00:00
'EXPLAIN_SEND_STATISTICS' => 'Please send information about your server and board configurations to phpBB for statistical analysis. All information that could identify you or your website has been removed - the data is entirely <strong>anonymous</strong>. We base decisions about future phpBB versions on this information. The statistics are made available publically. We also share this data with the PHP project, the programming language phpBB is made with.' ,
'EXPLAIN_SHOW_STATISTICS' => 'Using the button below you can preview all variables that will be transmitted.' ,
'DONT_SEND_STATISTICS' => 'Return to the ACP if you do not wish to send statistical information to phpBB.' ,
'GO_ACP_MAIN' => 'Go to the ACP start page' ,
2009-06-27 20:56:49 +00:00
'HIDE_STATISTICS' => 'Hide details' ,
'SEND_STATISTICS' => 'Send statistical information' ,
'SHOW_STATISTICS' => 'Show details' ,
2009-07-21 20:59:11 +00:00
'THANKS_SEND_STATISTICS' => 'Thank you for submitting your information.' ,
2009-06-27 20:56:49 +00:00
));
2006-07-15 16:21:23 +00:00
// Log Entries
2005-12-12 23:17:30 +00:00
$lang = array_merge ( $lang , array (
2007-02-08 22:11:14 +00:00
'LOG_ACL_ADD_USER_GLOBAL_U_' => '<strong>Added or edited users’ user permissions</strong><br />» %s' ,
'LOG_ACL_ADD_GROUP_GLOBAL_U_' => '<strong>Added or edited groups’ user permissions</strong><br />» %s' ,
'LOG_ACL_ADD_USER_GLOBAL_M_' => '<strong>Added or edited users’ global moderator permissions</strong><br />» %s' ,
'LOG_ACL_ADD_GROUP_GLOBAL_M_' => '<strong>Added or edited groups’ global moderator permissions</strong><br />» %s' ,
'LOG_ACL_ADD_USER_GLOBAL_A_' => '<strong>Added or edited users’ administrator permissions</strong><br />» %s' ,
'LOG_ACL_ADD_GROUP_GLOBAL_A_' => '<strong>Added or edited groups’ administrator permissions</strong><br />» %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
'LOG_ACL_ADD_ADMIN_GLOBAL_A_' => '<strong>Added or edited Administrators</strong><br />» %s' ,
'LOG_ACL_ADD_MOD_GLOBAL_M_' => '<strong>Added or edited Global Moderators</strong><br />» %s' ,
2007-02-08 22:11:14 +00:00
'LOG_ACL_ADD_USER_LOCAL_F_' => '<strong>Added or edited users’ forum access</strong> from %1$s<br />» %2$s' ,
'LOG_ACL_ADD_USER_LOCAL_M_' => '<strong>Added or edited users’ forum moderator access</strong> from %1$s<br />» %2$s' ,
'LOG_ACL_ADD_GROUP_LOCAL_F_' => '<strong>Added or edited groups’ forum access</strong> from %1$s<br />» %2$s' ,
'LOG_ACL_ADD_GROUP_LOCAL_M_' => '<strong>Added or edited groups’ forum moderator access</strong> from %1$s<br />» %2$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
'LOG_ACL_ADD_MOD_LOCAL_M_' => '<strong>Added or edited Moderators</strong> from %1$s<br />» %2$s' ,
2006-12-22 22:51:33 +00:00
'LOG_ACL_ADD_FORUM_LOCAL_F_' => '<strong>Added or edited forum permissions</strong> from %1$s<br />» %2$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
'LOG_ACL_DEL_ADMIN_GLOBAL_A_' => '<strong>Removed Administrators</strong><br />» %s' ,
'LOG_ACL_DEL_MOD_GLOBAL_M_' => '<strong>Removed Global Moderators</strong><br />» %s' ,
'LOG_ACL_DEL_MOD_LOCAL_M_' => '<strong>Removed Moderators</strong> from %1$s<br />» %2$s' ,
2006-12-22 22:51:33 +00:00
'LOG_ACL_DEL_FORUM_LOCAL_F_' => '<strong>Removed User/Group forum permissions</strong> from %1$s<br />» %2$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
2007-01-21 18:33:45 +00:00
'LOG_ACL_TRANSFER_PERMISSIONS' => '<strong>Permissions transferred from</strong><br />» %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
'LOG_ACL_RESTORE_PERMISSIONS' => '<strong>Own permissions restored after using permissions from</strong><br />» %s' ,
One commit for those fixes having a very tiny impact (mostly only whitespaces or forgotten spans, etc.)
Although i somehow mistakingly got #20445 and #15249 into it. :/
Removing s_watching_img from watch_topic_forum() function (Bug #20445)
Changing order for post review if more than one post affected (Bug #15249)
Language typos/fixes (Bug #20425, #15719, #15429, #14669, #13479)
Style/Template fixes (Bug #20065, #19405, #19205, #15028, #14934, #14821, #14752, #14497, #13707, #14738)
Tiny code fixes (Bug #20165, #20025, #19795, #14804)
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8350 89ea8834-ac86-4346-8a33-228a782c2dd0
2008-01-30 16:01:15 +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
'LOG_ADMIN_AUTH_FAIL' => '<strong>Failed administration login attempt</strong>' ,
'LOG_ADMIN_AUTH_SUCCESS' => '<strong>Successful administration login</strong>' ,
2007-07-16 14:02:06 +00:00
'LOG_ATTACHMENTS_DELETED' => '<strong>Removed user attachments</strong><br />» %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
'LOG_ATTACH_EXT_ADD' => '<strong>Added or edited attachment extension</strong><br />» %s' ,
'LOG_ATTACH_EXT_DEL' => '<strong>Removed attachment extension</strong><br />» %s' ,
'LOG_ATTACH_EXT_UPDATE' => '<strong>Updated attachment extension</strong><br />» %s' ,
'LOG_ATTACH_EXTGROUP_ADD' => '<strong>Added extension group</strong><br />» %s' ,
'LOG_ATTACH_EXTGROUP_EDIT' => '<strong>Edited extension group</strong><br />» %s' ,
'LOG_ATTACH_EXTGROUP_DEL' => '<strong>Removed extension group</strong><br />» %s' ,
'LOG_ATTACH_FILEUPLOAD' => '<strong>Orphan File uploaded to Post</strong><br />» ID %1$d - %2$s' ,
'LOG_ATTACH_ORPHAN_DEL' => '<strong>Orphan Files deleted</strong><br />» %s' ,
#10005, #10003, #10001, #9999, #9945, #9965, #9909, #9906, #9877, #9861, #9831, #9830, #9815, #9665, #9624
prosilver adjustments for important announcements in ucp - #9995
MCP fixes for user notes/warnings - #9981
Preserving imageset values on save/edit
find a member link for Mass PM's - #9925
syndicate window.onload events where necessary - #9878
Duplicate topics in forums with announcements - #9840
Email template for forced re-activation - #9808
Topic pagination adjustment - #9763
Changed compose message layout in UCP - #9706, #9702
Fixed inline attachment font size (hopefully)
git-svn-id: file:///svn/phpbb/trunk@7384 89ea8834-ac86-4346-8a33-228a782c2dd0
2007-04-22 15:27:40 +00:00
'LOG_BAN_EXCLUDE_USER' => '<strong>Excluded user from ban</strong> for reason “<em>%1$s</em>”<br />» %2$s' ,
'LOG_BAN_EXCLUDE_IP' => '<strong>Excluded IP from ban</strong> for reason “<em>%1$s</em>”<br />» %2$s' ,
2012-04-15 20:10:51 +02:00
'LOG_BAN_EXCLUDE_EMAIL' => '<strong>Excluded email from ban</strong> for reason “<em>%1$s</em>”<br />» %2$s' ,
#10005, #10003, #10001, #9999, #9945, #9965, #9909, #9906, #9877, #9861, #9831, #9830, #9815, #9665, #9624
prosilver adjustments for important announcements in ucp - #9995
MCP fixes for user notes/warnings - #9981
Preserving imageset values on save/edit
find a member link for Mass PM's - #9925
syndicate window.onload events where necessary - #9878
Duplicate topics in forums with announcements - #9840
Email template for forced re-activation - #9808
Topic pagination adjustment - #9763
Changed compose message layout in UCP - #9706, #9702
Fixed inline attachment font size (hopefully)
git-svn-id: file:///svn/phpbb/trunk@7384 89ea8834-ac86-4346-8a33-228a782c2dd0
2007-04-22 15:27:40 +00:00
'LOG_BAN_USER' => '<strong>Banned user</strong> for reason “<em>%1$s</em>”<br />» %2$s' ,
2007-03-08 15:49:13 +00:00
'LOG_BAN_IP' => '<strong>Banned IP</strong> for reason “<em>%1$s</em>”<br />» %2$s' ,
2012-04-15 20:10:51 +02:00
'LOG_BAN_EMAIL' => '<strong>Banned email</strong> for reason “<em>%1$s</em>”<br />» %2$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
'LOG_UNBAN_USER' => '<strong>Unbanned user</strong><br />» %s' ,
2006-12-22 22:51:33 +00:00
'LOG_UNBAN_IP' => '<strong>Unbanned IP</strong><br />» %s' ,
2012-04-15 20:10:51 +02:00
'LOG_UNBAN_EMAIL' => '<strong>Unbanned email</strong><br />» %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
'LOG_BBCODE_ADD' => '<strong>Added new BBCode</strong><br />» %s' ,
'LOG_BBCODE_EDIT' => '<strong>Edited BBCode</strong><br />» %s' ,
'LOG_BBCODE_DELETE' => '<strong>Deleted BBCode</strong><br />» %s' ,
'LOG_BOT_ADDED' => '<strong>New bot added</strong><br />» %s' ,
'LOG_BOT_DELETE' => '<strong>Deleted bot</strong><br />» %s' ,
'LOG_BOT_UPDATED' => '<strong>Existing bot updated</strong><br />» %s' ,
'LOG_CLEAR_ADMIN' => '<strong>Cleared admin log</strong>' ,
'LOG_CLEAR_CRITICAL' => '<strong>Cleared error log</strong>' ,
'LOG_CLEAR_MOD' => '<strong>Cleared moderator log</strong>' ,
'LOG_CLEAR_USER' => '<strong>Cleared user log</strong><br />» %s' ,
'LOG_CLEAR_USERS' => '<strong>Cleared user logs</strong>' ,
'LOG_CONFIG_ATTACH' => '<strong>Altered attachment settings</strong>' ,
'LOG_CONFIG_AUTH' => '<strong>Altered authentication settings</strong>' ,
'LOG_CONFIG_AVATAR' => '<strong>Altered avatar settings</strong>' ,
'LOG_CONFIG_COOKIE' => '<strong>Altered cookie settings</strong>' ,
2012-04-15 20:10:51 +02:00
'LOG_CONFIG_EMAIL' => '<strong>Altered email settings</strong>' ,
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
'LOG_CONFIG_FEATURES' => '<strong>Altered board features</strong>' ,
'LOG_CONFIG_LOAD' => '<strong>Altered load settings</strong>' ,
'LOG_CONFIG_MESSAGE' => '<strong>Altered private message settings</strong>' ,
'LOG_CONFIG_POST' => '<strong>Altered post settings</strong>' ,
'LOG_CONFIG_REGISTRATION' => '<strong>Altered user registration settings</strong>' ,
2009-06-12 14:41:03 +00:00
'LOG_CONFIG_FEED' => '<strong>Altered syndication feeds settings</strong>' ,
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
'LOG_CONFIG_SEARCH' => '<strong>Altered search settings</strong>' ,
'LOG_CONFIG_SECURITY' => '<strong>Altered security settings</strong>' ,
'LOG_CONFIG_SERVER' => '<strong>Altered server settings</strong>' ,
'LOG_CONFIG_SETTINGS' => '<strong>Altered board settings</strong>' ,
'LOG_CONFIG_SIGNATURE' => '<strong>Altered signature settings</strong>' ,
2010-11-07 13:17:27 +01:00
'LOG_CONFIG_VISUAL' => '<strong>Altered anti-spambot settings</strong>' ,
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
'LOG_APPROVE_TOPIC' => '<strong>Approved topic</strong><br />» %s' ,
'LOG_BUMP_TOPIC' => '<strong>User bumped topic</strong><br />» %s' ,
2009-06-26 10:15:42 +00:00
'LOG_DELETE_POST' => '<strong>Deleted post “%1$s” written by</strong><br />» %2$s' ,
2008-09-26 18:29:20 +00:00
'LOG_DELETE_SHADOW_TOPIC' => '<strong>Deleted shadow topic</strong><br />» %s' ,
2009-06-26 10:15:42 +00:00
'LOG_DELETE_TOPIC' => '<strong>Deleted topic “%1$s” written by</strong><br />» %2$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
'LOG_FORK' => '<strong>Copied topic</strong><br />» from %s' ,
'LOG_LOCK' => '<strong>Locked topic</strong><br />» %s' ,
'LOG_LOCK_POST' => '<strong>Locked post</strong><br />» %s' ,
2006-12-21 10:37:50 +00:00
'LOG_MERGE' => '<strong>Merged posts</strong> into topic<br />» %s' ,
2008-09-23 12:01:26 +00:00
'LOG_MOVE' => '<strong>Moved topic</strong><br />» from %1$s to %2$s' ,
2009-07-21 20:59:11 +00:00
'LOG_PM_REPORT_CLOSED' => '<strong>Closed PM report</strong><br />» %s' ,
'LOG_PM_REPORT_DELETED' => '<strong>Deleted PM report</strong><br />» %s' ,
2007-05-06 23:07:36 +00:00
'LOG_POST_APPROVED' => '<strong>Approved post</strong><br />» %s' ,
2007-05-15 15:52:37 +00:00
'LOG_POST_DISAPPROVED' => '<strong>Disapproved post “%1$s” with the following reason</strong><br />» %2$s' ,
'LOG_POST_EDITED' => '<strong>Edited post “%1$s” written by</strong><br />» %2$s' ,
2012-10-27 17:12:34 +02:00
'LOG_POST_RESTORED' => '<strong>Restored post</strong><br />» %s' ,
2007-05-06 23:07:36 +00:00
'LOG_REPORT_CLOSED' => '<strong>Closed report</strong><br />» %s' ,
'LOG_REPORT_DELETED' => '<strong>Deleted report</strong><br />» %s' ,
2012-10-27 17:12:34 +02:00
'LOG_RESTORE_TOPIC' => '<strong>Restored topic “%1$s” written by</strong><br />» %2$s' ,
'LOG_SOFTDELETE_POST' => '<strong>Soft deleted post “%1$s” written by</strong><br />» %2$s' ,
'LOG_SOFTDELETE_TOPIC' => '<strong>Soft deleted topic “%1$s” written by</strong><br />» %2$s' ,
2007-06-11 12:39:51 +00:00
'LOG_SPLIT_DESTINATION' => '<strong>Moved split posts</strong><br />» to %s' ,
'LOG_SPLIT_SOURCE' => '<strong>Split posts</strong><br />» from %s' ,
2007-01-17 18:41:49 +00:00
2007-05-06 23:07:36 +00:00
'LOG_TOPIC_APPROVED' => '<strong>Approved topic</strong><br />» %s' ,
2010-06-27 14:22:36 -05:00
'LOG_TOPIC_RESTORED' => '<strong>Restored topic</strong><br />» %s' ,
2007-05-06 23:07:36 +00:00
'LOG_TOPIC_DISAPPROVED' => '<strong>Disapproved topic “%1$s” with the following reason</strong><br />%2$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
'LOG_TOPIC_RESYNC' => '<strong>Resynchronised topic counters</strong><br />» %s' ,
'LOG_TOPIC_TYPE_CHANGED' => '<strong>Changed topic type</strong><br />» %s' ,
'LOG_UNLOCK' => '<strong>Unlocked topic</strong><br />» %s' ,
'LOG_UNLOCK_POST' => '<strong>Unlocked post</strong><br />» %s' ,
'LOG_DISALLOW_ADD' => '<strong>Added disallowed username</strong><br />» %s' ,
'LOG_DISALLOW_DELETE' => '<strong>Deleted disallowed username</strong>' ,
'LOG_DB_BACKUP' => '<strong>Database backup</strong>' ,
2007-05-11 21:42:45 +00:00
'LOG_DB_DELETE' => '<strong>Deleted database backup</strong>' ,
'LOG_DB_RESTORE' => '<strong>Restored database backup</strong>' ,
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
2007-01-21 18:33:45 +00:00
'LOG_DOWNLOAD_EXCLUDE_IP' => '<strong>Excluded IP/hostname from download list</strong><br />» %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
'LOG_DOWNLOAD_IP' => '<strong>Added IP/hostname to download list</strong><br />» %s' ,
'LOG_DOWNLOAD_REMOVE_IP' => '<strong>Removed IP/hostname from download list</strong><br />» %s' ,
'LOG_ERROR_JABBER' => '<strong>Jabber error</strong><br />» %s' ,
2012-04-15 20:10:51 +02:00
'LOG_ERROR_EMAIL' => '<strong>Email error</strong><br />» %s' ,
One commit for those fixes having a very tiny impact (mostly only whitespaces or forgotten spans, etc.)
Although i somehow mistakingly got #20445 and #15249 into it. :/
Removing s_watching_img from watch_topic_forum() function (Bug #20445)
Changing order for post review if more than one post affected (Bug #15249)
Language typos/fixes (Bug #20425, #15719, #15429, #14669, #13479)
Style/Template fixes (Bug #20065, #19405, #19205, #15028, #14934, #14821, #14752, #14497, #13707, #14738)
Tiny code fixes (Bug #20165, #20025, #19795, #14804)
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8350 89ea8834-ac86-4346-8a33-228a782c2dd0
2008-01-30 16:01:15 +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
'LOG_FORUM_ADD' => '<strong>Created new forum</strong><br />» %s' ,
2009-07-28 22:09:46 +00:00
'LOG_FORUM_COPIED_PERMISSIONS' => '<strong>Copied forum permissions</strong> from %1$s<br />» %2$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
'LOG_FORUM_DEL_FORUM' => '<strong>Deleted forum</strong><br />» %s' ,
'LOG_FORUM_DEL_FORUMS' => '<strong>Deleted forum and its subforums</strong><br />» %s' ,
'LOG_FORUM_DEL_MOVE_FORUMS' => '<strong>Deleted forum and moved subforums</strong> to %1$s<br />» %2$s' ,
'LOG_FORUM_DEL_MOVE_POSTS' => '<strong>Deleted forum and moved posts </strong> to %1$s<br />» %2$s' ,
2009-03-16 16:49:02 +00:00
'LOG_FORUM_DEL_MOVE_POSTS_FORUMS' => '<strong>Deleted forum and its subforums, moved posts</strong> to %1$s<br />» %2$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
'LOG_FORUM_DEL_MOVE_POSTS_MOVE_FORUMS' => '<strong>Deleted forum, moved posts</strong> to %1$s <strong>and subforums</strong> to %2$s<br />» %3$s' ,
2009-03-17 11:54:26 +00:00
'LOG_FORUM_DEL_POSTS' => '<strong>Deleted forum and its posts</strong><br />» %s' ,
'LOG_FORUM_DEL_POSTS_FORUMS' => '<strong>Deleted forum, its posts and subforums</strong><br />» %s' ,
'LOG_FORUM_DEL_POSTS_MOVE_FORUMS' => '<strong>Deleted forum and its posts, moved subforums</strong> to %1$s<br />» %2$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
'LOG_FORUM_EDIT' => '<strong>Edited forum details</strong><br />» %s' ,
'LOG_FORUM_MOVE_DOWN' => '<strong>Moved forum</strong> %1$s <strong>below</strong> %2$s' ,
'LOG_FORUM_MOVE_UP' => '<strong>Moved forum</strong> %1$s <strong>above</strong> %2$s' ,
'LOG_FORUM_SYNC' => '<strong>Re-synchronised forum</strong><br />» %s' ,
2009-08-05 12:02:18 +00:00
'LOG_GENERAL_ERROR' => '<strong>A general error occured</strong>: %1$s <br />» %2$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
'LOG_GROUP_CREATED' => '<strong>New usergroup created</strong><br />» %s' ,
2007-03-08 15:49:13 +00:00
'LOG_GROUP_DEFAULTS' => '<strong>Group “%1$s” made default for members</strong><br />» %2$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
'LOG_GROUP_DELETE' => '<strong>Usergroup deleted</strong><br />» %s' ,
'LOG_GROUP_DEMOTED' => '<strong>Leaders demoted in usergroup</strong> %1$s<br />» %2$s' ,
'LOG_GROUP_PROMOTED' => '<strong>Members promoted to leader in usergroup</strong> %1$s<br />» %2$s' ,
'LOG_GROUP_REMOVE' => '<strong>Members removed from usergroup</strong> %1$s<br />» %2$s' ,
'LOG_GROUP_UPDATED' => '<strong>Usergroup details updated</strong><br />» %s' ,
'LOG_MODS_ADDED' => '<strong>Added new leaders to usergroup</strong> %1$s<br />» %2$s' ,
'LOG_USERS_ADDED' => '<strong>Added new members to usergroup</strong> %1$s<br />» %2$s' ,
2009-08-01 11:43:39 +00:00
'LOG_USERS_APPROVED' => '<strong>Users approved in usergroup</strong> %1$s<br />» %2$s' ,
'LOG_USERS_PENDING' => '<strong>Users requested to join group “%1$s” and need to be approved</strong><br />» %2$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
2009-08-04 15:34:04 +00:00
'LOG_IMAGE_GENERATION_ERROR' => '<strong>Error while creating image</strong><br />» Error in %1$s on line %2$s: %3$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
'LOG_INACTIVE_ACTIVATE' => '<strong>Activated inactive users</strong><br />» %s' ,
'LOG_INACTIVE_DELETE' => '<strong>Deleted inactive users</strong><br />» %s' ,
2012-04-15 20:10:51 +02:00
'LOG_INACTIVE_REMIND' => '<strong>Sent reminder emails to inactive users</strong><br />» %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
'LOG_INSTALL_CONVERTED' => '<strong>Converted from %1$s to phpBB %2$s</strong>' ,
'LOG_INSTALL_INSTALLED' => '<strong>Installed phpBB %s</strong>' ,
2007-03-08 15:49:13 +00:00
'LOG_IP_BROWSER_FORWARDED_CHECK' => '<strong>Session IP/browser/X_FORWARDED_FOR check failed</strong><br />»User IP “<em>%1$s</em>” checked against session IP “<em>%2$s</em>”, user browser string “<em>%3$s</em>” checked against session browser string “<em>%4$s</em>” and user X_FORWARDED_FOR string “<em>%5$s</em>” checked against session X_FORWARDED_FOR string “<em>%6$s</em>”.' ,
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
'LOG_JAB_CHANGED' => '<strong>Jabber account changed</strong>' ,
'LOG_JAB_PASSCHG' => '<strong>Jabber password changed</strong>' ,
'LOG_JAB_REGISTER' => '<strong>Jabber account registered</strong>' ,
'LOG_JAB_SETTINGS_CHANGED' => '<strong>Jabber settings changed</strong>' ,
'LOG_LANGUAGE_PACK_DELETED' => '<strong>Deleted language pack</strong><br />» %s' ,
'LOG_LANGUAGE_PACK_INSTALLED' => '<strong>Installed language pack</strong><br />» %s' ,
'LOG_LANGUAGE_PACK_UPDATED' => '<strong>Updated language pack details</strong><br />» %s' ,
'LOG_LANGUAGE_FILE_REPLACED' => '<strong>Replaced language file</strong><br />» %s' ,
2007-02-18 13:42:08 +00:00
'LOG_LANGUAGE_FILE_SUBMITTED' => '<strong>Submitted language file and placed in store folder</strong><br />» %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
2012-04-15 20:10:51 +02:00
'LOG_MASS_EMAIL' => '<strong>Sent mass email</strong><br />» %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
2007-03-08 15:49:13 +00:00
'LOG_MCP_CHANGE_POSTER' => '<strong>Changed poster in topic “%1$s”</strong><br />» from %2$s to %3$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
2007-05-06 15:31:39 +00:00
'LOG_MODULE_DISABLE' => '<strong>Module disabled</strong><br />» %s' ,
'LOG_MODULE_ENABLE' => '<strong>Module enabled</strong><br />» %s' ,
2007-05-07 13:19:59 +00:00
'LOG_MODULE_MOVE_DOWN' => '<strong>Module moved down</strong><br />» %1$s below %2$s' ,
'LOG_MODULE_MOVE_UP' => '<strong>Module moved up</strong><br />» %1$s above %2$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
'LOG_MODULE_REMOVED' => '<strong>Module removed</strong><br />» %s' ,
'LOG_MODULE_ADD' => '<strong>Module added</strong><br />» %s' ,
'LOG_MODULE_EDIT' => '<strong>Module edited</strong><br />» %s' ,
'LOG_A_ROLE_ADD' => '<strong>Admin role added</strong><br />» %s' ,
'LOG_A_ROLE_EDIT' => '<strong>Admin role edited</strong><br />» %s' ,
'LOG_A_ROLE_REMOVED' => '<strong>Admin role removed</strong><br />» %s' ,
'LOG_F_ROLE_ADD' => '<strong>Forum role added</strong><br />» %s' ,
'LOG_F_ROLE_EDIT' => '<strong>Forum role edited</strong><br />» %s' ,
'LOG_F_ROLE_REMOVED' => '<strong>Forum role removed</strong><br />» %s' ,
'LOG_M_ROLE_ADD' => '<strong>Moderator role added</strong><br />» %s' ,
'LOG_M_ROLE_EDIT' => '<strong>Moderator role edited</strong><br />» %s' ,
'LOG_M_ROLE_REMOVED' => '<strong>Moderator role removed</strong><br />» %s' ,
'LOG_U_ROLE_ADD' => '<strong>User role added</strong><br />» %s' ,
'LOG_U_ROLE_EDIT' => '<strong>User role edited</strong><br />» %s' ,
'LOG_U_ROLE_REMOVED' => '<strong>User role removed</strong><br />» %s' ,
'LOG_PROFILE_FIELD_ACTIVATE' => '<strong>Profile field activated</strong><br />» %s' ,
'LOG_PROFILE_FIELD_CREATE' => '<strong>Profile field added</strong><br />» %s' ,
'LOG_PROFILE_FIELD_DEACTIVATE' => '<strong>Profile field deactivated</strong><br />» %s' ,
'LOG_PROFILE_FIELD_EDIT' => '<strong>Profile field changed</strong><br />» %s' ,
'LOG_PROFILE_FIELD_REMOVED' => '<strong>Profile field removed</strong><br />» %s' ,
'LOG_PRUNE' => '<strong>Pruned forums</strong><br />» %s' ,
'LOG_AUTO_PRUNE' => '<strong>Auto-pruned forums</strong><br />» %s' ,
'LOG_PRUNE_USER_DEAC' => '<strong>Users deactivated</strong><br />» %s' ,
'LOG_PRUNE_USER_DEL_DEL' => '<strong>Users pruned and posts deleted</strong><br />» %s' ,
'LOG_PRUNE_USER_DEL_ANON' => '<strong>Users pruned and posts retained</strong><br />» %s' ,
2007-05-16 19:20:50 +00:00
'LOG_PURGE_CACHE' => '<strong>Purged cache</strong>' ,
2009-07-06 13:17:36 +00:00
'LOG_PURGE_SESSIONS' => '<strong>Purged sessions</strong>' ,
2007-05-16 19:20:50 +00:00
2006-12-27 17:43:55 +00:00
'LOG_RANK_ADDED' => '<strong>Added new rank</strong><br />» %s' ,
'LOG_RANK_REMOVED' => '<strong>Removed rank</strong><br />» %s' ,
'LOG_RANK_UPDATED' => '<strong>Updated rank</strong><br />» %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
'LOG_REASON_ADDED' => '<strong>Added report/denial reason</strong><br />» %s' ,
'LOG_REASON_REMOVED' => '<strong>Removed report/denial reason</strong><br />» %s' ,
'LOG_REASON_UPDATED' => '<strong>Updated report/denial reason</strong><br />» %s' ,
2008-05-15 13:29:14 +00:00
'LOG_REFERER_INVALID' => '<strong>Referer validation failed</strong><br />»Referer was “<em>%1$s</em>”. The request was rejected and the session killed.' ,
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
'LOG_RESET_DATE' => '<strong>Board start date reset</strong>' ,
'LOG_RESET_ONLINE' => '<strong>Most users online reset</strong>' ,
2011-04-24 23:33:51 +08:00
'LOG_RESYNC_FILES_STATS' => '<strong>Files statistics resynchronised</strong>' ,
2007-01-21 18:33:45 +00:00
'LOG_RESYNC_POSTCOUNTS' => '<strong>User post counts resynchronised</strong>' ,
'LOG_RESYNC_POST_MARKING' => '<strong>Dotted topics resynchronised</strong>' ,
'LOG_RESYNC_STATS' => '<strong>Post, topic and user statistics resynchronised</strong>' ,
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
2007-03-04 16:05:17 +00:00
'LOG_SEARCH_INDEX_CREATED' => '<strong>Created search index for</strong><br />» %s' ,
'LOG_SEARCH_INDEX_REMOVED' => '<strong>Removed search index for</strong><br />» %s' ,
2012-08-01 22:18:12 +05:30
'LOG_SPHINX_ERROR' => '<strong>Sphinx Error</strong><br />» %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
'LOG_STYLE_ADD' => '<strong>Added new style</strong><br />» %s' ,
'LOG_STYLE_DELETE' => '<strong>Deleted style</strong><br />» %s' ,
'LOG_STYLE_EDIT_DETAILS' => '<strong>Edited style</strong><br />» %s' ,
'LOG_STYLE_EXPORT' => '<strong>Exported style</strong><br />» %s' ,
2011-09-20 22:42:17 +01:00
// @deprecated 3.1
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
'LOG_TEMPLATE_ADD_DB' => '<strong>Added new template set to database</strong><br />» %s' ,
2011-09-20 22:42:17 +01:00
// @deprecated 3.1
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
'LOG_TEMPLATE_ADD_FS' => '<strong>Add new template set on filesystem</strong><br />» %s' ,
'LOG_TEMPLATE_CACHE_CLEARED' => '<strong>Deleted cached versions of template files in template set <em>%1$s</em></strong><br />» %2$s' ,
'LOG_TEMPLATE_DELETE' => '<strong>Deleted template set</strong><br />» %s' ,
'LOG_TEMPLATE_EDIT' => '<strong>Edited template set <em>%1$s</em></strong><br />» %2$s' ,
'LOG_TEMPLATE_EDIT_DETAILS' => '<strong>Edited template details</strong><br />» %s' ,
'LOG_TEMPLATE_EXPORT' => '<strong>Exported template set</strong><br />» %s' ,
2011-09-20 22:42:17 +01:00
// @deprecated 3.1
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
'LOG_TEMPLATE_REFRESHED' => '<strong>Refreshed template set</strong><br />» %s' ,
2011-09-20 22:42:17 +01:00
// @deprecated 3.1
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
'LOG_THEME_ADD_DB' => '<strong>Added new theme to database</strong><br />» %s' ,
2011-09-20 22:42:17 +01:00
// @deprecated 3.1
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
'LOG_THEME_ADD_FS' => '<strong>Add new theme on filesystem</strong><br />» %s' ,
'LOG_THEME_DELETE' => '<strong>Theme deleted</strong><br />» %s' ,
'LOG_THEME_EDIT_DETAILS' => '<strong>Edited theme details</strong><br />» %s' ,
2007-05-13 20:35:34 +00:00
'LOG_THEME_EDIT' => '<strong>Edited theme <em>%1$s</em></strong>' ,
'LOG_THEME_EDIT_FILE' => '<strong>Edited theme <em>%1$s</em></strong><br />» Modified file <em>%2$s</em>' ,
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
'LOG_THEME_EXPORT' => '<strong>Exported theme</strong><br />» %s' ,
2011-09-20 22:42:17 +01:00
// @deprecated 3.1
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
'LOG_THEME_REFRESHED' => '<strong>Refreshed theme</strong><br />» %s' ,
2006-12-10 14:33:21 +00:00
'LOG_UPDATE_DATABASE' => '<strong>Updated Database from version %1$s to version %2$s</strong>' ,
'LOG_UPDATE_PHPBB' => '<strong>Updated phpBB from version %1$s to version %2$s</strong>' ,
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
'LOG_USER_ACTIVE' => '<strong>User activated</strong><br />» %s' ,
2007-03-08 15:49:13 +00:00
'LOG_USER_BAN_USER' => '<strong>Banned User via user management</strong> for reason “<em>%1$s</em>”<br />» %2$s' ,
'LOG_USER_BAN_IP' => '<strong>Banned IP via user management</strong> for reason “<em>%1$s</em>”<br />» %2$s' ,
2012-04-15 20:10:51 +02:00
'LOG_USER_BAN_EMAIL' => '<strong>Banned email via user management</strong> for reason “<em>%1$s</em>”<br />» %2$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
'LOG_USER_DELETED' => '<strong>Deleted user</strong><br />» %s' ,
'LOG_USER_DEL_ATTACH' => '<strong>Removed all attachments made by the user</strong><br />» %s' ,
'LOG_USER_DEL_AVATAR' => '<strong>Removed user avatar</strong><br />» %s' ,
2009-07-17 11:27:50 +00:00
'LOG_USER_DEL_OUTBOX' => '<strong>Emptied user outbox</strong><br />» %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
'LOG_USER_DEL_POSTS' => '<strong>Removed all posts made by the user</strong><br />» %s' ,
'LOG_USER_DEL_SIG' => '<strong>Removed user signature</strong><br />» %s' ,
'LOG_USER_INACTIVE' => '<strong>User deactivated</strong><br />» %s' ,
2007-03-08 15:49:13 +00:00
'LOG_USER_MOVE_POSTS' => '<strong>Moved user posts</strong><br />» posts by “%1$s” to forum “%2$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
'LOG_USER_NEW_PASSWORD' => '<strong>Changed user password</strong><br />» %s' ,
#10005, #10003, #10001, #9999, #9945, #9965, #9909, #9906, #9877, #9861, #9831, #9830, #9815, #9665, #9624
prosilver adjustments for important announcements in ucp - #9995
MCP fixes for user notes/warnings - #9981
Preserving imageset values on save/edit
find a member link for Mass PM's - #9925
syndicate window.onload events where necessary - #9878
Duplicate topics in forums with announcements - #9840
Email template for forced re-activation - #9808
Topic pagination adjustment - #9763
Changed compose message layout in UCP - #9706, #9702
Fixed inline attachment font size (hopefully)
git-svn-id: file:///svn/phpbb/trunk@7384 89ea8834-ac86-4346-8a33-228a782c2dd0
2007-04-22 15:27:40 +00:00
'LOG_USER_REACTIVATE' => '<strong>Forced user account reactivation</strong><br />» %s' ,
2009-06-21 14:31:00 +00:00
'LOG_USER_REMOVED_NR' => '<strong>Removed newly registered flag from user</strong><br />» %s' ,
2012-04-15 20:10:51 +02:00
'LOG_USER_UPDATE_EMAIL' => '<strong>User “%1$s” changed email</strong><br />» from “%2$s” to “%3$s”' ,
2007-03-08 15:49:13 +00:00
'LOG_USER_UPDATE_NAME' => '<strong>Changed username</strong><br />» from “%1$s” to “%2$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
'LOG_USER_USER_UPDATE' => '<strong>Updated user details</strong><br />» %s' ,
'LOG_USER_ACTIVE_USER' => '<strong>User account activated</strong>' ,
'LOG_USER_DEL_AVATAR_USER' => '<strong>User avatar removed</strong>' ,
'LOG_USER_DEL_SIG_USER' => '<strong>User signature removed</strong>' ,
'LOG_USER_FEEDBACK' => '<strong>Added user feedback</strong><br />» %s' ,
2007-06-08 08:28:55 +00:00
'LOG_USER_GENERAL' => '<strong>Entry added:</strong><br />» %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
'LOG_USER_INACTIVE_USER' => '<strong>User account de-activated</strong>' ,
'LOG_USER_LOCK' => '<strong>User locked own topic</strong><br />» %s' ,
2007-03-08 15:49:13 +00:00
'LOG_USER_MOVE_POSTS_USER' => '<strong>Moved all posts to forum</strong>» %s' ,
#10005, #10003, #10001, #9999, #9945, #9965, #9909, #9906, #9877, #9861, #9831, #9830, #9815, #9665, #9624
prosilver adjustments for important announcements in ucp - #9995
MCP fixes for user notes/warnings - #9981
Preserving imageset values on save/edit
find a member link for Mass PM's - #9925
syndicate window.onload events where necessary - #9878
Duplicate topics in forums with announcements - #9840
Email template for forced re-activation - #9808
Topic pagination adjustment - #9763
Changed compose message layout in UCP - #9706, #9702
Fixed inline attachment font size (hopefully)
git-svn-id: file:///svn/phpbb/trunk@7384 89ea8834-ac86-4346-8a33-228a782c2dd0
2007-04-22 15:27:40 +00:00
'LOG_USER_REACTIVATE_USER' => '<strong>Forced user account reactivation</strong>' ,
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
'LOG_USER_UNLOCK' => '<strong>User unlocked own topic</strong><br />» %s' ,
2006-12-21 10:37:50 +00:00
'LOG_USER_WARNING' => '<strong>Added user warning</strong><br />» %s' ,
'LOG_USER_WARNING_BODY' => '<strong>The following warning was issued to this user</strong><br />» %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
'LOG_USER_GROUP_CHANGE' => '<strong>User changed default group</strong><br />» %s' ,
'LOG_USER_GROUP_DEMOTE' => '<strong>User demoted as leaders from usergroup</strong><br />» %s' ,
'LOG_USER_GROUP_JOIN' => '<strong>User joined group</strong><br />» %s' ,
'LOG_USER_GROUP_JOIN_PENDING' => '<strong>User joined group and needs to be approved</strong><br />» %s' ,
'LOG_USER_GROUP_RESIGN' => '<strong>User resigned membership from group</strong><br />» %s' ,
2009-07-22 11:47:37 +00:00
'LOG_WARNING_DELETED' => '<strong>Deleted user warning</strong><br />» %s' ,
'LOG_WARNINGS_DELETED' => '<strong>Deleted %2$s user warnings</strong><br />» %1$s' , // Example: '<strong>Deleted 2 user warnings</strong><br />» username'
'LOG_WARNINGS_DELETED_ALL' => '<strong>Deleted all user warnings</strong><br />» %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
'LOG_WORD_ADD' => '<strong>Added word censor</strong><br />» %s' ,
'LOG_WORD_DELETE' => '<strong>Deleted word censor</strong><br />» %s' ,
'LOG_WORD_EDIT' => '<strong>Edited word censor</strong><br />» %s' ,
2005-12-12 23:17:30 +00:00
));