mirror of
https://github.com/TagStudioDev/TagStudio.git
synced 2026-09-02 09:09:01 +02:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4a835dc846 | |||
| 29d0294245 |
@@ -4,6 +4,7 @@
|
||||
|
||||
VERSION: str = "9.5.7" # Major.Minor.Patch
|
||||
VERSION_BRANCH: str = "" # Usually "" or "Pre-Release"
|
||||
GITHUB_RELEASE_URL = "https://github.com/TagStudioDev/TagStudio/releases/latest"
|
||||
|
||||
# The folder & file names where TagStudio keeps its data relative to a library.
|
||||
TS_FOLDER_NAME: str = ".TagStudio"
|
||||
|
||||
@@ -2,7 +2,7 @@ import structlog
|
||||
from PySide6.QtCore import Qt
|
||||
from PySide6.QtWidgets import QMessageBox
|
||||
|
||||
from tagstudio.core.constants import VERSION
|
||||
from tagstudio.core.constants import GITHUB_RELEASE_URL, VERSION
|
||||
from tagstudio.core.ts_core import TagStudioCore
|
||||
from tagstudio.core.utils.types import unwrap
|
||||
from tagstudio.qt.models.palette import ColorType, UiColor, get_ui_color
|
||||
@@ -37,4 +37,7 @@ class OutOfDateMessageBox(QMessageBox):
|
||||
installed_version=f"<span style='color:{red}'>{VERSION}</span>",
|
||||
latest_release_version=f"<span style='color:{green}'>{latest_release_version}</span>",
|
||||
)
|
||||
self.setText(f"{Translations['version_modal.description']}<br><br>{status}")
|
||||
description = Translations.format(
|
||||
"version_modal.description", github_url=GITHUB_RELEASE_URL
|
||||
)
|
||||
self.setText(f"{description}<br><br>{status}")
|
||||
|
||||
@@ -0,0 +1,46 @@
|
||||
{
|
||||
"about.config_path": "የመዋቅር መንገድ",
|
||||
"about.description": "ታግስቱዲዮ የፎቶ እና ፋይል አደረጃጀት በ ታግ መሰረት ላይ የተሰራ ሲስተም ሲሆን ትኩረቱን ለተጠቃሚዎች ነፃነት እና እንደሁኔታዎች ለመቀያየር ምቹ የሆነ መተግበሪያ ነው። ባለቤት የሌላቸው ኮድ ወይም ፎርማት፣ ብዙ ትናንሽ ሜታ ዳታ ፋይል የማይፈጥር እና የፋይል አደረጃጀት ቅርፆ የማይቀይር ነው።",
|
||||
"about.documentation": "ሰነዶች",
|
||||
"about.license": "ፈቃድ",
|
||||
"about.module.found": "ተገኘ",
|
||||
"about.title": "ስለ ታግስቱዲዮ",
|
||||
"about.website": "ድህረገፅ",
|
||||
"app.git": "ጊት ኮሚት",
|
||||
"app.pre_release": "ቅድመ መለቀቅ",
|
||||
"app.title": "{base_title} - ላይብረሪ'{library_dir}",
|
||||
"color.color_border": "ለድንበር ሁለተኛ ቀለም ተጠቀም",
|
||||
"color.confirm_delete": "\"{color_name}\" ይህን ቀለም ለማጥፋት ወስነሃል?",
|
||||
"color.delete": "ታግ አጥፋ",
|
||||
"color.import_pack": "የቀለም እሽግ አስገባ",
|
||||
"color.name": "ስም",
|
||||
"color.namespace.delete.prompt": "ይህን የቀለም ምድብ ለማጥፋት ወስነሃል? ይህን ካጠፋህ ሁሉንም ቀለሞች ምድብ ውስጥ ያሉትን አንድ ላይ ያጠፋል!",
|
||||
"color.namespace.delete.title": "አጥፋ የቀለም ምድብ",
|
||||
"color.new": "አዲስ ቀለም",
|
||||
"color.placeholder": "ቀለም",
|
||||
"color.primary": "ዋና ቀለም",
|
||||
"color.primary_required": "ዋና ቀለም (አስፈላጊ)",
|
||||
"color.secondary": "ሁለተኛ ቀለም",
|
||||
"color.title.no_color": "ቀለም አልባ",
|
||||
"color_manager.title": "ታግ ቀለሞች አስተዳደር",
|
||||
"dependency.missing.title": "{dependency} አልተገነኘም",
|
||||
"drop_import.description": "እነዚህ ፋይሎች ከዚህ በፊት ላይብረሪ ውስጥ ካሉ የፋይል መንገድ ጋር ተመሳሳይነት አላቸው",
|
||||
"drop_import.duplicates_choice.plural": "የሚከተለው {count} ፋይሎች ከዚህ በፊት ላይብረሪ ውስጥ ካሉ የፋይል መንገዶች ጋር ተመሳሳይ ናቸው።",
|
||||
"drop_import.duplicates_choice.singular": "የሚከተለው ፋይል ከዚህ በፊት ላይብረሪ ፋይል መንገድ ጋር ተመሳሳይ ነው።",
|
||||
"drop_import.progress.label.initial": "አድስ ፋይሎች ማስገባ ላይ...",
|
||||
"drop_import.progress.label.plural": "አዲስ ፋይሎች በማስገባት ላይ...\n{count} የገቡ ፋይሎች።{suffix}",
|
||||
"drop_import.progress.label.singular": "አዲስ ፋይሎች በማስገባት ላይ...\n1 ፋይል ገብቷል.{suffix}",
|
||||
"drop_import.progress.window_title": "ፋይሎች አስገባ",
|
||||
"drop_import.title": "የሚጋጩ ፋይል(ሎች)",
|
||||
"edit.color_manager": "የታግ ቀለሞችን አስተዳድር",
|
||||
"edit.copy_fields": "ኮፒ ፊልዶች",
|
||||
"edit.paste_fields": "ፔስት ፊልድስ",
|
||||
"edit.tag_manager": "ታጎች አስተዳድር",
|
||||
"entries.duplicate.merge": "ተደጋጋሚ መረጃ አዋህድ",
|
||||
"entries.duplicate.merge.label": "ተደጋጋሚ መረጃ ማዋሃድ ላይ...",
|
||||
"entries.duplicate.refresh": "ተደጋጋሚ መረጃ ማደስ",
|
||||
"entries.duplicates.description": "ተደጋጋሚ መረጃዎች ማለት ከአንድ በላይ መረጃዎች ዲስክ ላይ ወዳለ አንድ ፋይል የሚጠቁሙ ከሆነ ነው። እነዚህን ማዋሃድ ታጎችን እና ሜታዳታ ከሁሉ ተደጋጋዊ ፋይሎች ወደ አንድ ይቀይረዋል። ይህ ከ \"ተደጋጋሚ ፋይሎች\" ጋር አንድ አይደለም፤ ይህም ተደጋጋሚ ፋይሎች ከታግ ስቱዲዮ ውጪ የሆኑ ናቸው።",
|
||||
"entries.generic.refresh_alt": "&ማደስ",
|
||||
"entries.generic.remove.removing": "መረጃዎች ማጥፋት ላይ",
|
||||
"entries.generic.remove.removing_count": "{count} መረጃዎች ማጥፋት ላይ ..."
|
||||
}
|
||||
@@ -74,6 +74,9 @@
|
||||
"field.copy": "Feld kopieren",
|
||||
"field.edit": "Feld bearbeiten",
|
||||
"field.paste": "Feld einfügen",
|
||||
"field_type.datetime": "Datum - Uhrzeit",
|
||||
"field_type.text": "Text",
|
||||
"field_type.unknown": "Unbekannter Typ",
|
||||
"file.date_added": "Hinzufügungsdatum",
|
||||
"file.date_created": "Erstellungsdatum",
|
||||
"file.date_modified": "Datum geändert",
|
||||
@@ -348,7 +351,7 @@
|
||||
"trash.dialog.title.singular": "Datei löschen",
|
||||
"trash.name.generic": "Mülleimer",
|
||||
"trash.name.windows": "Papierkorb",
|
||||
"version_modal.description": "Eine neue Version von TagStudio ist verfügbar! Du kannst die neueste Version auf <a href=\"https://github.com/TagStudioDev/TagStudio/releases/latest\">GitHub</a> herunterladen.",
|
||||
"version_modal.description": "Eine neue Version von TagStudio ist verfügbar! Du kannst die neueste Version auf <a href=\"{github_url}\">GitHub</a> herunterladen.",
|
||||
"version_modal.status": "Installierte Version: {installed_version}<br>Letzte veröffentlichte Version: {latest_release_version}",
|
||||
"version_modal.title": "TagStudio Aktualisierung verfügbar",
|
||||
"view.size.0": "Mini",
|
||||
|
||||
@@ -354,7 +354,7 @@
|
||||
"trash.name.generic": "Trash",
|
||||
"trash.name.windows": "Recycle Bin",
|
||||
"version_modal.title": "TagStudio Update Available",
|
||||
"version_modal.description": "A new version of TagStudio is available! You can download the latest release from <a href=\"https://github.com/TagStudioDev/TagStudio/releases/latest\">Github</a>.",
|
||||
"version_modal.description": "A new version of TagStudio is available! You can download the latest release from <a href=\"{github_url}\">GitHub</a>.",
|
||||
"version_modal.status": "Installed Version: {installed_version}<br>Latest Release Version: {latest_release_version}",
|
||||
"view.size.0": "Mini",
|
||||
"view.size.1": "Small",
|
||||
|
||||
@@ -348,7 +348,7 @@
|
||||
"trash.dialog.title.singular": "Eliminar archivo",
|
||||
"trash.name.generic": "Basura",
|
||||
"trash.name.windows": "Papelera de reciclaje",
|
||||
"version_modal.description": "¡Ya está disponible una nueva versión de TagStudio! Puedes descargar la última versión desde <a href=\"https://github.com/TagStudioDev/TagStudio/releases/latest\">Github</a>.",
|
||||
"version_modal.description": "¡Ya está disponible una nueva versión de TagStudio! Puedes descargar la última versión desde <a href=\"{github_url}\">Github</a>.",
|
||||
"version_modal.status": "Versión Instalada: {installed_version}<br>Última Versión Publicada: {latest_release_version}",
|
||||
"version_modal.title": "Actualización de TagStudio disponible",
|
||||
"view.size.0": "Mini",
|
||||
|
||||
@@ -307,7 +307,7 @@
|
||||
"trash.dialog.title.singular": "Poista tiedosto",
|
||||
"trash.name.generic": "Roskakori",
|
||||
"trash.name.windows": "Roskakori",
|
||||
"version_modal.description": "TagStudion uusi versio on saatavilla! Voit ladata uusimman version <a href=\"https://github.com/TagStudioDev/TagStudio/releases/latest\">Githubista</a>.",
|
||||
"version_modal.description": "TagStudion uusi versio on saatavilla! Voit ladata uusimman version <a href=\"{github_url}\">Githubista</a>.",
|
||||
"version_modal.status": "Asennettu versio: {installed_version}<br>Uusin julkaisuversio: {latest_release_version}",
|
||||
"version_modal.title": "TagStudio päivitys saatavilla",
|
||||
"view.size.0": "Mini",
|
||||
|
||||
@@ -157,6 +157,7 @@
|
||||
"json_migration.heading.aliases": "Alias :",
|
||||
"json_migration.heading.colors": "Couleurs :",
|
||||
"json_migration.heading.differ": "Divergence",
|
||||
"json_migration.heading.extensions": "Extensions:",
|
||||
"json_migration.heading.match": "Correspondant",
|
||||
"json_migration.heading.names": "Noms :",
|
||||
"json_migration.heading.parent_tags": "Tags Parents :",
|
||||
@@ -348,7 +349,7 @@
|
||||
"trash.dialog.title.singular": "Supprimer le Fichier",
|
||||
"trash.name.generic": "Poubelle",
|
||||
"trash.name.windows": "Corbeille",
|
||||
"version_modal.description": "Une nouvelle version de TagStudio est disponible! Vous pouvez télécharger la version la plus récente sur <a href=\"https://github.com/TagStudioDev/TagStudio/releases/latest\">Github</a>.",
|
||||
"version_modal.description": "Une nouvelle version de TagStudio est disponible! Vous pouvez télécharger la version la plus récente sur <a href=\"{github_url}\">Github</a>.",
|
||||
"version_modal.status": "Version installer : {installed_version}<br>Dernière version disponible : {latest_release_version}",
|
||||
"version_modal.title": "Mise à jour de TagStudio disponible",
|
||||
"view.size.0": "Mini",
|
||||
|
||||
@@ -74,6 +74,9 @@
|
||||
"field.copy": "Mező &másolása",
|
||||
"field.edit": "Mező szerkesztése",
|
||||
"field.paste": "Mező &beillesztése",
|
||||
"field_type.datetime": "Dátum és idő",
|
||||
"field_type.text": "Szöveg",
|
||||
"field_type.unknown": "Ismeretlen típus",
|
||||
"file.date_added": "Adatbázisba felvétel dátuma",
|
||||
"file.date_created": "Létrehozás dátuma",
|
||||
"file.date_modified": "Módosítás dátuma",
|
||||
@@ -157,6 +160,7 @@
|
||||
"json_migration.heading.aliases": "Áljelek:",
|
||||
"json_migration.heading.colors": "Színek:",
|
||||
"json_migration.heading.differ": "Eltérés",
|
||||
"json_migration.heading.extensions": "Kiterjesztések:",
|
||||
"json_migration.heading.match": "Egységesítve",
|
||||
"json_migration.heading.names": "Nevek:",
|
||||
"json_migration.heading.parent_tags": "Szülőcímkék:",
|
||||
@@ -271,6 +275,7 @@
|
||||
"settings.open_library_on_start": "&Könyvtár megnyitása a program indulásakor",
|
||||
"settings.page_size": "&Oldalméret",
|
||||
"settings.restart_required": "A módosítások érvénybeléptetéséhez<br>újra kell indítani a TagStudiót.",
|
||||
"settings.scan_files_on_open": "Új fájlok automatikus betöltése",
|
||||
"settings.show_filenames_in_grid": "&Fájlnevek megjelenítése rácsnézetben",
|
||||
"settings.show_recent_libraries": "&Legutóbbi könyvtárak megjelenítése",
|
||||
"settings.splash.label": "Indítókép",
|
||||
@@ -348,7 +353,7 @@
|
||||
"trash.dialog.title.singular": "Fájl törlése",
|
||||
"trash.name.generic": "kukába",
|
||||
"trash.name.windows": "lomtárba",
|
||||
"version_modal.description": "Elérhetővé vált egy TagStudio-frissítés. A legújabb verziót a <a href=\"https://github.com/TagStudioDev/TagStudio/releases/latest\">Githubról</a> töltheti le.",
|
||||
"version_modal.description": "Elérhetővé vált egy TagStudio-frissítés. A legújabb verziót a <a href=\"{github_url}\">Githubról</a> töltheti le.",
|
||||
"version_modal.status": "Telepített verzió: {installed_version}<br>Legújabb stabil verzió: {latest_release_version}",
|
||||
"version_modal.title": "TagStudio-frissítés",
|
||||
"view.size.0": "Apró",
|
||||
|
||||
@@ -348,7 +348,7 @@
|
||||
"trash.dialog.title.singular": "Elimina File",
|
||||
"trash.name.generic": "Spazzatura",
|
||||
"trash.name.windows": "Cestino",
|
||||
"version_modal.description": "Una nuova versione di TagStudio è disponibile! Puoi scaricare l'ultima versione da <a href=\"https://github.com/TagStudioDev/TagStudio/releases/latest\">Github</a>.",
|
||||
"version_modal.description": "Una nuova versione di TagStudio è disponibile! Puoi scaricare l'ultima versione da <a href=\"{github_url}\">Github</a>.",
|
||||
"version_modal.status": "Versione Installata: {installed_version}<br>Ultima Versione Rilasciata: {latest_release_version}",
|
||||
"version_modal.title": "Aggiornamento di TagStudio Disponibile",
|
||||
"view.size.0": "Mini",
|
||||
|
||||
@@ -348,7 +348,7 @@
|
||||
"trash.dialog.title.singular": "ファイルの削除",
|
||||
"trash.name.generic": "ごみ箱",
|
||||
"trash.name.windows": "ごみ箱",
|
||||
"version_modal.description": "TagStudio の新しいバージョンが利用できます。<a href=\"https://github.com/TagStudioDev/TagStudio/releases/latest\">GitHub</a> から最新リリースをダウンロードできます。",
|
||||
"version_modal.description": "TagStudio の新しいバージョンが利用できます。<a href=\"{github_url}\">GitHub</a> から最新リリースをダウンロードできます。",
|
||||
"version_modal.status": "インストール済みのバージョン: {installed_version}<br>最新リリースのバージョン: {latest_release_version}",
|
||||
"version_modal.title": "TagStudio の更新があります",
|
||||
"view.size.0": "極小",
|
||||
|
||||
@@ -348,7 +348,7 @@
|
||||
"trash.dialog.title.singular": "கோப்பை அழி",
|
||||
"trash.name.generic": "குப்பை",
|
||||
"trash.name.windows": "மறுசுழற்சி பின்",
|
||||
"version_modal.description": "முகவரிச்சீட்டுஅறை இன் புதிய பதிப்பு கிடைக்கிறது! சமீபத்திய வெளியீட்டை நீங்கள் பதிவிறக்கம் செய்யலாம் <a href=\"https://github.com/TagStudioDev/TagStudio/releases/latest\">அறிவிலிமையம்</a>.",
|
||||
"version_modal.description": "முகவரிச்சீட்டுஅறை இன் புதிய பதிப்பு கிடைக்கிறது! சமீபத்திய வெளியீட்டை நீங்கள் பதிவிறக்கம் செய்யலாம் <a href=\"{github_url}\">அறிவிலிமையம்</a>.",
|
||||
"version_modal.status": "நிறுவப்பட்ட பதிப்பு: {installed_version}<br>அண்மைகால வெளியீட்டு பதிப்பு: {latest_release_version}",
|
||||
"version_modal.title": "முகவரிச்சீட்டுஅறை புதுப்பிப்பு கிடைக்கிறது",
|
||||
"view.size.0": "மினி",
|
||||
|
||||
@@ -335,7 +335,7 @@
|
||||
"trash.dialog.title.singular": "o weka e lipu",
|
||||
"trash.name.generic": "poki pi ijo weka",
|
||||
"trash.name.windows": "poki pi ijo weka",
|
||||
"version_modal.description": "nanpa sin pi ilo TagStudio li lon! sina ken kama jo e ona tan <a href=\"https://github.com/TagStudioDev/TagStudio/releases/latest\">ma Github</a>.",
|
||||
"version_modal.description": "nanpa sin pi ilo TagStudio li lon! sina ken kama jo e ona tan <a href=\"{github_url}\">ma Github</a>.",
|
||||
"version_modal.status": "nanpa ni: {installed_version}<br>nanpa sin: {latest_release_version}",
|
||||
"version_modal.title": "nanpa sin pi ilo TagStudio li lon",
|
||||
"view.size.0": "lili mute",
|
||||
|
||||
Reference in New Issue
Block a user