Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 76
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2/**
3*
4* This file is part of the phpBB Forum Software package.
5*
6* @copyright (c) phpBB Limited <https://www.phpbb.com>
7* @license GNU General Public License, version 2 (GPL-2.0)
8*
9* For full copyright and license information, please see
10* the docs/CREDITS.txt file.
11*
12*/
13
14/**
15* DO NOT CHANGE
16*/
17if (!defined('IN_PHPBB'))
18{
19    exit;
20}
21
22if (empty($lang) || !is_array($lang))
23{
24    $lang = array();
25}
26
27// DEVELOPERS PLEASE NOTE
28//
29// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
30//
31// Placeholders can now contain order information, e.g. instead of
32// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
33// translators to re-order the output of data while ensuring it remains correct
34//
35// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
36// equally where a string contains only two placeholders which are used to wrap text
37// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
38
39$lang = array_merge($lang, array(
40    'APPROVE'                                => 'Approve',
41    'ATTACHMENT'                        => 'Attachment',
42    'ATTACHMENT_FUNCTIONALITY_DISABLED'    => 'The attachments feature has been disabled.',
43
44    'BOOKMARK_ADDED'        => 'Bookmarked topic successfully.',
45    'BOOKMARK_ERR'            => 'Bookmarking the topic failed. Please try again.',
46    'BOOKMARK_REMOVED'        => 'Removed bookmarked topic successfully.',
47    'BOOKMARK_TOPIC'        => 'Bookmark topic',
48    'BOOKMARK_TOPIC_REMOVE'    => 'Remove from bookmarks',
49    'BUMPED_BY'                => 'Last bumped by %1$s on %2$s.',
50    'BUMP_TOPIC'            => 'Bump topic',
51
52    'DELETE_TOPIC'            => 'Delete topic',
53    'DELETED_INFORMATION'    => 'Deleted by %1$s on %2$s',
54    'DISAPPROVE'                    => 'Disapprove',
55    'DOWNLOAD_NOTICE'        => 'You do not have the required permissions to view the files attached to this post.',
56
57    'EDITED_TIMES_TOTAL'    => array(
58        1    => 'Last edited by %2$s on %3$s, edited %1$d time in total.',
59        2    => 'Last edited by %2$s on %3$s, edited %1$d times in total.',
60    ),
61    'EMAIL_TOPIC'            => 'Email topic',
62    'ERROR_NO_ATTACHMENT'    => 'The selected attachment does not exist anymore.',
63
64    'FILE_NOT_FOUND_404'    => 'The file <strong>%s</strong> does not exist.',
65    'FORK_TOPIC'            => 'Copy topic',
66    'FULL_EDITOR'            => 'Full Editor &amp; Preview',
67
68    'LINKAGE_FORBIDDEN'        => 'You are not authorised to view, download or link from/to this site.',
69    'LOGIN_NOTIFY_TOPIC'    => 'You have been notified about this topic, please login to view it.',
70    'LOGIN_VIEWTOPIC'        => 'The board requires you to be registered and logged in to view this topic.',
71
72    'MAKE_ANNOUNCE'                => 'Change to “Announcement”',
73    'MAKE_GLOBAL'                => 'Change to “Global”',
74    'MAKE_NORMAL'                => 'Change to “Standard Topic”',
75    'MAKE_STICKY'                => 'Change to “Sticky”',
76    'MAX_OPTIONS_SELECT'        => array(
77        1    => 'You may select <strong>%d</strong> option',
78        2    => 'You may select up to <strong>%d</strong> options',
79    ),
80    'MISSING_INLINE_ATTACHMENT'    => 'The attachment <strong>%s</strong> is no longer available',
81    'MOVE_TOPIC'                => 'Move topic',
82
83    'NO_ATTACHMENT_SELECTED'=> 'You haven’t selected an attachment to download or view.',
84    'NO_NEWER_TOPICS'        => 'There are no newer topics in this forum.',
85    'NO_OLDER_TOPICS'        => 'There are no older topics in this forum.',
86    'NO_UNREAD_POSTS'        => 'There are no new unread posts for this topic.',
87    'NO_VOTE_OPTION'        => 'You must specify an option when voting.',
88    'NO_VOTES'                => 'No votes',
89    'NO_AUTH_PRINT_TOPIC'    => 'You are not authorised to print topics.',
90
91    'POLL_ENDED_AT'            => 'Poll ended at %s',
92    'POLL_RUN_TILL'            => 'Poll runs till %s',
93    'POLL_VOTED_OPTION'        => 'You voted for this option',
94    'POST_DELETED_RESTORE'    => 'This post has been deleted. It can be restored.',
95    'PRINT_TOPIC'            => 'Print view',
96
97    'QUICK_MOD'                => 'Quick-mod tools',
98    'QUICKREPLY'            => 'Quick Reply',
99
100    'REPLY_TO_TOPIC'        => 'Reply to topic',
101    'RESTORE'                => 'Restore',
102    'RESTORE_TOPIC'            => 'Restore topic',
103    'RETURN_POST'            => '%sReturn to the post%s',
104
105    'SUBMIT_VOTE'            => 'Submit vote',
106
107    'TOPIC_TOOLS'            => 'Topic tools',
108    'TOTAL_VOTES'            => 'Total votes',
109
110    'UNLOCK_TOPIC'            => 'Unlock topic',
111
112    'VIEW_INFO'                => 'Post details',
113    'VIEW_NEXT_TOPIC'        => 'Next topic',
114    'VIEW_PREVIOUS_TOPIC'    => 'Previous topic',
115    'VIEW_QUOTED_POST'        => 'View quoted post',
116    'VIEW_RESULTS'            => 'View results',
117    'VIEW_TOPIC_POSTS'        => array(
118        1    => '%d post',
119        2    => '%d posts',
120    ),
121    'VIEW_UNREAD_POST'        => 'First unread post',
122    'VOTE_SUBMITTED'        => 'Your vote has been cast.',
123    'VOTE_CONVERTED'        => 'Changing votes is not supported for converted polls.',
124
125));