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

« back to all changes in this revision

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

  • Committer: dcoles
  • Date: 2008-02-13 04:10:55 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:443
Added Forum application along with unmodifed version of phpBB3 "Olympus" 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/**
 
3
*
 
4
* posting [English]
 
5
*
 
6
* @package language
 
7
* @version $Id: posting.php,v 1.50 2007/11/28 20:09:01 kellanved Exp $
 
8
* @copyright (c) 2005 phpBB Group
 
9
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
 
10
*
 
11
*/
 
12
 
 
13
/**
 
14
* DO NOT CHANGE
 
15
*/
 
16
if (!defined('IN_PHPBB'))
 
17
{
 
18
        exit;
 
19
}
 
20
 
 
21
if (empty($lang) || !is_array($lang))
 
22
{
 
23
        $lang = array();
 
24
}
 
25
 
 
26
// DEVELOPERS PLEASE NOTE
 
27
//
 
28
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
 
29
//
 
30
// Placeholders can now contain order information, e.g. instead of
 
31
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
 
32
// translators to re-order the output of data while ensuring it remains correct
 
33
//
 
34
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
 
35
// equally where a string contains only two placeholders which are used to wrap text
 
36
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
 
37
 
 
38
// BBCodes
 
39
// Note to translators: you can translate everything but what's between { and }
 
40
$lang = array_merge($lang, array(
 
41
        'ACP_BBCODES_EXPLAIN'           => 'BBCode is a special implementation of HTML offering greater control over what and how something is displayed. From this page you can add, remove and edit custom BBCodes.',
 
42
        'ADD_BBCODE'                            => 'Add a new BBCode',
 
43
 
 
44
        'BBCODE_ADDED'                          => 'BBCode added successfully.',
 
45
        'BBCODE_EDITED'                         => 'BBCode edited successfully.',
 
46
        'BBCODE_NOT_EXIST'                      => 'The BBCode you selected does not exist.',
 
47
        'BBCODE_HELPLINE'                       => 'Help line',
 
48
        'BBCODE_HELPLINE_EXPLAIN'       => 'This field contains the mouse over text of the BBCode.',
 
49
        'BBCODE_HELPLINE_TEXT'          => 'Help line text',
 
50
        'BBCODE_INVALID_TAG_NAME'       => 'The BBCode tag name that you selected already exists.',
 
51
        'BBCODE_INVALID'                        => 'Your BBCode is constructed in an invalid form.',
 
52
        'BBCODE_OPEN_ENDED_TAG'         => 'Your custom BBCode must contain both an opening and a closing tag.',
 
53
        'BBCODE_TAG'                            => 'Tag',
 
54
        'BBCODE_TAG_TOO_LONG'           => 'The tag name you selected is too long.',
 
55
        'BBCODE_TAG_DEF_TOO_LONG'       => 'The tag definition that you have entered is too long, please shorten your tag definition.',
 
56
        'BBCODE_USAGE'                          => 'BBCode usage',
 
57
        'BBCODE_USAGE_EXAMPLE'          => '[hilight={COLOR}]{TEXT}[/hilight]<br /><br />[font={SIMPLETEXT1}]{SIMPLETEXT2}[/font]',
 
58
        'BBCODE_USAGE_EXPLAIN'          => 'Here you define how to use the BBCode. Replace any variable input by the corresponding token (%ssee below%s).',
 
59
 
 
60
        'EXAMPLE'                                               => 'Example:',
 
61
        'EXAMPLES'                                              => 'Examples:',
 
62
 
 
63
        'HTML_REPLACEMENT'                              => 'HTML replacement',
 
64
        'HTML_REPLACEMENT_EXAMPLE'              => '&lt;span style="background-color: {COLOR};"&gt;{TEXT}&lt;/span&gt;<br /><br />&lt;span style="font-family: {SIMPLETEXT1};"&gt;{SIMPLETEXT2}&lt;/span&gt;',
 
65
        'HTML_REPLACEMENT_EXPLAIN'              => 'Here you define the default HTML replacement. Do not forget to put back tokens you used above!',
 
66
 
 
67
        'TOKEN'                                 => 'Token',
 
68
        'TOKENS'                                => 'Tokens',
 
69
        'TOKENS_EXPLAIN'                => 'Tokens are placeholders for user input. The input will be validated only if it matches the corresponding definition. If needed, you can number them by adding a number as the last character between the braces, e.g. {TEXT1}, {TEXT2}.<br /><br />Within the HTML replacement you can also use any language string present in your language/ directory like this: {L_<em>&lt;STRINGNAME&gt;</em>} where <em>&lt;STRINGNAME&gt;</em> is the name of the translated string you want to add. For example, {L_WROTE} will be displayed as &quot;wrote&quot; or its translation according to user’s locale.<br /><br /><strong>Please note that only tokens listed below are able to be used within custom BBCodes.</strong>',
 
70
        'TOKEN_DEFINITION'              => 'What can it be?',
 
71
        'TOO_MANY_BBCODES'              => 'You cannot create any more BBCodes. Please remove one or more BBCodes then try again.',
 
72
 
 
73
        'tokens'        =>      array(
 
74
                'TEXT'                  => 'Any text, including foreign characters, numbers, etc… You should not use this token in HTML tags. Instead try to use IDENTIFIER or SIMPLETEXT.',
 
75
                'SIMPLETEXT'    => 'Characters from the latin alphabet (A-Z), numbers, spaces, commas, dots, minus, plus, hyphen and underscore',
 
76
                'IDENTIFIER'    => 'Characters from the latin alphabet (A-Z), numbers, hyphen and underscore',
 
77
                'NUMBER'                => 'Any series of digits',
 
78
                'EMAIL'                 => 'A valid e-mail address',
 
79
                'URL'                   => 'A valid URL using any protocol (http, ftp, etc… cannot be used for javascript exploits). If none is given, &quot;http://&quot; is prefixed to the string.',
 
80
                'LOCAL_URL'             => 'A local URL. The URL must be relative to the topic page and cannot contain a server name or protocol.',
 
81
                'COLOR'                 => 'A HTML colour, can be either in the numeric form <samp>#FF1234</samp> or a <a href="http://www.w3.org/TR/CSS21/syndata.html#value-def-color">CSS colour keyword</a> such as <samp>fuchsia</samp> or <samp>InactiveBorder</samp>'
 
82
        )
 
83
));
 
