summaryrefslogtreecommitdiff
path: root/programs
diff options
context:
space:
mode:
Diffstat (limited to 'programs')
-rw-r--r--programs/gvfs-save.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/programs/gvfs-save.c b/programs/gvfs-save.c
index 5a7bb28d..d73c1fae 100644
--- a/programs/gvfs-save.c
+++ b/programs/gvfs-save.c
@@ -44,7 +44,9 @@ static GOptionEntry entries[] =
{ "create", 'c', 0, G_OPTION_ARG_NONE, &create, N_("Only create if not existing"), NULL },
{ "append", 'a', 0, G_OPTION_ARG_NONE, &append, N_("Append to end of file"), NULL },
{ "private", 'p', 0, G_OPTION_ARG_NONE, &priv, N_("When creating, restrict access to the current user"), NULL },
+ /* Translators: The "etag" is a token allowing to verify whether a file has been modified */
{ "print-etag", 'v', 0, G_OPTION_ARG_NONE, &print_etag, N_("Print new etag at end"), NULL },
+ /* Translators: The "etag" is a token allowing to verify whether a file has been modified */
{ "etag", 'e', 0, G_OPTION_ARG_STRING, &etag, N_("The etag of the file being overwritten"), N_("ETAG") },
{ NULL }
};
@@ -131,6 +133,7 @@ save (GFile *file)
if (etag)
g_print ("Etag: %s\n", etag);
else
+ /* Translators: The "etag" is a token allowing to verify whether a file has been modified */
g_print (_("Etag not available\n"));
g_free (etag);
}