[geary] Revert changes from last two commits that introduced fuzzy translations



commit 68f31e0e5969bc991eb9784ec342b246aa90412c
Author: Michael Gratton <mike vee net>
Date:   Tue Feb 12 11:23:33 2019 +1100

    Revert changes from last two commits that introduced fuzzy translations
    
    See commit 9aefdf36, commit 430609c3 and #210

 src/client/components/main-window-info-bar.vala | 2 +-
 src/client/composer/composer-widget.vala        | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/client/components/main-window-info-bar.vala b/src/client/components/main-window-info-bar.vala
index bb2dde01..d8dc148b 100644
--- a/src/client/components/main-window-info-bar.vala
+++ b/src/client/components/main-window-info-bar.vala
@@ -71,7 +71,7 @@ public class MainWindowInfoBar : Gtk.InfoBar {
             } else if (report.problem_type == Geary.ProblemType.NETWORK_ERROR &&
                        service_report.service.protocol == Geary.Protocol.SMTP) {
                 // Translators: String substitution is the account name
-                title = _("Problem communicating with outgoing server for %s").printf(account);
+                title = _("Problem communicating with outgoing mail server");
                 // Translators: String substitution is the server name
                 descr = _("Network error talking to %s, check your Internet access and try 
again").printf(server);
                 // Translators: Tooltip label for Retry button
diff --git a/src/client/composer/composer-widget.vala b/src/client/composer/composer-widget.vala
index f5d9cb17..0e3e16c0 100644
--- a/src/client/composer/composer-widget.vala
+++ b/src/client/composer/composer-widget.vala
@@ -1709,7 +1709,7 @@ public class ComposerWidget : Gtk.EventBox, Geary.BaseInterface {
         if (reply_to_entry.addresses != null) {
             foreach(Geary.RFC822.MailboxAddress addr in this.reply_to_entry.addresses) {
                 // Translators: Human-readable version of the RFC 822 Reply-To header
-                tooltip.append("%s %s\n".printf(_("Reply-To:"), addr.to_full_display()));
+                tooltip.append("%s%s\n".printf(_("Reply-To: "), addr.to_full_display()));
             }
         }
         this.header.set_recipients(label, tooltip.str.slice(0, -1));  // Remove trailing \n


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]