1<?php
2/**
3 * English language file
4 *
5 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6 * @author     Esther Brunner <wikidesign@gmail.com>
7 * @author     iDo <iLoveiDo@gmail.com>
8 */
9
10// settings must be present and set appropriately for the language
11$lang['encoding']   = 'utf-8';
12$lang['direction']  = 'ltr';
13
14// for admin plugins, the menu prompt to be displayed in the admin menu
15// if set here, the plugin doesn't need to override the getMenuText() method
16$lang['menu']            = 'Moderate Discussions';
17
18$lang['discussion']      = 'Discussion';
19$lang['comment']         = 'Comment';
20$lang['comments']        = 'Comments';
21$lang['nocomments']      = 'Comments';
22$lang['threads']         = 'Discussions';
23$lang['url']             = 'Website';
24$lang['address']         = 'Address';
25$lang['date']            = 'Date';
26$lang['entercomment']    = 'Enter your comment';
27$lang['wikisyntax']      = 'Wiki syntax is allowed';
28$lang['older']           = 'Older discussions';
29$lang['newer']           = 'Newer discussions';
30$lang['btn_reply']       = 'Reply';
31$lang['btn_hide']        = 'Hide';
32$lang['btn_show']        = 'Show';
33$lang['btn_change']      = 'Change';
34$lang['statuschanged']   = 'Discussion status changed';
35$lang['wordblock']       = 'Your comment was blocked as spam.';
36$lang['moderation']      = 'Your comment has been added and awaits moderation.';
37$lang['mail_newcomment'] = 'New Comment';
38$lang['subscribe']       = 'Subscribe to comments';
39$lang['noguests']        = 'You could leave a comment if you were logged in.';
40
41$lang['status']          = 'Status';
42$lang['off']             = 'off';
43$lang['open']            = 'open';
44$lang['closed']          = 'closed';
45
46$lang['reply']           = 'Reply';
47$lang['replies']         = 'Replies';
48$lang['newthread']       = 'New discussion page';
49$lang['toggle_display']  = 'Hide/Show';
50
51//Setup VIM: ex: et ts=2 enc=utf-8 :
52