diff --git a/lib/WebGUI/i18n/English/Message_Center.pm b/lib/WebGUI/i18n/English/Message_Center.pm index c607f8314..7d2dc3d1f 100644 --- a/lib/WebGUI/i18n/English/Message_Center.pm +++ b/lib/WebGUI/i18n/English/Message_Center.pm @@ -4,26 +4,14 @@ use strict; our $I18N = { - 'receive inbox notifications' => { - message => q|Inbox notifications contain.|, + 'receive inbox emails' => { + message => q|Receive Inbox message notifications via email?|, context => q|Allows a user to choose how they get notified about things in their Inbox.|, lastUpdated => 1235685248, }, - 'short notification' => { - message => q|Short notification|, - context => q|An abbreviated, short message that they have an email.|, - lastUpdated => 1235685248, - }, - - 'full message' => { - message => q|Full content from message|, - context => q|The entire content of the Inbox message.|, - lastUpdated => 1235685248, - }, - 'receive inbox sms' => { - message => q|Receive inbox notification via SMS?|, + message => q|Receive Inbox message notifications via SMS?|, context => q|Allows a user to choose how they get notified about things in their Inbox.|, lastUpdated => 1235685248, }, diff --git a/sbin/installNotifications.pl b/sbin/installNotifications.pl index 9f6fc0c23..d658921e7 100644 --- a/sbin/installNotifications.pl +++ b/sbin/installNotifications.pl @@ -46,17 +46,13 @@ sub installUserProfileFields { $session, 'receiveInboxEmailNotifications', { - label => q!WebGUI::International::get('receive inbox notifications','Message_Center')!, + label => q!WebGUI::International::get('receive inbox emails','Message_Center')!, visible => 1, required => 0, protected => 1, editable => 1, - fieldType => 'radioList', - dataDefault => 0, - possibleValues => q!{ -message => WebGUI::International::get('full message','Message_Center'), -note => WebGUI::International::get('short notification','Message_Center'), -}!, + fieldType => 'yesNo', + dataDefault => 1, }, 4, );