Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 16 additions & 11 deletions locales/en-US.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,20 @@ landing:
teams: The Team
about: About
homePage:
catchPhrase: Collaborate to learn in a new way...
catchPhrase: >-
Collaborate to learn in a new and original way.
Share your knowledge with collaborative flashcards!
about:
title: Designed for students by students.
text: >-
StudyStorm application allows users to create collections of review cards and share them.
The creator of a classroom can share his collections to everyone or make the classroom private,
by inviting only the users he/she wants to join the classroom.
The organization of the collections is similar to a folder system.
This allows cards to be grouped by topic, chapter, course unit, etc.
The StudyStorm application allows users to create collections of flashcards and share them with other users of the platform.


Want to contribute to the common knowledge? Create a classroom!

The creator of a classroom can share his collections with everyone or make the classroom private and use an invite-only system. Organize your classroom in a way similar to a folder system to group cards by topic, chapter, course unit, etc...


The community can rate the content they liked or not.
The collections with the most positive votes will be displayed on the homepage.
Since the cards are made by people, it is possible that there are errors in the answer of a card, or that there is a more relevant answer.
Expand All @@ -28,19 +33,19 @@ landing:
title: Features
cards:
title: Cards
description: Review cards are a simple and effective way to learn and test knowledge on a subject.
description: Flashcards are a simple and effective way to learn and test knowledge on a subject. Create your cards and you can start a series of reviews. On the train, on your way to school, wherever you are, just launch the application and learn.
classroom:
title: Classroom
description: Set up a way to create and share card collections according to your preferences.
description: Set up a way to create and share card collections according to your preferences. With a public classroom, anyone can learn with your cards. With a private classroom, limit the visibility of your cards and invite only the users you want.
community:
title: Community
description: Organize, create and share content with your colleagues and friends.
description: Organize, create and share content with your colleagues and friends. Contribute to the quality of the questions and report errors in the cards.
rating:
title: Ratings
description: Rate the quality of a card collection. A collection with positive votes will be promoted to the list of best cards.
description: Vote on the quality of a card collection. A collection with positive votes will be promoted to the list of best cards. Discover new topics through research or suggestions of the most popular decks.
team:
title: Who are we?
text: We are a team of five students in software engineering from the HEIG-VD.
text: We are a team of five students in software engineering from the HEIG-VD, Switzerland. During the summer of 2022, we had to realize a group project over a period of 3 weeks, which results in a web application. This is when the idea of StudyStorm application came to our minds.
members:
bijelic_alen: Giga Chad
crausaz_nicolas: Mega Chad
Expand Down
20 changes: 10 additions & 10 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,23 +44,23 @@ const teamMembers = [

const features = [
{
title: t("landing.homePage.features.cards.title"),
description: t("landing.homePage.features.cards.description"),
title: "landing.homePage.features.cards.title",
description: "landing.homePage.features.cards.description",
image: "/icons/cards.svg",
},
{
title: t("landing.homePage.features.classroom.title"),
description: t("landing.homePage.features.classroom.description"),
title: "landing.homePage.features.classroom.title",
description: "landing.homePage.features.classroom.description",
image: "/icons/classroom.svg",
},
{
title: t("landing.homePage.features.community.title"),
description: t("landing.homePage.features.community.description"),
title: "landing.homePage.features.community.title",
description: "landing.homePage.features.community.description",
image: "/icons/community.svg",
},
{
title: t("landing.homePage.features.rating.title"),
description: t("landing.homePage.features.rating.description"),
title: "landing.homePage.features.rating.title",
description: "landing.homePage.features.rating.description",
image: "/icons/like.svg",
},
];
Expand Down Expand Up @@ -139,10 +139,10 @@ definePageMeta({
/>

<h3 class="mb-2 text-xl font-bold text-storm-dark">
{{ feature.title }}
{{ $t(feature.title) }}
</h3>
<p class="text-justify text-gray-500">
{{ feature.description }}
{{ $t(feature.description) }}
</p>
</div>
</div>
Expand Down