summaryrefslogtreecommitdiffhomepage
path: root/gui/src/shared/localization-contexts.ts
blob: f30212025ceaf870e0e0ffa23dd81d78365685d7 (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
30
31
32
33
34
35
36
37
38
39
40
export type LocalizationContexts =
  | 'changelog'
  | 'accessibility'
  | 'login-view'
  | 'device-management'
  | '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'
  | 'custom-bridge'
  | 'filter-view'
  | 'filter-nav'
  | 'settings-view'
  | 'navigation-bar'
  | 'account-view'
  | 'redeem-voucher-view'
  | 'redeem-voucher-alert'
  | 'user-interface-settings-view'
  | 'vpn-settings-view'
  | 'wireguard-settings-view'
  | 'wireguard-settings-nav'
  | 'openvpn-settings-view'
  | 'openvpn-settings-nav'
  | 'split-tunneling-view'
  | 'split-tunneling-nav'
  | 'api-access-methods-view'
  | 'settings-import'
  | 'support-view'
  | 'select-language-nav'
  | 'tray-icon-context-menu'
  | 'tray-icon-tooltip'
  | 'troubleshoot';