message: Grammar fix in a translatable string

This commit is contained in:
Piotr Drąg 2018-06-27 18:21:29 +02:00
parent 215aef2ecb
commit 2055d427ad

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