1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 20:12:41 +02:00

New: Add Australia to list of Certifications

Fixes #5351
This commit is contained in:
Qstick 2020-11-17 21:05:20 -05:00
parent 6d0019ad00
commit 6beb8c8b05
2 changed files with 16 additions and 4 deletions

View File

@ -10,8 +10,14 @@ import { inputTypes } from 'Helpers/Props';
import translate from 'Utilities/String/translate'; import translate from 'Utilities/String/translate';
export const certificationCountryOptions = [ export const certificationCountryOptions = [
{ key: 'us', value: 'United States' }, { key: 'au', value: 'Australia' },
{ key: 'gb', value: 'Great Britain' } { key: 'br', value: 'Brazil' },
{ key: 'ca', value: 'Canada' },
{ key: 'fr', value: 'France' },
{ key: 'de', value: 'Germany' },
{ key: 'gb', value: 'Great Britain' },
{ key: 'it', value: 'Italy' },
{ key: 'us', value: 'United States' }
]; ];
function MetadataOptions(props) { function MetadataOptions(props) {

View File

@ -2,7 +2,13 @@ namespace NzbDrone.Core.MetadataSource.SkyHook.Resource
{ {
public enum TMDbCountryCode public enum TMDbCountryCode
{ {
US, AU, //Australia
GB BR, //Brazil
CA, //Canada
FR, //France
DE, //Germany
GB, //Great Britain
IT, //Italy
US //United States
} }
} }