From 9e635d2cd85b2a6ba071888fb7bf84401090185c Mon Sep 17 00:00:00 2001 From: cori hudson Date: Mon, 13 Feb 2023 17:48:27 -0500 Subject: [PATCH 01/32] initial work --- src/views/privacypolicy/l10n.json | 21 ++++++ src/views/privacypolicy/privacypolicy.jsx | 88 +++++++++++------------ 2 files changed, 62 insertions(+), 47 deletions(-) create mode 100644 src/views/privacypolicy/l10n.json diff --git a/src/views/privacypolicy/l10n.json b/src/views/privacypolicy/l10n.json new file mode 100644 index 000000000..7731ef75b --- /dev/null +++ b/src/views/privacypolicy/l10n.json @@ -0,0 +1,21 @@ +{ + "privacyPolicy.nav.collection": "Collection", + "privacyPolicy.nav.usage": "Usage", + "privacyPolicy.nav.share": "Sharing", + "privacyPolicy.nav.thirdParties": "Third Party Services", + "privacyPolicy.nav.rights": "Rights and Choices", + "privacyPolicy.nav.retention": "Data Retention", + "privacyPolicy.nav.protection": "Protection", + "privacyPolicy.nav.changes": "Notifications of Changes", + "privacyPolicy.nav.transfer": "Data Transfer", + "privacyPolicy.nav.help": "How to Help", + "privacyPolicy.nav.contact": "Contact Us", + "privacyPolicy.title": "Privacy Policy", + "privacyPolicy.lastUpdated": "The Scratch Privacy Policy was last updated: February xx, 2023", + "privacyPolicy.intro": "The Scratch Foundation (“Scratch”, “we” or “us”) understands how important privacy is to our community, especially kids and parents (“you”, “user”). We wrote this privacy policy (“Privacy Policy”) to explain what Personal Information we collect through our website (scratch.mit.edu, the “Scratch Website”), how we use, process, and share it, and what we're doing to keep it safe. It also tells you about your rights and choices with respect to your Personal Information, and how you can contact us if you have any questions or concerns.", + "privacyPolicy.offlineEditor": "If you would like to build projects with Scratch without submitting any Personal Information to us, you can download and use the Scratch app offline. Projects created in the Scratch app are not accessible by Scratch, and the app will only send anonymized information back to us if you choose to do so. If you upload your projects to the Scratch online community on the Scratch Website, we will collect your Personal Information as explained in this Privacy Policy.", + "privacyPolicy.collectionTitle": "What Personal Information Does Scratch Collect About Me?", + "privacyPolicy.collection1": "For the purpose of this Privacy Policy, “Personal Information” means any information relating to an identified or identifiable individual. You may provide us with Personal Information directly, such as when you create an account, or we may collect your Personal Information automatically, such as when you switch languages or view a project.", + "privacyPolicy.collection2": "Where applicable, we explain whether and why you must provide us with your Personal Information, as well as the consequences if you choose not to do so. For example, you may not be able to benefit from the Scratch Website if that Personal Information is necessary to provide you with the service or if we are legally required to collect that Personal Information.", + "privacyPolicy.youProvide": "Personal Information That You Provide Us" +} \ No newline at end of file diff --git a/src/views/privacypolicy/privacypolicy.jsx b/src/views/privacypolicy/privacypolicy.jsx index 1591fecef..3fb432070 100644 --- a/src/views/privacypolicy/privacypolicy.jsx +++ b/src/views/privacypolicy/privacypolicy.jsx @@ -1,4 +1,5 @@ const React = require('react'); +const FormattedMessage = require('react-intl').FormattedMessage; const Page = require('../../components/page/www/page.jsx'); const render = require('../../lib/render.jsx'); @@ -6,56 +7,49 @@ const render = require('../../lib/render.jsx'); const InformationPage = require('../../components/informationpage/informationpage.jsx'); const Privacypolicy = () => ( - + + } + >

- The Scratch Privacy Policy was last updated: February 14, 2019 +

- Scratch understands how important privacy is to our - community, especially kids and parents. We wrote this - Privacy Policy to explain what information we collect - through our website (scratch.mit.edu) (the "Site"), - how we use, process, and share it, and what we're doing - to keep it safe. It also tells you about your rights and - choices with respect to your information, and how you can{' '} - contact us if you have any - questions or concerns. + {chunks}, + a: chunks => {chunks} + }} + />

- If you would like to build projects with Scratch without - submitting any Personal Information to us, you can download - the Scratch Offline Editor. Projects - created in the Scratch Offline Editor - {' '}are not accessible by the Scratch Team, and using the - offline editor does not disclose any personally identifying - information to Scratch unless you upload these projects to - the Scratch online community. + {chunks} + }} + />

-

What personal information does the Scratch Team collect about me?

+

- For the purpose of this Privacy Policy, “Personal - Information” means any information relating to an - identified or identifiable individual. We obtain - Personal Information relating to you from various - sources described below. +

- Where applicable, we indicate whether and why you must - provide us with your Personal Information, as well as - the consequences of failing to do so. If you do not - provide Personal Information when requested, you may not - be able to benefit from our Site if that information is - necessary to provide you with the service or if we are - legally required to collect the information. +

+

Account Information
In order to share projects, create studios, or post @@ -113,7 +107,7 @@ const Privacypolicy = () => ( use of other websites, apps, and online resources. You can learn more about Google’s practices by going to{' '} - https://www.google.com/policies/privacy/partners/. + https://www.google.com/policies/privacy/partners/.
If you do not want information collected through the use @@ -123,7 +117,7 @@ const Privacypolicy = () => ( cookie (or cookies) from a particular site. You may also wish to refer to{' '} - http://www.allaboutcookies.org/manage-cookies/index.html. + http://www.allaboutcookies.org/manage-cookies/index.html. If, however, you do not accept cookies, you may experience some inconvenience in your use of Scratch.
@@ -288,9 +282,9 @@ const Privacypolicy = () => (
You can update your password, email address, and country through the Account - Settings page. You can also reset your password + Settings page. You can also reset your password through the Account - Reset page. You cannot change your username, but you + Reset page. You cannot change your username, but you can make a new account and manually copy your projects to the new account.
@@ -456,17 +450,17 @@ const Privacypolicy = () => (
From 76bdc1ab494fc5c9f93961325ecf077230f34f62 Mon Sep 17 00:00:00 2001 From: cori hudson Date: Tue, 14 Feb 2023 16:29:49 -0500 Subject: [PATCH 02/32] refactor(privacy policy): update copy and enable translation of collection section --- src/views/privacypolicy/l10n.json | 23 +++- src/views/privacypolicy/privacypolicy.jsx | 137 +++++++++------------- 2 files changed, 77 insertions(+), 83 deletions(-) diff --git a/src/views/privacypolicy/l10n.json b/src/views/privacypolicy/l10n.json index 7731ef75b..80005cf4c 100644 --- a/src/views/privacypolicy/l10n.json +++ b/src/views/privacypolicy/l10n.json @@ -17,5 +17,26 @@ "privacyPolicy.collectionTitle": "What Personal Information Does Scratch Collect About Me?", "privacyPolicy.collection1": "For the purpose of this Privacy Policy, “Personal Information” means any information relating to an identified or identifiable individual. You may provide us with Personal Information directly, such as when you create an account, or we may collect your Personal Information automatically, such as when you switch languages or view a project.", "privacyPolicy.collection2": "Where applicable, we explain whether and why you must provide us with your Personal Information, as well as the consequences if you choose not to do so. For example, you may not be able to benefit from the Scratch Website if that Personal Information is necessary to provide you with the service or if we are legally required to collect that Personal Information.", - "privacyPolicy.youProvide": "Personal Information That You Provide Us" + "privacyPolicy.youProvide": "Personal Information That You Provide Us", + "privacyPolicy.accountInformationTitle": "Account Information", + "privacyPolicy.accountInformationIntro": "In order to use the services and features that we offer on the Scratch Website, such as to share projects, create studios, or post comments, you need to create an account (your own account, a teacher account or a student account).", + "privacyPolicy.yourAccount": "When you create an account for yourself, we ask you for a username and password, your country, gender, and your email address. We ask that you select a username that does not disclose your real name or other information that could identify you. Other users can see your username and country, but not your gender or email address.", + "privacyPolicy.teacherAccount": "When you create a teacher account, we ask for a username and password, your phone number, birthdate, gender, country of residence, name, and details about your employer.", + "privacyPolicy.studentAccount": "When you create student accounts through your teacher account, we ask for a username, password, birthdate, gender, and country of residence. You do not need to provide students’ email addresses to create bulk student accounts.", + "privacyPolicy.userGeneratedContentTitle": "User-generated Content", + "privacyPolicy.userGeneratedContentBody": "Scratch collects and stores Personal Information provided in a user-generated content, when you create Scratch projects (including unshared projects) or studios, write comments, or post on forums.", + "privacyPolicy.communicationsTitle": "Communications", + "privacyPolicy.communicationsBody": "If you contact us directly, we collect the Personal Information that you provide in your message. For example, when you contact our Customer Support Team, we may receive your name, email address, phone number, the contents of a message or attachments that you may send to us, and other information you choose to provide.", + "privacyPolicy.automaticallyCollect": "Personal Information We Collect Automatically From Your Use of the Scratch Website", + "privacyPolicy.locationInformationTitle": "Location Information", + "privacyPolicy.locationInformationBody": "When you use the Scratch Website, we infer your general location information, for example, by using your internet protocol (IP) address.", + "privacyPolicy.cookiesTitle": "Cookies", + "privacyPolicy.cookiesBody": "When you use the Scratch Website, we collect Personal Information about you and your device automatically via cookies and web server logs. This includes your IP address, network location, what browser you are using, device IDs and characteristics, operating system version, language preferences, referring URLs, and Personal Information about the usage of the Scratch Website. You can learn more about how the Scratch Website uses cookies by going to this page.", + "privacyPolicy.otherSources": "Information Collected From Other Sources", + "privacyPolicy.thirdPartyInformationTitle": "Information from Third Parties", + "privacyPolicy.thirdPartyInformationBody": "We may obtain Personal Information about you from third parties, such as from your teacher if you are using Scratch within a school. This information may include your school name and address.", + "privacyPolicy.publicSourceInformationTitle": "Information from Public Sources", + "privacyPolicy.publicSourceInformationBody": "We may obtain Personal Information about you from public sources, such as from census records. This information may include demographic information about your school or geographic region.", + "privacyPolicy.usageTitle": "How Does Scratch Use My Personal Information?", + "privacyPolicy.usageBody": "The main purpose is to provide you with the services that we offer through the Scratch Website and to improve your learning experience. An overview of the uses:" } \ No newline at end of file diff --git a/src/views/privacypolicy/privacypolicy.jsx b/src/views/privacypolicy/privacypolicy.jsx index 3fb432070..e2502e137 100644 --- a/src/views/privacypolicy/privacypolicy.jsx +++ b/src/views/privacypolicy/privacypolicy.jsx @@ -42,92 +42,65 @@ const Privacypolicy = () => (
-

+

-

-
Account Information
+

+
- In order to share projects, create studios, or post - comments, you need to make an account. During account - creation, we ask you for a username, your country, birth - month and year, gender, and your email address (or your - parent or guardian's email address if you are under - 16 years old). We ask that you select a username that does - not disclose your real name or other information that - could identify you. Other users can see your username - and country, but not your age, gender, or email address. -
-
User-generated Content
-
- We collect any information that you provide to us when - you create Scratch projects (including unshared - projects), write comments, or post on our forums. -
-
Communications
-
- If you contact us directly, we may receive additional - information about you. For example, when you contact our - Customer Support Team, we may receive your name, email - address, phone number, the contents of a message or - attachments that you may send to us, and other - information you choose to provide. -
-
- Personal Information We Collect Automatically From Your - Use of the Site -
-
- When you use Scratch, we and our third-party service - providers collect information about you and your device - through automated means, such as cookies and web server - logs. By using Scratch, you consent to the placement of - cookies and similar technologies in your browser in - accordance with this Privacy Policy. The information - collected in this manner includes your IP address, - network location, what browser you are using, device IDs - and characteristics, operating system version, language - preferences, referring URLs, and information about the - usage of our site. -
-
- We use this information, for example, to ensure that the - site functions properly, to determine how many users - have visited certain pages, or to prevent fraud. We use - IP address information to derive your approximate - location. We also work with analytics providers, such - as Google Analytics, which use cookies and similar - technologies to collect and analyze information about - use of the site and report on activities and trends. - These services may also collect information about the - use of other websites, apps, and online resources. You - can learn more about Google’s practices by going to{' '} - - https://www.google.com/policies/privacy/partners/. -
-
- If you do not want information collected through the use - of cookies, most browsers allow you to automatically - decline cookies or be given the choice of declining or - accepting the transfer to your computer of a particular - cookie (or cookies) from a particular site. You may also - wish to refer to{' '} - - http://www.allaboutcookies.org/manage-cookies/index.html. - If, however, you do not accept cookies, you may - experience some inconvenience in your use of Scratch. + +
    +
  • + {chunks} + }} + /> +
  • +
  • + {chunks} + }} + /> +
  • +
  • + {chunks} + }} + /> +
  • +
+
+
+
+
+

+
+
+
+
+

+
+
+
+
-

How does the Scratch Team use my personal information?

-

+

+

