1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-05 08:17:47 +02:00

- for bart to work on...

git-svn-id: file:///svn/phpbb/trunk@4916 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen
2004-06-15 18:01:59 +00:00
parent 8022b6f6b2
commit 5cb3baf33b
3 changed files with 365 additions and 374 deletions

View File

@@ -2023,4 +2023,90 @@ $lang += array(
'ERR_BOT_NO_IP' => 'The IP addresses you supplied were invalid or the hostname could not be resolved.',
);
// Custom profile fields
$lang += array(
'FIELD_INT' => 'Numbers',
'FIELD_STRING' => 'Single Textfield',
'FIELD_TEXT' => 'Textarea',
'FIELD_BOOL' => 'Boolean (Yes/No)',
'FIELD_DROPDOWN'=> 'Dropdown Box',
'FIELD_DATE' => 'Date',
'NO_FIELD_TYPE' => 'No Field type specified',
'FIRST_OPTION' => 'First Option',
'SECOND_OPTION' => 'Second Option',
'EMPTY_FIELD_NAME' => 'Empty field name',
'EMPTY_USER_FIELD_NAME' => 'Empty Field Name presented to the user',
'FIELD_IDENT_ALREADY_EXIST' => 'Field identifier %s already exist, please choose another Field Name.',
'NEXT_PAGE' => 'Next Page',
'PREVIOUS_PAGE' => 'Previous Page',
'STEP_1_TITLE' => 'Add Profile Field',
'STEP_1_EXPLAIN' => 'Here you can enter the first basic parameters of your new profile field. These informations are needed for the second step where you are able to set remaining options and where you are able to preview and tweak your profile field further.',
'STEP_2_TITLE' => 'Profile type specific options',
'STEP_2_EXPLAIN' => 'Here you are able to define some common options. Further you are able to preview the field you generated, as the user will see it. Play around with it until you are satisfied as how the field behaves.',
'STEP_3_TITLE' => 'Remaining Language Definitions',
'STEP_3_EXPLAIN' => '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.',
'ROWS' => 'Rows',
'COLUMNS' => 'Columns',
'UPDATE_PREVIEW' => 'Update Preview',
'PREVIEW_PROFILE_FIELD' => 'Preview Profile Field',
'EVERYTHING_OK' => 'Everything OK',
'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.',
'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.',
'BOOL_ENTRIES_EXPLAIN' => 'Enter your options now',
'DROPDOWN_ENTRIES_EXPLAIN' => 'Enter your options now, every option in one line',
'REQUIRED_FIELD' => 'Required Field',
'REQUIRED_FIELD_EXPLAIN' => 'Force profile field to be filled out or specified by user',
'DISPLAY_AT_REGISTRATION' => 'Display at registration screen',
'HIDE_PROFILE_FIELD' => 'Hide Profile Field',
'HIDE_PROFILE_FIELD_EXPLAIN'=> 'Only Administrators and Moderators are able to see/fill out this profile field',
'ADDED_PROFILE_FIELD' => 'Successfully added custom profile field',
'CREATE_NEW_FIELD' => 'Create New Field',
'DELETED_PROFILE_FIELD' => 'Successfully deleted profile field.',
'CONFIRM_DELETE_PROFILE_FIELD' => 'Are you sure you want to delete this profile field?',
'PROFILE_FIELD_ACTIVATED' => 'Profile field successfully activated',
'PROFILE_FIELD_DEACTIVATED' => 'Profile field successfully deactivated',
'CHARS_ANY' => 'Any character',
'NUMBERS_ONLY' => 'Only numbers (0-9)',
'ALPHA_ONLY' => 'Alphanumeric only',
'ALPHA_SPACERS' => 'Alphanumeric and spacers',
'FIELD_TYPE' => 'Field Type',
'FIELD_TYPE_EXPLAIN' => 'You are not able to change the field type later.',
'FIELD_NAME' => 'Field Name',
'FIELD_NAME_EXPLAIN' => 'The Field Name is a name for you to identify the profile field, it is not displayed to the user. You are able to use this name as template variable later.',
'LANG_SPECIFIC_OPTIONS' => 'Language specific options [<b>%s</b>]',
'USER_FIELD_NAME' => 'Field Name presented to the user',
'FIELD_DESCRIPTION' => 'Field Description',
'FIELD_DESCRIPTION_EXPLAIN' => 'The Explanation for this field presented to the user',
'CP_LANG_NAME' => 'Field Name presented to the user',
'CP_LANG_EXPLAIN' => 'Field Description',
'CP_LANG_EXPLAIN_EXPLAIN' => 'The Explanation for this field presented to the user',
'CP_LANG_DEFAULT_VALUE' => 'Default Value',
'CP_LANG_OPTIONS' => 'Options',
'FIELD_LENGTH' => 'Length of input box',
'MIN_FIELD_CHARS' => 'Minimum number of characters',
'MAX_FIELD_CHARS' => 'Maximum number of characters',
'MIN_FIELD_NUMBER' => 'Lowest allowed number',
'MAX_FIELD_NUMBER' => 'Highest allowed number',
'DEFAULT_VALUE' => 'Default Value',
'FIELD_VALIDATION' => 'Field Validation',
'ENTRIES' => 'Entries',
'BOOL_TYPE_EXPLAIN' => 'Define the Type, either a checkbox or radio buttons',
'RADIO_BUTTONS' => 'Radio Buttons',
'CHECKBOX' => 'Checkbox',
'NO_VALUE_OPTION' => 'Option equal to non entered value',
'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',
'ALWAYS_TODAY' => 'Always the current date',
'DEFAULT_ISO_LANGUAGE' => 'Default Language [%s]',
'ISO_LANGUAGE' => 'Language [%s]',
);
?>