84
 
 
85
// Smilies and topic icons
 
86
$lang = array_merge($lang, array(
 
87
        'ACP_ICONS_EXPLAIN'             => 'From this page you can add, remove and edit the icons users may add to their topics or posts. These icons are generally displayed next to topic titles on the forum listing, or the post subjects in topic listings. You can also install and create new packages of icons.',
 
88
        'ACP_SMILIES_EXPLAIN'   => 'Smilies or emoticons are typically small, sometimes animated images used to convey an emotion or feeling. From this page you can add, remove and edit the emoticons users can use in their posts and private messages. You can also install and create new packages of smilies.',
 
89
        'ADD_SMILIES'                   => 'Add multiple smilies',
 
90
        'ADD_SMILEY_CODE'               => 'Add additional smiley code',
 
91
        'ADD_ICONS'                             => 'Add multiple icons',
 
92
        'AFTER_ICONS'                   => 'After %s',
 
93
        'AFTER_SMILIES'                 => 'After %s',
 
94
 
 
95
        'CODE'                                          => 'Code',
 
96
        'CURRENT_ICONS'                         => 'Current icons',
 
97
        'CURRENT_ICONS_EXPLAIN'         => 'Choose what to do with the currently installed icons.',
 
98
        'CURRENT_SMILIES'                       => 'Current smilies',
 
99
        'CURRENT_SMILIES_EXPLAIN'       => 'Choose what to do with the currently installed smilies.',
 
100
 
 
101
        'DISPLAY_ON_POSTING'            => 'Display on posting page',
 
102
        'DISPLAY_POSTING'                       => 'On posting page',
 
103
        'DISPLAY_POSTING_NO'            => 'Not on posting page',
 
104
 
 
105
 
 
106
        
 
107
        'EDIT_ICONS'                            => 'Edit icons',
 
108
        'EDIT_SMILIES'                          => 'Edit smilies',
 
109
        'EMOTION'                                       => 'Emotion',
 
110
        'EXPORT_ICONS'                          => 'Export and download icons.pak',
 
111
        'EXPORT_ICONS_EXPLAIN'          => '%sOn clicking this link, the configuration for your installed icons will be packaged into <samp>icons.pak</samp> which once downloaded can be used to create a <samp>.zip</samp> or <samp>.tgz</samp> file containing all of your icons plus this <samp>icons.pak</samp> configuration file%s.',
 
112
        'EXPORT_SMILIES'                        => 'Export and download smilies.pak',
 
113
        'EXPORT_SMILIES_EXPLAIN'        => '%sOn clicking this link, the configuration for your installed smilies will be packaged into <samp>smilies.pak</samp> which once downloaded can be used to create a <samp>.zip</samp> or <samp>.tgz</samp> file containing all of your smilies plus this <samp>smilies.pak</samp> configuration file%s.',
 
114
 
 
115
        'FIRST'                 => 'First',
 
116
 
 
117
        'ICONS_ADD'                             => 'Add a new icon',
 
118
        'ICONS_NONE_ADDED'              => 'No icons were added.',
 
119
        'ICONS_ONE_ADDED'               => 'The icon has been added successfully.',
 
120
        'ICONS_ADDED'                   => 'The icons have been added successfully.',
 
121
        'ICONS_CONFIG'                  => 'Icon configuration',
 
122
        'ICONS_DELETED'                 => 'The icon has been removed successfully.',
 
123
        'ICONS_EDIT'                    => 'Edit icon',
 
124
        'ICONS_ONE_EDITED'              => 'The icon has been updated successfully.',
 
125
        'ICONS_NONE_EDITED'             => 'No icons were updated.',
 
126
        'ICONS_EDITED'                  => 'The icons have been updated successfully.',
 
127
        'ICONS_HEIGHT'                  => 'Icon height',
 
128
        'ICONS_IMAGE'                   => 'Icon image',
 
129
        'ICONS_IMPORTED'                => 'The icons pack has been installed successfully.',
 
130
        'ICONS_IMPORT_SUCCESS'  => 'The icons pack was imported successfully.',
 
131
        'ICONS_LOCATION'                => 'Icon location',
 
132
        'ICONS_NOT_DISPLAYED'   => 'The following icons are not displayed on the posting page',
 
133
        'ICONS_ORDER'                   => 'Icon order',
 
134
        'ICONS_URL'                             => 'Icon image file',
 
135
        'ICONS_WIDTH'                   => 'Icon width',
 
136
        'IMPORT_ICONS'                  => 'Install icons package',
 
137
        'IMPORT_SMILIES'                => 'Install smilies package',
 
138
 
 
139
        'KEEP_ALL'                      => 'Keep all',
 
140
 
 
141
        'MASS_ADD_SMILIES'      => 'Add multiple smilies',
 
142
 
 
143
        'NO_ICONS_ADD'          => 'There are no icons available for adding.',
 
144
        'NO_ICONS_EDIT'         => 'There are no icons available for modifying.',
 
145
        'NO_ICONS_EXPORT'       => 'You have no icons with which to create a package.',
 
146
        'NO_ICONS_PAK'          => 'No icon packages found.',
 
147
        'NO_SMILIES_ADD'        => 'There are no smilies available for adding.',
 
148
        'NO_SMILIES_EDIT'       => 'There are no smilies available for modifying.',
 
149
        'NO_SMILIES_EXPORT'     => 'You have no smilies with which to create a package.',
 
150
        'NO_SMILIES_PAK'        => 'No smiley packages found.',
 
151
 
 
152
        'PAK_FILE_NOT_READABLE'         => 'Could not read <samp>.pak</samp> file.',
 
153
 
 
154
        'REPLACE_MATCHES'       => 'Replace matches',
 
155
 
 
156
        'SELECT_PACKAGE'                        => 'Select a package file',
 
157
        'SMILIES_ADD'                           => 'Add a new smiley',
 
158
        'SMILIES_NONE_ADDED'            => 'No smilies were added.',
 
159
        'SMILIES_ONE_ADDED'                     => 'The smiley has been added successfully.',
 
160
        'SMILIES_ADDED'                         => 'The smilies have been added successfully.',
 
161
        'SMILIES_CODE'                          => 'Smiley code',
 
162
        'SMILIES_CONFIG'                        => 'Smiley configuration',
 
163
        'SMILIES_DELETED'                       => 'The smiley has been removed successfully.',
 
164
        'SMILIES_EDIT'                          => 'Edit smiley',
 
165
        'SMILIES_NONE_EDITED'           => 'No smilies were updated.',
 
166
        'SMILIES_ONE_EDITED'            => 'The smiley has been updated successfully.',
 
167
        'SMILIES_EDITED'                        => 'The smilies have been updated successfully.',
 
168
        'SMILIES_EMOTION'                       => 'Emotion',
 
169
        'SMILIES_HEIGHT'                        => 'Smiley height',
 
170
        'SMILIES_IMAGE'                         => 'Smiley image',
 
171
        'SMILIES_IMPORTED'                      => 'The smilies pack has been installed successfully.',
 
172
        'SMILIES_IMPORT_SUCCESS'        => 'The smilies pack was imported successfully.',
 
173
        'SMILIES_LOCATION'                      => 'Smiley location',
 
174
        'SMILIES_NOT_DISPLAYED'         => 'The following smilies are not displayed on the posting page',
 
175
        'SMILIES_ORDER'                         => 'Smiley order',
 
176
        'SMILIES_URL'                           => 'Smiley image file',
 
177
        'SMILIES_WIDTH'                         => 'Smiley width',
 
178
 
 
179
        'WRONG_PAK_TYPE'        => 'The specified package does not contain the appropriate data.',
 
180
));
 
