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

« back to all changes in this revision

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

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

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

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

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?php
2
 
/**
3
 
*
4
 
* acp_profile [English]
5
 
*
6
 
* @package language
7
 
* @version $Id: profile.php,v 1.26 2007/10/04 15:07:24 acydburn Exp $
8
 
* @copyright (c) 2005 phpBB Group
9
 
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
10
 
*
11
 
*/
12
 
 
13
 
/**
14
 
* DO NOT CHANGE
15
 
*/
16
 
if (!defined('IN_PHPBB'))
17
 
{
18
 
        exit;
19
 
}
20
 
 
21
 
if (empty($lang) || !is_array($lang))
22
 
{
23
 
        $lang = array();
24
 
}
25
 
 
26
 
// DEVELOPERS PLEASE NOTE
27
 
//
28
 
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
29
 
//
30
 
// Placeholders can now contain order information, e.g. instead of
31
 
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
32
 
// translators to re-order the output of data while ensuring it remains correct
33
 
//
34
 
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
35
 
// equally where a string contains only two placeholders which are used to wrap text
36
 
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
37
 
 
38
 
// Custom profile fields
39
 
$lang = array_merge($lang, array(
40
 
        'ADDED_PROFILE_FIELD'   => 'Successfully added custom profile field.',
41
 
        'ALPHA_ONLY'                    => 'Alphanumeric only',
42
 
        'ALPHA_SPACERS'                 => 'Alphanumeric and spacers',
43
 
        'ALWAYS_TODAY'                  => 'Always the current date',
44
 
 
45
 
        'BOOL_ENTRIES_EXPLAIN'  => 'Enter your options now',
46
 
        'BOOL_TYPE_EXPLAIN'             => 'Define the type, either a checkbox or radio buttons. A checkbox will only be displayed if it is checked for a given user. In that case the <strong>second</strong> language option will be used. Radio buttons will display regardless of their value.',
47
 
 
48
 
        'CHANGED_PROFILE_FIELD'         => 'Successfully changed profile field.',
49
 
        'CHARS_ANY'                                     => 'Any character',
50
 
        'CHECKBOX'                                      => 'Checkbox',
51
 
        'COLUMNS'                                       => 'Columns',
52
 
        'CP_LANG_DEFAULT_VALUE'         => 'Default value',
53
 
        'CP_LANG_EXPLAIN'                       => 'Field description',
54
 
        'CP_LANG_EXPLAIN_EXPLAIN'       => 'The explanation for this field presented to the user.',
55
 
        'CP_LANG_NAME'                          => 'Field name/title presented to the user',
56
 
        'CP_LANG_OPTIONS'                       => 'Options',
57
 
        'CREATE_NEW_FIELD'                      => 'Create new field',
58
 
        'CUSTOM_FIELDS_NOT_TRANSLATED'  => 'At least one custom profile field has not yet been translated. Please enter the required information by clicking on the “Translate” link.',
59
 
 
60
 
        'DEFAULT_ISO_LANGUAGE'                  => 'Default language [%s]',
61
 
        'DEFAULT_LANGUAGE_NOT_FILLED'   => 'The language entries for the default language are not filled for this profile field.',
62
 
        'DEFAULT_VALUE'                                 => 'Default value',
63
 
        'DELETE_PROFILE_FIELD'                  => 'Remove profile field',
64
 
        'DELETE_PROFILE_FIELD_CONFIRM'  => 'Are you sure you want to delete this profile field?',
65
 
        'DISPLAY_AT_PROFILE'                    => 'Display in user control panel',
66
 
        'DISPLAY_AT_PROFILE_EXPLAIN'    => 'The user is able to change this profile field within the user control panel.',
67
 
        'DISPLAY_AT_REGISTER'                   => 'Display at registration screen',
68
 
        'DISPLAY_AT_REGISTER_EXPLAIN'   => 'If this option is enabled, the field will be displayed on registration and able to be changed within the user control panel.',
69
 
        'DISPLAY_PROFILE_FIELD'                 => 'Display profile field',
70
 
        'DISPLAY_PROFILE_FIELD_EXPLAIN' => 'The profile field will be shown in all places allowed within the load settings. Setting this to “no” will hide the field from topic pages, profiles and the memberlist.',
71
 
        'DROPDOWN_ENTRIES_EXPLAIN'              => 'Enter your options now, every option in one line.',
72
 
 
73
 
        'EDIT_DROPDOWN_LANG_EXPLAIN'    => 'Please note that you are able to change your options text and also able to add new options to the end. It is not advised to add new options between existing options - this could result in wrong options assigned to your users. This can also happen if you remove options in-between. Removing options from the end result in users having assigned this item now reverting back to the default one.',
74
 
        'EMPTY_FIELD_IDENT'                             => 'Empty field identification',
75
 
        'EMPTY_USER_FIELD_NAME'                 => 'Please enter a field name/title',
76
 
        'ENTRIES'                                               => 'Entries',
77
 
        'EVERYTHING_OK'                                 => 'Everything OK',
78
 
 
79
 
        'FIELD_BOOL'                            => 'Boolean (Yes/No)',
80
 
        'FIELD_DATE'                            => 'Date',
81
 
        'FIELD_DESCRIPTION'                     => 'Field description',
82
 
        'FIELD_DESCRIPTION_EXPLAIN'     => 'The explanation for this field presented to the user.',
83
 
        'FIELD_DROPDOWN'                        => 'Dropdown box',
84
 
        'FIELD_IDENT'                           => 'Field identification',
85
 
        'FIELD_IDENT_ALREADY_EXIST'     => 'The chosen field identification already exist. Please choose another name.',
86
 
        'FIELD_IDENT_EXPLAIN'           => 'The field identification is a name to identify the profile field within the database and the templates.',
87
 
        'FIELD_INT'                                     => 'Numbers',
88
 
        'FIELD_LENGTH'                          => 'Length of input box',
89
 
        'FIELD_NOT_FOUND'                       => 'Profile field not found.',
90
 
        'FIELD_STRING'                          => 'Single text field',
91
 
        'FIELD_TEXT'                            => 'Textarea',
92
 
        'FIELD_TYPE'                            => 'Field type',
93
 
        'FIELD_TYPE_EXPLAIN'            => 'You are not able to change the field type later.',
94
 
        'FIELD_VALIDATION'                      => 'Field validation',
95
 
        'FIRST_OPTION'                          => 'First option',
96
 
 
97
 
        'HIDE_PROFILE_FIELD'                    => 'Hide profile field',
98
 
        'HIDE_PROFILE_FIELD_EXPLAIN'    => 'Only administrators and moderators are able to see/fill out this profile field. If this option is enabled, the profile field will be only displayed in users’ profiles.',
99
 
 
100
 
        'INVALID_CHARS_FIELD_IDENT'     => 'Field identification can only contain lowercase a-z and _',
101
 
        'INVALID_FIELD_IDENT_LEN'       => 'Field identification can only be 17 characters long',
102
 
        'ISO_LANGUAGE'                          => 'Language [%s]',
103
 
 
104
 
        'LANG_SPECIFIC_OPTIONS'         => 'Language specific options [<strong>%s</strong>]',
105
 
 
106
 
        'MAX_FIELD_CHARS'               => 'Maximum number of characters',
107
 
        'MAX_FIELD_NUMBER'              => 'Highest allowed number',
108
 
        'MIN_FIELD_CHARS'               => 'Minimum number of characters',
109
 
        'MIN_FIELD_NUMBER'              => 'Lowest allowed number',
110
 
 
111
 
        'NO_FIELD_ENTRIES'                      => 'No entries defined',
112
 
        'NO_FIELD_ID'                           => 'No field id specified.',
113
 
        'NO_FIELD_TYPE'                         => 'No Field type specified.',
114
 
        'NO_VALUE_OPTION'                       => 'Option equal to non entered value',
115
 
        'NO_VALUE_OPTION_EXPLAIN'       => 'Value for a non-entry. If the field is required, the user gets an error if he choose the option selected here.',
116
 
        'NUMBERS_ONLY'                          => 'Only numbers (0-9)',
117
 
 
118
 
        'PROFILE_BASIC_OPTIONS'         => 'Basic options',
119
 
        'PROFILE_FIELD_ACTIVATED'       => 'Profile field successfully activated.',
120
 
        'PROFILE_FIELD_DEACTIVATED'     => 'Profile field successfully deactivated.',
121
 
        'PROFILE_LANG_OPTIONS'          => 'Language specific options',
122
 
        'PROFILE_TYPE_OPTIONS'          => 'Profile type specific options',
123
 
 
124
 
        'RADIO_BUTTONS'                         => 'Radio buttons',
125
 
        'REMOVED_PROFILE_FIELD'         => 'Successfully removed profile field.',
126
 
        'REQUIRED_FIELD'                        => 'Required field',
127
 
        'REQUIRED_FIELD_EXPLAIN'        => 'Force profile field to be filled out or specified by user. This will display the profile field at registration and within the user control panel.',
128
 
        'ROWS'                                          => 'Rows',
129
 
 
130
 
        'SAVE'                                                  => 'Save',
131
 
        'SECOND_OPTION'                                 => 'Second option',
132
 
        'STEP_1_EXPLAIN_CREATE'                 => 'Here you can enter the first basic parameters of your new profile field. This information is needed for the second step where you’ll be able to set remaining options and tweak your profile field further.',
133
 
        'STEP_1_EXPLAIN_EDIT'                   => 'Here you can change the basic parameters of your profile field. The relevant options are re-calculated within the second step.',
134
 
        'STEP_1_TITLE_CREATE'                   => 'Add profile field',
135
 
        'STEP_1_TITLE_EDIT'                             => 'Edit profile field',
136
 
        'STEP_2_EXPLAIN_CREATE'                 => 'Here you are able to define some common options you may want to adjust.',
137
 
        'STEP_2_EXPLAIN_EDIT'                   => 'Here you are able to change some common options.<br /><strong>Please note that changes to profile fields will not affect existing profile fields entered by your users.</strong>',
138
 
        'STEP_2_TITLE_CREATE'                   => 'Profile type specific options',
139
 
        'STEP_2_TITLE_EDIT'                             => 'Profile type specific options',
140
 
        'STEP_3_EXPLAIN_CREATE'                 => 'Since you have more than one board language installed, you have to fill out the remaining language items too. The profile field will work with the default language enabled, you are able to fill out the remaining language items later too.',
141
 
        'STEP_3_EXPLAIN_EDIT'                   => 'Since you have more than one board language installed, you now can change or add the remaining language items too. The profile field will work with the default language enabled.',
142
 
        'STEP_3_TITLE_CREATE'                   => 'Remaining language definitions',
143
 
        'STEP_3_TITLE_EDIT'                             => 'Language definitions',
144
 
        'STRING_DEFAULT_VALUE_EXPLAIN'  => 'Enter a default phrase to be displayed, a default value. Leave empty if you want to show it empty at the first place.',
145
 
 
146
 
        'TEXT_DEFAULT_VALUE_EXPLAIN'    => 'Enter a default text to be displayed, a default value. Leave empty if you want to show it empty at the first place.',
147
 
        'TRANSLATE'                                             => 'Translate',
148
 
 
149
 
        'USER_FIELD_NAME'       => 'Field name/title presented to the user',
150
 
 
151
 
        'VISIBILITY_OPTION'                             => 'Visibility option',
152
 
));
153
 
 
154
 
?>
 
 
b'\\ No newline at end of file'