diff --git a/frontend/src/lib/i18n/locales/en.json b/frontend/src/lib/i18n/locales/en.json index 1325951..11af652 100644 --- a/frontend/src/lib/i18n/locales/en.json +++ b/frontend/src/lib/i18n/locales/en.json @@ -43,7 +43,9 @@ "download_quizzes_content": "Quizzes can be downloaded as one file and imported at any time. This also lets you move your quizzes to other ClassQuiz instances.", "community_driven": "Community-driven", "community_driven_content": "ClassQuiz depends on its community for funding, testing ideas, feature requests, translations and more! You can also be a part of the ClassQuiz-community!", - "how_does_classquiz_work": "How does ClassQuiz even work?" + "how_does_classquiz_work": "How does ClassQuiz even work?", + "no_player_limit": "No player limit", + "no_player_limit_content": "ClassQuiz doesn't have an artificial player limit. In theory, 1000+ players could play the same quiz, but it's tested with up to 300 players per quiz." }, "overview_page": { "created_at": "Created at", diff --git a/frontend/src/routes/+page.svelte b/frontend/src/routes/+page.svelte index b1aed2d..4aee525 100644 --- a/frontend/src/routes/+page.svelte +++ b/frontend/src/routes/+page.svelte @@ -78,6 +78,10 @@ SPDX-License-Identifier: MPL-2.0 downloadable < /li>;*/ const classquiz_reasons = [ + { + headline: $t('index_page.no_player_limit'), + content: $t('index_page.no_player_limit_content'), + }, { headline: $t('index_page.no_tracking'), content: $t('index_page.no_tracking_content')