diff --git a/src/TumblThree/TumblThree.Applications/Properties/Resources.Designer.cs b/src/TumblThree/TumblThree.Applications/Properties/Resources.Designer.cs
index c21d952..f5be3ae 100644
--- a/src/TumblThree/TumblThree.Applications/Properties/Resources.Designer.cs
+++ b/src/TumblThree/TumblThree.Applications/Properties/Resources.Designer.cs
@@ -151,7 +151,16 @@ public static string Body {
}
///
- /// Looks up a localized string similar to Confirming the Tumblr privacy consent failed. There might a connection issue..
+ /// Looks up a localized string similar to confirming to the Tumblr privacy consent.
+ ///
+ public static string ConfirmingTumblrPrivacyConsent {
+ get {
+ return ResourceManager.GetString("ConfirmingTumblrPrivacyConsent", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Confirming to the Tumblr privacy consent failed. There might be a connection issue..
///
public static string ConfirmingTumblrPrivacyConsentFailed {
get {
@@ -746,6 +755,15 @@ public static string TimeoutReached {
}
}
+ ///
+ /// Looks up a localized string similar to A connection timeout occured during {0}..
+ ///
+ public static string TimeoutReachedShort {
+ get {
+ return ResourceManager.GetString("TimeoutReachedShort", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Title: {0}.
///
diff --git a/src/TumblThree/TumblThree.Applications/Properties/Resources.resx b/src/TumblThree/TumblThree.Applications/Properties/Resources.resx
index 9bb85c6..be66de3 100644
--- a/src/TumblThree/TumblThree.Applications/Properties/Resources.resx
+++ b/src/TumblThree/TumblThree.Applications/Properties/Resources.resx
@@ -147,8 +147,11 @@
Body: {0]
+
+ confirming to the Tumblr privacy consent
+
- Confirming the Tumblr privacy consent failed. There might a connection issue.
+ Confirming to the Tumblr privacy consent failed. There might be a connection issue.
Conversation: {0}
@@ -347,6 +350,9 @@
A connection timeout occured during {0} of {1}.
+
+ A connection timeout occured during {0}.
+
Title: {0}
diff --git a/src/TumblThree/TumblThree.Applications/Services/ConfirmTumblrPrivacyConsent.cs b/src/TumblThree/TumblThree.Applications/Services/ConfirmTumblrPrivacyConsent.cs
index 44d573f..6a53e3b 100644
--- a/src/TumblThree/TumblThree.Applications/Services/ConfirmTumblrPrivacyConsent.cs
+++ b/src/TumblThree/TumblThree.Applications/Services/ConfirmTumblrPrivacyConsent.cs
@@ -36,10 +36,9 @@ public async Task ConfirmPrivacyConsentAsync()
}
catch (TimeoutException timeoutException)
{
- const string message = "confirming the Tumblr privacy consent";
- Logger.Error("{0}, {1}", string.Format(CultureInfo.CurrentCulture, Resources.TimeoutReached, message),
+ Logger.Error("{0}, {1}", string.Format(CultureInfo.CurrentCulture, Resources.TimeoutReachedShort, Resources.ConfirmingTumblrPrivacyConsent),
timeoutException);
- shellService.ShowError(timeoutException, Resources.TimeoutReached, message);
+ shellService.ShowError(timeoutException, Resources.ConfirmingTumblrPrivacyConsentFailed);
}
catch (Exception exception)
{