mirror of
https://github.com/morgan9e/warehouse
synced 2026-04-14 00:04:08 +09:00
Make the final strings even more final
This commit is contained in:
@@ -11,12 +11,12 @@ template OrphansWindow : Adw.Window {
|
||||
[start]
|
||||
ToggleButton search_button {
|
||||
icon-name: "system-search-symbolic";
|
||||
tooltip-text: _("Search the List");
|
||||
tooltip-text: _("Search List");
|
||||
}
|
||||
[end]
|
||||
Button oepn_folder_button {
|
||||
icon-name: "document-open-symbolic";
|
||||
tooltip-text: _("Open the User Data Folder");
|
||||
tooltip-text: _("Open Data Folder");
|
||||
}
|
||||
}
|
||||
[top]
|
||||
|
||||
@@ -214,7 +214,7 @@ class OrphansWindow(Adw.Window):
|
||||
task = Gio.Task.new(None, None, lambda *_, index=index: self.sizeCallBack(index))
|
||||
task.run_in_thread(lambda _task, _obj, _data, _cancellable, *_, index=index: self.sizeThread(index, path))
|
||||
|
||||
open_row_button = Gtk.Button(icon_name="document-open-symbolic", valign=Gtk.Align.CENTER)
|
||||
open_row_button = Gtk.Button(icon_name="document-open-symbolic", valign=Gtk.Align.CENTER, tooltip_text=_("Open User Data Folder"))
|
||||
open_row_button.add_css_class("flat")
|
||||
open_row_button.connect("clicked", self.open_button_handler, (self.user_data_path + dir_name))
|
||||
dir_row.add_suffix(open_row_button)
|
||||
|
||||
@@ -15,7 +15,7 @@ template PopularRemotesWindow : Adw.Window {
|
||||
vexpand: true;
|
||||
Adw.StatusPage {
|
||||
valign: start;
|
||||
title: _("Add a Remote");
|
||||
title: _("Add Remote");
|
||||
description: _("Choose from a list of popular remotes or add a new one.");
|
||||
Adw.Clamp {
|
||||
Box {
|
||||
|
||||
@@ -78,7 +78,7 @@ def show_properties_window(widget, index, window):
|
||||
user_data_list.remove(user_data_row)
|
||||
user_data_list.append(Adw.ActionRow(title="No User Data"))
|
||||
else:
|
||||
properties_toast_overlay.add_toast(Adw.Toast.new(_("Could not trash data")))
|
||||
properties_toast_overlay.add_toast(Adw.Toast.new(_("Could not trash user data")))
|
||||
|
||||
def clean_button_handler(_widget):
|
||||
dialog = Adw.MessageDialog.new(window, _("Send {}'s User Data to the Trash?").format(app_name))
|
||||
|
||||
@@ -9,19 +9,19 @@ template WarehouseWindow : Adw.ApplicationWindow {
|
||||
[start]
|
||||
Button refresh_button {
|
||||
icon-name: "view-refresh-symbolic";
|
||||
tooltip-text: _("Refresh the List");
|
||||
tooltip-text: _("Refresh List");
|
||||
}
|
||||
|
||||
[start]
|
||||
ToggleButton search_button {
|
||||
icon-name: "system-search-symbolic";
|
||||
tooltip-text: _("Search the List");
|
||||
tooltip-text: _("Search List");
|
||||
}
|
||||
|
||||
[start]
|
||||
ToggleButton filter_button {
|
||||
icon-name: "funnel-symbolic";
|
||||
tooltip-text: _("Filter the List");
|
||||
tooltip-text: _("Filter List");
|
||||
}
|
||||
|
||||
[end]
|
||||
|
||||
Reference in New Issue
Block a user