1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-08-18 00:09:37 +02:00

New: New Zealand as an option for Certificate Country

This commit is contained in:
Robin Dadswell 2021-10-11 12:22:40 +01:00
parent 0541041b2b
commit 27c5a30cc1
2 changed files with 4 additions and 2 deletions

View File

@ -20,7 +20,8 @@ export const certificationCountryOptions = [
{ key: 'gb', value: 'Great Britain' },
{ key: 'it', value: 'Italy' },
{ key: 'es', value: 'Spain' },
{ key: 'us', value: 'United States' }
{ key: 'us', value: 'United States' },
{ key: 'nz', value: 'New Zealand' }
];
function MetadataOptions(props) {

View File

@ -10,6 +10,7 @@ public enum TMDbCountryCode
GB, //Great Britain
IT, //Italy
ES, //Spain
US //United States
US, //United States
NZ //New Zealand
}
}