[fractal] Fixed strings for extraction by gettext



commit 23285c155be387547be051ac0b10caf9e28bebea
Author: sonjita <sonjaleaheinze gmail com>
Date:   Mon Oct 21 13:23:41 2019 +0200

    Fixed strings for extraction by gettext

 fractal-gtk/src/app/backend_loop.rs | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
---
diff --git a/fractal-gtk/src/app/backend_loop.rs b/fractal-gtk/src/app/backend_loop.rs
index 5576d6f8..1f3d1892 100644
--- a/fractal-gtk/src/app/backend_loop.rs
+++ b/fractal-gtk/src/app/backend_loop.rs
@@ -64,8 +64,7 @@ pub fn backend_loop(rx: Receiver<BKResponse>) {
                 }
                 Ok(BKResponse::GetTokenPhone(Err(Error::Denied))) => {
                     let error = i18n(
-                        "Please enter your phone number in the format: \n 
-                        + your country code and your phone number.",
+                        "Please enter your phone number in the format: \n + your country code and your phone 
number.",
                     );
                     APPOP!(show_error_dialog_in_settings, (error));
                 }
@@ -210,7 +209,7 @@ pub fn backend_loop(rx: Receiver<BKResponse>) {
                     APPOP!(show_password_error_dialog, (error));
                 }
                 Ok(BKResponse::GetThreePID(Err(_))) => {
-                    let error = i18n("Sorry, account settings can't be loaded.");
+                    let error = i18n("Sorry, account settings can’t be loaded.");
                     APPOP!(show_load_settings_error_dialog, (error));
                     let ctx = glib::MainContext::default();
                     ctx.invoke(move || {


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