1 <?php
2 // $Id: notification.php 1007 2007-08-22 20:57:09Z malanciault $
3
4 // RMV-NOTIFY
5
6 // Text for various templates...
7
8 define ('_NOT_NOTIFICATIONOPTIONS', 'Notification Options');
9 define ('_NOT_UPDATENOW', 'Update Now');
10 define ('_NOT_UPDATEOPTIONS', 'Update Notification Options');
11
12 define ('_NOT_CLEAR', 'Clear');
13 define ('_NOT_CHECKALL', 'Check All');
14 define ('_NOT_MODULE', 'Module');
15 define ('_NOT_CATEGORY', 'Category');
16 define ('_NOT_ITEMID', 'ID');
17 define ('_NOT_ITEMNAME', 'Name');
18 define ('_NOT_EVENT', 'Event');
19 define ('_NOT_EVENTS', 'Events');
20 define ('_NOT_ACTIVENOTIFICATIONS', 'Active Notifications');
21 define ('_NOT_NAMENOTAVAILABLE', 'Name Not Available');
22 // RMV-NEW : TODO: remove NAMENOTAVAILBLE above
23 define ('_NOT_ITEMNAMENOTAVAILABLE', 'Item Name Not Available');
24 define ('_NOT_ITEMTYPENOTAVAILABLE', 'Item Type Not Available');
25 define ('_NOT_ITEMURLNOTAVAILABLE', 'Item URL Not Available');
26 define ('_NOT_DELETINGNOTIFICATIONS', 'Deleting Notifications');
27 define ('_NOT_DELETESUCCESS', 'Notification(s) deleted successfully.');
28 define ('_NOT_UPDATEOK', 'Notification options updated');
29 define ('_NOT_NOTIFICATIONMETHODIS', 'Notification method is');
30 define ('_NOT_EMAIL', 'email');
31 define ('_NOT_PM', 'private message');
32 define ('_NOT_DISABLE', 'disabled');
33 define ('_NOT_CHANGE', 'Change');
34
35 define ('_NOT_NOACCESS', 'You do not have permission to access this page.');
36
37 // Text for module config options
38
39 define ('_NOT_ENABLE', 'Enable');
40 define ('_NOT_NOTIFICATION', 'Notification');
41
42 define ('_NOT_CONFIG_ENABLED', 'Enable Notification');
43 define ('_NOT_CONFIG_ENABLEDDSC', 'This module allows users to select to be notified when certain events occur. Choose "yes" to enable this feature.');
44
45 define ('_NOT_CONFIG_EVENTS', 'Enable Specific Events');
46 define ('_NOT_CONFIG_EVENTSDSC', 'Select which notification events to which your users may subscribe.');
47
48 define ('_NOT_CONFIG_ENABLE', 'Enable Notification');
49 define ('_NOT_CONFIG_ENABLEDSC', 'This module allows users to be notified when certain events occur. Select if users should be presented with notification options in a Block (Block-style), within the module (Inline-style), or both. For block-style notification, the Notification Options block must be enabled for this module.');
50 define ('_NOT_CONFIG_DISABLE', 'Disable Notification');
51 define ('_NOT_CONFIG_ENABLEBLOCK', 'Enable only Block-style');
52 define ('_NOT_CONFIG_ENABLEINLINE', 'Enable only Inline-style');
53 define ('_NOT_CONFIG_ENABLEBOTH', 'Enable Notification (both styles)');
54
55 // For notification about comment events
56
57 define ('_NOT_COMMENT_NOTIFY', 'Comment Added');
58 define ('_NOT_COMMENT_NOTIFYCAP', 'Notify me when a new comment is posted for this item.');
59 define ('_NOT_COMMENT_NOTIFYDSC', 'Receive notification whenever a new comment is posted (or approved) for this item.');
60 define ('_NOT_COMMENT_NOTIFYSBJ', '[{X_SITENAME}] {X_MODULE} auto-notify: Comment added to {X_ITEM_TYPE}');
61
62 define ('_NOT_COMMENTSUBMIT_NOTIFY', 'Comment Submitted');
63 define ('_NOT_COMMENTSUBMIT_NOTIFYCAP', 'Notify me when a new comment is submitted (awaiting approval) for this item.');
64 define ('_NOT_COMMENTSUBMIT_NOTIFYDSC', 'Receive notification whenever a new comment is submitted (awaiting approval) for this item.');
65 define ('_NOT_COMMENTSUBMIT_NOTIFYSBJ', '[{X_SITENAME}] {X_MODULE} auto-notify: Comment submitted for {X_ITEM_TYPE}');
66
67 // For notification bookmark feature
68 // (Not really notification, but easy to do with this module)
69
70 define ('_NOT_BOOKMARK_NOTIFY', 'Bookmark');
71 define ('_NOT_BOOKMARK_NOTIFYCAP', 'Bookmark this item (no notification).');
72 define ('_NOT_BOOKMARK_NOTIFYDSC', 'Keep track of this item without receiving any event notifications.');
73
74 // For user profile
75 // FIXME: These should be reworded a little...
76
77 define ('_NOT_NOTIFYMETHOD', 'Notification Method: When you monitor e.g. a forum, how would you like to receive notifications of updates?');
78 define ('_NOT_METHOD_EMAIL', 'Email (use address in my profile)');
79 define ('_NOT_METHOD_PM', 'Private Message');
80 define ('_NOT_METHOD_DISABLE', 'Temporarily Disable');
81
82 define ('_NOT_NOTIFYMODE', 'Default Notification Mode');
83 define ('_NOT_MODE_SENDALWAYS', 'Notify me of all selected updates');
84 define ('_NOT_MODE_SENDONCE', 'Notify me only once');
85 define ('_NOT_MODE_SENDONCEPERLOGIN', 'Notify me once then disable until I log in again');
86
87 define ('_NOT_NOTHINGTODELETE', 'There is nothing to delete.');
88 ?>