update translations

This commit is contained in:
Luke Pulverenti
2014-08-11 10:15:53 -04:00
parent e84ba17b9f
commit 7bff666136
57 changed files with 2830 additions and 1324 deletions

View File

@@ -184,7 +184,8 @@ namespace MediaBrowser.Server.Implementations.EntryPoints
CreateLogEntry(new ActivityLogEntry
{
Name = string.Format(_localization.GetLocalizedString("AuthenticationSucceededWithUserName"), e.Argument.Username),
Type = "AuthenticationSucceeded"
Type = "AuthenticationSucceeded",
ShortOverview = string.Format(_localization.GetLocalizedString("LabelIpAddressValue"), e.Argument.RemoteEndPoint)
});
}
@@ -193,7 +194,8 @@ namespace MediaBrowser.Server.Implementations.EntryPoints
CreateLogEntry(new ActivityLogEntry
{
Name = string.Format(_localization.GetLocalizedString("FailedLoginAttemptWithUserName"), e.Argument.Username),
Type = "AuthenticationFailed"
Type = "AuthenticationFailed",
ShortOverview = string.Format(_localization.GetLocalizedString("LabelIpAddressValue"), e.Argument.RemoteEndPoint)
});
}