~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
* viewtopic [English]
5
*
6
* @package language
7
* @version $Id: viewtopic.php,v 1.20 2007/10/29 13:39:34 kellanved 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
	'ATTACHMENT'						=> 'Attachment',
40
	'ATTACHMENT_FUNCTIONALITY_DISABLED'	=> 'The attachments feature has been disabled.',
41
42
	'BOOKMARK_ADDED'		=> 'Bookmarked topic successfully.',
43
	'BOOKMARK_REMOVED'		=> 'Removed bookmarked topic successfully.',
44
	'BOOKMARK_TOPIC'		=> 'Bookmark topic',
45
	'BOOKMARK_TOPIC_REMOVE'	=> 'Remove from bookmarks',
46
	'BUMPED_BY'				=> 'Last bumped by %1$s on %2$s.',
47
	'BUMP_TOPIC'			=> 'Bump topic',
48
49
	'CODE'					=> 'Code',
50
51
	'DELETE_TOPIC'			=> 'Delete topic',
52
	'DOWNLOAD_NOTICE'		=> 'You do not have the required permissions to view the files attached to this post.',
53
54
	'EDITED_TIMES_TOTAL'	=> 'Last edited by %1$s on %2$s, edited %3$d times in total.',
55
	'EDITED_TIME_TOTAL'		=> 'Last edited by %1$s on %2$s, edited %3$d time in total.',
56
	'EMAIL_TOPIC'			=> 'E-mail friend',
57
	'ERROR_NO_ATTACHMENT'	=> 'The selected attachment does not exist anymore.',
58
59
	'FILE_NOT_FOUND_404'	=> 'The file <strong>%s</strong> does not exist.',
60
	'FORK_TOPIC'			=> 'Copy topic',
61
62
	'LINKAGE_FORBIDDEN'		=> 'You are not authorised to view, download or link from/to this site.',
63
	'LOGIN_NOTIFY_TOPIC'	=> 'You have been notified about this topic, please login to view it.',
64
	'LOGIN_VIEWTOPIC'		=> 'The board requires you to be registered and logged in to view this topic.',
65
66
	'MAKE_ANNOUNCE'				=> 'Change to “Announcement”',
67
	'MAKE_GLOBAL'				=> 'Change to “Global”',
68
	'MAKE_NORMAL'				=> 'Change to “Standard Topic”',
69
	'MAKE_STICKY'				=> 'Change to “Sticky”',
70
	'MAX_OPTIONS_SELECT'		=> 'You may select up to <strong>%d</strong> options',
71
	'MAX_OPTION_SELECT'			=> 'You may select <strong>1</strong> option',
72
	'MISSING_INLINE_ATTACHMENT'	=> 'The attachment <strong>%s</strong> is no longer available',
73
	'MOVE_TOPIC'				=> 'Move topic',
74
75
	'NO_ATTACHMENT_SELECTED'=> 'You haven’t selected an attachment to download or view.',
76
	'NO_NEWER_TOPICS'		=> 'There are no newer topics in this forum.',
77
	'NO_OLDER_TOPICS'		=> 'There are no older topics in this forum.',
78
	'NO_UNREAD_POSTS'		=> 'There are no new unread posts for this topic.',
79
	'NO_VOTE_OPTION'		=> 'You must specify an option when voting.',
80
	'NO_VOTES'				=> 'No votes',
81
82
	'POLL_ENDED_AT'			=> 'Poll ended at %s',
83
	'POLL_RUN_TILL'			=> 'Poll runs till %s',
84
	'POLL_VOTED_OPTION'		=> 'You voted for this option',
85
	'PRINT_TOPIC'			=> 'Print view',
86
87
	'QUICK_MOD'				=> 'Quick-mod tools',
88
	'QUOTE'					=> 'Quote',
89
90
	'REPLY_TO_TOPIC'		=> 'Reply to topic',
91
	'RETURN_POST'			=> '%sReturn to the post%s',
92
93
	'SUBMIT_VOTE'			=> 'Submit vote',
94
95
	'TOTAL_VOTES'			=> 'Total votes',
96
97
	'UNLOCK_TOPIC'			=> 'Unlock topic',
98
99
	'VIEW_INFO'				=> 'Post details',
100
	'VIEW_NEXT_TOPIC'		=> 'Next topic',
101
	'VIEW_PREVIOUS_TOPIC'	=> 'Previous topic',
102
	'VIEW_RESULTS'			=> 'View results',
103
	'VIEW_TOPIC_POST'		=> '1 post',
104
	'VIEW_TOPIC_POSTS'		=> '%d posts',
105
	'VIEW_UNREAD_POST'		=> 'First unread post',
106
	'VISIT_WEBSITE'			=> 'WWW',
107
	'VOTE_SUBMITTED'		=> 'Your vote has been cast.',
108
	'VOTE_CONVERTED'		=> 'Changing votes is not supported for converted polls.',
109
110
));
111
112
?>