Blame Identity/Models/Html/phpBB/3.0.4/language/en/acp/language.php

d6e8d8
d6e8d8
/**
d6e8d8
*
d6e8d8
* acp_language [English]
d6e8d8
*
d6e8d8
* @package language
d6e8d8
* @version $Id: language.php 8479 2008-03-29 00:22:48Z naderman $
d6e8d8
* @copyright (c) 2005 phpBB Group
d6e8d8
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
d6e8d8
*
d6e8d8
*/
d6e8d8
d6e8d8
/**
d6e8d8
* DO NOT CHANGE
d6e8d8
*/
d6e8d8
if (!defined('IN_PHPBB'))
d6e8d8
{
d6e8d8
	exit;
d6e8d8
}
d6e8d8
d6e8d8
if (empty($lang) || !is_array($lang))
d6e8d8
{
d6e8d8
	$lang = array();
d6e8d8
}
d6e8d8
d6e8d8
// DEVELOPERS PLEASE NOTE
d6e8d8
//
d6e8d8
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
d6e8d8
//
d6e8d8
// Placeholders can now contain order information, e.g. instead of
d6e8d8
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
d6e8d8
// translators to re-order the output of data while ensuring it remains correct
d6e8d8
//
d6e8d8
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
d6e8d8
// equally where a string contains only two placeholders which are used to wrap text
d6e8d8
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
d6e8d8
d6e8d8
$lang = array_merge($lang, array(
d6e8d8
	'ACP_FILES'						=> 'Admin language files',
d6e8d8
	'ACP_LANGUAGE_PACKS_EXPLAIN'	=> 'Here you are able to install/remove language packs.',
d6e8d8
d6e8d8
	'EMAIL_FILES'			=> 'E-mail templates',
d6e8d8
d6e8d8
	'FILE_CONTENTS'				=> 'File contents',
d6e8d8
	'FILE_FROM_STORAGE'			=> 'File from storage folder',
d6e8d8
d6e8d8
	'HELP_FILES'				=> 'Help files',
d6e8d8
d6e8d8
	'INSTALLED_LANGUAGE_PACKS'	=> 'Installed language packs',
d6e8d8
	'INVALID_LANGUAGE_PACK'		=> 'The selected language pack seems to be not valid. Please verify the language pack and upload it again if necessary.',
d6e8d8
	'INVALID_UPLOAD_METHOD'		=> 'The selected upload method is not valid, please choose a different method.',
d6e8d8
d6e8d8
	'LANGUAGE_DETAILS_UPDATED'			=> 'Language details successfully updated.',
d6e8d8
	'LANGUAGE_ENTRIES'					=> 'Language entries',
d6e8d8
	'LANGUAGE_ENTRIES_EXPLAIN'			=> 'Here you are able to change existing language pack entries or not already translated ones.
Note: Once you changed a language file, the changes will be stored within a separate folder for you to download. The changes will not be seen by your users until you replace the original language files at your webspace (by uploading them).',
d6e8d8
	'LANGUAGE_FILES'					=> 'Language files',
d6e8d8
	'LANGUAGE_KEY'						=> 'Language key',
d6e8d8
	'LANGUAGE_PACK_ALREADY_INSTALLED'	=> 'This language pack is already installed.',
d6e8d8
	'LANGUAGE_PACK_DELETED'				=> 'The language pack %s has been removed successfully. All users using this language have been reset to the boards default language.',
d6e8d8
	'LANGUAGE_PACK_DETAILS'				=> 'Language pack details',
d6e8d8
	'LANGUAGE_PACK_INSTALLED'			=> 'The language pack %s has been successfully installed.',
d6e8d8
	'LANGUAGE_PACK_ISO'					=> 'ISO',
d6e8d8
	'LANGUAGE_PACK_LOCALNAME'			=> 'Local name',
d6e8d8
	'LANGUAGE_PACK_NAME'				=> 'Name',
d6e8d8
	'LANGUAGE_PACK_NOT_EXIST'			=> 'The selected language pack does not exist.',
d6e8d8
	'LANGUAGE_PACK_USED_BY'				=> 'Used by (including robots)',
d6e8d8
	'LANGUAGE_VARIABLE'					=> 'Language variable',
d6e8d8
	'LANG_AUTHOR'						=> 'Language pack author',
d6e8d8
	'LANG_ENGLISH_NAME'					=> 'English name',
d6e8d8
	'LANG_ISO_CODE'						=> 'ISO code',
d6e8d8
	'LANG_LOCAL_NAME'					=> 'Local name',
d6e8d8
d6e8d8
	'MISSING_LANGUAGE_FILE'		=> 'Missing language file: %s',
d6e8d8
	'MISSING_LANG_VARIABLES'	=> 'Missing language variables',
d6e8d8
	'MODS_FILES'				=> 'MODs language files',
d6e8d8
d6e8d8
	'NO_FILE_SELECTED'				=> 'You haven’t specified a language file.',
d6e8d8
	'NO_LANG_ID'					=> 'You haven’t specified a language pack.',
d6e8d8
	'NO_REMOVE_DEFAULT_LANG'		=> 'You are not able to remove the default language pack.
If you want to remove this language pack, change your boards default language first.',
d6e8d8
	'NO_UNINSTALLED_LANGUAGE_PACKS'	=> 'No uninstalled language packs',
d6e8d8
d6e8d8
	'REMOVE_FROM_STORAGE_FOLDER'		=> 'Remove from storage folder',
d6e8d8
d6e8d8
	'SELECT_DOWNLOAD_FORMAT'	=> 'Select download format',
d6e8d8
	'SUBMIT_AND_DOWNLOAD'		=> 'Submit and download file',
d6e8d8
	'SUBMIT_AND_UPLOAD'			=> 'Submit and upload file',
d6e8d8
d6e8d8
	'THOSE_MISSING_LANG_FILES'			=> 'The following language files are missing from the %s language folder',
d6e8d8
	'THOSE_MISSING_LANG_VARIABLES'		=> 'The following language variables are missing from the %s language pack',
d6e8d8
d6e8d8
	'UNINSTALLED_LANGUAGE_PACKS'	=> 'Uninstalled language packs',
d6e8d8
d6e8d8
	'UNABLE_TO_WRITE_FILE'		=> 'The file could not be written to %s.',
d6e8d8
	'UPLOAD_COMPLETED'			=> 'The upload was completed successfully.',
d6e8d8
	'UPLOAD_FAILED'				=> 'The upload failed for unknown reasons. You may need to replace the relevant file manually.',
d6e8d8
	'UPLOAD_METHOD'				=> 'Upload method',
d6e8d8
	'UPLOAD_SETTINGS'			=> 'Upload settings',
d6e8d8
d6e8d8
	'WRONG_LANGUAGE_FILE'		=> 'Selected language file is invalid.',
d6e8d8
));
d6e8d8
d6e8d8
?>