1 | <?php
|
---|
2 | /**
|
---|
3 | *
|
---|
4 | * viewforum [English]
|
---|
5 | *
|
---|
6 | * @package language
|
---|
7 | * @version $Id: viewforum.php 8479 2008-03-29 00:22:48Z naderman $
|
---|
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 | 'ACTIVE_TOPICS' => 'Active topics',
|
---|
40 | 'ANNOUNCEMENTS' => 'Announcements',
|
---|
41 |
|
---|
42 | 'FORUM_PERMISSIONS' => 'Forum permissions',
|
---|
43 |
|
---|
44 | 'ICON_ANNOUNCEMENT' => 'Announcement',
|
---|
45 | 'ICON_STICKY' => 'Sticky',
|
---|
46 |
|
---|
47 | 'LOGIN_NOTIFY_FORUM' => 'You have been notified about this forum, please login to view it.',
|
---|
48 |
|
---|
49 | 'MARK_TOPICS_READ' => 'Mark topics read',
|
---|
50 |
|
---|
51 | 'NEW_POSTS_HOT' => 'New posts [ Popular ]',
|
---|
52 | 'NEW_POSTS_LOCKED' => 'New posts [ Locked ]',
|
---|
53 | 'NO_NEW_POSTS_HOT' => 'No new posts [ Popular ]',
|
---|
54 | 'NO_NEW_POSTS_LOCKED' => 'No new posts [ Locked ]',
|
---|
55 | 'NO_READ_ACCESS' => 'You do not have the required permissions to read topics within this forum.',
|
---|
56 |
|
---|
57 | 'POST_FORUM_LOCKED' => 'Forum is locked',
|
---|
58 |
|
---|
59 | 'TOPICS_MARKED' => 'The topics for this forum have now been marked read.',
|
---|
60 |
|
---|
61 | 'VIEW_FORUM' => 'View forum',
|
---|
62 | 'VIEW_FORUM_TOPIC' => '1 topic',
|
---|
63 | 'VIEW_FORUM_TOPICS' => '%d topics',
|
---|
64 | ));
|
---|
65 |
|
---|
66 | ?>
|
---|