fix(ui): correct language usage re: "sync" vs. "scan" (#1079)

This commit is contained in:
TheCatLady
2021-03-05 20:16:56 -05:00
committed by GitHub
parent 92508b3f42
commit e98f2b9605
13 changed files with 67 additions and 60 deletions

View File

@@ -19,7 +19,9 @@ import { formatBytes } from '../../../utils/numberHelpers';
const messages: { [messageName: string]: MessageDescriptor } = defineMessages({
jobs: 'Jobs',
jobsDescription:
'Overseerr performs certain maintenance tasks as regularly-scheduled jobs, but they can also be manually triggered below. Manually running a job will not alter its schedule.',
'Overseerr performs certain maintenance tasks as regularly-scheduled jobs,\
but they can also be manually triggered below.\
Manually running a job will not alter its schedule.',
jobname: 'Job Name',
jobtype: 'Type',
nextexecution: 'Next Execution',
@@ -41,10 +43,10 @@ const messages: { [messageName: string]: MessageDescriptor } = defineMessages({
cachevsize: 'Value Size',
flushcache: 'Flush Cache',
unknownJob: 'Unknown Job',
'plex-recently-added-sync': 'Plex Recently Added Sync',
'plex-full-sync': 'Plex Full Library Sync',
'radarr-sync': 'Radarr Sync',
'sonarr-sync': 'Sonarr Sync',
'plex-recently-added-scan': 'Plex Recently Added Scan',
'plex-full-scan': 'Plex Full Library Scan',
'radarr-scan': 'Radarr Scan',
'sonarr-scan': 'Sonarr Scan',
'download-sync': 'Download Sync',
'download-sync-reset': 'Download Sync Reset',
});