Compare commits

..

8 Commits

Author SHA1 Message Date
Hosted Weblate a7e909eaff Translated using Weblate (Viossa)
Currently translated at 88.2% (322 of 365 strings)

Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Nginearing <142851004+Nginearing@users.noreply.github.com>
Translate-URL: https://hosted.weblate.org/projects/tagstudio/strings/qpv/
Translation: TagStudio/Strings
2026-05-30 19:01:18 +02:00
Hosted Weblate 3f6c688429 Translated using Weblate (Toki Pona)
Currently translated at 95.8% (350 of 365 strings)

Co-authored-by: Cyborus <cyborus@disroot.org>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Translate-URL: https://hosted.weblate.org/projects/tagstudio/strings/tok/
Translation: TagStudio/Strings
2026-05-30 19:01:17 +02:00
Hosted Weblate 9c8a94b9f7 Translated using Weblate (French)
Currently translated at 100.0% (365 of 365 strings)

Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Med <45147847+kitsumed@users.noreply.github.com>
Translate-URL: https://hosted.weblate.org/projects/tagstudio/strings/fr/
Translation: TagStudio/Strings
2026-05-30 19:01:16 +02:00
Hosted Weblate 34e931bb18 Translated using Weblate (Spanish)
Currently translated at 100.0% (365 of 365 strings)

Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Julen Arratibel Etxabe <jarratibeletxabe@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/tagstudio/strings/es/
Translation: TagStudio/Strings
2026-05-30 19:01:15 +02:00
Hosted Weblate d2baf477d2 Translated using Weblate (Italian)
Currently translated at 100.0% (365 of 365 strings)

Co-authored-by: Octavian <223219150+EdelFlosWeiss@users.noreply.github.com>
Translate-URL: https://hosted.weblate.org/projects/tagstudio/strings/it/
Translation: TagStudio/Strings
2026-05-30 19:01:15 +02:00
Hosted Weblate f160e6db75 Translated using Weblate (Japanese)
Currently translated at 98.6% (360 of 365 strings)

Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: wany-oh <wany-oh@users.noreply.hosted.weblate.org>
Translate-URL: https://hosted.weblate.org/projects/tagstudio/strings/ja/
Translation: TagStudio/Strings
2026-05-30 19:01:14 +02:00
Hosted Weblate 7ae08b74a9 Translated using Weblate (Russian)
Currently translated at 98.9% (361 of 365 strings)

Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: NikitaNik_of <nikita-s03@mail.ru>
Translate-URL: https://hosted.weblate.org/projects/tagstudio/strings/ru/
Translation: TagStudio/Strings
2026-05-30 19:01:13 +02:00
Travis Abendshien 6502c755c7 fix: remove argument names from q_image.save()
Fixes an incorrect call to .save() that prevented vector images from rendering.
2026-05-25 17:31:28 -07:00
2 changed files with 6 additions and 1 deletions
+1 -1
View File
@@ -1216,7 +1216,7 @@ class ThumbRenderer(QObject):
# Write the image to a buffer as png
buffer: QBuffer = QBuffer()
buffer.open(QBuffer.OpenModeFlag.ReadWrite)
q_image.save(device=buffer, format="PNG") # pyright: ignore[reportArgumentType]
q_image.save(buffer, "PNG") # pyright: ignore[reportCallIssue, reportArgumentType]
# Load the image from the buffer
im = Image.new("RGB", (size, size), color="#1e1e1e")
@@ -74,6 +74,9 @@
"field.copy": "Copia Campo",
"field.edit": "Modifica Campo",
"field.paste": "Incolla Campo",
"field_type.datetime": "Data e Ora",
"field_type.text": "Testo",
"field_type.unknown": "Tipo Sconosciuto",
"file.date_added": "Data Aggiunta",
"file.date_created": "Data di Creazione",
"file.date_modified": "Data di Modifica",
@@ -157,6 +160,7 @@
"json_migration.heading.aliases": "Alias:",
"json_migration.heading.colors": "Colori:",
"json_migration.heading.differ": "Discrepanze",
"json_migration.heading.extensions": "Estensioni:",
"json_migration.heading.match": "Abbinato",
"json_migration.heading.names": "Nomi:",
"json_migration.heading.parent_tags": "Etichette Genitore:",
@@ -271,6 +275,7 @@
"settings.open_library_on_start": "Apri Biblioteca all'Avvio",
"settings.page_size": "Dimensione Pagina",
"settings.restart_required": "Riavvia TagStudio affinchè le modifiche abbiano effetto.",
"settings.scan_files_on_open": "Carica Automaticamente i Nuovi File",
"settings.show_filenames_in_grid": "Mostra Nomi dei File nella Griglia",
"settings.show_recent_libraries": "Mostra Biblioteche Recenti",
"settings.splash.label": "Schermata Iniziale",