From e1f77b502d4abb54b5a38bbd87ee3042456db960 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Thu, 26 Feb 2009 15:26:04 -0800 Subject: [PATCH] Message Center i18n. --- lib/WebGUI/i18n/English/Message_Center.pm | 34 +++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 lib/WebGUI/i18n/English/Message_Center.pm diff --git a/lib/WebGUI/i18n/English/Message_Center.pm b/lib/WebGUI/i18n/English/Message_Center.pm new file mode 100644 index 000000000..145e507b0 --- /dev/null +++ b/lib/WebGUI/i18n/English/Message_Center.pm @@ -0,0 +1,34 @@ +package WebGUI::i18n::English::Message_Center; + +use strict; + +our $I18N = { + + 'receive inbox notifications' => { + message => q|Inbox notifications contain.|, + 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 emails' => { + message => q|Receive inbox notification via SMS?|, + context => q|Allows a user to choose how they get notified about things in their Inbox.|, + lastUpdated => 1235685248, + }, + +}; + +1; +#vim:ft=perl