mirror of
https://github.com/morgan9e/warehouse
synced 2026-04-14 00:04:08 +09:00
Remove translator note from README
This commit is contained in:
@@ -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:
|
||||
|
||||
|
||||
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user