181
 
 
182
// Word censors
 
183
$lang = array_merge($lang, array(
 
184
        'ACP_WORDS_EXPLAIN'             => 'From this control panel you can add, edit, and remove words that will be automatically censored on your forums. In addition people will not be allowed to register with usernames containing these words. Wildcards (*) are accepted in the word field, e.g. *test* will match detestable, test* would match testing, *test would match detest.',
 
185
        'ADD_WORD'                              => 'Add new word',
 
186
 
 
187
        'EDIT_WORD'             => 'Edit word censor',
 
188
        'ENTER_WORD'    => 'You must enter a word and its replacement.',
 
189
 
 
190
        'NO_WORD'       => 'No word selected for editing.',
 
191
 
 
192
        'REPLACEMENT'   => 'Replacement',
 
193
 
 
194
        'UPDATE_WORD'   => 'Update word censor',
 
195
 
 
196
        'WORD'                          => 'Word',
 
197
        'WORD_ADDED'            => 'The word censor has been successfully added.',
 
198
        'WORD_REMOVED'          => 'The selected word censor has been successfully removed.',
 
199
        'WORD_UPDATED'          => 'The selected word censor has been successfully updated.',
 
200
));
 
201
 
 
202
// Ranks
 
203
$lang = array_merge($lang, array(
 
204
        'ACP_RANKS_EXPLAIN'             => 'Using this form you can add, edit, view and delete ranks. You can also create special ranks which can be applied to a user via the user management facility.',
 
205
        'ADD_RANK'                              => 'Add new rank',
 
206
 
 
207
        'MUST_SELECT_RANK'              => 'You must select a rank.',
 
208
        
 
209
        'NO_ASSIGNED_RANK'              => 'No special rank assigned.',
 
210
        'NO_RANK_TITLE'                 => 'You haven’t specified a title for the rank.',
 
211
        'NO_UPDATE_RANKS'               => 'The rank was successfully deleted. However user accounts using this rank were not updated. You will need to manually reset the rank on these accounts.',
 
212
 
 
213
        'RANK_ADDED'                    => 'The rank was successfully added.',
 
214
        'RANK_IMAGE'                    => 'Rank image',
 
215
        'RANK_IMAGE_EXPLAIN'    => 'Use this to define a small image associated with the rank. The path is relative to the root phpBB directory.',
 
216
        'RANK_MINIMUM'                  => 'Minimum posts',
 
217
        'RANK_REMOVED'                  => 'The rank was successfully deleted.',
 
218
        'RANK_SPECIAL'                  => 'Set as special rank',
 
219
        'RANK_TITLE'                    => 'Rank title',
 
220
        'RANK_UPDATED'                  => 'The rank was successfully updated.',
 
221
));
 
