xref: /plugin/discussion/lang/en/lang.php (revision 5ea84b208d8cbed9360a59c0ca7383e5e7f97bb4)
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['url']             = 'Website';
22$lang['address']         = 'Address';
23$lang['date']            = 'Date';
24$lang['entercomment']    = 'Enter your comment';
25$lang['wikisyntax']      = 'wiki syntax is allowed';
26$lang['older']           = 'Older discussions';
27$lang['newer']           = 'Newer discussions';
28$lang['btn_reply']       = 'Reply';
29$lang['btn_hide']        = 'Hide';
30$lang['btn_show']        = 'Show';
31$lang['btn_change']      = 'Change';
32$lang['statuschanged']   = 'Discussion status changed';
33$lang['wordblock']       = 'Your comment was blocked as spam.';
34$lang['mail_newcomment'] = 'New Comment';
35
36$lang['status']          = 'Status';
37$lang['off']             = 'off';
38$lang['open']            = 'open';
39$lang['closed']          = 'closed';
40
41$lang['reply']           = 'Reply';
42$lang['replies']         = 'Replies';
43$lang['newthread']       = 'New thread';
44$lang['threads']         = 'Threads';
45
46//Setup VIM: ex: et ts=2 enc=utf-8 :