source: temp/test-xoops.ec-cube.net/html/modules/newbb/language/english/modinfo.php @ 405

Revision 405, 3.5 KB checked in by root, 20 years ago (diff)
Line 
1<?php
2// $Id: modinfo.php,v 1.2 2005/03/18 12:52:25 onokazu Exp $
3// Module Info
4
5// The name of this module
6define("_MI_NEWBB_NAME","Forum");
7
8// A brief description of this module
9define("_MI_NEWBB_DESC","Forums module for XOOPS");
10
11// Names of blocks for this module (Not all module has blocks)
12define("_MI_NEWBB_BNAME1","Recent Topics");
13define("_MI_NEWBB_BNAME2","Most Viewed Topics");
14define("_MI_NEWBB_BNAME3","Most Active Topics");
15define("_MI_NEWBB_BNAME4","Recent Private Topics");
16
17// Names of admin menu items
18define("_MI_NEWBB_ADMENU1","Add Forum");
19define("_MI_NEWBB_ADMENU2","Edit Forum");
20define("_MI_NEWBB_ADMENU3","Edit Priv. Forum");
21define("_MI_NEWBB_ADMENU4","Sync forums/topics");
22define("_MI_NEWBB_ADMENU5","Add Category");
23define("_MI_NEWBB_ADMENU6","Edit Category");
24define("_MI_NEWBB_ADMENU7","Delete Category");
25define("_MI_NEWBB_ADMENU8","Re-order Category");
26
27// RMV-NOTIFY
28// Notification event descriptions and mail templates
29
30define ('_MI_NEWBB_THREAD_NOTIFY', 'Thread');
31define ('_MI_NEWBB_THREAD_NOTIFYDSC', 'Notification options that apply to the current thread.');
32
33define ('_MI_NEWBB_FORUM_NOTIFY', 'Forum');
34define ('_MI_NEWBB_FORUM_NOTIFYDSC', 'Notification options that apply to the current forum.');
35
36define ('_MI_NEWBB_GLOBAL_NOTIFY', 'Global');
37define ('_MI_NEWBB_GLOBAL_NOTIFYDSC', 'Global forum notification options.');
38
39define ('_MI_NEWBB_THREAD_NEWPOST_NOTIFY', 'New Post');
40define ('_MI_NEWBB_THREAD_NEWPOST_NOTIFYCAP', 'Notify me of new posts in the current thread.');
41define ('_MI_NEWBB_THREAD_NEWPOST_NOTIFYDSC', 'Receive notification when a new message is posted to the current thread.');
42define ('_MI_NEWBB_THREAD_NEWPOST_NOTIFYSBJ', '[{X_SITENAME}] {X_MODULE} auto-notify : New post in thread');
43
44define ('_MI_NEWBB_FORUM_NEWTHREAD_NOTIFY', 'New Thread');
45define ('_MI_NEWBB_FORUM_NEWTHREAD_NOTIFYCAP', 'Notify me of new topics in the current forum.');
46define ('_MI_NEWBB_FORUM_NEWTHREAD_NOTIFYDSC', 'Receive notification when a new thread is started in the current forum.');
47define ('_MI_NEWBB_FORUM_NEWTHREAD_NOTIFYSBJ', '[{X_SITENAME}] {X_MODULE} auto-notify : New thread in forum');
48
49define ('_MI_NEWBB_GLOBAL_NEWFORUM_NOTIFY', 'New Forum');
50define ('_MI_NEWBB_GLOBAL_NEWFORUM_NOTIFYCAP', 'Notify me when a new forum is created.');
51define ('_MI_NEWBB_GLOBAL_NEWFORUM_NOTIFYDSC', 'Receive notification when a new forum is created.');
52define ('_MI_NEWBB_GLOBAL_NEWFORUM_NOTIFYSBJ', '[{X_SITENAME}] {X_MODULE} auto-notify : New forum');
53
54define ('_MI_NEWBB_GLOBAL_NEWPOST_NOTIFY', 'New Post');
55define ('_MI_NEWBB_GLOBAL_NEWPOST_NOTIFYCAP', 'Notify me of any new posts.');
56define ('_MI_NEWBB_GLOBAL_NEWPOST_NOTIFYDSC', 'Receive notification when any new message is posted.');
57define ('_MI_NEWBB_GLOBAL_NEWPOST_NOTIFYSBJ', '[{X_SITENAME}] {X_MODULE} auto-notify : New post');
58
59define ('_MI_NEWBB_FORUM_NEWPOST_NOTIFY', 'New Post');
60define ('_MI_NEWBB_FORUM_NEWPOST_NOTIFYCAP', 'Notify me of any new posts in the current forum.');
61define ('_MI_NEWBB_FORUM_NEWPOST_NOTIFYDSC', 'Receive notification when any new message is posted in the current forum.');
62define ('_MI_NEWBB_FORUM_NEWPOST_NOTIFYSBJ', '[{X_SITENAME}] {X_MODULE} auto-notify : New post in forum');
63
64define ('_MI_NEWBB_GLOBAL_NEWFULLPOST_NOTIFY', 'New Post (Full Text)');
65define ('_MI_NEWBB_GLOBAL_NEWFULLPOST_NOTIFYCAP', 'Notify me of any new posts (include full text in message).');
66define ('_MI_NEWBB_GLOBAL_NEWFULLPOST_NOTIFYDSC', 'Receive full text notification when any new message is posted.');
67define ('_MI_NEWBB_GLOBAL_NEWFULLPOST_NOTIFYSBJ', '[{X_SITENAME}] {X_MODULE} auto-notify : New post (full text)');
68
69?>
Note: See TracBrowser for help on using the repository browser.