222
 
 
223
// Disallow Usernames
 
224
$lang = array_merge($lang, array(
 
225
        'ACP_DISALLOW_EXPLAIN'  => 'Here you can control usernames which will not be allowed to be used. Disallowed usernames are allowed to contain a wildcard character of *. Please note that you will not be allowed to specify any username that has already been registered, you must first delete that name then disallow it.',
 
226
        'ADD_DISALLOW_EXPLAIN'  => 'You can disallow a username using the wildcard character * to match any character.',
 
227
        'ADD_DISALLOW_TITLE'    => 'Add a disallowed username',
 
228
 
 
229
        'DELETE_DISALLOW_EXPLAIN'       => 'You can remove a disallowed username by selecting the username from this list and clicking submit.',
 
230
        'DELETE_DISALLOW_TITLE'         => 'Remove a disallowed username',
 
231
        'DISALLOWED_ALREADY'            => 'The name you entered could not be disallowed. It either already exists in the list, exists in the word censor list, or a matching username is present.',
 
232
        'DISALLOWED_DELETED'            => 'The disallowed username has been successfully removed.',
 
233
        'DISALLOW_SUCCESSFUL'           => 'The disallowed username has been successfully added.',
 
234
 
 
235
        'NO_DISALLOWED'                         => 'No disallowed usernames',
 
236
        'NO_USERNAME_SPECIFIED'         => 'You haven’t selected or entered a username to operate with.',
 
237
));
 
