Update database migration version translation token

(cherry picked from commit 7d0d503a5e132cda3c03d6f7cd7b51c9c80740de)

Closes #4507
This commit is contained in:
Bogdan 2024-01-21 05:25:21 +02:00
parent 4a5cd2098b
commit 6a1fbd64b4
31 changed files with 38 additions and 38 deletions

View file

@ -22,9 +22,9 @@ class About extends Component {
isNetCore, isNetCore,
isDocker, isDocker,
runtimeVersion, runtimeVersion,
migrationVersion,
databaseVersion, databaseVersion,
databaseType, databaseType,
migrationVersion,
appData, appData,
startupPath, startupPath,
mode, mode,
@ -66,13 +66,13 @@ class About extends Component {
} }
<DescriptionListItem <DescriptionListItem
title={translate('DBMigration')} title={translate('Database')}
data={migrationVersion} data={`${titleCase(databaseType)} ${databaseVersion}`}
/> />
<DescriptionListItem <DescriptionListItem
title={translate('Database')} title={translate('DatabaseMigration')}
data={`${titleCase(databaseType)} ${databaseVersion}`} data={migrationVersion}
/> />
<DescriptionListItem <DescriptionListItem
@ -114,9 +114,9 @@ About.propTypes = {
isNetCore: PropTypes.bool.isRequired, isNetCore: PropTypes.bool.isRequired,
runtimeVersion: PropTypes.string.isRequired, runtimeVersion: PropTypes.string.isRequired,
isDocker: PropTypes.bool.isRequired, isDocker: PropTypes.bool.isRequired,
migrationVersion: PropTypes.number.isRequired,
databaseType: PropTypes.string.isRequired, databaseType: PropTypes.string.isRequired,
databaseVersion: PropTypes.string.isRequired, databaseVersion: PropTypes.string.isRequired,
migrationVersion: PropTypes.number.isRequired,
appData: PropTypes.string.isRequired, appData: PropTypes.string.isRequired,
startupPath: PropTypes.string.isRequired, startupPath: PropTypes.string.isRequired,
mode: PropTypes.string.isRequired, mode: PropTypes.string.isRequired,

View file

@ -220,7 +220,7 @@
"CutoffHelpText": "بمجرد الوصول إلى هذه الجودة ، لن يقوم {appName} بتنزيل الأفلام", "CutoffHelpText": "بمجرد الوصول إلى هذه الجودة ، لن يقوم {appName} بتنزيل الأفلام",
"CutoffUnmet": "قطع غير ملباة", "CutoffUnmet": "قطع غير ملباة",
"Dates": "تواريخ", "Dates": "تواريخ",
"DBMigration": "ترحيل DB", "DatabaseMigration": "ترحيل DB",
"DelayProfile": "ملف التأخير", "DelayProfile": "ملف التأخير",
"DelayProfiles": "ملفات تعريف التأخير", "DelayProfiles": "ملفات تعريف التأخير",
"Delete": "حذف", "Delete": "حذف",

View file

@ -91,7 +91,7 @@
"CreateGroup": "Създай група", "CreateGroup": "Създай група",
"CutoffHelpText": "След достигане на това качество {appName} вече няма да изтегля филми", "CutoffHelpText": "След достигане на това качество {appName} вече няма да изтегля филми",
"CutoffUnmet": "Прекъсване Неудовлетворено", "CutoffUnmet": "Прекъсване Неудовлетворено",
"DBMigration": "DB миграция", "DatabaseMigration": "DB миграция",
"Dates": "Дати", "Dates": "Дати",
"DelayingDownloadUntilInterp": "Забавя се изтеглянето до {0} в {1}", "DelayingDownloadUntilInterp": "Забавя се изтеглянето до {0} в {1}",
"DeleteImportListExclusionMessageText": "Наистина ли искате да изтриете това изключване от списъка за импортиране?", "DeleteImportListExclusionMessageText": "Наистина ли искате да изтриете това изключване от списъка за импортиране?",

View file

@ -256,7 +256,7 @@
"CutoffHelpText": "Un cop s'assoleixi aquesta qualitat, {appName} ja no baixarà pel·lícules", "CutoffHelpText": "Un cop s'assoleixi aquesta qualitat, {appName} ja no baixarà pel·lícules",
"CutoffUnmet": "Tall no assolit", "CutoffUnmet": "Tall no assolit",
"Dates": "Dates", "Dates": "Dates",
"DBMigration": "Migració de BD", "DatabaseMigration": "Migració de BD",
"DelayingDownloadUntilInterp": "S'està retardant la baixada fins a les {0} a les {1}", "DelayingDownloadUntilInterp": "S'està retardant la baixada fins a les {0} a les {1}",
"DelayProfile": "Perfil de retard", "DelayProfile": "Perfil de retard",
"DelayProfiles": "Perfils de retard", "DelayProfiles": "Perfils de retard",

View file

@ -150,7 +150,7 @@
"BackupNow": "Ihned zálohovat", "BackupNow": "Ihned zálohovat",
"BypassProxyForLocalAddresses": "Obcházení proxy serveru pro místní adresy", "BypassProxyForLocalAddresses": "Obcházení proxy serveru pro místní adresy",
"ConnectSettings": "Nastavení připojení", "ConnectSettings": "Nastavení připojení",
"DBMigration": "Migrace databáze", "DatabaseMigration": "Migrace databáze",
"Dates": "Termíny", "Dates": "Termíny",
"DelayingDownloadUntilInterp": "Zpoždění stahování do {0} o {1}", "DelayingDownloadUntilInterp": "Zpoždění stahování do {0} o {1}",
"Delete": "Vymazat", "Delete": "Vymazat",

View file

@ -287,7 +287,7 @@
"CutoffHelpText": "Når denne kvalitet er nået, downloader {appName} ikke længere film", "CutoffHelpText": "Når denne kvalitet er nået, downloader {appName} ikke længere film",
"CutoffUnmet": "Afskåret ude", "CutoffUnmet": "Afskåret ude",
"Dates": "Datoer", "Dates": "Datoer",
"DBMigration": "DB Migration", "DatabaseMigration": "DB Migration",
"DelayProfile": "Udskyd Profiler", "DelayProfile": "Udskyd Profiler",
"DelayProfiles": "Udskyd Profiler", "DelayProfiles": "Udskyd Profiler",
"Delete": "Slet", "Delete": "Slet",

View file

@ -21,7 +21,7 @@
"CopyUsingHardlinksHelpText": "Hardlinks erstellen wenn Torrents die noch geseeded werden kopiert werden sollen", "CopyUsingHardlinksHelpText": "Hardlinks erstellen wenn Torrents die noch geseeded werden kopiert werden sollen",
"CopyUsingHardlinksHelpTextWarning": "Dateisperren Gelegentlich kann es vorkommen, dass Dateisperren das Umbenennen von Dateien verhindern, die gerade geseeded werden. Sie können das Seeding vorübergehend deaktivieren und die Umbenennungsfunktion von {appName} als Workaround verwenden.", "CopyUsingHardlinksHelpTextWarning": "Dateisperren Gelegentlich kann es vorkommen, dass Dateisperren das Umbenennen von Dateien verhindern, die gerade geseeded werden. Sie können das Seeding vorübergehend deaktivieren und die Umbenennungsfunktion von {appName} als Workaround verwenden.",
"CreateGroup": "Gruppe erstellen", "CreateGroup": "Gruppe erstellen",
"DBMigration": "DB Migration", "DatabaseMigration": "DB Migration",
"DelayProfile": "Verzögerungsprofil", "DelayProfile": "Verzögerungsprofil",
"DeleteBackup": "Backup löschen", "DeleteBackup": "Backup löschen",
"DeleteBackupMessageText": "Backup '{0}' wirkich löschen?", "DeleteBackupMessageText": "Backup '{0}' wirkich löschen?",

View file

@ -445,7 +445,7 @@
"AnalyticsEnabledHelpTextWarning": "Απαιτείται επανεκκίνηση για να τεθεί σε ισχύ", "AnalyticsEnabledHelpTextWarning": "Απαιτείται επανεκκίνηση για να τεθεί σε ισχύ",
"Automatic": "Αυτόματο", "Automatic": "Αυτόματο",
"BackupNow": "Δημιουργία Αντιγράφου Ασφαλείας", "BackupNow": "Δημιουργία Αντιγράφου Ασφαλείας",
"DBMigration": "Μετεγκατάσταση DB", "DatabaseMigration": "Μετεγκατάσταση DB",
"Dates": "Ημερομηνίες", "Dates": "Ημερομηνίες",
"MarkAsFailed": "Επισήμανση ως αποτυχημένου", "MarkAsFailed": "Επισήμανση ως αποτυχημένου",
"DelayingDownloadUntilInterp": "Καθυστέρηση λήψης έως τις {0} στις {1}", "DelayingDownloadUntilInterp": "Καθυστέρηση λήψης έως τις {0} στις {1}",

View file

@ -89,7 +89,7 @@
"AnyReleaseOkHelpText": "{appName} will automatically switch to the release best matching downloaded tracks", "AnyReleaseOkHelpText": "{appName} will automatically switch to the release best matching downloaded tracks",
"ApiKeyHelpTextWarning": "Requires restart to take effect", "ApiKeyHelpTextWarning": "Requires restart to take effect",
"ApiKeyValidationHealthCheckMessage": "Please update your API key to be at least {0} characters long. You can do this via settings or the config file", "ApiKeyValidationHealthCheckMessage": "Please update your API key to be at least {0} characters long. You can do this via settings or the config file",
"AppDataDirectory": "AppData directory", "AppDataDirectory": "AppData Directory",
"AppDataLocationHealthCheckMessage": "Updating will not be possible to prevent deleting AppData on Update", "AppDataLocationHealthCheckMessage": "Updating will not be possible to prevent deleting AppData on Update",
"AppUpdated": "{appName} Updated", "AppUpdated": "{appName} Updated",
"AppUpdatedVersion": "{appName} has been updated to version `{version}`, in order to get the latest changes you'll need to reload {appName}", "AppUpdatedVersion": "{appName} has been updated to version `{version}`, in order to get the latest changes you'll need to reload {appName}",
@ -245,9 +245,9 @@
"CutoffFormatScoreHelpText": "Once this custom format score is reached {appName} will no longer grab album releases", "CutoffFormatScoreHelpText": "Once this custom format score is reached {appName} will no longer grab album releases",
"CutoffHelpText": "Once this quality is reached {appName} will no longer download albums", "CutoffHelpText": "Once this quality is reached {appName} will no longer download albums",
"CutoffUnmet": "Cutoff Unmet", "CutoffUnmet": "Cutoff Unmet",
"DBMigration": "DB Migration",
"DashOrSpaceDashDependingOnName": "Dash or Space Dash depending on name", "DashOrSpaceDashDependingOnName": "Dash or Space Dash depending on name",
"Database": "Database", "Database": "Database",
"DatabaseMigration": "Database Migration",
"Date": "Date", "Date": "Date",
"DateAdded": "Date Added", "DateAdded": "Date Added",
"Dates": "Dates", "Dates": "Dates",
@ -1021,7 +1021,7 @@
"StandardTrackFormat": "Standard Track Format", "StandardTrackFormat": "Standard Track Format",
"StartTypingOrSelectAPathBelow": "Start typing or select a path below", "StartTypingOrSelectAPathBelow": "Start typing or select a path below",
"Started": "Started", "Started": "Started",
"StartupDirectory": "Startup directory", "StartupDirectory": "Startup Directory",
"Status": "Status", "Status": "Status",
"StatusEndedContinuing": "Continuing", "StatusEndedContinuing": "Continuing",
"Style": "Style", "Style": "Style",

View file

@ -317,7 +317,7 @@
"CreateEmptyArtistFolders": "Crear carpetas de películas vacías", "CreateEmptyArtistFolders": "Crear carpetas de películas vacías",
"CreateEmptyArtistFoldersHelpText": "Crear carpetas de películas que faltan durante la exploración del disco", "CreateEmptyArtistFoldersHelpText": "Crear carpetas de películas que faltan durante la exploración del disco",
"CreateGroup": "Crear grupo", "CreateGroup": "Crear grupo",
"DBMigration": "Migración de DB", "DatabaseMigration": "Migración de DB",
"DelayProfile": "Perfil de retardo", "DelayProfile": "Perfil de retardo",
"DelayProfiles": "Perfiles de retardo", "DelayProfiles": "Perfiles de retardo",
"Delete": "Eliminar", "Delete": "Eliminar",

View file

@ -40,7 +40,7 @@
"InteractiveSearch": "Manuaalihaku", "InteractiveSearch": "Manuaalihaku",
"BackupRetentionHelpText": "Säilytysjaksoa vanhemmat varmuuskopiot siivotaan automaattisesti.", "BackupRetentionHelpText": "Säilytysjaksoa vanhemmat varmuuskopiot siivotaan automaattisesti.",
"ConnectSettings": "Kytkösasetukset", "ConnectSettings": "Kytkösasetukset",
"DBMigration": "Tietokannan siirto", "DatabaseMigration": "Tietokannan siirto",
"DeleteBackupMessageText": "Haluatko varmasti poistaa varmuuskopion \"{name}\"?", "DeleteBackupMessageText": "Haluatko varmasti poistaa varmuuskopion \"{name}\"?",
"DeleteNotificationMessageText": "Haluatko varmasti poistaa ilmoituspalvelun \"{name}\"?", "DeleteNotificationMessageText": "Haluatko varmasti poistaa ilmoituspalvelun \"{name}\"?",
"EnableCompletedDownloadHandlingHelpText": "Tuo valmistuneet lataukset lataustyökalusta automaattisesti.", "EnableCompletedDownloadHandlingHelpText": "Tuo valmistuneet lataukset lataustyökalusta automaattisesti.",

View file

@ -72,7 +72,7 @@
"CutoffHelpText": "Quand cette qualité est atteinte, {appName} ne téléchargera plus de films", "CutoffHelpText": "Quand cette qualité est atteinte, {appName} ne téléchargera plus de films",
"CutoffUnmet": "Seuil non atteint", "CutoffUnmet": "Seuil non atteint",
"Dates": "Dates", "Dates": "Dates",
"DBMigration": "Migration de la base de données", "DatabaseMigration": "Migration de la base de données",
"DelayProfiles": "Profils de retard", "DelayProfiles": "Profils de retard",
"Delete": "Supprimer", "Delete": "Supprimer",
"DeleteBackup": "Supprimer la sauvegarde", "DeleteBackup": "Supprimer la sauvegarde",

View file

@ -21,7 +21,7 @@
"CreateGroup": "צור קבוצה", "CreateGroup": "צור קבוצה",
"CutoffHelpText": "לאחר שהאיכות הזו תושג {appName} כבר לא תוריד סרטים", "CutoffHelpText": "לאחר שהאיכות הזו תושג {appName} כבר לא תוריד סרטים",
"Dates": "תאריכים", "Dates": "תאריכים",
"DBMigration": "הגירת DB", "DatabaseMigration": "הגירת DB",
"DelayProfile": "עיכוב פרופיל", "DelayProfile": "עיכוב פרופיל",
"DelayProfiles": "עיכוב פרופילים", "DelayProfiles": "עיכוב פרופילים",
"Delete": "לִמְחוֹק", "Delete": "לִמְחוֹק",

View file

@ -40,7 +40,7 @@
"CutoffHelpText": "एक बार जब यह गुणवत्ता पहुँच जाती है तो Redarr फिल्में डाउनलोड नहीं करेगा", "CutoffHelpText": "एक बार जब यह गुणवत्ता पहुँच जाती है तो Redarr फिल्में डाउनलोड नहीं करेगा",
"CutoffUnmet": "कट-ऑफ Unmet", "CutoffUnmet": "कट-ऑफ Unmet",
"Dates": "खजूर", "Dates": "खजूर",
"DBMigration": "DB प्रवासन", "DatabaseMigration": "DB प्रवासन",
"DeleteImportListExclusionMessageText": "क्या आप वाकई इस आयात सूची बहिष्करण को हटाना चाहते हैं?", "DeleteImportListExclusionMessageText": "क्या आप वाकई इस आयात सूची बहिष्करण को हटाना चाहते हैं?",
"DeleteImportListMessageText": "क्या आप वाकई '{0}' सूची को हटाना चाहते हैं?", "DeleteImportListMessageText": "क्या आप वाकई '{0}' सूची को हटाना चाहते हैं?",
"DeleteIndexer": "अनुक्रमणिका हटाएं", "DeleteIndexer": "अनुक्रमणिका हटाएं",

View file

@ -29,7 +29,7 @@
"Connections": "Kapcsolatok", "Connections": "Kapcsolatok",
"ConnectSettings": "Kapcsolódási Beállítások", "ConnectSettings": "Kapcsolódási Beállítások",
"Dates": "Dátumok", "Dates": "Dátumok",
"DBMigration": "DB Migráció", "DatabaseMigration": "DB Migráció",
"Delete": "Törlés", "Delete": "Törlés",
"DeleteBackupMessageText": "Biztosan törli a '{name}' biztonsági mentést?", "DeleteBackupMessageText": "Biztosan törli a '{name}' biztonsági mentést?",
"DeleteDownloadClient": "Letöltőkliens törlése", "DeleteDownloadClient": "Letöltőkliens törlése",

View file

@ -47,7 +47,7 @@
"CutoffHelpText": "Þegar þessum gæðum er náð mun {appName} ekki lengur hlaða niður kvikmyndum", "CutoffHelpText": "Þegar þessum gæðum er náð mun {appName} ekki lengur hlaða niður kvikmyndum",
"CutoffUnmet": "Cut-off Ómetið", "CutoffUnmet": "Cut-off Ómetið",
"Dates": "Dagsetningar", "Dates": "Dagsetningar",
"DBMigration": "DB fólksflutningar", "DatabaseMigration": "DB fólksflutningar",
"DelayProfile": "Seinka prófíl", "DelayProfile": "Seinka prófíl",
"DelayProfiles": "Seinka snið", "DelayProfiles": "Seinka snið",
"Delete": "Eyða", "Delete": "Eyða",

View file

@ -80,7 +80,7 @@
"CutoffHelpText": "Una volta raggiunta questa qualità, {appName} non scaricherà più film", "CutoffHelpText": "Una volta raggiunta questa qualità, {appName} non scaricherà più film",
"CutoffUnmet": "Soglia Non Raggiunta", "CutoffUnmet": "Soglia Non Raggiunta",
"Dates": "Date", "Dates": "Date",
"DBMigration": "Migrazione del DataBase", "DatabaseMigration": "Migrazione del DataBase",
"DelayProfile": "Profili di Ritardo", "DelayProfile": "Profili di Ritardo",
"DelayProfiles": "Profili di Ritardo", "DelayProfiles": "Profili di Ritardo",
"Delete": "Cancella", "Delete": "Cancella",

View file

@ -260,7 +260,7 @@
"CutoffHelpText": "この品質に達すると、Radarrは映画をダウンロードしなくなります", "CutoffHelpText": "この品質に達すると、Radarrは映画をダウンロードしなくなります",
"CutoffUnmet": "カットオフアンメット", "CutoffUnmet": "カットオフアンメット",
"Dates": "日付", "Dates": "日付",
"DBMigration": "DB移行", "DatabaseMigration": "DB移行",
"Delete": "削除", "Delete": "削除",
"DeleteImportListExclusion": "インポートリストの除外を削除する", "DeleteImportListExclusion": "インポートリストの除外を削除する",
"DeleteImportListExclusionMessageText": "このインポートリストの除外を削除してもよろしいですか?", "DeleteImportListExclusionMessageText": "このインポートリストの除外を削除してもよろしいですか?",

View file

@ -54,7 +54,7 @@
"CreateGroup": "그룹 만들기", "CreateGroup": "그룹 만들기",
"CutoffHelpText": "이 품질에 도달하면 Radarr는 더 이상 영화를 다운로드 하지 않습니다.", "CutoffHelpText": "이 품질에 도달하면 Radarr는 더 이상 영화를 다운로드 하지 않습니다.",
"CutoffUnmet": "컷오프 미충족", "CutoffUnmet": "컷오프 미충족",
"DBMigration": "DB 마이그레이션", "DatabaseMigration": "DB 마이그레이션",
"DelayProfile": "지연 프로필", "DelayProfile": "지연 프로필",
"DelayProfiles": "지연 프로필", "DelayProfiles": "지연 프로필",
"Delete": "지우다", "Delete": "지우다",

View file

@ -362,7 +362,7 @@
"CutoffHelpText": "Wanneer deze kwaliteit is behaald, zal {appName} niet langer films downloaden", "CutoffHelpText": "Wanneer deze kwaliteit is behaald, zal {appName} niet langer films downloaden",
"CutoffUnmet": "Onbereikte Drempel", "CutoffUnmet": "Onbereikte Drempel",
"Dates": "Datum en tijd", "Dates": "Datum en tijd",
"DBMigration": "DB Migratie", "DatabaseMigration": "DB Migratie",
"DelayProfile": "Uitstel profiel", "DelayProfile": "Uitstel profiel",
"DeleteQualityProfileMessageText": "Bent u zeker dat u het kwaliteitsprofiel {name} wilt verwijderen?", "DeleteQualityProfileMessageText": "Bent u zeker dat u het kwaliteitsprofiel {name} wilt verwijderen?",
"DeleteReleaseProfile": "Verwijder Vertragingsprofiel", "DeleteReleaseProfile": "Verwijder Vertragingsprofiel",

View file

@ -38,7 +38,7 @@
"CutoffHelpText": "Po osiągnięciu tej jakości {appName} nie będzie już pobierał filmów", "CutoffHelpText": "Po osiągnięciu tej jakości {appName} nie będzie już pobierał filmów",
"CutoffUnmet": "Odcięcie niespełnione", "CutoffUnmet": "Odcięcie niespełnione",
"Dates": "Daktyle", "Dates": "Daktyle",
"DBMigration": "Migracja bazy danych", "DatabaseMigration": "Migracja bazy danych",
"DelayProfile": "Profil opóźnienia", "DelayProfile": "Profil opóźnienia",
"DelayProfiles": "Profile opóźnień", "DelayProfiles": "Profile opóźnień",
"Delete": "Usunąć", "Delete": "Usunąć",

View file

@ -419,7 +419,7 @@
"UnableToAddANewNotificationPleaseTryAgain": "Não foi possível adicionar uma nova notificação, tenta novamente.", "UnableToAddANewNotificationPleaseTryAgain": "Não foi possível adicionar uma nova notificação, tenta novamente.",
"UnableToAddANewQualityProfilePleaseTryAgain": "Não foi possível adicionar um novo perfil de qualidade, tenta novamente.", "UnableToAddANewQualityProfilePleaseTryAgain": "Não foi possível adicionar um novo perfil de qualidade, tenta novamente.",
"UnableToLoadRemotePathMappings": "Não foi possível carregar os mapeamentos de caminhos remoto", "UnableToLoadRemotePathMappings": "Não foi possível carregar os mapeamentos de caminhos remoto",
"DBMigration": "Migração da base de dados", "DatabaseMigration": "Migração da base de dados",
"DefaultMetadataProfileIdHelpText": "Há um perfil de qualidade padrão para autores nesta pasta", "DefaultMetadataProfileIdHelpText": "Há um perfil de qualidade padrão para autores nesta pasta",
"DefaultQualityProfileIdHelpText": "Há um perfil de qualidade padrão para autores nesta pasta", "DefaultQualityProfileIdHelpText": "Há um perfil de qualidade padrão para autores nesta pasta",
"Delete": "Eliminar", "Delete": "Eliminar",

View file

@ -168,7 +168,7 @@
"CreateGroup": "Criar grupo", "CreateGroup": "Criar grupo",
"CutoffHelpText": "Assim que esta qualidade for alcançada, o {appName} não baixará mais filmes", "CutoffHelpText": "Assim que esta qualidade for alcançada, o {appName} não baixará mais filmes",
"CutoffUnmet": "Corte não atendido", "CutoffUnmet": "Corte não atendido",
"DBMigration": "Migração de banco de dados", "DatabaseMigration": "Migração de banco de dados",
"DefaultLidarrTags": "Tags padrão do {appName}", "DefaultLidarrTags": "Tags padrão do {appName}",
"DefaultMetadataProfileIdHelpText": "Há um perfil de metadados padrão para autores nesta pasta", "DefaultMetadataProfileIdHelpText": "Há um perfil de metadados padrão para autores nesta pasta",
"DefaultQualityProfileIdHelpText": "Há um perfil de qualidade padrão para autores nesta pasta", "DefaultQualityProfileIdHelpText": "Há um perfil de qualidade padrão para autores nesta pasta",

View file

@ -220,7 +220,7 @@
"CutoffHelpText": "Odată atinsă această calitate, {appName} nu va mai descărca filme", "CutoffHelpText": "Odată atinsă această calitate, {appName} nu va mai descărca filme",
"CutoffUnmet": "Calitate maximă neatinsă", "CutoffUnmet": "Calitate maximă neatinsă",
"Dates": "Date", "Dates": "Date",
"DBMigration": "Migrarea DB", "DatabaseMigration": "Migrarea DB",
"DelayProfile": "Profile de întârziere", "DelayProfile": "Profile de întârziere",
"DelayProfiles": "Profile de întârziere", "DelayProfiles": "Profile de întârziere",
"Delete": "Șterge", "Delete": "Șterge",

View file

@ -447,7 +447,7 @@
"ReleaseWillBeProcessedInterp": "Выпуск будет обработан {0}", "ReleaseWillBeProcessedInterp": "Выпуск будет обработан {0}",
"Status": "Статус", "Status": "Статус",
"CutoffUnmet": "Порог невыполнен", "CutoffUnmet": "Порог невыполнен",
"DBMigration": "Перенос БД", "DatabaseMigration": "Перенос БД",
"20MinutesTwenty": "60 минут: {0}", "20MinutesTwenty": "60 минут: {0}",
"45MinutesFourtyFive": "60 минут: {0}", "45MinutesFourtyFive": "60 минут: {0}",
"60MinutesSixty": "60 минут: {0}", "60MinutesSixty": "60 минут: {0}",

View file

@ -111,7 +111,7 @@
"CutoffHelpText": "När denna kvalitet har uppnåtts kommer {appName} inte längre att ladda ner filmer", "CutoffHelpText": "När denna kvalitet har uppnåtts kommer {appName} inte längre att ladda ner filmer",
"CutoffUnmet": "Avgränsande ej tillgodosedd", "CutoffUnmet": "Avgränsande ej tillgodosedd",
"Dates": "Datum", "Dates": "Datum",
"DBMigration": "DB Migration", "DatabaseMigration": "DB Migration",
"DefaultMonitorOptionHelpText": "Standard Metadata Profil för albums upptäckta i den här mappen", "DefaultMonitorOptionHelpText": "Standard Metadata Profil för albums upptäckta i den här mappen",
"DefaultQualityProfileIdHelpText": "Standard Kvalitet Profil för artister upptäckta i den här mappen", "DefaultQualityProfileIdHelpText": "Standard Kvalitet Profil för artister upptäckta i den här mappen",
"DelayingDownloadUntilInterp": "Försenar nedladdningen till {0} kl. {1}", "DelayingDownloadUntilInterp": "Försenar nedladdningen till {0} kl. {1}",

View file

@ -270,7 +270,7 @@
"CutoffHelpText": "เมื่อถึงคุณภาพนี้แล้ว {appName} จะไม่ดาวน์โหลดภาพยนตร์อีกต่อไป", "CutoffHelpText": "เมื่อถึงคุณภาพนี้แล้ว {appName} จะไม่ดาวน์โหลดภาพยนตร์อีกต่อไป",
"CutoffUnmet": "ตัด Unmet", "CutoffUnmet": "ตัด Unmet",
"Dates": "วันที่", "Dates": "วันที่",
"DBMigration": "การย้ายฐานข้อมูล", "DatabaseMigration": "การย้ายฐานข้อมูล",
"DelayProfile": "โปรไฟล์ล่าช้า", "DelayProfile": "โปรไฟล์ล่าช้า",
"DelayProfiles": "โปรไฟล์ล่าช้า", "DelayProfiles": "โปรไฟล์ล่าช้า",
"Delete": "ลบ", "Delete": "ลบ",

View file

@ -112,7 +112,7 @@
"CreateGroup": "Grup oluştur", "CreateGroup": "Grup oluştur",
"CutoffHelpText": "Bu kaliteye ulaşıldığında {appName} artık film indirmeyecektir", "CutoffHelpText": "Bu kaliteye ulaşıldığında {appName} artık film indirmeyecektir",
"CutoffUnmet": "Kesme Karşılanmadı", "CutoffUnmet": "Kesme Karşılanmadı",
"DBMigration": "DB Geçişi", "DatabaseMigration": "DB Geçişi",
"DelayProfile": "Gecikme Profilleri", "DelayProfile": "Gecikme Profilleri",
"DelayProfiles": "Gecikme Profilleri", "DelayProfiles": "Gecikme Profilleri",
"Delete": "Sil", "Delete": "Sil",

View file

@ -41,7 +41,7 @@
"ConnectSettings": "Налаштування підключення", "ConnectSettings": "Налаштування підключення",
"CreateGroup": "Створити групу", "CreateGroup": "Створити групу",
"Dates": "Дати", "Dates": "Дати",
"DBMigration": "Міграція БД", "DatabaseMigration": "Міграція БД",
"DelayingDownloadUntilInterp": "Завантаження відкладається до {0} о {1}", "DelayingDownloadUntilInterp": "Завантаження відкладається до {0} о {1}",
"DelayProfile": "Профіль затримки", "DelayProfile": "Профіль затримки",
"DelayProfiles": "Профілі затримки", "DelayProfiles": "Профілі затримки",

View file

@ -293,7 +293,7 @@
"CreateGroup": "Tạo nhóm", "CreateGroup": "Tạo nhóm",
"CutoffHelpText": "Khi đạt đến chất lượng này {appName} sẽ không tải phim nữa", "CutoffHelpText": "Khi đạt đến chất lượng này {appName} sẽ không tải phim nữa",
"CutoffUnmet": "Cắt bỏ chưa được đáp ứng", "CutoffUnmet": "Cắt bỏ chưa được đáp ứng",
"DBMigration": "Di chuyển DB", "DatabaseMigration": "Di chuyển DB",
"DelayProfile": "Hồ sơ trì hoãn", "DelayProfile": "Hồ sơ trì hoãn",
"DelayProfiles": "Hồ sơ trì hoãn", "DelayProfiles": "Hồ sơ trì hoãn",
"Delete": "Xóa bỏ", "Delete": "Xóa bỏ",

View file

@ -54,7 +54,7 @@
"Columns": "列", "Columns": "列",
"Connections": "连接", "Connections": "连接",
"ConnectSettings": "连接设置", "ConnectSettings": "连接设置",
"DBMigration": "数据库迁移版本", "DatabaseMigration": "数据库迁移版本",
"DelayProfile": "延时配置", "DelayProfile": "延时配置",
"Delete": "删除", "Delete": "删除",
"DeleteBackup": "删除备份", "DeleteBackup": "删除备份",