i18n: Large refactor of all translations keys to prepare the move to our new translation web platform.

This commit is contained in:
Lemmy
2026-01-05 22:03:09 -05:00
parent f3b9472d8b
commit 138e5a50af
207 changed files with 20575 additions and 41077 deletions
+5 -5
View File
@@ -203,7 +203,7 @@ Popup {
NIconButton {
icon: "filepicker-refresh"
tooltipText: I18n.tr("tooltips.refresh")
tooltipText: I18n.tr("common.refresh")
onClicked: {
// Force a proper refresh by resetting the folder
const currentFolder = folderModel.folder;
@@ -214,7 +214,7 @@ Popup {
}
NIconButton {
icon: "filepicker-close"
tooltipText: I18n.tr("tooltips.close")
tooltipText: I18n.tr("common.close")
onClicked: {
root.cancelled();
root.close();
@@ -268,7 +268,7 @@ Popup {
NIconButton {
icon: filePickerPanel.showSearchBar ? "filepicker-x" : "filepicker-search"
tooltipText: filePickerPanel.showSearchBar ? I18n.tr("tooltips.search-close") : I18n.tr("tooltips.search")
tooltipText: filePickerPanel.showSearchBar ? I18n.tr("tooltips.search-close") : I18n.tr("common.search")
baseSize: Style.baseWidgetSize * 0.8
onClicked: {
filePickerPanel.showSearchBar = !filePickerPanel.showSearchBar;
@@ -339,7 +339,7 @@ Popup {
}
NIconButton {
icon: root.showHiddenFiles ? "filepicker-eye-off" : "filepicker-eye"
tooltipText: root.showHiddenFiles ? I18n.tr("tooltips.hidden-files-hide") : I18n.tr("tooltips.hidden-files-show")
tooltipText: root.showHiddenFiles ? I18n.tr("tooltips.hidden-files-hide") : I18n.tr("tooltips.hidden-files-hide")
baseSize: Style.baseWidgetSize * 0.8
onClicked: {
root.showHiddenFiles = !root.showHiddenFiles;
@@ -775,7 +775,7 @@ Popup {
}
NButton {
text: I18n.tr("widgets.file-picker.cancel")
text: I18n.tr("common.cancel")
outlined: true
onClicked: {
root.cancelled();