238
 
 
239
// Reasons
 
240
$lang = array_merge($lang, array(
 
241
        'ACP_REASONS_EXPLAIN'   => 'Here you can manage the reasons used in reports and denial messages when disapproving posts. There is one default reason (marked with a *) you are not able to remove, this reason is normally used for custom messages if no reason fits.',
 
242
        'ADD_NEW_REASON'                => 'Add new reason',
 
243
        'AVAILABLE_TITLES'              => 'Available localised reason titles',
 
244
        
 
245
        'IS_NOT_TRANSLATED'                     => 'Reason has <strong>not</strong> been localised.',
 
246
        'IS_NOT_TRANSLATED_EXPLAIN'     => 'Reason has <strong>not</strong> been localised. If you want to provide the localised form, specify the correct key from the language files report reasons section.',
 
247
        'IS_TRANSLATED'                         => 'Reason has been localised.',
 
248
        'IS_TRANSLATED_EXPLAIN'         => 'Reason has been localised. If the title you enter here is specified within the language files report reasons section, the localised form of the title and description will be used.',
 
249
        
 
250
        'NO_REASON'                                     => 'Reason could not be found.',
 
251
        'NO_REASON_INFO'                        => 'You have to specify a title and a description for this reason.',
 
252
        'NO_REMOVE_DEFAULT_REASON'      => 'You are not able to remove the default reason “Other”.',
 
253
 
 
254
        'REASON_ADD'                            => 'Add report/denial reason',
 
255
        'REASON_ADDED'                          => 'Report/denial reason successfully added.',
 
256
        'REASON_ALREADY_EXIST'          => 'A reason with this title already exist, please enter another title for this reason.',
 
257
        'REASON_DESCRIPTION'            => 'Reason description',
 
258
        'REASON_DESC_TRANSLATED'        => 'Displayed reason description',
 
259
        'REASON_EDIT'                           => 'Edit report/denial reason',
 
260
        'REASON_EDIT_EXPLAIN'           => 'Here you are able to add or edit a reason. If the reason is translated the localised version is used instead of the description entered here.',
 
261
        'REASON_REMOVED'                        => 'Report/denial reason successfully removed.',
 
262
        'REASON_TITLE'                          => 'Reason title',
 
263
        'REASON_TITLE_TRANSLATED'       => 'Displayed reason title',
 
264
        'REASON_UPDATED'                        => 'Report/denial reason successfully updated.',
 
265
 
 
266
        'USED_IN_REPORTS'               => 'Used in reports',
 
267
));
 
268
 
 
269
?>
 
 
b'\\ No newline at end of file'