added Subscribable AssetAspect to Wiki

This commit is contained in:
Doug Bell 2009-09-09 17:24:00 -05:00
parent b838102df5
commit 0697673846
15 changed files with 936 additions and 56 deletions

View file

@ -0,0 +1,14 @@
package WebGUI::i18n::English::AssetAspect_Subscribable;
use strict;
our $I18N = {
"new post" => {
message => 'has posted to one of your subscriptions',
lastUpdated => 0,
context => 'Title of the e-mail that is sent for subscriptions',
},
};
1;
#vim:ft=perl

View file

@ -494,6 +494,35 @@ listing of pages that are related to a specific keyword?| },
lastUpdated => 1166848379,
},
'help isSubscribed' => {
message => q{This variable is true if the user is subscribed to the entire wiki},
lastUpdated => 0,
context => q{Help for template variable},
},
'help subscribeUrl' => {
message => q{The URL to subscribe to the entire wiki},
lastUpdated => 0,
context => q{Help for template variable},
},
'help unsubscribeUrl' => {
message => q{The URL to unsubscribe from the entire wiki},
lastUpdated => 0,
context => q{Help for template variable},
},
'subscribe' => {
message => q{Subscribe},
lastUpdated => 0,
context => q{Label for link to subscribe to e-mail notifications},
},
'unsubscribe' => {
message => q{Unsubscribe},
lastUpdated => 0,
context => q{Label for link to unsubscribe from e-mail notifications},
},
};
1;

View file

@ -268,6 +268,41 @@ our $I18N =
lastUpdated => 1169141075,
},
'help isSubscribed' => {
message => q{This variable is true if the user is subscribed to this wiki page},
lastUpdated => 0,
context => q{Help for template variable},
},
'help subscribeUrl' => {
message => q{The URL to subscribe to this wiki page},
lastUpdated => 0,
context => q{Help for template variable},
},
'help unsubscribeUrl' => {
message => q{The URL to unsubscribe from this wiki page},
lastUpdated => 0,
context => q{Help for template variable},
},
'help owner' => {
message => q{The username of the owner of the page},
lastUpdated => 0,
context => q{Help for template variable},
},
'help subscription title' => {
message => q{Wiki Page Subscription E-mail},
lastUpdated => 0,
context => 'Title for help page',
},
'help subscription body' => {
message => q{The template to send via e-mail to the people subscribed to the wiki},
lastUpdated => 0,
context => 'Body text for help page',
},
};
1;