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