diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2004-02-28 21:16:15 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2004-02-28 21:16:15 +0000 |
commit | 52cc21864c570170067e8d81d1af1f8d1a2a0291 (patch) | |
tree | efcfe680c390b4f581a1758292a639b2f3da74f0 /phpBB/language/en/viewforum.php | |
parent | 77dedf68a070197bdc4ace8809ab49b2df945847 (diff) | |
download | forums-52cc21864c570170067e8d81d1af1f8d1a2a0291.tar forums-52cc21864c570170067e8d81d1af1f8d1a2a0291.tar.gz forums-52cc21864c570170067e8d81d1af1f8d1a2a0291.tar.bz2 forums-52cc21864c570170067e8d81d1af1f8d1a2a0291.tar.xz forums-52cc21864c570170067e8d81d1af1f8d1a2a0291.zip |
splitted language files
git-svn-id: file:///svn/phpbb/trunk@4844 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/language/en/viewforum.php')
-rw-r--r-- | phpBB/language/en/viewforum.php | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/phpBB/language/en/viewforum.php b/phpBB/language/en/viewforum.php new file mode 100644 index 0000000000..8587e39ced --- /dev/null +++ b/phpBB/language/en/viewforum.php @@ -0,0 +1,51 @@ +<?php +// ------------------------------------------------------------- +// +// $Id$ +// +// FILENAME : viewforum.php [ English ] +// STARTED : Sat Dec 16, 2000 +// COPYRIGHT : © 2001, 2003 phpBB Group +// WWW : http://www.phpbb.com/ +// LICENCE : GPL vs2.0 [ see /docs/COPYING ] +// +// ------------------------------------------------------------- + +// DO NOT CHANGE +if (empty($lang)) +{ + $lang = array(); +} + +// DEVELOPERS PLEASE NOTE +// +// Placeholders can now contain order information, e.g. instead of +// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows +// translators to re-order the output of data while ensuring it remains correct +// +// You do not need this where single placeholders are used, e.g. 'Message %d' is fine +// equally where a string contains only two placeholders which are used to wrap text +// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine + +$lang += array( + 'ANNOUNCEMENTS' => 'Announcements', + + 'LOGIN_NOTIFY_FORUM' => 'You have been notified about this forum, please login to view it.', + + 'MARK_TOPICS_READ' => 'Mark Topics Read', + + 'NEW_POSTS_HOT' => 'New posts [ Popular ]', + 'NEW_POSTS_LOCKED' => 'New posts [ Locked ]', + 'NO_NEW_POSTS_HOT' => 'No new posts [ Popular ]', + 'NO_NEW_POSTS_LOCKED' => 'No new posts [ Locked ]', + + 'POST_FORUM_LOCKED' => 'Forum is locked', + 'POST_NEW_TOPIC' => 'Post new topic', + + 'TOPICS_MARKED' => 'The topics for this forum have now been marked read', + + 'VIEW_FORUM_TOPIC' => '1 Topic', + 'VIEW_FORUM_TOPICS' => '%d Topics', +); + +?>
\ No newline at end of file |