summaryrefslogtreecommitdiffhomepage
path: root/gui/src/shared/localization-contexts.ts
blob: 7f408c0a8335aae26f4e3ce5b6984ee66d146b70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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';