Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dir: Uniformize two similar strings #5748

Merged
merged 1 commit into from
May 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions common/flatpak-dir.c
Original file line number Diff line number Diff line change
Expand Up @@ -741,7 +741,7 @@ flatpak_remote_state_lookup_ref (FlatpakRemoteState *self,
if (!flatpak_remote_state_allow_ref (self, ref))
{
return flatpak_fail_error (error, FLATPAK_ERROR_REF_NOT_FOUND,
_("No entry for %s in remote '%s' summary flatpak cache "),
_("No entry for %s in remote %s summary flatpak cache"),
ref, self->remote_name);
}

Expand Down Expand Up @@ -878,7 +878,7 @@ flatpak_remote_state_lookup_cache (FlatpakRemoteState *self,
summary_v = get_summary_for_ref (self, ref);
if (summary_v == NULL)
return flatpak_fail_error (error, FLATPAK_ERROR_REF_NOT_FOUND,
_("No entry for %s in remote '%s' summary flatpak cache "),
_("No entry for %s in remote %s summary flatpak cache"),
ref, self->remote_name);


Expand Down Expand Up @@ -907,7 +907,7 @@ flatpak_remote_state_lookup_cache (FlatpakRemoteState *self,

if (!var_cache_lookup (cache, ref, &pos, &cache_data))
return flatpak_fail_error (error, FLATPAK_ERROR_REF_NOT_FOUND,
_("No entry for %s in remote '%s' summary flatpak cache "),
_("No entry for %s in remote %s summary flatpak cache"),
ref, self->remote_name);
}
else if (summary_version == 1)
Expand All @@ -919,7 +919,7 @@ flatpak_remote_state_lookup_cache (FlatpakRemoteState *self,

if (!flatpak_var_ref_map_lookup_ref (ref_map, ref, &info))
return flatpak_fail_error (error, FLATPAK_ERROR_REF_NOT_FOUND,
_("No entry for %s in remote '%s' summary cache "),
_("No entry for %s in remote %s summary flatpak cache"),
ref, self->remote_name);

commit_metadata = var_ref_info_get_metadata (info);
Expand Down