aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Notifications
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-05-16 13:11:07 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-05-16 13:11:07 -0400
commit92cadc4323fb8a845a74652ef3ebfa8aa8efd104 (patch)
treecfa99c01e4a16ff6f2d4bb0e88eaf36b377f2125 /MediaBrowser.Server.Implementations/Notifications
parentb6798f33700e7376ab616cb09b345c30a21f6feb (diff)
update translations
Diffstat (limited to 'MediaBrowser.Server.Implementations/Notifications')
-rw-r--r--MediaBrowser.Server.Implementations/Notifications/CoreNotificationTypes.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/MediaBrowser.Server.Implementations/Notifications/CoreNotificationTypes.cs b/MediaBrowser.Server.Implementations/Notifications/CoreNotificationTypes.cs
index 012b5ae92..405bf407a 100644
--- a/MediaBrowser.Server.Implementations/Notifications/CoreNotificationTypes.cs
+++ b/MediaBrowser.Server.Implementations/Notifications/CoreNotificationTypes.cs
@@ -116,6 +116,27 @@ namespace MediaBrowser.Server.Implementations.Notifications
Type = NotificationType.VideoPlayback.ToString(),
DefaultTitle = "{UserName} is playing {ItemName} on {DeviceName}.",
Variables = new List<string>{"UserName", "ItemName", "DeviceName", "AppName"}
+ },
+
+ new NotificationTypeInfo
+ {
+ Type = NotificationType.AudioPlaybackStopped.ToString(),
+ DefaultTitle = "{UserName} has finished playing {ItemName} on {DeviceName}.",
+ Variables = new List<string>{"UserName", "ItemName", "DeviceName", "AppName"}
+ },
+
+ new NotificationTypeInfo
+ {
+ Type = NotificationType.GamePlaybackStopped.ToString(),
+ DefaultTitle = "{UserName} has finished playing {ItemName} on {DeviceName}.",
+ Variables = new List<string>{"UserName", "ItemName", "DeviceName", "AppName"}
+ },
+
+ new NotificationTypeInfo
+ {
+ Type = NotificationType.VideoPlaybackStopped.ToString(),
+ DefaultTitle = "{UserName} has finished playing {ItemName} on {DeviceName}.",
+ Variables = new List<string>{"UserName", "ItemName", "DeviceName", "AppName"}
}
};