Blame Identity/Webenv/phpBB/3.0.4/language/en/acp/language.php

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