Skip to content
This repository was archived by the owner on Aug 18, 2026. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/bazaar.gresource.xml
Original file line number Diff line number Diff line change
Expand Up @@ -212,11 +212,11 @@
<file preprocess="xml-stripblanks">icons/io.github.kolumni.Bazaar.Adwaita.svg</file>
<file preprocess="xml-stripblanks">icons/io.github.kolumni.Bazaar.Kde.svg</file>

<file preprocess="xml-stripblanks">icons/io.github.kolunmi.Bazaar.github.svg</file>
<file preprocess="xml-stripblanks">icons/io.github.kolunmi.Bazaar.gitlab.svg</file>
<file preprocess="xml-stripblanks">icons/io.github.kolunmi.Bazaar.gnome.svg</file>
<file preprocess="xml-stripblanks">icons/io.github.kolunmi.Bazaar.kde.svg</file>
<file preprocess="xml-stripblanks">icons/io.github.kolunmi.Bazaar.google.svg</file>
<file preprocess="xml-stripblanks">icons/io.github.kolunmi.Bazaar.login-github.svg</file>
<file preprocess="xml-stripblanks">icons/io.github.kolunmi.Bazaar.login-gitlab.svg</file>
<file preprocess="xml-stripblanks">icons/io.github.kolunmi.Bazaar.login-gnome.svg</file>
<file preprocess="xml-stripblanks">icons/io.github.kolunmi.Bazaar.login-kde.svg</file>
<file preprocess="xml-stripblanks">icons/io.github.kolunmi.Bazaar.login-google.svg</file>

<file>bz-install-controls.wdgt</file>
<file>bz-transact-icon.wdgt</file>
Expand Down
15 changes: 9 additions & 6 deletions src/bz-application.c
Original file line number Diff line number Diff line change
Expand Up @@ -1025,12 +1025,14 @@ init_fiber (BzWeakRef *wr)
window = new_window (self);

alert = adw_alert_dialog_new (NULL, NULL);
adw_alert_dialog_format_heading (ADW_ALERT_DIALOG (alert), _ ("Ubuntu Troubles!"));
adw_alert_dialog_format_heading (ADW_ALERT_DIALOG (alert), _ ("Notice for Ubuntu Users"));
adw_alert_dialog_format_body_markup (
ADW_ALERT_DIALOG (alert),
_ ("Ubuntu 25.10 and newer have messed up default security rules, "
"making it <b>impossible to install apps</b> from the Flatpak version "
"of Bazaar, please just use the normal package for now by using\n\n"
_ ("Ubuntu 25.10 and newer have changed default security rules in "
"a way that makes it <b>impossible to install apps</b> from "
"the Flatpak version of Bazaar. "
"For the time being, please use the apt package instead. "
"Install it with\n\n"
"<tt>sudo apt install bazaar</tt>\n\n"
"You can then remove this Flatpak version with\n\n"
"<tt>flatpak uninstall io.github.kolunmi.Bazaar</tt>"));
Expand Down Expand Up @@ -3950,8 +3952,9 @@ open_generic_id (BzApplication *self,
if (case_fixed)
bz_show_error_for_widget (
GTK_WIDGET (window),
_ ("Malformed Link"),
_ ("The link used to open this app has incorrect capitalization and may stop working in the future.\n\n"
_ ("Corrected Link"),
_ ("The link used to open this app has incorrect capitalization and "
"has been corrected by Bazaar.\n\n"
"This is most likely caused by KRunner sending incorrect app IDs"));
}
else
Expand Down
13 changes: 5 additions & 8 deletions src/bz-full-view.c
Original file line number Diff line number Diff line change
Expand Up @@ -204,17 +204,14 @@ static char *
format_other_apps_label (gpointer object, const char *developer)
{
if (!developer || *developer == '\0')
return g_strdup (_ ("More Apps"));
return g_strdup_printf (_ ("More Apps by %s"), developer);
return g_strdup (_ ("Other Apps from this Developer"));
return g_strdup_printf (_ ("Other Apps from %s"), developer);
}

static char *
format_more_other_apps_label (gpointer object, const char *developer)
{
if (!developer || *developer == '\0')
return g_strdup (_ ("Other Apps by this Developer"));

return g_strdup_printf (_ ("Other Apps by %s"), developer);
return g_strdup (_ ("Show All"));
}

static char *
Expand Down Expand Up @@ -306,9 +303,9 @@ more_apps_button_clicked_cb (BzFullView *self,

developer = bz_entry_get_developer (entry);
if (developer != NULL && *developer != '\0')
title = g_strdup_printf (_ ("Other Apps by %s"), developer);
title = g_strdup_printf (_ ("Apps from %s"), developer);
else
title = g_strdup (_ ("Other Apps"));
title = g_strdup (_ ("Apps from this developer"));

subtitle = g_strdup_printf (ngettext ("%d Application", "%d Applications", n_items), n_items);

Expand Down
2 changes: 1 addition & 1 deletion src/bz-login-page.c
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ on_providers_loaded (GObject *source_object,
method = json_object_get_string_member (provider_obj, "method");
name = json_object_get_string_member (provider_obj, "name");
row = adw_action_row_new ();
icon_name = g_strdup_printf ("io.github.kolunmi.Bazaar.%s", method);
icon_name = g_strdup_printf ("io.github.kolunmi.Bazaar.login-%s", method);

bz_flathub_auth_provider_set_name (provider, name);
bz_flathub_auth_provider_set_method (provider, method);
Expand Down