mirror of
https://github.com/TagStudioDev/TagStudio.git
synced 2026-01-31 15:19:10 +00:00
fix: don't add default title field, use proper phrasing for adding files (#701)
* fix: use correct message when adding macros * fix: no longer add title field to new entries * fix: use `entries` dialog title instead of `macros`
This commit is contained in:
committed by
GitHub
parent
441ffce4a3
commit
16fb0290a0
@@ -20,6 +20,8 @@
|
||||
"entries.mirror.title": "Mirroring Entries",
|
||||
"entries.mirror.window_title": "Mirror Entries",
|
||||
"entries.mirror": "&Mirror",
|
||||
"entries.running.dialog.new_entries": "Adding {count}/{total} New File Entries...",
|
||||
"entries.running.dialog.title": "Adding New File Entries",
|
||||
"entries.tags": "Tags",
|
||||
"entries.unlinked.delete_alt": "De&lete Unlinked Entries",
|
||||
"entries.unlinked.delete.confirm": "Are you sure you want to delete the following {count} entries?",
|
||||
@@ -149,7 +151,7 @@
|
||||
"library.refresh.scanning.singular": "Scanning Directories for New Files...\n{searched_count} File Searched, {found_count} New Files Found",
|
||||
"library.refresh.title": "Refreshing Directories",
|
||||
"library.scan_library.title": "Scanning Library",
|
||||
"macros.running.dialog.new_entries": "Running Configured Macros on {count}/{total} New Entries",
|
||||
"macros.running.dialog.new_entries": "Running Configured Macros on {count}/{total} New File Entries...",
|
||||
"macros.running.dialog.title": "Running Macros on New Entries",
|
||||
"media_player.autoplay": "Autoplay",
|
||||
"menu.edit.ignore_list": "Ignore Files and Folders",
|
||||
|
||||
@@ -44,7 +44,7 @@ class RefreshDirTracker:
|
||||
Entry(
|
||||
path=entry_path,
|
||||
folder=self.library.folder,
|
||||
fields=self.library.default_fields,
|
||||
fields=[],
|
||||
)
|
||||
]
|
||||
)
|
||||
|
||||
@@ -832,9 +832,9 @@ class QtDriver(DriverMixin, QObject):
|
||||
minimum=0,
|
||||
maximum=files_count,
|
||||
)
|
||||
Translations.translate_with_setter(pw.setWindowTitle, "macros.running.dialog.title")
|
||||
Translations.translate_with_setter(pw.setWindowTitle, "entries.running.dialog.title")
|
||||
Translations.translate_with_setter(
|
||||
pw.update_label, "macros.running.dialog.new_entries", count=1, total=files_count
|
||||
pw.update_label, "entries.running.dialog.new_entries", count=1, total=files_count
|
||||
)
|
||||
pw.show()
|
||||
|
||||
@@ -843,7 +843,7 @@ class QtDriver(DriverMixin, QObject):
|
||||
pw.update_progress(x + 1),
|
||||
pw.update_label(
|
||||
Translations.translate_formatted(
|
||||
"macros.running.dialog.new_entries", count=x + 1, total=files_count
|
||||
"entries.running.dialog.new_entries", count=x + 1, total=files_count
|
||||
)
|
||||
),
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user