Blame Extras/phpBB/3.0.4/language/en/acp/profile.php

4c79b5
4c79b5
/**
4c79b5
*
4c79b5
* acp_profile [English]
4c79b5
*
4c79b5
* @package language
4c79b5
* @version $Id: profile.php 9128 2008-11-26 20:10:29Z acydburn $
4c79b5
* @copyright (c) 2005 phpBB Group
4c79b5
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
4c79b5
*
4c79b5
*/
4c79b5
4c79b5
/**
4c79b5
* DO NOT CHANGE
4c79b5
*/
4c79b5
if (!defined('IN_PHPBB'))
4c79b5
{
4c79b5
	exit;
4c79b5
}
4c79b5
4c79b5
if (empty($lang) || !is_array($lang))
4c79b5
{
4c79b5
	$lang = array();
4c79b5
}
4c79b5
4c79b5
// DEVELOPERS PLEASE NOTE
4c79b5
//
4c79b5
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
4c79b5
//
4c79b5
// Placeholders can now contain order information, e.g. instead of
4c79b5
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
4c79b5
// translators to re-order the output of data while ensuring it remains correct
4c79b5
//
4c79b5
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
4c79b5
// equally where a string contains only two placeholders which are used to wrap text
4c79b5
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
4c79b5
4c79b5
// Custom profile fields
4c79b5
$lang = array_merge($lang, array(
4c79b5
	'ADDED_PROFILE_FIELD'	=> 'Successfully added custom profile field.',
4c79b5
	'ALPHA_ONLY'			=> 'Alphanumeric only',
4c79b5
	'ALPHA_SPACERS'			=> 'Alphanumeric and spacers',
4c79b5
	'ALWAYS_TODAY'			=> 'Always the current date',
4c79b5
4c79b5
	'BOOL_ENTRIES_EXPLAIN'	=> 'Enter your options now',
4c79b5
	'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 second language option will be used. Radio buttons will display regardless of their value.',
4c79b5
4c79b5
	'CHANGED_PROFILE_FIELD'		=> 'Successfully changed profile field.',
4c79b5
	'CHARS_ANY'					=> 'Any character',
4c79b5
	'CHECKBOX'					=> 'Checkbox',
4c79b5
	'COLUMNS'					=> 'Columns',
4c79b5
	'CP_LANG_DEFAULT_VALUE'		=> 'Default value',
4c79b5
	'CP_LANG_EXPLAIN'			=> 'Field description',
4c79b5
	'CP_LANG_EXPLAIN_EXPLAIN'	=> 'The explanation for this field presented to the user.',
4c79b5
	'CP_LANG_NAME'				=> 'Field name/title presented to the user',
4c79b5
	'CP_LANG_OPTIONS'			=> 'Options',
4c79b5
	'CREATE_NEW_FIELD'			=> 'Create new field',
4c79b5
	'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.',
4c79b5
4c79b5
	'DEFAULT_ISO_LANGUAGE'			=> 'Default language [%s]',
4c79b5
	'DEFAULT_LANGUAGE_NOT_FILLED'	=> 'The language entries for the default language are not filled for this profile field.',
4c79b5
	'DEFAULT_VALUE'					=> 'Default value',
4c79b5
	'DELETE_PROFILE_FIELD'			=> 'Remove profile field',
4c79b5
	'DELETE_PROFILE_FIELD_CONFIRM'	=> 'Are you sure you want to delete this profile field?',
4c79b5
	'DISPLAY_AT_PROFILE'			=> 'Display in user control panel',
4c79b5
	'DISPLAY_AT_PROFILE_EXPLAIN'	=> 'The user is able to change this profile field within the user control panel.',
4c79b5
	'DISPLAY_AT_REGISTER'			=> 'Display on registration screen',
4c79b5
	'DISPLAY_AT_REGISTER_EXPLAIN'	=> 'If this option is enabled, the field will be displayed on registration.',
4c79b5
	'DISPLAY_PROFILE_FIELD'			=> 'Display profile field',
4c79b5
	'DISPLAY_PROFILE_FIELD_EXPLAIN'	=> 'The profile field will be shown in all locations allowed within the load settings. Setting this to “no” will hide the field from topic pages, profiles and the memberlist.',
4c79b5
	'DROPDOWN_ENTRIES_EXPLAIN'		=> 'Enter your options now, every option in one line.',
4c79b5
4c79b5
	'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.',
4c79b5
	'EMPTY_FIELD_IDENT'				=> 'Empty field identification',
4c79b5
	'EMPTY_USER_FIELD_NAME'			=> 'Please enter a field name/title',
4c79b5
	'ENTRIES'						=> 'Entries',
4c79b5
	'EVERYTHING_OK'					=> 'Everything OK',
4c79b5
4c79b5
	'FIELD_BOOL'				=> 'Boolean (Yes/No)',
4c79b5
	'FIELD_DATE'				=> 'Date',
4c79b5
	'FIELD_DESCRIPTION'			=> 'Field description',
4c79b5
	'FIELD_DESCRIPTION_EXPLAIN'	=> 'The explanation for this field presented to the user.',
4c79b5
	'FIELD_DROPDOWN'			=> 'Dropdown box',
4c79b5
	'FIELD_IDENT'				=> 'Field identification',
4c79b5
	'FIELD_IDENT_ALREADY_EXIST'	=> 'The chosen field identification already exist. Please choose another name.',
4c79b5
	'FIELD_IDENT_EXPLAIN'		=> 'The field identification is a name to identify the profile field within the database and the templates.',
4c79b5
	'FIELD_INT'					=> 'Numbers',
4c79b5
	'FIELD_LENGTH'				=> 'Length of input box',
4c79b5
	'FIELD_NOT_FOUND'			=> 'Profile field not found.',
4c79b5
	'FIELD_STRING'				=> 'Single text field',
4c79b5
	'FIELD_TEXT'				=> 'Textarea',
4c79b5
	'FIELD_TYPE'				=> 'Field type',
4c79b5
	'FIELD_TYPE_EXPLAIN'		=> 'You are not able to change the field type later.',
4c79b5
	'FIELD_VALIDATION'			=> 'Field validation',
4c79b5
	'FIRST_OPTION'				=> 'First option',
4c79b5
4c79b5
	'HIDE_PROFILE_FIELD'			=> 'Hide profile field',
4c79b5
	'HIDE_PROFILE_FIELD_EXPLAIN'	=> 'Hide the profile field from all other users except the user, administrators and moderators who are still able to see this field. If the Display in user control panel option is disabled, the user will not be able to see or change this field and the field can only be changed by administrators.',
4c79b5
4c79b5
	'INVALID_CHARS_FIELD_IDENT'	=> 'Field identification can only contain lowercase a-z and _',
4c79b5
	'INVALID_FIELD_IDENT_LEN'	=> 'Field identification can only be 17 characters long',
4c79b5
	'ISO_LANGUAGE'				=> 'Language [%s]',
4c79b5
4c79b5
	'LANG_SPECIFIC_OPTIONS'		=> 'Language specific options [%s]',
4c79b5
4c79b5
	'MAX_FIELD_CHARS'		=> 'Maximum number of characters',
4c79b5
	'MAX_FIELD_NUMBER'		=> 'Highest allowed number',
4c79b5
	'MIN_FIELD_CHARS'		=> 'Minimum number of characters',
4c79b5
	'MIN_FIELD_NUMBER'		=> 'Lowest allowed number',
4c79b5
4c79b5
	'NO_FIELD_ENTRIES'			=> 'No entries defined',
4c79b5
	'NO_FIELD_ID'				=> 'No field id specified.',
4c79b5
	'NO_FIELD_TYPE'				=> 'No Field type specified.',
4c79b5
	'NO_VALUE_OPTION'			=> 'Option equal to non entered value',
4c79b5
	'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.',
4c79b5
	'NUMBERS_ONLY'				=> 'Only numbers (0-9)',
4c79b5
4c79b5
	'PROFILE_BASIC_OPTIONS'		=> 'Basic options',
4c79b5
	'PROFILE_FIELD_ACTIVATED'	=> 'Profile field successfully activated.',
4c79b5
	'PROFILE_FIELD_DEACTIVATED'	=> 'Profile field successfully deactivated.',
4c79b5
	'PROFILE_LANG_OPTIONS'		=> 'Language specific options',
4c79b5
	'PROFILE_TYPE_OPTIONS'		=> 'Profile type specific options',
4c79b5
4c79b5
	'RADIO_BUTTONS'				=> 'Radio buttons',
4c79b5
	'REMOVED_PROFILE_FIELD'		=> 'Successfully removed profile field.',
4c79b5
	'REQUIRED_FIELD'			=> 'Required field',
4c79b5
	'REQUIRED_FIELD_EXPLAIN'	=> 'Force profile field to be filled out or specified by user or administrator. If display at registration screen option is disabled, the field will only be required when the user edits their profile.',
4c79b5
	'ROWS'						=> 'Rows',
4c79b5
4c79b5
	'SAVE'							=> 'Save',
4c79b5
	'SECOND_OPTION'					=> 'Second option',
4c79b5
	'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.',
4c79b5
	'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.',
4c79b5
	'STEP_1_TITLE_CREATE'			=> 'Add profile field',
4c79b5
	'STEP_1_TITLE_EDIT'				=> 'Edit profile field',
4c79b5
	'STEP_2_EXPLAIN_CREATE'			=> 'Here you are able to define some common options you may want to adjust.',
4c79b5
	'STEP_2_EXPLAIN_EDIT'			=> 'Here you are able to change some common options.
Please note that changes to profile fields will not affect existing profile fields entered by your users.',
4c79b5
	'STEP_2_TITLE_CREATE'			=> 'Profile type specific options',
4c79b5
	'STEP_2_TITLE_EDIT'				=> 'Profile type specific options',
4c79b5
	'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.',
4c79b5
	'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.',
4c79b5
	'STEP_3_TITLE_CREATE'			=> 'Remaining language definitions',
4c79b5
	'STEP_3_TITLE_EDIT'				=> 'Language definitions',
4c79b5
	'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.',
4c79b5
4c79b5
	'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.',
4c79b5
	'TRANSLATE'						=> 'Translate',
4c79b5
4c79b5
	'USER_FIELD_NAME'	=> 'Field name/title presented to the user',
4c79b5
4c79b5
	'VISIBILITY_OPTION'				=> 'Visibility options',
4c79b5
));
4c79b5
4c79b5
?>