Merge branch 'wip/piotrdrag/grammar-fix' into 'master'

message: Grammar fix in a translatable string

See merge request World/fractal!148
This commit is contained in:
Daniel Garcia Moreno 2018-06-27 19:51:49 +00:00
commit 86edb9f1c5

View file

@ -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)
},