From 065a9b55b1a214258a2e8fdd7be278a99b44ef0b Mon Sep 17 00:00:00 2001 From: Sylvain Zimmer Date: Thu, 23 Jun 2022 10:45:03 +0200 Subject: [PATCH 01/42] Complete licensing info --- README.md | 2 +- packages/dictionaries/LICENSE.md | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e3a878de..c2caa1ac 100644 --- a/README.md +++ b/README.md @@ -99,4 +99,4 @@ To clean all packages and return to a fresh state run `yarn workspaces clean`. ## License -[Apache License, Version 2.0](https://choosealicense.com/licenses/apache-2.0/) +All code and dictionaries are published under [Apache License, Version 2.0](https://choosealicense.com/licenses/apache-2.0/), except for the French dictionary which is published under [Creative Commons BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/). diff --git a/packages/dictionaries/LICENSE.md b/packages/dictionaries/LICENSE.md index 387cac31..202a07b2 100644 --- a/packages/dictionaries/LICENSE.md +++ b/packages/dictionaries/LICENSE.md @@ -1,10 +1,12 @@ -Source code is released under [Apache-2.0](/LICENSE) LICENSE +Source code is released under the [Apache-2.0](/LICENSE) license. French dictionary files: - [fr.json](./src/fr/fr.json) - [lexique-infra.brut](./scripts/data/lexique-infra.brut) -are released under [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/) LICENSE +are released under the [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/) license. -See [LICENSES.md](./scripts/data/LICENSES.md) for more details +Other dictionaries are released under the [Apache-2.0](/LICENSE) license. + +See [LICENSES.md](./scripts/data/LICENSES.md) for more details. From 4f61b00297509654fe6867c4cf6e5ff1233eddcc Mon Sep 17 00:00:00 2001 From: Elias Boukamza Date: Tue, 14 Jun 2022 10:25:49 +0200 Subject: [PATCH 02/42] feat(chrome-extension): first run experience --- apps/chrome-extension/src/i18n/en.json | 3 +- apps/chrome-extension/src/i18n/fr.json | 3 +- apps/chrome-extension/src/views/MainMenu.vue | 32 +++++++++++++++----- 3 files changed, 28 insertions(+), 10 deletions(-) diff --git a/apps/chrome-extension/src/i18n/en.json b/apps/chrome-extension/src/i18n/en.json index d0a9d9ee..6850126c 100644 --- a/apps/chrome-extension/src/i18n/en.json +++ b/apps/chrome-extension/src/i18n/en.json @@ -13,7 +13,8 @@ "I_HAVE_PROFILE_CODE": "I have profile code", "MENU_LANGUAGE": "Menu language:", "CONTACT_US": "Contact us!", - "TELL_US_ABOUT_YOU": "Tell us about you" + "TELL_US_ABOUT_YOU": "Tell us about you", + "FIRST_RUN": "To get started please select one of the two options below:" }, "QUICK_ACTIVATE": { "QUICK_ACTIVATE": "Quick activate", diff --git a/apps/chrome-extension/src/i18n/fr.json b/apps/chrome-extension/src/i18n/fr.json index 49cb567a..ce911482 100644 --- a/apps/chrome-extension/src/i18n/fr.json +++ b/apps/chrome-extension/src/i18n/fr.json @@ -13,7 +13,8 @@ "I_HAVE_PROFILE_CODE": "J'ai un code de profil", "MENU_LANGUAGE": "Langue du menu :", "CONTACT_US": "Contactez-nous !", - "TELL_US_ABOUT_YOU": "Dites nous en plus sur vous" + "TELL_US_ABOUT_YOU": "Dites nous en plus sur vous", + "FIRST_RUN": "Pour configurer votre profil, veuillez choisir une des options suivantes :" }, "QUICK_ACTIVATE": { "QUICK_ACTIVATE": "Activation rapide", diff --git a/apps/chrome-extension/src/views/MainMenu.vue b/apps/chrome-extension/src/views/MainMenu.vue index f1d92636..5994ee45 100644 --- a/apps/chrome-extension/src/views/MainMenu.vue +++ b/apps/chrome-extension/src/views/MainMenu.vue @@ -1,9 +1,14 @@