Fixed: Translations for Tags setting page

Fixes #471
pull/479/head
Qstick 3 years ago
parent baed2960b6
commit 89a4c03dd2

@ -85,21 +85,21 @@ class Tag extends Component {
{
!!indexerIds.length &&
<div>
{indexerIds.length} indexer{indexerIds.length > 1 && 's'}
{indexerIds.length} {indexerIds.length > 1 ? translate('Indexers') : translate('Indexer')}
</div>
}
{
!!notificationIds.length &&
<div>
{notificationIds.length} connection{notificationIds.length > 1 && 's'}
{notificationIds.length} {notificationIds.length > 1 ? translate('Notifications') : translate('Notification')}
</div>
}
{
!!indexerProxyIds.length &&
<div>
{indexerProxyIds.length} indexerProxy{indexerProxyIds.length > 1 && 's'}
{indexerProxyIds.length} {indexerProxyIds.length > 1 ? translate('IndexerProxies') : translate('IndexerProxy')}
</div>
}
</div>
@ -108,7 +108,7 @@ class Tag extends Component {
{
!isTagUsed &&
<div>
No links
{translate('NoLinks')}
</div>
}

@ -191,6 +191,7 @@
"IndexerPriority": "Indexer Priority",
"IndexerPriorityHelpText": "Indexer Priority from 1 (Highest) to 50 (Lowest). Default: 25.",
"IndexerProxies": "Indexer Proxies",
"IndexerProxy": "Indexer Proxy",
"IndexerProxyStatusCheckAllClientMessage": "All proxies are unavailable due to failures",
"IndexerProxyStatusCheckSingleClientMessage": "Proxies unavailable due to failures: {0}",
"IndexerQuery": "Indexer Query",
@ -246,10 +247,12 @@
"NoChanges": "No Changes",
"NoLeaveIt": "No, Leave It",
"NoLimitForAnyRuntime": "No limit for any runtime",
"NoLinks": "No Links",
"NoLogFiles": "No log files",
"NoMinimumForAnyRuntime": "No minimum for any runtime",
"NoSearchResultsFound": "No search results found, try performing a new search below.",
"NoTagsHaveBeenAddedYet": "No tags have been added yet",
"Notification": "Notification",
"Notifications": "Notifications",
"NotificationTriggers": "Notification Triggers",
"NotificationTriggersHelpText": "Select which events should trigger this notification",

Loading…
Cancel
Save