From 194e0f3d7f29b15a349a9609b4a09fa258874801 Mon Sep 17 00:00:00 2001 From: bakerboy448 <55419169+bakerboy448@users.noreply.github.com> Date: Sun, 12 Dec 2021 11:20:57 -0600 Subject: [PATCH] Fixed: Various Translations --- frontend/src/Activity/Blocklist/Blocklist.js | 2 +- .../Builder/FilterBuilderModalContent.js | 4 ++- .../Language/SelectLanguageModalContent.js | 2 +- .../SelectReleaseGroupModalContent.js | 4 +-- frontend/src/Movie/MovieStatus.js | 2 +- .../RemotePathMappings/RemotePathMappings.js | 12 +++++-- .../ImportListExclusions.js | 14 +++++--- .../Indexers/EditIndexerModalContent.js | 2 +- .../Settings/Profiles/Delay/DelayProfiles.js | 16 ++++++--- .../Quality/Definition/QualityDefinitions.js | 12 +++++-- .../Tags/Details/TagDetailsModalContent.js | 2 +- src/NzbDrone.Core/Localization/Core/en.json | 34 +++++-------------- 12 files changed, 58 insertions(+), 48 deletions(-) diff --git a/frontend/src/Activity/Blocklist/Blocklist.js b/frontend/src/Activity/Blocklist/Blocklist.js index 2e942241b..2948116be 100644 --- a/frontend/src/Activity/Blocklist/Blocklist.js +++ b/frontend/src/Activity/Blocklist/Blocklist.js @@ -120,7 +120,7 @@ class Blocklist extends Component { -
Filters
+
+ {translate('Filters')} +
{ diff --git a/frontend/src/InteractiveImport/Language/SelectLanguageModalContent.js b/frontend/src/InteractiveImport/Language/SelectLanguageModalContent.js index 3184c8607..ecfe21d01 100644 --- a/frontend/src/InteractiveImport/Language/SelectLanguageModalContent.js +++ b/frontend/src/InteractiveImport/Language/SelectLanguageModalContent.js @@ -128,7 +128,7 @@ class SelectLanguageModalContent extends Component { kind={kinds.SUCCESS} onPress={this.onLanguageSelect} > - {translate('SelectLanguges')} + {translate('SelectLanguages')} diff --git a/frontend/src/InteractiveImport/ReleaseGroup/SelectReleaseGroupModalContent.js b/frontend/src/InteractiveImport/ReleaseGroup/SelectReleaseGroupModalContent.js index 549abc22e..708ca0d0e 100644 --- a/frontend/src/InteractiveImport/ReleaseGroup/SelectReleaseGroupModalContent.js +++ b/frontend/src/InteractiveImport/ReleaseGroup/SelectReleaseGroupModalContent.js @@ -75,14 +75,14 @@ class SelectReleaseGroupModalContent extends Component { diff --git a/frontend/src/Movie/MovieStatus.js b/frontend/src/Movie/MovieStatus.js index 22e5b3322..7d7a9963e 100644 --- a/frontend/src/Movie/MovieStatus.js +++ b/frontend/src/Movie/MovieStatus.js @@ -6,7 +6,7 @@ export function getMovieStatusDetails(status) { let statusDetails = { icon: icons.ANNOUNCED, title: translate('Announced'), - message: translate('AnnoucedMsg') + message: translate('AnnouncedMsg') }; if (status === 'deleted') { diff --git a/frontend/src/Settings/DownloadClients/RemotePathMappings/RemotePathMappings.js b/frontend/src/Settings/DownloadClients/RemotePathMappings/RemotePathMappings.js index 2f3f7782e..00743dbe7 100644 --- a/frontend/src/Settings/DownloadClients/RemotePathMappings/RemotePathMappings.js +++ b/frontend/src/Settings/DownloadClients/RemotePathMappings/RemotePathMappings.js @@ -51,9 +51,15 @@ class RemotePathMappings extends Component { {...otherProps} >
-
Host
-
Remote Path
-
Local Path
+
+ {translate('Host')} +
+
+ {translate('RemotePath')} +
+
+ {translate('LocalPath')} +
diff --git a/frontend/src/Settings/ImportLists/ImportListExclusions/ImportListExclusions.js b/frontend/src/Settings/ImportLists/ImportListExclusions/ImportListExclusions.js index 9fe6aeb07..ee1e52be4 100644 --- a/frontend/src/Settings/ImportLists/ImportListExclusions/ImportListExclusions.js +++ b/frontend/src/Settings/ImportLists/ImportListExclusions/ImportListExclusions.js @@ -50,10 +50,16 @@ class ImportListExclusions extends Component { errorMessage={translate('UnableToLoadListExclusions')} {...otherProps} > -
-
TMDB Id
-
Title
-
Year
+
+
+ TMDb Id +
+
+ {translate('Title')} +
+
+ {translate('Year')} +
diff --git a/frontend/src/Settings/Indexers/Indexers/EditIndexerModalContent.js b/frontend/src/Settings/Indexers/Indexers/EditIndexerModalContent.js index 0d0aae42c..736ab3dde 100644 --- a/frontend/src/Settings/Indexers/Indexers/EditIndexerModalContent.js +++ b/frontend/src/Settings/Indexers/Indexers/EditIndexerModalContent.js @@ -174,7 +174,7 @@ function EditIndexerModalContent(props) { - Tags + {translate('Tags')}
-
Protocol
-
Usenet Delay
-
Torrent Delay
-
Tags
+
+ {translate('Protocol')} +
+
+ {translate('UsenetDelay')} +
+
+ {translate('TorrentDelay')} +
+
+ {translate('Tags')} +
diff --git a/frontend/src/Settings/Quality/Definition/QualityDefinitions.js b/frontend/src/Settings/Quality/Definition/QualityDefinitions.js index 2f9905467..c65ce1f1e 100644 --- a/frontend/src/Settings/Quality/Definition/QualityDefinitions.js +++ b/frontend/src/Settings/Quality/Definition/QualityDefinitions.js @@ -25,9 +25,15 @@ class QualityDefinitions extends Component { {...otherProps} >
-
Quality
-
Title
-
Size Limit
+
+ {translate('Quality')} +
+
+ {translate('Title')} +
+
+ {translate('SizeLimit')} +
{ advancedSettings ? diff --git a/frontend/src/Settings/Tags/Details/TagDetailsModalContent.js b/frontend/src/Settings/Tags/Details/TagDetailsModalContent.js index d92e5ce4d..0e16881d2 100644 --- a/frontend/src/Settings/Tags/Details/TagDetailsModalContent.js +++ b/frontend/src/Settings/Tags/Details/TagDetailsModalContent.js @@ -152,7 +152,7 @@ function TagDetailsModalContent(props) { { indexers.length ? -
+
{ indexers.map((item) => { return ( diff --git a/src/NzbDrone.Core/Localization/Core/en.json b/src/NzbDrone.Core/Localization/Core/en.json index d0d2e5e58..06147beb5 100644 --- a/src/NzbDrone.Core/Localization/Core/en.json +++ b/src/NzbDrone.Core/Localization/Core/en.json @@ -38,7 +38,6 @@ "AllMoviesInPathHaveBeenImported": "All movies in {0} have been imported", "AllowHardcodedSubs": "Allow Hardcoded Subs", "AllowHardcodedSubsHelpText": "Detected hardcoded subs will be automatically downloaded", - "AllowMovieChangeClickToChangeMovie": "Click to change movie", "AllResultsHiddenFilter": "All results are hidden by the applied filter", "AlreadyInYourLibrary": "Already in your library", "AlternativeTitle": "Alternative Title", @@ -46,8 +45,8 @@ "AnalyseVideoFiles": "Analyze video files", "Analytics": "Analytics", "AnalyticsEnabledHelpText": "Send anonymous usage and error information to Radarr's servers. This includes information on your browser, which Radarr WebUI pages you use, error reporting as well as OS and runtime version. We will use this information to prioritize features and bug fixes.", - "AnnoucedMsg": "Movie is announced", "Announced": "Announced", + "AnnouncedMsg": "Movie is announced", "ApiKey": "API Key", "AppDataDirectory": "AppData directory", "AppDataLocationHealthCheckMessage": "Updating will not be possible to prevent deleting AppData on Update", @@ -227,7 +226,6 @@ "DetailedProgressBar": "Detailed Progress Bar", "DetailedProgressBarHelpText": "Show text on progress bar", "Details": "Details", - "Digital": "Digital", "DigitalRelease": "Digital Release", "Disabled": "Disabled", "Discord": "Discord", @@ -240,8 +238,6 @@ "DoneEditingGroups": "Done Editing Groups", "DoNotPrefer": "Do Not Prefer", "DoNotUpgradeAutomatically": "Do not Upgrade Automatically", - "DotNetVersionCheckNotRecommendedMessage": "Currently installed .Net Framework {0} is supported but we recommend upgrading to at least {1}.", - "DotNetVersionCheckOldUnsupportedMessage": "Currently installed .Net Framework {0} is old and unsupported. Please upgrade the .Net Framework to at least {1}.", "Download": "Download", "DownloadClient": "Download Client", "DownloadClientCheckDownloadingToRoot": "Download client {0} places downloads in the root folder {1}. You should not download to a root folder.", @@ -305,7 +301,6 @@ "ErrorRestoringBackup": "Error restoring backup", "Events": "Events", "EventType": "Event Type", - "Example": "Example", "Exception": "Exception", "Excluded": "Excluded", "ExcludeMovie": "Exclude Movie", @@ -330,11 +325,11 @@ "FileNames": "File Names", "FileNameTokens": "File Name Tokens", "Files": "Files", - "Filesize": "Filesize", "FileWasDeletedByUpgrade": "File was deleted to import an upgrade", "FileWasDeletedByViaUI": "File was deleted via the UI", "Filter": "Filter", "FilterPlaceHolder": "Search movies", + "Filters": "Filters", "FirstDayOfWeek": "First Day of Week", "Fixed": "Fixed", "FocusSearchBox": "Focus Search Box", @@ -475,9 +470,9 @@ "LoadingMovieExtraFilesFailed": "Loading movie extra files failed", "LoadingMovieFilesFailed": "Loading movie files failed", "Local": "Local", + "LocalPath": "Local Path", "Location": "Location", "LogFiles": "Log Files", - "LogFilesLocationMessage": "Log files are located in:", "Logging": "Logging", "LogLevel": "Log Level", "LogLevelTraceHelpTextWarning": "Trace logging should only be enabled temporarily", @@ -503,7 +498,6 @@ "MaximumSizeHelpText": "Maximum size for a release to be grabbed in MB. Set to zero to set to unlimited", "Mechanism": "Mechanism", "MediaInfo": "Media Info", - "MediaInfoDllCheckMessage": "MediaInfo Library could not be loaded {0}", "MediaManagement": "Media Management", "MediaManagementSettings": "Media Management Settings", "MediaManagementSettingsSummary": "Naming and file management settings", @@ -540,14 +534,6 @@ "MonitoredOnly": "Monitored Only", "MonitoredStatus": "Monitored/Status", "MonitorMovie": "Monitor Movie", - "MonoBSDSupportCheckMessage": "The operating system {0} will not be supported in the next release of Radarr.", - "MonoNotNetCoreCheckMessage": "Please upgrade to the .NET Core version of Radarr, Mono versions will not be supported in the next release.", - "MonoTlsCheckMessage": "Radarr Mono 4.x tls workaround still enabled, consider removing MONO_TLS_PROVIDER=legacy environment option", - "MonoVersion": "Mono Version", - "MonoVersionCheckNotSupportedMessage": "Currently installed Mono version {0} is no longer supported. Please upgrade Mono to version {1}.", - "MonoVersionCheckOldNotSupportedMessage": "Currently installed Mono version {0} is old and unsupported. Please upgrade Mono to version {1}.", - "MonoVersionCheckUpgradeRecommendedMessage": "Currently installed Mono version {0} is supported but upgrading to {1} is recommended.", - "Monox86SupportCheckMessage": "The current operating system is 32 bit, this will not be supported in the next release of Radarr.", "Month": "Month", "Months": "Months", "More": "More", @@ -560,7 +546,6 @@ "MoveFolders2": "Would you like to move the movie files from '{0}' to '{1}' ?", "Movie": "Movie", "MovieAlreadyExcluded": "Movie already Excluded", - "MovieAvailableButMissing": "Movie Available, but Missing", "MovieChat": "Movie Chat", "MovieDetailsNextMovie": "Movie Details: Next Movie", "MovieDetailsPreviousMovie": "Movie Details: Previous Movie", @@ -569,7 +554,6 @@ "MovieFiles": "Movie Files", "MovieFilesTotaling": "Movie Files Totaling", "MovieFolderFormat": "Movie Folder Format", - "MovieHasntReleasedYet": "Movie hasn't released yet", "MovieID": "Movie ID", "MovieIndex": "Movie Index", "MovieIndexScrollBottom": "Movie Index: Scroll Bottom", @@ -589,7 +573,6 @@ "MoviesSelectedInterp": "{0} Movie(s) Selected", "MovieTitle": "Movie Title", "MovieTitleHelpText": "The title of the movie to exclude (can be anything meaningful)", - "MovieWasDownloadedAndSorted": "Movie was downloaded and sorted", "MovieYear": "Movie Year", "MovieYearHelpText": "The year of the movie to exclude", "MultiLanguage": "Multi-Language", @@ -608,7 +591,6 @@ "NoBackupsAreAvailable": "No backups are available", "NoChange": "No Change", "NoChanges": "No Changes", - "NoCinemaRelease": "No Cinema Release", "NoEventsFound": "No events found", "NoHistory": "No history", "NoLeaveIt": "No, Leave It", @@ -733,7 +715,6 @@ "Queued": "Queued", "QueueIsEmpty": "Queue is empty", "QuickImport": "Move Automatically", - "Radarr": "Radarr", "RadarrCalendarFeed": "Radarr Calendar Feed", "RadarrSupportsAnyDownloadClient": "Radarr supports many popular torrent and usenet download clients.", "RadarrSupportsAnyIndexer": "Radarr supports any indexer that uses the Newznab standard, as well as other indexers listed below.", @@ -764,7 +745,6 @@ "RelativePath": "Relative Path", "ReleaseBranchCheckOfficialBranchMessage": "Branch {0} is not a valid Radarr release branch, you will not receive updates", "Released": "Released", - "ReleaseDate": "Release Date", "ReleaseDates": "Release Dates", "ReleasedMsg": "Movie is released", "ReleaseGroup": "Release Group", @@ -773,8 +753,8 @@ "ReleaseTitle": "Release Title", "ReleaseWillBeProcessedInterp": "Release will be processed {0}", "Reload": "Reload", + "RemotePath": "Remote Path", "RemotePathMappingCheckBadDockerPath": "You are using docker; download client {0} places downloads in {1} but this is not a valid {2} path. Review your remote path mappings and download client settings.", - "RemotePathMappingCheckDockerFilesMissing": "You are using docker; download client {0} reported files in {1} but this directory does not appear to exist inside the container. Review your remote path mappings and container volume settings.", "RemotePathMappingCheckDockerFolderMissing": "You are using docker; download client {0} places downloads in {1} but this directory does not appear to exist inside the container. Review your remote path mappings and container volume settings.", "RemotePathMappingCheckDownloadPermissions": "Radarr can see but not access downloaded movie {0}. Likely permissions error.", "RemotePathMappingCheckFileRemoved": "File {0} was removed part way through processing.", @@ -880,7 +860,7 @@ "SelectDotDot": "Select...", "SelectFolder": "Select Folder", "SelectLanguage": "Select Language", - "SelectLanguges": "Select Languages", + "SelectLanguages": "Select Languages", "SelectMovie": "Select Movie", "SelectQuality": "Select Quality", "SelectReleaseGroup": "Select Release Group", @@ -888,6 +868,7 @@ "SetPermissions": "Set Permissions", "SetPermissionsLinuxHelpText": "Should chmod be run when files are imported/renamed?", "SetPermissionsLinuxHelpTextWarning": "If you're unsure what these settings do, do not alter them.", + "SetReleaseGroup": "Set Release Group", "SetTags": "Set Tags", "Settings": "Settings", "SettingsEnableColorImpairedMode": "Enable Color-Impaired Mode", @@ -936,6 +917,7 @@ "ShowYear": "Show Year", "Shutdown": "Shutdown", "Size": "Size", + "SizeLimit": "Size Limit", "SizeOnDisk": "Size on Disk", "SkipFreeSpaceCheck": "Skip Free Space Check", "SkipFreeSpaceCheckWhenImportingHelpText": "Use when Radarr is unable to detect free space from your movie root folder", @@ -1119,4 +1101,4 @@ "YesMoveFiles": "Yes, Move the Files", "Yesterday": "Yesterday", "YouCanAlsoSearch": "You can also search using TMDb ID or IMDb ID of a movie. e.g. `tmdb:71663`" -} +} \ No newline at end of file