From 2055d427ad9c18c2770f1bfedbe78e6765279336 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Dr=C4=85g?= Date: Wed, 27 Jun 2018 18:21:29 +0200 Subject: [PATCH] message: Grammar fix in a translatable string --- fractal-gtk/src/widgets/message.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fractal-gtk/src/widgets/message.rs b/fractal-gtk/src/widgets/message.rs index 5639b040..7ca7f993 100644 --- a/fractal-gtk/src/widgets/message.rs +++ b/fractal-gtk/src/widgets/message.rs @@ -320,7 +320,7 @@ impl<'a> MessageBox<'a> { match rx.try_recv() { Err(TryRecvError::Empty) => gtk::Continue(true), Err(TryRecvError::Disconnected) => { - let msg = i18n("Could not retrieve file's uri"); + let msg = i18n("Could not retrieve file URI"); APPOP!(show_error, (msg)); gtk::Continue(true) },