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

443 by dcoles
Added Forum application along with unmodifed version of phpBB3 "Olympus" 3.0.0
1
<?php
2
/**
3
*
4
* acp_language [English]
5
*
6
* @package language
7
* @version $Id: language.php,v 1.16 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
$lang = array_merge($lang, array(
39
	'ACP_FILES'						=> 'Admin language files',
40
	'ACP_LANGUAGE_PACKS_EXPLAIN'	=> 'Here you are able to install/remove language packs.',
41
42
	'EMAIL_FILES'			=> 'E-mail templates',
43
44
	'FILE_CONTENTS'				=> 'File contents',
45
	'FILE_FROM_STORAGE'			=> 'File from storage folder',
46
47
	'HELP_FILES'				=> 'Help files',
48
49
	'INSTALLED_LANGUAGE_PACKS'	=> 'Installed language packs',
50
	'INVALID_LANGUAGE_PACK'		=> 'The selected language pack seems to be not valid. Please verify the language pack and upload it again if necessary.',
51
	'INVALID_UPLOAD_METHOD'		=> 'The selected upload method is not valid, please choose a different method.',
52
53
	'LANGUAGE_DETAILS_UPDATED'			=> 'Language details successfully updated.',
54
	'LANGUAGE_ENTRIES'					=> 'Language entries',
55
	'LANGUAGE_ENTRIES_EXPLAIN'			=> 'Here you are able to change existing language pack entries or not already translated ones.<br /><strong>Note:</strong> 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).',
56
	'LANGUAGE_FILES'					=> 'Language files',
57
	'LANGUAGE_KEY'						=> 'Language key',
58
	'LANGUAGE_PACK_ALREADY_INSTALLED'	=> 'This language pack is already installed.',
59
	'LANGUAGE_PACK_DELETED'				=> 'The language pack <strong>%s</strong> has been removed successfully. All users using this language have been reset to the boards default language.',
60
	'LANGUAGE_PACK_DETAILS'				=> 'Language pack details',
61
	'LANGUAGE_PACK_INSTALLED'			=> 'The language pack <strong>%s</strong> has been successfully installed.',
62
	'LANGUAGE_PACK_ISO'					=> 'ISO',
63
	'LANGUAGE_PACK_LOCALNAME'			=> 'Local name',
64
	'LANGUAGE_PACK_NAME'				=> 'Name',
65
	'LANGUAGE_PACK_NOT_EXIST'			=> 'The selected language pack does not exist.',
66
	'LANGUAGE_PACK_USED_BY'				=> 'Used by (including robots)',
67
	'LANGUAGE_VARIABLE'					=> 'Language variable',
68
	'LANG_AUTHOR'						=> 'Language pack author',
69
	'LANG_ENGLISH_NAME'					=> 'English name',
70
	'LANG_ISO_CODE'						=> 'ISO code',
71
	'LANG_LOCAL_NAME'					=> 'Local name',
72
73
	'MISSING_LANGUAGE_FILE'		=> 'Missing language file: <strong style="color:red">%s</strong>',
74
	'MISSING_LANG_VARIABLES'	=> 'Missing language variables',
75
	'MODS_FILES'				=> 'MODs language files',
76
77
	'NO_FILE_SELECTED'				=> 'You haven’t specified a language file.',
78
	'NO_LANG_ID'					=> 'You haven’t specified a language pack.',
79
	'NO_REMOVE_DEFAULT_LANG'		=> 'You are not able to remove the default language pack.<br />If you want to remove this language pack, change your boards default language first.',
80
	'NO_UNINSTALLED_LANGUAGE_PACKS'	=> 'No uninstalled language packs',
81
82
	'REMOVE_FROM_STORAGE_FOLDER'		=> 'Remove from storage folder',
83
84
	'SELECT_DOWNLOAD_FORMAT'	=> 'Select download format',
85
	'SUBMIT_AND_DOWNLOAD'		=> 'Submit and download file',
86
	'SUBMIT_AND_UPLOAD'			=> 'Submit and upload file',
87
88
	'THOSE_MISSING_LANG_FILES'			=> 'The following language files are missing from the %s language folder',
89
	'THOSE_MISSING_LANG_VARIABLES'		=> 'The following language variables are missing from the <strong>%s</strong> language pack',
90
91
	'UNINSTALLED_LANGUAGE_PACKS'	=> 'Uninstalled language packs',
92
93
	'UNABLE_TO_WRITE_FILE'		=> 'The file could not be written to %s.',
94
	'UPLOAD_COMPLETED'			=> 'The upload was completed successfully.',
95
	'UPLOAD_FAILED'				=> 'The upload failed for unknown reasons. You may need to replace the relevant file manually.',
96
	'UPLOAD_METHOD'				=> 'Upload method',
97
	'UPLOAD_SETTINGS'			=> 'Upload settings',
98
99
	'WRONG_LANGUAGE_FILE'		=> 'Selected language file is invalid.',
100
));
101
102
?>