@oxyhq/core 1.11.24 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (150) hide show
  1. package/README.md +5 -6
  2. package/dist/cjs/.tsbuildinfo +1 -1
  3. package/dist/cjs/AuthManager.js +678 -4
  4. package/dist/cjs/AuthManagerTypes.js +13 -0
  5. package/dist/cjs/CrossDomainAuth.js +45 -3
  6. package/dist/cjs/OxyServices.base.js +16 -0
  7. package/dist/cjs/i18n/locales/ar-SA.json +83 -0
  8. package/dist/cjs/i18n/locales/ca-ES.json +83 -0
  9. package/dist/cjs/i18n/locales/de-DE.json +83 -0
  10. package/dist/cjs/i18n/locales/en-US.json +83 -0
  11. package/dist/cjs/i18n/locales/es-ES.json +99 -4
  12. package/dist/cjs/i18n/locales/fr-FR.json +83 -0
  13. package/dist/cjs/i18n/locales/it-IT.json +83 -0
  14. package/dist/cjs/i18n/locales/ja-JP.json +83 -0
  15. package/dist/cjs/i18n/locales/ko-KR.json +83 -0
  16. package/dist/cjs/i18n/locales/locales/ar-SA.json +83 -1
  17. package/dist/cjs/i18n/locales/locales/ca-ES.json +83 -1
  18. package/dist/cjs/i18n/locales/locales/de-DE.json +83 -1
  19. package/dist/cjs/i18n/locales/locales/en-US.json +83 -0
  20. package/dist/cjs/i18n/locales/locales/es-ES.json +99 -4
  21. package/dist/cjs/i18n/locales/locales/fr-FR.json +83 -1
  22. package/dist/cjs/i18n/locales/locales/it-IT.json +83 -1
  23. package/dist/cjs/i18n/locales/locales/ja-JP.json +200 -117
  24. package/dist/cjs/i18n/locales/locales/ko-KR.json +83 -1
  25. package/dist/cjs/i18n/locales/locales/pt-PT.json +83 -1
  26. package/dist/cjs/i18n/locales/locales/zh-CN.json +83 -1
  27. package/dist/cjs/i18n/locales/pt-PT.json +83 -0
  28. package/dist/cjs/i18n/locales/zh-CN.json +83 -0
  29. package/dist/cjs/index.js +121 -57
  30. package/dist/cjs/mixins/OxyServices.auth.js +235 -0
  31. package/dist/cjs/mixins/OxyServices.fedcm.js +36 -0
  32. package/dist/cjs/mixins/OxyServices.popup.js +61 -1
  33. package/dist/cjs/mixins/OxyServices.user.js +18 -0
  34. package/dist/cjs/utils/accountUtils.js +64 -1
  35. package/dist/cjs/utils/coldBoot.js +71 -0
  36. package/dist/cjs/utils/fapiAutoDetect.js +88 -0
  37. package/dist/esm/.tsbuildinfo +1 -1
  38. package/dist/esm/AuthManager.js +678 -4
  39. package/dist/esm/AuthManagerTypes.js +12 -0
  40. package/dist/esm/CrossDomainAuth.js +45 -3
  41. package/dist/esm/OxyServices.base.js +16 -0
  42. package/dist/esm/i18n/locales/ar-SA.json +83 -0
  43. package/dist/esm/i18n/locales/ca-ES.json +83 -0
  44. package/dist/esm/i18n/locales/de-DE.json +83 -0
  45. package/dist/esm/i18n/locales/en-US.json +83 -0
  46. package/dist/esm/i18n/locales/es-ES.json +99 -4
  47. package/dist/esm/i18n/locales/fr-FR.json +83 -0
  48. package/dist/esm/i18n/locales/it-IT.json +83 -0
  49. package/dist/esm/i18n/locales/ja-JP.json +83 -0
  50. package/dist/esm/i18n/locales/ko-KR.json +83 -0
  51. package/dist/esm/i18n/locales/locales/ar-SA.json +83 -1
  52. package/dist/esm/i18n/locales/locales/ca-ES.json +83 -1
  53. package/dist/esm/i18n/locales/locales/de-DE.json +83 -1
  54. package/dist/esm/i18n/locales/locales/en-US.json +83 -0
  55. package/dist/esm/i18n/locales/locales/es-ES.json +99 -4
  56. package/dist/esm/i18n/locales/locales/fr-FR.json +83 -1
  57. package/dist/esm/i18n/locales/locales/it-IT.json +83 -1
  58. package/dist/esm/i18n/locales/locales/ja-JP.json +200 -117
  59. package/dist/esm/i18n/locales/locales/ko-KR.json +83 -1
  60. package/dist/esm/i18n/locales/locales/pt-PT.json +83 -1
  61. package/dist/esm/i18n/locales/locales/zh-CN.json +83 -1
  62. package/dist/esm/i18n/locales/pt-PT.json +83 -0
  63. package/dist/esm/i18n/locales/zh-CN.json +83 -0
  64. package/dist/esm/index.js +74 -26
  65. package/dist/esm/mixins/OxyServices.auth.js +235 -0
  66. package/dist/esm/mixins/OxyServices.fedcm.js +36 -0
  67. package/dist/esm/mixins/OxyServices.popup.js +61 -1
  68. package/dist/esm/mixins/OxyServices.user.js +18 -0
  69. package/dist/esm/utils/accountUtils.js +61 -0
  70. package/dist/esm/utils/coldBoot.js +68 -0
  71. package/dist/esm/utils/fapiAutoDetect.js +85 -0
  72. package/dist/types/.tsbuildinfo +1 -1
  73. package/dist/types/AuthManager.d.ts +243 -3
  74. package/dist/types/AuthManagerTypes.d.ts +68 -0
  75. package/dist/types/CrossDomainAuth.d.ts +23 -0
  76. package/dist/types/OxyServices.base.d.ts +14 -0
  77. package/dist/types/OxyServices.d.ts +7 -0
  78. package/dist/types/index.d.ts +31 -17
  79. package/dist/types/mixins/OxyServices.analytics.d.ts +1 -0
  80. package/dist/types/mixins/OxyServices.appData.d.ts +1 -0
  81. package/dist/types/mixins/OxyServices.assets.d.ts +4 -1
  82. package/dist/types/mixins/OxyServices.auth.d.ts +73 -1
  83. package/dist/types/mixins/OxyServices.contacts.d.ts +1 -0
  84. package/dist/types/mixins/OxyServices.developer.d.ts +1 -0
  85. package/dist/types/mixins/OxyServices.devices.d.ts +1 -0
  86. package/dist/types/mixins/OxyServices.features.d.ts +2 -5
  87. package/dist/types/mixins/OxyServices.fedcm.d.ts +34 -0
  88. package/dist/types/mixins/OxyServices.karma.d.ts +1 -0
  89. package/dist/types/mixins/OxyServices.language.d.ts +1 -0
  90. package/dist/types/mixins/OxyServices.location.d.ts +1 -0
  91. package/dist/types/mixins/OxyServices.managedAccounts.d.ts +1 -0
  92. package/dist/types/mixins/OxyServices.payment.d.ts +1 -0
  93. package/dist/types/mixins/OxyServices.popup.d.ts +40 -0
  94. package/dist/types/mixins/OxyServices.privacy.d.ts +1 -0
  95. package/dist/types/mixins/OxyServices.redirect.d.ts +1 -0
  96. package/dist/types/mixins/OxyServices.security.d.ts +1 -0
  97. package/dist/types/mixins/OxyServices.topics.d.ts +1 -0
  98. package/dist/types/mixins/OxyServices.user.d.ts +16 -1
  99. package/dist/types/mixins/OxyServices.utility.d.ts +1 -0
  100. package/dist/types/models/interfaces.d.ts +98 -0
  101. package/dist/types/models/session.d.ts +8 -0
  102. package/dist/types/utils/accountUtils.d.ts +33 -0
  103. package/dist/types/utils/coldBoot.d.ts +102 -0
  104. package/dist/types/utils/fapiAutoDetect.d.ts +37 -0
  105. package/package.json +9 -18
  106. package/src/AuthManager.ts +776 -7
  107. package/src/AuthManagerTypes.ts +72 -0
  108. package/src/CrossDomainAuth.ts +54 -3
  109. package/src/OxyServices.base.ts +17 -0
  110. package/src/OxyServices.ts +7 -0
  111. package/src/__tests__/authManager.cookiePath.test.ts +339 -0
  112. package/src/__tests__/authManager.security.test.ts +342 -0
  113. package/src/__tests__/crossDomainAuth.test.ts +191 -0
  114. package/src/i18n/locales/ar-SA.json +83 -1
  115. package/src/i18n/locales/ca-ES.json +83 -1
  116. package/src/i18n/locales/de-DE.json +83 -1
  117. package/src/i18n/locales/en-US.json +83 -0
  118. package/src/i18n/locales/es-ES.json +99 -4
  119. package/src/i18n/locales/fr-FR.json +83 -1
  120. package/src/i18n/locales/it-IT.json +83 -1
  121. package/src/i18n/locales/ja-JP.json +200 -117
  122. package/src/i18n/locales/ko-KR.json +83 -1
  123. package/src/i18n/locales/pt-PT.json +83 -1
  124. package/src/i18n/locales/zh-CN.json +83 -1
  125. package/src/index.ts +309 -112
  126. package/src/mixins/OxyServices.auth.ts +268 -1
  127. package/src/mixins/OxyServices.fedcm.ts +63 -0
  128. package/src/mixins/OxyServices.popup.ts +79 -1
  129. package/src/mixins/OxyServices.user.ts +33 -1
  130. package/src/mixins/__tests__/popup.test.ts +307 -0
  131. package/src/mixins/__tests__/sessionBaseUrl.test.ts +61 -0
  132. package/src/models/interfaces.ts +116 -0
  133. package/src/models/session.ts +8 -0
  134. package/src/utils/__tests__/coldBoot.test.ts +226 -0
  135. package/src/utils/__tests__/fapiAutoDetect.test.ts +93 -0
  136. package/src/utils/accountUtils.ts +84 -0
  137. package/src/utils/coldBoot.ts +136 -0
  138. package/src/utils/fapiAutoDetect.ts +82 -0
  139. package/dist/cjs/crypto/index.js +0 -22
  140. package/dist/cjs/shared/index.js +0 -70
  141. package/dist/cjs/utils/index.js +0 -26
  142. package/dist/esm/crypto/index.js +0 -13
  143. package/dist/esm/shared/index.js +0 -31
  144. package/dist/esm/utils/index.js +0 -7
  145. package/dist/types/crypto/index.d.ts +0 -11
  146. package/dist/types/shared/index.d.ts +0 -28
  147. package/dist/types/utils/index.d.ts +0 -6
  148. package/src/crypto/index.ts +0 -30
  149. package/src/shared/index.ts +0 -82
  150. package/src/utils/index.ts +0 -21
