mirror of
https://github.com/Radarr/Radarr
synced 2024-12-25 01:11:43 +00:00
parent
6d0019ad00
commit
6beb8c8b05
2 changed files with 16 additions and 4 deletions
|
@ -10,8 +10,14 @@ import { inputTypes } from 'Helpers/Props';
|
|||
import translate from 'Utilities/String/translate';
|
||||
|
||||
export const certificationCountryOptions = [
|
||||
{ key: 'us', value: 'United States' },
|
||||
{ key: 'gb', value: 'Great Britain' }
|
||||
{ key: 'au', value: 'Australia' },
|
||||
{ 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) {
|
||||
|
|
|
@ -2,7 +2,13 @@ namespace NzbDrone.Core.MetadataSource.SkyHook.Resource
|
|||
{
|
||||
public enum TMDbCountryCode
|
||||
{
|
||||
US,
|
||||
GB
|
||||
AU, //Australia
|
||||
BR, //Brazil
|
||||
CA, //Canada
|
||||
FR, //France
|
||||
DE, //Germany
|
||||
GB, //Great Britain
|
||||
IT, //Italy
|
||||
US //United States
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue