1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04: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
@@ -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) {