Merge branch 'master' of git.freeside.biz:/home/git/freeside
[freeside.git] / rt / etc / upgrade / 3.7.87 / content
1 use strict;
2 use warnings;
3
4 our @Templates = (
5 {
6     Queue       => 0,
7     Name        => "Error: Missing dashboard",    # loc
8     Description =>
9       "Inform user that a dashboard he subscribed to is missing", # loc
10     Content => q{Subject: [{RT->Config->Get('rtname')}] Missing dashboard!
11
12 Greetings,
13
14 You are subscribed to a dashboard that is currently missing. Most likely, the dashboard was deleted.
15
16 RT will remove this subscription as it is no longer useful. Here's the information RT had about your subscription:
17
18 DashboardID:  { $SubscriptionObj->SubValue('DashboardId') }
19 Frequency:    { $SubscriptionObj->SubValue('Frequency') }
20 Hour:         { $SubscriptionObj->SubValue('Hour') }
21 {
22     $SubscriptionObj->SubValue('Frequency') eq 'weekly'
23     ? "Day of week:  " . $SubscriptionObj->SubValue('Dow')
24     : $SubscriptionObj->SubValue('Frequency') eq 'monthly'
25       ? "Day of month: " . $SubscriptionObj->SubValue('Dom')
26       : ''
27 }
28 }
29 },
30 );
31