1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-27 04:03:00 +02:00

get name of Solarized Dark using i18n

This commit is contained in:
Kyle Sferrazza 2021-04-28 16:12:37 -04:00
parent 6e0087457d
commit 60ef611b78
2 changed files with 5 additions and 1 deletions

View File

@ -596,6 +596,10 @@
"message": "Light",
"description": "Light color"
},
"solarizedDark": {
"message": "Solarized Dark",
"description": "Solarized Dark color scheme"
},
"exportVault": {
"message": "Export Vault"
},

View File

@ -43,7 +43,7 @@ export class OptionsComponent implements OnInit {
{ name: i18nService.t('light'), value: 'light' },
{ name: i18nService.t('dark'), value: 'dark' },
{ name: 'Nord', value: 'nord' },
{ name: 'Solarized Dark', value: 'solarizedDark' },
{ name: i18nService.t('solarizedDark'), value: 'solarizedDark' },
];
this.uriMatchOptions = [
{ name: i18nService.t('baseDomain'), value: UriMatchType.Domain },