diff options
| author | Oskar Nyberg <oskar@mullvad.net> | 2020-05-18 17:57:33 +0200 |
|---|---|---|
| committer | Oskar Nyberg <oskar@mullvad.net> | 2020-05-19 12:34:39 +0200 |
| commit | 4dd69ca60477ac8f79823e215dbfbdfb9fb2441c (patch) | |
| tree | bd408dca63b27513dc7cf3932547ee720f976a91 /gui/src/shared/localization-contexts.ts | |
| parent | 17a1b03fb8a21844c815d0b8f4efea3a26526064 (diff) | |
| download | mullvadvpn-4dd69ca60477ac8f79823e215dbfbdfb9fb2441c.tar.xz mullvadvpn-4dd69ca60477ac8f79823e215dbfbdfb9fb2441c.zip | |
Make pgettext and npgettext require predefined-context
Diffstat (limited to 'gui/src/shared/localization-contexts.ts')
| -rw-r--r-- | gui/src/shared/localization-contexts.ts | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gui/src/shared/localization-contexts.ts b/gui/src/shared/localization-contexts.ts new file mode 100644 index 0000000000..7f408c0a83 --- /dev/null +++ b/gui/src/shared/localization-contexts.ts @@ -0,0 +1,29 @@ +export type LocalizationContexts = + | 'generic' + | 'login-view' + | 'auth-failure' + | 'launch-view' + | 'error-boundary-view' + | 'connect-container' + | 'connect-view' + | 'tunnel-control' + | 'connection-info' + | 'notifications' + | 'in-app-notifications' + | 'account-expiry' + | 'select-location-view' + | 'select-location-nav' + | 'settings-view' + | 'navigation-bar' + | 'account-view' + | 'redeem-voucher-view' + | 'redeem-voucher-alert' + | 'preferences-view' + | 'preferences-nav' + | 'advanced-settings-view' + | 'advanced-settings-nav' + | 'advanced-settings-view-wireguard' + | 'wireguard-key-view' + | 'wireguard-keys-nav' + | 'support-view' + | 'select-language-nav'; |
