flatpak-run.c: valid locations, not types

Some previous g_set_error messages were related to 'unknown type', but this one about 'unknown location'. So it would probably be best to suggest 'valid locations', instead of 'valid types'.
This commit is contained in:
Rafael Fontenelle
2017-04-27 12:19:00 -03:00
committed by Alexander Larsson
parent 28dc9ecb4e
commit 09c070f667

View File

@@ -763,7 +763,7 @@ flatpak_context_verify_filesystem (const char *filesystem_and_mode,
return TRUE;
g_set_error (error, G_OPTION_ERROR, G_OPTION_ERROR_FAILED,
_("Unknown filesystem location %s, valid types are: host, home, xdg-*[/...], ~/dir, /dir"), filesystem);
_("Unknown filesystem location %s, valid locations are: host, home, xdg-*[/...], ~/dir, /dir"), filesystem);
return FALSE;
}