gdbus: Fix an accidental string freeze break

Commit d982c8607 accidentally broke the string freeze on `glib-2-74` by
adding a new translatable string.

We can avoid that by reusing an existing string which has a similar
meaning.

Signed-off-by: Philip Withnall <pwithnall@endlessos.org>

Fixes: https://gitlab.gnome.org/Teams/Translation/Coordination/-/issues/47
This commit is contained in:
Philip Withnall 2023-03-02 12:37:48 +00:00
parent f34ab2af3e
commit be83335eca

View File

@ -1042,7 +1042,7 @@ _g_dbus_auth_run_server (GDBusAuth *auth,
g_set_error_literal (error,
G_IO_ERROR,
G_IO_ERROR_FAILED,
_ ("Unexpected lack of content trying to read a byte"));
_ ("Unexpected lack of content trying to read a line"));
else
g_propagate_error (error, local_error);
goto out;