Make the final strings even more final

This commit is contained in:
Heliguy
2023-10-23 03:35:57 -04:00
parent a7e4c7d740
commit ae2ef2faae
5 changed files with 8 additions and 8 deletions

View File

@@ -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]

View File

@@ -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)

View File

@@ -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 {

View File

@@ -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))

View File

@@ -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]