diff --git a/README.md b/README.md index 7fc10f1..e8d83f4 100644 --- a/README.md +++ b/README.md @@ -32,10 +32,9 @@ Warehouse is now available on Flathub! Visit your software store and search for - The Warehouse project follows the [GNOME Code of Conduct](https://wiki.gnome.org/Foundation/CodeOfConduct). See `CODE_OF_CONDUCT.md` for more information. ## ℹ️ Important Notes: -- Translators, I thank you very much for your interest and contributions, but as of now Warehouse is not accpeting any translation work until proper translation infrastructure is in place. -- This project is still in its early stages, developed by a newcomer. Your understanding of potential bugs is greatly appreciated. - Warehouse assumes flatpak user data is located in the default directory: `~/.var/app`. - Warehouse does not aim to replace flatpak; it simply facilitates appropriate flatpak commands for the desired actions. +- This project is still in its early stages, developed by a newcomer. Your understanding of potential bugs is greatly appreciated. ## 🛠️ Installation from Repo Steps: diff --git a/src/window.py b/src/window.py index e396550..9340401 100644 --- a/src/window.py +++ b/src/window.py @@ -297,11 +297,11 @@ class WarehouseWindow(Adw.ApplicationWindow): flatpak_row.set_subtitle(app_id) if "eol" in self.host_flatpaks[index][12]: - eol_app_label = Gtk.Label(label=_("EOL"), valign=Gtk.Align.CENTER, tooltip_text=_("{} has reached its End of Life and will not receive any security updates").format(app_name)) + eol_app_label = Gtk.Label(label=_("EOL"), hexpand=True, wrap=True, justify=Gtk.Justification.RIGHT, valign=Gtk.Align.CENTER, tooltip_text=_("{} has reached its End of Life and will not receive any security updates").format(app_name)) eol_app_label.add_css_class("error") if self.host_flatpaks[index][13] in self.eol_list: - eol_runtime_label = Gtk.Label(label=_("EOL"), valign=Gtk.Align.CENTER, tooltip_text=_("{}' runtime has reached its End of Life and will not receive any security updates").format(app_name)) + eol_runtime_label = Gtk.Label(label=_("EOL"), hexpand=True, wrap=True, justify=Gtk.Justification.RIGHT, valign=Gtk.Align.CENTER, tooltip_text=_("{}' runtime has reached its End of Life and will not receive any security updates").format(app_name)) eol_runtime_label.add_css_class("error") flatpak_row.add_suffix(eol_runtime_label)