@@ -1,119 +1,202 @@
1
1
  {
2
- "signin": {
3
- "title": "サインイン",
4
- "subtitle": "続けるにはサインインしてください",
5
- "addAccountTitle": "別のアカウントを追加",
6
- "addAccountSubtitle": "別のアカウントでサインイン",
7
- "username": {
8
- "label": "ユーザー名",
9
- "placeholder": "ユーザー名を入力",
10
- "helper": "3-30文字、英数字のみ",
11
- "required": "ユーザー名を入力してください。",
12
- "minLength": "ユーザー名は3文字以上である必要があります。"
13
- },
14
- "password": {
15
- "label": "パスワード",
16
- "placeholder": "パスワードを入力",
17
- "required": "パスワードを入力してください。",
18
- "hint": "サインインするにはパスワードを入力してください"
19
- },
20
- "actions": {
21
- "continue": "続ける",
22
- "back": "戻る",
23
- "signIn": "サインイン",
24
- "verify": "確認",
25
- "openAccountSwitcher": "別のアカウントに切り替え",
26
- "openAccountSwitcherSubtitle": "{{count}}個の他のアカウントが利用可能",
27
- "openAccountSwitcherSubtitle_singular": "1個の他のアカウントが利用可能",
28
- "openAccountSwitcherSubtitle_zero": "保存されたアカウントを確認",
29
- "manageAccounts": "保存されたアカウントを管理",
30
- "manageAccountsSubtitle": "セッションを確認、削除、またはサインアウト",
31
- "loadingOtherAccounts": "他のアカウントを読み込み中…",
32
- "switchAccountFailed": "アカウントを切り替えられませんでした。もう一度お試しください。"
33
- },
34
- "forgotPrompt": "パスワードをお忘れですか?",
35
- "security": {
36
- "dataSecure": "データは暗号化され、安全です"
37
- },
38
- "currentlySignedInAs": "現在サインイン中:",
39
- "alreadySignedInWith": "既にサインイン中:",
40
- "alreadySignedIn": "既にサインイン済み",
41
- "alreadySignedInMessage": "このアカウントは既にサインインしています。このアカウントで続けますか?",
42
- "continueWithAccount": "続ける",
43
- "currentAccount": "現在",
44
- "or": "または",
45
- "viewAllAccounts": "さらに{{count}}件を表示",
46
- "status": {
47
- "accountSwitched": "{{name}}を使用中"
48
- }
49
- },
50
- "signup": {
51
- "welcome": {
52
- "title": "Oxyへようこそ!",
53
- "subtitle": "数ステップでアカウントを作成",
54
- "haveAccount": "既にアカウントをお持ちですか?",
55
- "signInCta": "サインイン"
56
- },
57
- "identity": {
58
- "title": "あなたは誰ですか?",
59
- "subtitle": "ユーザー名を選択し、メールアドレスを入力してください"
60
- },
61
- "username": {
62
- "helper": "3-30文字、英数字のみ",
63
- "required": "ユーザー名を入力してください",
64
- "minLength": "ユーザー名は3文字以上である必要があります"
65
- },
66
- "email": {
67
- "required": "メールアドレスを入力してください",
68
- "invalid": "有効なメールアドレスを入力してください",
69
- "helper": "メールアドレスを共有することはありません"
70
- },
71
- "security": {
72
- "title": "アカウントを保護",
73
- "subtitle": "アカウントを保護するための強力なパスワードを作成"
74
- },
75
- "password": {
76
- "helper": "8文字以上",
77
- "required": "パスワードを入力してください",
78
- "minLength": "パスワードは8文字以上である必要があります",
79
- "confirmRequired": "パスワードを確認してください",
80
- "mismatch": "パスワードが一致しません",
81
- "confirmHint": "確認のため、パスワードを再入力してください"
82
- },
83
- "summary": {
84
- "title": "もうすぐ完了です!",
85
- "subtitle": "情報を確認してアカウントを作成",
86
- "sectionTitle": "アカウント情報",
87
- "fields": {
88
- "username": "ユーザー名",
89
- "email": "メール",
90
- "password": "パスワード"
91
- },
92
- "notSet": "未設定",
93
- "securityTip": "より強力なセキュリティのため、アカウント作成後、アカウント設定から生体認証を有効にしてください。",
94
- "legalReminder": "アカウントを作成することで、利用規約とプライバシーポリシーに同意したことになります。"
95
- }
96
- },
97
- "common": {
98
- "actions": {
99
- "back": "戻る",
100
- "continue": "続ける",
101
- "next": "次へ",
102
- "getStarted": "始める",
103
- "createAccount": "アカウントを作成",
104
- "signIn": "サインイン",
105
- "verify": "確認",
106
- "resetPassword": "パスワードをリセット"
107
- },
108
- "links": {
109
- "recoverAccount": "アカウントを回復",
110
- "signUp": "サインアップ"
111
- },
112
- "labels": {
113
- "username": "ユーザー名",
114
- "email": "メール",
115
- "password": "パスワード",
116
- "confirmPassword": "パスワードを確認"
117
- }
2
+ "signin": {
3
+ "title": "サインイン",
4
+ "subtitle": "続けるにはサインインしてください",
5
+ "addAccountTitle": "別のアカウントを追加",
6
+ "addAccountSubtitle": "別のアカウントでサインイン",
7
+ "username": {
8
+ "label": "ユーザー名",
9
+ "placeholder": "ユーザー名を入力",
10
+ "helper": "3-30文字、英数字のみ",
11
+ "required": "ユーザー名を入力してください。",
12
+ "minLength": "ユーザー名は3文字以上である必要があります。"
13
+ },
14
+ "password": {
15
+ "label": "パスワード",
16
+ "placeholder": "パスワードを入力",
17
+ "required": "パスワードを入力してください。",
18
+ "hint": "サインインするにはパスワードを入力してください"
19
+ },
20
+ "actions": {
21
+ "continue": "続ける",
22
+ "back": "戻る",
23
+ "signIn": "サインイン",
24
+ "verify": "確認",
25
+ "openAccountSwitcher": "別のアカウントに切り替え",
26
+ "openAccountSwitcherSubtitle": "{{count}}個の他のアカウントが利用可能",
27
+ "openAccountSwitcherSubtitle_singular": "1個の他のアカウントが利用可能",
28
+ "openAccountSwitcherSubtitle_zero": "保存されたアカウントを確認",
29
+ "manageAccounts": "保存されたアカウントを管理",
30
+ "manageAccountsSubtitle": "セッションを確認、削除、またはサインアウト",
31
+ "loadingOtherAccounts": "他のアカウントを読み込み中…",
32
+ "switchAccountFailed": "アカウントを切り替えられませんでした。もう一度お試しください。"
33
+ },
34
+ "forgotPrompt": "パスワードをお忘れですか?",
35
+ "security": {
36
+ "dataSecure": "データは暗号化され、安全です"
37
+ },
38
+ "currentlySignedInAs": "現在サインイン中:",
39
+ "alreadySignedInWith": "既にサインイン中:",
40
+ "alreadySignedIn": "既にサインイン済み",
41
+ "alreadySignedInMessage": "このアカウントは既にサインインしています。このアカウントで続けますか?",
42
+ "continueWithAccount": "続ける",
43
+ "currentAccount": "現在",
44
+ "or": "または",
45
+ "viewAllAccounts": "さらに{{count}}件を表示",
46
+ "status": {
47
+ "accountSwitched": "{{name}}を使用中"
48
+ }
49
+ },
50
+ "signup": {
51
+ "welcome": {
52
+ "title": "Oxyへようこそ!",
53
+ "subtitle": "数ステップでアカウントを作成",
54
+ "haveAccount": "既にアカウントをお持ちですか?",
55
+ "signInCta": "サインイン"
56
+ },
57
+ "identity": {
58
+ "title": "あなたは誰ですか?",
59
+ "subtitle": "ユーザー名を選択し、メールアドレスを入力してください"
60
+ },
61
+ "username": {
62
+ "helper": "3-30文字、英数字のみ",
63
+ "required": "ユーザー名を入力してください",
64
+ "minLength": "ユーザー名は3文字以上である必要があります"
65
+ },
66
+ "email": {
67
+ "required": "メールアドレスを入力してください",
68
+ "invalid": "有効なメールアドレスを入力してください",
69
+ "helper": "メールアドレスを共有することはありません"
70
+ },
71
+ "security": {
72
+ "title": "アカウントを保護",
73
+ "subtitle": "アカウントを保護するための強力なパスワードを作成"
74
+ },
75
+ "password": {
76
+ "helper": "8文字以上",
77
+ "required": "パスワードを入力してください",
78
+ "minLength": "パスワードは8文字以上である必要があります",
79
+ "confirmRequired": "パスワードを確認してください",
80
+ "mismatch": "パスワードが一致しません",
81
+ "confirmHint": "確認のため、パスワードを再入力してください"
82
+ },
83
+ "summary": {
84
+ "title": "もうすぐ完了です!",
85
+ "subtitle": "情報を確認してアカウントを作成",
86
+ "sectionTitle": "アカウント情報",
87
+ "fields": {
88
+ "username": "ユーザー名",
89
+ "email": "メール",
90
+ "password": "パスワード"
91
+ },
92
+ "notSet": "未設定",
93
+ "securityTip": "より強力なセキュリティのため、アカウント作成後、アカウント設定から生体認証を有効にしてください。",
94
+ "legalReminder": "アカウントを作成することで、利用規約とプライバシーポリシーに同意したことになります。"
95
+ }
96
+ },
97
+ "common": {
98
+ "actions": {
99
+ "back": "戻る",
100
+ "continue": "続ける",
101
+ "next": "次へ",
102
+ "getStarted": "始める",
103
+ "createAccount": "アカウントを作成",
104
+ "signIn": "サインイン",
105
+ "verify": "確認",
106
+ "resetPassword": "パスワードをリセット"
107
+ },
108
+ "links": {
109
+ "recoverAccount": "アカウントを回復",
110
+ "signUp": "サインアップ"
111
+ },
112
+ "labels": {
113
+ "username": "ユーザー名",
114
+ "email": "メール",
115
+ "password": "パスワード",
116
+ "confirmPassword": "パスワードを確認"
117
+ },
118
+ "revoke": "Revoke"
119
+ },
120
+ "notifications": {
121
+ "title": "Notifications",
122
+ "subtitle": "Manage push, email, and security alerts",
123
+ "updateError": "Failed to update notification preferences",
124
+ "sections": {
125
+ "channels": "Channels",
126
+ "alerts": "Alerts",
127
+ "marketing": "Marketing"
128
+ },
129
+ "items": {
130
+ "push": {
131
+ "title": "Push notifications",
132
+ "subtitle": "Real-time alerts on your devices"
133
+ },
134
+ "emailDigest": {
135
+ "title": "Email digest",
136
+ "subtitle": "Periodic summary of your account activity"
137
+ },
138
+ "securityAlerts": {
139
+ "title": "Security alerts",
140
+ "subtitle": "Sign-ins, recovery codes, and key changes"
141
+ },
142
+ "marketingEmails": {
143
+ "title": "Marketing emails",
144
+ "subtitle": "Product news and occasional offers"
145
+ }
146
+ }
147
+ },
148
+ "preferences": {
149
+ "title": "Preferences",
150
+ "subtitle": "Theme, motion, and regional settings",
151
+ "sections": {
152
+ "appearance": "Appearance",
153
+ "language": "Language",
154
+ "region": "Region"
155
+ },
156
+ "theme": {
157
+ "light": "Light",
158
+ "dark": "Dark",
159
+ "system": "System default"
160
+ },
161
+ "items": {
162
+ "theme": {
163
+ "title": "Theme"
164
+ },
165
+ "reduceMotion": {
166
+ "title": "Reduce motion",
167
+ "subtitle": "Minimise animations across Oxy apps",
168
+ "systemOn": "Following system: reduce motion is on"
169
+ },
170
+ "language": {
171
+ "title": "Language"
172
+ },
173
+ "timezone": {
174
+ "title": "Timezone",
175
+ "unknown": "Unable to detect timezone"
176
+ },
177
+ "about": {
178
+ "title": "About preferences",
179
+ "subtitle": "Preferences sync across every Oxy app you sign into"
180
+ }
181
+ }
182
+ },
183
+ "connectedApps": {
184
+ "title": "Connected apps",
185
+ "subtitle": "Manage third-party app access",
186
+ "empty": {
187
+ "title": "No connected apps",
188
+ "subtitle": "Apps you authorize to sign in with your Oxy account will appear here"
189
+ },
190
+ "item": {
191
+ "lastUsed": "Last used {{relative}}"
192
+ },
193
+ "confirm": {
194
+ "title": "Revoke access",
195
+ "message": "Revoke {{name}}'s access to your Oxy account?"
196
+ },
197
+ "toasts": {
198
+ "revoked": "Revoked access for {{name}}",
199
+ "revokeFailed": "Failed to revoke access"
118
200
  }
119
- }
201
+ }
202
+ }
@@ -114,7 +114,89 @@
114
114
  "email": "이메일",
115
115
  "password": "비밀번호",
116
116
  "confirmPassword": "비밀번호 확인"
117
+ },
118
+ "revoke": "Revoke"
119
+ },
120
+ "notifications": {
121
+ "title": "Notifications",
122
+ "subtitle": "Manage push, email, and security alerts",
123
+ "updateError": "Failed to update notification preferences",
124
+ "sections": {
125
+ "channels": "Channels",
126
+ "alerts": "Alerts",
127
+ "marketing": "Marketing"
128
+ },
129
+ "items": {
130
+ "push": {
131
+ "title": "Push notifications",
132
+ "subtitle": "Real-time alerts on your devices"
133
+ },
134
+ "emailDigest": {
135
+ "title": "Email digest",
136
+ "subtitle": "Periodic summary of your account activity"
137
+ },
138
+ "securityAlerts": {
139
+ "title": "Security alerts",
140
+ "subtitle": "Sign-ins, recovery codes, and key changes"
141
+ },
142
+ "marketingEmails": {
143
+ "title": "Marketing emails",
144
+ "subtitle": "Product news and occasional offers"
145
+ }
146
+ }
147
+ },
148
+ "preferences": {
149
+ "title": "Preferences",
150
+ "subtitle": "Theme, motion, and regional settings",
151
+ "sections": {
152
+ "appearance": "Appearance",
153
+ "language": "Language",
154
+ "region": "Region"
155
+ },
156
+ "theme": {
157
+ "light": "Light",
158
+ "dark": "Dark",
159
+ "system": "System default"
160
+ },
161
+ "items": {
162
+ "theme": {
163
+ "title": "Theme"
164
+ },
165
+ "reduceMotion": {
166
+ "title": "Reduce motion",
167
+ "subtitle": "Minimise animations across Oxy apps",
168
+ "systemOn": "Following system: reduce motion is on"
169
+ },
170
+ "language": {
171
+ "title": "Language"
172
+ },
173
+ "timezone": {
174
+ "title": "Timezone",
175
+ "unknown": "Unable to detect timezone"
176
+ },
177
+ "about": {
178
+ "title": "About preferences",
179
+ "subtitle": "Preferences sync across every Oxy app you sign into"
180
+ }
181
+ }
182
+ },
183
+ "connectedApps": {
184
+ "title": "Connected apps",
185
+ "subtitle": "Manage third-party app access",
186
+ "empty": {
187
+ "title": "No connected apps",
188
+ "subtitle": "Apps you authorize to sign in with your Oxy account will appear here"
189
+ },
190
+ "item": {
191
+ "lastUsed": "Last used {{relative}}"
192
+ },
193
+ "confirm": {
194
+ "title": "Revoke access",
195
+ "message": "Revoke {{name}}'s access to your Oxy account?"
196
+ },
197
+ "toasts": {
198
+ "revoked": "Revoked access for {{name}}",
199
+ "revokeFailed": "Failed to revoke access"
117
200
  }
118
201
  }
119
202
  }
120
-
@@ -114,7 +114,89 @@
114
114
  "email": "Email",
115
115
  "password": "Palavra-passe",
116
116
  "confirmPassword": "Confirmar palavra-passe"
117
+ },
118
+ "revoke": "Revoke"
119
+ },
120
+ "notifications": {
121
+ "title": "Notifications",
122
+ "subtitle": "Manage push, email, and security alerts",
123
+ "updateError": "Failed to update notification preferences",
124
+ "sections": {
125
+ "channels": "Channels",
126
+ "alerts": "Alerts",
127
+ "marketing": "Marketing"
128
+ },
129
+ "items": {
130
+ "push": {
131
+ "title": "Push notifications",
132
+ "subtitle": "Real-time alerts on your devices"
133
+ },
134
+ "emailDigest": {
135
+ "title": "Email digest",
136
+ "subtitle": "Periodic summary of your account activity"
137
+ },
138
+ "securityAlerts": {
139
+ "title": "Security alerts",
140
+ "subtitle": "Sign-ins, recovery codes, and key changes"
141
+ },
142
+ "marketingEmails": {
143
+ "title": "Marketing emails",
144
+ "subtitle": "Product news and occasional offers"
145
+ }
146
+ }
147
+ },
148
+ "preferences": {
149
+ "title": "Preferences",
150
+ "subtitle": "Theme, motion, and regional settings",
151
+ "sections": {
152
+ "appearance": "Appearance",
153
+ "language": "Language",
154
+ "region": "Region"
155
+ },
156
+ "theme": {
157
+ "light": "Light",
158
+ "dark": "Dark",
159
+ "system": "System default"
160
+ },
161
+ "items": {
162
+ "theme": {
163
+ "title": "Theme"
164
+ },
165
+ "reduceMotion": {
166
+ "title": "Reduce motion",
167
+ "subtitle": "Minimise animations across Oxy apps",
168
+ "systemOn": "Following system: reduce motion is on"
169
+ },
170
+ "language": {
171
+ "title": "Language"
172
+ },
173
+ "timezone": {
174
+ "title": "Timezone",
175
+ "unknown": "Unable to detect timezone"
176
+ },
177
+ "about": {
178
+ "title": "About preferences",
179
+ "subtitle": "Preferences sync across every Oxy app you sign into"
180
+ }
181
+ }
182
+ },
183
+ "connectedApps": {
184
+ "title": "Connected apps",
185
+ "subtitle": "Manage third-party app access",
186
+ "empty": {
187
+ "title": "No connected apps",
188
+ "subtitle": "Apps you authorize to sign in with your Oxy account will appear here"
189
+ },
190
+ "item": {
191
+ "lastUsed": "Last used {{relative}}"
192
+ },
193
+ "confirm": {
194
+ "title": "Revoke access",
195
+ "message": "Revoke {{name}}'s access to your Oxy account?"
196
+ },
197
+ "toasts": {
198
+ "revoked": "Revoked access for {{name}}",
199
+ "revokeFailed": "Failed to revoke access"
117
200
  }
118
201
  }
119
202
  }
120
-
@@ -114,7 +114,89 @@
114
114
  "email": "电子邮件",
115
115
  "password": "密码",
116
116
  "confirmPassword": "确认密码"
117
+ },
118
+ "revoke": "Revoke"
119
+ },
120
+ "notifications": {
121
+ "title": "Notifications",
122
+ "subtitle": "Manage push, email, and security alerts",
123
+ "updateError": "Failed to update notification preferences",
124
+ "sections": {
125
+ "channels": "Channels",
126
+ "alerts": "Alerts",
127
+ "marketing": "Marketing"
128
+ },
129
+ "items": {
130
+ "push": {
131
+ "title": "Push notifications",
132
+ "subtitle": "Real-time alerts on your devices"
133
+ },
134
+ "emailDigest": {
135
+ "title": "Email digest",
136
+ "subtitle": "Periodic summary of your account activity"
137
+ },
138
+ "securityAlerts": {
139
+ "title": "Security alerts",
140
+ "subtitle": "Sign-ins, recovery codes, and key changes"
141
+ },
142
+ "marketingEmails": {
143
+ "title": "Marketing emails",
144
+ "subtitle": "Product news and occasional offers"
145
+ }
146
+ }
147
+ },
148
+ "preferences": {
149
+ "title": "Preferences",
150
+ "subtitle": "Theme, motion, and regional settings",
151
+ "sections": {
152
+ "appearance": "Appearance",
153
+ "language": "Language",
154
+ "region": "Region"
155
+ },
156
+ "theme": {
157
+ "light": "Light",
158
+ "dark": "Dark",
159
+ "system": "System default"
160
+ },
161
+ "items": {
162
+ "theme": {
163
+ "title": "Theme"
164
+ },
165
+ "reduceMotion": {
166
+ "title": "Reduce motion",
167
+ "subtitle": "Minimise animations across Oxy apps",
168
+ "systemOn": "Following system: reduce motion is on"
169
+ },
170
+ "language": {
171
+ "title": "Language"
172
+ },
173
+ "timezone": {
174
+ "title": "Timezone",
175
+ "unknown": "Unable to detect timezone"
176
+ },
177
+ "about": {
178
+ "title": "About preferences",
179
+ "subtitle": "Preferences sync across every Oxy app you sign into"
180
+ }
181
+ }
182
+ },
183
+ "connectedApps": {
184
+ "title": "Connected apps",
185
+ "subtitle": "Manage third-party app access",
186
+ "empty": {
187
+ "title": "No connected apps",
188
+ "subtitle": "Apps you authorize to sign in with your Oxy account will appear here"
189
+ },
190
+ "item": {
191
+ "lastUsed": "Last used {{relative}}"
192
+ },
193
+ "confirm": {
194
+ "title": "Revoke access",
195
+ "message": "Revoke {{name}}'s access to your Oxy account?"
196
+ },
197
+ "toasts": {
198
+ "revoked": "Revoked access for {{name}}",
199
+ "revokeFailed": "Failed to revoke access"
117
200
  }
118
201
  }
119
202
  }
120
-