Files
eryao/web/assets/js/i18n.js
T
qzl 1519c782c7 feat(web): add product website with i18n and privacy policy
Static HTML product site for MeeYao with violet brand theme.
Supports EN/简中/繁體 via client-side i18n with localStorage persistence.
Includes index.html (landing page) and privacy.html (App Store compliance).
Hosted on meeyao.com, deployed to ~/deploy/web on EC2.
2026-04-30 14:49:14 +08:00

336 lines
36 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
(function () {
'use strict';
var SUPPORTED = ['en', 'zh', 'zh_Hant'];
var STORAGE_KEY = 'meeyao_lang';
var DEFAULT_LANG = 'en';
var currentLang = resolveInitialLang();
function resolveInitialLang() {
var stored = localStorage.getItem(STORAGE_KEY);
if (stored && SUPPORTED.indexOf(stored) !== -1) return stored;
return DEFAULT_LANG;
}
function getLang() {
return currentLang;
}
function setLang(lang) {
if (SUPPORTED.indexOf(lang) === -1) return;
currentLang = lang;
localStorage.setItem(STORAGE_KEY, lang);
applyAll();
}
function applyAll() {
applyText();
applyHtml();
applyPlaceholder();
applyDocumentLang();
updateSwitcher();
applyPrivacyContent();
}
function applyText() {
var els = document.querySelectorAll('[data-i18n]');
for (var i = 0; i < els.length; i++) {
var key = els[i].getAttribute('data-i18n');
var val = t(key);
if (val) els[i].textContent = val;
}
}
function applyHtml() {
var els = document.querySelectorAll('[data-i18n-html]');
for (var i = 0; i < els.length; i++) {
var key = els[i].getAttribute('data-i18n-html');
var val = t(key);
if (val) els[i].innerHTML = val;
}
}
function applyPlaceholder() {
var els = document.querySelectorAll('[data-i18n-placeholder]');
for (var i = 0; i < els.length; i++) {
var key = els[i].getAttribute('data-i18n-placeholder');
var val = t(key);
if (val) els[i].setAttribute('placeholder', val);
}
}
function applyDocumentLang() {
var htmlLang = currentLang === 'zh_Hant' ? 'zh-Hant' : currentLang;
document.documentElement.lang = htmlLang;
}
function applyPrivacyContent() {
var privacyEl = document.getElementById('privacy-content');
if (privacyEl) {
privacyEl.innerHTML = getPrivacyContent(currentLang);
}
}
function updateSwitcher() {
var selects = document.querySelectorAll('#lang-select');
for (var i = 0; i < selects.length; i++) {
selects[i].value = currentLang;
}
}
function t(key) {
var keys = key.split('.');
var obj = translations[currentLang];
if (!obj) return key;
for (var i = 0; i < keys.length; i++) {
if (obj[keys[i]] === undefined) return key;
obj = obj[keys[i]];
}
return obj;
}
function initSwitchers() {
var selects = document.querySelectorAll('#lang-select');
for (var i = 0; i < selects.length; i++) {
selects[i].value = currentLang;
selects[i].addEventListener('change', function () {
setLang(this.value);
});
}
}
var translations = {
en: {
nav: {
features: 'Features',
about: 'About',
privacy: 'Privacy Policy',
contact: 'Contact',
home: 'Home',
support: 'Support',
lang_en: 'EN',
lang_zh: '简中',
lang_zh_hant: '繁中'
},
hero: {
badge: 'AI-Powered Cultural Wisdom',
title: 'Ancient I Ching Wisdom<br>Meets Modern AI',
subtitle: 'MeeYao Divination brings the profound tradition of Six-Line hexagram culture to your fingertips. Explore life\'s questions through the lens of ancient Eastern philosophy, enhanced by AI-powered interpretation.',
},
about: {
title: 'What is MeeYao Divination?',
p1: 'MeeYao Divination is an AI-assisted cultural reference app focused on traditional Six-Line culture and the timeless wisdom of the I Ching. Rooted in Eastern philosophical traditions, it helps users explore cultural connotations and gain diverse perspectives on everyday life.',
p2: 'By combining hexagram culture, traditional Five-Element theories, and GanZhi calendrical concepts, MeeYao offers a unique way to broaden your thinking and approach daily choices with clarity and a peaceful mindset.'
},
features: {
title: 'Core Features',
subtitle: 'Explore traditional divination culture with modern tools',
f1_title: 'Manual Coin Divination',
f1_desc: 'Perform traditional Six-Line hexagram casting with the classic coin method. Follow guided steps to build your hexagram authentically, preserving the ceremonial tradition.',
f2_title: 'Quick Auto Divination',
f2_desc: 'Generate a hexagram instantly when you need quick cultural reference. The app derives the hexagram based on traditional timing principles for a rapid interpretation.',
f3_title: 'AI-Powered Interpretation',
f3_desc: 'Receive thoughtful, structured analysis combining traditional Six-Line theory with AI-generated cultural insights. Each reading includes sign level, focus points, and practical advice.',
f4_title: 'Session History',
f4_desc: 'Review all your past divination sessions with complete hexagram details and AI interpretations. Follow up on previous readings for deeper exploration through conversational follow-up questions.'
},
culture: {
title: 'Rooted in Tradition',
desc: 'Six-Line culture originates from the I Ching, one of the oldest Chinese classics. It embodies the traditional understanding of the connection between personal thoughts, timing, and natural changes. Through Five-Element theory and GanZhi calendrical systems, users can explore Eastern cultural wisdom in a modern context.',
iching_title: 'I Ching',
iching_label: 'Classic Foundation',
elements_title: 'Elements',
elements_label: 'Wood Fire Earth Metal Water',
hexagrams_title: 'Hexagrams',
hexagrams_label: 'Symbolic Patterns'
},
disclaimer: {
title: 'Important Disclaimer',
text: 'All AI-generated content and cultural interpretation materials are for <strong>entertainment, cultural appreciation, and personal reference only</strong>. This app does not provide professional advice of any kind, including but not limited to business, finance, investment, medical, psychological, legal, career, or life decision-making guidance. All generated content shall not be regarded as factual basis or decision-making direction. Please approach traditional culture rationally.'
},
contact_section: {
title: 'Get in Touch',
desc: 'Have questions, feedback, or need support? We\'d love to hear from you.',
button: 'ann@xunmee.com'
},
footer: {
privacy: 'Privacy Policy',
support: 'Support',
developer: 'Developer: Ann Lee',
contact: 'Contact: ann@xunmee.com',
copyright: '\u00a9 2026 Ann Lee. All Rights Reserved.'
},
privacy: {
title: 'Privacy Policy',
updated: 'Last Updated: April 27, 2026',
effective: 'Effective Date: April 27, 2026'
}
},
zh: {
nav: {
features: '功能',
about: '关于',
privacy: '隐私政策',
contact: '联系我们',
home: '首页',
support: '支持',
lang_en: 'EN',
lang_zh: '简中',
lang_zh_hant: '繁中'
},
hero: {
badge: 'AI 驱动的文化智慧',
title: '古老易经智慧<br>遇见现代 AI',
subtitle: '觅爻签问将深厚的六爻卦象文化传统带到您指尖。通过古老的东方哲学视角,借助 AI 解读技术,探索生活中的各种问题。',
},
about: {
title: '觅爻签问是什么?',
p1: '觅爻签问是一款以 AI 技术、传统六爻文化与易经智慧为核心的传统文化参考工具。植根于东方哲学传统,帮助用户探索文化内涵,获得多元的生活参考视角。',
p2: '通过融合卦象文化、五行理论及干支传统人文理念,觅爻为您提供独特的思维方式拓展,以更开阔的视角和理性平和的心态看待日常抉择与生活状态。'
},
features: {
title: '核心功能',
subtitle: '以现代工具探索传统占卜文化',
f1_title: '手动起卦',
f1_desc: '使用经典铜钱法进行传统六爻起卦。按步骤引导,原汁原味地构建卦象,传承传统仪式。',
f2_title: '快速自动起卦',
f2_desc: '需要快速参考时,一键生成卦象。应用基于传统时间原理自动推演卦象,提供即时解读。',
f3_title: 'AI 智能解读',
f3_desc: '获得融合传统六爻理论与 AI 文化洞察的深度结构化分析。每次解读包含签级、关注要点和实用建议。',
f4_title: '会话历史',
f4_desc: '回顾所有历史占卦会话,包含完整卦象详情和 AI 解读。通过对后续问题的追问式对话,深入探索之前的占卦结果。'
},
culture: {
title: '根植传统',
desc: '六爻文化源自易经——中国最古老的经典之一。它承载着古人对心念、时序与天地变化相生相融的传统认知。通过五行理论和干支历法体系,在现代语境中探索东方文化智慧。',
iching_title: '易经',
iching_label: '经典根基',
elements_title: '五行',
elements_label: '木火土金水',
hexagrams_title: '卦象',
hexagrams_label: '象征体系'
},
disclaimer: {
title: '重要免责声明',
text: '本应用所有 AI 生成内容与文化解读资料,仅作<strong>娱乐、文化赏析与个人参考</strong>使用。本应用不提供任何专业指导建议,包括但不限于商业、金融、投资、医疗、心理、法律、职业及人生决策等领域。所有生成内容不得作为事实依据或行动决策的唯一标准。请理性看待传统文化,理性使用本应用。'
},
contact_section: {
title: '联系我们',
desc: '有任何问题、反馈或需要帮助?欢迎随时联系。',
button: 'ann@xunmee.com'
},
footer: {
privacy: '隐私政策',
support: '支持',
developer: '开发者:Ann Lee',
contact: '联系邮箱:ann@xunmee.com',
copyright: '\u00a9 2026 Ann Lee 保留所有权利'
},
privacy: {
title: '隐私政策',
updated: '最后更新日期:2026年4月27日',
effective: '生效日期:2026年4月27日'
}
},
zh_Hant: {
nav: {
features: '功能',
about: '關於',
privacy: '隱私政策',
contact: '聯繫我們',
home: '首頁',
support: '支持',
lang_en: 'EN',
lang_zh: '簡中',
lang_zh_hant: '繁中'
},
hero: {
badge: 'AI 驅動的文化智慧',
title: '古老易經智慧<br>遇見現代 AI',
subtitle: '覓爻簽問將深厚的六爻卦象文化傳統帶到您指尖。通過古老的東方哲學視角,借助 AI 解讀技術,探索生活中的各種問題。',
},
about: {
title: '覓爻簽問是什麼?',
p1: '覓爻簽問是一款以 AI 技術、傳統六爻文化與易經智慧為核心的傳統文化參考工具。植根於東方哲學傳統,幫助用戶探索文化內涵,獲得多元的生活參考視角。',
p2: '通過融合卦象文化、五行理論及干支傳統人文理念,覓爻為您提供獨特的思維方式拓展,以更開闊的視角和理性平和的心態看待日常抉擇與生活狀態。'
},
features: {
title: '核心功能',
subtitle: '以現代工具探索傳統占卜文化',
f1_title: '手動起卦',
f1_desc: '使用經典銅錢法進行傳統六爻起卦。按步驟引導,原汁原味地構建卦象,傳承傳統儀式。',
f2_title: '快速自動起卦',
f2_desc: '需要快速參考時,一鍵生成卦象。應用基於傳統時間原理自動推演卦象,提供即時解讀。',
f3_title: 'AI 智能解讀',
f3_desc: '獲得融合傳統六爻理論與 AI 文化洞察的深度結構化分析。每次解讀包含簽級、關注要點和實用建議。',
f4_title: '會話歷史',
f4_desc: '回顧所有歷史占卦會話,包含完整卦象詳情和 AI 解讀。通過對後續問題的追問式對話,深入探索之前的占卦結果。'
},
culture: {
title: '根植傳統',
desc: '六爻文化源自易經——中國最古老的經典之一。它承載著古人對心念、時序與天地變化相生相融的傳統認知。通過五行理論和干支曆法體系,在現代語境中探索東方文化智慧。',
iching_title: '易經',
iching_label: '經典根基',
elements_title: '五行',
elements_label: '木火土金水',
hexagrams_title: '卦象',
hexagrams_label: '象徵體系'
},
disclaimer: {
title: '重要免責聲明',
text: '本應用所有 AI 生成內容與文化解讀資料,僅作<strong>娛樂、文化賞析與個人參考</strong>使用。本應用不提供任何專業指導建議,包括但不限於商業、金融、投資、醫療、心理、法律、職業及人生決策等領域。所有生成內容不得作為事實依據或行動決策的唯一標準。請理性看待傳統文化,理性使用本應用。'
},
contact_section: {
title: '聯繫我們',
desc: '有任何問題、反饋或需要幫助?歡迎隨時聯繫。',
button: 'ann@xunmee.com'
},
footer: {
privacy: '隱私政策',
support: '支持',
developer: '開發者:Ann Lee',
contact: '聯繫郵箱:ann@xunmee.com',
copyright: '\u00a9 2026 Ann Lee 保留所有權利'
},
privacy: {
title: '隱私政策',
updated: '最後更新日期:2026年4月27日',
effective: '生效日期:2026年4月27日'
}
}
};
function getPrivacyContent(lang) {
return privacyTranslations[lang] || privacyTranslations['en'];
}
var privacyTranslations = {
en: '<h2>Introduction</h2><p>Dear User, Welcome to MeeYao Divination (the "App"), independently developed and operated by an <strong>individual developer</strong> ("I", "me", "my"). I am committed to protecting your personal privacy and complying with applicable U.S. federal and state privacy laws, including the California Consumer Privacy Act (CCPA/CPRA), the Children\'s Online Privacy Protection Act (COPPA), CalOPPA, and other U.S. state privacy regulations.</p><p>This Privacy Policy clearly explains:</p><ul><li>What personal information I collect</li><li>How your data is used, stored and shared</li><li>Your legal privacy rights under U.S. regulations</li><li>How you can submit data requests</li></ul><p>This policy applies to all users of this App. California residents are granted additional rights specified in Section 5.</p><hr><h2>1. Information We Collect</h2><p>I only collect necessary data to provide, maintain and optimize App cultural reference functions. All data is classified as Personal Information and Sensitive Personal Information (SPI) in accordance with CCPA/CPRA.</p><h3>1.1 Information You Provide Directly</h3><ul><li><strong>Account Information</strong>: Email address, verification code (required for account registration and security verification)</li><li><strong>Profile Information</strong>: Optional nickname or display name voluntarily set by you</li><li><strong>Personal Content</strong>: Your input questions, cultural interpretation records and local session content</li><li><strong>Support Information</strong>: Feedback, consultation messages you send for user assistance</li></ul><h3>1.2 Information Collected Automatically</h3><p>When you use the App, limited automatic data will be collected to ensure normal operation:</p><ul><li><strong>Device Information</strong>: Device model, operating system version, unique device identifier, device configuration</li><li><strong>Technical Data</strong>: IP address (for rough regional access recognition), access time, crash logs and operation performance data</li><li><strong>Usage Data</strong>: Function usage records, app stay duration and in-app interaction behavior</li></ul><hr><h2>2. How We Use Your Information</h2><p>Your information will only be used for the following legitimate and limited purposes:</p><ol><li><strong>Provide Core Functions</strong>: Process your input content, generate AI cultural interpretation content, and record local usage records.</li><li><strong>Account Security</strong>: Complete user verification, prevent abnormal login and protect your account security.</li><li><strong>Product Optimization</strong>: Analyze anonymous usage data to fix bugs, optimize operation experience and improve product performance.</li><li><strong>User Assistance</strong>: Reply to your feedback and solve your use problems.</li><li><strong>Service Reminders</strong>: Push necessary system notices and policy update reminders.</li><li><strong>Legal Compliance</strong>: Meet statutory compliance requirements and official platform review rules.</li></ol><p>I will <strong>not</strong> use your personal sensitive content for commercial advertising or unauthorized marketing without your explicit consent.</p><hr><h2>3. Data Storage, Retention &amp; Cross-Border Transfers</h2><h3>3.1 Storage Location</h3><p>User data collected through this App may be stored on secure third-party cloud servers located in the United States. All cross-border data transmission adopts encrypted transmission protocols to ensure data security.</p><h3>3.2 Retention Period</h3><p>Data will only be retained within the necessary time limit:</p><ul><li><strong>Account data</strong>: Retained during your active use, and cleaned up reasonably after you cancel your account.</li><li><strong>Personal content records</strong>: Reserved within a reasonable cycle and regularly cleaned or anonymized.</li><li><strong>Device and log data</strong>: Automatically deleted after a limited period.</li></ul><hr><h2>4. Sharing &amp; Disclosure of Information</h2><h3>4.1 Sale of Personal Information</h3><p><strong>I do not sell, rent or trade your personal information</strong> in any form, and will never sell your data for commercial benefits.</p><h3>4.2 Sharing with Third-Party Service Providers</h3><p>I only share data with trusted third-party service providers necessary for App operation, and sign strict data protection restrictions:</p><ul><li>Cloud storage and server services</li><li>App operation analysis, crash monitoring tools</li><li>Apple official push and system service capabilities</li></ul><p>All third parties are prohibited from using your data for independent commercial purposes.</p><h3>4.3 Legal Disclosure</h3><p>Your data may be disclosed only in the following situations:</p><ul><li>Required by laws, regulations, court orders or official government requests</li><li>With your clear voluntary authorization and consent</li><li>To protect personal legitimate rights and public safety</li></ul><hr><h2>5. Your U.S. Privacy Rights (California Residents Included)</h2><p>In accordance with CCPA/CPRA and U.S. local privacy laws, you enjoy the following rights:</p><ol><li><strong>Right to Know</strong>: Inquire about the type and scope of personal data collected.</li><li><strong>Right to Access</strong>: Obtain a copy of your personal usage data.</li><li><strong>Right to Deletion</strong>: Apply to delete your account and related personal data.</li><li><strong>Right to Correction</strong>: Modify incorrect personal information.</li><li><strong>Right to Data Portability</strong>: Obtain your data in a readable format.</li><li><strong>Right to Opt-Out</strong>: Reject non-essential data collection and irrelevant recommendation.</li><li><strong>Right to Limit Sensitive Data</strong>: Restrict the use of your personal sensitive content.</li><li><strong>Right to Non-Discrimination</strong>: No differential treatment for you to exercise privacy rights.</li></ol><h3>How to Exercise Your Rights</h3><p>You can submit data requests through the only dedicated contact method:</p><p><strong>Contact Email</strong>: <a href="mailto:ann@xunmee.com" class="text-brand-600 hover:underline">ann@xunmee.com</a></p><p>I will respond to your legitimate request within 45 days, and properly verify your identity to ensure data security before processing.</p><hr><h2>6. Children\'s Privacy (COPPA Compliance)</h2><p>This App is not oriented to users under the age of 13. I do not intentionally collect any personal information of minors under 13 years old.</p><p>If you find that minor information has been improperly collected, please contact me via email in a timely manner, and I will completely delete the relevant data in accordance with COPPA regulations. Users aged 13&ndash;17 need to use this App under the supervision and consent of their guardians.</p><hr><h2>7. Data Security</h2><p>I adopt industry-standard technical protection measures to protect your data:</p><ul><li>Encrypted storage and encrypted transmission to prevent data leakage</li><li>Strict access restrictions and daily security management</li><li>Regular abnormal monitoring and risk checking</li></ul><p>Please note that no network storage system can achieve absolute security, and I will always maintain the highest level of data protection measures.</p><hr><h2>8. Policy Changes</h2><p>This Privacy Policy may be updated irregularly to adapt to platform rules and legal adjustments. Important content changes will be notified through in-app prompts or email reminders in advance. Your continued use of the App after the update takes effect means that you agree to the revised policy.</p><hr><h2>9. Contact Us</h2><p>If you have any questions, suggestions or privacy-related complaints about this Privacy Policy, please contact me:</p><p><strong>Developer Email</strong>: <a href="mailto:ann@xunmee.com" class="text-brand-600 hover:underline">ann@xunmee.com</a></p><p>If you are a California resident and dissatisfied with the processing result, you can consult the local privacy regulatory authority.</p><hr><p><strong>Independent Individual Developer</strong></p><p><strong>Last Updated</strong>: April 27, 2026</p>',
zh: '<h2>引言</h2><p>尊敬的用户,欢迎使用 觅爻 MeeYao(以下简称"本应用"),本应用由<strong>个人开发者</strong>"我")独立开发和运营。我致力于保护您的个人隐私,并遵守适用的美国联邦和州隐私法律,包括《加州消费者隐私法》(CCPA/CPRA)、《儿童在线隐私保护法》(COPPA)、CalOPPA 以及其他美国州隐私法规。</p><p>本隐私政策清晰说明:</p><ul><li>我收集哪些个人信息</li><li>您的数据如何被使用、存储和共享</li><li>您在美国法规下的法定隐私权利</li><li>如何提交数据请求</li></ul><p>本政策适用于本应用的所有用户。加州居民享有第5节规定的额外权利。</p><hr><h2>1. 我收集的信息</h2><p>我只收集为提供、维护和优化应用文化参考功能所需的数据。所有数据根据 CCPA/CPRA 分类为个人信息和敏感个人信息(SPI)。</p><h3>1.1 您直接提供的信息</h3><ul><li><strong>账户信息</strong>:电子邮箱地址、验证码(账户注册和安全验证所需)</li><li><strong>个人资料</strong>:您自愿设置的昵称或显示名称</li><li><strong>个人内容</strong>:您输入的问题、文化解读记录和本地会话内容</li><li><strong>支持信息</strong>:您发送的反馈、咨询消息</li></ul><h3>1.2 自动收集的信息</h3><p>当您使用本应用时,将收集有限的自动数据以确保正常运行:</p><ul><li><strong>设备信息</strong>:设备型号、操作系统版本、唯一设备标识符、设备配置</li><li><strong>技术数据</strong>:IP 地址(用于粗略区域访问识别)、访问时间、崩溃日志和操作性能数据</li><li><strong>使用数据</strong>:功能使用记录、应用停留时长和应用内交互行为</li></ul><hr><h2>2. 我如何使用您的信息</h2><p>您的信息仅用于以下合法且有限的目的:</p><ol><li><strong>提供核心功能</strong>:处理您的输入内容,生成 AI 文化解读内容,记录本地使用记录。</li><li><strong>账户安全</strong>:完成用户验证,防止异常登录,保护您的账户安全。</li><li><strong>产品优化</strong>:分析匿名使用数据以修复错误、优化操作体验和提升产品性能。</li><li><strong>用户协助</strong>:回复您的反馈,解决您的使用问题。</li><li><strong>服务提醒</strong>:推送必要的系统通知和政策更新提醒。</li><li><strong>法律合规</strong>:满足法定合规要求和官方平台审核规则。</li></ol><p>未经您的明确同意,我<strong>不会</strong>将您的个人敏感内容用于商业广告或未经授权的营销。</p><hr><h2>3. 数据存储、保留与跨境传输</h2><h3>3.1 存储位置</h3><p>通过本应用收集的用户数据可能存储于位于美国的第三方安全云服务器上。所有跨境数据传输均采用加密传输协议以确保数据安全。</p><h3>3.2 保留期限</h3><p>数据仅在必要时限内保留:</p><ul><li><strong>账户数据</strong>:在您活跃使用期间保留,注销账户后合理清理。</li><li><strong>个人内容记录</strong>:在合理周期内保留,定期清理或匿名化。</li><li><strong>设备和日志数据</strong>:在有限期限后自动删除。</li></ul><hr><h2>4. 信息共享与披露</h2><h3>4.1 个人信息的出售</h3><p>我<strong>不以任何形式出售、出租或交易您的个人信息</strong>,绝不会为商业利益出售您的数据。</p><h3>4.2 与第三方服务提供商共享</h3><p>我只与应用运行所需的可信赖第三方服务提供商共享数据,并签署严格的数据保护限制:</p><ul><li>云存储和服务器服务</li><li>应用运营分析、崩溃监控工具</li><li>苹果官方推送和系统服务能力</li></ul><p>所有第三方均被禁止将您的数据用于独立的商业目的。</p><h3>4.3 法律披露</h3><p>仅在以下情况下您的数据可能被披露:</p><ul><li>法律、法规、法院命令或官方政府要求所规定</li><li>经您明确自愿授权和同意</li><li>为保护个人合法权益和公共安全</li></ul><hr><h2>5. 您的美国隐私权利(包括加州居民)</h2><p>根据 CCPA/CPRA 和美国地方隐私法律,您享有以下权利:</p><ol><li><strong>知情权</strong>:查询收集的个人数据类型和范围。</li><li><strong>访问权</strong>:获取您的个人使用数据副本。</li><li><strong>删除权</strong>:申请删除您的账户及相关个人数据。</li><li><strong>更正权</strong>:修改不正确的个人信息。</li><li><strong>数据携带权</strong>:以可读格式获取您的数据。</li><li><strong>选择退出权</strong>:拒绝非必要数据收集和无关推荐。</li><li><strong>限制敏感数据权</strong>:限制使用您的个人敏感内容。</li><li><strong>不受歧视权</strong>:行使隐私权利不受差别待遇。</li></ol><h3>如何行使您的权利</h3><p>您可以通过唯一指定联系方式提交数据请求:</p><p><strong>联系邮箱</strong><a href="mailto:ann@xunmee.com" class="text-brand-600 hover:underline">ann@xunmee.com</a></p><p>我将在 45 天内回复您的合法请求,并在处理前妥善验证您的身份以确保数据安全。</p><hr><h2>6. 儿童隐私(COPPA 合规)</h2><p>本应用不面向 13 岁以下用户。我不会故意收集 13 岁以下未成年人的任何个人信息。</p><p>如果您发现未成年人信息被不当收集,请及时通过邮箱联系我,我将按照 COPPA 法规完全删除相关数据。13-17 岁用户需在监护人监督和同意下使用本应用。</p><hr><h2>7. 数据安全</h2><p>我采取行业标准的技术保护措施保护您的数据:</p><ul><li>加密存储和加密传输以防止数据泄露</li><li>严格的访问限制和日常安全管理</li><li>定期异常监控和风险检查</li></ul><p>请注意,没有任何网络存储系统能实现绝对安全,我将始终保持最高级别的数据保护措施。</p><hr><h2>8. 政策变更</h2><p>本隐私政策可能会不定期更新以适应平台规则和法律调整。重要内容变更将通过应用内提示或邮件提醒提前通知。更新生效后您继续使用本应用,即表示您同意修订后的政策。</p><hr><h2>9. 联系我们</h2><p>如果您对本隐私政策有任何疑问、建议或隐私相关投诉,请联系我:</p><p><strong>开发者邮箱</strong><a href="mailto:ann@xunmee.com" class="text-brand-600 hover:underline">ann@xunmee.com</a></p><p>如果您是加州居民且对处理结果不满意,可咨询当地隐私监管机构。</p><hr><p><strong>独立个人开发者</strong></p><p><strong>最后更新日期</strong>2026年4月27日</p>',
zh_Hant: '<h2>引言</h2><p>尊敬的用戶,歡迎使用 覓爻 MeeYao(以下簡稱「本應用」),本應用由<strong>個人開發者</strong>(「我」)獨立開發和運營。我致力於保護您的個人隱私,並遵守適用的美國聯邦和州隱私法律,包括《加州消費者隱私法》(CCPA/CPRA)、《兒童在線隱私保護法》(COPPA)、CalOPPA 以及其他美國州隱私法規。</p><p>本隱私政策清晰說明:</p><ul><li>我收集哪些個人信息</li><li>您的數據如何被使用、存儲和共享</li><li>您在美國法規下的法定隱私權利</li><li>如何提交數據請求</li></ul><p>本政策適用於本應用的所有用戶。加州居民享有第5節規定的額外權利。</p><hr><h2>1. 我收集的信息</h2><p>我只收集為提供、維護和優化應用文化參考功能所需的數據。所有數據根據 CCPA/CPRA 分類為個人信息和敏感個人信息(SPI)。</p><h3>1.1 您直接提供的信息</h3><ul><li><strong>賬戶信息</strong>:電子郵箱地址、驗證碼(賬戶註冊和安全驗證所需)</li><li><strong>個人資料</strong>:您自願設置的暱稱或顯示名稱</li><li><strong>個人內容</strong>:您輸入的問題、文化解讀記錄和本地會話內容</li><li><strong>支持信息</strong>:您發送的反饋、諮詢消息</li></ul><h3>1.2 自動收集的信息</h3><p>當您使用本應用時,將收集有限的自動數據以確保正常運行:</p><ul><li><strong>設備信息</strong>:設備型號、操作系統版本、唯一設備標識符、設備配置</li><li><strong>技術數據</strong>:IP 地址(用於粗略區域訪問識別)、訪問時間、崩潰日誌和操作性能數據</li><li><strong>使用數據</strong>:功能使用記錄、應用停留時長和應用內交互行為</li></ul><hr><h2>2. 我如何使用您的信息</h2><p>您的信息僅用於以下合法且有限的目的:</p><ol><li><strong>提供核心功能</strong>:處理您的輸入內容,生成 AI 文化解讀內容,記錄本地使用記錄。</li><li><strong>賬戶安全</strong>:完成用戶驗證,防止異常登錄,保護您的賬戶安全。</li><li><strong>產品優化</strong>:分析匿名使用數據以修復錯誤、優化操作體驗和提升產品性能。</li><li><strong>用戶協助</strong>:回覆您的反饋,解決您的使用問題。</li><li><strong>服務提醒</strong>:推送必要的系統通知和政策更新提醒。</li><li><strong>法律合規</strong>:滿足法定合規要求和官方平台審核規則。</li></ol><p>未經您的明確同意,我<strong>不會</strong>將您的個人敏感內容用於商業廣告或未經授權的營銷。</p><hr><h2>3. 數據存儲、保留與跨境傳輸</h2><h3>3.1 存儲位置</h3><p>通過本應用收集的用戶數據可能存儲於位於美國的第三方安全雲服務器上。所有跨境數據傳輸均採用加密傳輸協議以確保數據安全。</p><h3>3.2 保留期限</h3><p>數據僅在必要時限內保留:</p><ul><li><strong>賬戶數據</strong>:在您活躍使用期間保留,註銷賬戶後合理清理。</li><li><strong>個人內容記錄</strong>:在合理週期內保留,定期清理或匿名化。</li><li><strong>設備和日誌數據</strong>:在有限期限後自動刪除。</li></ul><hr><h2>4. 信息共享與披露</h2><h3>4.1 個人信息的出售</h3><p>我<strong>不以任何形式出售、出租或交易您的個人信息</strong>,絕不會為商業利益出售您的數據。</p><h3>4.2 與第三方服務提供商共享</h3><p>我只與應用運行所需的可信賴第三方服務提供商共享數據,並簽署嚴格的數據保護限制:</p><ul><li>雲存儲和服務器服務</li><li>應用運營分析、崩潰監控工具</li><li>蘋果官方推送和系統服務能力</li></ul><p>所有第三方均被禁止將您的數據用於獨立的商業目的。</p><h3>4.3 法律披露</h3><p>僅在以下情況下您的數據可能被披露:</p><ul><li>法律、法規、法院命令或官方政府要求所規定</li><li>經您明確自願授權和同意</li><li>為保護個人合法權益和公共安全</li></ul><hr><h2>5. 您的美國隱私權利(包括加州居民)</h2><p>根據 CCPA/CPRA 和美國地方隱私法律,您享有以下權利:</p><ol><li><strong>知情權</strong>:查詢收集的個人數據類型和範圍。</li><li><strong>訪問權</strong>:獲取您的個人使用數據副本。</li><li><strong>刪除權</strong>:申請刪除您的賬戶及相關個人數據。</li><li><strong>更正權</strong>:修改不正確的個人信息。</li><li><strong>數據攜帶權</strong>:以可讀格式獲取您的數據。</li><li><strong>選擇退出權</strong>:拒絕非必要數據收集和無關推薦。</li><li><strong>限制敏感數據權</strong>:限制使用您的個人敏感內容。</li><li><strong>不受歧視權</strong>:行使隱私權利不受差別待遇。</li></ol><h3>如何行使您的權利</h3><p>您可以通過唯一指定聯繫方式提交數據請求:</p><p><strong>聯繫郵箱</strong><a href="mailto:ann@xunmee.com" class="text-brand-600 hover:underline">ann@xunmee.com</a></p><p>我將在 45 天內回覆您的合法請求,並在處理前妥善驗證您的身份以確保數據安全。</p><hr><h2>6. 兒童隱私(COPPA 合規)</h2><p>本應用不面向 13 歲以下用戶。我不會故意收集 13 歲以下未成年人的任何個人信息。</p><p>如果您發現未成年人信息被不當收集,請及時通過郵箱聯繫我,我將按照 COPPA 法規完全刪除相關數據。13-17 歲用戶需在監護人監督和同意下使用本應用。</p><hr><h2>7. 數據安全</h2><p>我採取行業標準的技術保護措施保護您的數據:</p><ul><li>加密存儲和加密傳輸以防止數據洩露</li><li>嚴格的訪問限制和日常安全管理</li><li>定期異常監控和風險檢查</li></ul><p>請注意,沒有任何網絡存儲系統能實現絕對安全,我將始終保持最高級別的數據保護措施。</p><hr><h2>8. 政策變更</h2><p>本隱私政策可能會不定期更新以適應平台規則和法律調整。重要內容變更將通過應用內提示或郵件提醒提前通知。更新生效後您繼續使用本應用,即表示您同意修訂後的政策。</p><hr><h2>9. 聯繫我們</h2><p>如果您對本隱私政策有任何疑問、建議或隱私相關投訴,請聯繫我:</p><p><strong>開發者郵箱</strong><a href="mailto:ann@xunmee.com" class="text-brand-600 hover:underline">ann@xunmee.com</a></p><p>如果您是加州居民且對處理結果不滿意,可諮詢當地隱私監管機構。</p><hr><p><strong>獨立個人開發者</strong></p><p><strong>最後更新日期</strong>2026年4月27日</p>'
};
window.MeeYaoI18n = {
getLang: getLang,
setLang: setLang,
applyAll: applyAll,
initSwitchers: initSwitchers,
t: t,
getPrivacyContent: getPrivacyContent
};
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', onReady);
} else {
onReady();
}
function onReady() {
applyAll();
initSwitchers();
}
})();