1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-03-11 06:33:16 +00:00

New: Romania and India added to list of Certification Countries

This commit is contained in:
Bogdan 2024-10-18 12:12:20 +03:00
parent adb27123df
commit 84b507faf3
2 changed files with 8 additions and 4 deletions

View file

@ -13,17 +13,19 @@ import translate from 'Utilities/String/translate';
// Note: Do Not Translate Certification Countries
export const certificationCountryOptions = [
{ key: 'us', value: 'United States' },
{ 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: 'in', value: 'India' },
{ key: 'ie', value: 'Ireland' },
{ key: 'it', value: 'Italy' },
{ key: 'es', value: 'Spain' },
{ key: 'us', value: 'United States' },
{ key: 'nz', value: 'New Zealand' }
{ key: 'nz', value: 'New Zealand' },
{ key: 'ro', value: 'Romania' },
{ key: 'es', value: 'Spain' }
];
function MetadataOptions(props) {

View file

@ -8,10 +8,12 @@ namespace NzbDrone.Core.MetadataSource.SkyHook.Resource
FR, // France
DE, // Germany
GB, // Great Britain
IN, // India
IE, // Ireland
IT, // Italy
NZ, // New Zealand
RO, // Romania
ES, // Spain
US, // United States
NZ // New Zealand
}
}