-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #511 from pycontw/fix/refactor-privacy-policy-page
- Loading branch information
Showing
2 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -100,10 +100,9 @@ export default genI18nMessages({ | |
}, | ||
], | ||
authorization: { | ||
title: 'License (CC BY-SA 3.0 TW)', | ||
title: 'License {licenseTitle}', | ||
description: | ||
'This document is licensed under an {license} license.', | ||
label: 'https://i.imgur.com/cVjN760.jpg', | ||
content: | ||
'The Privacy Policy of PyCon Taiwan will be effective February 2nd, 2024. ' + | ||
'However, due to the rapidly changing social and legal environment and ' + | ||
|
@@ -114,7 +113,6 @@ export default genI18nMessages({ | |
'If you have any questions regarding the gathering and usage of your personal information, ' + | ||
'please feel free to contact us at {contact}', | ||
terms: { | ||
contact: '[email protected].', | ||
MeetingManagement: 'Personal Information Protection Act 130', | ||
license: 'Attribution-ShareAlike 3.0 Taiwan', | ||
}, | ||
|
@@ -203,7 +201,7 @@ export default genI18nMessages({ | |
}, | ||
], | ||
authorization: { | ||
title: '授權 (CC BY-SA 3.0 TW)', | ||
title: '授權 {licenseTitle}', | ||
description: '此文件採用 {license} 授權條款。', | ||
content: | ||
'本個人資料保護聲明從 2024 年 02 月 02 日起開始生效,惟為因應社會環境及法令的變遷與科技的進步,' + | ||
|
@@ -212,7 +210,6 @@ export default genI18nMessages({ | |
question: | ||
'如果您對於我們的隱私權保護政策或是有個人資料蒐集、利用、更新等問題,請來信 {contact}。', | ||
terms: { | ||
contact: '[email protected].', | ||
MeetingManagement: '其法定特定目的為一三〇會議管理', | ||
license: '姓名標示-相同方式分享 3.0 台灣', | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,8 +49,8 @@ | |
<div class="pt-8"> | ||
<i18n path="question" tag="p" class="question"> | ||
<template #contact> | ||
<ext-link href="mailto:[email protected]" highlight | ||
>{{ $t(`terms.contact`) }} | ||
<ext-link href="mailto:[email protected]" highlight> | ||
[email protected]. | ||
</ext-link> | ||
</template> | ||
</i18n> | ||
|
@@ -62,6 +62,9 @@ | |
tag="h2" | ||
class="authorizationTitle" | ||
> | ||
<template v-slot:licenseTitle> | ||
(CC BY-SA 3.0 TW) | ||
</template> | ||
</i18n> | ||
</div> | ||
<div> | ||
|