Internal and Service-Related Usage
We use Personal Information for internal and Site-related @@ -213,7 +186,7 @@ const Privacypolicy = () => (
-

How Does Scratch Share my Personal Information?

+

How Does Scratch Share my Personal Information?

We disclose information that we collect through the Site to third parties in the following circumstances: @@ -262,7 +235,7 @@ const Privacypolicy = () => (

-

Third Party Services

+

Third Party Services

This Privacy Policy applies only to the processing of your Personal Information by Scratch. It does not address, and we @@ -275,7 +248,7 @@ const Privacypolicy = () => (

-

Your Rights and Choices

+

Your Rights and Choices

Updating Your Information
@@ -351,7 +324,7 @@ const Privacypolicy = () => (
-

Data Retention

+

Data Retention

We take measures to delete your Personal Information or keep it in a form that does not allow you to be identified when @@ -369,7 +342,7 @@ const Privacypolicy = () => (

-

How does the Scratch Team protect my personal information?

+

How does the Scratch Team protect my personal information?

The Scratch Team has in place administrative, physical, and technical procedures that are intended to protect the @@ -389,7 +362,7 @@ const Privacypolicy = () => (

-

Notifications of changes to the Privacy Policy

+

Notifications of changes to the Privacy Policy

We review our security measures and Privacy Policy on a periodic basis, and we may modify our policies as @@ -404,7 +377,7 @@ const Privacypolicy = () => (

-

International Cross-Border Data Transfer

+

International Cross-Border Data Transfer

Scratch is based in the United States. Personal Information that we collect may be transferred to, and stored at, any of @@ -416,7 +389,7 @@ const Privacypolicy = () => (

-

What can I do to help protect privacy on Scratch?

+

What can I do to help protect privacy on Scratch?

Please do not share personal contact information (such as your name, physical address, email address, or phone number) @@ -430,7 +403,7 @@ const Privacypolicy = () => (

-

Contact Us

+

Contact Us

The Code-to-Learn Foundation d/b/a The Scratch Foundation is the entity responsible for the processing of your Personal From 9820cf7ec5c10a5b2ec70c5557b007677a841271 Mon Sep 17 00:00:00 2001 From: cori hudson Date: Tue, 21 Feb 2023 16:36:17 -0500 Subject: [PATCH 03/32] chore(privacy policy,): fix nav message, add usage strings to l10n json --- src/views/privacypolicy/l10n.json | 11 ++++++++++- src/views/privacypolicy/privacypolicy.jsx | 2 +- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/src/views/privacypolicy/l10n.json b/src/views/privacypolicy/l10n.json index 80005cf4c..2785b8238 100644 --- a/src/views/privacypolicy/l10n.json +++ b/src/views/privacypolicy/l10n.json @@ -38,5 +38,14 @@ "privacyPolicy.publicSourceInformationTitle": "Information from Public Sources", "privacyPolicy.publicSourceInformationBody": "We may obtain Personal Information about you from public sources, such as from census records. This information may include demographic information about your school or geographic region.", "privacyPolicy.usageTitle": "How Does Scratch Use My Personal Information?", - "privacyPolicy.usageBody": "The main purpose is to provide you with the services that we offer through the Scratch Website and to improve your learning experience. An overview of the uses:" + "privacyPolicy.usageBody": "The main purpose is to provide you with the services that we offer through the Scratch Website and to improve your learning experience. An overview of the uses:", + "privacyPolicy.usage.internalAndServiceTitle": "Internal and Service-Related Usage", + "privacyPolicy.usage.internalAndServiceBody": "We use Personal Information for internal purposes, including to operate, provide and maintain the Scratch Website. For example, to direct users to the requested content, to create and recover accounts and to enable users to create and share projects.", + "privacyPolicy.usage.analyticsTitle": "Analytics and Improving the Scratch Website", + "privacyPolicy.usage.analyticsBody": "We use Personal Information that we collect on the Scratch Website, such as your location and your activities, to monitor and analyze usage of the Scratch Website and to enhance your learning experience.", + "privacyPolicy.usage.communicationsBody": "We may send emails to an email address you provide to us for customer-service or technical-support purposes. We may also send a newsletter to the email address you provide to us when you subscribe to receive additional communications from us.", + "privacyPolicy.usage.researchTitle": "Academic and Scientific Research", + "privacyPolicy.uage.researchBody": "We de-identify and aggregate Personal Information collected through the Scratch Website for statistical analysis in the context of scientific and academic research. For example, to help us understand how people learn through the Scratch Website and how we can enhance learning tools for young people. The results of such research are shared with educators and researchers through conferences, journals, and other academic or scientific publications. You can find out more on our Research page.", + "privacyPolicy.usage.legalTitle": "Legal", + "privacyPolicy.usage.legalBody": "We may use your Personal Information to enforce our Terms of Use, to defend our legal rights, and to comply with our legal obligations and internal policies. We moderate content posted to the Scratch Website, including shared and unshared projects, comments, and forum posts to ensure that our Community Guidelines are respected. We also use your Personal Information to detect and prevent fraud, spam, and abuse. We and our service providers may do this by reading information held in cookies set in your browser, analyzing your usage of the Scratch Website, and through other means.", } \ No newline at end of file diff --git a/src/views/privacypolicy/privacypolicy.jsx b/src/views/privacypolicy/privacypolicy.jsx index e2502e137..4502f1dbb 100644 --- a/src/views/privacypolicy/privacypolicy.jsx +++ b/src/views/privacypolicy/privacypolicy.jsx @@ -426,7 +426,7 @@ const Privacypolicy = () => (

  • -
  • +
  • From b3cafadaf0a46a202cd64cf30c7e2140ba8e208b Mon Sep 17 00:00:00 2001 From: cori hudson Date: Wed, 22 Feb 2023 17:18:14 -0500 Subject: [PATCH 04/32] chore: move usage/legal grounds section to l10n json --- src/views/privacypolicy/l10n.json | 8 +- src/views/privacypolicy/privacypolicy.jsx | 103 ++++++---------------- 2 files changed, 33 insertions(+), 78 deletions(-) diff --git a/src/views/privacypolicy/l10n.json b/src/views/privacypolicy/l10n.json index 2785b8238..92b497112 100644 --- a/src/views/privacypolicy/l10n.json +++ b/src/views/privacypolicy/l10n.json @@ -45,7 +45,13 @@ "privacyPolicy.usage.analyticsBody": "We use Personal Information that we collect on the Scratch Website, such as your location and your activities, to monitor and analyze usage of the Scratch Website and to enhance your learning experience.", "privacyPolicy.usage.communicationsBody": "We may send emails to an email address you provide to us for customer-service or technical-support purposes. We may also send a newsletter to the email address you provide to us when you subscribe to receive additional communications from us.", "privacyPolicy.usage.researchTitle": "Academic and Scientific Research", - "privacyPolicy.uage.researchBody": "We de-identify and aggregate Personal Information collected through the Scratch Website for statistical analysis in the context of scientific and academic research. For example, to help us understand how people learn through the Scratch Website and how we can enhance learning tools for young people. The results of such research are shared with educators and researchers through conferences, journals, and other academic or scientific publications. You can find out more on our Research page.", + "privacyPolicy.usage.researchBody": "We de-identify and aggregate Personal Information collected through the Scratch Website for statistical analysis in the context of scientific and academic research. For example, to help us understand how people learn through the Scratch Website and how we can enhance learning tools for young people. The results of such research are shared with educators and researchers through conferences, journals, and other academic or scientific publications. You can find out more on our Research page.", "privacyPolicy.usage.legalTitle": "Legal", "privacyPolicy.usage.legalBody": "We may use your Personal Information to enforce our Terms of Use, to defend our legal rights, and to comply with our legal obligations and internal policies. We moderate content posted to the Scratch Website, including shared and unshared projects, comments, and forum posts to ensure that our Community Guidelines are respected. We also use your Personal Information to detect and prevent fraud, spam, and abuse. We and our service providers may do this by reading information held in cookies set in your browser, analyzing your usage of the Scratch Website, and through other means.", + "privacyPolicy.legalGrounds.title": "What Are The Legal Grounds For Processing Your Personal Information?", + "privacyPolicy.legalGrounds.intro": "If you are located in the European Economic Area, the United Kingdom or Switzerland, we only process your Personal Information based on a valid legal ground. A “legal ground” is a reason that justifies our use of your Personal Information. We may use different legal grounds, such as:", + "privacyPolicy.legalGrounds.communications": "You have consented to the use of your Personal Information, for example, to receive electronic marketing communications;", + "privacyPolicy.legalGrounds.services": "We need your Personal Information to provide our services, including for account registration, to respond to your inquiries, or for customer support;", + "privacyPolicy.legalGrounds.obligation": "We have a legal obligation to use your Personal Information; or", + "privacyPolicy.legalGrounds.thirdParty": "We or a third party have a legitimate interest in using your Personal Information. In particular, we have a legitimate interest in using your Personal Information to analyze and share your aggregated or de-identified information for research purposes, to analyze and enhance your learning experience on the Scratch Website and otherwise ensure and improve the safety, security, and performance of the Scratch Website. We only rely on our or a third party’s legitimate interests to process your Personal Information when these interests are not overridden by your rights and interests." } \ No newline at end of file diff --git a/src/views/privacypolicy/privacypolicy.jsx b/src/views/privacypolicy/privacypolicy.jsx index 4502f1dbb..d078e6d63 100644 --- a/src/views/privacypolicy/privacypolicy.jsx +++ b/src/views/privacypolicy/privacypolicy.jsx @@ -1,16 +1,15 @@ const React = require('react'); const FormattedMessage = require('react-intl').FormattedMessage; +const injectIntl = require('react-intl').injectIntl; const Page = require('../../components/page/www/page.jsx'); const render = require('../../lib/render.jsx'); const InformationPage = require('../../components/informationpage/informationpage.jsx'); -const Privacypolicy = () => ( +const Privacypolicy = injectIntl(props => ( - } + title={props.intl.formatMessage({id: 'privacyPolicy.title'})} >
    @@ -44,7 +43,12 @@ const Privacypolicy = () => (

    - + {chunks} + }} + />

    @@ -101,85 +105,30 @@ const Privacypolicy = () => (

    -
    Internal and Service-Related Usage
    -
    - We use Personal Information for internal and Site-related - purposes, including to operate, provide, and maintain the - Site. -
    -
    Analytics and Improving the Site
    -
    - We and our service providers use Personal Information - that we collect on the Site, such as your location and - your activities on the Site, to monitor and analyze - usage of the Site and to improve and enhance the Site. -
    -
    Communications
    -
    - We may send emails to an email address you provide to us - for customer-service or technical-support purposes, to - send you information about topics or content that we - think may interest you, or updates about the latest - developments or features on the Site. We may also send a - newsletter to the email address you provide to us if you - subscribe to receive the newsletter. Parents and - guardians who register their under-16 year olds for - Scratch may also receive additional updates from the - Scratch Foundation, a non-profit that supports Scratch - educational initiatives. -
    -
    Aggregate Data
    -
    - We may de-identify and aggregate information collected - through the Site for statistical analysis and other - lawful purpose, including in research studies intended - to improve our understanding of how people learn with - Scratch. The results of this research are shared with - educators and researchers through conferences, journals, - and other publications. You can find out more on our{' '} - Research page. -
    -
    Legal
    -
    - We may use your Personal Information to enforce our{' '} - Terms of Use, to defend our - legal rights, and to comply with our legal obligations - and internal policies. We moderate all content posted to - Scratch, including unshared projects, comments, and - forum posts. -
    -
    - If you are located in the European Economic Area, we - only process your Personal Information based on a valid - legal ground, including when: -
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +

    • - You have consented to the use of your Personal - Information, for example, to receive electronic - marketing communications; +
    • - We need your Personal Information to provide our - services, including for account registration, to - respond to your inquiries, or for customer support; +
    • - We have a legal obligation to use your Personal - Information; or +
    • - We or a third party have a legitimate interest in - using your Personal Information. In particular, we - have a legitimate interest in using your Personal - Information to personalize our services and provide - you with tailored content, conduct business - analytics, and otherwise improve the safety, - security, and performance of our Site. We only rely - on our or a third party’s legitimate interests to - process your Personal Information when these - interests are not overridden by your rights and - interests. +
    @@ -437,6 +386,6 @@ const Privacypolicy = () => ( -); +)); render(, document.getElementById('app')); From f486121cf1f7e53fc5c4948146c8c72c83e6fce0 Mon Sep 17 00:00:00 2001 From: cori hudson Date: Fri, 24 Feb 2023 17:29:36 -0500 Subject: [PATCH 05/32] chore: fix links, update several more sections --- src/views/privacypolicy/l10n.json | 20 +++- src/views/privacypolicy/privacypolicy.jsx | 113 +++++++++++----------- 2 files changed, 73 insertions(+), 60 deletions(-) diff --git a/src/views/privacypolicy/l10n.json b/src/views/privacypolicy/l10n.json index 92b497112..3e7d071ee 100644 --- a/src/views/privacypolicy/l10n.json +++ b/src/views/privacypolicy/l10n.json @@ -3,6 +3,7 @@ "privacyPolicy.nav.usage": "Usage", "privacyPolicy.nav.share": "Sharing", "privacyPolicy.nav.thirdParties": "Third Party Services", + "privacyPolicy.nav.childPrivacy": "Children and Student Privacy", "privacyPolicy.nav.rights": "Rights and Choices", "privacyPolicy.nav.retention": "Data Retention", "privacyPolicy.nav.protection": "Protection", @@ -53,5 +54,22 @@ "privacyPolicy.legalGrounds.communications": "You have consented to the use of your Personal Information, for example, to receive electronic marketing communications;", "privacyPolicy.legalGrounds.services": "We need your Personal Information to provide our services, including for account registration, to respond to your inquiries, or for customer support;", "privacyPolicy.legalGrounds.obligation": "We have a legal obligation to use your Personal Information; or", - "privacyPolicy.legalGrounds.thirdParty": "We or a third party have a legitimate interest in using your Personal Information. In particular, we have a legitimate interest in using your Personal Information to analyze and share your aggregated or de-identified information for research purposes, to analyze and enhance your learning experience on the Scratch Website and otherwise ensure and improve the safety, security, and performance of the Scratch Website. We only rely on our or a third party’s legitimate interests to process your Personal Information when these interests are not overridden by your rights and interests." + "privacyPolicy.legalGrounds.thirdParty": "We or a third party have a legitimate interest in using your Personal Information. In particular, we have a legitimate interest in using your Personal Information to analyze and share your aggregated or de-identified information for research purposes, to analyze and enhance your learning experience on the Scratch Website and otherwise ensure and improve the safety, security, and performance of the Scratch Website. We only rely on our or a third party’s legitimate interests to process your Personal Information when these interests are not overridden by your rights and interests.", + "privacyPolicy.share.title": "How Does Scratch Share My Personal Information?", + "privacyPolicy.share.intro": "We disclose Personal Information that we collect through the Scratch Website to third parties, if you consent to us doing so, as well as in the following circumstances:", + "privacyPolicy.share.serviceProvidersTitle": "Service Providers", + "privacyPolicy.share.serviceProvidersBody": "To third parties who provide services such as website hosting, data analysis, information technology and related infrastructure provisions, customer service, email delivery, and other services.", + "privacyPolicy.share.researchTitle": "Academic and Scientific Research", + "privacyPolicy.share.researchBody": "To research institutions, such as the Massachusetts Institute of Technology (MIT), to learn about how our users learn through the Scratch Website and develop new learning tools.", + "privacyPolicy.share.mergerTitle": "Merger", + "privacyPolicy.share.mergerBody": "To a potential or actual acquirer, successor, or assignee as part of any reorganization, merger, sale, joint venture, assignment, transfer, or other disposition of all or any portion of our organization or assets. You will have the opportunity to opt out of any such transfer if the new entity’s planned processing of your Personal Information differs materially from that set forth in this Privacy Policy.", + "privacyPolicy.share.legalTitle": "Legal", + "privacyPolicy.share.legalBody": "If required to do so by law or in the good faith belief that such action is appropriate: (a) under applicable law, including laws outside your country of residence; (b) to comply with legal process; (c) to respond to requests from public and government authorities, such as school, school districts, and law enforcement, including public and government authorities outside your country of residence; (d) to enforce our terms and conditions; (e) to protect our operations or those of any of our affiliates; (f) to protect our rights, privacy, safety, or property, and/or that of our affiliates, you, or others; and (g) to allow us to pursue available remedies or limit the damages that we may sustain.", + "privacyPolicy.thirdPartyServices.title": "Third Party Services", + "privacyPolicy.thirdPartyServices.body": "This Privacy Policy applies only to the processing of your Personal Information by Scratch. It does not address, and we are not responsible for, the privacy, information, or other practices of any third parties, including any third party operating any site or service to which the Scratch Website links. The inclusion of a link on the Scratch Website does not imply endorsement of the linked site or service by us or by our affiliates.", + "privacyPolicy.childPrivacy.title": "Children and Student Privacy", + "privacyPolicy.childPrivacy.body": "The Scratch Foundation is a 501(c)(3) nonprofit organization. As such, the Children’s Online Privacy Protection Act (COPPA) does not apply to the Scratch Website. Nevertheless, Scratch takes children’s privacy seriously. Scratch collects only minimal information from its users, and only uses and discloses information to provide the services and for limited other purposes, such as research, as described in this Privacy Policy.
    Scratch does not collect information from a student’s education record, as defined by the Family Educational Rights and Privacy Act (FERPA). Scratch does not disclose personal information of students to any third parties except as described in this Privacy Policy: to service providers and research institutions.", + "privacyPolicy.rights.title": "Your Rights and Choices", + "privacyPolicy.rights.updatingTitle": "Updating Your Information", + "privacyPolicy.rights.updatingBody": "You can update your password, email address, and country through the Account Settings page. You can also reset your password through the Account Reset page. You cannot change your username, but you can make a new account and manually copy your projects to the new account.
    If you want to delete your account, login to Scratch, and then click your username in the top right-hand corner. Select \"Account Settings,\" then click the \"I want to delete my account\" link at the bottom of the page. Deleting your account hides all Personal Information from public view, but does not remove all of your Personal Information from our servers. If you want to have all of your Personal Information removed from our servers, please contact help@scratch.mit.edu for assistance." } \ No newline at end of file diff --git a/src/views/privacypolicy/privacypolicy.jsx b/src/views/privacypolicy/privacypolicy.jsx index d078e6d63..279a38e4c 100644 --- a/src/views/privacypolicy/privacypolicy.jsx +++ b/src/views/privacypolicy/privacypolicy.jsx @@ -92,7 +92,14 @@ const Privacypolicy = injectIntl(props => (
    -
    +
    + {chunks} + }} + /> +

    @@ -112,9 +119,24 @@ const Privacypolicy = injectIntl(props => (
    -
    +
    + {chunks} + }} + /> +
    -
    +
    + {chunks}, + guidelines: chunks => {chunks} + }} + /> +

      @@ -128,71 +150,43 @@ const Privacypolicy = injectIntl(props => (
    • - +
    - -

    How Does Scratch Share my Personal Information?

    -

    - We disclose information that we collect through the Site to - third parties in the following circumstances: -

    -
      -
    • - To third-party service providers who provide services - such as website hosting, data analysis, information - technology and related infrastructure provisions, - customer service, email delivery, and other services. -
    • -
    • - We may also disclose your Personal Information with your - permission. We may seek your permission in various ways. - For example, we may present you with an “opt-in” prompt - when you register to use the Site or access certain - content. -
    • -
    • - To a potential or actual acquirer, successor, or - assignee as part of any reorganization, merger, sale, - joint venture, assignment, transfer, or other - disposition of all or any portion of our organization or - assets. You will have the opportunity to opt out of any - such transfer if the new entity’s planned processing of - your information differs materially from that set forth - in this Privacy Policy. -
    • -
    • - If required to do so by law or in the good faith belief - that such action is appropriate: (a) under applicable - law, including laws outside your country of residence; - (b) to comply with legal process; (c) to respond to - requests from public and government authorities, such - as school, school districts, and law enforcement, - including public and government authorities outside your - country of residence; (d) to enforce our terms and - conditions; (e) to protect our operations or those of - any of our affiliates; (f) to protect our rights, - privacy, safety, or property, and/or that of our - affiliates, you, or others; and (g) to allow us to - pursue available remedies or limit the damages that we - may sustain. -
    • -
    +
    + +

    +

    + +

    +
    +
    +
    +
    +
    +
    +
    +
    +
    -

    Third Party Services

    +

    +

    +
    +
    + +

    - This Privacy Policy applies only to the processing of your - Personal Information by Scratch. It does not address, and we - are not responsible for, the privacy, information, or other - practices of any third parties, including any third party - operating any site or service to which the Site links. The - inclusion of a link on the Site does not imply endorsement - of the linked site or service by us or by our affiliates. + + }} + />

    @@ -376,6 +370,7 @@ const Privacypolicy = injectIntl(props => (
  • +
  • From 07406891a98883011fd894f02fd378ce0619aa8e Mon Sep 17 00:00:00 2001 From: cori hudson Date: Thu, 2 Mar 2023 17:22:51 -0500 Subject: [PATCH 06/32] refactor: finish moving all strings in privacy policy to l10n.json --- src/views/privacypolicy/l10n.json | 31 ++- src/views/privacypolicy/privacypolicy.jsx | 222 +++++++--------------- 2 files changed, 97 insertions(+), 156 deletions(-) diff --git a/src/views/privacypolicy/l10n.json b/src/views/privacypolicy/l10n.json index 3e7d071ee..8096ed953 100644 --- a/src/views/privacypolicy/l10n.json +++ b/src/views/privacypolicy/l10n.json @@ -12,7 +12,7 @@ "privacyPolicy.nav.help": "How to Help", "privacyPolicy.nav.contact": "Contact Us", "privacyPolicy.title": "Privacy Policy", - "privacyPolicy.lastUpdated": "The Scratch Privacy Policy was last updated: February xx, 2023", + "privacyPolicy.lastUpdated": "The Scratch Privacy Policy was last updated: March 2, 2023", "privacyPolicy.intro": "The Scratch Foundation (“Scratch”, “we” or “us”) understands how important privacy is to our community, especially kids and parents (“you”, “user”). We wrote this privacy policy (“Privacy Policy”) to explain what Personal Information we collect through our website (scratch.mit.edu, the “Scratch Website”), how we use, process, and share it, and what we're doing to keep it safe. It also tells you about your rights and choices with respect to your Personal Information, and how you can contact us if you have any questions or concerns.", "privacyPolicy.offlineEditor": "If you would like to build projects with Scratch without submitting any Personal Information to us, you can download and use the Scratch app offline. Projects created in the Scratch app are not accessible by Scratch, and the app will only send anonymized information back to us if you choose to do so. If you upload your projects to the Scratch online community on the Scratch Website, we will collect your Personal Information as explained in this Privacy Policy.", "privacyPolicy.collectionTitle": "What Personal Information Does Scratch Collect About Me?", @@ -68,8 +68,33 @@ "privacyPolicy.thirdPartyServices.title": "Third Party Services", "privacyPolicy.thirdPartyServices.body": "This Privacy Policy applies only to the processing of your Personal Information by Scratch. It does not address, and we are not responsible for, the privacy, information, or other practices of any third parties, including any third party operating any site or service to which the Scratch Website links. The inclusion of a link on the Scratch Website does not imply endorsement of the linked site or service by us or by our affiliates.", "privacyPolicy.childPrivacy.title": "Children and Student Privacy", - "privacyPolicy.childPrivacy.body": "The Scratch Foundation is a 501(c)(3) nonprofit organization. As such, the Children’s Online Privacy Protection Act (COPPA) does not apply to the Scratch Website. Nevertheless, Scratch takes children’s privacy seriously. Scratch collects only minimal information from its users, and only uses and discloses information to provide the services and for limited other purposes, such as research, as described in this Privacy Policy.
    Scratch does not collect information from a student’s education record, as defined by the Family Educational Rights and Privacy Act (FERPA). Scratch does not disclose personal information of students to any third parties except as described in this Privacy Policy: to service providers and research institutions.", + "privacyPolicy.childPrivacy.body1": "The Scratch Foundation is a 501(c)(3) nonprofit organization. As such, the Children’s Online Privacy Protection Act (COPPA) does not apply to the Scratch Website. Nevertheless, Scratch takes children’s privacy seriously. Scratch collects only minimal information from its users, and only uses and discloses information to provide the services and for limited other purposes, such as research, as described in this Privacy Policy.", + "privacyPolicy.childPrivacy.body2": "Scratch does not collect information from a student’s education record, as defined by the Family Educational Rights and Privacy Act (FERPA). Scratch does not disclose personal information of students to any third parties except as described in this Privacy Policy: to service providers and research institutions.", "privacyPolicy.rights.title": "Your Rights and Choices", "privacyPolicy.rights.updatingTitle": "Updating Your Information", - "privacyPolicy.rights.updatingBody": "You can update your password, email address, and country through the Account Settings page. You can also reset your password through the Account Reset page. You cannot change your username, but you can make a new account and manually copy your projects to the new account.
    If you want to delete your account, login to Scratch, and then click your username in the top right-hand corner. Select \"Account Settings,\" then click the \"I want to delete my account\" link at the bottom of the page. Deleting your account hides all Personal Information from public view, but does not remove all of your Personal Information from our servers. If you want to have all of your Personal Information removed from our servers, please contact help@scratch.mit.edu for assistance." + "privacyPolicy.rights.updatingBody1": "You can update your password, email address, and country through the Account Settings page. You can also reset your password through the Account Reset page. You cannot change your username, but you can make a new account and manually copy your projects to the new account.", + "privacyPolicy.rights.updatingBody2": "If you want to delete your account, login to Scratch, and then click your username in the top right-hand corner. Select \"Account Settings,\" then click the \"I want to delete my account\" link at the bottom of the page. Deleting your account hides all Personal Information from public view, but does not remove all of your Personal Information from our servers. If you want to have all of your Personal Information removed from our servers, please contact help@scratch.mit.edu for assistance.", + "privacyPolicy.rights.marketingTitle": "Marketing Communications", + "privacyPolicy.rights.marketingBody": "If you decide at any time that you no longer wish to receive marketing communications from us, please follow the unsubscribe instructions provided in any of the communications. You may also opt out from receiving email from us by sending your request to us by email at help@scratch.mit.edu. Please be aware that, even after you opt out from receiving marketing communications from us, you may continue to receive administrative messages from us regarding your account.", + "privacyPolicy.rights.data.title": "Your Data Protection Rights (EEA, UK and Switzerland)", + "privacyPolicy.rights.data.intro": "If you are located in the European Economic Area, the United Kingdom or Switzerland, you have certain rights in relation to your Personal Information:", + "privacyPolicy.rights.data.access": "Access, Correction and Data Portability: You may ask for an overview of the Personal Information we process about you and to receive a copy of your Personal Information. You also have the right to request to correct incomplete, inaccurate or outdated Personal Information. To the extent required by applicable law, you may request us to provide your Personal Information to another company.", + "privacyPolicy.rights.data.objection": "Objection: You may object to (this means “ask us to stop“) any use of your Personal Information that is not (i) processed to comply with a legal obligation, (ii) necessary to do what is provided in a contract between Scratch and you, or (iii) if we have a compelling reason to do so (such as, to ensure safety and security in our online community). If you do object, we will work with you to find a reasonable solution.", + "privacyPolicy.rights.data.deletion": "Deletion: You may also request the deletion of your Personal Information, as permitted under applicable law. This applies, for instance, where your Personal Information is outdated or the processing is not necessary or is unlawful; where you withdraw your consent to our processing based on such consent; or where you have objected to our processing. In some situations, we may need to retain your Personal Information due to legal obligations or for litigation purposes.", + "privacyPolicy.rights.data.restriction": "Restriction of Processing: You may request that we restrict processing of your Personal Information while we are processing a request relating to (i) the accuracy of your Personal Information, (ii) the lawfulness of the processing of your Personal Information, or (iii) our legitimate interests to process this Personal Information. You may also request that we restrict processing of your Personal Information if you wish to use the Personal Information for litigation purposes.", + "privacyPolicy.rights.data.consent": "Withdrawal of Consent: If we rely on consent for the processing of your Personal Information, you have the right to withdraw it at any time and free of charge. When you do so, we will apply your preferences going forward and this will not affect the lawfulness of the processing before your consent withdrawal.", + "privacyPolicy.rights.data.exceptions": "However, there are exceptions and limitations to each of these rights. We may, for example, refuse to act on a request if the request is manifestly unfounded or excessive, or if the request is likely to adversely affect the rights and freedoms of others, prejudice the execution or enforcement of the law, interfere with pending or future litigation, or infringe applicable law. To submit a request to exercise your rights, please contact help@scratch.mit.edu for assistance. In addition to the above-mentioned rights, you also have the right to lodge a complaint with a competent supervisory authority including in your country of residence, place of work or where an incident took place subject to applicable law.", + "privacyPolicy.retentionTitle": "Data Retention", + "privacyPolicy.retentionBody": "We take measures to delete your Personal Information or keep it in a form that does not allow you to be identified when this Information is no longer necessary for the purposes for which we process it, unless we are required by law to keep this Personal Information for a longer period. When determining the retention period, we take into account various criteria, such as the type of services requested by or provided to you, the nature and length of our relationship with you, possible re-enrolment with our services, the impact on the services we provide to you if we delete some Personal Information from or about you, mandatory retention periods provided by law and the statute of limitations.", + "privacyPolicy.protectionTitle": "How Does Scratch Protect My Personal Information?", + "privacyPolicy.protectionBody": "Scratch has in place administrative, physical, and technical procedures that are intended to protect the Personal Information we collect on the Scratch Website against accidental or unlawful destruction, accidental loss, unauthorized alteration, unauthorized disclosure or access, misuse, and any other unlawful form of processing of the Personal Information. For example, we use SSL/TLS for all data transfers and strictly limit access to the Scratch servers and the data we store on them. However, as effective as these measures are, no security system is impenetrable. We cannot completely guarantee the security of our databases, nor can we guarantee that the Personal Information you supply will not be intercepted while being transmitted to us over the Internet.", + "privacyPolicy.transferTitle": "International Cross-Border Data Transfer", + "privacyPolicy.transferBody1": "We may transfer your Personal Information to countries other than the country where you are located, including to the U.S. (where Scratch servers are located) or any other country in which we or our service providers maintain facilities. If you are located in the European Economic Area, the United Kingdom or Switzerland, or other regions with laws governing data collection and use that may differ from U.S. law, please note that we may transfer your Personal Information to a country and jurisdiction that does not have the same data protection laws as your jurisdiction.", + "privacyPolicy.transferBody2": "We apply administrative, physical, and technical procedures to ensure the confidentiality and security of the Personal Information processed and transferred on our behalf. This includes procedures to ensure that your Personal Information is only processed for the purposes for which it has been collected. To obtain additional information on the transfers, please contact us using the contact information below.", + "privacyPolicy.helpTitle": "What Can I Do To Help Protect Privacy On The Scratch Website?", + "privacyPolicy.helpBody": "Please do not share personal contact information (such as your name, physical address, email address, or phone number) in projects, comments, profiles, studios, or forum posts. Please let us know if you see this kind of information by using the “Report” link which appears on the page. It is also important that you maintain the security and control of your account credentials, and not share your password with anyone.", + "privacyPolicy.changesTitle": "Notifications Of Changes To The Privacy Policy", + "privacyPolicy.changesBody": "We review our security measures and Privacy Policy on a periodic basis, and we may modify our policies as appropriate. If we make material changes to the Policy, we will notify you through the Site or by sending you an email or other communication. We encourage you to review our Privacy Policy on a regular basis. The “Last Updated” date at the top of this page indicates when this Privacy Policy was last revised. Your continued use of the Scratch Website following these changes means that you accept the revised Privacy Policy.", + "privacyPolicy.contactTitle": "Contact Us", + "privacyPolicy.contactBody": "The Scratch Foundation is the entity responsible for the processing of your Personal Information. If you have any questions about this Privacy Policy, or if you would like to exercise your rights to your Personal Information, you may contact us at help@scratch.mit.edu or via mail at:" } \ No newline at end of file diff --git a/src/views/privacypolicy/privacypolicy.jsx b/src/views/privacypolicy/privacypolicy.jsx index 279a38e4c..41c54dd07 100644 --- a/src/views/privacypolicy/privacypolicy.jsx +++ b/src/views/privacypolicy/privacypolicy.jsx @@ -180,187 +180,103 @@ const Privacypolicy = injectIntl(props => (

    -

    - - }} - /> -

    +

    +

    -

    Your Rights and Choices

    -

    +

    -
    Updating Your Information
    +
    - You can update your password, email address, and country - through the Account - Settings page. You can also reset your password - through the Account - Reset page. You cannot change your username, but you - can make a new account and manually copy your projects - to the new account. + {chunks}, + reset: chunks => {chunks}, + }} + />
    - If you want to delete your account, login to Scratch, - and then click your username in the top right-hand - corner. Select "Account Settings," then click - the "I want to delete my account" link at the - bottom of the page. Deleting your account hides all - information from public view, but does not remove all of - your information from our servers. If you want to have - all of your information removed from our servers, please - contact help@scratch.mit.edu for assistance. +
    -
    Marketing Communications
    +
    +
    +
    - If you decide at any time that you no longer wish to - receive marketing communications from us, please follow - the unsubscribe instructions provided in any of the - communications. You may also opt out from receiving - email from us by sending your request to us by email at - help@scratch.mit.edu. Please be aware that, even after - you opt out from receiving marketing communications from - us, you may continue to receive administrative messages - from us regarding the Site. -
    -
    Your Data Protection Rights (EEA)
    -
    - In certain jurisdictions, you have the right to request - access and receive information about the Personal - Information we maintain about you, to update and correct - inaccuracies in your Personal Information, to restrict - or object to the processing of your Personal - Information, to have the information blocked, - anonymized, or deleted, as appropriate, or to exercise - your right to data portability to easily transfer your - Personal Information to another company. Those rights - may be limited in some circumstances by local law - requirements. In addition to the above-mentioned rights, - you also have the right to lodge a complaint with a - competent supervisory authority subject to applicable - law. -
    -
    - Where required by law, we obtain your consent for the - processing of certain Personal Information collected by - cookies or similar technologies, or used to send you - direct marketing communications, or when we carry out - other processing activities for which consent may be - required. If we rely on consent for the processing of - your Personal Information, you have the right to - withdraw it at any time and free of charge. When you do - so, this will not affect the lawfulness of the - processing before your consent withdrawal. -
    -
    - To update your preferences, ask us to remove your - information from our mailing lists, or submit a request - to exercise your rights under applicable law, please - contact us as specified in the “How to Contact Us” - section below. +

    +
      +
    • + {chunks}}} + /> +
    • +
    • + {chunks}}} + /> +
    • +
    • + {chunks}}} + /> +
    • +
    • + {chunks}}} + /> +
    • +
    • + {chunks}}} + /> +
    • +
    +

    -

    Data Retention

    -

    - We take measures to delete your Personal Information or keep - it in a form that does not allow you to be identified when - this information is no longer necessary for the purposes for - which we process it, unless we are required by law to keep - this information for a longer period. When determining the - retention period, we take into account various criteria, - such as the type of services requested by or provided to - you, the nature and length of our relationship with you, - possible re-enrolment with our services, the impact on the - services we provide to you if we delete some information - from or about you, mandatory retention periods provided by - law and the statute of limitations. -

    +

    +

    -

    How does the Scratch Team protect my personal information?

    -

    - The Scratch Team has in place administrative, physical, and - technical procedures that are intended to protect the - information we collect on the Scratch website against - accidental or unlawful destruction, accidental loss, - unauthorized alteration, unauthorized disclosure or access, - misuse, and any other unlawful form of processing of the - Personal Information in our possession. For example, we - use SSL/TLS for all data transfer and strictly limit access - to the Scratch servers and the data we store on them. However, - as effective as these measures are, no security system is - impenetrable. We cannot completely guarantee the security of - our databases, nor can we guarantee that the information you - supply will not be intercepted while being transmitted to us - over the Internet. -

    -
    -
    - -

    Notifications of changes to the Privacy Policy

    -

    - We review our security measures and Privacy Policy on a - periodic basis, and we may modify our policies as - appropriate. If we make material changes, we will notify you - through the Site or by sending you an email or other - communication. We encourage you to review our Privacy Policy - on a regular basis. The “Last Updated” date at the top of - this page indicates when this Privacy Policy was last - revised. Your continued use of the Site following these - changes means that you accept the revised Privacy Policy. -

    +

    +

    -

    International Cross-Border Data Transfer

    -

    - Scratch is based in the United States. Personal Information - that we collect may be transferred to, and stored at, any of - our affiliates, partners, or service providers which may be - inside or outside the European Economic Area, including the - United States. By submitting your personal data, you agree - to such transfers. -

    +

    +

    +

    -

    What can I do to help protect privacy on Scratch?

    -

    - Please do not share personal contact information (such as - your name, physical address, email address, or phone number) - in projects, comments, profiles, studios, or forum posts. - Please let us know if you see this kind of information by - using the “Report” link which appears on the page. It is - also important that you maintain the security and control - of your account credentials, and not share your password - with anyone. -

    +

    +

    +
    +
    + +

    +

    -

    Contact Us

    -

    - The Code-to-Learn Foundation d/b/a The Scratch Foundation is - the entity responsible for the processing of your Personal - Information. If you have any questions about this Privacy - Policy, or if you would like to exercise your rights to your - Personal Information, you may contact us at - help@scratch.mit.edu or via mail at: -

    +

    +

    Scratch Foundation
    ATTN: Privacy Policy
    - 7315 Wisconsin Ave.
    - 4th Floor West
    - Bethesda, MD 20814 + 201 South Street
    + Unit 102
    + Boston, MA 02111

    @@ -374,9 +290,9 @@ const Privacypolicy = injectIntl(props => (
  • -
  • +
  • From 682dd7e894dcefc532d4c9b83acb2ce9b51db480 Mon Sep 17 00:00:00 2001 From: cori hudson Date: Tue, 4 Apr 2023 17:02:43 -0400 Subject: [PATCH 07/32] feat(cookie policy): add non-table cookies page strings --- src/views/cookies/l10n.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/views/cookies/l10n.json diff --git a/src/views/cookies/l10n.json b/src/views/cookies/l10n.json new file mode 100644 index 000000000..5313b80ef --- /dev/null +++ b/src/views/cookies/l10n.json @@ -0,0 +1,16 @@ +{ + "cookies.title": "Cookie Policy", + "cookies.intro1": "This Cookie Policy (the “Cookie Policy”) is provided by Scratch Foundation (“Scratch”, “we” or “us”). It supplements the information and disclosures included in our Privacy Policy, and explains how Scratch uses Cookies on its website scratch.mit.edu (the “Scratch Website”) to its visitors (“you”, “user”). For the purpose of this Cookie Policy, “Personal Information” means any information relating to an identified or identifiable individual.", + "cookies.intro2": "When you use the Scratch Website, we use cookies, beacons, invisible tags, unique IDs and similar technologies (collectively “Cookies”) to automatically record certain Personal Information from your browser or device.", + "cookies.types.title": "What types of Cookies are used on the Scratch Website?", + "cookies.types.essentialTitle": "Essential Cookies", + "cookies.types.essentialIntro": "These are Cookies that are necessary to make the Scratch Website available to the user or ensure security. We use this Personal Information, for example, to ensure that the Scratch Website functions properly, or to prevent fraud. We use the following essential Cookies:", + "cookies.types.functionalTitle": "Functional Cookies", + "cookies.types.functionalIntro": "We use these cookies to recognize the user when they return to the Scratch Website, and for beneficial, but non-essential functionality. For example, Cookies to remember users’ settings (e.g., retaining language settings) and content preferences when they return to the Scratch Website, or that allow videos to play. Disabling functional Cookies will typically result in limited functionality of the site and a less personalized experience, but the user will still be able to use the site as such. We use the following functional Cookies:", + "cookies.types.analyticsTitle": "Analytical or Performance Cookies", + "cookies.types.analyticsIntro": "We use Cookies to generally help us better understand how the Scratch Website is being used (e.g., determining which pages are popular based on how many users have visited certain pages). We also work with analytics providers, such as Google Analytics, which use Cookies to collect and analyze information about use of the Scratch Website and report on activities and trends. You can learn more about Google’s practices by going to https://www.google.com/policies/privacy/partners/ and opt out of them by downloading the Google Analytics opt-out browser add-on, available at https://tools.google.com/dlpage/gaoptout. We use the following analytical and performance Cookies:", + "cookies.manageTitle": "How can you manage Cookies?", + "cookies.manageBody": "If you do not want your Personal Information to be collected through the use of Cookies, most browsers allow you to manage your Cookie preferences. You can set your browser to automatically decline Cookies or to request you to accept or decline Cookies for each site. You can find more information about Cookies at http://www.allaboutcookies.org/manage-cookies/index.html.", + "cookies.contactTitle": "Contact Us", + "cookies.contactIntro": "If you have any questions about this Cookie Policy please contact us at privacy@scratch.mit.edu or via mail at:" +} \ No newline at end of file From d238aa8201cb703557dfb9b5424541ca35a9b9c8 Mon Sep 17 00:00:00 2001 From: cori hudson Date: Wed, 5 Apr 2023 15:25:16 -0400 Subject: [PATCH 08/32] feat: replace TED embed with image link removes sole advertising cookie present on site --- src/views/about/about.jsx | 13 ++++++------- static/images/about/ted-thumbnail.jpg | Bin 0 -> 24507 bytes 2 files changed, 6 insertions(+), 7 deletions(-) create mode 100644 static/images/about/ted-thumbnail.jpg diff --git a/src/views/about/about.jsx b/src/views/about/about.jsx index ac146acec..16c13dccd 100644 --- a/src/views/about/about.jsx +++ b/src/views/about/about.jsx @@ -56,13 +56,12 @@ const About = () => (
  • -