diff options
author | Michael Catanzaro <mcatanzaro@igalia.com> | 2017-08-27 16:51:24 -0500 |
---|---|---|
committer | Michael Catanzaro <mcatanzaro@igalia.com> | 2017-08-27 16:52:18 -0500 |
commit | c8fd73c8f2c28f7278477bb37bda64d6b88a3d4e (patch) | |
tree | 7fe3cdbdd0ce43bb9a11b231c6ce04ac9c7ec591 /lib/sync | |
parent | 62d6dd89275f05e96a88a505ce4914271f70c6ca (diff) | |
download | epiphany-c8fd73c8f2c28f7278477bb37bda64d6b88a3d4e.tar.gz |
sync-service: Improve an error message
null is a meaningless technical term. We have two choices of string here
to avoid breaking string freeze. This one seems best.
Diffstat (limited to 'lib/sync')
-rw-r--r-- | lib/sync/ephy-sync-service.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sync/ephy-sync-service.c b/lib/sync/ephy-sync-service.c index a11e0f999..fdf03a7f1 100644 --- a/lib/sync/ephy-sync-service.c +++ b/lib/sync/ephy-sync-service.c @@ -1453,7 +1453,7 @@ load_secrets_cb (SecretService *service, } if (!(res && res->data)) { - message = _("The sync secrets for the current sync user are null."); + message = _("Could not find the sync secrets for the current sync user."); goto out_error; } |