browser: don't use a term that is not explained in the documentation
Also, other messages that are about --operatingdir don't use the term "confined" either. Suggested-by: Mario Blättermann <mario.blaettermann@gmail.com>master
parent
49eaa7c465
commit
c0c30731c4
|
@ -268,10 +268,10 @@ char *do_browser(char *path)
|
||||||
|
|
||||||
#ifndef DISABLE_OPERATINGDIR
|
#ifndef DISABLE_OPERATINGDIR
|
||||||
if (check_operating_dir(new_path, FALSE)) {
|
if (check_operating_dir(new_path, FALSE)) {
|
||||||
/* TRANSLATORS: This refers to the option --operatingdir,
|
/* TRANSLATORS: This refers to the confining effect of the
|
||||||
* not to --restricted. */
|
* option --operatingdir, not of --restricted. */
|
||||||
statusline(ALERT, _("Can't go outside of %s "
|
statusline(ALERT, _("Can't go outside of %s"),
|
||||||
"in confined mode"), full_operating_dir);
|
full_operating_dir);
|
||||||
free(new_path);
|
free(new_path);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
@ -322,8 +322,8 @@ char *do_browser(char *path)
|
||||||
* directory if it's ".." or if it's a symlink to a
|
* directory if it's ".." or if it's a symlink to a
|
||||||
* directory outside the operating directory. */
|
* directory outside the operating directory. */
|
||||||
if (check_operating_dir(filelist[selected], FALSE)) {
|
if (check_operating_dir(filelist[selected], FALSE)) {
|
||||||
statusline(ALERT, _("Can't go outside of %s "
|
statusline(ALERT, _("Can't go outside of %s"),
|
||||||
"in confined mode"), full_operating_dir);
|
full_operating_dir);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue