[Update] UI: Add Aptabase Privacy Policy label to telemetry settings.

This commit is contained in:
Sakamoto Shiina
2026-01-13 10:38:51 +09:00
parent c6d678e29e
commit 261a1deed4
6 changed files with 7 additions and 0 deletions

View File

@@ -320,6 +320,7 @@ config_page:
telemetry: telemetry:
label: "Support Our Development" label: "Support Our Development"
desc: "Sends usage data so our developers can grin and say 'Thanks for using it!' while improving the app.\n* No personal info or conversation content is ever sent." desc: "Sends usage data so our developers can grin and say 'Thanks for using it!' while improving the app.\n* No personal info or conversation content is ever sent."
aptabase_privacy_policy_label: "Aptabase Privacy Policy"
hotkeys: hotkeys:
toggle_vrct_visibility: toggle_vrct_visibility:

View File

@@ -320,6 +320,7 @@ config_page:
telemetry: telemetry:
label: "製品の改善に協力する" label: "製品の改善に協力する"
desc: "開発者が「みんな使ってくれてるんだな~」ってにやにやしながら機能改善するための使用状況データを送信します。\n※会話内容など個人情報は一切送信しません。" desc: "開発者が「みんな使ってくれてるんだな~」ってにやにやしながら機能改善するための使用状況データを送信します。\n※会話内容など個人情報は一切送信しません。"
aptabase_privacy_policy_label: "Aptabase プライバシーポリシー"
hotkeys: hotkeys:
toggle_vrct_visibility: toggle_vrct_visibility:

View File

@@ -320,6 +320,7 @@ config_page:
telemetry: telemetry:
label: label:
desc: desc:
aptabase_privacy_policy_label:
hotkeys: hotkeys:
toggle_vrct_visibility: toggle_vrct_visibility:

View File

@@ -320,6 +320,7 @@ config_page:
telemetry: telemetry:
label: label:
desc: desc:
aptabase_privacy_policy_label:
hotkeys: hotkeys:
toggle_vrct_visibility: toggle_vrct_visibility:

View File

@@ -320,6 +320,7 @@ config_page:
telemetry: telemetry:
label: label:
desc: desc:
aptabase_privacy_policy_label:
hotkeys: hotkeys:
toggle_vrct_visibility: toggle_vrct_visibility:

View File

@@ -257,6 +257,8 @@ const TelemetryContainer = () => {
return ( return (
<CheckboxContainer <CheckboxContainer
label={t("config_page.others.telemetry.label")} label={t("config_page.others.telemetry.label")}
webpage_url="https://aptabase.com/legal/privacy"
open_webpage_label={t("config_page.others.telemetry.aptabase_privacy_policy_label")}
desc={t("config_page.others.telemetry.desc")} desc={t("config_page.others.telemetry.desc")}
variable={currentTelemetry} variable={currentTelemetry}
toggleFunction={toggleTelemetry} toggleFunction={toggleTelemetry}