From c2e763809d0c288a4c43c42da175ea7d0ad45ede Mon Sep 17 00:00:00 2001 From: rfohlin Date: Fri, 14 Jan 2022 18:19:46 +0100 Subject: [PATCH 1/5] Added basic central alignment of images inside InteractiveBook --- .../H5P.InteractiveBook-1.3/icon.svg | 66 +++ .../H5P.InteractiveBook-1.3/language/.en.json | 201 ++++++++ .../H5P.InteractiveBook-1.3/language/af.json | 201 ++++++++ .../H5P.InteractiveBook-1.3/language/ar.json | 201 ++++++++ .../H5P.InteractiveBook-1.3/language/bg.json | 201 ++++++++ .../H5P.InteractiveBook-1.3/language/ca.json | 201 ++++++++ .../H5P.InteractiveBook-1.3/language/cs.json | 201 ++++++++ .../H5P.InteractiveBook-1.3/language/de.json | 201 ++++++++ .../H5P.InteractiveBook-1.3/language/el.json | 201 ++++++++ .../language/es-mx.json | 201 ++++++++ .../H5P.InteractiveBook-1.3/language/es.json | 201 ++++++++ .../H5P.InteractiveBook-1.3/language/et.json | 201 ++++++++ .../H5P.InteractiveBook-1.3/language/eu.json | 201 ++++++++ .../H5P.InteractiveBook-1.3/language/fa.json | 201 ++++++++ .../H5P.InteractiveBook-1.3/language/fi.json | 201 ++++++++ .../H5P.InteractiveBook-1.3/language/fr.json | 201 ++++++++ .../H5P.InteractiveBook-1.3/language/gl.json | 201 ++++++++ .../H5P.InteractiveBook-1.3/language/it.json | 201 ++++++++ .../H5P.InteractiveBook-1.3/language/km.json | 201 ++++++++ .../H5P.InteractiveBook-1.3/language/ko.json | 201 ++++++++ .../H5P.InteractiveBook-1.3/language/nb.json | 201 ++++++++ .../H5P.InteractiveBook-1.3/language/nl.json | 201 ++++++++ .../H5P.InteractiveBook-1.3/language/nn.json | 201 ++++++++ .../language/pt-br.json | 201 ++++++++ .../H5P.InteractiveBook-1.3/language/ru.json | 201 ++++++++ .../H5P.InteractiveBook-1.3/language/sl.json | 201 ++++++++ .../H5P.InteractiveBook-1.3/language/sma.json | 201 ++++++++ .../H5P.InteractiveBook-1.3/language/sme.json | 201 ++++++++ .../H5P.InteractiveBook-1.3/language/smj.json | 201 ++++++++ .../H5P.InteractiveBook-1.3/language/sv.json | 201 ++++++++ .../H5P.InteractiveBook-1.3/language/tr.json | 201 ++++++++ .../H5P.InteractiveBook-1.3/library.json | 54 +++ .../H5P.InteractiveBook-1.3/semantics.json | 433 ++++++++++++++++++ H5P.InteractiveBook/build.sh | 1 + H5P.InteractiveBook/h5p.json | 1 + library.json | 7 +- semantics.json | 8 + src/styles/_pagecontent.scss | 13 + 38 files changed, 6612 insertions(+), 1 deletion(-) create mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/icon.svg create mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/.en.json create mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/af.json create mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/ar.json create mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/bg.json create mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/ca.json create mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/cs.json create mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/de.json create mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/el.json create mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/es-mx.json create mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/es.json create mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/et.json create mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/eu.json create mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/fa.json create mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/fi.json create mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/fr.json create mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/gl.json create mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/it.json create mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/km.json create mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/ko.json create mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/nb.json create mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/nl.json create mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/nn.json create mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/pt-br.json create mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/ru.json create mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/sl.json create mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/sma.json create mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/sme.json create mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/smj.json create mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/sv.json create mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/tr.json create mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/library.json create mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/semantics.json create mode 100644 H5P.InteractiveBook/build.sh create mode 100644 H5P.InteractiveBook/h5p.json diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/icon.svg b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/icon.svg new file mode 100644 index 0000000..2b5f441 --- /dev/null +++ b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/icon.svg @@ -0,0 +1,66 @@ + + + + +Interactive Book + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/.en.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/.en.json new file mode 100644 index 0000000..fc2c8d3 --- /dev/null +++ b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/.en.json @@ -0,0 +1,201 @@ +{ + "semantics": [ + { + "label": "Enable book cover", + "description": "A cover that shows info regarding the book before access" + }, + { + "label": "Cover Page", + "fields": [ + { + "label": "Cover description", + "description": "This text will be the description of your book." + }, + { + "label": "Cover image", + "description": "An optional background image for the introduction." + }, + { + "label": "Cover image alternative text", + "description": "An alternative text for the cover image" + } + ] + }, + { + "label": "Pages", + "entity": "Page", + "widgets": [ + { + "label": "Default" + } + ], + "field": { + "label": "Item", + "fields": [ + { + "label": "Page" + } + ] + } + }, + { + "label": "Behavioural settings", + "fields": [ + { + "label": "Display table of contents as default", + "description": "When enabled the table of contents is showed when opening the book" + }, + { + "label": "Display Progress Indicators", + "description": "When enabled there will be indicators per page showing the user if he is done with the page or not." + }, + { + "label": "Enable automatic progress", + "description": "If enabled a page without tasks is considered done when viewed. A page with tasks when all tasks are done. If disabled there will be a button at the bottom of every page for the user to click when done with the page." + }, + { + "label": "Display summary", + "description": "When enabled the user can see a summary and submit the progress/answers" + } + ] + }, + { + "label": "Translation for \"Read\"", + "default": "Read" + }, + { + "label": "Translation for \"Display 'Table of contents'\"", + "default": "Display 'Table of contents'" + }, + { + "label": "Translation for \"Hide 'Table of contents'\"", + "default": "Hide 'Table of contents'" + }, + { + "label": "Translation for \"Next page\"", + "default": "Next page" + }, + { + "label": "Translation for \"Previous page\"", + "default": "Previous page" + }, + { + "label": "Translation for \"Page completed!\"", + "default": "Page completed!" + }, + { + "label": "Translation for \"@pages of @total completed\" (@pages and @total will be replaced by actual values)", + "default": "@pages of @total completed" + }, + { + "label": "Translation for \"Incomplete page\"", + "default": "Incomplete page" + }, + { + "label": "Translation for \"Navigate to the top\"", + "default": "Navigate to the top" + }, + { + "label": "Translation for \"I have finished this page\"", + "default": "I have finished this page" + }, + { + "label": "Fullscreen button label", + "default": "Fullscreen" + }, + { + "label": "Exit fullscreen button label", + "default": "Exit fullscreen" + }, + { + "label": "Page progress in book", + "description": "\"@count\" will be replaced by page count, and \"@total\" with the total number of pages", + "default": "@count of @total pages" + }, + { + "label": "Interaction progress", + "description": "\"@count\" will be replaced by interaction count, and \"@total\" with the total number of interactions", + "default": "@count of @total interactions" + }, + { + "label": "Translation for \"Submit report\"", + "default": "Submit Report" + }, + { + "label": "Label for \"restart\" button", + "default": "Restart" + }, + { + "label": "Summary header", + "default": "Summary" + }, + { + "label": "Translation for \"All interactions\"", + "default": "All interactions" + }, + { + "label": "Translation for \"Unanswered interactions\"", + "default": "Unanswered interactions" + }, + { + "label": "Score", + "description": "\"@score\" will be replaced with current score, and \"@maxscore\" will be replaced with max achievable score", + "default": "@score / @maxscore" + }, + { + "label": "Per page interactions completion", + "description": "\"@left\" will be replaced with remaining interactions, and \"@max\" will be replaced with total number of interactions on the page", + "default": "@left of @max interactions completed" + }, + { + "label": "Translation for \"No interactions\"", + "default": "No interactions" + }, + { + "label": "Translation for \"Score\"", + "default": "Score" + }, + { + "label": "Label for \"Summary & submit\" button", + "default": "Summary & submit" + }, + { + "label": "Translation for \"You have not interacted with any pages.\"", + "default": "You have not interacted with any pages." + }, + { + "label": "Translation for \"You have to interact with at least one page before you can see the summary.\"", + "default": "You have to interact with at least one page before you can see the summary." + }, + { + "label": "Translation for \"Your answers are submitted for review!\"", + "default": "Your answers are submitted for review!" + }, + { + "label": "Summary progress label", + "default": "Book progress" + }, + { + "label": "Interactions progress label", + "default": "Interactions progress" + }, + { + "label": "Total score label", + "default": "Total score" + }, + { + "label": "Accessibility texts", + "fields": [ + { + "label": "Page progress textual alternative", + "description": "An alternative text for the visual page progress. @page and @total variables available.", + "default": "Page @page of @total." + }, + { + "label": "Label for expanding/collapsing navigation menu", + "default": "Toggle navigation menu" + } + ] + } + ] +} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/af.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/af.json new file mode 100644 index 0000000..61f44c7 --- /dev/null +++ b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/af.json @@ -0,0 +1,201 @@ +{ + "semantics": [ + { + "label": "Aktiveer boek voorblad", + "description": "'n Voorblad wys informasie oor die boek voor toegang verkry word" + }, + { + "label": "Voorblad", + "fields": [ + { + "label": "Voorblad beskrywing", + "description": "Hierdie teks sal die beskrywing van jou boek wees." + }, + { + "label": "Voorblad prent", + "description": "'n Vrywillige agtergrondprent vir die inleiding." + }, + { + "label": "Voorbladprent alternatiewe teks", + "description": "'n Alternatiewe teks vir die voorbladprent" + } + ] + }, + { + "label": "Bladsye", + "entity": "Bladsy", + "widgets": [ + { + "label": "Verstek" + } + ], + "field": { + "label": "Item", + "fields": [ + { + "label": "Bladsy" + } + ] + } + }, + { + "label": "Gedragsinstellings", + "fields": [ + { + "label": "Vertoon inhoudsopgawe as verstek", + "description": "Indien geaktiveer word die inhoudsopgawe vertoon wanneer die boek oopgemaak word" + }, + { + "label": "Vertoon vordering aanwysers", + "description": "Indien geaktiveer sal daar bladsyaanwysers vertoon word wat stel of die gebruiker klaar met die bladsy is of nie." + }, + { + "label": "Aktiveer outomatiese vordering", + "description": "Indien geaktiveer, word 'n bladsy sonder take as afgehandel beskou. 'n Bladsy met take wanneer alle take gedoen is. Indien gedeaktiveer, sal daar onderaan elke bladsy 'n knoppie wees waarop die gebruiker kan klik as hy klaar is met die bladsy." + }, + { + "label": "Vertoon opsomming", + "description": "Indien dit geaktiveer is, kan die gebruiker 'n opsomming sien en die vordering/antwoorde indien" + } + ] + }, + { + "label": "Vertaling vir \"Lees\"", + "default": "Lees" + }, + { + "label": "Vertaling vir \"Vertoon 'Inhoudsopgawe'\"", + "default": "Vertoon 'Inhoudsopgawe'" + }, + { + "label": "Vertaling vir \"Versteek 'Inhoudsopgawe'\"", + "default": "Versteek 'Inhoudsopgawe'" + }, + { + "label": "Vertaling vir \"Volgende bladsy\"", + "default": "Volgende bladsy" + }, + { + "label": "Vertaling vir \"Vorige bladsy\"", + "default": "Vorige bladsy" + }, + { + "label": "Vertaling vir \"Bladsy voltooi!\"", + "default": "Bladsy voltooi!" + }, + { + "label": "Vertaling vir \"@pages van @total voltooi\" (@pages en @total sal vervang word met werklike waardes)", + "default": "@pages van @total voltooi" + }, + { + "label": "Vertaling vir \"Onvoltooide bladsy\"", + "default": "Onvoltooide bladsy" + }, + { + "label": "Vertaling vir \"Navigeer na bo\"", + "default": "Navigeer na bo" + }, + { + "label": "Vertaling vir \"Ek het die bladsy voltooi\"", + "default": "Ek het die bladsy voltooi" + }, + { + "label": "Volskerm knoppie etiket", + "default": "Volskerm" + }, + { + "label": "Verlaat volskerm knoppie etiket", + "default": "Verlaat volskerm" + }, + { + "label": "Bladsy vordering in boek", + "description": "\"@count\" sal vervang word deur bladsynommer, en \"@total\" met die totale aantal bladsye", + "default": "@count van @total bladsye" + }, + { + "label": "Interaksie vordering", + "description": "\"@count\" sal vervang word deur interaksienommer, en \"@total\" met die totale aantal interaksies", + "default": "@count van @total interaksies" + }, + { + "label": "Vertaling vir \"Dien rapport in\"", + "default": "Dien rapport in" + }, + { + "label": "Etiket vir \"herbegin\" knoppie", + "default": "Herbegin" + }, + { + "label": "Opsomming opskrif", + "default": "Opsomming" + }, + { + "label": "Vertaling vir \"Alle interaksies\"", + "default": "Alle interaksies" + }, + { + "label": "Vertaling vir \"Onbeantwoorde interaksies\"", + "default": "Onbeantwoorde interaksies" + }, + { + "label": "Telling", + "description": "\"@score\" sal vervang word met huidige telling, en \"@maxscore\"sal vervang word met maksimum behaalbare telling", + "default": "@score / @maxscore" + }, + { + "label": "Per bladsy interaksies voltooiing", + "description": "\"@left\"sal vervang word met oorblywende interaksies, en \"@max\" sal vervang word met totale aantal interaksies op die bladsy", + "default": "@left van @max interaksies voltooi" + }, + { + "label": "Vertaling vir \"Geen interaksies\"", + "default": "Geen interaksies" + }, + { + "label": "Vertaling vir \"Telling\"", + "default": "Telling" + }, + { + "label": "Etiket vir \"Opsom & indien\" knoppie", + "default": "Opsom & indien" + }, + { + "label": "Vertaling vir \"Jy het nog nie interaksies gehad met enige bladsye nie.\"", + "default": "Jy het nog nie interaksies gehad met enige bladsye nie." + }, + { + "label": "Vertaling vir \"Jy moet 'n interaksie hê met ten minste een bladsy voordat jy die opsomming kan sien.\"", + "default": "Jy moet 'n interaksie hê met ten minste een bladsy voordat jy die opsomming kan sien." + }, + { + "label": "Vertaling vir \"Jou antwoorde is ingedien vir hersiening!\"", + "default": "Jou antwoorde is ingedien vir hersiening!" + }, + { + "label": "Opsomming vordering etiket", + "default": "Boek vordering" + }, + { + "label": "Interaksies vordering etiket", + "default": "Interaksies vordering" + }, + { + "label": "Totale telling etiket", + "default": "Totale telling" + }, + { + "label": "Toeganklikheid teks", + "fields": [ + { + "label": "Bladsyvordering teksalternatief", + "description": "'n Alternatiewe teks vir die visuele bladsyvordering. @page en @total veranderlikes beskikbaar.", + "default": "Bladsy @page van @total." + }, + { + "label": "Etiket vir uitbreiding/invou navigasie menu", + "default": "Skakel navigasie menu" + } + ] + } + ] +} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/ar.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/ar.json new file mode 100644 index 0000000..c62077f --- /dev/null +++ b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/ar.json @@ -0,0 +1,201 @@ +{ + "semantics": [ + { + "label": "تفعيل غلاف الكتاب", + "description": "غلاف يعرض المعلومات المتعلقة بالكتاب قبل الدخول" + }, + { + "label": "غلاف الصفحة", + "fields": [ + { + "label": "وصف الغلاف", + "description": "هذا النص سيكون وصف كتابك." + }, + { + "label": "صورة الغلاف", + "description": "صورة خلفية اختيارية للمقدمة." + }, + { + "label": "صورة الغلاف النص البديل", + "description": "نص بديل لصورة الغلاف" + } + ] + }, + { + "label": "الفصول", + "entity": "الفصل", + "widgets": [ + { + "label": "إفتراضي" + } + ], + "field": { + "label": "عنصر", + "fields": [ + { + "label": "فصل" + } + ] + } + }, + { + "label": "الإعدادات السلوكية", + "fields": [ + { + "label": "عرض جدول المحتويات كافتراضي", + "description": "عند التفعيل ، يتم عرض جدول المحتويات عند فتح الكتاب" + }, + { + "label": "عرض مؤشرات التقدم", + "description": "عند التمكين ، ستظهر مؤشرات في كل صفحة توضح ما إذا كان المستخدم قد انتهى من الصفحة أم لا." + }, + { + "label": "تمكين التقدم التلقائي", + "description": "في حالة التمكين ، يتم اعتبار الصفحة بدون مهام عند عرضها. صفحة بها مهام عند الانتهاء من جميع المهام. في حالة التعطيل ، سيكون هناك زر في أسفل كل صفحة لينقر عليها المستخدم عند الانتهاء من الصفحة." + }, + { + "label": "Display summary", + "description": "When enabled the user can see a summary and submit the progress/answers" + } + ] + }, + { + "label": "ترجمة تتعلق بـ \"القراءاة\"", + "default": "القراءاة" + }, + { + "label": "ترجمة تتعلق بـ \"عرض 'جدول المحتويات'\"", + "default": "عرض 'جدول المحتويات'" + }, + { + "label": "ترجمة تتعلق بـ \"إخفاء 'جدول المحتويات'\"", + "default": "إخفاء 'جدول المحتويات'" + }, + { + "label": "ترجمة تتعلق بـ \"الصفحة التالية\"", + "default": "الصفحة التالية" + }, + { + "label": "ترجمة تتعلق بـ \"الصفحة السابقة\"", + "default": "الصفحة السابقة" + }, + { + "label": "ترجمة تتعلق بـ \"الانتهاء من الفصل!\"", + "default": "الانتهاء من الفصل!" + }, + { + "label": "ترجمة تتعلق بـ \"@pages من @total منتهي\" (@pages و @total سيتم استبدال القيم الفعلية)", + "default": "@pages من @total منتهي" + }, + { + "label": "ترجمة تتعلق بـ \"فصل غير منتهي\"", + "default": "فصل غير منتهي" + }, + { + "label": "ترجمة تتعلق بـ \"الذهاب إلى الأعلى\"", + "default": "الذهاب إلى الأعلى" + }, + { + "label": "ترجمة تتعلق بـ \"أنهيت هذه الصفحة\"", + "default": "أنهيت هذه الصفحة" + }, + { + "label": "تسمية زر ملء الشاشة", + "default": "ملء الشاشة" + }, + { + "label": "تسميةالخروج من ملىء الشاشة", + "default": "الخروج من الشاشة الكاملة" + }, + { + "label": "Page progress in book", + "description": "\"@count\" will be replaced by page count, and \"@total\" with the total number of pages", + "default": "@count of @total pages" + }, + { + "label": "Interaction progress", + "description": "\"@count\" will be replaced by interaction count, and \"@total\" with the total number of interactions", + "default": "@count of @total interactions" + }, + { + "label": "Translation for \"Submit report\"", + "default": "Submit Report" + }, + { + "label": "Label for \"restart\" button", + "default": "Restart" + }, + { + "label": "Summary header", + "default": "Summary" + }, + { + "label": "Translation for \"All interactions\"", + "default": "All interactions" + }, + { + "label": "Translation for \"Unanswered interactions\"", + "default": "Unanswered interactions" + }, + { + "label": "Score", + "description": "\"@score\" will be replaced with current score, and \"@maxscore\" will be replaced with max achievable score", + "default": "@score / @maxscore" + }, + { + "label": "Per page interactions completion", + "description": "\"@left\" will be replaced with remaining interactions, and \"@max\" will be replaced with total number of interactions on the page", + "default": "@left of @max interactions completed" + }, + { + "label": "Translation for \"No interactions\"", + "default": "No interactions" + }, + { + "label": "Translation for \"Score\"", + "default": "Score" + }, + { + "label": "Label for \"Summary & submit\" button", + "default": "Summary & submit" + }, + { + "label": "Translation for \"You have not interacted with any pages.\"", + "default": "You have not interacted with any pages." + }, + { + "label": "Translation for \"You have to interact with at least one page before you can see the summary.\"", + "default": "You have to interact with at least one page before you can see the summary." + }, + { + "label": "Translation for \"Your answers are submitted for review!\"", + "default": "Your answers are submitted for review!" + }, + { + "label": "Summary progress label", + "default": "Book progress" + }, + { + "label": "Interactions progress label", + "default": "Interactions progress" + }, + { + "label": "Total score label", + "default": "Total score" + }, + { + "label": "إمكانية الوصول للنصوص", + "fields": [ + { + "label": "تقدم الصفحة النصية البديلة", + "description": "نص بديل للتقدم في الصفحة المرئية. @page و @total ومتغيرات المتاحة.", + "default": "صفحة @page من @total." + }, + { + "label": "وضع علامة لتوسيع / طي قائمة التنقل", + "default": "تبديل قائمة التنقل" + } + ] + } + ] +} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/bg.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/bg.json new file mode 100644 index 0000000..80c5f03 --- /dev/null +++ b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/bg.json @@ -0,0 +1,201 @@ +{ + "semantics": [ + { + "label": "Добавяне на корица на книгата", + "description": "Корица, която показва информация за книгата преди да бъде отворена" + }, + { + "label": "Корица", + "fields": [ + { + "label": "Описание на корицата", + "description": "Този текст ще бъде описанието на вашата книга." + }, + { + "label": "Изображение на корицата", + "description": "Незадължително изображение на корицата за увода." + }, + { + "label": "Алтернативен текст за изображението на корицата", + "description": "Алтернативен текст за изображението на корицата" + } + ] + }, + { + "label": "Раздели", + "entity": "Раздел", + "widgets": [ + { + "label": "По подразбиране" + } + ], + "field": { + "label": "Елемент", + "fields": [ + { + "label": "Раздел" + } + ] + } + }, + { + "label": "Настройки на поведение", + "fields": [ + { + "label": "Показване съдържанието по подразбиране ", + "description": "Когато е активирано, съдържанието се показва при отваряне на книгата" + }, + { + "label": "Показване на индикатори за напредъка", + "description": "Когато е активирана, ще има индикатори на страница, показващи на потребителя дали е прочел страницата или не." + }, + { + "label": "Активиране на автоматичния индикатор за напредък", + "description": "Ако е активирано, страница без задачи се счита за извършена, когато е видяна, а страница със задачи, когато всички задачи са изпълнени. Ако е деактивиран, в долната част на всяка страница ще има бутон, който потребителят да щракне, когато приключи със страницата." + }, + { + "label": "Display summary", + "description": "When enabled the user can see a summary and submit the progress/answers" + } + ] + }, + { + "label": "Превод за \"Чети\"", + "default": "Чети" + }, + { + "label": "Превод за \"Показване на 'Съдържание'\"", + "default": "Покзване на 'Съдържание'" + }, + { + "label": "Превод за \"Скриване на 'Съдържание'\"", + "default": "Скриване на 'Съдържание'" + }, + { + "label": "Превод за \"Следваща страница\"", + "default": "Следваща страница" + }, + { + "label": "Превод за \"Предишна страница\"", + "default": "Предишна страница" + }, + { + "label": "Превод за \"Разделът е завършен!\"", + "default": "Разделът е завършен!" + }, + { + "label": "Превод за \"@pages от @total страници са завършени\" (@pages и @total ще бъдат подменени с действителни стойности)", + "default": "@pages от @total страници са завършени" + }, + { + "label": "Превод за \"Непълен раздел\"", + "default": "Непълен раздел" + }, + { + "label": "Превод за \"Връщане в началото\"", + "default": "Връщане в началото" + }, + { + "label": "Превод за \"Завърших тази страница\"", + "default": "Завърших тази страница" + }, + { + "label": "Етикет на бутона На цял екран", + "default": "На цял екран" + }, + { + "label": "Етикет на бутона Изход от цял екран", + "default": "Изход от цял екран" + }, + { + "label": "Page progress in book", + "description": "\"@count\" will be replaced by page count, and \"@total\" with the total number of pages", + "default": "@count of @total pages" + }, + { + "label": "Interaction progress", + "description": "\"@count\" will be replaced by interaction count, and \"@total\" with the total number of interactions", + "default": "@count of @total interactions" + }, + { + "label": "Translation for \"Submit report\"", + "default": "Submit Report" + }, + { + "label": "Label for \"restart\" button", + "default": "Restart" + }, + { + "label": "Summary header", + "default": "Summary" + }, + { + "label": "Translation for \"All interactions\"", + "default": "All interactions" + }, + { + "label": "Translation for \"Unanswered interactions\"", + "default": "Unanswered interactions" + }, + { + "label": "Score", + "description": "\"@score\" will be replaced with current score, and \"@maxscore\" will be replaced with max achievable score", + "default": "@score / @maxscore" + }, + { + "label": "Per page interactions completion", + "description": "\"@left\" will be replaced with remaining interactions, and \"@max\" will be replaced with total number of interactions on the page", + "default": "@left of @max interactions completed" + }, + { + "label": "Translation for \"No interactions\"", + "default": "No interactions" + }, + { + "label": "Translation for \"Score\"", + "default": "Score" + }, + { + "label": "Label for \"Summary & submit\" button", + "default": "Summary & submit" + }, + { + "label": "Translation for \"You have not interacted with any pages.\"", + "default": "You have not interacted with any pages." + }, + { + "label": "Translation for \"You have to interact with at least one page before you can see the summary.\"", + "default": "You have to interact with at least one page before you can see the summary." + }, + { + "label": "Translation for \"Your answers are submitted for review!\"", + "default": "Your answers are submitted for review!" + }, + { + "label": "Summary progress label", + "default": "Book progress" + }, + { + "label": "Interactions progress label", + "default": "Interactions progress" + }, + { + "label": "Total score label", + "default": "Total score" + }, + { + "label": "Текстове за достъпност", + "fields": [ + { + "label": "Текстова алтернатива за напредък на страницата", + "description": "Алтернативен текст за визуалния напредък на страница. Достъпни са променливите @page и @total.", + "default": "Страница @page от @total." + }, + { + "label": "Етикет за разпъване/свиване на навигационното меню", + "default": "Превключване на менюто за навигация" + } + ] + } + ] +} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/ca.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/ca.json new file mode 100644 index 0000000..e4e99cf --- /dev/null +++ b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/ca.json @@ -0,0 +1,201 @@ +{ + "semantics": [ + { + "label": "Activa la portada del llibre", + "description": "Portada en què es mostra informació sobre el llibre abans d’accedir-hi" + }, + { + "label": "Portada", + "fields": [ + { + "label": "Descripció de la portada", + "description": "Aquest text serà la descripció del llibre." + }, + { + "label": "Imatge de portada", + "description": "Una imatge de fons opcional per a la introducció." + }, + { + "label": "Text alternatiu per a la imatge de portada", + "description": "Text alternatiu per a la imatge de portada" + } + ] + }, + { + "label": "Pàgines", + "entity": "Pàgina", + "widgets": [ + { + "label": "Opció predeterminada" + } + ], + "field": { + "label": "Element", + "fields": [ + { + "label": "Pàgina" + } + ] + } + }, + { + "label": "Opcions de comportament", + "fields": [ + { + "label": "Mostra la taula de continguts com a predeterminada", + "description": "Si aquesta opció està activada, l’índex es mostrarà en obrir el llibre" + }, + { + "label": "Mostra els indicadors de progrés", + "description": "Si aquesta opció està activada, hi haurà indicadors per pàgina que mostraran a l’usuari si ha acabat de llegir la pàgina o no." + }, + { + "label": "Activa el progrés automàtic", + "description": "Si està activat es considerarà que una pàgina sense tasques es realitza quan es visualitza. Una pàgina amb tasques, quan es fan totes les tasques. Si està desactivat hi haurà un botó a la part inferior de cada pàgina perquè l’usuari faci clic quan acabi amb la pàgina." + }, + { + "label": "Mostra el resum", + "description": "Si aquesta opció està activada, l’usuari podrà veure un resum i enviar el progrés i les respostes" + } + ] + }, + { + "label": "Traducció de «Llegeix»", + "default": "Lectura" + }, + { + "label": "Traducció per a «Mostra la taula de continguts»", + "default": "Mostra la ’Taula de continguts’" + }, + { + "label": "Traducció per a «Oculta la taula de continguts»", + "default": "Amaga la ’Taula de continguts’" + }, + { + "label": "Traducció de «Pàgina següent»", + "default": "Pàgina següent" + }, + { + "label": "Traducció de «Pàgina anterior»", + "default": "Pàgina anterior" + }, + { + "label": "Traducció de «Pàgina completada!»", + "default": "Pàgina completada!" + }, + { + "label": "Ha finalitzat la traducció de «@pages de @total pàgines» (@pages i @total se substituiran pels valors reals)", + "default": "@pages de @total completades" + }, + { + "label": "Traducció de «Pàgina incompleta»", + "default": "Pàgina incompleta" + }, + { + "label": "Traducció de \"Ves a la part superior\"", + "default": "Ves a la part superior" + }, + { + "label": "Traducció per a «He finalitzat aquesta pàgina»", + "default": "He acabat aquesta pàgina" + }, + { + "label": "Etiqueta del botó de pantalla completa", + "default": "Pantalla completa" + }, + { + "label": "Etiqueta del botó «Surt de la pantalla completa»", + "default": "Surt de la pantalla completa" + }, + { + "label": "Progrés de la pàgina al llibre", + "description": "«@count» serà substituït pel recompte de pàgines, i «@total» amb el nombre total de pàgines", + "default": "@count de @total pages" + }, + { + "label": "Progrés de la interacció", + "description": "«@count» serà substituït pel nombre d’interaccions, i «@total» amb el nombre total d’interaccions", + "default": "@count de @total interactions" + }, + { + "label": "Traducció per a «Tramet l’informe»", + "default": "Tramet l’informe" + }, + { + "label": "Etiqueta per al botó «Reinicia»", + "default": "Reinicia" + }, + { + "label": "Capçalera del resum", + "default": "Resum" + }, + { + "label": "Traducció de «Totes les interaccions»", + "default": "Totes les interaccions" + }, + { + "label": "Traducció d'«Interaccions sense respondre»", + "default": "Interaccions sense resposta" + }, + { + "label": "Puntuació", + "description": "«@score» se substituirà per la puntuació actual i «@maxscore», per la puntuació màxima que es pot assolir", + "default": "@score / @maxscore" + }, + { + "label": "Compleció d’interaccions per pàgina", + "description": "«@left» se substituirà per les interaccions restants i «@max», pel nombre total d’interaccions a la pàgina", + "default": "@left de @max interactions completed" + }, + { + "label": "Traducció de «No hi ha cap interacció»", + "default": "No hi ha cap interacció" + }, + { + "label": "Traducció de «Puntuació»", + "default": "Puntuació" + }, + { + "label": "Etiqueta per al botó «Resum i tramesa»", + "default": "Resum i tramesa" + }, + { + "label": "Traducció de «No heu interactuat amb cap pàgina»", + "default": "No heu interactuat amb cap pàgina." + }, + { + "label": "Traducció de «Cal que interaccioneu com a mínim amb una pàgina per poder veure el resum»", + "default": "Cal que interaccioneu com a mínim amb una pàgina per poder veure el resum." + }, + { + "label": "Traducció de «Les vostres respostes s'han tramès per a revisió»", + "default": "Les vostres respostes s’han tramès per a revisió!" + }, + { + "label": "Etiqueta de progrés del resum", + "default": "Progrés del llibre" + }, + { + "label": "Etiqueta de progrés de les interaccions", + "default": "Progrés de les interaccions" + }, + { + "label": "Etiqueta de puntuació total", + "default": "Puntuació total" + }, + { + "label": "Textos d’accessibilitat", + "fields": [ + { + "label": "Text alternatiu per al progrés de la pàgina", + "description": "Un text alternatiu per al progrés de la pàgina visual. Hi ha disponibles les variables @page i @total.", + "default": "Pàgina @page de @total." + }, + { + "label": "Etiqueta per ampliar el menú de navegació o reduir-lo", + "default": "Activa o desactiva el menú de navegació" + } + ] + } + ] +} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/cs.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/cs.json new file mode 100644 index 0000000..1622bcc --- /dev/null +++ b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/cs.json @@ -0,0 +1,201 @@ +{ + "semantics": [ + { + "label": "Povolit obálku knihy", + "description": "Obálka zobrazuje před přístupem informace týkající se knihy" + }, + { + "label": "Obálka", + "fields": [ + { + "label": "Popis obálky", + "description": "Tento text bude popisem vaší knihy." + }, + { + "label": "Obrázek obálky", + "description": "Volitelný obrázek na pozadí obálky." + }, + { + "label": "Alternativní text obrázku na obálce", + "description": "Alternativní text obrázku na obálce" + } + ] + }, + { + "label": "Stránky", + "entity": "Stránka", + "widgets": [ + { + "label": "Výchozí" + } + ], + "field": { + "label": "Položka", + "fields": [ + { + "label": "Stránka" + } + ] + } + }, + { + "label": "Nastavení chování", + "fields": [ + { + "label": "Zobrazit obsah jako výchozí", + "description": "Je-li povoleno, zobrazí se obsah při otevření knihy" + }, + { + "label": "Zobrazit indikátory průběhu", + "description": "Je-li tato možnost povolena, budou na stránce indikátory zobrazující uživatele, pokud je na stránce hotový nebo ne." + }, + { + "label": "Povolit automatický průběh", + "description": "Pokud je povoleno, stránka bez úkolů se při prohlížení považuje za hotovou. Stránka s úkoly, když jsou všechny úkoly hotové. Pokud je zakázáno, bude ve spodní části každé stránky tlačítko, na které uživatel po dokončení stránky klikne." + }, + { + "label": "Zobrazit souhrn", + "description": "Je-li tato možnost povolena, uživatel může zobrazit souhrn a odeslat postup / odpovědi" + } + ] + }, + { + "label": "Překlad pro \"Číst\"", + "default": "Číst" + }, + { + "label": "Překlad pro \"Zobrazit Obsah\"", + "default": "Zobrazit \"Obsah\"" + }, + { + "label": "Překlad pro \"Skrýt Obsah\"", + "default": "Skrýt \"Obsah\"" + }, + { + "label": "Překlad pro \"Další stránka\"", + "default": "Další stránka" + }, + { + "label": "Překlad pro \"Předchozí stránka\"", + "default": "Předchozí stránka" + }, + { + "label": "Překlad pro \"Stránka dokončena!\"", + "default": "Stránka dokončena!" + }, + { + "label": "Překlad pro \"@pages z @total dokončeno\" (@pages a @total budou nahrazeny skutečnými hodnotami)", + "default": "@pages z @total dokončeno" + }, + { + "label": "Překlad pror \"Nedokončená stránka\"", + "default": "Nedokončená stránka" + }, + { + "label": "TPřeklad pro \"Přejít nahoru\"", + "default": "Přejít nahoru" + }, + { + "label": "Překlad pro \"Tuto stránku jsem dokončil\"", + "default": "Tuto stránku jsem dokončil" + }, + { + "label": "Popisek tlačítka Celá obrazovka", + "default": "Celá obrazovka" + }, + { + "label": "Popisek tlačítka Ukončit režim celé obrazovky", + "default": "Ukončit režim celé obrazovky" + }, + { + "label": "Průběh stránek v knize", + "description": "\"@count\" bude nahrazen počtem stránek, a \"@total\" celkovým počtem stránek", + "default": "@count z @total stránek" + }, + { + "label": "Průběh interakce", + "description": "\"@count\" bude nahrazen počtem interakcí, a \"@total\" celkovým počtem interakcí", + "default": "@count z @total interakcí" + }, + { + "label": "Překlad pro \"Odeslat zprávu\"", + "default": "Odeslat zprávu" + }, + { + "label": "Štítek pro tlačítko \"Restart\"", + "default": "Restart" + }, + { + "label": "Hlavička souhrnu", + "default": "Souhrn" + }, + { + "label": "Překlad pro \"Všechny interakce\"", + "default": "Všechny interakce" + }, + { + "label": "Překlad pro \"Nezodpovězené interakce\"", + "default": "Nezodpovězené interakce" + }, + { + "label": "Skóre", + "description": "\"@score\" bude nahrazeno aktuálním skóre, a \"@maxscore\" bude nahrazeno maximálním dosažitelným skóre", + "default": "@score / @maxscore" + }, + { + "label": "Dokončených interakcí na stránce", + "description": "\"@left\"budou nahrazeny zbývajícími interakcemi, a \"@max\" bude nahrazen celkovým počtem interakcí na stránce", + "default": "@left z @max dokončených interakcí" + }, + { + "label": "Překlad pro \"Žádné interakce\"", + "default": "Žádné interakce" + }, + { + "label": "Překlad pro \"Skóre\"", + "default": "Skóre" + }, + { + "label": "Štítek pro tlačítko \"Shrnutí a odeslání\"", + "default": "Shrnutí a odeslání" + }, + { + "label": "Překlad pro \"Nekomunikovali jste s žádnými stránkami.\"", + "default": "Nekomunikovali jste s žádnými stránkami." + }, + { + "label": "Překlad pro \"Než uvidíte souhrn, musíte komunikovat s alespoň jednou stránkou.\"", + "default": "Než uvidíte souhrn, musíte komunikovat s alespoň jednou stránkou." + }, + { + "label": "Překlad pro \"Vaše odpovědi budou odeslány ke kontrole!\"", + "default": "Vaše odpovědi budou odeslány ke kontrole!" + }, + { + "label": "Popisek pro Průběh knihy", + "default": "Průběh knihy" + }, + { + "label": "Popisek pro Průběh interakcí", + "default": "Průběh interakcí" + }, + { + "label": "Popisek pro Celkové skóre", + "default": "Celkové skóre" + }, + { + "label": "Texty přístupnosti", + "fields": [ + { + "label": "Textová alternativa postupu stránky", + "description": "Alternativní text pro průběh vizuální stránky. Dostupné proměnné @page a @total.", + "default": "Stránka @page z @total." + }, + { + "label": "Popisek pro rozbalení/sbalení navigační nabídky", + "default": "Přepnutí navigační nabídky" + } + ] + } + ] +} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/de.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/de.json new file mode 100644 index 0000000..31aa0de --- /dev/null +++ b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/de.json @@ -0,0 +1,201 @@ +{ + "semantics": [ + { + "label": "Titelseite anzeigen", + "description": "Auf der Titelseite werden Informationen über das Buch angezeigt bevor es geöffnet wird" + }, + { + "label": "Titelseite", + "fields": [ + { + "label": "Untertitel", + "description": "Dieser Text wird in kleinerer Schrift unter dem eigentlichen Titel angezeigt." + }, + { + "label": "Titelbild", + "description": "Dieses Bild wird auf der Titelseite angezeigt (optional)." + }, + { + "label": "Alternativtext des Titelbildes", + "description": "Dieser Text wird von Vorlesewerkzeugen verwendet (Barrierefreiheit)" + } + ] + }, + { + "label": "Seiten", + "entity": "Seite", + "widgets": [ + { + "label": "Voreinstellung" + } + ], + "field": { + "label": "Eintrag", + "fields": [ + { + "label": "Seite" + } + ] + } + }, + { + "label": "Verhaltenseinstellungen", + "fields": [ + { + "label": "Standardmäßig Inhaltsverzeichnis anzeigen", + "description": "Wenn gewählt, wird das Inhaltsverzeichnis beim Öffnen des Buchs angezeigt." + }, + { + "label": "Fortschrittsanzeige anzeigen", + "description": "Wenn gewählt, wird bei jedem Kapitel angezeigt, ob die Lernenden es abgeschlossen haben." + }, + { + "label": "Fortschritt automatisch erfassen", + "description": "Wenn gewählt, werden Kapitel ohne Aufgaben als abgeschlossen markiert, sobald sie angezeigt wurden. Kapitel mit interaktiven Aufgaben gelten als abgeschlossen, wenn alle Aufgaben gelöst wurden. Wenn abgewählt, wird am Ende eines Kapitels ein Button angezeigt, den die Lernenden anklicken müssen, wenn sie das Kapitel abgeschlossen haben." + }, + { + "label": "Zusammenfassung anzeigen", + "description": "Wenn gewählt, können die Nutzenden eine Zusammenfassung sehen und ihren Fortschritt/ihre Antworten einsenden." + } + ] + }, + { + "label": "Beschriftung für \"Öffnen\"", + "default": "Öffnen" + }, + { + "label": "Beschriftung für \"Inhaltsverzeichnis anzeigen\"", + "default": "Inhaltsverzeichnis anzeigen" + }, + { + "label": "Beschriftung für \"Inhaltsverzeichnis ausblenden\"", + "default": "Inhaltsverzeichnis ausblenden" + }, + { + "label": "Beschriftung für \"Nächste Seite\"", + "default": "Nächste Seite" + }, + { + "label": "Beschriftung für \"Vorherige Seite\"", + "default": "Vorherige Seite" + }, + { + "label": "Beschriftung für \"Seite abgeschlossen!\"", + "default": "Seite abgeschlossen!" + }, + { + "label": "Beschriftung für \"@page von @total Seiten abgeschlossen\" (@pages und @total sind Platzhalter und werden von den echten Werten ersetzt)", + "default": "@pages von @total Seiten abgeschlossen" + }, + { + "label": "Beschriftung für \"Unvollständige Seite\"", + "default": "Unvollständige Seite" + }, + { + "label": "Beschriftung für \"Nach oben springen\"", + "default": "Nach oben springen" + }, + { + "label": "Beschriftung für \"Ich habe diese Seite abgeschlossen\"", + "default": "Ich habe diese Seite abgeschlossen" + }, + { + "label": "Beschriftung des Vollbild-Buttons", + "default": "Vollbild" + }, + { + "label": "Beschriftung des \"Vollbild beenden\"-Buttons", + "default": "Vollbild beenden" + }, + { + "label": "Seitenfortschritt", + "description": "\"@count\" ist ein Platzhalter und wird durch die Seitenzahl ersetzt, und \"@total\" wird durch die Gesamtseitenzahl ersetzt", + "default": "@count von @total Seiten" + }, + { + "label": "Interaktionsfortschritt", + "description": "\"@count\" ist ein Platzhalter und wird durch Zahl der Interaktionen ersetzt, und \"@total\" wird durch die Gesamtzahl der Interaktionen ersetzt", + "default": "@count von @total Interaktionen" + }, + { + "label": "Übersetzung für \"Report absenden\"", + "default": "Report absenden" + }, + { + "label": "Beschriftung für den \"Neustart\"-Button", + "default": "Neustart" + }, + { + "label": "Titel für die Zusammenfassung", + "default": "Zusammenfassung" + }, + { + "label": "Übersetzung für \"Alle Interaktionen\"", + "default": "Alle Interaktionen" + }, + { + "label": "Übersetzung für \"Unbeantwortete Interaktionen\"", + "default": "Unbeantwortete Interaktionen" + }, + { + "label": "Punkte", + "description": "\"@score\" ist ein Platzhalter und wird durch die aktuelle Punktzahl ersetzt, und \"@maxscore\" wird durch die maximal mögliche Punktzahl ersetzt", + "default": "@score / @maxscore" + }, + { + "label": "Fortschritt bei den Interaktionen je Seite", + "description": "\"@left\" ist ein Platzhalter und wird durch die Anzahl der verbleibenden Interaktionen ersetzt, und \"@max\" wird durch die Gesamtzahl der Interaktionen der Seite ersetzt", + "default": "@left von @max Interaktionen abgeschlossen" + }, + { + "label": "Übersetzung für \"Keine Interaktionen\"", + "default": "Keine Interaktionen" + }, + { + "label": "Übersetzung für \"Punkte\"", + "default": "Punkte" + }, + { + "label": "Beschriftung für den \"Zusammenfassung und Einsenden\"-Button", + "default": "Zusammenfassung und Einsenden" + }, + { + "label": "Übersetzung für \"Du hast noch keine Seiten bearbeitet.\"", + "default": "Du hast noch keine Seiten bearbeitet." + }, + { + "label": "Übersetzung für \"Du musst wenigstens eine Seite bearbeiten, um die Zusammenfassung zu sehen.\"", + "default": "Du musst wenigstens eine Seite bearbeiten, um die Zusammenfassung zu sehen." + }, + { + "label": "Übersetzung für \"Deine Antworten wurden zur Begutachtung versendet!\"", + "default": "Deine Antworten wurden zur Begutachtung versendet!" + }, + { + "label": "Beschriftung für Buchfortschritt in der Zusammenfassung", + "default": "Buchfortschritt" + }, + { + "label": "Beschriftung für Interaktionsfortschritt in der Zusammenfassung", + "default": "Interaktionsfortschritt" + }, + { + "label": "Beschriftung für Gesamtpunktzahl", + "default": "Gesamtpunktzahl" + }, + { + "label": "Texte zur Barrierefreiheit", + "fields": [ + { + "label": "Textalternative für die Fortschrittsanzeige", + "description": "Dieser Text ersetzt die grafische Fortschrittsanzeige. (Es können die Platzhalter @page und @total verwendet werden.)", + "default": "Seite @page von @total." + }, + { + "label": "Beschriftung des Buttons, um das Inhaltsverzeichnis ein- und auszublenden", + "default": "Inhaltsverzeichnis ein- bzw. ausschalten" + } + ] + } + ] +} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/el.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/el.json new file mode 100644 index 0000000..b22f653 --- /dev/null +++ b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/el.json @@ -0,0 +1,201 @@ +{ + "semantics": [ + { + "label": "Ενεργοποίηση εξωφύλλου", + "description": "Το εξώφυλλο περιέχει πληροφορίες για το βιβλίο" + }, + { + "label": "Εξώφυλλο", + "fields": [ + { + "label": "Περιγραφή εξωφύλλου", + "description": "Αυτό το κείμενο θα είναι η περιγραφή του βιβλίου σας" + }, + { + "label": "Εικόνα εξωφύλλου", + "description": "Μια προαιρετική εικόνα φόντου για την εισαγωγή." + }, + { + "label": "Εναλλακτικό κείμενο για την εικόνα εξωφύλλου", + "description": "Ένα εναλλακτικό κείμενο για την εικόνα εξωφύλλου" + } + ] + }, + { + "label": "Σελίδες", + "entity": "Σελίδα", + "widgets": [ + { + "label": "Προεπιλογή" + } + ], + "field": { + "label": "Αντικείμενο", + "fields": [ + { + "label": "Σελίδα" + } + ] + } + }, + { + "label": "Ρυθμίσεις", + "fields": [ + { + "label": "Προβολή πίνακα περιεχομένων ως προεπιλογή", + "description": "Όταν είναι ενεργό, ο πίνακας περιεχομένων εμφανίζεται μόλις ανοίξει κάποιος/α το βιβλίο" + }, + { + "label": "Προβολή Ενδείξεων Προόδου", + "description": "Όταν είναι ενεργό, σε κάθε σελίδα θα εμφανίζονται ενδείξεις στον/στην χρήστη που θα τον/την ενημερώνουν αν και κατά πόσο έχει ολοκληρώσει τη δραστηριότητά του/της στη συγκεκριμένη σελίδα." + }, + { + "label": "Ενεργοποίηση αυτόματης προόδου", + "description": "Όταν είναι ενεργό μια σελίδα που δεν περιέχει δραστηριότητες θεωρείται ολοκληρωμένη μόλις προβληθεί. Μια σελίδα που περιέχει δραστηριότητες θεωρείται ολοκληρωμένη όταν ολοκληρωθούν όλες οι δραστηριότητες. Αν δεν είναι ενεργό, στο κάτω μέρος κάθε σελίδας θα εμφανίζεται ένα κουμπί που θα πρέπει να πατήσει ο/η χρήστης μόλις ολοκληρώσει την ενασχόλησή του/της με τη συγκεκριμένη σελίδα." + }, + { + "label": "Προβολή σύνοψης", + "description": "Όταν είναι ενεργό, ο/η χρήστης μπορεί να δει μια σύνοψη και να καταχωρεί τις απαντήσεις/πρόοδό του/της" + } + ] + }, + { + "label": "Μετάφραση για το \"Ανάγνωση\"", + "default": "Ανάγνωση" + }, + { + "label": "Μετάφραση για το \"Προβολή 'Πίνακα Περιεχομένων'\"", + "default": "Προβολή 'Πίνακα Περιεχομένων'" + }, + { + "label": "Μετάφραση για το \"Απόκρυψη 'Πίνακα Περιεχομένων'\"", + "default": "Απόκρυψη 'Πίνακα Περιεχομένων'" + }, + { + "label": "Μετάφραση για το \"Επόμενη σελίδα\"", + "default": "Επόμενη σελίδα" + }, + { + "label": "Μετάφραση για το \"Προηγούμενη σελίδα\"", + "default": "Προηγούμενη σελίδα" + }, + { + "label": "Μετάφραση για το \"Ολοκληρωμένη σελίδα!\"", + "default": "Ολοκληρωμένη σελίδα!" + }, + { + "label": "Μετάφραση για το \"@pages από @total έχουν ολοκληρωθεί\" (@pages και @total θα αντικατασταθούν από πραγματικές τιμές)", + "default": "@pages από @total έχουν ολοκληρωθεί" + }, + { + "label": "Μετάφραση για το \"Μη ολοκληρωμένη σελίδα\"", + "default": "Μη ολοκληρωμένη σελίδα" + }, + { + "label": "Μετάφραση για το \"Μετάβαση στην κορυφή\"", + "default": "Μετάβαση στην κορυφή" + }, + { + "label": "Μετάφραση για το \"Έχω ολοκληρώσει αυτήν τη σελίδα\"", + "default": "Έχω ολοκληρώσει αυτήν τη σελίδα" + }, + { + "label": "Ετικέτα κουμπιού πλήρους οθόνης", + "default": "Πλήρης οθόνη" + }, + { + "label": "Ετικέτα κουμπιού εξόδου από προβολή πλήρους οθόνης", + "default": "Έξοδος από πρόβολή πλήρους οθόνης" + }, + { + "label": "Πρόοδος στις σελίδες του βιβλίου", + "description": "\"@count\" μεταβλητή που θα αντικατασταθεί από τον αριθμό σελίδων και \"@total\" μεταβλητή που θα αντικατασταθεί από τον συνολικό αριθμό των σελίδων", + "default": "@count από @total σελίδες" + }, + { + "label": "Πρόοδος διάδρασης", + "description": "\"@count\" μεταβλητή που θα αντικατασταθεί από τον αριθμό των αλληλεπιδράσεων και \"@total\" μεταβλητή που θα αντικατασταθεί από τον συνολικό αριθμό των διαδραστικών δραστηριοτήτων", + "default": "@count από @total δραστηριοτήτων" + }, + { + "label": "Μετάφραση για το \"Υποβολή Αναφοράς\"", + "default": "Υποβολή Αναφοράς" + }, + { + "label": "Ετικέτα για το κουμπί \"επανεκκίνηση\"", + "default": "Επανεκκίνηση" + }, + { + "label": "Κεφαλίδα περίληψης", + "default": "Περίληψη" + }, + { + "label": "Μετάφραση για το \"Όλες οι διαδράσεις\"", + "default": "Όλες οι διαδράσεις" + }, + { + "label": "Μετάφραση για το \"Διαδράσεις που δεν απαντήθηκαν\"", + "default": "Διαδράσεις που δεν απαντήθηκαν" + }, + { + "label": "Βαθμολογία", + "description": "\"@score\" μεταβλητή που θα αντικατασταθεί από την τρέχουσα βαθμολογία και \"@maxscore\" μεταβλητή που θα αντικατασταθεί από τη μέγιστη δυνατή βαθμολογία", + "default": "@score / @maxscore" + }, + { + "label": "Ολοκλήρωση διαδράσεων ανά σελίδα", + "description": "\"@left\" μεταβλητή που θα αντικατασταθεί από τις διαδράσεις που απομένουν και \"@max\" μεταβλητή που θα αντικατασταθεί από τον συνολικό αριθμό διαδράσεων που υπάρχουν στην σελίδα", + "default": "@left από @max διαδράσεις έχουν ολοκληρωθεί" + }, + { + "label": "Μετάφραση για το \"Δεν υπάρχουν διαδράσεις\"", + "default": "Δεν υπάρχουν διαδράσεις" + }, + { + "label": "Μετάφραση για το \"Βαθμολογία\"", + "default": "Βαθμολογία" + }, + { + "label": "Ετικέτα για το κουμπί \"Περίληψη & υποβολή\"", + "default": "Περίληψη & υποβολή" + }, + { + "label": "Μετάφραση για το \"Δεν έχετε ολοκληρώσει καμία διάδραση σε καμία από τις σελίδες.\"", + "default": "Δεν έχετε ολοκληρώσει καμία διάδραση σε καμία από τις σελίδες." + }, + { + "label": "Μετάφραση για το \"Πρέπει να έχετε ολοκληρώσει τουλάχιστον μια διάδραση σε τουλάχιστον μια σελίδα για να μπορέσετε να προβάλετε την περίληψη.\"", + "default": "Πρέπει να έχετε ολοκληρώσει τουλάχιστον μια διάδραση σε τουλάχιστον μια σελίδα για να μπορέσετε να προβάλετε την περίληψη." + }, + { + "label": "Μετάφραση για το \"Οι απαντήσεις σας έχουν υποβληθεί για έλεγχο!\"", + "default": "Οι απαντήσεις σας έχουν υποβληθεί για έλεγχο!" + }, + { + "label": "Ετικέτα προόδου στο βιβλίο", + "default": "Πρόοδος στο βιβλίο" + }, + { + "label": "Ετικέτα προόδου διαδράσεων", + "default": "Πρόοδος διαδράσεων" + }, + { + "label": "Ετικέτα συνολικής βαθμολογίας", + "default": "Συνολική βαθμολογία" + }, + { + "label": "Κείμενα προσβασιμότητας", + "fields": [ + { + "label": "Εναλλακτικό κείμενο για την πρόοδο στις σελίδες του βιβλίου", + "description": "Ένα εναλλακτικό κείμενο για την οπτική αναπαράσταση της προόδου στις σελίδες του βιβλίου. Υπάρχουν οι εξής διαθέσιμες μεταβλητές: @page και @total.", + "default": "Σελίδα @page από @total." + }, + { + "label": "Ετικέτα για την επέκταση / σύμπτυξη του μενού πλοήγησης", + "default": "Εναλλαγή μενού πλοήγησης" + } + ] + } + ] +} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/es-mx.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/es-mx.json new file mode 100644 index 0000000..404400f --- /dev/null +++ b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/es-mx.json @@ -0,0 +1,201 @@ +{ + "semantics": [ + { + "label": "Habilitar cubierta de libro", + "description": "Una cubierta que muestra información respecto al libro antes de acceder a él" + }, + { + "label": "Página de Cubierta", + "fields": [ + { + "label": "Descripción de la Cubierta", + "description": "Este texto será la descripción de su libro." + }, + { + "label": "Imagen de cubierta", + "description": "Una imagen de fondo opcional para la introducción." + }, + { + "label": "Texto alternativo para imagen de cubierta", + "description": "Un texto alternativo para la imagen de cubierta" + } + ] + }, + { + "label": "Páginas", + "entity": "Página", + "widgets": [ + { + "label": "Predeterminado" + } + ], + "field": { + "label": "Elemento", + "fields": [ + { + "label": "Página" + } + ] + } + }, + { + "label": "Configuraciones del comportamiento", + "fields": [ + { + "label": "Mostrar tabla de contenidos como configuración predeterminada", + "description": "Cuando se habilita, la tabla de contenidos es mostrada al abrir el libro" + }, + { + "label": "Mostrar Indicadores del Progreso", + "description": "Cuando se habilita, habrá indicadores por página mostrándole al usuario si ha terminado con la página o no." + }, + { + "label": "Habilitar progreso automático", + "description": "Si se habilita, una página sin trabajos es considerada hecha cuando es vista. Una página con trabajos cuando todos los trabajos están hechos. Si se deshabilita, habrá un botón al fondo de cada página para que el usuario pueda hacer clic cuando haya terminado con la página." + }, + { + "label": "Mostrar resumen", + "description": "Cuando se habilita, el usuario puede ver un resumen y enviar el progreso/respuestas" + } + ] + }, + { + "label": "Traducción para \"Leer\"", + "default": "Leer" + }, + { + "label": "Traducción para \"Mostrar 'Tabla de contenidos'\"", + "default": "Mostrar 'Tabla de contenidos'" + }, + { + "label": "Traducción para \"Ocultar 'Tabla de contenidos'\"", + "default": "Ocultar 'Tabla de contenidos'" + }, + { + "label": "Traducción para \"Página siguiente\"", + "default": "Página siguiente" + }, + { + "label": "Traducción para \"Página anterior\"", + "default": "Página anterior" + }, + { + "label": "Traducción para \"¡Página completada!\"", + "default": "¡Página completada!" + }, + { + "label": "Traducción para \"@pages de @total completadas\" (@pages y @total serán remplazadas por los valores actuales)", + "default": "@pages de @total completadas" + }, + { + "label": "Traducción para \"Página incompleta\"", + "default": "Página incompleta" + }, + { + "label": "Traducción para \"Navegar a superior\"", + "default": "Navegar a superior" + }, + { + "label": "Traducción para \"He terminado esta página\"", + "default": "He terminado esta página" + }, + { + "label": "Etiqueta botón PantallaCompleta", + "default": "PantallaCompleta" + }, + { + "label": "Etiqueta botón Salir de PantallaCompleta", + "default": "Salir de PantallaCompleta" + }, + { + "label": "Progreso de páginas en libro", + "description": "\"@count\" será remplazado por el número de página, y \"@total\" por el número total de páginas", + "default": "@count de @total páginas" + }, + { + "label": "Progreso de interacciones", + "description": "\"@count\" será remplazado por el número de interacción, y \"@total\" por el número total de interacciones", + "default": "@count de @total interacciones" + }, + { + "label": "Traducción para \"Enviar Reporte\"", + "default": "Enviar Reporte" + }, + { + "label": "Etiqueta para botón \"Reiniciar\"", + "default": "Reiniciar" + }, + { + "label": "Encabezado del resumen", + "default": "Resumen" + }, + { + "label": "Traducción para \"Todas las interacciones\"", + "default": "Todas las interacciones" + }, + { + "label": "Traducción para \"Interacciones no respondidas\"", + "default": "Interacciones no respondidas" + }, + { + "label": "Puntaje", + "description": "\"@score\" será remplazado por el puntaje actual, y \"@maxscore\" será remplazado por el máximo puntaje obtenible", + "default": "@score / @maxscore" + }, + { + "label": "Finalización de interacciones por página", + "description": "\"@left\" será remplazado por las interacciones restantes, y \"@max\" será remplazado por el número total de interacciones en la página", + "default": "@left de @max interacciones completadas" + }, + { + "label": "Traducción para \"Sin interacciones\"", + "default": "Sin interacciones" + }, + { + "label": "Traducción para \"Puntaje\"", + "default": "Puntaje" + }, + { + "label": "Etiqueta para botón \"Resumen y Envío\"", + "default": "Resumen y Envío" + }, + { + "label": "Traducción para \"Usted no ha interactuado con ninguna página.\"", + "default": "Usted no ha interactuado con ninguna página." + }, + { + "label": "Traducción para \"Usted tiene que interactuar con al menos una página antes de que pueda ver el resumen.\"", + "default": "Usted tiene que interactuar con al menos una página antes de que pueda ver el resumen." + }, + { + "label": "Traducción para \"¡Sus respuestas han sido enviadas para revisión!\"", + "default": "¡Sus respuestas son enviadas para revisión!" + }, + { + "label": "Etiqueta del progreso del resumen", + "default": "Progreso del libro" + }, + { + "label": "Etiqueta del progreso de interacciones", + "default": "Progreso de interacciones" + }, + { + "label": "Etiqueta del puntaje total", + "default": "Puntaje total" + }, + { + "label": "Textos de Accesibilidad", + "fields": [ + { + "label": "Alternativa textual para Progreso de páginas", + "description": "Un texto alternativo para el progreso visual de páginas. @page y @total son variables disponibles.", + "default": "Página @page de @total." + }, + { + "label": "Etiqueta para menú de navegación expandible/colapsable", + "default": "Alternar menú de navegación" + } + ] + } + ] +} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/es.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/es.json new file mode 100644 index 0000000..d88d54a --- /dev/null +++ b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/es.json @@ -0,0 +1,201 @@ +{ + "semantics": [ + { + "label": "Habilitar cubierta de libro", + "description": "Una cubierta que muestra información respecto al libro antes de acceder a él" + }, + { + "label": "Página de Cubierta", + "fields": [ + { + "label": "Descripción de la Cubierta", + "description": "Este texto será la descripción de su libro." + }, + { + "label": "Imagen de cubierta", + "description": "Una imagen de fondo opcional para la introducción." + }, + { + "label": "Texto alternativo para imagen de cubierta", + "description": "Un texto alternativo para la imagen de cubierta" + } + ] + }, + { + "label": "Páginas", + "entity": "Página", + "widgets": [ + { + "label": "Predeterminado" + } + ], + "field": { + "label": "Elemento", + "fields": [ + { + "label": "Página" + } + ] + } + }, + { + "label": "Configuraciones del comportamiento", + "fields": [ + { + "label": "Mostrar tabla de contenidos como configuración predeterminada", + "description": "Cuando se habilita, la tabla de contenidos es mostrada al abrir el libro" + }, + { + "label": "Mostrar Indicadores del Progreso", + "description": "Cuando se habilita, habrá indicadores por página mostrándole al usuario si ha terminado con la página o no." + }, + { + "label": "Habilitar progreso automático", + "description": "Si se habilita, una página sin trabajos es considerada hecha cuando es vista. Una página con trabajos cuando todos los trabajos están hechos. Si se deshabilita, habrá un botón al fondo de cada página para que el usuario pueda hacer clic cuando haya terminado con la página." + }, + { + "label": "Mostrar resumen", + "description": "Cuando se habilita, el usuario puede ver un resumen y enviar el progreso/respuestas" + } + ] + }, + { + "label": "Traducción para \"Leer\"", + "default": "Leer" + }, + { + "label": "Traducción para \"Mostrar 'Tabla de contenidos'\"", + "default": "Mostrar 'Tabla de contenidos'" + }, + { + "label": "Traducción para \"Ocultar 'Tabla de contenidos'\"", + "default": "Ocultar 'Tabla de contenidos'" + }, + { + "label": "Traducción para \"Página siguiente\"", + "default": "Página siguiente" + }, + { + "label": "Traducción para \"Página anterior\"", + "default": "Página anterior" + }, + { + "label": "Traducción para \"¡Página completada!\"", + "default": "¡Página completada!" + }, + { + "label": "Traducción para \"@pages de @total completadas\" (@pages y @total serán remplazadas por los valores actuales)", + "default": "@pages de @total completadas" + }, + { + "label": "Traducción para \"Página incompleta\"", + "default": "Página incompleta" + }, + { + "label": "Traducción para \"Navegar a superior\"", + "default": "Navegar a superior" + }, + { + "label": "Traducción para \"He terminado esta página\"", + "default": "He terminado esta página" + }, + { + "label": "Etiqueta botón PantallaCompleta", + "default": "PantallaCompleta" + }, + { + "label": "Etiqueta botón Salir de PantallaCompleta", + "default": "Salir de PantallaCompleta" + }, + { + "label": "Progreso de páginas en libro", + "description": "\"@count\" será remplazado por el número de página, y \"@total\" por el número total de páginas", + "default": "@count de @total páginas" + }, + { + "label": "Progreso de interacciones", + "description": "\"@count\" será remplazado por el número de interacción, y \"@total\" por el número total de interacciones", + "default": "@count de @total interacciones" + }, + { + "label": "Traducción para \"Enviar Reporte\"", + "default": "Enviar Reporte" + }, + { + "label": "Etiqueta para botón \"Reiniciar\"", + "default": "Reiniciar" + }, + { + "label": "Encabezado del resumen", + "default": "Resumen" + }, + { + "label": "Traducción para \"Todas las interacciones\"", + "default": "Todas las interacciones" + }, + { + "label": "Traducción para \"Interacciones no respondidas\"", + "default": "Interacciones no respondidas" + }, + { + "label": "Puntaje", + "description": "\"@score\" será remplazado por el puntaje actual, y \"@maxscore\" será remplazado por el máximo puntaje obtenible", + "default": "@score / @maxscore" + }, + { + "label": "Finalización de interacciones por página", + "description": "\"@left\" será remplazado por las interacciones restantes, y \"@max\" será remplazado por el número total de interacciones en la página", + "default": "@left de @max interacciones completadas" + }, + { + "label": "Traducción para \"Sin interacciones\"", + "default": "Sin interacciones" + }, + { + "label": "Traducción para \"Puntaje\"", + "default": "Puntaje" + }, + { + "label": "Etiqueta para botón \"Resumen y Envío\"", + "default": "Resumen y Envío" + }, + { + "label": "Traducción para \"Usted no ha interactuado con ninguna página.\"", + "default": "Usted no ha interactuado con ninguna página." + }, + { + "label": "Traducción para \"Usted tiene que interactuar con al menos una página antes de que pueda ver el resumen.\"", + "default": "Usted tiene que interactuar con al menos una página antes de que pueda ver el resumen." + }, + { + "label": "Traducción para \"¡Sus respuestas han sido enviadas para revisión!\"", + "default": "¡Sus respuestas han sido enviadas para revisión!" + }, + { + "label": "Etiqueta del progreso del resumen", + "default": "Progreso del libro" + }, + { + "label": "Etiqueta del progreso de interacciones", + "default": "Progreso de interacciones" + }, + { + "label": "Etiqueta del puntaje total", + "default": "Puntaje total" + }, + { + "label": "Textos de Accesibilidad", + "fields": [ + { + "label": "Alternativa textual para Progreso de páginas", + "description": "Un texto alternativo para el progreso visual de páginas. @page y @total son variables disponibles.", + "default": "Página @page de @total." + }, + { + "label": "Etiqueta para menú de navegación expandible/colapsable", + "default": "Alternar menú de navegación" + } + ] + } + ] +} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/et.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/et.json new file mode 100644 index 0000000..b496135 --- /dev/null +++ b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/et.json @@ -0,0 +1,201 @@ +{ + "semantics": [ + { + "label": "Luba tiitelleht", + "description": "Leht, mis näitab teavet raamatu kohta enne selle avamist" + }, + { + "label": "Tiitelleht", + "fields": [ + { + "label": "Tiitellehe kirjeldus", + "description": "See tekst kirjeldab sinu raamatut." + }, + { + "label": "Tiitellehe pilt", + "description": "Valikuline taustapilt tutvustusele." + }, + { + "label": "Tiitellehe pildi alternatiivtekst", + "description": "Alternatiivne tekst tiitellehe pildile" + } + ] + }, + { + "label": "Peatükid", + "entity": "Peatükk", + "widgets": [ + { + "label": "Vaikimisi" + } + ], + "field": { + "label": "Üksus", + "fields": [ + { + "label": "Peatükk" + } + ] + } + }, + { + "label": "Käitumisseaded", + "fields": [ + { + "label": "Kuva vaikimisi sisukorda", + "description": "Kui on lubatud, siis raamatu avamisel näidatakse sisukorda" + }, + { + "label": "Näida edenemisosutit", + "description": "Kui on lubatud, siis on lehel osutid, mis näitavad kasutajale, kas ta on lehega lõpule jõudnud või mitte." + }, + { + "label": "Võimalda automaatne edenemine", + "description": "Kui on lubatud, siis ülesanneteta lehekülg loetakse vaatamisel läbituks, ülesannetega lehekülg peale kõigi ülesannete täitmist. Kui keelatud, siis on iga lehe all nupp, mida kasutaja peab lehe läbituks märkimiseks vajutama." + }, + { + "label": "Kuva kokkuvõtet", + "description": "Kui lubatud, siis kasutaja näeb kokkuvõtet ning saab oma tulemused edastada/vaadata" + } + ] + }, + { + "label": "\"Loe\" nupu tõlge", + "default": "Loe" + }, + { + "label": "\"Kuva 'sisukord'\" nupu tõlge", + "default": "Kuva 'sisukord'" + }, + { + "label": "\"Peida 'sisukord'\" nupu tõlge", + "default": "Peida 'sisukord'" + }, + { + "label": "\"Järgmine lehekülg\" nupu tõlge", + "default": "Järgmine lehekülg" + }, + { + "label": "\"Eelmine lehekülg\" nupu tõlge", + "default": "Eelmine lehekülg" + }, + { + "label": "\"Peatükk läbitud!\" tõlge", + "default": "Peatükk läbitud!" + }, + { + "label": "Tõlge tehtud \"@pages leheküljele @total leheküljest\" (@pages ja @total asendatakse tegelike väärtusega)", + "default": "@pages / @total läbitud" + }, + { + "label": "\"Peatükk pooleli\" tõlge", + "default": "Peatükk pooleli" + }, + { + "label": "\"Liigu lehekülje ülaossa\" tõlge", + "default": "Liigu lehkülje ülaossa" + }, + { + "label": "\"Olen selle lehe läbinud\" tõlge", + "default": "Olen selle lehe läbinud" + }, + { + "label": "Täisekraan nupu silt", + "default": "Täisekraan" + }, + { + "label": "Välju täisekraanilt nupu silt", + "default": "Välju täisekraanilt" + }, + { + "label": "Page progress in book", + "description": "\"@count\" will be replaced by page count, and \"@total\" with the total number of pages", + "default": "@count of @total pages" + }, + { + "label": "Interaction progress", + "description": "\"@count\" will be replaced by interaction count, and \"@total\" with the total number of interactions", + "default": "@count of @total interactions" + }, + { + "label": "Translation for \"Submit report\"", + "default": "Submit Report" + }, + { + "label": "Label for \"restart\" button", + "default": "Restart" + }, + { + "label": "Summary header", + "default": "Kokkuvõte" + }, + { + "label": "Translation for \"All interactions\"", + "default": "Kõik harjutused" + }, + { + "label": "Translation for \"Unanswered interactions\"", + "default": "Vastamata harjutused" + }, + { + "label": "Tulemus", + "description": "\"@score\" will be replaced with current score, and \"@maxscore\" will be replaced with max achievable score", + "default": "@score / @maxscore" + }, + { + "label": "Harjutuste edenemine lehe kohta", + "description": "\"@left\" will be replaced with remaining interactions, and \"@max\" will be replaced with total number of interactions on the page", + "default": "@left / @max harjutusest täidetud" + }, + { + "label": "Translation for \"No interactions\"", + "default": "Harjutused puuduvad" + }, + { + "label": "Translation for \"Score\"", + "default": "Tulemus" + }, + { + "label": "Label for \"Summary & submit\" button", + "default": "Kokkuvõte & vastuste esitamine" + }, + { + "label": "Translation for \"You have not interacted with any pages.\"", + "default": "Sa ei ole veel lehtesid vaadanud." + }, + { + "label": "Translation for \"You have to interact with at least one page before you can see the summary.\"", + "default": "Pead vähemalt ühte lehte vaatama enne kui soovid kokkuvõtte lehte vaadata." + }, + { + "label": "Translation for \"Your answers are submitted for review!\"", + "default": "Vastused on edastatud ülevaatamiseks!" + }, + { + "label": "Summary progress label", + "default": "Edenemine" + }, + { + "label": "Interactions progress label", + "default": "Harjutuste edenemine" + }, + { + "label": "Total score label", + "default": "Tulemused" + }, + { + "label": "Puudega inimest toetavad tekstid", + "fields": [ + { + "label": "Lehekülje edenemise tekstialternatiiv", + "description": "Alternatiivtekst visuaalsele lehel edenemise osutile. Kasutatavad muutujad on @page ja @total.", + "default": "Lehekülg @page kokku @total lehest." + }, + { + "label": "Silt navigeerimismenüü avamiseks ja sulgemiseks", + "default": "Ava või sulge navigeerimismenüü" + } + ] + } + ] +} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/eu.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/eu.json new file mode 100644 index 0000000..229c14e --- /dev/null +++ b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/eu.json @@ -0,0 +1,201 @@ +{ + "semantics": [ + { + "label": "Gaitu liburuaren portada", + "description": "Liburuan sartu aurretik bere informazioa erakusten duen portada bat" + }, + { + "label": "Portadako orria", + "fields": [ + { + "label": "Portadaren deskribapena", + "description": "Testu hau zure liburuaren deskribapena izango da." + }, + { + "label": "Portadaren irudia", + "description": "Portadarentzako atzeko planoko hautazko irudi bat." + }, + { + "label": "Portadaren irudiaren ordezko testua", + "description": "Portadaren irudiarentzako ordezko testu bat" + } + ] + }, + { + "label": "Kapituluak", + "entity": "Kapitulua", + "widgets": [ + { + "label": "Lehenetsitakoa" + } + ], + "field": { + "label": "Elementua", + "fields": [ + { + "label": "Kapitulua" + } + ] + } + }, + { + "label": "Portaeren ezarpenak", + "fields": [ + { + "label": "Erakutsi eduki-taula modu lehenetsian", + "description": "Gaituz gero eduki-taula erakutsiko da liburua irekitzean" + }, + { + "label": "Erakutsi aurrerapenaren adierazleak", + "description": "Gaituz gero orri bakoitzean erabiltzaileari orri amaitu duen edo ez erakusten duten adierazleak egongo dira." + }, + { + "label": "Gaitu aurrerapen autommatikoa", + "description": "Gaituz gero zereginik gabeko orri bat ikusitakoan osatutzat emango da. Zereginak dituen orri bat zeregin guztiak osatzean osatuko da. Desgaituz gero orri bakoitzaren amaieran botoi bat agertuko da erabiltzaileak orria amaitzean klik egin dezan." + }, + { + "label": "Erakutsi laburpena", + "description": "Gaituz gero erabiltzaileak laburpen bat ikusi eta aurrerapena/erantzunako bidali ditzake" + } + ] + }, + { + "label": "\"Read\"-erako itzulpena", + "default": "Irakurri" + }, + { + "label": "\"Display 'Table of contents'\"-erako itzulpena", + "default": "Erakutsi 'Eduki-taulak'" + }, + { + "label": "\"Hide 'Table of contents'\"-erako itzulpena", + "default": "Ezkutatu 'Eduki-taulak'" + }, + { + "label": "\"Next page\"-erako itzulpena", + "default": "Hurrengo orria" + }, + { + "label": "\"Previous page\"-erako itzulpena", + "default": "Aurreko orria" + }, + { + "label": "\"Page completed!\"-erako itzulpena", + "default": "Kapitulua osatu duzu!" + }, + { + "label": "\"@pages of @total completed\"-erako itzulpena (@pages eta @total benetako balioekin ordezkatuko dira)", + "default": "@total-(e)tik @pages osatu dituzu" + }, + { + "label": "\"Incomplete page\"-erako itzulpena", + "default": "Osatu gabeko kapitulua" + }, + { + "label": "\"Navigate to the top\"-erako itzulpena", + "default": "Nabigatu goraino" + }, + { + "label": "\"I have finished this page\"-erako itzulpena", + "default": "Orri hau amaitu dut" + }, + { + "label": "Pantaila-osoan botoiaren etiketa", + "default": "Pantaila-osoan" + }, + { + "label": "Irten pantaila-osotik botoiaren etiketa", + "default": "Irten pantaila-osotik" + }, + { + "label": "Liburuko orrien aurrerapena", + "description": "\"@count\" orriaren zenbakiarekin ordezkatuko da, eta \"@total\" guztirako orri kopuruarekin", + "default": "@count orri guztirako @total orrietatik" + }, + { + "label": "Interakzioaren aurrerapena", + "description": "\"@count\" interakzioaren zenbakiarekin ordezkatuko da, eta \"@total\" guztirako interazkio kopuruarekin", + "default": "@count guztirako @total interakzioetatik" + }, + { + "label": "\"Submit report\" testuaren itzulpena", + "default": "Bidali Txostena" + }, + { + "label": "\"berrabiarazi\" botoiaren etiketa", + "default": "Berrabiarazi" + }, + { + "label": "Laburpenaren goiburua", + "default": "Laburpena" + }, + { + "label": "\"All interactions\" testuaren itzulpena", + "default": "Interakzio guztiak" + }, + { + "label": "\"Unanswered interactions\" testuaren itzulpena", + "default": "Erantzun gabeko interakzioak" + }, + { + "label": "Emaitza", + "description": "\"@score\" une horretako emaitzarekin ordezkatuko da, eta \"@maxscore\" lortu daitekeen gehienezko emaitzarekin", + "default": "@score / @maxscore" + }, + { + "label": "Orriko interakzioen osaketa", + "description": "\"@left\" geratzen diren interakzioekin ordezkatuko da, eta \"@max\" orriko guztirako interakzio kopuruarekin", + "default": "@left geratzen dira orriko @max interakzioetatik" + }, + { + "label": "\"No interactions\" testuaren itzulpena", + "default": "Interakziorik ez" + }, + { + "label": "\"Score\" testuaren itzulpena", + "default": "Emaitza" + }, + { + "label": "\"Laburpena & bidali\" botoiaren etiketa", + "default": "Laburpena & bidali" + }, + { + "label": "\"You have not interacted with any pages.\" testuaren itzulpena", + "default": "Ez duzu inongo orrirekin interakziorik izan." + }, + { + "label": "\"You have to interact with at least one page before you can see the summary.\" testuaren itzulpena", + "default": "Gutxienez orri batekin interakzioa izan behar duzu laburpena ikusi aurretik." + }, + { + "label": "\"Your answers are submitted for review!\" testuaren itzulpena", + "default": "Zure erantzunak berrikusiak izan daitezen bidali dira!" + }, + { + "label": "Aurrerapenaren laburpenaren etiketa", + "default": "Liburuaren aurrerapena" + }, + { + "label": "Interakzioaren aurrerapenaren etiketa", + "default": "Interakzioaren aurrerapena" + }, + { + "label": "Emaitza guztiraren etiketa", + "default": "Emaitza guztira" + }, + { + "label": "Eskuragarritasun testuak", + "fields": [ + { + "label": "Orri-aurrerapen ordezko testuala", + "description": "Orriaren aurrerapen bisualaren ordezko testua. @page eta @total aldagaiak daude eskuragarri.", + "default": "@total-(e)tik @page. orria." + }, + { + "label": "Nabigazio-menua zabaldu edo tolesteko etiketa", + "default": "Zabaldu/Tolestu nabigazio-menua" + } + ] + } + ] +} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/fa.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/fa.json new file mode 100644 index 0000000..2a8379f --- /dev/null +++ b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/fa.json @@ -0,0 +1,201 @@ +{ + "semantics": [ + { + "label": "فعال‌سازی جلد کتاب", + "description": "جلدی که پیش از دسترسی به کتاب، اطلاعاتی را درباره آن نشان می‌دهد" + }, + { + "label": "جلد", + "fields": [ + { + "label": "توصیف جلد", + "description": "این متن توصیف کتابتان خواهد بود." + }, + { + "label": "تصویر جلد", + "description": "یک تصویر پس‌زمینه اختیاری برای مقدمه." + }, + { + "label": "متن بدیل تصویر جلد", + "description": "یک متن بدیل برای تصویر جلد" + } + ] + }, + { + "label": "صفحه", + "entity": "صفحه", + "widgets": [ + { + "label": "پیش‌فرض" + } + ], + "field": { + "label": "مطلب", + "fields": [ + { + "label": "صفحه" + } + ] + } + }, + { + "label": "تنظیمات عملکرد", + "fields": [ + { + "label": "نمایش پیش‌فرض فهرست موضوعات", + "description": "در صورت فعال‌سازی، فهرست موضوعات با باز شدن کتاب نمایش داده می‌شود" + }, + { + "label": "نمایش شاخص‌های پیشرفت", + "description": "در صورت فعال‌سازی، شاخص‌هایی در هر صفحه وجود خواهند داشت که به کاربر نشان می‌دهد آیا کار او با آن صفحه تمام شده است یا نه." + }, + { + "label": "فعال‌سازی پیشروی خودکار", + "description": "در صورت فعال‌سازی، یک صفحه بدون تکلیف پس از اینکه مشاهده شود، انجام شده در نظر گرفته می‌شود. یک صفحه با تکلیف هم وقتی انجام شده در نظر گرفته می‌شود که همه تکلیف‌ها انجام شود. در صورت غیرفعال‌سازی، دکمه‌ای در زیر هر صفحه قرار خواهد گرفت تا کاربر در صورت اتمام کار در آن صفحه روی آن کلیک کند." + }, + { + "label": "نمایش جمع‌بندی", + "description": "در صورت فعال‌سازی، کاربر می‌تواند جمع‌بندی را ببیند و پیشرفت/پاسخ‌ها را ارسال کند" + } + ] + }, + { + "label": "ترجمه بخوان", + "default": "بخوان" + }, + { + "label": "ترجمه نمایش فهرست موضوعات", + "default": "نمایش فهرست موضوعات" + }, + { + "label": "ترجمه پنهان‌سازی فهرست موضوعات", + "default": "پنهان‌سازی فهرست موضوعات" + }, + { + "label": "ترجمه صفحه بعد", + "default": "صفحه بعد" + }, + { + "label": "ترجمه صفحه قبل", + "default": "صفحه قبل" + }, + { + "label": "ترجمه صفحه تکمیل شد!", + "default": "صفحه تکمیل شد!" + }, + { + "label": "ترجمه @pages صفحه از کل @total صفحه تکمیل شد (@pages و @total با مقادیر واقعی جایگزین می‌شوند)", + "default": "@pages صفحه از کل @total صفحه تکمیل شد" + }, + { + "label": "ترجمه صفحه تکمیل نشده", + "default": "صفحه تکمیل نشده" + }, + { + "label": "ترجمه راهبری به بالا", + "default": "راهبری به بالا" + }, + { + "label": "ترجمه من این صفحه را به پایان رسانده‌ام", + "default": "من این صفحه را به پایان رسانده‌ام" + }, + { + "label": "برچسب دکمه تمام‌صفحه", + "default": "تمام‌صفحه" + }, + { + "label": "برچسب دکمه خروج از تمام‌صفحه", + "default": "خروج از تمام‌صفحه" + }, + { + "label": "پیشرفت صفحه در کتاب", + "description": "@count با شماره صفحه جایگزین می‌شود، و @total با تعداد کل صفحات جایگزین می‌شود", + "default": "صفحه @count از @total" + }, + { + "label": "پیشرفت تعامل", + "description": "@count با شماره تعامل جایگزین می‌شود، و @total با تعداد کل تعاملات جایگزین می‌شود", + "default": "تعامل @count از @total" + }, + { + "label": "ترجمه ارسال گزارش", + "default": "ارسال گزارش" + }, + { + "label": "برچسب دکمه شروع مجدد", + "default": "شروع مجدد" + }, + { + "label": "سرصفحه جمع‌بندی", + "default": "جمع‌بندی" + }, + { + "label": "ترجمه همه تعاملات", + "default": "همه تعاملات" + }, + { + "label": "ترجمه تعاملات پاسخ داده نشده", + "default": "تعاملات پاسخ داده نشده" + }, + { + "label": "نمره", + "description": "@score با نمره فعلی جایگزین می‌شود، و @maxscore با بالاترین نمره ممکن جایگزین می‌شود", + "default": "@score / @maxscore" + }, + { + "label": "تکمیل تعاملات در صفحه", + "description": "@left با تعاملات باقیمانده جایگزین خواهد شد، و @max با تعداد کل تعاملات در صفحه جایگزین خواهد شد", + "default": "@left تعامل از کل @max تعامل تکمیل شد" + }, + { + "label": "ترجمه بدون تعامل", + "default": "بدون تعامل" + }, + { + "label": "ترجمه نمره", + "default": "نمره" + }, + { + "label": "برچسب دکمه جمع‌بندی و ارسال", + "default": "جمع‌بندی و ارسال" + }, + { + "label": "ترجمه شما با هیچ صفحه‌ای تعامل نداشتید", + "default": "شما با هیچ صفحه‌ای تعامل نداشتید." + }, + { + "label": "ترجمه شما پیش از اینکه بتوانید جمع‌بندی را ببینید، باید حداقل با یک صفحه تعامل داشته باشید", + "default": "شما پیش از اینکه بتوانید جمع‌بندی را ببینید، باید حداقل با یک صفحه تعامل داشته باشید." + }, + { + "label": "ترجمه پاسخ‌های شما برای بازنگری ارسال شدند", + "default": "پاسخ‌های شما برای بازنگری ارسال شدند!" + }, + { + "label": "برچسب پیشرفت جمع‌بندی", + "default": "پیشرفت کتاب" + }, + { + "label": "برچسب پیشرفت تعاملات", + "default": "پیشرفت تعاملات" + }, + { + "label": "برچسب نمره کل", + "default": "نمره کل" + }, + { + "label": "متون دسترس‌پذیری", + "fields": [ + { + "label": "بدیل متنی پیشرفت صفحه", + "description": "یک متن بدیل برای پیشرفت صفحه دیداری. متغیرهای @page و @total در دسترس‌اند.", + "default": "صفحه @page از @total." + }, + { + "label": "برچسب بازکردن/بستن منوی راهبری", + "default": "بازکردن/بستن منوی راهبری" + } + ] + } + ] +} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/fi.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/fi.json new file mode 100644 index 0000000..36dbea9 --- /dev/null +++ b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/fi.json @@ -0,0 +1,201 @@ +{ + "semantics": [ + { + "label": "Ota kansisivu käyttöön", + "description": "Kansisivu sisältää tietoa kirjasta ennen sen avaamista." + }, + { + "label": "Kansisivu", + "fields": [ + { + "label": "Alaotsikko", + "description": "Tämä teksti näkyy pienemmässä koossa pääotsikon alapuolella." + }, + { + "label": "Kansikuva", + "description": "Tämä kuva näkyy kansisivulla (valinnainen)" + }, + { + "label": "Kansikuvan vaihtoehtoinen kuvaus", + "description": "Tätä tekstiä käyttävät ruudunlukijasovellukset. Se näkyy myös, jos kansikuva ei lataudu." + } + ] + }, + { + "label": "Kappaleet", + "entity": "Kappale", + "widgets": [ + { + "label": "Oletus" + } + ], + "field": { + "label": "Osio", + "fields": [ + { + "label": "Kappale" + } + ] + } + }, + { + "label": "Käyttäytymisasetukset", + "fields": [ + { + "label": "Sisällysluettelon näkyminen oletuksena", + "description": "Näyttää sisällysluettelon kirjan avaamisen yhteydessä." + }, + { + "label": "Näytä edistymispalkki", + "description": "Näyttää kappaleissa palkin, joka ilmaisee, kuinka paljon kirjan sisältöä on jäljellä." + }, + { + "label": "Ota automaattinen edistyminen käyttöön", + "description": "Merkitsee heti katselun yhteydessä suoritetuksi kappaleen, jolla ei ole tehtäviä. Tehtäviä sisältävät kappaleet merkitään suoritetuiksi, kun kaikki tehtävät on tehty. Jos tämä asetus on poissa käytöstä, jokaisen kappaleen alareunassa on painike, jota klikkaamalla käyttäjä merkitsee kappaleen suoritetuksi." + }, + { + "label": "Näytä yhteenveto", + "description": "Näyttää käyttäjälle yhteenvedon vastauksista, ennen kuin ne lähetetään tarkistettavaksi." + } + ] + }, + { + "label": "\"Lue\"-painikkeen teksti", + "default": "Lue" + }, + { + "label": "\"Näytä sisällysluettelo\" -painikkeen teksti", + "default": "Näytä sisällysluettelo" + }, + { + "label": "\"Piilota sisällysluettelo\" -painikkeen teksti", + "default": "Piilota sisällysluettelo" + }, + { + "label": "\"Seuraava sivu\" -painikkeen teksti", + "default": "Seuraava sivu" + }, + { + "label": "\"Edellinen sivu\" -painikkeen teksti", + "default": "Edellinen sivu" + }, + { + "label": "Käännös tekstille \"Kappale suoritettu!\"", + "default": "Kappale suoritettu!" + }, + { + "label": "Käännös tekstille \"@pages / @total kappaletta suoritettu\" (tekstien @pages ja @total tilalla näkyvät todelliset arvot)", + "default": "@pages / @total kappaletta suoritettu" + }, + { + "label": "Käännös tekstille \"Keskeneräinen kappale\"", + "default": "Keskeneräinen kappale" + }, + { + "label": "\"Siirry ylös\" -painikkeen teksti", + "default": "Siirry ylös" + }, + { + "label": "\"Olen suorittanut tämän kappaleen.\" -painikkeen teksti", + "default": "Olen suorittanut tämän kappaleen." + }, + { + "label": "Kokoruututila-painikkeen teksti", + "default": "Kokoruututila" + }, + { + "label": "Poistu kokoruututilasta -painikkeen teksti", + "default": "Poistu kokoruututilasta" + }, + { + "label": "Kappaleita suoritettu", + "description": "Tekstin \"@count\" tilalla on suoritettujen kappaleiden lukumäärä ja tekstin \"@total\" tilalla on kaikkien kappaleiden lukumäärä", + "default": "@count / @total kappaletta" + }, + { + "label": "Tehtäviä suoritettu", + "description": "Tekstin \"@count\" tilalla on suoritettujen tehtävien lukumäärä ja tekstin \"@total\" tilalla on kaikkien tehtävien lukumäärä", + "default": "@count / @total tehtävää" + }, + { + "label": "\"Lähetä tarkistettavaksi\" -painikkeen teksti", + "default": "Lähetä tarkistettavaksi" + }, + { + "label": "\"Aloita uudelleen\" -painikkeen teksti", + "default": "Aloita uudelleen" + }, + { + "label": "Yhteenveto-sivun otsikko", + "default": "Yhteenveto" + }, + { + "label": "\"Kaikki tehtävät\" -pudotusvalikkotekstin käännös", + "default": "Kaikki tehtävät" + }, + { + "label": "\"Vastaamattomat tehtävät\" -pudotusvalikkotekstin käännös", + "default": "Vastaamattomat tehtävät" + }, + { + "label": "Pistemäärä", + "description": " Muuttujan \"@score\" tilalla näytetään saavutettu pistemäärä ja muuttujan \"@maxscore\" tilalla näytetään korkein mahdollinen pistemäärä.", + "default": "@score / @maxscore" + }, + { + "label": "Suoritetut tehtävät kappalekohtaisesti", + "description": " Muuttujan \"@left\" tilalla näytetään kappaleen vastaamattomien tehtävien määrä ja muuttujan \"@max\" tilalla näytetään kappaleessa olevien tehtävien lukumäärä.", + "default": "@left / @max tehtävää suoritettu" + }, + { + "label": "Käännös tekstille \"Ei tehtäviä\"", + "default": "Ei tehtäviä" + }, + { + "label": "Pistemäärän yhteydessä näytettävän \"Tulos\"-tekstin käännös", + "default": "Tulos" + }, + { + "label": "\"Yhteenveto & lähetys\" -painikkeen teksti", + "default": "Yhteenveto & lähetys" + }, + { + "label": "Käännös tekstille \"Et ole tehnyt yhtään tehtävää.\"", + "default": "Et ole tehnyt yhtään tehtävää." + }, + { + "label": "Käännös tekstille \"Sinun on suoritettava vähintään yksi tehtävä ennen kuin voit nähdä yhteenvedon.\"", + "default": "Sinun on suoritettava vähintään yksi tehtävä ennen kuin voit nähdä yhteenvedon." + }, + { + "label": "Käännös tekstille \"Vastauksesi on lähetetty tarkistettavaksi!\"", + "default": "Your answers are submitted for review!" + }, + { + "label": "Kirjan edistyminen -otsikko", + "default": "Kirjan edistyminen" + }, + { + "label": "Tehtävien edistyminen -otsikko", + "default": "Tehtävien edistyminen" + }, + { + "label": "Yhteispisteet-otsikko", + "default": "Yhteispisteet" + }, + { + "label": "Saavutettavuuteen liittyvät tekstit", + "fields": [ + { + "label": "Kappaleita suoritettu -palkin vaihtoehtoinen teksti", + "description": "Vaihtoehtoinen teksti kappaleiden edistymisen seurannan palkille. Käytössä muuttujat @page ja @total.", + "default": "Suoritettu @page kappaletta. Kappaleita on yhteensä @total." + }, + { + "label": "Näytä/piilota navigaatiovalikko -painikkeen teksti", + "default": "Näytä/piilota navigaatiovalikko" + } + ] + } + ] +} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/fr.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/fr.json new file mode 100644 index 0000000..4a35de4 --- /dev/null +++ b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/fr.json @@ -0,0 +1,201 @@ +{ + "semantics": [ + { + "label": "Activer la couverture du livre", + "description": "Une couverture montre les informations concernant le livre avant l'accès" + }, + { + "label": "Page de couverture", + "fields": [ + { + "label": "Description de la couverture", + "description": "Ce texte sera la description de votre livre" + }, + { + "label": "Image de couverture", + "description": "Une image de fond facultative pour l'introduction." + }, + { + "label": "Texte alternatif de l'image de couverture", + "description": "Un texte alternatif pour l'image de couverture" + } + ] + }, + { + "label": "Pages", + "entity": "Page", + "widgets": [ + { + "label": "Par défaut" + } + ], + "field": { + "label": "Item", + "fields": [ + { + "label": "Page" + } + ] + } + }, + { + "label": "Paramètres d'affichage", + "fields": [ + { + "label": "Afficher la table des matières par défaut", + "description": "Lorsque cette option est activée, la table des matières s'affiche à l'ouverture du livre" + }, + { + "label": "Afficher les indicateurs de progrès", + "description": "Lorsqu'il est activé, il y aura des indicateurs par page indiquant à l'utilisateur s'il en a fini ou non avec la page." + }, + { + "label": "Activer la progression automatique", + "description": "Si elle est activée, une page sans tâches est considérée comme terminée lorsqu'elle est visualisée. Une page avec des tâches lorsque toutes les tâches sont effectuées. Si elle est désactivée, un bouton sera placé au bas de chaque page pour que l'utilisateur puisse cliquer lorsqu'il a terminé la page." + }, + { + "label": "Afficher le résumé", + "description": "Lorsqu'il est activé, l'utilisateur peut voir un résumé et soumettre les progrès/réponses" + } + ] + }, + { + "label": "Intitulé pour \"Lire\"", + "default": "Lire" + }, + { + "label": "Intitulé pour \"Afficher la 'Table des matières'\"", + "default": "Afficher la 'Table des matières'" + }, + { + "label": "Intitulé pour \"Cacher la 'Table des matières'\"", + "default": "Cacher la 'Table des matières'" + }, + { + "label": "Intitulé pour \"Page suivante\"", + "default": "Page suivante" + }, + { + "label": "Intitulé pour \"Page précédente\"", + "default": "Page précédente" + }, + { + "label": "Intitulé pour \"Page terminée!\"", + "default": "Page terminée!" + }, + { + "label": "Intitulé pour \"@pages sur @total terminé\" (@pages et @total sera remplacé par des valeurs réelles)", + "default": "@pages sur @total terminé" + }, + { + "label": "Intitulé pour \"Page non terminée\"", + "default": "Page non terminée" + }, + { + "label": "Intitulé pour \"Revenir en haut\"", + "default": "Revenir en haut" + }, + { + "label": "Intitulé pour \"J'ai terminé cette page\"", + "default": "J'ai terminé cette page" + }, + { + "label": "Libellé du bouton plein écran", + "default": "Plein écran" + }, + { + "label": "Libellé du bouton de sortie en plein écran", + "default": "Réduire" + }, + { + "label": "Avancement de la lecture", + "description": "\"@count\" sera remplacé par le nombre de pages lues et \"@total\" par le nombre total de pages", + "default": "@count sur @total pages" + }, + { + "label": "Avancement dans les interactions", + "description": "\"@count\" sera remplacé par le nombre d'interactions accomplies et \"@total\" avec le nombre total d'interactions", + "default": "@count sur @total interactions" + }, + { + "label": "Intitulé pour \"Soumettre le rapport\"", + "default": "Soumettre le rapport" + }, + { + "label": "Libellé du bouton \"relancer\"", + "default": "Relancer" + }, + { + "label": "Sommaire", + "default": "Sommaire" + }, + { + "label": "Intitulé pour \"Toutes les interactions\"", + "default": "Toutes les interactions" + }, + { + "label": "Intitulé pour \"Interactions sans réponse\"", + "default": "Interactions sans réponse" + }, + { + "label": "Score", + "description": "\"@score\" sera remplacé par le score actuel, et \"@maxscore\" sera remplacé par le score maximum réalisable", + "default": "@score / @maxscore" + }, + { + "label": "Achèvement des interactions par page", + "description": "\"@left\" sera remplacé par les interactions restantes, et \"@max\" sera remplacé par le nombre total d'interactions sur la page", + "default": "@left sur @max interactions réalisées" + }, + { + "label": "Intitulé pour \"Aucune interaction\"", + "default": "Aucune interaction" + }, + { + "label": "Intitulé pour \"Score\"", + "default": "Score" + }, + { + "label": "Libellé du bouton \"Résumé et transmission\"", + "default": "Résumé et transmission" + }, + { + "label": "Intitulé pour \"Vous n'avez interagi avec aucune page.\"", + "default": "Vous n'avez interagi avec aucune page." + }, + { + "label": "Intitulé pour \"Vous devez interagir avec au moins une page avant de pouvoir voir le résumé.\"", + "default": "Vous devez interagir avec au moins une page avant de pouvoir voir le résumé." + }, + { + "label": "Intitulé pour \"Vos réponses sont soumises à examen !\"", + "default": "Vos réponses sont soumises à examen !" + }, + { + "label": "Étiquette de progression dans le sommaire", + "default": "Avancement dans la lecture" + }, + { + "label": "Intitulé pour Avancement dans les interactions", + "default": "Avancement des interactions" + }, + { + "label": "Intitulé pour Score total", + "default": "Score total" + }, + { + "label": "Textes pour l'accessibilité", + "fields": [ + { + "label": "Texte alternatif pour l'avancement dans la lecture", + "description": "Un texte alternatif pour la progression visuelle de la page. Les variables @page et @total sont disponibles.", + "default": "Page @page sur @total." + }, + { + "label": "Intitulé pour étendre/réduire le menu de navigation", + "default": "Étendre/Réduire le menu" + } + ] + } + ] +} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/gl.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/gl.json new file mode 100644 index 0000000..8eca525 --- /dev/null +++ b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/gl.json @@ -0,0 +1,201 @@ +{ + "semantics": [ + { + "label": "Activar a cuberta do libro", + "description": "Unha cuberta que amosa información sobre o libro antes de entrar nel" + }, + { + "label": "Páxina de Cuberta", + "fields": [ + { + "label": "Descrición da cuberta", + "description": "Este texto será a descrición do teu libro." + }, + { + "label": "Imaxe de cuberta", + "description": "Imaxe de fondo opcional para a introdución." + }, + { + "label": "Texto alternativo para a imaxe da cuberta", + "description": "Un texto alternativo para a imaxe da cuberta" + } + ] + }, + { + "label": "Páxinas", + "entity": "Páxina", + "widgets": [ + { + "label": "Por defecto" + } + ], + "field": { + "label": "Elemento", + "fields": [ + { + "label": "Páxina" + } + ] + } + }, + { + "label": "Configuración do comportamento", + "fields": [ + { + "label": "Amosar a táboa de contidos por defecto", + "description": "Amósase a táboa de contidos cando se abre o libro" + }, + { + "label": "Amosar indicadores de progreso", + "description": "Activa indicadores para cada páxina que indican ao usuario se xa leu a páxina ou non." + }, + { + "label": "Activar progreso automático", + "description": "Se está activado, considerarase rematada calquera páxina que non conteña tarefas ao vela e calquera páxina que conteña tarefas cando todas as tarefas estean rematadas. Se está desactivado, haberá un botón no pé de cada páxina para que usuario prema nel cando remate con ela." + }, + { + "label": "Amosar resumo", + "description": "Se está activado, o ususario pode ver un resumo e enviar o seu progreso ou respostas" + } + ] + }, + { + "label": "Tradución para \"Ler\"", + "default": "Ler" + }, + { + "label": "Tradución para \"Amosar 'Táboa de contidos'\"", + "default": "Amosar 'Táboa de contidos'" + }, + { + "label": "Tradución para \"Agachar 'Táboa de contidos'\"", + "default": "Agochar 'Táboa de contidos'" + }, + { + "label": "Tradución para \"Páxina seguinte\"", + "default": "Páxina seguinte" + }, + { + "label": "Tradución para \"Páxina anterior\"", + "default": "Páxina anterior" + }, + { + "label": "Tradución para \"Páxina completa!\"", + "default": "Páxina completa!" + }, + { + "label": "Tradución para \"@pages de @total completadas\" (@pages e @total subsituiranse polos valores actuais)", + "default": "@pages de @total completadas" + }, + { + "label": "Tradución para \"Páxina incompleta\"", + "default": "Páxina incompleta" + }, + { + "label": "Tradución para \"Ir á parte superior\"", + "default": "Ir á parte superior" + }, + { + "label": "Tradución para \"Rematei esta páxina\"", + "default": "Rematei esta páxina" + }, + { + "label": "Etiqueta do botón pantalla completa", + "default": "Pantalla completa" + }, + { + "label": "Etiqueta do botón saír de pantalla completa", + "default": "Saír de pantalla completa" + }, + { + "label": "Progreso coas páxinas do libro", + "description": "\"@count\" substituirase polo número de páxinas visitadas e \"@total\" polo número total de páxinas", + "default": "@count de @total páxinas" + }, + { + "label": "Progreso da interacción", + "description": "\"@count\" substituirase polo número de interaccións rexistradas e \"@total\" polo número total de interaccións", + "default": "@count de @total interaccións" + }, + { + "label": "Tradución para \"enviar informe\"", + "default": "Enviar Informe" + }, + { + "label": "Etiqueta para o botón \"reiniciar\"", + "default": "Reiniciar" + }, + { + "label": "Cabeceira do resumo", + "default": "Resumo" + }, + { + "label": "Tradución para \"Todas as interaccións\"", + "default": "Todas as interaccións" + }, + { + "label": "Tradución para \"Interaccións non contestadas\"", + "default": "Interaccións non contestadas" + }, + { + "label": "Puntuación", + "description": "\"@score\" substituirase pola puntuación actual, e \"@maxscore\" pola puntuación máxima que se poida acadar", + "default": "@score / @maxscore" + }, + { + "label": "Completado de interaccións por páxina", + "description": "\"@left\" substituirase polo número de interaccións restantes e \"@max\" polo número total de interaccións na páxina", + "default": "@left de @max interaccións completadas" + }, + { + "label": "Tradución para \"Non hai interaccións\"", + "default": "Non hai interaccións" + }, + { + "label": "Tradución para \"Puntuación\"", + "default": "Puntuación" + }, + { + "label": "Etiqueta para o botón \"Enviar & resumo\"", + "default": "Enviar & resumo" + }, + { + "label": "Tradución para \"Non interaccionaches con ningunha páxina.\"", + "default": "Non interaccionaches con ningunha páxina." + }, + { + "label": "Tradución para \"Tes que interaccionar cunha páxina polo menos antes de poder ver o resumo.\"", + "default": "Tes que interaccionar cunha páxina polo menos antes de poder ver o resumo." + }, + { + "label": "Tradución para \"Enviáronse as túas respostas para revisión!\"", + "default": "Enviáronse as túas respostas para revisión!!" + }, + { + "label": "Etiqueta do progreso do resumo", + "default": "Progreso no libro" + }, + { + "label": "Etiqueta do progreso das interaccións", + "default": "Progreso nas interaccións" + }, + { + "label": "Etiqueta da puntuación total", + "default": "Puntuación total" + }, + { + "label": "Textos de accesibilidade", + "fields": [ + { + "label": "Alternativa textual para o progreso de páxina", + "description": "Un texto alternativo para o progreso visual de páxina. Variables dispoñibles: @page e @total.", + "default": "Páxina @page de @total." + }, + { + "label": "Etiqueta para expandir/colapsar o menú de navegación", + "default": "Alternar o menú de navegación" + } + ] + } + ] +} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/it.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/it.json new file mode 100644 index 0000000..57abc19 --- /dev/null +++ b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/it.json @@ -0,0 +1,201 @@ +{ + "semantics": [ + { + "label": "Attiva la copertina del libro", + "description": "Una copertina che mostra informazioni sul libro prima dell'accesso" + }, + { + "label": "Copertina", + "fields": [ + { + "label": "Descrizione della copertina", + "description": "Questo testo descriverà il tuo libro." + }, + { + "label": "Immagine di copertina", + "description": "Un'immagine di sfondo facoltativa per l'introduzione." + }, + { + "label": "Testo alternativo per l'immagine di copertina", + "description": "Un testo alternativo per l'immagine di copertina" + } + ] + }, + { + "label": "Pagine", + "entity": "Pagina", + "widgets": [ + { + "label": "Predefinito" + } + ], + "field": { + "label": "Item", + "fields": [ + { + "label": "Pagina" + } + ] + } + }, + { + "label": "Impostazioni di esecuzione", + "fields": [ + { + "label": "Mostra la tavola dei contenuti predefiniti", + "description": "Quando attivo, la tavola dei contenuti viene mostrata all'apertura del libro" + }, + { + "label": "Mostra gli indicatori di progresso", + "description": "Quando attivo, ci saranno degli indicatori in ogni pagina, per mostrare all'utente se ha o non ha finito con quella pagina." + }, + { + "label": "Attiva progressione automatica", + "description": "Se abilitato, una pagina senza compiti è considerata fatta quando è stata visualizzata; viceversa, una pagina con compiti lo è quando tutti sono stati portati a termine. Se disabilitato, in fondo a ogni pagina ci sarà un pulsante su cui l'utente può cliccare quando ha finito con quella pagina" + }, + { + "label": "Mostra sommario", + "description": "Quando attivo, l'utente può vedere un sommario e inviare la risposta o andare avanti" + } + ] + }, + { + "label": "Traduzione per \"Leggi\"", + "default": "Leggi" + }, + { + "label": "Traduzione per \"Mostra 'Indice dei contenuti'\"", + "default": "Mostra 'Indice dei contenuti'" + }, + { + "label": "Traduzione per \"Nascondi 'Indice dei contenuti'\"", + "default": "Nascondi 'Indice dei contenuti'" + }, + { + "label": "Traduzione per \"Prossima pagina\"", + "default": "Prossima pagina" + }, + { + "label": "Traduzione per \"Pagina precedente\"", + "default": "Pagina precedente" + }, + { + "label": "Traduzione per \"Capitolo completato!\"", + "default": "Capitolo completato!" + }, + { + "label": "Traduzione per \"@pages di @total pagine completate\" (@pages e @total sarà sostituito dai valori attuali)", + "default": "@pages di @total pagine completate" + }, + { + "label": "Traduzione per \"Capitolo incompleto\"", + "default": "Capitolo incompleto" + }, + { + "label": "Traduzione per \"Torna in alto\"", + "default": "Torna in alto" + }, + { + "label": "Traduzione per \"Ho terminato questa pagina\"", + "default": "Ho terminato questa pagina" + }, + { + "label": "Etichetta del pulsante schermo intero", + "default": "Schermo intero" + }, + { + "label": "Etichetta del pulsante di uscita da schermo intero", + "default": "Esci da schermo intero" + }, + { + "label": "Page progress in book", + "description": "\"@count\" sarà sostituito dal conteggio delle pagine e \"@total\" dal numero totale di pagine", + "default": "@count di @total pagine" + }, + { + "label": "Progresso dell'interazione", + "description": "\"@count\" sarà sostituito dal conteggio delle pagine e \"@total\" dal numero totale di pagine", + "default": "@count @total interazioni" + }, + { + "label": "Traduzione per \"Invia report\"", + "default": "Invia report" + }, + { + "label": "Etichetta per il pulsante \"riavvia\"", + "default": "Riavvia" + }, + { + "label": "Intestazione del sommario", + "default": "Sommario" + }, + { + "label": "Traduzione per \"Tutte le interazioni\"", + "default": "Tutte le interazioni" + }, + { + "label": "Traduzione per \"Interazioni senza risposta\"", + "default": "Interazioni senza risposta" + }, + { + "label": "Punteggio", + "description": "\"@score\" sarà sostituito con il punteggio del momento e \"@maxscore\" con il massimo punteggio raggiungibile", + "default": "@score / @maxscore" + }, + { + "label": "Completamento di interazioni per pagina", + "description": "\"@left\" sarà sostituito con le interazioni restanti e \"@max\" con il numero totale di interazioni della pagina", + "default": "@left di @max interazioni completate" + }, + { + "label": "Traduzione per \"Nessuna interazione\"", + "default": "Nessuna interazione" + }, + { + "label": "Traduzione per \"Punteggio\"", + "default": "Punteggio" + }, + { + "label": "Etichetta per il pulsante \"Sommario & invio\"", + "default": "Sommario & invio" + }, + { + "label": "Traduzione per \"Non hai interagito con alcuna pagina\"", + "default": "Non hai interagito con alcuna pagina" + }, + { + "label": "Traduzione per \"Devi interagire con almeno una pagina prima di poter vedere il sommario\"", + "default": "Devi interagire con almeno una pagina prima di poter vedere il sommario" + }, + { + "label": "Traduzione per \"Le tue risposte sono state inviate per la verifica!\"", + "default": "Le tue risposte sono state inviate per la verifica!" + }, + { + "label": "Etichetta di progresso del sommario", + "default": "Avanzamento nel libro" + }, + { + "label": "Etichetta del progresso delle interazioni", + "default": "Progresso delle interazioni" + }, + { + "label": "Etichetta del punteggio totale", + "default": "Punteggio totale" + }, + { + "label": "Testi per l'accessibilità", + "fields": [ + { + "label": "Alternativa testuale per la progressione di pagina", + "description": "Un testo alternativo per la vista della progressione di pagina. @page e @total variabili disponibili", + "default": "Pagina @page di @total" + }, + { + "label": "Etichetta per espandere/ridurre il menu di navigazione", + "default": "Mostra/Nascondi il menu di navigazione" + } + ] + } + ] +} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/km.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/km.json new file mode 100644 index 0000000..f98c927 --- /dev/null +++ b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/km.json @@ -0,0 +1,201 @@ +{ + "semantics": [ + { + "label": "Enable book cover", + "description": "A cover that shows info regarding the book before access" + }, + { + "label": "Cover Page", + "fields": [ + { + "label": "Cover description", + "description": "This text will be the description of your book." + }, + { + "label": "Cover image", + "description": "An optional background image for the introduction." + }, + { + "label": "Cover image alternative text", + "description": "An alternative text for the cover image" + } + ] + }, + { + "label": "Pages", + "entity": "Page", + "widgets": [ + { + "label": "Default" + } + ], + "field": { + "label": "Item", + "fields": [ + { + "label": "Page" + } + ] + } + }, + { + "label": "Behavioural settings", + "fields": [ + { + "label": "Display table of contents as default", + "description": "When enabled the table of contents is showed when opening the book" + }, + { + "label": "Display Progress Indicators", + "description": "When enabled there will be indicators per page showing the user if he is done with the page or not." + }, + { + "label": "Enable automatic progress", + "description": "If enabled a page without tasks is considered done when viewed. A page with tasks when all tasks are done. If disabled there will be a button at the bottom of every page for the user to click when done with the page." + }, + { + "label": "Display summary", + "description": "When enabled the user can see a summary and submit the progress/answers" + } + ] + }, + { + "label": "Translation for \"Read\"", + "default": "អាន" + }, + { + "label": "Translation for \"Display 'Table of contents'\"", + "default": "បង្ហាញ «តារាងមាតិកា»" + }, + { + "label": "Translation for \"Hide 'Table of contents'\"", + "default": "លាក់ «តារាងមាតិកា»" + }, + { + "label": "Translation for \"Next page\"", + "default": "ទំព័របន្ទាប់" + }, + { + "label": "Translation for \"Previous page\"", + "default": "ទំព័រមុន" + }, + { + "label": "Translation for \"Page completed!\"", + "default": "ទំព័របានបញ្ចប់!" + }, + { + "label": "Translation for \"@pages of @total completed\" (@pages and @total will be replaced by actual values)", + "default": "បានបញ្ចប់ @pages ទំព័រចំណោម @total ទំព័រ" + }, + { + "label": "Translation for \"Incomplete page\"", + "default": "ទំព័រមិនបានបញ្ចប់" + }, + { + "label": "Translation for \"Navigate to the top\"", + "default": "ផ្លាស់ទីទៅលើ" + }, + { + "label": "Translation for \"I have finished this page\"", + "default": "ខ្ញុំបានបញ្ចប់ទំព័រនេះ" + }, + { + "label": "Fullscreen button label", + "default": "ពេញអេក្រង់" + }, + { + "label": "Exit fullscreen button label", + "default": "បិទពេញអេក្រង់" + }, + { + "label": "Page progress in book", + "description": "\"@count\" will be replaced by page count, and \"@total\" with the total number of pages", + "default": "@count ចំណោម @total ទំព័រ" + }, + { + "label": "Interaction progress", + "description": "\"@count\" will be replaced by interaction count, and \"@total\" with the total number of interactions", + "default": "@count ចំណោម @total អន្តរកម្ម" + }, + { + "label": "Translation for \"Submit report\"", + "default": "ប្រគល់របាយការណ៍" + }, + { + "label": "Label for \"restart\" button", + "default": "ចាប់ផ្តើមឡើងវិញ" + }, + { + "label": "Summary header", + "default": "សង្ខេប" + }, + { + "label": "Translation for \"All interactions\"", + "default": "អន្តរកម្មទាំងអស់" + }, + { + "label": "Translation for \"Unanswered interactions\"", + "default": "អន្តរកម្មមិនទាន់បានឆ្លើយ" + }, + { + "label": "Score", + "description": "\"@score\" will be replaced with current score, and \"@maxscore\" will be replaced with max achievable score", + "default": "@score / @maxscore" + }, + { + "label": "Per page interactions completion", + "description": "\"@left\" will be replaced with remaining interactions, and \"@max\" will be replaced with total number of interactions on the page", + "default": "@left ចំណោម @max អន្តរកម្មបានបញ្ចប់" + }, + { + "label": "Translation for \"No interactions\"", + "default": "មិនមានអន្តរកម្ម" + }, + { + "label": "Translation for \"Score\"", + "default": "ពិន្ទុ" + }, + { + "label": "Label for \"Summary & submit\" button", + "default": "សងេ្ខប & ប្រគល់កិច្ចការ" + }, + { + "label": "Translation for \"You have not interacted with any pages.\"", + "default": "អ្នកមិនទាន់បានធ្វើអន្តរកម្មជាមួយទំព័រណាមួយនៅឡើយទេ។" + }, + { + "label": "Translation for \"You have to interact with at least one page before you can see the summary.\"", + "default": "អ្នកត្រូវតែមើលយ៉ាងហោចណាស់មួយទំព័រមុននឹងអ្នកអាចមើលសង្ខេបបាន។" + }, + { + "label": "Translation for \"Your answers are submitted for review!\"", + "default": "ចម្លើយរបស់អ្នកត្រូវបានប្រគល់ដើម្បីត្រួតពិនិត្យ!" + }, + { + "label": "Summary progress label", + "default": "វឌ្ឍនភាពសៀវភៅ" + }, + { + "label": "Interactions progress label", + "default": "វឌ្ឍនភាពអន្តរកម្ម" + }, + { + "label": "Total score label", + "default": "ពិន្ទុសរុប" + }, + { + "label": "Accessibility texts", + "fields": [ + { + "label": "Page progress textual alternative", + "description": "An alternative text for the visual page progress. @page and @total variables available.", + "default": "ទំព័រ @page ចំណោម @total" + }, + { + "label": "Label for expanding/collapsing navigation menu", + "default": "បិទបើកម៉ឺនុយផ្លាស់ទី" + } + ] + } + ] +} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/ko.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/ko.json new file mode 100644 index 0000000..7e33253 --- /dev/null +++ b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/ko.json @@ -0,0 +1,201 @@ +{ + "semantics": [ + { + "label": "책 표지 활성화", + "description": "접근 전 책에 대한 정보를 보여주는 표지" + }, + { + "label": "커버 페이지", + "fields": [ + { + "label": "커버 설명", + "description": "이 텍스트는 당신의 책에 대한 설명이 될 겁니다." + }, + { + "label": "커버 이미지", + "description": "(선택사항)소개의 배경 이미지." + }, + { + "label": "표지 이미지 대체 텍스트", + "description": "표지 이미지에 대한 대체 텍스트" + } + ] + }, + { + "label": "페이지", + "entity": "페이지", + "widgets": [ + { + "label": "기본값" + } + ], + "field": { + "label": "항목", + "fields": [ + { + "label": "페이지" + } + ] + } + }, + { + "label": "행동 설절", + "fields": [ + { + "label": "목차를 기본값으로 표시", + "description": "활성화했을 때 책을 열 때 목차가 표시됨" + }, + { + "label": "학습 진도 표시", + "description": "활성화하면 사용자가 페이지별로 완료했는지 여부를 나타내는 진도가 표시됨." + }, + { + "label": "자동 학습 진도 표시 활성화", + "description": "활성화하면 과제없는 페이지는 페이지를 보았을 때 완료된 것으로 간주됨. 과제가 있는 경우 과제 완료시 페이지 완료 표시. 비활성화시 모든 페이지 하단에 사용자가 페이지 과제를 마쳤을 때 클릭할 수 있는 버튼이 있음." + }, + { + "label": "요약 표시", + "description": "활성화되면 요약 정보를 보고 학습진도/정답을 제출할 수 있음." + } + ] + }, + { + "label": "\"Read\" (읽기)에 대한 맞춤형 텍스트", + "default": "읽기" + }, + { + "label": "\"Display 'Table of contents'\" (목차 표시)에 대한 맞춤형 텍스트", + "default": "목차 표시" + }, + { + "label": "\"Hide 'Table of contents'\" (목차 숨기기)에 대한 맞춤형 텍스트", + "default": "목차 숨기기" + }, + { + "label": "\"Next page\" (다음 페이지)에 대한 맞춤형 텍스트", + "default": "다음 페이지" + }, + { + "label": "\"Previous page\" (이전 페이지)에 대한 맞춤형 텍스트", + "default": "이전 페이지" + }, + { + "label": "\"Page completed!\" (페이지 완료)에 대한 맞춤형 텍스트", + "default": "페이지 완료!" + }, + { + "label": "\"@pages of @total completed\" 총 @total 중 @pages 완료 (@pages 와 @total 실제값으로 대체)에 대한 맞춤형 텍스트", + "default": "총 @total 중 @pages 완료" + }, + { + "label": "\"Incomplete page\" (페이지 미완료)에 대한 맞춤형 텍스트", + "default": "페이지 미완료" + }, + { + "label": "\"Navigate to the top\" (맨 위로 이동)에 대한 맞춤형 텍스트", + "default": "(맨 위로 이동)" + }, + { + "label": " \"I have finished this page\" (이 페이지 완료)에 대한 맞춤형 텍스트", + "default": "이 페이지를 완료했습니다." + }, + { + "label": "전체 화면 버튼 레이블", + "default": "전체화면" + }, + { + "label": "전체 화면 종료 버튼 레이블", + "default": "전체 화면 종료" + }, + { + "label": "책의 페이지 진행", + "description": "\"@count\"는 페이지 수로 대체되며, \"@total\"는 전체 페이지 수로 변경된다.", + "default": "총 @total 페이지 중 @count" + }, + { + "label": "상호작용 진행", + "description": "\"@count\"는 상호 작용 횟수로 대체되며, \"@total\"은 총 상호 작용 횟수로 대체된다.", + "default": " 총 @total 상호작용 중 @count" + }, + { + "label": "\"Submit report\" (보고서 제출)에 대한 맞춤형 텍스트", + "default": "보고서 제출" + }, + { + "label": "\"restart\" (재시작) 버튼", + "default": "재시작" + }, + { + "label": "요약 머릿말", + "default": "요약" + }, + { + "label": "\"All interactions\"(모든 상호작용)에 대한 맞춤형 텍스트", + "default": "모든 상호작용" + }, + { + "label": "\"Unanswered interactions\" (미답변 상호작용)에 대한 맞춤형 텍스트", + "default": "미답변 상호작용" + }, + { + "label": "점수", + "description": "\"@score\"는 현재 점수로 대체되고 \"@maxscore\" 는 달성 가능한 최대 점수로 대체됨.", + "default": "@score / @maxscore" + }, + { + "label": "페이지 단위 상호 작용 완료", + "description": "\"@left\"는 나머지 상호 작용으로 대체되며, \"@max\"는 페이지의 총 상호 작용 수로 대체된다", + "default": "총 @max 상호작용 남은 상호작용 @left" + }, + { + "label": "\"No interactions\"(상호작용 없음)에 대한 맞춤형 텍스트", + "default": "상호작용 없음" + }, + { + "label": "\"Score\"(점수)에 대한 맞춤형 텍스트", + "default": "점수" + }, + { + "label": "\"Summary & submit\" (요약 및 제출) 버튼", + "default": "요약 및 제출" + }, + { + "label": "\"You have not interacted with any pages.\" (상호작용이 없습니다)에 대한 맞춤형 텍스트", + "default": "상호작용이 없습니다." + }, + { + "label": "\"You have to interact with at least one page before you can see the summary.\" (요약보기에 앞서 적어도 한 페이지에서 상호작용 필수)에 대한 맞춤형 텍스트", + "default": "요약보기에 앞서 적어도 한 페이지에서 상호작용 필수" + }, + { + "label": "\"Your answers are submitted for review!\" (검토를 위해 답이 제출됨)에 대한 맞춤형 텍스트", + "default": "검토를 위해 답이 제출됨!" + }, + { + "label": "학습진도 요약 레이블", + "default": "책 진도" + }, + { + "label": "상호작용 진도 레이블", + "default": "상호작용 진도" + }, + { + "label": "전체 점수 레이블", + "default": "전체 점수" + }, + { + "label": "접근성 표시 텍스트", + "fields": [ + { + "label": "페이지 진도 텍스트형으로 표시", + "description": "시각화 진도표시에 대한 대체 텍스트. @page 및 @total 변수 이용가능.", + "default": "총 @total 중 @page 페이지." + }, + { + "label": "네비게이션 메뉴 확장/축소 레이블", + "default": "네비게이션 메뉴 온 오프" + } + ] + } + ] +} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/nb.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/nb.json new file mode 100644 index 0000000..d8db881 --- /dev/null +++ b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/nb.json @@ -0,0 +1,201 @@ +{ + "semantics": [ + { + "label": "Enable book cover", + "description": "A cover that shows info regarding the book before access" + }, + { + "label": "Cover Page", + "fields": [ + { + "label": "Cover description", + "description": "This text will be the description of your book." + }, + { + "label": "Cover image", + "description": "An optional background image for the introduction." + }, + { + "label": "Cover image alternative text", + "description": "An alternative text for the cover image" + } + ] + }, + { + "label": "Pages", + "entity": "Page", + "widgets": [ + { + "label": "Default" + } + ], + "field": { + "label": "Item", + "fields": [ + { + "label": "Page" + } + ] + } + }, + { + "label": "Behavioural settings", + "fields": [ + { + "label": "Display table of contents as default", + "description": "When enabled the table of contents is showed when opening the book" + }, + { + "label": "Display Progress Indicators", + "description": "When enabled there will be indicators per page showing the user if he is done with the page or not." + }, + { + "label": "Enable automatic progress", + "description": "If enabled a page without tasks is considered done when viewed. A page with tasks when all tasks are done. If disabled there will be a button at the bottom of every page for the user to click when done with the page." + }, + { + "label": "Vis sammendrag", + "description": "When enabled the user can see a summary and submit the progress/answers" + } + ] + }, + { + "label": "Translation for \"Read\"", + "default": "Read" + }, + { + "label": "Translation for \"Display 'Table of contents'\"", + "default": "Display 'Table of contents'" + }, + { + "label": "Translation for \"Hide 'Table of contents'\"", + "default": "Hide 'Table of contents'" + }, + { + "label": "Translation for \"Next page\"", + "default": "Neste side" + }, + { + "label": "Translation for \"Previous page\"", + "default": "Forrige side" + }, + { + "label": "Translation for \"Page completed!\"", + "default": "Kapittel ferdig!" + }, + { + "label": "Translation for \"@pages of @total completed\" (@pages and @total will be replaced by actual values)", + "default": "@pages of @total completed" + }, + { + "label": "Translation for \"Incomplete page\"", + "default": "Ikke fullført kapittel" + }, + { + "label": "Translation for \"Navigate to the top\"", + "default": "Gå til toppen" + }, + { + "label": "Translation for \"I have finished this page\"", + "default": "Jeg er ferdig med siden" + }, + { + "label": "Fullscreen button label", + "default": "Fullskjerm" + }, + { + "label": "Exit fullscreen button label", + "default": "Lukk fullskjerm" + }, + { + "label": "Page progress in book", + "description": "\"@count\" will be replaced by page count, and \"@total\" with the total number of pages", + "default": "@count of @total pages" + }, + { + "label": "Interaction progress", + "description": "\"@count\" will be replaced by interaction count, and \"@total\" with the total number of interactions", + "default": "@count av @total oppgaver" + }, + { + "label": "Oversettelse for \"Levér rapport\"", + "default": "Levér rapport" + }, + { + "label": "Label for \"restart\" button", + "default": "Restart" + }, + { + "label": "Summary header", + "default": "Summary" + }, + { + "label": "Translation for \"All interactions\"", + "default": "All interactions" + }, + { + "label": "Translation for \"Unanswered interactions\"", + "default": "Unanswered interactions" + }, + { + "label": "Score", + "description": "\"@score\" will be replaced with current score, and \"@maxscore\" will be replaced with max achievable score", + "default": "@score / @maxscore" + }, + { + "label": "Per page interactions completion", + "description": "\"@left\" will be replaced with remaining interactions, and \"@max\" will be replaced with total number of interactions on the page", + "default": "@left of @max interactions completed" + }, + { + "label": "Translation for \"No interactions\"", + "default": "No interactions" + }, + { + "label": "Translation for \"Score\"", + "default": "Score" + }, + { + "label": "Label for \"Summary & submit\" button", + "default": "Summary & submit" + }, + { + "label": "Translation for \"You have not interacted with any pages.\"", + "default": "You have not interacted with any pages." + }, + { + "label": "Translation for \"You have to interact with at least one page before you can see the summary.\"", + "default": "You have to interact with at least one page before you can see the summary." + }, + { + "label": "Translation for \"Your answers are submitted for review!\"", + "default": "Your answers are submitted for review!" + }, + { + "label": "Summary progress label", + "default": "Book progress" + }, + { + "label": "Interactions progress label", + "default": "Interactions progress" + }, + { + "label": "Total score label", + "default": "Total score" + }, + { + "label": "Accessibility texts", + "fields": [ + { + "label": "Page progress textual alternative", + "description": "An alternative text for the visual page progress. @page and @total variables available.", + "default": "Page @page of @total." + }, + { + "label": "Label for expanding/collapsing navigation menu", + "default": "Toggle navigation menu" + } + ] + } + ] +} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/nl.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/nl.json new file mode 100644 index 0000000..1ecc5e1 --- /dev/null +++ b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/nl.json @@ -0,0 +1,201 @@ +{ + "semantics": [ + { + "label": "Schakel boekomslag in", + "description": "Een omslag die informatie over het boek toont voor toegang" + }, + { + "label": "Omslagpagina", + "fields": [ + { + "label": "Omslagbeschrijving", + "description": "Deze tekst wordt de beschrijving van je boek." + }, + { + "label": "Omslagafbeelding", + "description": "Een optionele achtergrondafbeelding voor de inleiding." + }, + { + "label": "Omslagafbeelding alternatieve tekst", + "description": "Een alternatieve tekst voor de omslagafbeelding" + } + ] + }, + { + "label": "Pagina's", + "entity": "Pagina", + "widgets": [ + { + "label": "Standaard" + } + ], + "field": { + "label": "Item", + "fields": [ + { + "label": "Pagina" + } + ] + } + }, + { + "label": "Gedragsinstellingen", + "fields": [ + { + "label": "Toon standaard de inhoudsopgave", + "description": "Indien ingeschakeld, wordt de inhoudsopgave getoond als het boek wordt geopend" + }, + { + "label": "Toon voortgangsindicatoren", + "description": "Indien ingeschakeld, worden er per pagina indicatoren getoond die de gebruiker tonen hoe ver hij op de pagina gevorderd is." + }, + { + "label": "Schakel automatische voortgang in", + "description": "Indien ingeschakeld, wordt een pagina zonder taken als voltooid beschouwd wanneer die is bekeken, een pagina met taken als die klaar zijn. Indien uitgeschakeld, wordt er een knop getoond op elke pagina waarop de gebruiker kan klikken als hij klaar is met de pagina." + }, + { + "label": "Toon samenvatting", + "description": "Indien ingeschakeld, kan de gebruiker een samenvatting zien en de voortgang/antwoorden inzenden" + } + ] + }, + { + "label": "Vertaling voor \"Lezen\"", + "default": "Lezen" + }, + { + "label": "Vertaling voor \"Toon 'Inhoudsopgave'\"", + "default": "Toon 'Inhoudsopgave'" + }, + { + "label": "Vertaling voor \"Verberg 'Inhoudsopgave'\"", + "default": "Verberg 'Inhoudsopgave'" + }, + { + "label": "Vertaling voor \"Volgende pagina\"", + "default": "Volgende pagina" + }, + { + "label": "Vertaling voor \"Vorige pagina\"", + "default": "Vorige pagina" + }, + { + "label": "Vertaling voor \"Pagina voltooid!\"", + "default": "Pagina voltooid!" + }, + { + "label": "Vertaling voor \"@pages van @total voltooid\" (@pages en @total worden vervangen door werkelijke waardes)", + "default": "@pages van @total voltooid" + }, + { + "label": "Vertaling voor \"Onvoltooide pagina\"", + "default": "Onvoltooide pagina" + }, + { + "label": "Vertaling voor \"Navigeer naar boven\"", + "default": "Navigeer naar boven" + }, + { + "label": "Vertaling voor \"Ik heb deze pagina voltooid\"", + "default": "Ik heb deze pagina voltooid" + }, + { + "label": "Label van \"Volledig scherm\"-knop", + "default": "Volledig scherm" + }, + { + "label": "Label van \"Volledig scherm afsluiten\"-knop", + "default": "Volledig scherm afsluiten" + }, + { + "label": "Paginavoortgang in boek", + "description": "\"@count\" wordt vervangen door paginatelling, en \"@total\" door het totaal aantal pagina's", + "default": "@count van @total pagina's" + }, + { + "label": "Interactie voortgang", + "description": "\"@count\" wordt vervangen door interactietelling, en \"@total\" door het totaal aantal interacties", + "default": "@count van @total interacties" + }, + { + "label": "Vertaling voor \"Rapport verzenden\"", + "default": "Rapport verzenden" + }, + { + "label": "Label voor \"Opnieuw starten\"-knop", + "default": "Opnieuw starten" + }, + { + "label": "Titel van samenvatting", + "default": "Samenvatting" + }, + { + "label": "Vertaling voor \"Alle interacties\"", + "default": "Alle interacties" + }, + { + "label": "Vertaling voor \"Niet-beantwoorde interacties\"", + "default": "Niet-beantwoorde interacties" + }, + { + "label": "Score", + "description": "\"@score\" wordt vervangen door huidige score, en \"@maxscore\" wordt vervangen door max. haalbare score", + "default": "@score / @maxscore" + }, + { + "label": "Voltooiing van interacties per pagina", + "description": "\"@left\" wordt vervangen door resterende interacties, en \"@max\" wordt vervangen door het totaal aantal interacties op de pagina", + "default": "@left van @max interacties afgerond" + }, + { + "label": "Vertaling voor \"Geen interacties\"", + "default": "Geen interacties" + }, + { + "label": "Vertaling voor \"Score\"", + "default": "Score" + }, + { + "label": "Label voor \"Samenvatting & verzenden\"-knop", + "default": "Samenvatting & verzenden" + }, + { + "label": "Vertaling voor \"Er zijn geen interacties met pagina's.\"", + "default": "Er zijn geen interacties met pagina's." + }, + { + "label": "Vertaling voor \"Je moet tenminste één interactie hebben voltooid om de samenvatting te kunnen zien.\"", + "default": "Je moet tenminste één interactie hebben voltooid om de samenvatting te kunnen zien." + }, + { + "label": "Vertaling voor \"Je antwoorden zijn verzonden voor beoordeling!\"", + "default": "Je antwoorden zijn verzonden voor beoordeling!" + }, + { + "label": "Label voor voortgang in samenvatting", + "default": "Boekvoortgang" + }, + { + "label": "Label voor voortgang bij interacties", + "default": "Interactievoortgang" + }, + { + "label": "Label voor totaalscore", + "default": "Totaalscore" + }, + { + "label": "Toegankelijkheidsteksten", + "fields": [ + { + "label": "Alternatieve tekst voor paginavoortgang", + "description": "Een alternatieve tekst voor de visuele paginavoortgang. @page en @total variabelen beschikbaar.", + "default": "Pagina @page van @total." + }, + { + "label": "Label voor uitvouwen/invouwen navigatiemenu", + "default": "Uit-/invouwen navigatiemenu" + } + ] + } + ] +} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/nn.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/nn.json new file mode 100644 index 0000000..3cdeae6 --- /dev/null +++ b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/nn.json @@ -0,0 +1,201 @@ +{ + "semantics": [ + { + "label": "Enable book cover", + "description": "A cover that shows info regarding the book before access" + }, + { + "label": "Cover Page", + "fields": [ + { + "label": "Cover description", + "description": "This text will be the description of your book." + }, + { + "label": "Cover image", + "description": "An optional background image for the introduction." + }, + { + "label": "Cover image alternative text", + "description": "An alternative text for the cover image" + } + ] + }, + { + "label": "Pages", + "entity": "Page", + "widgets": [ + { + "label": "Default" + } + ], + "field": { + "label": "Item", + "fields": [ + { + "label": "Page" + } + ] + } + }, + { + "label": "Behavioural settings", + "fields": [ + { + "label": "Display table of contents as default", + "description": "When enabled the table of contents is showed when opening the book" + }, + { + "label": "Display Progress Indicators", + "description": "When enabled there will be indicators per page showing the user if he is done with the page or not." + }, + { + "label": "Enable automatic progress", + "description": "If enabled a page without tasks is considered done when viewed. A page with tasks when all tasks are done. If disabled there will be a button at the bottom of every page for the user to click when done with the page." + }, + { + "label": "Display summary", + "description": "When enabled the user can see a summary and submit the progress/answers" + } + ] + }, + { + "label": "Translation for \"Read\"", + "default": "Les" + }, + { + "label": "Translation for \"Display 'Table of contents'\"", + "default": "Vis 'Table of contents'" + }, + { + "label": "Translation for \"Hide 'Table of contents'\"", + "default": "Skjul 'Table of contents'" + }, + { + "label": "Translation for \"Next page\"", + "default": "Neste side" + }, + { + "label": "Translation for \"Previous page\"", + "default": "Førre side" + }, + { + "label": "Translation for \"Page completed!\"", + "default": "Kapittel ferdig!" + }, + { + "label": "Translation for \"@pages of @total completed\" (@pages and @total will be replaced by actual values)", + "default": "@pages av @total fullført" + }, + { + "label": "Translation for \"Incomplete page\"", + "default": "Ikkje fullført kapittel" + }, + { + "label": "Translation for \"Navigate to the top\"", + "default": "Gå til toppen" + }, + { + "label": "Translation for \"I have finished this page\"", + "default": "Eg er ferdig med sida" + }, + { + "label": "Fullscreen button label", + "default": "Fullskjerm" + }, + { + "label": "Exit fullscreen button label", + "default": "Lukk fullskjerm" + }, + { + "label": "Page progress in book", + "description": "\"@count\" will be replaced by page count, and \"@total\" with the total number of pages", + "default": "@count of @total pages" + }, + { + "label": "Interaction progress", + "description": "\"@count\" will be replaced by interaction count, and \"@total\" with the total number of interactions", + "default": "@count of @total interactions" + }, + { + "label": "Translation for \"Submit report\"", + "default": "Submit Report" + }, + { + "label": "Label for \"restart\" button", + "default": "Restart" + }, + { + "label": "Summary header", + "default": "Summary" + }, + { + "label": "Translation for \"All interactions\"", + "default": "All interactions" + }, + { + "label": "Translation for \"Unanswered interactions\"", + "default": "Unanswered interactions" + }, + { + "label": "Score", + "description": "\"@score\" will be replaced with current score, and \"@maxscore\" will be replaced with max achievable score", + "default": "@score / @maxscore" + }, + { + "label": "Per page interactions completion", + "description": "\"@left\" will be replaced with remaining interactions, and \"@max\" will be replaced with total number of interactions on the page", + "default": "@left of @max interactions completed" + }, + { + "label": "Translation for \"No interactions\"", + "default": "No interactions" + }, + { + "label": "Translation for \"Score\"", + "default": "Score" + }, + { + "label": "Label for \"Summary & submit\" button", + "default": "Summary & submit" + }, + { + "label": "Translation for \"You have not interacted with any pages.\"", + "default": "You have not interacted with any pages." + }, + { + "label": "Translation for \"You have to interact with at least one page before you can see the summary.\"", + "default": "You have to interact with at least one page before you can see the summary." + }, + { + "label": "Translation for \"Your answers are submitted for review!\"", + "default": "Your answers are submitted for review!" + }, + { + "label": "Summary progress label", + "default": "Book progress" + }, + { + "label": "Interactions progress label", + "default": "Interactions progress" + }, + { + "label": "Total score label", + "default": "Total score" + }, + { + "label": "Accessibility texts", + "fields": [ + { + "label": "Page progress textual alternative", + "description": "An alternative text for the visual page progress. @page and @total variables available.", + "default": "Side @page av @total." + }, + { + "label": "Label for expanding/collapsing navigation menu", + "default": "Slå på navigasjonsmeny" + } + ] + } + ] +} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/pt-br.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/pt-br.json new file mode 100644 index 0000000..982093b --- /dev/null +++ b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/pt-br.json @@ -0,0 +1,201 @@ +{ + "semantics": [ + { + "label": "Habilitar página de capa", + "description": "Habilita capa que mostra informações sobre o livro antes do acesso" + }, + { + "label": "Página de capa", + "fields": [ + { + "label": "Descrição da capa", + "description": "Texto exibido como descrição do livro." + }, + { + "label": "Imagem da capa", + "description": "Imagem opcional de fundo para a introdução." + }, + { + "label": "Text alternativo da imagem de capa", + "description": "Descrição da imagem de capa. É exibido quando a imagem não puder ser apresentada." + } + ] + }, + { + "label": "Capítulos", + "entity": "Capítulo", + "widgets": [ + { + "label": "Padrão" + } + ], + "field": { + "label": "Item", + "fields": [ + { + "label": "Capítulo" + } + ] + } + }, + { + "label": "Configurações comportamentais", + "fields": [ + { + "label": "Exibir Estrutura de Tópicos como padrão", + "description": "Exibe a Estrutra de Tópicos ao abrir o livro" + }, + { + "label": "Exibir indicador de progresso", + "description": "Exibe indicadores por página mostrando o que o usuário já concluiu e o que está pendente." + }, + { + "label": "Habilitar progresso automático", + "description": "Se habilitado, as páginas sem atividades são marcadas como concluídas quando são visualizadas, enquanto as páginas com atividades são marcadas apenas quando o usuário envia todas as atividades. Se desabilitado, exibe um botão no rodapé das páginas para o usuário indicar os conteúdos concluídos." + }, + { + "label": "Display summary", + "description": "When enabled the user can see a summary and submit the progress/answers" + } + ] + }, + { + "label": "Tradução para \"Ler\"", + "default": "Ler" + }, + { + "label": "Tradução para \"Exibir 'Estrutura de Tópicos'\"", + "default": "Display 'Table of contents'" + }, + { + "label": "Tradução para \"Hide 'Table of contents'\"", + "default": "Hide 'Table of contents'" + }, + { + "label": "Tradução para \"Próxima página\"", + "default": "Próxima página" + }, + { + "label": "Tradução para \"Página anterior\"", + "default": "Página anterior" + }, + { + "label": "Tradução para \"Aula concluída!\"", + "default": "Aula concluída!" + }, + { + "label": "Tradução para \"@pages de @total concluídas\" (@pages e @total serão substituídas pelos valores atuais para o usuário)", + "default": "@pages de @total concluídas" + }, + { + "label": "Tradução para \"Aula incompleta\"", + "default": "Aula incompleta" + }, + { + "label": "Tradução para \"Retornar ao topo\"", + "default": "Retornar ao topo" + }, + { + "label": "Tradução para \"Eu concluí o estudo desta página\"", + "default": "Eu concluí o estudo desta página" + }, + { + "label": "Texto do botão de tela cheia", + "default": "Tela cheia" + }, + { + "label": "Texto do botão Sair da tela cheia", + "default": "Sair da tela cheia" + }, + { + "label": "Page progress in book", + "description": "\"@count\" will be replaced by page count, and \"@total\" with the total number of pages", + "default": "@count of @total pages" + }, + { + "label": "Interaction progress", + "description": "\"@count\" will be replaced by interaction count, and \"@total\" with the total number of interactions", + "default": "@count of @total interactions" + }, + { + "label": "Translation for \"Submit report\"", + "default": "Submit Report" + }, + { + "label": "Label for \"restart\" button", + "default": "Restart" + }, + { + "label": "Summary header", + "default": "Summary" + }, + { + "label": "Translation for \"All interactions\"", + "default": "All interactions" + }, + { + "label": "Translation for \"Unanswered interactions\"", + "default": "Unanswered interactions" + }, + { + "label": "Score", + "description": "\"@score\" will be replaced with current score, and \"@maxscore\" will be replaced with max achievable score", + "default": "@score / @maxscore" + }, + { + "label": "Per page interactions completion", + "description": "\"@left\" will be replaced with remaining interactions, and \"@max\" will be replaced with total number of interactions on the page", + "default": "@left of @max interactions completed" + }, + { + "label": "Translation for \"No interactions\"", + "default": "No interactions" + }, + { + "label": "Translation for \"Score\"", + "default": "Score" + }, + { + "label": "Label for \"Summary & submit\" button", + "default": "Summary & submit" + }, + { + "label": "Translation for \"You have not interacted with any pages.\"", + "default": "You have not interacted with any pages." + }, + { + "label": "Translation for \"You have to interact with at least one page before you can see the summary.\"", + "default": "You have to interact with at least one page before you can see the summary." + }, + { + "label": "Translation for \"Your answers are submitted for review!\"", + "default": "Your answers are submitted for review!" + }, + { + "label": "Summary progress label", + "default": "Book progress" + }, + { + "label": "Interactions progress label", + "default": "Interactions progress" + }, + { + "label": "Total score label", + "default": "Total score" + }, + { + "label": "Textos de acessibilidade", + "fields": [ + { + "label": "Texto alternativo para progresso da página", + "description": "Texto alternativo para indicação visual de progresse da página. Varíaveis @page e @total disponíveis.", + "default": "Página @page de @total." + }, + { + "label": "Texto para expandir/colapsar menu de navegação", + "default": "Exibir/Ocultar menu de navegação" + } + ] + } + ] +} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/ru.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/ru.json new file mode 100644 index 0000000..d2d519a --- /dev/null +++ b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/ru.json @@ -0,0 +1,201 @@ +{ + "semantics": [ + { + "label": "Добавить обложку книги", + "description": "Обложка, которая показывается перед открыванием книги" + }, + { + "label": "Обложка", + "fields": [ + { + "label": "Название книги", + "description": "Этот текст содержит описание книги." + }, + { + "label": "Изображение на обложке", + "description": "Дополнительное изображение на обложке." + }, + { + "label": "Название изображения на обложке", + "description": "Текст, появляющийся при наведении указателя на изображение" + } + ] + }, + { + "label": "Страницы", + "entity": "Страница", + "widgets": [ + { + "label": "По умолчанию" + } + ], + "field": { + "label": "Элемент", + "fields": [ + { + "label": "Страница" + } + ] + } + }, + { + "label": "Настройки поведения", + "fields": [ + { + "label": "Показывать содержание по умолчанию", + "description": "Если включено, содержание показывается сразу после октрывания книги" + }, + { + "label": "Показывать индикатор выполнения", + "description": "Если включено, на каждой странице показывается индикатор выполнения заданий." + }, + { + "label": "Автоподтверждение выполнения", + "description": "Если включено, то страница без заданий отмечается пройденной сразу после просмотра, а страница с заданиями - после из выполнения. Если выключено - требуется подтверждать выполнение кнопкой внизу каждой страницы." + }, + { + "label": "Показывать страницу Итоги", + "description": "Если включено, добавляется страница с результатами прохождения и кнопкой их отправки" + } + ] + }, + { + "label": "Перевод для \"Читать\"", + "default": "Читать" + }, + { + "label": "Перевод для \"Показать содержание\"", + "default": "Показать содержание" + }, + { + "label": "Перевод для \"Скрыть содержание\"", + "default": "Скрыть содержание" + }, + { + "label": "Перевод для \"Следующая страница\"", + "default": "Следующая страница" + }, + { + "label": "Перевод для \"Предыдущая страница\"", + "default": "Предыдущая страница" + }, + { + "label": "Перевод для \"Задания выполнены!\"", + "default": "Задания выполнены!" + }, + { + "label": "Перевод для \"@pages из @total выполнено\" (@pages и @total заменятся на текущие значения)", + "default": "@pages из @total выполнено" + }, + { + "label": "Перевод для \"Incomplete page\"", + "default": "Incomplete page" + }, + { + "label": "Перевод для \"К началу страницы\"", + "default": "К началу страницы" + }, + { + "label": "Перевод для \"Я выполнил задания этой страницы\"", + "default": "Я выполнил задания этой страницы" + }, + { + "label": "Кнопка Развернуть на весь экран", + "default": "Развернуть на весь экран" + }, + { + "label": "Кнопка Выйти из полноэкранного режима", + "default": "Выйти из полноэкранного режима" + }, + { + "label": "Номер открытой страницы", + "description": "\"@count\" заменится на номер открытой страницы, а \"@total\" - на общее количество страниц", + "default": "Страница @count из @total" + }, + { + "label": "Счетчик просмотренных заданий", + "description": "\"@count\" заменится на счетчик просмотренных заданий, а \"@total\" - на их общее число", + "default": "@count из @total просмотрено" + }, + { + "label": "Перевод для \"Итоги\"", + "default": "Итоги" + }, + { + "label": "Надпись на кнопке \"Перепройти\"", + "default": "Перепройти" + }, + { + "label": "Заголовок страницы Итоги курса", + "default": "Итоги курса" + }, + { + "label": "Перевод для \"Всего заданий просмотрено\"", + "default": "Всего заданий просмотрено" + }, + { + "label": "Перевод для \"Невыполненные задания\"", + "default": "Невыполненные задания" + }, + { + "label": "Баллы", + "description": "\"@score\" заменится на уже набранные баллы, \"@maxscore\" - на максимально возможное их количество", + "default": "@score / @maxscore" + }, + { + "label": "Осталось пройти на странице", + "description": "\"@left\" заменится на число непросмотренных заданий текущей страницы, а \"@max\" - на их общее количество", + "default": "Осталось на странице @left из @max" + }, + { + "label": "Перевод для \"Заданий нет\"", + "default": "Заданий нет" + }, + { + "label": "Перевод для \"Баллы\"", + "default": "Баллы" + }, + { + "label": "Надпись на кнопке \"Отправить ответы\"", + "default": "Отправить ответы" + }, + { + "label": "Перевод для \"Вы не завершили ни одной страницы.\"", + "default": "Вы не завершили ни одной страницы." + }, + { + "label": "Перевод для \"Для показа Итогов требуется завершить хотя бы одну страницу.\"", + "default": "Для показа Итогов требуется завершить хотя бы одну страницу." + }, + { + "label": "Перевод для \"Ваши ответы отправлены!\"", + "default": "Ваши ответы отправлены!" + }, + { + "label": "Заголовок Страниц просмотрено", + "default": "Страниц просмотрено" + }, + { + "label": "Заголовок Заданий просмотрено", + "default": "Заданий просмотрено" + }, + { + "label": "Заголовок Набрано баллов", + "default": "Набрано баллов" + }, + { + "label": "Accessibility texts", + "fields": [ + { + "label": "Page progress textual alternative", + "description": "An alternative text for the visual page progress. @page and @total variables available.", + "default": "Page @page of @total." + }, + { + "label": "Label for expanding/collapsing navigation menu", + "default": "Toggle navigation menu" + } + ] + } + ] +} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/sl.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/sl.json new file mode 100644 index 0000000..fa9858b --- /dev/null +++ b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/sl.json @@ -0,0 +1,201 @@ +{ + "semantics": [ + { + "label": "Omogoči naslovno stran", + "description": "Na strani udeleženci že pred vstopom preberejo informacije o knjigi." + }, + { + "label": "Naslovna stran", + "fields": [ + { + "label": "Opis naslovne strani", + "description": "Besedilo opisuje vsebino knjige." + }, + { + "label": "Naslovna slika", + "description": "Neobvezna slika za ozadje naslovne strani." + }, + { + "label": "Nadomestno besedilo naslovne slike", + "description": "Besedilo z opisom naslovne slike za bralnike zaslona" + } + ] + }, + { + "label": "Strani", + "entity": "Stran", + "widgets": [ + { + "label": "Privzeto" + } + ], + "field": { + "label": "Element", + "fields": [ + { + "label": "Stran" + } + ] + } + }, + { + "label": "Nastavitve interakcije", + "fields": [ + { + "label": "Kazalo vsebin prikaži privzeto", + "description": "Omogočena nastavitev kazalo vsebin prikaže ob odprtju knjige." + }, + { + "label": "Prikaži indikatorje napredovanja", + "description": "Indikatorji udeležencu sporočijo status ogleda/zaključenosti posamezne strani." + }, + { + "label": "Omogoči samodejno beleženje napredovanja", + "description": "Brez samodejnega beleženja napredovanja, morajo udeleženci napredovanje potrditi s pomočjo potrditvenega polja." + }, + { + "label": "Prikaži stran s povzetkom", + "description": "Udeležencem se na dodatni strani prikaže povzetek interakcij oz. napredovanja." + } + ] + }, + { + "label": "Besedilo za \"Preberi\"", + "default": "Preberi" + }, + { + "label": "Besedilo za \"Prikaži 'kazalo vsebine'\"", + "default": "Prikaži 'kazalo vsebine'" + }, + { + "label": "Besedilo za \"Skrij 'kazalo vsebine'\"", + "default": "Skrij 'kazalo vsebine'" + }, + { + "label": "Besedilo za \"Naslednja stran\"", + "default": "Naslednja stran" + }, + { + "label": "Besedilo za \"Prejšnja stran\"", + "default": "Prejšnja stran" + }, + { + "label": "Besedilo za \"Stran zaključena!\"", + "default": "Stran zaključena!" + }, + { + "label": "Besedilo za \"Zaključeno @pages od @total\". @pages in @total sta spremenljivki.", + "default": "Zaključeno @pages od @total" + }, + { + "label": "Besedilo za \"Nezaključena stran\"", + "default": "Nezaključena stran" + }, + { + "label": "Besedilo za \"Na vrh\"", + "default": "Na vrh" + }, + { + "label": "Besedilo za \"Stran zaključena\"", + "default": "Stran zaključena" + }, + { + "label": "Besedilo za celozaslonski način", + "default": "Celozaslonski način" + }, + { + "label": "Besedilo za zaključek celozaslonskega načina", + "default": "Zapusti celozaslonski način" + }, + { + "label": "Napredek ogleda strani v knjigi", + "description": "\"@count\" in \"@total\" sta spremenljivki.", + "default": "Strani: @count od @total" + }, + { + "label": "Napredek interakcij v knjigi", + "description": "\"@count\" in \"@total\" sta spremenljivki.", + "default": "Interakcije: @count od @total" + }, + { + "label": "Besedilo za \"Oddaj poročilo\"", + "default": "Oddaj poročilo" + }, + { + "label": "Besedilo za gumb \"Poskusi ponovno\"", + "default": "Poskusi ponovno" + }, + { + "label": "Naslov strani s povzetkom", + "default": "Povzetek" + }, + { + "label": "Besedilo za \"Vse interakcije\"", + "default": "Vse interakcije" + }, + { + "label": "Besedilo za \"Nezaključene interakcije\"", + "default": "Nezaključene interakcije" + }, + { + "label": "Dosežek", + "description": "\"@score\" in \"@maxscore\" sta spremenljivki.", + "default": "@score / @maxscore" + }, + { + "label": "Napredek v interakcijah knjige po straneh", + "description": "\"@left\" in \"@max\" sta spremenljivki.", + "default": "Zaključene interakcije: @left od @max" + }, + { + "label": "Besedilo za \"Ni interakcij\"", + "default": "Ni interakcij" + }, + { + "label": "Besedilo za \"Dosežek\"", + "default": "Dosežek" + }, + { + "label": "Besedilo za gumb \"Povzetek\"", + "default": "Povzetek" + }, + { + "label": "Besedilo za \"Ni interakcij\"", + "default": "Ni interakcij" + }, + { + "label": "Besedilo za \"Pred ogledom povzetka je treba zaključiti vsaj eno interakcijo.\"", + "default": "Pred ogledom povzetka je treba zaključiti vsaj eno interakcijo." + }, + { + "label": "Besedilo za \"Odgovori so oddani v pregled!\"", + "default": "Odgovori so oddani v pregled!" + }, + { + "label": "Besedilo za indikator Ogled knjige", + "default": "Ogled knjige" + }, + { + "label": "Besedilo za indikator Zaključene interakcije", + "default": "Zaključene interakcije" + }, + { + "label": "Besedilo za indikator Skupen dosežek", + "default": "Skupen dosežek" + }, + { + "label": "Besedilo za dostopnost vsebin", + "fields": [ + { + "label": "Besedilo za napredek ogleda strani", + "description": "Nadomestno besedilo za vizualizacijo napredka ogleda strani. @page in @total sta spremenljivki.", + "default": "Stran @page od @total." + }, + { + "label": "Besedilo za kazalo vsebine", + "default": "Kazalo vsebine za navigacijo" + } + ] + } + ] +} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/sma.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/sma.json new file mode 100644 index 0000000..fc2c8d3 --- /dev/null +++ b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/sma.json @@ -0,0 +1,201 @@ +{ + "semantics": [ + { + "label": "Enable book cover", + "description": "A cover that shows info regarding the book before access" + }, + { + "label": "Cover Page", + "fields": [ + { + "label": "Cover description", + "description": "This text will be the description of your book." + }, + { + "label": "Cover image", + "description": "An optional background image for the introduction." + }, + { + "label": "Cover image alternative text", + "description": "An alternative text for the cover image" + } + ] + }, + { + "label": "Pages", + "entity": "Page", + "widgets": [ + { + "label": "Default" + } + ], + "field": { + "label": "Item", + "fields": [ + { + "label": "Page" + } + ] + } + }, + { + "label": "Behavioural settings", + "fields": [ + { + "label": "Display table of contents as default", + "description": "When enabled the table of contents is showed when opening the book" + }, + { + "label": "Display Progress Indicators", + "description": "When enabled there will be indicators per page showing the user if he is done with the page or not." + }, + { + "label": "Enable automatic progress", + "description": "If enabled a page without tasks is considered done when viewed. A page with tasks when all tasks are done. If disabled there will be a button at the bottom of every page for the user to click when done with the page." + }, + { + "label": "Display summary", + "description": "When enabled the user can see a summary and submit the progress/answers" + } + ] + }, + { + "label": "Translation for \"Read\"", + "default": "Read" + }, + { + "label": "Translation for \"Display 'Table of contents'\"", + "default": "Display 'Table of contents'" + }, + { + "label": "Translation for \"Hide 'Table of contents'\"", + "default": "Hide 'Table of contents'" + }, + { + "label": "Translation for \"Next page\"", + "default": "Next page" + }, + { + "label": "Translation for \"Previous page\"", + "default": "Previous page" + }, + { + "label": "Translation for \"Page completed!\"", + "default": "Page completed!" + }, + { + "label": "Translation for \"@pages of @total completed\" (@pages and @total will be replaced by actual values)", + "default": "@pages of @total completed" + }, + { + "label": "Translation for \"Incomplete page\"", + "default": "Incomplete page" + }, + { + "label": "Translation for \"Navigate to the top\"", + "default": "Navigate to the top" + }, + { + "label": "Translation for \"I have finished this page\"", + "default": "I have finished this page" + }, + { + "label": "Fullscreen button label", + "default": "Fullscreen" + }, + { + "label": "Exit fullscreen button label", + "default": "Exit fullscreen" + }, + { + "label": "Page progress in book", + "description": "\"@count\" will be replaced by page count, and \"@total\" with the total number of pages", + "default": "@count of @total pages" + }, + { + "label": "Interaction progress", + "description": "\"@count\" will be replaced by interaction count, and \"@total\" with the total number of interactions", + "default": "@count of @total interactions" + }, + { + "label": "Translation for \"Submit report\"", + "default": "Submit Report" + }, + { + "label": "Label for \"restart\" button", + "default": "Restart" + }, + { + "label": "Summary header", + "default": "Summary" + }, + { + "label": "Translation for \"All interactions\"", + "default": "All interactions" + }, + { + "label": "Translation for \"Unanswered interactions\"", + "default": "Unanswered interactions" + }, + { + "label": "Score", + "description": "\"@score\" will be replaced with current score, and \"@maxscore\" will be replaced with max achievable score", + "default": "@score / @maxscore" + }, + { + "label": "Per page interactions completion", + "description": "\"@left\" will be replaced with remaining interactions, and \"@max\" will be replaced with total number of interactions on the page", + "default": "@left of @max interactions completed" + }, + { + "label": "Translation for \"No interactions\"", + "default": "No interactions" + }, + { + "label": "Translation for \"Score\"", + "default": "Score" + }, + { + "label": "Label for \"Summary & submit\" button", + "default": "Summary & submit" + }, + { + "label": "Translation for \"You have not interacted with any pages.\"", + "default": "You have not interacted with any pages." + }, + { + "label": "Translation for \"You have to interact with at least one page before you can see the summary.\"", + "default": "You have to interact with at least one page before you can see the summary." + }, + { + "label": "Translation for \"Your answers are submitted for review!\"", + "default": "Your answers are submitted for review!" + }, + { + "label": "Summary progress label", + "default": "Book progress" + }, + { + "label": "Interactions progress label", + "default": "Interactions progress" + }, + { + "label": "Total score label", + "default": "Total score" + }, + { + "label": "Accessibility texts", + "fields": [ + { + "label": "Page progress textual alternative", + "description": "An alternative text for the visual page progress. @page and @total variables available.", + "default": "Page @page of @total." + }, + { + "label": "Label for expanding/collapsing navigation menu", + "default": "Toggle navigation menu" + } + ] + } + ] +} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/sme.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/sme.json new file mode 100644 index 0000000..fc2c8d3 --- /dev/null +++ b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/sme.json @@ -0,0 +1,201 @@ +{ + "semantics": [ + { + "label": "Enable book cover", + "description": "A cover that shows info regarding the book before access" + }, + { + "label": "Cover Page", + "fields": [ + { + "label": "Cover description", + "description": "This text will be the description of your book." + }, + { + "label": "Cover image", + "description": "An optional background image for the introduction." + }, + { + "label": "Cover image alternative text", + "description": "An alternative text for the cover image" + } + ] + }, + { + "label": "Pages", + "entity": "Page", + "widgets": [ + { + "label": "Default" + } + ], + "field": { + "label": "Item", + "fields": [ + { + "label": "Page" + } + ] + } + }, + { + "label": "Behavioural settings", + "fields": [ + { + "label": "Display table of contents as default", + "description": "When enabled the table of contents is showed when opening the book" + }, + { + "label": "Display Progress Indicators", + "description": "When enabled there will be indicators per page showing the user if he is done with the page or not." + }, + { + "label": "Enable automatic progress", + "description": "If enabled a page without tasks is considered done when viewed. A page with tasks when all tasks are done. If disabled there will be a button at the bottom of every page for the user to click when done with the page." + }, + { + "label": "Display summary", + "description": "When enabled the user can see a summary and submit the progress/answers" + } + ] + }, + { + "label": "Translation for \"Read\"", + "default": "Read" + }, + { + "label": "Translation for \"Display 'Table of contents'\"", + "default": "Display 'Table of contents'" + }, + { + "label": "Translation for \"Hide 'Table of contents'\"", + "default": "Hide 'Table of contents'" + }, + { + "label": "Translation for \"Next page\"", + "default": "Next page" + }, + { + "label": "Translation for \"Previous page\"", + "default": "Previous page" + }, + { + "label": "Translation for \"Page completed!\"", + "default": "Page completed!" + }, + { + "label": "Translation for \"@pages of @total completed\" (@pages and @total will be replaced by actual values)", + "default": "@pages of @total completed" + }, + { + "label": "Translation for \"Incomplete page\"", + "default": "Incomplete page" + }, + { + "label": "Translation for \"Navigate to the top\"", + "default": "Navigate to the top" + }, + { + "label": "Translation for \"I have finished this page\"", + "default": "I have finished this page" + }, + { + "label": "Fullscreen button label", + "default": "Fullscreen" + }, + { + "label": "Exit fullscreen button label", + "default": "Exit fullscreen" + }, + { + "label": "Page progress in book", + "description": "\"@count\" will be replaced by page count, and \"@total\" with the total number of pages", + "default": "@count of @total pages" + }, + { + "label": "Interaction progress", + "description": "\"@count\" will be replaced by interaction count, and \"@total\" with the total number of interactions", + "default": "@count of @total interactions" + }, + { + "label": "Translation for \"Submit report\"", + "default": "Submit Report" + }, + { + "label": "Label for \"restart\" button", + "default": "Restart" + }, + { + "label": "Summary header", + "default": "Summary" + }, + { + "label": "Translation for \"All interactions\"", + "default": "All interactions" + }, + { + "label": "Translation for \"Unanswered interactions\"", + "default": "Unanswered interactions" + }, + { + "label": "Score", + "description": "\"@score\" will be replaced with current score, and \"@maxscore\" will be replaced with max achievable score", + "default": "@score / @maxscore" + }, + { + "label": "Per page interactions completion", + "description": "\"@left\" will be replaced with remaining interactions, and \"@max\" will be replaced with total number of interactions on the page", + "default": "@left of @max interactions completed" + }, + { + "label": "Translation for \"No interactions\"", + "default": "No interactions" + }, + { + "label": "Translation for \"Score\"", + "default": "Score" + }, + { + "label": "Label for \"Summary & submit\" button", + "default": "Summary & submit" + }, + { + "label": "Translation for \"You have not interacted with any pages.\"", + "default": "You have not interacted with any pages." + }, + { + "label": "Translation for \"You have to interact with at least one page before you can see the summary.\"", + "default": "You have to interact with at least one page before you can see the summary." + }, + { + "label": "Translation for \"Your answers are submitted for review!\"", + "default": "Your answers are submitted for review!" + }, + { + "label": "Summary progress label", + "default": "Book progress" + }, + { + "label": "Interactions progress label", + "default": "Interactions progress" + }, + { + "label": "Total score label", + "default": "Total score" + }, + { + "label": "Accessibility texts", + "fields": [ + { + "label": "Page progress textual alternative", + "description": "An alternative text for the visual page progress. @page and @total variables available.", + "default": "Page @page of @total." + }, + { + "label": "Label for expanding/collapsing navigation menu", + "default": "Toggle navigation menu" + } + ] + } + ] +} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/smj.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/smj.json new file mode 100644 index 0000000..fc2c8d3 --- /dev/null +++ b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/smj.json @@ -0,0 +1,201 @@ +{ + "semantics": [ + { + "label": "Enable book cover", + "description": "A cover that shows info regarding the book before access" + }, + { + "label": "Cover Page", + "fields": [ + { + "label": "Cover description", + "description": "This text will be the description of your book." + }, + { + "label": "Cover image", + "description": "An optional background image for the introduction." + }, + { + "label": "Cover image alternative text", + "description": "An alternative text for the cover image" + } + ] + }, + { + "label": "Pages", + "entity": "Page", + "widgets": [ + { + "label": "Default" + } + ], + "field": { + "label": "Item", + "fields": [ + { + "label": "Page" + } + ] + } + }, + { + "label": "Behavioural settings", + "fields": [ + { + "label": "Display table of contents as default", + "description": "When enabled the table of contents is showed when opening the book" + }, + { + "label": "Display Progress Indicators", + "description": "When enabled there will be indicators per page showing the user if he is done with the page or not." + }, + { + "label": "Enable automatic progress", + "description": "If enabled a page without tasks is considered done when viewed. A page with tasks when all tasks are done. If disabled there will be a button at the bottom of every page for the user to click when done with the page." + }, + { + "label": "Display summary", + "description": "When enabled the user can see a summary and submit the progress/answers" + } + ] + }, + { + "label": "Translation for \"Read\"", + "default": "Read" + }, + { + "label": "Translation for \"Display 'Table of contents'\"", + "default": "Display 'Table of contents'" + }, + { + "label": "Translation for \"Hide 'Table of contents'\"", + "default": "Hide 'Table of contents'" + }, + { + "label": "Translation for \"Next page\"", + "default": "Next page" + }, + { + "label": "Translation for \"Previous page\"", + "default": "Previous page" + }, + { + "label": "Translation for \"Page completed!\"", + "default": "Page completed!" + }, + { + "label": "Translation for \"@pages of @total completed\" (@pages and @total will be replaced by actual values)", + "default": "@pages of @total completed" + }, + { + "label": "Translation for \"Incomplete page\"", + "default": "Incomplete page" + }, + { + "label": "Translation for \"Navigate to the top\"", + "default": "Navigate to the top" + }, + { + "label": "Translation for \"I have finished this page\"", + "default": "I have finished this page" + }, + { + "label": "Fullscreen button label", + "default": "Fullscreen" + }, + { + "label": "Exit fullscreen button label", + "default": "Exit fullscreen" + }, + { + "label": "Page progress in book", + "description": "\"@count\" will be replaced by page count, and \"@total\" with the total number of pages", + "default": "@count of @total pages" + }, + { + "label": "Interaction progress", + "description": "\"@count\" will be replaced by interaction count, and \"@total\" with the total number of interactions", + "default": "@count of @total interactions" + }, + { + "label": "Translation for \"Submit report\"", + "default": "Submit Report" + }, + { + "label": "Label for \"restart\" button", + "default": "Restart" + }, + { + "label": "Summary header", + "default": "Summary" + }, + { + "label": "Translation for \"All interactions\"", + "default": "All interactions" + }, + { + "label": "Translation for \"Unanswered interactions\"", + "default": "Unanswered interactions" + }, + { + "label": "Score", + "description": "\"@score\" will be replaced with current score, and \"@maxscore\" will be replaced with max achievable score", + "default": "@score / @maxscore" + }, + { + "label": "Per page interactions completion", + "description": "\"@left\" will be replaced with remaining interactions, and \"@max\" will be replaced with total number of interactions on the page", + "default": "@left of @max interactions completed" + }, + { + "label": "Translation for \"No interactions\"", + "default": "No interactions" + }, + { + "label": "Translation for \"Score\"", + "default": "Score" + }, + { + "label": "Label for \"Summary & submit\" button", + "default": "Summary & submit" + }, + { + "label": "Translation for \"You have not interacted with any pages.\"", + "default": "You have not interacted with any pages." + }, + { + "label": "Translation for \"You have to interact with at least one page before you can see the summary.\"", + "default": "You have to interact with at least one page before you can see the summary." + }, + { + "label": "Translation for \"Your answers are submitted for review!\"", + "default": "Your answers are submitted for review!" + }, + { + "label": "Summary progress label", + "default": "Book progress" + }, + { + "label": "Interactions progress label", + "default": "Interactions progress" + }, + { + "label": "Total score label", + "default": "Total score" + }, + { + "label": "Accessibility texts", + "fields": [ + { + "label": "Page progress textual alternative", + "description": "An alternative text for the visual page progress. @page and @total variables available.", + "default": "Page @page of @total." + }, + { + "label": "Label for expanding/collapsing navigation menu", + "default": "Toggle navigation menu" + } + ] + } + ] +} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/sv.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/sv.json new file mode 100644 index 0000000..a9911d8 --- /dev/null +++ b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/sv.json @@ -0,0 +1,201 @@ +{ + "semantics": [ + { + "label": "Aktivera bokomslag", + "description": "Ett bokomslag som visar information om boken" + }, + { + "label": "Omslagssida", + "fields": [ + { + "label": "Omslagets beskrivning", + "description": "Denna text beskriver din bok." + }, + { + "label": "Omslagsbild", + "description": "Valfri bakgrundsbild för introduktionen." + }, + { + "label": "Omslagsbildens alternativa text", + "description": "Alternativ text för omslagsbilden" + } + ] + }, + { + "label": "Sidor", + "entity": "Sida", + "widgets": [ + { + "label": "Standard" + } + ], + "field": { + "label": "Post", + "fields": [ + { + "label": "Sida" + } + ] + } + }, + { + "label": "Beteende-inställningar", + "fields": [ + { + "label": "Visa innehållsförteckning som standard", + "description": "När aktiverat så visas innehållsförteckningen vid öppning av boken" + }, + { + "label": "Visa framstegsindikatorer", + "description": "När aktiverat så visas framstegsindikatorer på varje sida, som visar användaren om sidan är färdig eller inte." + }, + { + "label": "Aktivera automatisk framsteg", + "description": "När aktiverat så kommer en sida utan uppgifter att betraktas som genomförd när den är visad.En sida med uppgifter är genomförd när alla uppgifter är genomförda. När inaktiverat så kommer det finnas en knapp längst ned på varje sida där användaren kan klicka när denne är färdig med sidan." + }, + { + "label": "Visa sammanfattning", + "description": "När aktiverat så kan användaren se en sammanfattning och skicka in sina framsteg/ svar." + } + ] + }, + { + "label": "Översättning för \"Läsa\"", + "default": "Läsa" + }, + { + "label": "Översättning för \"Visa 'Innehållsförteckning'\"", + "default": "Visa 'Innehållsförteckning'" + }, + { + "label": "Överstättning för \"Dölj 'Innehållsförteckning'\"", + "default": "Dölj 'Innehållsförteckning'" + }, + { + "label": "Översättning för \"Nästa sida\"", + "default": "Nästa sida" + }, + { + "label": "Översättning för \"Föregående sida\"", + "default": "Föregående sida" + }, + { + "label": "Översättning för \"Sida genomförd!\"", + "default": "Sida genomförd!" + }, + { + "label": "Översättning för \"@pages av @total genomförda\" (@pages och @total kommer ersättas med riktiga värden)", + "default": "@pages av @total genomförda" + }, + { + "label": "Översättning för \"Ej genomförd sida\"", + "default": "Ej genomförd sida" + }, + { + "label": "Översättning för \"Navigera till toppen\"", + "default": "Navigera till toppen" + }, + { + "label": "Översättnin för \"Jag har genomfört denna sida\"", + "default": "Jag har genomfört denna sida" + }, + { + "label": "Etikett för knapp för helskärmsläge", + "default": "Helskärmsläge" + }, + { + "label": "Etikett för knapp för avsluta helskärmsläge", + "default": "Avsluta helskärmsläge" + }, + { + "label": "Framsteg på sidor i bok", + "description": "\"@count\" kommer ersättas med antalet sidor, och \"@total\" med totala antalet sidor", + "default": "@count av @total sidor" + }, + { + "label": "Framsteg i interaktiva övningar", + "description": "\"@count\" kommer ersättas med antalet interaktiva övningar, och \"@total\" med totala antalet interaktiva övningar", + "default": "@count av @total interaktiva övningar" + }, + { + "label": "Översättning för \"Skicka in rapport\"", + "default": "Skicka in rapport" + }, + { + "label": "Etikett för \"starta om\"-knapp", + "default": "Starta om" + }, + { + "label": "Rubrik för sammanfattning", + "default": "Sammanfattning" + }, + { + "label": "Översättning för \"Alla interaktiva övningar\"", + "default": "Alla interaktiva övningar" + }, + { + "label": "Översättning för \"Obesvarade interaktiva övningar\"", + "default": "Obesvarade interaktiva övningar" + }, + { + "label": "Poäng", + "description": "\"@score\" kommer att ersättas med aktuell poäng, och \"@maxscore\" ersättas med max poäng som kan uppnås", + "default": "@score / @maxscore" + }, + { + "label": "Genomförande av interaktiva övningar per sida", + "description": "\"@left\" kommer att ersättas med återstående interaktiva övningar, och \"@max\" ersättas med totala antalet interaktiva övningar på sidan", + "default": "@left of @max interaktiva övningar genomförda" + }, + { + "label": "Översättning för \"Inga interaktiva övningar\"", + "default": "Inga interaktiva övningar" + }, + { + "label": "Översättning för \"Poäng\"", + "default": "Poäng" + }, + { + "label": "Etikett för \"Sammanfattning och skicka in\"-knapp", + "default": "Sammanfattning och skicka in" + }, + { + "label": "Översättning för \"Du har inte genomfört interaktiv övning på någon sida.\"", + "default": "Du har inte genomfört interaktiv övning på någon sida." + }, + { + "label": "Översättning för \"Du måste genomföra åtminstone en sidas interaktiva övningar innan du kan se sammanfattningen.\"", + "default": "Du måste genomföra åtminstone en sidas interaktiva övningar innan du kan se sammanfattningen." + }, + { + "label": "Översättning för \"Dina svar har skickats in för granskning!\"", + "default": "Dina svar har skickats in för granskning!" + }, + { + "label": "Etikett för sammanfattning av framsteg", + "default": "Framsteg i bok" + }, + { + "label": "Etikett för framsteg i interaktiva övningar", + "default": "Framsteg i interaktiva övningar" + }, + { + "label": "Etikett för total poäng", + "default": "Total poäng" + }, + { + "label": "Tillgänglighets-texter", + "fields": [ + { + "label": "Text-alternativ till framsteg på sida", + "description": "En alternativ text för visualiseringen av framsteg på sida. @page och @total variabler finns att använda.", + "default": "Sida @page av @total." + }, + { + "label": "Etikett för att expandera/komprimera navigeringsmenyn", + "default": "Växla läge på navigationsmeny" + } + ] + } + ] +} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/tr.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/tr.json new file mode 100644 index 0000000..7f2f662 --- /dev/null +++ b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/tr.json @@ -0,0 +1,201 @@ +{ + "semantics": [ + { + "label": "Kitap kapağını etkinleştir", + "description": "Etkinlikten önce kitapla ilgili bilgileri gösteren bir kapak" + }, + { + "label": "Kapak Sayfası", + "fields": [ + { + "label": "Kapak açıklaması", + "description": "Bu metin kitabınızın açıklaması olacaktır." + }, + { + "label": "Kapak resmi", + "description": "Kapak için isteğe bağlı bir arka plan resmi." + }, + { + "label": "Kapak resmi alternatif metni", + "description": "Kapak resmi için alternatif bir metin" + } + ] + }, + { + "label": "Sayfalar", + "entity": "Sayfa", + "widgets": [ + { + "label": "Varsayılan" + } + ], + "field": { + "label": "Öge", + "fields": [ + { + "label": "Sayfa" + } + ] + } + }, + { + "label": "Etkinlik Ayarları", + "fields": [ + { + "label": "İçindekileri varsayılan olarak görüntüle", + "description": "Etkinleştirildiğinde, kitap açılırken içindekiler tablosu gösterilir" + }, + { + "label": "İlerleme Göstergelerini Görüntüle", + "description": "Etkinleştirildiğinde, kullanıcının sayfayla işinin bitip bitmediğini gösteren sayfa başına göstergeler olacaktır." + }, + { + "label": "Otomatik ilerlemeyi etkinleştir", + "description": "Etkinleştirilirse, etkinlik olmayan bir sayfa görüntülendiğinde tamamlanmış olarak kabul edilir. Tüm görevler tamamlandığında yeni görevleri içeren bir sayfaya ilerler. Devre dışı bırakılırsa, her sayfanın altında, kullanıcının sayfayla işi bittiğinde tıklaması için bir düğme olacaktır." + }, + { + "label": "Özeti görüntüle", + "description": "Etkinleştirildiğinde, kullanıcı bir özeti görebilir ve ilerlemeyi/cevapları gönderebilir" + } + ] + }, + { + "label": "\"Oku\" için çeviri", + "default": "Oku" + }, + { + "label": "\"'İçindekiler'i Görüntüle\" için çeviri", + "default": "'İçindekiler'i göster" + }, + { + "label": "\"'İçindekiler'i gizle\" çevirisi", + "default": "'İçindekiler'i gizle" + }, + { + "label": "\"Sonraki sayfa\" için çeviri", + "default": "Sonraki Sayfa" + }, + { + "label": "\"Önceki sayfa\" için çeviri", + "default": "Önceki sayfa" + }, + { + "label": "\"Sayfa tamamlandı!\" için çeviri", + "default": "Sayfa tamamlandı!" + }, + { + "label": "\"@total sayfadan @pages sayfa tamamlandı\"nın çevirisi (@pages ve @total gerçek değerlerle değiştirilecektir)", + "default": "@total sayfadan @pages sayfa tamamlandı" + }, + { + "label": "\"Tamamlanmamış sayfa\" için çeviri", + "default": "Tamamlanmamış sayfa" + }, + { + "label": "\"En üste git\"in çevirisi", + "default": "En üste git" + }, + { + "label": "\"Bu sayfayı bitirdim\"in çevirisi", + "default": "Bu sayfayı bitirdim" + }, + { + "label": "Tam ekran düğme etiketi", + "default": "Tam ekran" + }, + { + "label": "Tam ekrandan çık düğme etiketi", + "default": "Tam ekrandan çık" + }, + { + "label": "Kitapta sayfa ilerlemesi", + "description": "\"@count\" sayfa sayısıyla ve \"@total\" toplam sayfa sayısıyla değiştirilecektir", + "default": "@total sayfadan @count sayfa" + }, + { + "label": "Etkileşim ilerlemesi", + "description": "\"@count\" yerine etkileşim sayısı, \"@toplam\" ise toplam etkileşim sayısıyla değiştirilir", + "default": "@total etkileşimden @count etkileşim" + }, + { + "label": "\"Raporu Gönder\"in çevirisi", + "default": "Raporu Gönder" + }, + { + "label": "\"Yeniden Başlat\" düğmesi için etiket", + "default": "Yeniden Başlat" + }, + { + "label": "Özet başlığı", + "default": "Özet" + }, + { + "label": "\"Tüm Etkileşimler\" için çeviri", + "default": "Tüm Etkileşimler" + }, + { + "label": "\"Cevaplanmamış Etkileşimler\"in çevirisi", + "default": "Cevaplanmamış Etkileşimler" + }, + { + "label": "Puan", + "description": "\"@score\" geçerli puanla değiştirilecek ve \"@maxscore\" elde edilebilecek maksimum puanla değiştirilecek", + "default": "@score / @maxscore" + }, + { + "label": "Sayfa başına etkileşim tamamlama", + "description": "\"@left\" kalan etkileşimlerle değiştirilecek ve \"@max\" sayfadaki toplam etkileşim sayısıyla değiştirilecek", + "default": "@max etkileşimden @left etkileşim tamamlandı" + }, + { + "label": "\"Etkileşim Yok\" çevirisi", + "default": "Etkileşim Yok" + }, + { + "label": "\"Puan\" için çeviri", + "default": "Puan" + }, + { + "label": "\"Özet & gönder\" düğmesi için etiket", + "default": "Özet & gönder" + }, + { + "label": "\"Hiçbir sayfayla etkileşim kurmadınız\"ın çevirisi", + "default": "Hiçbir sayfayla etkileşim kurmadınız." + }, + { + "label": "\"Özeti görebilmeniz için en az bir sayfayla etkileşim kurmanız gerekir\"in çevirisi", + "default": "Özeti görebilmeniz için en az bir sayfayla etkileşim kurmanız gerekir." + }, + { + "label": "\"Yanıtlarınız incelemeye gönderildi!\" için çeviri", + "default": "Yanıtlarınız incelemeye gönderildi!" + }, + { + "label": "Özet ilerleme etiketi", + "default": "Kitap ilerlemesi" + }, + { + "label": "Etkileşim ilerleme etiketi", + "default": "Etkileşim ilerlemesi" + }, + { + "label": "Toplam puan etiketi", + "default": "Toplam puan" + }, + { + "label": "Erişilebilirlik metinleri", + "fields": [ + { + "label": "Sayfa ilerleme metni alternatifi", + "description": "Görsel sayfa ilerlemesi için alternatif bir metin. @page yerine sayfa sayısı ve @total yerine toplam sayfa sayısı getirilecek.", + "default": "@total sayfadan @page. sayfa." + }, + { + "label": "Genişleyen/daraltan gezinme menüsü için etiket", + "default": "Gezinme menüsünü aç/kapat" + } + ] + } + ] +} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/library.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/library.json new file mode 100644 index 0000000..5849353 --- /dev/null +++ b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/library.json @@ -0,0 +1,54 @@ +{ + "title": "Interactive Book", + "description": "An interactive book which displays content in pages and sections", + "majorVersion": 1, + "minorVersion": 3, + "patchVersion": 86, + "runnable": 1, + "fullscreen": 1, + "author": "Joubel", + "license": "MIT", + "machineName": "H5P.InteractiveBook", + "embedTypes": [ + "iframe" + ], + "preloadedJs": [ + { + "path": "dist/h5p-interactive-book.js" + } + ], + "preloadedDependencies": [ + { + "machineName": "FontAwesome", + "majorVersion": 4, + "minorVersion": 5 + }, + { + "machineName": "H5P.Column", + "majorVersion": 1, + "minorVersion": 13 + }, + { + "machineName": "H5P.JoubelUI", + "majorVersion": 1, + "minorVersion": 3 + }, + { + "machineName": "H5P.Audio", + "majorVersion": 1, + "minorVersion": 4 + } + ], + "editorDependencies": [ + { + "machineName": "H5PEditor.VerticalTabs", + "majorVersion": 1, + "minorVersion": 3 + }, + { + "machineName": "H5PEditor.ShowWhen", + "majorVersion": 1, + "minorVersion": 0 + } + ] +} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/semantics.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/semantics.json new file mode 100644 index 0000000..931aa5d --- /dev/null +++ b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/semantics.json @@ -0,0 +1,433 @@ +[ + { + "name": "showCoverPage", + "type": "boolean", + "label": "Enable book cover", + "description": "A cover that shows info regarding the book before access", + "importance": "low", + "default": false + }, + { + "name": "bookCover", + "type": "group", + "label": "Cover Page", + "importance": "medium", + "widget": "showWhen", + "showWhen": { + "rules": [ + { + "field": "showCoverPage", + "equals": true + } + ] + }, + "fields": [ + { + "name": "coverDescription", + "type": "text", + "widget": "html", + "label": "Cover description", + "importance": "medium", + "optional": true, + "description": "This text will be the description of your book.", + "enterMode": "p", + "tags": [ + "sub", + "sup", + "strong", + "em", + "p", + "code" + ] + }, + { + "name": "coverImage", + "type": "image", + "label": "Cover image", + "importance": "low", + "optional": true, + "description": "An optional background image for the introduction." + }, + { + "name": "coverAltText", + "type": "text", + "label": "Cover image alternative text", + "importance": "low", + "optional": true, + "description": "An alternative text for the cover image" + } + ] + }, + { + "name": "chapters", + "type": "list", + "label": "Pages", + "entity": "Page", + "widgets": [ + { + "name": "VerticalTabs", + "label": "Default" + } + ], + "importance": "high", + "min": 1, + "max": 50, + "field": { + "name": "item", + "type": "group", + "label": "Item", + "importance": "low", + "expanded": true, + "fields": [ + { + "label": "Page", + "name": "chapter", + "type": "library", + "options": [ + "H5P.Column 1.13" + ] + } + ] + } + }, + { + "name": "behaviour", + "type": "group", + "importance": "low", + "label": "Behavioural settings", + "fields": [ + { + "name": "defaultTableOfContents", + "type": "boolean", + "label": "Display table of contents as default", + "description": "When enabled the table of contents is showed when opening the book", + "default": true + }, + { + "name": "progressIndicators", + "type": "boolean", + "label": "Display Progress Indicators", + "description": "When enabled there will be indicators per page showing the user if he is done with the page or not.", + "default": true + }, + { + "name": "progressAuto", + "type": "boolean", + "label": "Enable automatic progress", + "description": "If enabled a page without tasks is considered done when viewed. A page with tasks when all tasks are done. If disabled there will be a button at the bottom of every page for the user to click when done with the page.", + "default": true, + "widget": "showWhen", + "showWhen": { + "rules": [ + { + "field": "progressIndicators", + "equals": true + } + ] + } + }, + { + "name": "displaySummary", + "type": "boolean", + "label": "Display summary", + "description": "When enabled the user can see a summary and submit the progress/answers", + "default": true + } + ] + }, + { + "name": "read", + "type": "text", + "label": "Translation for \"Read\"", + "importance": "low", + "default": "Read", + "common": true, + "optional": true + }, + { + "name": "displayTOC", + "type": "text", + "label": "Translation for \"Display 'Table of contents'\"", + "importance": "low", + "default": "Display 'Table of contents'", + "common": true, + "optional": true + }, + { + "name": "hideTOC", + "type": "text", + "label": "Translation for \"Hide 'Table of contents'\"", + "importance": "low", + "default": "Hide 'Table of contents'", + "common": true, + "optional": true + }, + { + "name": "nextPage", + "type": "text", + "label": "Translation for \"Next page\"", + "importance": "low", + "default": "Next page", + "common": true, + "optional": true + }, + { + "name": "previousPage", + "type": "text", + "label": "Translation for \"Previous page\"", + "importance": "low", + "default": "Previous page", + "common": true, + "optional": true + }, + { + "name": "chapterCompleted", + "type": "text", + "label": "Translation for \"Page completed!\"", + "importance": "low", + "default": "Page completed!", + "common": true, + "optional": true + }, + { + "name": "partCompleted", + "type": "text", + "label": "Translation for \"@pages of @total completed\" (@pages and @total will be replaced by actual values)", + "importance": "low", + "default": "@pages of @total completed", + "common": true, + "optional": true + }, + { + "name": "incompleteChapter", + "type": "text", + "label": "Translation for \"Incomplete page\"", + "importance": "low", + "default": "Incomplete page", + "common": true, + "optional": true + }, + { + "name": "navigateToTop", + "type": "text", + "label": "Translation for \"Navigate to the top\"", + "importance": "low", + "default": "Navigate to the top", + "common": true, + "optional": true + }, + { + "name": "markAsFinished", + "type": "text", + "importance": "low", + "label": "Translation for \"I have finished this page\"", + "default": "I have finished this page", + "common": true, + "optional": true + }, + { + "name": "fullscreen", + "type": "text", + "importance": "low", + "label": "Fullscreen button label", + "default": "Fullscreen", + "common": true, + "optional": true + }, + { + "name": "exitFullscreen", + "type": "text", + "importance": "low", + "label": "Exit fullscreen button label", + "default": "Exit fullscreen", + "common": true, + "optional": true + }, + { + "name": "bookProgressSubtext", + "type": "text", + "importance": "low", + "label": "Page progress in book", + "description": "\"@count\" will be replaced by page count, and \"@total\" with the total number of pages", + "default": "@count of @total pages", + "common": true, + "optional": true + }, + { + "name": "interactionsProgressSubtext", + "type": "text", + "importance": "low", + "label": "Interaction progress", + "description": "\"@count\" will be replaced by interaction count, and \"@total\" with the total number of interactions", + "default": "@count of @total interactions", + "common": true, + "optional": true + }, + { + "name": "submitReport", + "type": "text", + "importance": "low", + "label": "Translation for \"Submit report\"", + "default": "Submit Report", + "common": true, + "optional": true + }, + { + "name": "restartLabel", + "type": "text", + "importance": "low", + "label": "Label for \"restart\" button", + "default": "Restart", + "common": true, + "optional": true + }, + { + "name": "summaryHeader", + "type": "text", + "importance": "low", + "label": "Summary header", + "default": "Summary", + "common": true, + "optional": true + }, + { + "name": "allInteractions", + "type": "text", + "importance": "low", + "label": "Translation for \"All interactions\"", + "default": "All interactions", + "common": true, + "optional": true + }, + { + "name": "unansweredInteractions", + "type": "text", + "importance": "low", + "label": "Translation for \"Unanswered interactions\"", + "default": "Unanswered interactions", + "common": true, + "optional": true + }, + { + "name": "scoreText", + "type": "text", + "importance": "low", + "label": "Score", + "description": "\"@score\" will be replaced with current score, and \"@maxscore\" will be replaced with max achievable score", + "default": "@score / @maxscore", + "common": true, + "optional": true + }, + { + "name": "leftOutOfTotalCompleted", + "type": "text", + "importance": "low", + "label": "Per page interactions completion", + "description": "\"@left\" will be replaced with remaining interactions, and \"@max\" will be replaced with total number of interactions on the page", + "default": "@left of @max interactions completed", + "common": true, + "optional": true + }, + { + "name": "noInteractions", + "type": "text", + "importance": "low", + "label": "Translation for \"No interactions\"", + "default": "No interactions", + "common": true, + "optional": true + }, + { + "name": "score", + "type": "text", + "importance": "low", + "label": "Translation for \"Score\"", + "default": "Score", + "common": true, + "optional": true + }, + { + "name": "summaryAndSubmit", + "type": "text", + "importance": "low", + "label": "Label for \"Summary & submit\" button", + "default": "Summary & submit", + "common": true, + "optional": true + }, + { + "name": "noChapterInteractionBoldText", + "type": "text", + "importance": "low", + "label": "Translation for \"You have not interacted with any pages.\"", + "default": "You have not interacted with any pages.", + "common": true, + "optional": true + }, + { + "name": "noChapterInteractionText", + "type": "text", + "importance": "low", + "label": "Translation for \"You have to interact with at least one page before you can see the summary.\"", + "default": "You have to interact with at least one page before you can see the summary.", + "common": true, + "optional": true + }, + { + "name": "yourAnswersAreSubmittedForReview", + "type": "text", + "importance": "low", + "label": "Translation for \"Your answers are submitted for review!\"", + "default": "Your answers are submitted for review!", + "common": true, + "optional": true + }, + { + "name": "bookProgress", + "type": "text", + "importance": "low", + "label": "Summary progress label", + "default": "Book progress", + "common": true, + "optional": true + }, + { + "name": "interactionsProgress", + "type": "text", + "importance": "low", + "label": "Interactions progress label", + "default": "Interactions progress", + "common": true, + "optional": true + }, + { + "name": "totalScoreLabel", + "type": "text", + "importance": "low", + "label": "Total score label", + "default": "Total score", + "common": true, + "optional": true + }, + { + "name": "a11y", + "type": "group", + "label": "Accessibility texts", + "common": true, + "fields": [ + { + "name": "progress", + "type": "text", + "label": "Page progress textual alternative", + "description": "An alternative text for the visual page progress. @page and @total variables available.", + "default": "Page @page of @total." + }, + { + "name": "menu", + "type": "text", + "label": "Label for expanding/collapsing navigation menu", + "default": "Toggle navigation menu" + } + ] + } +] diff --git a/H5P.InteractiveBook/build.sh b/H5P.InteractiveBook/build.sh new file mode 100644 index 0000000..6d5e1ae --- /dev/null +++ b/H5P.InteractiveBook/build.sh @@ -0,0 +1 @@ +zip -r -X -D ../dist/H5P.InteractiveBook-1.3.h5p * --exclude build.sh diff --git a/H5P.InteractiveBook/h5p.json b/H5P.InteractiveBook/h5p.json new file mode 100644 index 0000000..3ace9aa --- /dev/null +++ b/H5P.InteractiveBook/h5p.json @@ -0,0 +1 @@ +{"title":"Interactive Book","language":"und","mainLibrary":"H5P.InteractiveBook","embedTypes":["div"],"license":"U","defaultLanguage":"en","preloadedDependencies":[{"machineName":"H5P.Image","majorVersion":"1","minorVersion":"1"},{"machineName":"H5P.AdvancedText","majorVersion":"1","minorVersion":"1"},{"machineName":"H5P.Text","majorVersion":"1","minorVersion":"1"},{"machineName":"H5P.ImageHotspots","majorVersion":"1","minorVersion":"8"},{"machineName":"H5P.Transition","majorVersion":"1","minorVersion":"0"},{"machineName":"FontAwesome","majorVersion":"4","minorVersion":"5"},{"machineName":"H5P.Table","majorVersion":"1","minorVersion":"1"},{"machineName":"H5P.SingleChoiceSet","majorVersion":"1","minorVersion":"11"},{"machineName":"H5P.SoundJS","majorVersion":"1","minorVersion":"0"},{"machineName":"H5P.JoubelUI","majorVersion":"1","minorVersion":"3"},{"machineName":"Drop","majorVersion":"1","minorVersion":"0"},{"machineName":"Tether","majorVersion":"1","minorVersion":"0"},{"machineName":"H5P.FontIcons","majorVersion":"1","minorVersion":"0"},{"machineName":"H5P.Question","majorVersion":"1","minorVersion":"4"},{"machineName":"H5P.DragQuestion","majorVersion":"1","minorVersion":"13"},{"machineName":"jQuery.ui","majorVersion":"1","minorVersion":"10"},{"machineName":"H5P.Column","majorVersion":"1","minorVersion":"13"},{"machineName":"H5P.Video","majorVersion":"1","minorVersion":"5"},{"machineName":"flowplayer","majorVersion":"1","minorVersion":"0"},{"machineName":"H5P.Blanks","majorVersion":"1","minorVersion":"12"},{"machineName":"H5P.TextUtilities","majorVersion":"1","minorVersion":"3"},{"machineName":"H5P.DragText","majorVersion":"1","minorVersion":"8"},{"machineName":"H5P.MultiChoice","majorVersion":"1","minorVersion":"14"},{"machineName":"EmbeddedJS","majorVersion":"1","minorVersion":"0"},{"machineName":"H5P.InteractiveBook","majorVersion":"1","minorVersion":"3"}]} \ No newline at end of file diff --git a/library.json b/library.json index 56a3d82..ed6390e 100644 --- a/library.json +++ b/library.json @@ -3,7 +3,7 @@ "description": "An interactive book which displays content in pages and sections", "majorVersion": 1, "minorVersion": 3, - "patchVersion": 7, + "patchVersion": 81, "runnable": 1, "fullscreen": 1, "author": "Joubel", @@ -32,6 +32,11 @@ "machineName": "H5P.JoubelUI", "majorVersion": 1, "minorVersion": 3 + }, + { + "machineName": "H5P.Audio", + "majorVersion": 1, + "minorVersion": 4 } ], "editorDependencies": [ diff --git a/semantics.json b/semantics.json index 931aa5d..1107f71 100644 --- a/semantics.json +++ b/semantics.json @@ -86,6 +86,14 @@ "options": [ "H5P.Column 1.13" ] + }, + { + "label": "Page audio", + "name": "page_audio", + "type": "library", + "options": [ + "H5P.Audio 1.4" + ] } ] } diff --git a/src/styles/_pagecontent.scss b/src/styles/_pagecontent.scss index 4c65bfa..bc248cd 100644 --- a/src/styles/_pagecontent.scss +++ b/src/styles/_pagecontent.scss @@ -56,6 +56,19 @@ } } } + + // Center align images inside interactive book + .h5p-interactive-book-chapter { + .h5p-column-content.h5p-image img { + width: auto !important; + height: auto !important; + max-width: 100%; + max-height: 66vh; + display: block; + margin-left: auto; + margin-right: auto; + } + } } .h5p-interactive-book-status-progress-marker { From 0fd25ea6b0df7ce83902ab0a9b5e1d4d1012ca35 Mon Sep 17 00:00:00 2001 From: rfohlin Date: Mon, 17 Jan 2022 09:12:48 +0100 Subject: [PATCH 2/5] Ignore temp dev folder --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 7ddf128..274dc6a 100644 --- a/.gitignore +++ b/.gitignore @@ -42,3 +42,7 @@ jspm_packages src/styles/css/main.css + +#Temp dev folder +H5P.InteractiveBook/ + From bf3310800c3991ae64a3fe2493aaa61104c8ab7b Mon Sep 17 00:00:00 2001 From: rfohlin Date: Mon, 17 Jan 2022 09:13:17 +0100 Subject: [PATCH 3/5] Removed H5P.InteractiveBook from git --- .../H5P.InteractiveBook-1.3/icon.svg | 66 --- .../H5P.InteractiveBook-1.3/language/.en.json | 201 -------- .../H5P.InteractiveBook-1.3/language/af.json | 201 -------- .../H5P.InteractiveBook-1.3/language/ar.json | 201 -------- .../H5P.InteractiveBook-1.3/language/bg.json | 201 -------- .../H5P.InteractiveBook-1.3/language/ca.json | 201 -------- .../H5P.InteractiveBook-1.3/language/cs.json | 201 -------- .../H5P.InteractiveBook-1.3/language/de.json | 201 -------- .../H5P.InteractiveBook-1.3/language/el.json | 201 -------- .../language/es-mx.json | 201 -------- .../H5P.InteractiveBook-1.3/language/es.json | 201 -------- .../H5P.InteractiveBook-1.3/language/et.json | 201 -------- .../H5P.InteractiveBook-1.3/language/eu.json | 201 -------- .../H5P.InteractiveBook-1.3/language/fa.json | 201 -------- .../H5P.InteractiveBook-1.3/language/fi.json | 201 -------- .../H5P.InteractiveBook-1.3/language/fr.json | 201 -------- .../H5P.InteractiveBook-1.3/language/gl.json | 201 -------- .../H5P.InteractiveBook-1.3/language/it.json | 201 -------- .../H5P.InteractiveBook-1.3/language/km.json | 201 -------- .../H5P.InteractiveBook-1.3/language/ko.json | 201 -------- .../H5P.InteractiveBook-1.3/language/nb.json | 201 -------- .../H5P.InteractiveBook-1.3/language/nl.json | 201 -------- .../H5P.InteractiveBook-1.3/language/nn.json | 201 -------- .../language/pt-br.json | 201 -------- .../H5P.InteractiveBook-1.3/language/ru.json | 201 -------- .../H5P.InteractiveBook-1.3/language/sl.json | 201 -------- .../H5P.InteractiveBook-1.3/language/sma.json | 201 -------- .../H5P.InteractiveBook-1.3/language/sme.json | 201 -------- .../H5P.InteractiveBook-1.3/language/smj.json | 201 -------- .../H5P.InteractiveBook-1.3/language/sv.json | 201 -------- .../H5P.InteractiveBook-1.3/language/tr.json | 201 -------- .../H5P.InteractiveBook-1.3/library.json | 54 --- .../H5P.InteractiveBook-1.3/semantics.json | 433 ------------------ H5P.InteractiveBook/build.sh | 1 - H5P.InteractiveBook/h5p.json | 1 - 35 files changed, 6585 deletions(-) delete mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/icon.svg delete mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/.en.json delete mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/af.json delete mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/ar.json delete mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/bg.json delete mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/ca.json delete mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/cs.json delete mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/de.json delete mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/el.json delete mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/es-mx.json delete mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/es.json delete mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/et.json delete mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/eu.json delete mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/fa.json delete mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/fi.json delete mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/fr.json delete mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/gl.json delete mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/it.json delete mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/km.json delete mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/ko.json delete mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/nb.json delete mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/nl.json delete mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/nn.json delete mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/pt-br.json delete mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/ru.json delete mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/sl.json delete mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/sma.json delete mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/sme.json delete mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/smj.json delete mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/sv.json delete mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/tr.json delete mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/library.json delete mode 100644 H5P.InteractiveBook/H5P.InteractiveBook-1.3/semantics.json delete mode 100644 H5P.InteractiveBook/build.sh delete mode 100644 H5P.InteractiveBook/h5p.json diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/icon.svg b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/icon.svg deleted file mode 100644 index 2b5f441..0000000 --- a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/icon.svg +++ /dev/null @@ -1,66 +0,0 @@ - - - - -Interactive Book - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/.en.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/.en.json deleted file mode 100644 index fc2c8d3..0000000 --- a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/.en.json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "semantics": [ - { - "label": "Enable book cover", - "description": "A cover that shows info regarding the book before access" - }, - { - "label": "Cover Page", - "fields": [ - { - "label": "Cover description", - "description": "This text will be the description of your book." - }, - { - "label": "Cover image", - "description": "An optional background image for the introduction." - }, - { - "label": "Cover image alternative text", - "description": "An alternative text for the cover image" - } - ] - }, - { - "label": "Pages", - "entity": "Page", - "widgets": [ - { - "label": "Default" - } - ], - "field": { - "label": "Item", - "fields": [ - { - "label": "Page" - } - ] - } - }, - { - "label": "Behavioural settings", - "fields": [ - { - "label": "Display table of contents as default", - "description": "When enabled the table of contents is showed when opening the book" - }, - { - "label": "Display Progress Indicators", - "description": "When enabled there will be indicators per page showing the user if he is done with the page or not." - }, - { - "label": "Enable automatic progress", - "description": "If enabled a page without tasks is considered done when viewed. A page with tasks when all tasks are done. If disabled there will be a button at the bottom of every page for the user to click when done with the page." - }, - { - "label": "Display summary", - "description": "When enabled the user can see a summary and submit the progress/answers" - } - ] - }, - { - "label": "Translation for \"Read\"", - "default": "Read" - }, - { - "label": "Translation for \"Display 'Table of contents'\"", - "default": "Display 'Table of contents'" - }, - { - "label": "Translation for \"Hide 'Table of contents'\"", - "default": "Hide 'Table of contents'" - }, - { - "label": "Translation for \"Next page\"", - "default": "Next page" - }, - { - "label": "Translation for \"Previous page\"", - "default": "Previous page" - }, - { - "label": "Translation for \"Page completed!\"", - "default": "Page completed!" - }, - { - "label": "Translation for \"@pages of @total completed\" (@pages and @total will be replaced by actual values)", - "default": "@pages of @total completed" - }, - { - "label": "Translation for \"Incomplete page\"", - "default": "Incomplete page" - }, - { - "label": "Translation for \"Navigate to the top\"", - "default": "Navigate to the top" - }, - { - "label": "Translation for \"I have finished this page\"", - "default": "I have finished this page" - }, - { - "label": "Fullscreen button label", - "default": "Fullscreen" - }, - { - "label": "Exit fullscreen button label", - "default": "Exit fullscreen" - }, - { - "label": "Page progress in book", - "description": "\"@count\" will be replaced by page count, and \"@total\" with the total number of pages", - "default": "@count of @total pages" - }, - { - "label": "Interaction progress", - "description": "\"@count\" will be replaced by interaction count, and \"@total\" with the total number of interactions", - "default": "@count of @total interactions" - }, - { - "label": "Translation for \"Submit report\"", - "default": "Submit Report" - }, - { - "label": "Label for \"restart\" button", - "default": "Restart" - }, - { - "label": "Summary header", - "default": "Summary" - }, - { - "label": "Translation for \"All interactions\"", - "default": "All interactions" - }, - { - "label": "Translation for \"Unanswered interactions\"", - "default": "Unanswered interactions" - }, - { - "label": "Score", - "description": "\"@score\" will be replaced with current score, and \"@maxscore\" will be replaced with max achievable score", - "default": "@score / @maxscore" - }, - { - "label": "Per page interactions completion", - "description": "\"@left\" will be replaced with remaining interactions, and \"@max\" will be replaced with total number of interactions on the page", - "default": "@left of @max interactions completed" - }, - { - "label": "Translation for \"No interactions\"", - "default": "No interactions" - }, - { - "label": "Translation for \"Score\"", - "default": "Score" - }, - { - "label": "Label for \"Summary & submit\" button", - "default": "Summary & submit" - }, - { - "label": "Translation for \"You have not interacted with any pages.\"", - "default": "You have not interacted with any pages." - }, - { - "label": "Translation for \"You have to interact with at least one page before you can see the summary.\"", - "default": "You have to interact with at least one page before you can see the summary." - }, - { - "label": "Translation for \"Your answers are submitted for review!\"", - "default": "Your answers are submitted for review!" - }, - { - "label": "Summary progress label", - "default": "Book progress" - }, - { - "label": "Interactions progress label", - "default": "Interactions progress" - }, - { - "label": "Total score label", - "default": "Total score" - }, - { - "label": "Accessibility texts", - "fields": [ - { - "label": "Page progress textual alternative", - "description": "An alternative text for the visual page progress. @page and @total variables available.", - "default": "Page @page of @total." - }, - { - "label": "Label for expanding/collapsing navigation menu", - "default": "Toggle navigation menu" - } - ] - } - ] -} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/af.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/af.json deleted file mode 100644 index 61f44c7..0000000 --- a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/af.json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "semantics": [ - { - "label": "Aktiveer boek voorblad", - "description": "'n Voorblad wys informasie oor die boek voor toegang verkry word" - }, - { - "label": "Voorblad", - "fields": [ - { - "label": "Voorblad beskrywing", - "description": "Hierdie teks sal die beskrywing van jou boek wees." - }, - { - "label": "Voorblad prent", - "description": "'n Vrywillige agtergrondprent vir die inleiding." - }, - { - "label": "Voorbladprent alternatiewe teks", - "description": "'n Alternatiewe teks vir die voorbladprent" - } - ] - }, - { - "label": "Bladsye", - "entity": "Bladsy", - "widgets": [ - { - "label": "Verstek" - } - ], - "field": { - "label": "Item", - "fields": [ - { - "label": "Bladsy" - } - ] - } - }, - { - "label": "Gedragsinstellings", - "fields": [ - { - "label": "Vertoon inhoudsopgawe as verstek", - "description": "Indien geaktiveer word die inhoudsopgawe vertoon wanneer die boek oopgemaak word" - }, - { - "label": "Vertoon vordering aanwysers", - "description": "Indien geaktiveer sal daar bladsyaanwysers vertoon word wat stel of die gebruiker klaar met die bladsy is of nie." - }, - { - "label": "Aktiveer outomatiese vordering", - "description": "Indien geaktiveer, word 'n bladsy sonder take as afgehandel beskou. 'n Bladsy met take wanneer alle take gedoen is. Indien gedeaktiveer, sal daar onderaan elke bladsy 'n knoppie wees waarop die gebruiker kan klik as hy klaar is met die bladsy." - }, - { - "label": "Vertoon opsomming", - "description": "Indien dit geaktiveer is, kan die gebruiker 'n opsomming sien en die vordering/antwoorde indien" - } - ] - }, - { - "label": "Vertaling vir \"Lees\"", - "default": "Lees" - }, - { - "label": "Vertaling vir \"Vertoon 'Inhoudsopgawe'\"", - "default": "Vertoon 'Inhoudsopgawe'" - }, - { - "label": "Vertaling vir \"Versteek 'Inhoudsopgawe'\"", - "default": "Versteek 'Inhoudsopgawe'" - }, - { - "label": "Vertaling vir \"Volgende bladsy\"", - "default": "Volgende bladsy" - }, - { - "label": "Vertaling vir \"Vorige bladsy\"", - "default": "Vorige bladsy" - }, - { - "label": "Vertaling vir \"Bladsy voltooi!\"", - "default": "Bladsy voltooi!" - }, - { - "label": "Vertaling vir \"@pages van @total voltooi\" (@pages en @total sal vervang word met werklike waardes)", - "default": "@pages van @total voltooi" - }, - { - "label": "Vertaling vir \"Onvoltooide bladsy\"", - "default": "Onvoltooide bladsy" - }, - { - "label": "Vertaling vir \"Navigeer na bo\"", - "default": "Navigeer na bo" - }, - { - "label": "Vertaling vir \"Ek het die bladsy voltooi\"", - "default": "Ek het die bladsy voltooi" - }, - { - "label": "Volskerm knoppie etiket", - "default": "Volskerm" - }, - { - "label": "Verlaat volskerm knoppie etiket", - "default": "Verlaat volskerm" - }, - { - "label": "Bladsy vordering in boek", - "description": "\"@count\" sal vervang word deur bladsynommer, en \"@total\" met die totale aantal bladsye", - "default": "@count van @total bladsye" - }, - { - "label": "Interaksie vordering", - "description": "\"@count\" sal vervang word deur interaksienommer, en \"@total\" met die totale aantal interaksies", - "default": "@count van @total interaksies" - }, - { - "label": "Vertaling vir \"Dien rapport in\"", - "default": "Dien rapport in" - }, - { - "label": "Etiket vir \"herbegin\" knoppie", - "default": "Herbegin" - }, - { - "label": "Opsomming opskrif", - "default": "Opsomming" - }, - { - "label": "Vertaling vir \"Alle interaksies\"", - "default": "Alle interaksies" - }, - { - "label": "Vertaling vir \"Onbeantwoorde interaksies\"", - "default": "Onbeantwoorde interaksies" - }, - { - "label": "Telling", - "description": "\"@score\" sal vervang word met huidige telling, en \"@maxscore\"sal vervang word met maksimum behaalbare telling", - "default": "@score / @maxscore" - }, - { - "label": "Per bladsy interaksies voltooiing", - "description": "\"@left\"sal vervang word met oorblywende interaksies, en \"@max\" sal vervang word met totale aantal interaksies op die bladsy", - "default": "@left van @max interaksies voltooi" - }, - { - "label": "Vertaling vir \"Geen interaksies\"", - "default": "Geen interaksies" - }, - { - "label": "Vertaling vir \"Telling\"", - "default": "Telling" - }, - { - "label": "Etiket vir \"Opsom & indien\" knoppie", - "default": "Opsom & indien" - }, - { - "label": "Vertaling vir \"Jy het nog nie interaksies gehad met enige bladsye nie.\"", - "default": "Jy het nog nie interaksies gehad met enige bladsye nie." - }, - { - "label": "Vertaling vir \"Jy moet 'n interaksie hê met ten minste een bladsy voordat jy die opsomming kan sien.\"", - "default": "Jy moet 'n interaksie hê met ten minste een bladsy voordat jy die opsomming kan sien." - }, - { - "label": "Vertaling vir \"Jou antwoorde is ingedien vir hersiening!\"", - "default": "Jou antwoorde is ingedien vir hersiening!" - }, - { - "label": "Opsomming vordering etiket", - "default": "Boek vordering" - }, - { - "label": "Interaksies vordering etiket", - "default": "Interaksies vordering" - }, - { - "label": "Totale telling etiket", - "default": "Totale telling" - }, - { - "label": "Toeganklikheid teks", - "fields": [ - { - "label": "Bladsyvordering teksalternatief", - "description": "'n Alternatiewe teks vir die visuele bladsyvordering. @page en @total veranderlikes beskikbaar.", - "default": "Bladsy @page van @total." - }, - { - "label": "Etiket vir uitbreiding/invou navigasie menu", - "default": "Skakel navigasie menu" - } - ] - } - ] -} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/ar.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/ar.json deleted file mode 100644 index c62077f..0000000 --- a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/ar.json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "semantics": [ - { - "label": "تفعيل غلاف الكتاب", - "description": "غلاف يعرض المعلومات المتعلقة بالكتاب قبل الدخول" - }, - { - "label": "غلاف الصفحة", - "fields": [ - { - "label": "وصف الغلاف", - "description": "هذا النص سيكون وصف كتابك." - }, - { - "label": "صورة الغلاف", - "description": "صورة خلفية اختيارية للمقدمة." - }, - { - "label": "صورة الغلاف النص البديل", - "description": "نص بديل لصورة الغلاف" - } - ] - }, - { - "label": "الفصول", - "entity": "الفصل", - "widgets": [ - { - "label": "إفتراضي" - } - ], - "field": { - "label": "عنصر", - "fields": [ - { - "label": "فصل" - } - ] - } - }, - { - "label": "الإعدادات السلوكية", - "fields": [ - { - "label": "عرض جدول المحتويات كافتراضي", - "description": "عند التفعيل ، يتم عرض جدول المحتويات عند فتح الكتاب" - }, - { - "label": "عرض مؤشرات التقدم", - "description": "عند التمكين ، ستظهر مؤشرات في كل صفحة توضح ما إذا كان المستخدم قد انتهى من الصفحة أم لا." - }, - { - "label": "تمكين التقدم التلقائي", - "description": "في حالة التمكين ، يتم اعتبار الصفحة بدون مهام عند عرضها. صفحة بها مهام عند الانتهاء من جميع المهام. في حالة التعطيل ، سيكون هناك زر في أسفل كل صفحة لينقر عليها المستخدم عند الانتهاء من الصفحة." - }, - { - "label": "Display summary", - "description": "When enabled the user can see a summary and submit the progress/answers" - } - ] - }, - { - "label": "ترجمة تتعلق بـ \"القراءاة\"", - "default": "القراءاة" - }, - { - "label": "ترجمة تتعلق بـ \"عرض 'جدول المحتويات'\"", - "default": "عرض 'جدول المحتويات'" - }, - { - "label": "ترجمة تتعلق بـ \"إخفاء 'جدول المحتويات'\"", - "default": "إخفاء 'جدول المحتويات'" - }, - { - "label": "ترجمة تتعلق بـ \"الصفحة التالية\"", - "default": "الصفحة التالية" - }, - { - "label": "ترجمة تتعلق بـ \"الصفحة السابقة\"", - "default": "الصفحة السابقة" - }, - { - "label": "ترجمة تتعلق بـ \"الانتهاء من الفصل!\"", - "default": "الانتهاء من الفصل!" - }, - { - "label": "ترجمة تتعلق بـ \"@pages من @total منتهي\" (@pages و @total سيتم استبدال القيم الفعلية)", - "default": "@pages من @total منتهي" - }, - { - "label": "ترجمة تتعلق بـ \"فصل غير منتهي\"", - "default": "فصل غير منتهي" - }, - { - "label": "ترجمة تتعلق بـ \"الذهاب إلى الأعلى\"", - "default": "الذهاب إلى الأعلى" - }, - { - "label": "ترجمة تتعلق بـ \"أنهيت هذه الصفحة\"", - "default": "أنهيت هذه الصفحة" - }, - { - "label": "تسمية زر ملء الشاشة", - "default": "ملء الشاشة" - }, - { - "label": "تسميةالخروج من ملىء الشاشة", - "default": "الخروج من الشاشة الكاملة" - }, - { - "label": "Page progress in book", - "description": "\"@count\" will be replaced by page count, and \"@total\" with the total number of pages", - "default": "@count of @total pages" - }, - { - "label": "Interaction progress", - "description": "\"@count\" will be replaced by interaction count, and \"@total\" with the total number of interactions", - "default": "@count of @total interactions" - }, - { - "label": "Translation for \"Submit report\"", - "default": "Submit Report" - }, - { - "label": "Label for \"restart\" button", - "default": "Restart" - }, - { - "label": "Summary header", - "default": "Summary" - }, - { - "label": "Translation for \"All interactions\"", - "default": "All interactions" - }, - { - "label": "Translation for \"Unanswered interactions\"", - "default": "Unanswered interactions" - }, - { - "label": "Score", - "description": "\"@score\" will be replaced with current score, and \"@maxscore\" will be replaced with max achievable score", - "default": "@score / @maxscore" - }, - { - "label": "Per page interactions completion", - "description": "\"@left\" will be replaced with remaining interactions, and \"@max\" will be replaced with total number of interactions on the page", - "default": "@left of @max interactions completed" - }, - { - "label": "Translation for \"No interactions\"", - "default": "No interactions" - }, - { - "label": "Translation for \"Score\"", - "default": "Score" - }, - { - "label": "Label for \"Summary & submit\" button", - "default": "Summary & submit" - }, - { - "label": "Translation for \"You have not interacted with any pages.\"", - "default": "You have not interacted with any pages." - }, - { - "label": "Translation for \"You have to interact with at least one page before you can see the summary.\"", - "default": "You have to interact with at least one page before you can see the summary." - }, - { - "label": "Translation for \"Your answers are submitted for review!\"", - "default": "Your answers are submitted for review!" - }, - { - "label": "Summary progress label", - "default": "Book progress" - }, - { - "label": "Interactions progress label", - "default": "Interactions progress" - }, - { - "label": "Total score label", - "default": "Total score" - }, - { - "label": "إمكانية الوصول للنصوص", - "fields": [ - { - "label": "تقدم الصفحة النصية البديلة", - "description": "نص بديل للتقدم في الصفحة المرئية. @page و @total ومتغيرات المتاحة.", - "default": "صفحة @page من @total." - }, - { - "label": "وضع علامة لتوسيع / طي قائمة التنقل", - "default": "تبديل قائمة التنقل" - } - ] - } - ] -} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/bg.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/bg.json deleted file mode 100644 index 80c5f03..0000000 --- a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/bg.json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "semantics": [ - { - "label": "Добавяне на корица на книгата", - "description": "Корица, която показва информация за книгата преди да бъде отворена" - }, - { - "label": "Корица", - "fields": [ - { - "label": "Описание на корицата", - "description": "Този текст ще бъде описанието на вашата книга." - }, - { - "label": "Изображение на корицата", - "description": "Незадължително изображение на корицата за увода." - }, - { - "label": "Алтернативен текст за изображението на корицата", - "description": "Алтернативен текст за изображението на корицата" - } - ] - }, - { - "label": "Раздели", - "entity": "Раздел", - "widgets": [ - { - "label": "По подразбиране" - } - ], - "field": { - "label": "Елемент", - "fields": [ - { - "label": "Раздел" - } - ] - } - }, - { - "label": "Настройки на поведение", - "fields": [ - { - "label": "Показване съдържанието по подразбиране ", - "description": "Когато е активирано, съдържанието се показва при отваряне на книгата" - }, - { - "label": "Показване на индикатори за напредъка", - "description": "Когато е активирана, ще има индикатори на страница, показващи на потребителя дали е прочел страницата или не." - }, - { - "label": "Активиране на автоматичния индикатор за напредък", - "description": "Ако е активирано, страница без задачи се счита за извършена, когато е видяна, а страница със задачи, когато всички задачи са изпълнени. Ако е деактивиран, в долната част на всяка страница ще има бутон, който потребителят да щракне, когато приключи със страницата." - }, - { - "label": "Display summary", - "description": "When enabled the user can see a summary and submit the progress/answers" - } - ] - }, - { - "label": "Превод за \"Чети\"", - "default": "Чети" - }, - { - "label": "Превод за \"Показване на 'Съдържание'\"", - "default": "Покзване на 'Съдържание'" - }, - { - "label": "Превод за \"Скриване на 'Съдържание'\"", - "default": "Скриване на 'Съдържание'" - }, - { - "label": "Превод за \"Следваща страница\"", - "default": "Следваща страница" - }, - { - "label": "Превод за \"Предишна страница\"", - "default": "Предишна страница" - }, - { - "label": "Превод за \"Разделът е завършен!\"", - "default": "Разделът е завършен!" - }, - { - "label": "Превод за \"@pages от @total страници са завършени\" (@pages и @total ще бъдат подменени с действителни стойности)", - "default": "@pages от @total страници са завършени" - }, - { - "label": "Превод за \"Непълен раздел\"", - "default": "Непълен раздел" - }, - { - "label": "Превод за \"Връщане в началото\"", - "default": "Връщане в началото" - }, - { - "label": "Превод за \"Завърших тази страница\"", - "default": "Завърших тази страница" - }, - { - "label": "Етикет на бутона На цял екран", - "default": "На цял екран" - }, - { - "label": "Етикет на бутона Изход от цял екран", - "default": "Изход от цял екран" - }, - { - "label": "Page progress in book", - "description": "\"@count\" will be replaced by page count, and \"@total\" with the total number of pages", - "default": "@count of @total pages" - }, - { - "label": "Interaction progress", - "description": "\"@count\" will be replaced by interaction count, and \"@total\" with the total number of interactions", - "default": "@count of @total interactions" - }, - { - "label": "Translation for \"Submit report\"", - "default": "Submit Report" - }, - { - "label": "Label for \"restart\" button", - "default": "Restart" - }, - { - "label": "Summary header", - "default": "Summary" - }, - { - "label": "Translation for \"All interactions\"", - "default": "All interactions" - }, - { - "label": "Translation for \"Unanswered interactions\"", - "default": "Unanswered interactions" - }, - { - "label": "Score", - "description": "\"@score\" will be replaced with current score, and \"@maxscore\" will be replaced with max achievable score", - "default": "@score / @maxscore" - }, - { - "label": "Per page interactions completion", - "description": "\"@left\" will be replaced with remaining interactions, and \"@max\" will be replaced with total number of interactions on the page", - "default": "@left of @max interactions completed" - }, - { - "label": "Translation for \"No interactions\"", - "default": "No interactions" - }, - { - "label": "Translation for \"Score\"", - "default": "Score" - }, - { - "label": "Label for \"Summary & submit\" button", - "default": "Summary & submit" - }, - { - "label": "Translation for \"You have not interacted with any pages.\"", - "default": "You have not interacted with any pages." - }, - { - "label": "Translation for \"You have to interact with at least one page before you can see the summary.\"", - "default": "You have to interact with at least one page before you can see the summary." - }, - { - "label": "Translation for \"Your answers are submitted for review!\"", - "default": "Your answers are submitted for review!" - }, - { - "label": "Summary progress label", - "default": "Book progress" - }, - { - "label": "Interactions progress label", - "default": "Interactions progress" - }, - { - "label": "Total score label", - "default": "Total score" - }, - { - "label": "Текстове за достъпност", - "fields": [ - { - "label": "Текстова алтернатива за напредък на страницата", - "description": "Алтернативен текст за визуалния напредък на страница. Достъпни са променливите @page и @total.", - "default": "Страница @page от @total." - }, - { - "label": "Етикет за разпъване/свиване на навигационното меню", - "default": "Превключване на менюто за навигация" - } - ] - } - ] -} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/ca.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/ca.json deleted file mode 100644 index e4e99cf..0000000 --- a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/ca.json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "semantics": [ - { - "label": "Activa la portada del llibre", - "description": "Portada en què es mostra informació sobre el llibre abans d’accedir-hi" - }, - { - "label": "Portada", - "fields": [ - { - "label": "Descripció de la portada", - "description": "Aquest text serà la descripció del llibre." - }, - { - "label": "Imatge de portada", - "description": "Una imatge de fons opcional per a la introducció." - }, - { - "label": "Text alternatiu per a la imatge de portada", - "description": "Text alternatiu per a la imatge de portada" - } - ] - }, - { - "label": "Pàgines", - "entity": "Pàgina", - "widgets": [ - { - "label": "Opció predeterminada" - } - ], - "field": { - "label": "Element", - "fields": [ - { - "label": "Pàgina" - } - ] - } - }, - { - "label": "Opcions de comportament", - "fields": [ - { - "label": "Mostra la taula de continguts com a predeterminada", - "description": "Si aquesta opció està activada, l’índex es mostrarà en obrir el llibre" - }, - { - "label": "Mostra els indicadors de progrés", - "description": "Si aquesta opció està activada, hi haurà indicadors per pàgina que mostraran a l’usuari si ha acabat de llegir la pàgina o no." - }, - { - "label": "Activa el progrés automàtic", - "description": "Si està activat es considerarà que una pàgina sense tasques es realitza quan es visualitza. Una pàgina amb tasques, quan es fan totes les tasques. Si està desactivat hi haurà un botó a la part inferior de cada pàgina perquè l’usuari faci clic quan acabi amb la pàgina." - }, - { - "label": "Mostra el resum", - "description": "Si aquesta opció està activada, l’usuari podrà veure un resum i enviar el progrés i les respostes" - } - ] - }, - { - "label": "Traducció de «Llegeix»", - "default": "Lectura" - }, - { - "label": "Traducció per a «Mostra la taula de continguts»", - "default": "Mostra la ’Taula de continguts’" - }, - { - "label": "Traducció per a «Oculta la taula de continguts»", - "default": "Amaga la ’Taula de continguts’" - }, - { - "label": "Traducció de «Pàgina següent»", - "default": "Pàgina següent" - }, - { - "label": "Traducció de «Pàgina anterior»", - "default": "Pàgina anterior" - }, - { - "label": "Traducció de «Pàgina completada!»", - "default": "Pàgina completada!" - }, - { - "label": "Ha finalitzat la traducció de «@pages de @total pàgines» (@pages i @total se substituiran pels valors reals)", - "default": "@pages de @total completades" - }, - { - "label": "Traducció de «Pàgina incompleta»", - "default": "Pàgina incompleta" - }, - { - "label": "Traducció de \"Ves a la part superior\"", - "default": "Ves a la part superior" - }, - { - "label": "Traducció per a «He finalitzat aquesta pàgina»", - "default": "He acabat aquesta pàgina" - }, - { - "label": "Etiqueta del botó de pantalla completa", - "default": "Pantalla completa" - }, - { - "label": "Etiqueta del botó «Surt de la pantalla completa»", - "default": "Surt de la pantalla completa" - }, - { - "label": "Progrés de la pàgina al llibre", - "description": "«@count» serà substituït pel recompte de pàgines, i «@total» amb el nombre total de pàgines", - "default": "@count de @total pages" - }, - { - "label": "Progrés de la interacció", - "description": "«@count» serà substituït pel nombre d’interaccions, i «@total» amb el nombre total d’interaccions", - "default": "@count de @total interactions" - }, - { - "label": "Traducció per a «Tramet l’informe»", - "default": "Tramet l’informe" - }, - { - "label": "Etiqueta per al botó «Reinicia»", - "default": "Reinicia" - }, - { - "label": "Capçalera del resum", - "default": "Resum" - }, - { - "label": "Traducció de «Totes les interaccions»", - "default": "Totes les interaccions" - }, - { - "label": "Traducció d'«Interaccions sense respondre»", - "default": "Interaccions sense resposta" - }, - { - "label": "Puntuació", - "description": "«@score» se substituirà per la puntuació actual i «@maxscore», per la puntuació màxima que es pot assolir", - "default": "@score / @maxscore" - }, - { - "label": "Compleció d’interaccions per pàgina", - "description": "«@left» se substituirà per les interaccions restants i «@max», pel nombre total d’interaccions a la pàgina", - "default": "@left de @max interactions completed" - }, - { - "label": "Traducció de «No hi ha cap interacció»", - "default": "No hi ha cap interacció" - }, - { - "label": "Traducció de «Puntuació»", - "default": "Puntuació" - }, - { - "label": "Etiqueta per al botó «Resum i tramesa»", - "default": "Resum i tramesa" - }, - { - "label": "Traducció de «No heu interactuat amb cap pàgina»", - "default": "No heu interactuat amb cap pàgina." - }, - { - "label": "Traducció de «Cal que interaccioneu com a mínim amb una pàgina per poder veure el resum»", - "default": "Cal que interaccioneu com a mínim amb una pàgina per poder veure el resum." - }, - { - "label": "Traducció de «Les vostres respostes s'han tramès per a revisió»", - "default": "Les vostres respostes s’han tramès per a revisió!" - }, - { - "label": "Etiqueta de progrés del resum", - "default": "Progrés del llibre" - }, - { - "label": "Etiqueta de progrés de les interaccions", - "default": "Progrés de les interaccions" - }, - { - "label": "Etiqueta de puntuació total", - "default": "Puntuació total" - }, - { - "label": "Textos d’accessibilitat", - "fields": [ - { - "label": "Text alternatiu per al progrés de la pàgina", - "description": "Un text alternatiu per al progrés de la pàgina visual. Hi ha disponibles les variables @page i @total.", - "default": "Pàgina @page de @total." - }, - { - "label": "Etiqueta per ampliar el menú de navegació o reduir-lo", - "default": "Activa o desactiva el menú de navegació" - } - ] - } - ] -} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/cs.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/cs.json deleted file mode 100644 index 1622bcc..0000000 --- a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/cs.json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "semantics": [ - { - "label": "Povolit obálku knihy", - "description": "Obálka zobrazuje před přístupem informace týkající se knihy" - }, - { - "label": "Obálka", - "fields": [ - { - "label": "Popis obálky", - "description": "Tento text bude popisem vaší knihy." - }, - { - "label": "Obrázek obálky", - "description": "Volitelný obrázek na pozadí obálky." - }, - { - "label": "Alternativní text obrázku na obálce", - "description": "Alternativní text obrázku na obálce" - } - ] - }, - { - "label": "Stránky", - "entity": "Stránka", - "widgets": [ - { - "label": "Výchozí" - } - ], - "field": { - "label": "Položka", - "fields": [ - { - "label": "Stránka" - } - ] - } - }, - { - "label": "Nastavení chování", - "fields": [ - { - "label": "Zobrazit obsah jako výchozí", - "description": "Je-li povoleno, zobrazí se obsah při otevření knihy" - }, - { - "label": "Zobrazit indikátory průběhu", - "description": "Je-li tato možnost povolena, budou na stránce indikátory zobrazující uživatele, pokud je na stránce hotový nebo ne." - }, - { - "label": "Povolit automatický průběh", - "description": "Pokud je povoleno, stránka bez úkolů se při prohlížení považuje za hotovou. Stránka s úkoly, když jsou všechny úkoly hotové. Pokud je zakázáno, bude ve spodní části každé stránky tlačítko, na které uživatel po dokončení stránky klikne." - }, - { - "label": "Zobrazit souhrn", - "description": "Je-li tato možnost povolena, uživatel může zobrazit souhrn a odeslat postup / odpovědi" - } - ] - }, - { - "label": "Překlad pro \"Číst\"", - "default": "Číst" - }, - { - "label": "Překlad pro \"Zobrazit Obsah\"", - "default": "Zobrazit \"Obsah\"" - }, - { - "label": "Překlad pro \"Skrýt Obsah\"", - "default": "Skrýt \"Obsah\"" - }, - { - "label": "Překlad pro \"Další stránka\"", - "default": "Další stránka" - }, - { - "label": "Překlad pro \"Předchozí stránka\"", - "default": "Předchozí stránka" - }, - { - "label": "Překlad pro \"Stránka dokončena!\"", - "default": "Stránka dokončena!" - }, - { - "label": "Překlad pro \"@pages z @total dokončeno\" (@pages a @total budou nahrazeny skutečnými hodnotami)", - "default": "@pages z @total dokončeno" - }, - { - "label": "Překlad pror \"Nedokončená stránka\"", - "default": "Nedokončená stránka" - }, - { - "label": "TPřeklad pro \"Přejít nahoru\"", - "default": "Přejít nahoru" - }, - { - "label": "Překlad pro \"Tuto stránku jsem dokončil\"", - "default": "Tuto stránku jsem dokončil" - }, - { - "label": "Popisek tlačítka Celá obrazovka", - "default": "Celá obrazovka" - }, - { - "label": "Popisek tlačítka Ukončit režim celé obrazovky", - "default": "Ukončit režim celé obrazovky" - }, - { - "label": "Průběh stránek v knize", - "description": "\"@count\" bude nahrazen počtem stránek, a \"@total\" celkovým počtem stránek", - "default": "@count z @total stránek" - }, - { - "label": "Průběh interakce", - "description": "\"@count\" bude nahrazen počtem interakcí, a \"@total\" celkovým počtem interakcí", - "default": "@count z @total interakcí" - }, - { - "label": "Překlad pro \"Odeslat zprávu\"", - "default": "Odeslat zprávu" - }, - { - "label": "Štítek pro tlačítko \"Restart\"", - "default": "Restart" - }, - { - "label": "Hlavička souhrnu", - "default": "Souhrn" - }, - { - "label": "Překlad pro \"Všechny interakce\"", - "default": "Všechny interakce" - }, - { - "label": "Překlad pro \"Nezodpovězené interakce\"", - "default": "Nezodpovězené interakce" - }, - { - "label": "Skóre", - "description": "\"@score\" bude nahrazeno aktuálním skóre, a \"@maxscore\" bude nahrazeno maximálním dosažitelným skóre", - "default": "@score / @maxscore" - }, - { - "label": "Dokončených interakcí na stránce", - "description": "\"@left\"budou nahrazeny zbývajícími interakcemi, a \"@max\" bude nahrazen celkovým počtem interakcí na stránce", - "default": "@left z @max dokončených interakcí" - }, - { - "label": "Překlad pro \"Žádné interakce\"", - "default": "Žádné interakce" - }, - { - "label": "Překlad pro \"Skóre\"", - "default": "Skóre" - }, - { - "label": "Štítek pro tlačítko \"Shrnutí a odeslání\"", - "default": "Shrnutí a odeslání" - }, - { - "label": "Překlad pro \"Nekomunikovali jste s žádnými stránkami.\"", - "default": "Nekomunikovali jste s žádnými stránkami." - }, - { - "label": "Překlad pro \"Než uvidíte souhrn, musíte komunikovat s alespoň jednou stránkou.\"", - "default": "Než uvidíte souhrn, musíte komunikovat s alespoň jednou stránkou." - }, - { - "label": "Překlad pro \"Vaše odpovědi budou odeslány ke kontrole!\"", - "default": "Vaše odpovědi budou odeslány ke kontrole!" - }, - { - "label": "Popisek pro Průběh knihy", - "default": "Průběh knihy" - }, - { - "label": "Popisek pro Průběh interakcí", - "default": "Průběh interakcí" - }, - { - "label": "Popisek pro Celkové skóre", - "default": "Celkové skóre" - }, - { - "label": "Texty přístupnosti", - "fields": [ - { - "label": "Textová alternativa postupu stránky", - "description": "Alternativní text pro průběh vizuální stránky. Dostupné proměnné @page a @total.", - "default": "Stránka @page z @total." - }, - { - "label": "Popisek pro rozbalení/sbalení navigační nabídky", - "default": "Přepnutí navigační nabídky" - } - ] - } - ] -} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/de.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/de.json deleted file mode 100644 index 31aa0de..0000000 --- a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/de.json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "semantics": [ - { - "label": "Titelseite anzeigen", - "description": "Auf der Titelseite werden Informationen über das Buch angezeigt bevor es geöffnet wird" - }, - { - "label": "Titelseite", - "fields": [ - { - "label": "Untertitel", - "description": "Dieser Text wird in kleinerer Schrift unter dem eigentlichen Titel angezeigt." - }, - { - "label": "Titelbild", - "description": "Dieses Bild wird auf der Titelseite angezeigt (optional)." - }, - { - "label": "Alternativtext des Titelbildes", - "description": "Dieser Text wird von Vorlesewerkzeugen verwendet (Barrierefreiheit)" - } - ] - }, - { - "label": "Seiten", - "entity": "Seite", - "widgets": [ - { - "label": "Voreinstellung" - } - ], - "field": { - "label": "Eintrag", - "fields": [ - { - "label": "Seite" - } - ] - } - }, - { - "label": "Verhaltenseinstellungen", - "fields": [ - { - "label": "Standardmäßig Inhaltsverzeichnis anzeigen", - "description": "Wenn gewählt, wird das Inhaltsverzeichnis beim Öffnen des Buchs angezeigt." - }, - { - "label": "Fortschrittsanzeige anzeigen", - "description": "Wenn gewählt, wird bei jedem Kapitel angezeigt, ob die Lernenden es abgeschlossen haben." - }, - { - "label": "Fortschritt automatisch erfassen", - "description": "Wenn gewählt, werden Kapitel ohne Aufgaben als abgeschlossen markiert, sobald sie angezeigt wurden. Kapitel mit interaktiven Aufgaben gelten als abgeschlossen, wenn alle Aufgaben gelöst wurden. Wenn abgewählt, wird am Ende eines Kapitels ein Button angezeigt, den die Lernenden anklicken müssen, wenn sie das Kapitel abgeschlossen haben." - }, - { - "label": "Zusammenfassung anzeigen", - "description": "Wenn gewählt, können die Nutzenden eine Zusammenfassung sehen und ihren Fortschritt/ihre Antworten einsenden." - } - ] - }, - { - "label": "Beschriftung für \"Öffnen\"", - "default": "Öffnen" - }, - { - "label": "Beschriftung für \"Inhaltsverzeichnis anzeigen\"", - "default": "Inhaltsverzeichnis anzeigen" - }, - { - "label": "Beschriftung für \"Inhaltsverzeichnis ausblenden\"", - "default": "Inhaltsverzeichnis ausblenden" - }, - { - "label": "Beschriftung für \"Nächste Seite\"", - "default": "Nächste Seite" - }, - { - "label": "Beschriftung für \"Vorherige Seite\"", - "default": "Vorherige Seite" - }, - { - "label": "Beschriftung für \"Seite abgeschlossen!\"", - "default": "Seite abgeschlossen!" - }, - { - "label": "Beschriftung für \"@page von @total Seiten abgeschlossen\" (@pages und @total sind Platzhalter und werden von den echten Werten ersetzt)", - "default": "@pages von @total Seiten abgeschlossen" - }, - { - "label": "Beschriftung für \"Unvollständige Seite\"", - "default": "Unvollständige Seite" - }, - { - "label": "Beschriftung für \"Nach oben springen\"", - "default": "Nach oben springen" - }, - { - "label": "Beschriftung für \"Ich habe diese Seite abgeschlossen\"", - "default": "Ich habe diese Seite abgeschlossen" - }, - { - "label": "Beschriftung des Vollbild-Buttons", - "default": "Vollbild" - }, - { - "label": "Beschriftung des \"Vollbild beenden\"-Buttons", - "default": "Vollbild beenden" - }, - { - "label": "Seitenfortschritt", - "description": "\"@count\" ist ein Platzhalter und wird durch die Seitenzahl ersetzt, und \"@total\" wird durch die Gesamtseitenzahl ersetzt", - "default": "@count von @total Seiten" - }, - { - "label": "Interaktionsfortschritt", - "description": "\"@count\" ist ein Platzhalter und wird durch Zahl der Interaktionen ersetzt, und \"@total\" wird durch die Gesamtzahl der Interaktionen ersetzt", - "default": "@count von @total Interaktionen" - }, - { - "label": "Übersetzung für \"Report absenden\"", - "default": "Report absenden" - }, - { - "label": "Beschriftung für den \"Neustart\"-Button", - "default": "Neustart" - }, - { - "label": "Titel für die Zusammenfassung", - "default": "Zusammenfassung" - }, - { - "label": "Übersetzung für \"Alle Interaktionen\"", - "default": "Alle Interaktionen" - }, - { - "label": "Übersetzung für \"Unbeantwortete Interaktionen\"", - "default": "Unbeantwortete Interaktionen" - }, - { - "label": "Punkte", - "description": "\"@score\" ist ein Platzhalter und wird durch die aktuelle Punktzahl ersetzt, und \"@maxscore\" wird durch die maximal mögliche Punktzahl ersetzt", - "default": "@score / @maxscore" - }, - { - "label": "Fortschritt bei den Interaktionen je Seite", - "description": "\"@left\" ist ein Platzhalter und wird durch die Anzahl der verbleibenden Interaktionen ersetzt, und \"@max\" wird durch die Gesamtzahl der Interaktionen der Seite ersetzt", - "default": "@left von @max Interaktionen abgeschlossen" - }, - { - "label": "Übersetzung für \"Keine Interaktionen\"", - "default": "Keine Interaktionen" - }, - { - "label": "Übersetzung für \"Punkte\"", - "default": "Punkte" - }, - { - "label": "Beschriftung für den \"Zusammenfassung und Einsenden\"-Button", - "default": "Zusammenfassung und Einsenden" - }, - { - "label": "Übersetzung für \"Du hast noch keine Seiten bearbeitet.\"", - "default": "Du hast noch keine Seiten bearbeitet." - }, - { - "label": "Übersetzung für \"Du musst wenigstens eine Seite bearbeiten, um die Zusammenfassung zu sehen.\"", - "default": "Du musst wenigstens eine Seite bearbeiten, um die Zusammenfassung zu sehen." - }, - { - "label": "Übersetzung für \"Deine Antworten wurden zur Begutachtung versendet!\"", - "default": "Deine Antworten wurden zur Begutachtung versendet!" - }, - { - "label": "Beschriftung für Buchfortschritt in der Zusammenfassung", - "default": "Buchfortschritt" - }, - { - "label": "Beschriftung für Interaktionsfortschritt in der Zusammenfassung", - "default": "Interaktionsfortschritt" - }, - { - "label": "Beschriftung für Gesamtpunktzahl", - "default": "Gesamtpunktzahl" - }, - { - "label": "Texte zur Barrierefreiheit", - "fields": [ - { - "label": "Textalternative für die Fortschrittsanzeige", - "description": "Dieser Text ersetzt die grafische Fortschrittsanzeige. (Es können die Platzhalter @page und @total verwendet werden.)", - "default": "Seite @page von @total." - }, - { - "label": "Beschriftung des Buttons, um das Inhaltsverzeichnis ein- und auszublenden", - "default": "Inhaltsverzeichnis ein- bzw. ausschalten" - } - ] - } - ] -} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/el.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/el.json deleted file mode 100644 index b22f653..0000000 --- a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/el.json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "semantics": [ - { - "label": "Ενεργοποίηση εξωφύλλου", - "description": "Το εξώφυλλο περιέχει πληροφορίες για το βιβλίο" - }, - { - "label": "Εξώφυλλο", - "fields": [ - { - "label": "Περιγραφή εξωφύλλου", - "description": "Αυτό το κείμενο θα είναι η περιγραφή του βιβλίου σας" - }, - { - "label": "Εικόνα εξωφύλλου", - "description": "Μια προαιρετική εικόνα φόντου για την εισαγωγή." - }, - { - "label": "Εναλλακτικό κείμενο για την εικόνα εξωφύλλου", - "description": "Ένα εναλλακτικό κείμενο για την εικόνα εξωφύλλου" - } - ] - }, - { - "label": "Σελίδες", - "entity": "Σελίδα", - "widgets": [ - { - "label": "Προεπιλογή" - } - ], - "field": { - "label": "Αντικείμενο", - "fields": [ - { - "label": "Σελίδα" - } - ] - } - }, - { - "label": "Ρυθμίσεις", - "fields": [ - { - "label": "Προβολή πίνακα περιεχομένων ως προεπιλογή", - "description": "Όταν είναι ενεργό, ο πίνακας περιεχομένων εμφανίζεται μόλις ανοίξει κάποιος/α το βιβλίο" - }, - { - "label": "Προβολή Ενδείξεων Προόδου", - "description": "Όταν είναι ενεργό, σε κάθε σελίδα θα εμφανίζονται ενδείξεις στον/στην χρήστη που θα τον/την ενημερώνουν αν και κατά πόσο έχει ολοκληρώσει τη δραστηριότητά του/της στη συγκεκριμένη σελίδα." - }, - { - "label": "Ενεργοποίηση αυτόματης προόδου", - "description": "Όταν είναι ενεργό μια σελίδα που δεν περιέχει δραστηριότητες θεωρείται ολοκληρωμένη μόλις προβληθεί. Μια σελίδα που περιέχει δραστηριότητες θεωρείται ολοκληρωμένη όταν ολοκληρωθούν όλες οι δραστηριότητες. Αν δεν είναι ενεργό, στο κάτω μέρος κάθε σελίδας θα εμφανίζεται ένα κουμπί που θα πρέπει να πατήσει ο/η χρήστης μόλις ολοκληρώσει την ενασχόλησή του/της με τη συγκεκριμένη σελίδα." - }, - { - "label": "Προβολή σύνοψης", - "description": "Όταν είναι ενεργό, ο/η χρήστης μπορεί να δει μια σύνοψη και να καταχωρεί τις απαντήσεις/πρόοδό του/της" - } - ] - }, - { - "label": "Μετάφραση για το \"Ανάγνωση\"", - "default": "Ανάγνωση" - }, - { - "label": "Μετάφραση για το \"Προβολή 'Πίνακα Περιεχομένων'\"", - "default": "Προβολή 'Πίνακα Περιεχομένων'" - }, - { - "label": "Μετάφραση για το \"Απόκρυψη 'Πίνακα Περιεχομένων'\"", - "default": "Απόκρυψη 'Πίνακα Περιεχομένων'" - }, - { - "label": "Μετάφραση για το \"Επόμενη σελίδα\"", - "default": "Επόμενη σελίδα" - }, - { - "label": "Μετάφραση για το \"Προηγούμενη σελίδα\"", - "default": "Προηγούμενη σελίδα" - }, - { - "label": "Μετάφραση για το \"Ολοκληρωμένη σελίδα!\"", - "default": "Ολοκληρωμένη σελίδα!" - }, - { - "label": "Μετάφραση για το \"@pages από @total έχουν ολοκληρωθεί\" (@pages και @total θα αντικατασταθούν από πραγματικές τιμές)", - "default": "@pages από @total έχουν ολοκληρωθεί" - }, - { - "label": "Μετάφραση για το \"Μη ολοκληρωμένη σελίδα\"", - "default": "Μη ολοκληρωμένη σελίδα" - }, - { - "label": "Μετάφραση για το \"Μετάβαση στην κορυφή\"", - "default": "Μετάβαση στην κορυφή" - }, - { - "label": "Μετάφραση για το \"Έχω ολοκληρώσει αυτήν τη σελίδα\"", - "default": "Έχω ολοκληρώσει αυτήν τη σελίδα" - }, - { - "label": "Ετικέτα κουμπιού πλήρους οθόνης", - "default": "Πλήρης οθόνη" - }, - { - "label": "Ετικέτα κουμπιού εξόδου από προβολή πλήρους οθόνης", - "default": "Έξοδος από πρόβολή πλήρους οθόνης" - }, - { - "label": "Πρόοδος στις σελίδες του βιβλίου", - "description": "\"@count\" μεταβλητή που θα αντικατασταθεί από τον αριθμό σελίδων και \"@total\" μεταβλητή που θα αντικατασταθεί από τον συνολικό αριθμό των σελίδων", - "default": "@count από @total σελίδες" - }, - { - "label": "Πρόοδος διάδρασης", - "description": "\"@count\" μεταβλητή που θα αντικατασταθεί από τον αριθμό των αλληλεπιδράσεων και \"@total\" μεταβλητή που θα αντικατασταθεί από τον συνολικό αριθμό των διαδραστικών δραστηριοτήτων", - "default": "@count από @total δραστηριοτήτων" - }, - { - "label": "Μετάφραση για το \"Υποβολή Αναφοράς\"", - "default": "Υποβολή Αναφοράς" - }, - { - "label": "Ετικέτα για το κουμπί \"επανεκκίνηση\"", - "default": "Επανεκκίνηση" - }, - { - "label": "Κεφαλίδα περίληψης", - "default": "Περίληψη" - }, - { - "label": "Μετάφραση για το \"Όλες οι διαδράσεις\"", - "default": "Όλες οι διαδράσεις" - }, - { - "label": "Μετάφραση για το \"Διαδράσεις που δεν απαντήθηκαν\"", - "default": "Διαδράσεις που δεν απαντήθηκαν" - }, - { - "label": "Βαθμολογία", - "description": "\"@score\" μεταβλητή που θα αντικατασταθεί από την τρέχουσα βαθμολογία και \"@maxscore\" μεταβλητή που θα αντικατασταθεί από τη μέγιστη δυνατή βαθμολογία", - "default": "@score / @maxscore" - }, - { - "label": "Ολοκλήρωση διαδράσεων ανά σελίδα", - "description": "\"@left\" μεταβλητή που θα αντικατασταθεί από τις διαδράσεις που απομένουν και \"@max\" μεταβλητή που θα αντικατασταθεί από τον συνολικό αριθμό διαδράσεων που υπάρχουν στην σελίδα", - "default": "@left από @max διαδράσεις έχουν ολοκληρωθεί" - }, - { - "label": "Μετάφραση για το \"Δεν υπάρχουν διαδράσεις\"", - "default": "Δεν υπάρχουν διαδράσεις" - }, - { - "label": "Μετάφραση για το \"Βαθμολογία\"", - "default": "Βαθμολογία" - }, - { - "label": "Ετικέτα για το κουμπί \"Περίληψη & υποβολή\"", - "default": "Περίληψη & υποβολή" - }, - { - "label": "Μετάφραση για το \"Δεν έχετε ολοκληρώσει καμία διάδραση σε καμία από τις σελίδες.\"", - "default": "Δεν έχετε ολοκληρώσει καμία διάδραση σε καμία από τις σελίδες." - }, - { - "label": "Μετάφραση για το \"Πρέπει να έχετε ολοκληρώσει τουλάχιστον μια διάδραση σε τουλάχιστον μια σελίδα για να μπορέσετε να προβάλετε την περίληψη.\"", - "default": "Πρέπει να έχετε ολοκληρώσει τουλάχιστον μια διάδραση σε τουλάχιστον μια σελίδα για να μπορέσετε να προβάλετε την περίληψη." - }, - { - "label": "Μετάφραση για το \"Οι απαντήσεις σας έχουν υποβληθεί για έλεγχο!\"", - "default": "Οι απαντήσεις σας έχουν υποβληθεί για έλεγχο!" - }, - { - "label": "Ετικέτα προόδου στο βιβλίο", - "default": "Πρόοδος στο βιβλίο" - }, - { - "label": "Ετικέτα προόδου διαδράσεων", - "default": "Πρόοδος διαδράσεων" - }, - { - "label": "Ετικέτα συνολικής βαθμολογίας", - "default": "Συνολική βαθμολογία" - }, - { - "label": "Κείμενα προσβασιμότητας", - "fields": [ - { - "label": "Εναλλακτικό κείμενο για την πρόοδο στις σελίδες του βιβλίου", - "description": "Ένα εναλλακτικό κείμενο για την οπτική αναπαράσταση της προόδου στις σελίδες του βιβλίου. Υπάρχουν οι εξής διαθέσιμες μεταβλητές: @page και @total.", - "default": "Σελίδα @page από @total." - }, - { - "label": "Ετικέτα για την επέκταση / σύμπτυξη του μενού πλοήγησης", - "default": "Εναλλαγή μενού πλοήγησης" - } - ] - } - ] -} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/es-mx.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/es-mx.json deleted file mode 100644 index 404400f..0000000 --- a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/es-mx.json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "semantics": [ - { - "label": "Habilitar cubierta de libro", - "description": "Una cubierta que muestra información respecto al libro antes de acceder a él" - }, - { - "label": "Página de Cubierta", - "fields": [ - { - "label": "Descripción de la Cubierta", - "description": "Este texto será la descripción de su libro." - }, - { - "label": "Imagen de cubierta", - "description": "Una imagen de fondo opcional para la introducción." - }, - { - "label": "Texto alternativo para imagen de cubierta", - "description": "Un texto alternativo para la imagen de cubierta" - } - ] - }, - { - "label": "Páginas", - "entity": "Página", - "widgets": [ - { - "label": "Predeterminado" - } - ], - "field": { - "label": "Elemento", - "fields": [ - { - "label": "Página" - } - ] - } - }, - { - "label": "Configuraciones del comportamiento", - "fields": [ - { - "label": "Mostrar tabla de contenidos como configuración predeterminada", - "description": "Cuando se habilita, la tabla de contenidos es mostrada al abrir el libro" - }, - { - "label": "Mostrar Indicadores del Progreso", - "description": "Cuando se habilita, habrá indicadores por página mostrándole al usuario si ha terminado con la página o no." - }, - { - "label": "Habilitar progreso automático", - "description": "Si se habilita, una página sin trabajos es considerada hecha cuando es vista. Una página con trabajos cuando todos los trabajos están hechos. Si se deshabilita, habrá un botón al fondo de cada página para que el usuario pueda hacer clic cuando haya terminado con la página." - }, - { - "label": "Mostrar resumen", - "description": "Cuando se habilita, el usuario puede ver un resumen y enviar el progreso/respuestas" - } - ] - }, - { - "label": "Traducción para \"Leer\"", - "default": "Leer" - }, - { - "label": "Traducción para \"Mostrar 'Tabla de contenidos'\"", - "default": "Mostrar 'Tabla de contenidos'" - }, - { - "label": "Traducción para \"Ocultar 'Tabla de contenidos'\"", - "default": "Ocultar 'Tabla de contenidos'" - }, - { - "label": "Traducción para \"Página siguiente\"", - "default": "Página siguiente" - }, - { - "label": "Traducción para \"Página anterior\"", - "default": "Página anterior" - }, - { - "label": "Traducción para \"¡Página completada!\"", - "default": "¡Página completada!" - }, - { - "label": "Traducción para \"@pages de @total completadas\" (@pages y @total serán remplazadas por los valores actuales)", - "default": "@pages de @total completadas" - }, - { - "label": "Traducción para \"Página incompleta\"", - "default": "Página incompleta" - }, - { - "label": "Traducción para \"Navegar a superior\"", - "default": "Navegar a superior" - }, - { - "label": "Traducción para \"He terminado esta página\"", - "default": "He terminado esta página" - }, - { - "label": "Etiqueta botón PantallaCompleta", - "default": "PantallaCompleta" - }, - { - "label": "Etiqueta botón Salir de PantallaCompleta", - "default": "Salir de PantallaCompleta" - }, - { - "label": "Progreso de páginas en libro", - "description": "\"@count\" será remplazado por el número de página, y \"@total\" por el número total de páginas", - "default": "@count de @total páginas" - }, - { - "label": "Progreso de interacciones", - "description": "\"@count\" será remplazado por el número de interacción, y \"@total\" por el número total de interacciones", - "default": "@count de @total interacciones" - }, - { - "label": "Traducción para \"Enviar Reporte\"", - "default": "Enviar Reporte" - }, - { - "label": "Etiqueta para botón \"Reiniciar\"", - "default": "Reiniciar" - }, - { - "label": "Encabezado del resumen", - "default": "Resumen" - }, - { - "label": "Traducción para \"Todas las interacciones\"", - "default": "Todas las interacciones" - }, - { - "label": "Traducción para \"Interacciones no respondidas\"", - "default": "Interacciones no respondidas" - }, - { - "label": "Puntaje", - "description": "\"@score\" será remplazado por el puntaje actual, y \"@maxscore\" será remplazado por el máximo puntaje obtenible", - "default": "@score / @maxscore" - }, - { - "label": "Finalización de interacciones por página", - "description": "\"@left\" será remplazado por las interacciones restantes, y \"@max\" será remplazado por el número total de interacciones en la página", - "default": "@left de @max interacciones completadas" - }, - { - "label": "Traducción para \"Sin interacciones\"", - "default": "Sin interacciones" - }, - { - "label": "Traducción para \"Puntaje\"", - "default": "Puntaje" - }, - { - "label": "Etiqueta para botón \"Resumen y Envío\"", - "default": "Resumen y Envío" - }, - { - "label": "Traducción para \"Usted no ha interactuado con ninguna página.\"", - "default": "Usted no ha interactuado con ninguna página." - }, - { - "label": "Traducción para \"Usted tiene que interactuar con al menos una página antes de que pueda ver el resumen.\"", - "default": "Usted tiene que interactuar con al menos una página antes de que pueda ver el resumen." - }, - { - "label": "Traducción para \"¡Sus respuestas han sido enviadas para revisión!\"", - "default": "¡Sus respuestas son enviadas para revisión!" - }, - { - "label": "Etiqueta del progreso del resumen", - "default": "Progreso del libro" - }, - { - "label": "Etiqueta del progreso de interacciones", - "default": "Progreso de interacciones" - }, - { - "label": "Etiqueta del puntaje total", - "default": "Puntaje total" - }, - { - "label": "Textos de Accesibilidad", - "fields": [ - { - "label": "Alternativa textual para Progreso de páginas", - "description": "Un texto alternativo para el progreso visual de páginas. @page y @total son variables disponibles.", - "default": "Página @page de @total." - }, - { - "label": "Etiqueta para menú de navegación expandible/colapsable", - "default": "Alternar menú de navegación" - } - ] - } - ] -} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/es.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/es.json deleted file mode 100644 index d88d54a..0000000 --- a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/es.json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "semantics": [ - { - "label": "Habilitar cubierta de libro", - "description": "Una cubierta que muestra información respecto al libro antes de acceder a él" - }, - { - "label": "Página de Cubierta", - "fields": [ - { - "label": "Descripción de la Cubierta", - "description": "Este texto será la descripción de su libro." - }, - { - "label": "Imagen de cubierta", - "description": "Una imagen de fondo opcional para la introducción." - }, - { - "label": "Texto alternativo para imagen de cubierta", - "description": "Un texto alternativo para la imagen de cubierta" - } - ] - }, - { - "label": "Páginas", - "entity": "Página", - "widgets": [ - { - "label": "Predeterminado" - } - ], - "field": { - "label": "Elemento", - "fields": [ - { - "label": "Página" - } - ] - } - }, - { - "label": "Configuraciones del comportamiento", - "fields": [ - { - "label": "Mostrar tabla de contenidos como configuración predeterminada", - "description": "Cuando se habilita, la tabla de contenidos es mostrada al abrir el libro" - }, - { - "label": "Mostrar Indicadores del Progreso", - "description": "Cuando se habilita, habrá indicadores por página mostrándole al usuario si ha terminado con la página o no." - }, - { - "label": "Habilitar progreso automático", - "description": "Si se habilita, una página sin trabajos es considerada hecha cuando es vista. Una página con trabajos cuando todos los trabajos están hechos. Si se deshabilita, habrá un botón al fondo de cada página para que el usuario pueda hacer clic cuando haya terminado con la página." - }, - { - "label": "Mostrar resumen", - "description": "Cuando se habilita, el usuario puede ver un resumen y enviar el progreso/respuestas" - } - ] - }, - { - "label": "Traducción para \"Leer\"", - "default": "Leer" - }, - { - "label": "Traducción para \"Mostrar 'Tabla de contenidos'\"", - "default": "Mostrar 'Tabla de contenidos'" - }, - { - "label": "Traducción para \"Ocultar 'Tabla de contenidos'\"", - "default": "Ocultar 'Tabla de contenidos'" - }, - { - "label": "Traducción para \"Página siguiente\"", - "default": "Página siguiente" - }, - { - "label": "Traducción para \"Página anterior\"", - "default": "Página anterior" - }, - { - "label": "Traducción para \"¡Página completada!\"", - "default": "¡Página completada!" - }, - { - "label": "Traducción para \"@pages de @total completadas\" (@pages y @total serán remplazadas por los valores actuales)", - "default": "@pages de @total completadas" - }, - { - "label": "Traducción para \"Página incompleta\"", - "default": "Página incompleta" - }, - { - "label": "Traducción para \"Navegar a superior\"", - "default": "Navegar a superior" - }, - { - "label": "Traducción para \"He terminado esta página\"", - "default": "He terminado esta página" - }, - { - "label": "Etiqueta botón PantallaCompleta", - "default": "PantallaCompleta" - }, - { - "label": "Etiqueta botón Salir de PantallaCompleta", - "default": "Salir de PantallaCompleta" - }, - { - "label": "Progreso de páginas en libro", - "description": "\"@count\" será remplazado por el número de página, y \"@total\" por el número total de páginas", - "default": "@count de @total páginas" - }, - { - "label": "Progreso de interacciones", - "description": "\"@count\" será remplazado por el número de interacción, y \"@total\" por el número total de interacciones", - "default": "@count de @total interacciones" - }, - { - "label": "Traducción para \"Enviar Reporte\"", - "default": "Enviar Reporte" - }, - { - "label": "Etiqueta para botón \"Reiniciar\"", - "default": "Reiniciar" - }, - { - "label": "Encabezado del resumen", - "default": "Resumen" - }, - { - "label": "Traducción para \"Todas las interacciones\"", - "default": "Todas las interacciones" - }, - { - "label": "Traducción para \"Interacciones no respondidas\"", - "default": "Interacciones no respondidas" - }, - { - "label": "Puntaje", - "description": "\"@score\" será remplazado por el puntaje actual, y \"@maxscore\" será remplazado por el máximo puntaje obtenible", - "default": "@score / @maxscore" - }, - { - "label": "Finalización de interacciones por página", - "description": "\"@left\" será remplazado por las interacciones restantes, y \"@max\" será remplazado por el número total de interacciones en la página", - "default": "@left de @max interacciones completadas" - }, - { - "label": "Traducción para \"Sin interacciones\"", - "default": "Sin interacciones" - }, - { - "label": "Traducción para \"Puntaje\"", - "default": "Puntaje" - }, - { - "label": "Etiqueta para botón \"Resumen y Envío\"", - "default": "Resumen y Envío" - }, - { - "label": "Traducción para \"Usted no ha interactuado con ninguna página.\"", - "default": "Usted no ha interactuado con ninguna página." - }, - { - "label": "Traducción para \"Usted tiene que interactuar con al menos una página antes de que pueda ver el resumen.\"", - "default": "Usted tiene que interactuar con al menos una página antes de que pueda ver el resumen." - }, - { - "label": "Traducción para \"¡Sus respuestas han sido enviadas para revisión!\"", - "default": "¡Sus respuestas han sido enviadas para revisión!" - }, - { - "label": "Etiqueta del progreso del resumen", - "default": "Progreso del libro" - }, - { - "label": "Etiqueta del progreso de interacciones", - "default": "Progreso de interacciones" - }, - { - "label": "Etiqueta del puntaje total", - "default": "Puntaje total" - }, - { - "label": "Textos de Accesibilidad", - "fields": [ - { - "label": "Alternativa textual para Progreso de páginas", - "description": "Un texto alternativo para el progreso visual de páginas. @page y @total son variables disponibles.", - "default": "Página @page de @total." - }, - { - "label": "Etiqueta para menú de navegación expandible/colapsable", - "default": "Alternar menú de navegación" - } - ] - } - ] -} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/et.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/et.json deleted file mode 100644 index b496135..0000000 --- a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/et.json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "semantics": [ - { - "label": "Luba tiitelleht", - "description": "Leht, mis näitab teavet raamatu kohta enne selle avamist" - }, - { - "label": "Tiitelleht", - "fields": [ - { - "label": "Tiitellehe kirjeldus", - "description": "See tekst kirjeldab sinu raamatut." - }, - { - "label": "Tiitellehe pilt", - "description": "Valikuline taustapilt tutvustusele." - }, - { - "label": "Tiitellehe pildi alternatiivtekst", - "description": "Alternatiivne tekst tiitellehe pildile" - } - ] - }, - { - "label": "Peatükid", - "entity": "Peatükk", - "widgets": [ - { - "label": "Vaikimisi" - } - ], - "field": { - "label": "Üksus", - "fields": [ - { - "label": "Peatükk" - } - ] - } - }, - { - "label": "Käitumisseaded", - "fields": [ - { - "label": "Kuva vaikimisi sisukorda", - "description": "Kui on lubatud, siis raamatu avamisel näidatakse sisukorda" - }, - { - "label": "Näida edenemisosutit", - "description": "Kui on lubatud, siis on lehel osutid, mis näitavad kasutajale, kas ta on lehega lõpule jõudnud või mitte." - }, - { - "label": "Võimalda automaatne edenemine", - "description": "Kui on lubatud, siis ülesanneteta lehekülg loetakse vaatamisel läbituks, ülesannetega lehekülg peale kõigi ülesannete täitmist. Kui keelatud, siis on iga lehe all nupp, mida kasutaja peab lehe läbituks märkimiseks vajutama." - }, - { - "label": "Kuva kokkuvõtet", - "description": "Kui lubatud, siis kasutaja näeb kokkuvõtet ning saab oma tulemused edastada/vaadata" - } - ] - }, - { - "label": "\"Loe\" nupu tõlge", - "default": "Loe" - }, - { - "label": "\"Kuva 'sisukord'\" nupu tõlge", - "default": "Kuva 'sisukord'" - }, - { - "label": "\"Peida 'sisukord'\" nupu tõlge", - "default": "Peida 'sisukord'" - }, - { - "label": "\"Järgmine lehekülg\" nupu tõlge", - "default": "Järgmine lehekülg" - }, - { - "label": "\"Eelmine lehekülg\" nupu tõlge", - "default": "Eelmine lehekülg" - }, - { - "label": "\"Peatükk läbitud!\" tõlge", - "default": "Peatükk läbitud!" - }, - { - "label": "Tõlge tehtud \"@pages leheküljele @total leheküljest\" (@pages ja @total asendatakse tegelike väärtusega)", - "default": "@pages / @total läbitud" - }, - { - "label": "\"Peatükk pooleli\" tõlge", - "default": "Peatükk pooleli" - }, - { - "label": "\"Liigu lehekülje ülaossa\" tõlge", - "default": "Liigu lehkülje ülaossa" - }, - { - "label": "\"Olen selle lehe läbinud\" tõlge", - "default": "Olen selle lehe läbinud" - }, - { - "label": "Täisekraan nupu silt", - "default": "Täisekraan" - }, - { - "label": "Välju täisekraanilt nupu silt", - "default": "Välju täisekraanilt" - }, - { - "label": "Page progress in book", - "description": "\"@count\" will be replaced by page count, and \"@total\" with the total number of pages", - "default": "@count of @total pages" - }, - { - "label": "Interaction progress", - "description": "\"@count\" will be replaced by interaction count, and \"@total\" with the total number of interactions", - "default": "@count of @total interactions" - }, - { - "label": "Translation for \"Submit report\"", - "default": "Submit Report" - }, - { - "label": "Label for \"restart\" button", - "default": "Restart" - }, - { - "label": "Summary header", - "default": "Kokkuvõte" - }, - { - "label": "Translation for \"All interactions\"", - "default": "Kõik harjutused" - }, - { - "label": "Translation for \"Unanswered interactions\"", - "default": "Vastamata harjutused" - }, - { - "label": "Tulemus", - "description": "\"@score\" will be replaced with current score, and \"@maxscore\" will be replaced with max achievable score", - "default": "@score / @maxscore" - }, - { - "label": "Harjutuste edenemine lehe kohta", - "description": "\"@left\" will be replaced with remaining interactions, and \"@max\" will be replaced with total number of interactions on the page", - "default": "@left / @max harjutusest täidetud" - }, - { - "label": "Translation for \"No interactions\"", - "default": "Harjutused puuduvad" - }, - { - "label": "Translation for \"Score\"", - "default": "Tulemus" - }, - { - "label": "Label for \"Summary & submit\" button", - "default": "Kokkuvõte & vastuste esitamine" - }, - { - "label": "Translation for \"You have not interacted with any pages.\"", - "default": "Sa ei ole veel lehtesid vaadanud." - }, - { - "label": "Translation for \"You have to interact with at least one page before you can see the summary.\"", - "default": "Pead vähemalt ühte lehte vaatama enne kui soovid kokkuvõtte lehte vaadata." - }, - { - "label": "Translation for \"Your answers are submitted for review!\"", - "default": "Vastused on edastatud ülevaatamiseks!" - }, - { - "label": "Summary progress label", - "default": "Edenemine" - }, - { - "label": "Interactions progress label", - "default": "Harjutuste edenemine" - }, - { - "label": "Total score label", - "default": "Tulemused" - }, - { - "label": "Puudega inimest toetavad tekstid", - "fields": [ - { - "label": "Lehekülje edenemise tekstialternatiiv", - "description": "Alternatiivtekst visuaalsele lehel edenemise osutile. Kasutatavad muutujad on @page ja @total.", - "default": "Lehekülg @page kokku @total lehest." - }, - { - "label": "Silt navigeerimismenüü avamiseks ja sulgemiseks", - "default": "Ava või sulge navigeerimismenüü" - } - ] - } - ] -} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/eu.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/eu.json deleted file mode 100644 index 229c14e..0000000 --- a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/eu.json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "semantics": [ - { - "label": "Gaitu liburuaren portada", - "description": "Liburuan sartu aurretik bere informazioa erakusten duen portada bat" - }, - { - "label": "Portadako orria", - "fields": [ - { - "label": "Portadaren deskribapena", - "description": "Testu hau zure liburuaren deskribapena izango da." - }, - { - "label": "Portadaren irudia", - "description": "Portadarentzako atzeko planoko hautazko irudi bat." - }, - { - "label": "Portadaren irudiaren ordezko testua", - "description": "Portadaren irudiarentzako ordezko testu bat" - } - ] - }, - { - "label": "Kapituluak", - "entity": "Kapitulua", - "widgets": [ - { - "label": "Lehenetsitakoa" - } - ], - "field": { - "label": "Elementua", - "fields": [ - { - "label": "Kapitulua" - } - ] - } - }, - { - "label": "Portaeren ezarpenak", - "fields": [ - { - "label": "Erakutsi eduki-taula modu lehenetsian", - "description": "Gaituz gero eduki-taula erakutsiko da liburua irekitzean" - }, - { - "label": "Erakutsi aurrerapenaren adierazleak", - "description": "Gaituz gero orri bakoitzean erabiltzaileari orri amaitu duen edo ez erakusten duten adierazleak egongo dira." - }, - { - "label": "Gaitu aurrerapen autommatikoa", - "description": "Gaituz gero zereginik gabeko orri bat ikusitakoan osatutzat emango da. Zereginak dituen orri bat zeregin guztiak osatzean osatuko da. Desgaituz gero orri bakoitzaren amaieran botoi bat agertuko da erabiltzaileak orria amaitzean klik egin dezan." - }, - { - "label": "Erakutsi laburpena", - "description": "Gaituz gero erabiltzaileak laburpen bat ikusi eta aurrerapena/erantzunako bidali ditzake" - } - ] - }, - { - "label": "\"Read\"-erako itzulpena", - "default": "Irakurri" - }, - { - "label": "\"Display 'Table of contents'\"-erako itzulpena", - "default": "Erakutsi 'Eduki-taulak'" - }, - { - "label": "\"Hide 'Table of contents'\"-erako itzulpena", - "default": "Ezkutatu 'Eduki-taulak'" - }, - { - "label": "\"Next page\"-erako itzulpena", - "default": "Hurrengo orria" - }, - { - "label": "\"Previous page\"-erako itzulpena", - "default": "Aurreko orria" - }, - { - "label": "\"Page completed!\"-erako itzulpena", - "default": "Kapitulua osatu duzu!" - }, - { - "label": "\"@pages of @total completed\"-erako itzulpena (@pages eta @total benetako balioekin ordezkatuko dira)", - "default": "@total-(e)tik @pages osatu dituzu" - }, - { - "label": "\"Incomplete page\"-erako itzulpena", - "default": "Osatu gabeko kapitulua" - }, - { - "label": "\"Navigate to the top\"-erako itzulpena", - "default": "Nabigatu goraino" - }, - { - "label": "\"I have finished this page\"-erako itzulpena", - "default": "Orri hau amaitu dut" - }, - { - "label": "Pantaila-osoan botoiaren etiketa", - "default": "Pantaila-osoan" - }, - { - "label": "Irten pantaila-osotik botoiaren etiketa", - "default": "Irten pantaila-osotik" - }, - { - "label": "Liburuko orrien aurrerapena", - "description": "\"@count\" orriaren zenbakiarekin ordezkatuko da, eta \"@total\" guztirako orri kopuruarekin", - "default": "@count orri guztirako @total orrietatik" - }, - { - "label": "Interakzioaren aurrerapena", - "description": "\"@count\" interakzioaren zenbakiarekin ordezkatuko da, eta \"@total\" guztirako interazkio kopuruarekin", - "default": "@count guztirako @total interakzioetatik" - }, - { - "label": "\"Submit report\" testuaren itzulpena", - "default": "Bidali Txostena" - }, - { - "label": "\"berrabiarazi\" botoiaren etiketa", - "default": "Berrabiarazi" - }, - { - "label": "Laburpenaren goiburua", - "default": "Laburpena" - }, - { - "label": "\"All interactions\" testuaren itzulpena", - "default": "Interakzio guztiak" - }, - { - "label": "\"Unanswered interactions\" testuaren itzulpena", - "default": "Erantzun gabeko interakzioak" - }, - { - "label": "Emaitza", - "description": "\"@score\" une horretako emaitzarekin ordezkatuko da, eta \"@maxscore\" lortu daitekeen gehienezko emaitzarekin", - "default": "@score / @maxscore" - }, - { - "label": "Orriko interakzioen osaketa", - "description": "\"@left\" geratzen diren interakzioekin ordezkatuko da, eta \"@max\" orriko guztirako interakzio kopuruarekin", - "default": "@left geratzen dira orriko @max interakzioetatik" - }, - { - "label": "\"No interactions\" testuaren itzulpena", - "default": "Interakziorik ez" - }, - { - "label": "\"Score\" testuaren itzulpena", - "default": "Emaitza" - }, - { - "label": "\"Laburpena & bidali\" botoiaren etiketa", - "default": "Laburpena & bidali" - }, - { - "label": "\"You have not interacted with any pages.\" testuaren itzulpena", - "default": "Ez duzu inongo orrirekin interakziorik izan." - }, - { - "label": "\"You have to interact with at least one page before you can see the summary.\" testuaren itzulpena", - "default": "Gutxienez orri batekin interakzioa izan behar duzu laburpena ikusi aurretik." - }, - { - "label": "\"Your answers are submitted for review!\" testuaren itzulpena", - "default": "Zure erantzunak berrikusiak izan daitezen bidali dira!" - }, - { - "label": "Aurrerapenaren laburpenaren etiketa", - "default": "Liburuaren aurrerapena" - }, - { - "label": "Interakzioaren aurrerapenaren etiketa", - "default": "Interakzioaren aurrerapena" - }, - { - "label": "Emaitza guztiraren etiketa", - "default": "Emaitza guztira" - }, - { - "label": "Eskuragarritasun testuak", - "fields": [ - { - "label": "Orri-aurrerapen ordezko testuala", - "description": "Orriaren aurrerapen bisualaren ordezko testua. @page eta @total aldagaiak daude eskuragarri.", - "default": "@total-(e)tik @page. orria." - }, - { - "label": "Nabigazio-menua zabaldu edo tolesteko etiketa", - "default": "Zabaldu/Tolestu nabigazio-menua" - } - ] - } - ] -} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/fa.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/fa.json deleted file mode 100644 index 2a8379f..0000000 --- a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/fa.json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "semantics": [ - { - "label": "فعال‌سازی جلد کتاب", - "description": "جلدی که پیش از دسترسی به کتاب، اطلاعاتی را درباره آن نشان می‌دهد" - }, - { - "label": "جلد", - "fields": [ - { - "label": "توصیف جلد", - "description": "این متن توصیف کتابتان خواهد بود." - }, - { - "label": "تصویر جلد", - "description": "یک تصویر پس‌زمینه اختیاری برای مقدمه." - }, - { - "label": "متن بدیل تصویر جلد", - "description": "یک متن بدیل برای تصویر جلد" - } - ] - }, - { - "label": "صفحه", - "entity": "صفحه", - "widgets": [ - { - "label": "پیش‌فرض" - } - ], - "field": { - "label": "مطلب", - "fields": [ - { - "label": "صفحه" - } - ] - } - }, - { - "label": "تنظیمات عملکرد", - "fields": [ - { - "label": "نمایش پیش‌فرض فهرست موضوعات", - "description": "در صورت فعال‌سازی، فهرست موضوعات با باز شدن کتاب نمایش داده می‌شود" - }, - { - "label": "نمایش شاخص‌های پیشرفت", - "description": "در صورت فعال‌سازی، شاخص‌هایی در هر صفحه وجود خواهند داشت که به کاربر نشان می‌دهد آیا کار او با آن صفحه تمام شده است یا نه." - }, - { - "label": "فعال‌سازی پیشروی خودکار", - "description": "در صورت فعال‌سازی، یک صفحه بدون تکلیف پس از اینکه مشاهده شود، انجام شده در نظر گرفته می‌شود. یک صفحه با تکلیف هم وقتی انجام شده در نظر گرفته می‌شود که همه تکلیف‌ها انجام شود. در صورت غیرفعال‌سازی، دکمه‌ای در زیر هر صفحه قرار خواهد گرفت تا کاربر در صورت اتمام کار در آن صفحه روی آن کلیک کند." - }, - { - "label": "نمایش جمع‌بندی", - "description": "در صورت فعال‌سازی، کاربر می‌تواند جمع‌بندی را ببیند و پیشرفت/پاسخ‌ها را ارسال کند" - } - ] - }, - { - "label": "ترجمه بخوان", - "default": "بخوان" - }, - { - "label": "ترجمه نمایش فهرست موضوعات", - "default": "نمایش فهرست موضوعات" - }, - { - "label": "ترجمه پنهان‌سازی فهرست موضوعات", - "default": "پنهان‌سازی فهرست موضوعات" - }, - { - "label": "ترجمه صفحه بعد", - "default": "صفحه بعد" - }, - { - "label": "ترجمه صفحه قبل", - "default": "صفحه قبل" - }, - { - "label": "ترجمه صفحه تکمیل شد!", - "default": "صفحه تکمیل شد!" - }, - { - "label": "ترجمه @pages صفحه از کل @total صفحه تکمیل شد (@pages و @total با مقادیر واقعی جایگزین می‌شوند)", - "default": "@pages صفحه از کل @total صفحه تکمیل شد" - }, - { - "label": "ترجمه صفحه تکمیل نشده", - "default": "صفحه تکمیل نشده" - }, - { - "label": "ترجمه راهبری به بالا", - "default": "راهبری به بالا" - }, - { - "label": "ترجمه من این صفحه را به پایان رسانده‌ام", - "default": "من این صفحه را به پایان رسانده‌ام" - }, - { - "label": "برچسب دکمه تمام‌صفحه", - "default": "تمام‌صفحه" - }, - { - "label": "برچسب دکمه خروج از تمام‌صفحه", - "default": "خروج از تمام‌صفحه" - }, - { - "label": "پیشرفت صفحه در کتاب", - "description": "@count با شماره صفحه جایگزین می‌شود، و @total با تعداد کل صفحات جایگزین می‌شود", - "default": "صفحه @count از @total" - }, - { - "label": "پیشرفت تعامل", - "description": "@count با شماره تعامل جایگزین می‌شود، و @total با تعداد کل تعاملات جایگزین می‌شود", - "default": "تعامل @count از @total" - }, - { - "label": "ترجمه ارسال گزارش", - "default": "ارسال گزارش" - }, - { - "label": "برچسب دکمه شروع مجدد", - "default": "شروع مجدد" - }, - { - "label": "سرصفحه جمع‌بندی", - "default": "جمع‌بندی" - }, - { - "label": "ترجمه همه تعاملات", - "default": "همه تعاملات" - }, - { - "label": "ترجمه تعاملات پاسخ داده نشده", - "default": "تعاملات پاسخ داده نشده" - }, - { - "label": "نمره", - "description": "@score با نمره فعلی جایگزین می‌شود، و @maxscore با بالاترین نمره ممکن جایگزین می‌شود", - "default": "@score / @maxscore" - }, - { - "label": "تکمیل تعاملات در صفحه", - "description": "@left با تعاملات باقیمانده جایگزین خواهد شد، و @max با تعداد کل تعاملات در صفحه جایگزین خواهد شد", - "default": "@left تعامل از کل @max تعامل تکمیل شد" - }, - { - "label": "ترجمه بدون تعامل", - "default": "بدون تعامل" - }, - { - "label": "ترجمه نمره", - "default": "نمره" - }, - { - "label": "برچسب دکمه جمع‌بندی و ارسال", - "default": "جمع‌بندی و ارسال" - }, - { - "label": "ترجمه شما با هیچ صفحه‌ای تعامل نداشتید", - "default": "شما با هیچ صفحه‌ای تعامل نداشتید." - }, - { - "label": "ترجمه شما پیش از اینکه بتوانید جمع‌بندی را ببینید، باید حداقل با یک صفحه تعامل داشته باشید", - "default": "شما پیش از اینکه بتوانید جمع‌بندی را ببینید، باید حداقل با یک صفحه تعامل داشته باشید." - }, - { - "label": "ترجمه پاسخ‌های شما برای بازنگری ارسال شدند", - "default": "پاسخ‌های شما برای بازنگری ارسال شدند!" - }, - { - "label": "برچسب پیشرفت جمع‌بندی", - "default": "پیشرفت کتاب" - }, - { - "label": "برچسب پیشرفت تعاملات", - "default": "پیشرفت تعاملات" - }, - { - "label": "برچسب نمره کل", - "default": "نمره کل" - }, - { - "label": "متون دسترس‌پذیری", - "fields": [ - { - "label": "بدیل متنی پیشرفت صفحه", - "description": "یک متن بدیل برای پیشرفت صفحه دیداری. متغیرهای @page و @total در دسترس‌اند.", - "default": "صفحه @page از @total." - }, - { - "label": "برچسب بازکردن/بستن منوی راهبری", - "default": "بازکردن/بستن منوی راهبری" - } - ] - } - ] -} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/fi.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/fi.json deleted file mode 100644 index 36dbea9..0000000 --- a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/fi.json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "semantics": [ - { - "label": "Ota kansisivu käyttöön", - "description": "Kansisivu sisältää tietoa kirjasta ennen sen avaamista." - }, - { - "label": "Kansisivu", - "fields": [ - { - "label": "Alaotsikko", - "description": "Tämä teksti näkyy pienemmässä koossa pääotsikon alapuolella." - }, - { - "label": "Kansikuva", - "description": "Tämä kuva näkyy kansisivulla (valinnainen)" - }, - { - "label": "Kansikuvan vaihtoehtoinen kuvaus", - "description": "Tätä tekstiä käyttävät ruudunlukijasovellukset. Se näkyy myös, jos kansikuva ei lataudu." - } - ] - }, - { - "label": "Kappaleet", - "entity": "Kappale", - "widgets": [ - { - "label": "Oletus" - } - ], - "field": { - "label": "Osio", - "fields": [ - { - "label": "Kappale" - } - ] - } - }, - { - "label": "Käyttäytymisasetukset", - "fields": [ - { - "label": "Sisällysluettelon näkyminen oletuksena", - "description": "Näyttää sisällysluettelon kirjan avaamisen yhteydessä." - }, - { - "label": "Näytä edistymispalkki", - "description": "Näyttää kappaleissa palkin, joka ilmaisee, kuinka paljon kirjan sisältöä on jäljellä." - }, - { - "label": "Ota automaattinen edistyminen käyttöön", - "description": "Merkitsee heti katselun yhteydessä suoritetuksi kappaleen, jolla ei ole tehtäviä. Tehtäviä sisältävät kappaleet merkitään suoritetuiksi, kun kaikki tehtävät on tehty. Jos tämä asetus on poissa käytöstä, jokaisen kappaleen alareunassa on painike, jota klikkaamalla käyttäjä merkitsee kappaleen suoritetuksi." - }, - { - "label": "Näytä yhteenveto", - "description": "Näyttää käyttäjälle yhteenvedon vastauksista, ennen kuin ne lähetetään tarkistettavaksi." - } - ] - }, - { - "label": "\"Lue\"-painikkeen teksti", - "default": "Lue" - }, - { - "label": "\"Näytä sisällysluettelo\" -painikkeen teksti", - "default": "Näytä sisällysluettelo" - }, - { - "label": "\"Piilota sisällysluettelo\" -painikkeen teksti", - "default": "Piilota sisällysluettelo" - }, - { - "label": "\"Seuraava sivu\" -painikkeen teksti", - "default": "Seuraava sivu" - }, - { - "label": "\"Edellinen sivu\" -painikkeen teksti", - "default": "Edellinen sivu" - }, - { - "label": "Käännös tekstille \"Kappale suoritettu!\"", - "default": "Kappale suoritettu!" - }, - { - "label": "Käännös tekstille \"@pages / @total kappaletta suoritettu\" (tekstien @pages ja @total tilalla näkyvät todelliset arvot)", - "default": "@pages / @total kappaletta suoritettu" - }, - { - "label": "Käännös tekstille \"Keskeneräinen kappale\"", - "default": "Keskeneräinen kappale" - }, - { - "label": "\"Siirry ylös\" -painikkeen teksti", - "default": "Siirry ylös" - }, - { - "label": "\"Olen suorittanut tämän kappaleen.\" -painikkeen teksti", - "default": "Olen suorittanut tämän kappaleen." - }, - { - "label": "Kokoruututila-painikkeen teksti", - "default": "Kokoruututila" - }, - { - "label": "Poistu kokoruututilasta -painikkeen teksti", - "default": "Poistu kokoruututilasta" - }, - { - "label": "Kappaleita suoritettu", - "description": "Tekstin \"@count\" tilalla on suoritettujen kappaleiden lukumäärä ja tekstin \"@total\" tilalla on kaikkien kappaleiden lukumäärä", - "default": "@count / @total kappaletta" - }, - { - "label": "Tehtäviä suoritettu", - "description": "Tekstin \"@count\" tilalla on suoritettujen tehtävien lukumäärä ja tekstin \"@total\" tilalla on kaikkien tehtävien lukumäärä", - "default": "@count / @total tehtävää" - }, - { - "label": "\"Lähetä tarkistettavaksi\" -painikkeen teksti", - "default": "Lähetä tarkistettavaksi" - }, - { - "label": "\"Aloita uudelleen\" -painikkeen teksti", - "default": "Aloita uudelleen" - }, - { - "label": "Yhteenveto-sivun otsikko", - "default": "Yhteenveto" - }, - { - "label": "\"Kaikki tehtävät\" -pudotusvalikkotekstin käännös", - "default": "Kaikki tehtävät" - }, - { - "label": "\"Vastaamattomat tehtävät\" -pudotusvalikkotekstin käännös", - "default": "Vastaamattomat tehtävät" - }, - { - "label": "Pistemäärä", - "description": " Muuttujan \"@score\" tilalla näytetään saavutettu pistemäärä ja muuttujan \"@maxscore\" tilalla näytetään korkein mahdollinen pistemäärä.", - "default": "@score / @maxscore" - }, - { - "label": "Suoritetut tehtävät kappalekohtaisesti", - "description": " Muuttujan \"@left\" tilalla näytetään kappaleen vastaamattomien tehtävien määrä ja muuttujan \"@max\" tilalla näytetään kappaleessa olevien tehtävien lukumäärä.", - "default": "@left / @max tehtävää suoritettu" - }, - { - "label": "Käännös tekstille \"Ei tehtäviä\"", - "default": "Ei tehtäviä" - }, - { - "label": "Pistemäärän yhteydessä näytettävän \"Tulos\"-tekstin käännös", - "default": "Tulos" - }, - { - "label": "\"Yhteenveto & lähetys\" -painikkeen teksti", - "default": "Yhteenveto & lähetys" - }, - { - "label": "Käännös tekstille \"Et ole tehnyt yhtään tehtävää.\"", - "default": "Et ole tehnyt yhtään tehtävää." - }, - { - "label": "Käännös tekstille \"Sinun on suoritettava vähintään yksi tehtävä ennen kuin voit nähdä yhteenvedon.\"", - "default": "Sinun on suoritettava vähintään yksi tehtävä ennen kuin voit nähdä yhteenvedon." - }, - { - "label": "Käännös tekstille \"Vastauksesi on lähetetty tarkistettavaksi!\"", - "default": "Your answers are submitted for review!" - }, - { - "label": "Kirjan edistyminen -otsikko", - "default": "Kirjan edistyminen" - }, - { - "label": "Tehtävien edistyminen -otsikko", - "default": "Tehtävien edistyminen" - }, - { - "label": "Yhteispisteet-otsikko", - "default": "Yhteispisteet" - }, - { - "label": "Saavutettavuuteen liittyvät tekstit", - "fields": [ - { - "label": "Kappaleita suoritettu -palkin vaihtoehtoinen teksti", - "description": "Vaihtoehtoinen teksti kappaleiden edistymisen seurannan palkille. Käytössä muuttujat @page ja @total.", - "default": "Suoritettu @page kappaletta. Kappaleita on yhteensä @total." - }, - { - "label": "Näytä/piilota navigaatiovalikko -painikkeen teksti", - "default": "Näytä/piilota navigaatiovalikko" - } - ] - } - ] -} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/fr.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/fr.json deleted file mode 100644 index 4a35de4..0000000 --- a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/fr.json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "semantics": [ - { - "label": "Activer la couverture du livre", - "description": "Une couverture montre les informations concernant le livre avant l'accès" - }, - { - "label": "Page de couverture", - "fields": [ - { - "label": "Description de la couverture", - "description": "Ce texte sera la description de votre livre" - }, - { - "label": "Image de couverture", - "description": "Une image de fond facultative pour l'introduction." - }, - { - "label": "Texte alternatif de l'image de couverture", - "description": "Un texte alternatif pour l'image de couverture" - } - ] - }, - { - "label": "Pages", - "entity": "Page", - "widgets": [ - { - "label": "Par défaut" - } - ], - "field": { - "label": "Item", - "fields": [ - { - "label": "Page" - } - ] - } - }, - { - "label": "Paramètres d'affichage", - "fields": [ - { - "label": "Afficher la table des matières par défaut", - "description": "Lorsque cette option est activée, la table des matières s'affiche à l'ouverture du livre" - }, - { - "label": "Afficher les indicateurs de progrès", - "description": "Lorsqu'il est activé, il y aura des indicateurs par page indiquant à l'utilisateur s'il en a fini ou non avec la page." - }, - { - "label": "Activer la progression automatique", - "description": "Si elle est activée, une page sans tâches est considérée comme terminée lorsqu'elle est visualisée. Une page avec des tâches lorsque toutes les tâches sont effectuées. Si elle est désactivée, un bouton sera placé au bas de chaque page pour que l'utilisateur puisse cliquer lorsqu'il a terminé la page." - }, - { - "label": "Afficher le résumé", - "description": "Lorsqu'il est activé, l'utilisateur peut voir un résumé et soumettre les progrès/réponses" - } - ] - }, - { - "label": "Intitulé pour \"Lire\"", - "default": "Lire" - }, - { - "label": "Intitulé pour \"Afficher la 'Table des matières'\"", - "default": "Afficher la 'Table des matières'" - }, - { - "label": "Intitulé pour \"Cacher la 'Table des matières'\"", - "default": "Cacher la 'Table des matières'" - }, - { - "label": "Intitulé pour \"Page suivante\"", - "default": "Page suivante" - }, - { - "label": "Intitulé pour \"Page précédente\"", - "default": "Page précédente" - }, - { - "label": "Intitulé pour \"Page terminée!\"", - "default": "Page terminée!" - }, - { - "label": "Intitulé pour \"@pages sur @total terminé\" (@pages et @total sera remplacé par des valeurs réelles)", - "default": "@pages sur @total terminé" - }, - { - "label": "Intitulé pour \"Page non terminée\"", - "default": "Page non terminée" - }, - { - "label": "Intitulé pour \"Revenir en haut\"", - "default": "Revenir en haut" - }, - { - "label": "Intitulé pour \"J'ai terminé cette page\"", - "default": "J'ai terminé cette page" - }, - { - "label": "Libellé du bouton plein écran", - "default": "Plein écran" - }, - { - "label": "Libellé du bouton de sortie en plein écran", - "default": "Réduire" - }, - { - "label": "Avancement de la lecture", - "description": "\"@count\" sera remplacé par le nombre de pages lues et \"@total\" par le nombre total de pages", - "default": "@count sur @total pages" - }, - { - "label": "Avancement dans les interactions", - "description": "\"@count\" sera remplacé par le nombre d'interactions accomplies et \"@total\" avec le nombre total d'interactions", - "default": "@count sur @total interactions" - }, - { - "label": "Intitulé pour \"Soumettre le rapport\"", - "default": "Soumettre le rapport" - }, - { - "label": "Libellé du bouton \"relancer\"", - "default": "Relancer" - }, - { - "label": "Sommaire", - "default": "Sommaire" - }, - { - "label": "Intitulé pour \"Toutes les interactions\"", - "default": "Toutes les interactions" - }, - { - "label": "Intitulé pour \"Interactions sans réponse\"", - "default": "Interactions sans réponse" - }, - { - "label": "Score", - "description": "\"@score\" sera remplacé par le score actuel, et \"@maxscore\" sera remplacé par le score maximum réalisable", - "default": "@score / @maxscore" - }, - { - "label": "Achèvement des interactions par page", - "description": "\"@left\" sera remplacé par les interactions restantes, et \"@max\" sera remplacé par le nombre total d'interactions sur la page", - "default": "@left sur @max interactions réalisées" - }, - { - "label": "Intitulé pour \"Aucune interaction\"", - "default": "Aucune interaction" - }, - { - "label": "Intitulé pour \"Score\"", - "default": "Score" - }, - { - "label": "Libellé du bouton \"Résumé et transmission\"", - "default": "Résumé et transmission" - }, - { - "label": "Intitulé pour \"Vous n'avez interagi avec aucune page.\"", - "default": "Vous n'avez interagi avec aucune page." - }, - { - "label": "Intitulé pour \"Vous devez interagir avec au moins une page avant de pouvoir voir le résumé.\"", - "default": "Vous devez interagir avec au moins une page avant de pouvoir voir le résumé." - }, - { - "label": "Intitulé pour \"Vos réponses sont soumises à examen !\"", - "default": "Vos réponses sont soumises à examen !" - }, - { - "label": "Étiquette de progression dans le sommaire", - "default": "Avancement dans la lecture" - }, - { - "label": "Intitulé pour Avancement dans les interactions", - "default": "Avancement des interactions" - }, - { - "label": "Intitulé pour Score total", - "default": "Score total" - }, - { - "label": "Textes pour l'accessibilité", - "fields": [ - { - "label": "Texte alternatif pour l'avancement dans la lecture", - "description": "Un texte alternatif pour la progression visuelle de la page. Les variables @page et @total sont disponibles.", - "default": "Page @page sur @total." - }, - { - "label": "Intitulé pour étendre/réduire le menu de navigation", - "default": "Étendre/Réduire le menu" - } - ] - } - ] -} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/gl.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/gl.json deleted file mode 100644 index 8eca525..0000000 --- a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/gl.json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "semantics": [ - { - "label": "Activar a cuberta do libro", - "description": "Unha cuberta que amosa información sobre o libro antes de entrar nel" - }, - { - "label": "Páxina de Cuberta", - "fields": [ - { - "label": "Descrición da cuberta", - "description": "Este texto será a descrición do teu libro." - }, - { - "label": "Imaxe de cuberta", - "description": "Imaxe de fondo opcional para a introdución." - }, - { - "label": "Texto alternativo para a imaxe da cuberta", - "description": "Un texto alternativo para a imaxe da cuberta" - } - ] - }, - { - "label": "Páxinas", - "entity": "Páxina", - "widgets": [ - { - "label": "Por defecto" - } - ], - "field": { - "label": "Elemento", - "fields": [ - { - "label": "Páxina" - } - ] - } - }, - { - "label": "Configuración do comportamento", - "fields": [ - { - "label": "Amosar a táboa de contidos por defecto", - "description": "Amósase a táboa de contidos cando se abre o libro" - }, - { - "label": "Amosar indicadores de progreso", - "description": "Activa indicadores para cada páxina que indican ao usuario se xa leu a páxina ou non." - }, - { - "label": "Activar progreso automático", - "description": "Se está activado, considerarase rematada calquera páxina que non conteña tarefas ao vela e calquera páxina que conteña tarefas cando todas as tarefas estean rematadas. Se está desactivado, haberá un botón no pé de cada páxina para que usuario prema nel cando remate con ela." - }, - { - "label": "Amosar resumo", - "description": "Se está activado, o ususario pode ver un resumo e enviar o seu progreso ou respostas" - } - ] - }, - { - "label": "Tradución para \"Ler\"", - "default": "Ler" - }, - { - "label": "Tradución para \"Amosar 'Táboa de contidos'\"", - "default": "Amosar 'Táboa de contidos'" - }, - { - "label": "Tradución para \"Agachar 'Táboa de contidos'\"", - "default": "Agochar 'Táboa de contidos'" - }, - { - "label": "Tradución para \"Páxina seguinte\"", - "default": "Páxina seguinte" - }, - { - "label": "Tradución para \"Páxina anterior\"", - "default": "Páxina anterior" - }, - { - "label": "Tradución para \"Páxina completa!\"", - "default": "Páxina completa!" - }, - { - "label": "Tradución para \"@pages de @total completadas\" (@pages e @total subsituiranse polos valores actuais)", - "default": "@pages de @total completadas" - }, - { - "label": "Tradución para \"Páxina incompleta\"", - "default": "Páxina incompleta" - }, - { - "label": "Tradución para \"Ir á parte superior\"", - "default": "Ir á parte superior" - }, - { - "label": "Tradución para \"Rematei esta páxina\"", - "default": "Rematei esta páxina" - }, - { - "label": "Etiqueta do botón pantalla completa", - "default": "Pantalla completa" - }, - { - "label": "Etiqueta do botón saír de pantalla completa", - "default": "Saír de pantalla completa" - }, - { - "label": "Progreso coas páxinas do libro", - "description": "\"@count\" substituirase polo número de páxinas visitadas e \"@total\" polo número total de páxinas", - "default": "@count de @total páxinas" - }, - { - "label": "Progreso da interacción", - "description": "\"@count\" substituirase polo número de interaccións rexistradas e \"@total\" polo número total de interaccións", - "default": "@count de @total interaccións" - }, - { - "label": "Tradución para \"enviar informe\"", - "default": "Enviar Informe" - }, - { - "label": "Etiqueta para o botón \"reiniciar\"", - "default": "Reiniciar" - }, - { - "label": "Cabeceira do resumo", - "default": "Resumo" - }, - { - "label": "Tradución para \"Todas as interaccións\"", - "default": "Todas as interaccións" - }, - { - "label": "Tradución para \"Interaccións non contestadas\"", - "default": "Interaccións non contestadas" - }, - { - "label": "Puntuación", - "description": "\"@score\" substituirase pola puntuación actual, e \"@maxscore\" pola puntuación máxima que se poida acadar", - "default": "@score / @maxscore" - }, - { - "label": "Completado de interaccións por páxina", - "description": "\"@left\" substituirase polo número de interaccións restantes e \"@max\" polo número total de interaccións na páxina", - "default": "@left de @max interaccións completadas" - }, - { - "label": "Tradución para \"Non hai interaccións\"", - "default": "Non hai interaccións" - }, - { - "label": "Tradución para \"Puntuación\"", - "default": "Puntuación" - }, - { - "label": "Etiqueta para o botón \"Enviar & resumo\"", - "default": "Enviar & resumo" - }, - { - "label": "Tradución para \"Non interaccionaches con ningunha páxina.\"", - "default": "Non interaccionaches con ningunha páxina." - }, - { - "label": "Tradución para \"Tes que interaccionar cunha páxina polo menos antes de poder ver o resumo.\"", - "default": "Tes que interaccionar cunha páxina polo menos antes de poder ver o resumo." - }, - { - "label": "Tradución para \"Enviáronse as túas respostas para revisión!\"", - "default": "Enviáronse as túas respostas para revisión!!" - }, - { - "label": "Etiqueta do progreso do resumo", - "default": "Progreso no libro" - }, - { - "label": "Etiqueta do progreso das interaccións", - "default": "Progreso nas interaccións" - }, - { - "label": "Etiqueta da puntuación total", - "default": "Puntuación total" - }, - { - "label": "Textos de accesibilidade", - "fields": [ - { - "label": "Alternativa textual para o progreso de páxina", - "description": "Un texto alternativo para o progreso visual de páxina. Variables dispoñibles: @page e @total.", - "default": "Páxina @page de @total." - }, - { - "label": "Etiqueta para expandir/colapsar o menú de navegación", - "default": "Alternar o menú de navegación" - } - ] - } - ] -} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/it.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/it.json deleted file mode 100644 index 57abc19..0000000 --- a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/it.json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "semantics": [ - { - "label": "Attiva la copertina del libro", - "description": "Una copertina che mostra informazioni sul libro prima dell'accesso" - }, - { - "label": "Copertina", - "fields": [ - { - "label": "Descrizione della copertina", - "description": "Questo testo descriverà il tuo libro." - }, - { - "label": "Immagine di copertina", - "description": "Un'immagine di sfondo facoltativa per l'introduzione." - }, - { - "label": "Testo alternativo per l'immagine di copertina", - "description": "Un testo alternativo per l'immagine di copertina" - } - ] - }, - { - "label": "Pagine", - "entity": "Pagina", - "widgets": [ - { - "label": "Predefinito" - } - ], - "field": { - "label": "Item", - "fields": [ - { - "label": "Pagina" - } - ] - } - }, - { - "label": "Impostazioni di esecuzione", - "fields": [ - { - "label": "Mostra la tavola dei contenuti predefiniti", - "description": "Quando attivo, la tavola dei contenuti viene mostrata all'apertura del libro" - }, - { - "label": "Mostra gli indicatori di progresso", - "description": "Quando attivo, ci saranno degli indicatori in ogni pagina, per mostrare all'utente se ha o non ha finito con quella pagina." - }, - { - "label": "Attiva progressione automatica", - "description": "Se abilitato, una pagina senza compiti è considerata fatta quando è stata visualizzata; viceversa, una pagina con compiti lo è quando tutti sono stati portati a termine. Se disabilitato, in fondo a ogni pagina ci sarà un pulsante su cui l'utente può cliccare quando ha finito con quella pagina" - }, - { - "label": "Mostra sommario", - "description": "Quando attivo, l'utente può vedere un sommario e inviare la risposta o andare avanti" - } - ] - }, - { - "label": "Traduzione per \"Leggi\"", - "default": "Leggi" - }, - { - "label": "Traduzione per \"Mostra 'Indice dei contenuti'\"", - "default": "Mostra 'Indice dei contenuti'" - }, - { - "label": "Traduzione per \"Nascondi 'Indice dei contenuti'\"", - "default": "Nascondi 'Indice dei contenuti'" - }, - { - "label": "Traduzione per \"Prossima pagina\"", - "default": "Prossima pagina" - }, - { - "label": "Traduzione per \"Pagina precedente\"", - "default": "Pagina precedente" - }, - { - "label": "Traduzione per \"Capitolo completato!\"", - "default": "Capitolo completato!" - }, - { - "label": "Traduzione per \"@pages di @total pagine completate\" (@pages e @total sarà sostituito dai valori attuali)", - "default": "@pages di @total pagine completate" - }, - { - "label": "Traduzione per \"Capitolo incompleto\"", - "default": "Capitolo incompleto" - }, - { - "label": "Traduzione per \"Torna in alto\"", - "default": "Torna in alto" - }, - { - "label": "Traduzione per \"Ho terminato questa pagina\"", - "default": "Ho terminato questa pagina" - }, - { - "label": "Etichetta del pulsante schermo intero", - "default": "Schermo intero" - }, - { - "label": "Etichetta del pulsante di uscita da schermo intero", - "default": "Esci da schermo intero" - }, - { - "label": "Page progress in book", - "description": "\"@count\" sarà sostituito dal conteggio delle pagine e \"@total\" dal numero totale di pagine", - "default": "@count di @total pagine" - }, - { - "label": "Progresso dell'interazione", - "description": "\"@count\" sarà sostituito dal conteggio delle pagine e \"@total\" dal numero totale di pagine", - "default": "@count @total interazioni" - }, - { - "label": "Traduzione per \"Invia report\"", - "default": "Invia report" - }, - { - "label": "Etichetta per il pulsante \"riavvia\"", - "default": "Riavvia" - }, - { - "label": "Intestazione del sommario", - "default": "Sommario" - }, - { - "label": "Traduzione per \"Tutte le interazioni\"", - "default": "Tutte le interazioni" - }, - { - "label": "Traduzione per \"Interazioni senza risposta\"", - "default": "Interazioni senza risposta" - }, - { - "label": "Punteggio", - "description": "\"@score\" sarà sostituito con il punteggio del momento e \"@maxscore\" con il massimo punteggio raggiungibile", - "default": "@score / @maxscore" - }, - { - "label": "Completamento di interazioni per pagina", - "description": "\"@left\" sarà sostituito con le interazioni restanti e \"@max\" con il numero totale di interazioni della pagina", - "default": "@left di @max interazioni completate" - }, - { - "label": "Traduzione per \"Nessuna interazione\"", - "default": "Nessuna interazione" - }, - { - "label": "Traduzione per \"Punteggio\"", - "default": "Punteggio" - }, - { - "label": "Etichetta per il pulsante \"Sommario & invio\"", - "default": "Sommario & invio" - }, - { - "label": "Traduzione per \"Non hai interagito con alcuna pagina\"", - "default": "Non hai interagito con alcuna pagina" - }, - { - "label": "Traduzione per \"Devi interagire con almeno una pagina prima di poter vedere il sommario\"", - "default": "Devi interagire con almeno una pagina prima di poter vedere il sommario" - }, - { - "label": "Traduzione per \"Le tue risposte sono state inviate per la verifica!\"", - "default": "Le tue risposte sono state inviate per la verifica!" - }, - { - "label": "Etichetta di progresso del sommario", - "default": "Avanzamento nel libro" - }, - { - "label": "Etichetta del progresso delle interazioni", - "default": "Progresso delle interazioni" - }, - { - "label": "Etichetta del punteggio totale", - "default": "Punteggio totale" - }, - { - "label": "Testi per l'accessibilità", - "fields": [ - { - "label": "Alternativa testuale per la progressione di pagina", - "description": "Un testo alternativo per la vista della progressione di pagina. @page e @total variabili disponibili", - "default": "Pagina @page di @total" - }, - { - "label": "Etichetta per espandere/ridurre il menu di navigazione", - "default": "Mostra/Nascondi il menu di navigazione" - } - ] - } - ] -} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/km.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/km.json deleted file mode 100644 index f98c927..0000000 --- a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/km.json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "semantics": [ - { - "label": "Enable book cover", - "description": "A cover that shows info regarding the book before access" - }, - { - "label": "Cover Page", - "fields": [ - { - "label": "Cover description", - "description": "This text will be the description of your book." - }, - { - "label": "Cover image", - "description": "An optional background image for the introduction." - }, - { - "label": "Cover image alternative text", - "description": "An alternative text for the cover image" - } - ] - }, - { - "label": "Pages", - "entity": "Page", - "widgets": [ - { - "label": "Default" - } - ], - "field": { - "label": "Item", - "fields": [ - { - "label": "Page" - } - ] - } - }, - { - "label": "Behavioural settings", - "fields": [ - { - "label": "Display table of contents as default", - "description": "When enabled the table of contents is showed when opening the book" - }, - { - "label": "Display Progress Indicators", - "description": "When enabled there will be indicators per page showing the user if he is done with the page or not." - }, - { - "label": "Enable automatic progress", - "description": "If enabled a page without tasks is considered done when viewed. A page with tasks when all tasks are done. If disabled there will be a button at the bottom of every page for the user to click when done with the page." - }, - { - "label": "Display summary", - "description": "When enabled the user can see a summary and submit the progress/answers" - } - ] - }, - { - "label": "Translation for \"Read\"", - "default": "អាន" - }, - { - "label": "Translation for \"Display 'Table of contents'\"", - "default": "បង្ហាញ «តារាងមាតិកា»" - }, - { - "label": "Translation for \"Hide 'Table of contents'\"", - "default": "លាក់ «តារាងមាតិកា»" - }, - { - "label": "Translation for \"Next page\"", - "default": "ទំព័របន្ទាប់" - }, - { - "label": "Translation for \"Previous page\"", - "default": "ទំព័រមុន" - }, - { - "label": "Translation for \"Page completed!\"", - "default": "ទំព័របានបញ្ចប់!" - }, - { - "label": "Translation for \"@pages of @total completed\" (@pages and @total will be replaced by actual values)", - "default": "បានបញ្ចប់ @pages ទំព័រចំណោម @total ទំព័រ" - }, - { - "label": "Translation for \"Incomplete page\"", - "default": "ទំព័រមិនបានបញ្ចប់" - }, - { - "label": "Translation for \"Navigate to the top\"", - "default": "ផ្លាស់ទីទៅលើ" - }, - { - "label": "Translation for \"I have finished this page\"", - "default": "ខ្ញុំបានបញ្ចប់ទំព័រនេះ" - }, - { - "label": "Fullscreen button label", - "default": "ពេញអេក្រង់" - }, - { - "label": "Exit fullscreen button label", - "default": "បិទពេញអេក្រង់" - }, - { - "label": "Page progress in book", - "description": "\"@count\" will be replaced by page count, and \"@total\" with the total number of pages", - "default": "@count ចំណោម @total ទំព័រ" - }, - { - "label": "Interaction progress", - "description": "\"@count\" will be replaced by interaction count, and \"@total\" with the total number of interactions", - "default": "@count ចំណោម @total អន្តរកម្ម" - }, - { - "label": "Translation for \"Submit report\"", - "default": "ប្រគល់របាយការណ៍" - }, - { - "label": "Label for \"restart\" button", - "default": "ចាប់ផ្តើមឡើងវិញ" - }, - { - "label": "Summary header", - "default": "សង្ខេប" - }, - { - "label": "Translation for \"All interactions\"", - "default": "អន្តរកម្មទាំងអស់" - }, - { - "label": "Translation for \"Unanswered interactions\"", - "default": "អន្តរកម្មមិនទាន់បានឆ្លើយ" - }, - { - "label": "Score", - "description": "\"@score\" will be replaced with current score, and \"@maxscore\" will be replaced with max achievable score", - "default": "@score / @maxscore" - }, - { - "label": "Per page interactions completion", - "description": "\"@left\" will be replaced with remaining interactions, and \"@max\" will be replaced with total number of interactions on the page", - "default": "@left ចំណោម @max អន្តរកម្មបានបញ្ចប់" - }, - { - "label": "Translation for \"No interactions\"", - "default": "មិនមានអន្តរកម្ម" - }, - { - "label": "Translation for \"Score\"", - "default": "ពិន្ទុ" - }, - { - "label": "Label for \"Summary & submit\" button", - "default": "សងេ្ខប & ប្រគល់កិច្ចការ" - }, - { - "label": "Translation for \"You have not interacted with any pages.\"", - "default": "អ្នកមិនទាន់បានធ្វើអន្តរកម្មជាមួយទំព័រណាមួយនៅឡើយទេ។" - }, - { - "label": "Translation for \"You have to interact with at least one page before you can see the summary.\"", - "default": "អ្នកត្រូវតែមើលយ៉ាងហោចណាស់មួយទំព័រមុននឹងអ្នកអាចមើលសង្ខេបបាន។" - }, - { - "label": "Translation for \"Your answers are submitted for review!\"", - "default": "ចម្លើយរបស់អ្នកត្រូវបានប្រគល់ដើម្បីត្រួតពិនិត្យ!" - }, - { - "label": "Summary progress label", - "default": "វឌ្ឍនភាពសៀវភៅ" - }, - { - "label": "Interactions progress label", - "default": "វឌ្ឍនភាពអន្តរកម្ម" - }, - { - "label": "Total score label", - "default": "ពិន្ទុសរុប" - }, - { - "label": "Accessibility texts", - "fields": [ - { - "label": "Page progress textual alternative", - "description": "An alternative text for the visual page progress. @page and @total variables available.", - "default": "ទំព័រ @page ចំណោម @total" - }, - { - "label": "Label for expanding/collapsing navigation menu", - "default": "បិទបើកម៉ឺនុយផ្លាស់ទី" - } - ] - } - ] -} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/ko.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/ko.json deleted file mode 100644 index 7e33253..0000000 --- a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/ko.json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "semantics": [ - { - "label": "책 표지 활성화", - "description": "접근 전 책에 대한 정보를 보여주는 표지" - }, - { - "label": "커버 페이지", - "fields": [ - { - "label": "커버 설명", - "description": "이 텍스트는 당신의 책에 대한 설명이 될 겁니다." - }, - { - "label": "커버 이미지", - "description": "(선택사항)소개의 배경 이미지." - }, - { - "label": "표지 이미지 대체 텍스트", - "description": "표지 이미지에 대한 대체 텍스트" - } - ] - }, - { - "label": "페이지", - "entity": "페이지", - "widgets": [ - { - "label": "기본값" - } - ], - "field": { - "label": "항목", - "fields": [ - { - "label": "페이지" - } - ] - } - }, - { - "label": "행동 설절", - "fields": [ - { - "label": "목차를 기본값으로 표시", - "description": "활성화했을 때 책을 열 때 목차가 표시됨" - }, - { - "label": "학습 진도 표시", - "description": "활성화하면 사용자가 페이지별로 완료했는지 여부를 나타내는 진도가 표시됨." - }, - { - "label": "자동 학습 진도 표시 활성화", - "description": "활성화하면 과제없는 페이지는 페이지를 보았을 때 완료된 것으로 간주됨. 과제가 있는 경우 과제 완료시 페이지 완료 표시. 비활성화시 모든 페이지 하단에 사용자가 페이지 과제를 마쳤을 때 클릭할 수 있는 버튼이 있음." - }, - { - "label": "요약 표시", - "description": "활성화되면 요약 정보를 보고 학습진도/정답을 제출할 수 있음." - } - ] - }, - { - "label": "\"Read\" (읽기)에 대한 맞춤형 텍스트", - "default": "읽기" - }, - { - "label": "\"Display 'Table of contents'\" (목차 표시)에 대한 맞춤형 텍스트", - "default": "목차 표시" - }, - { - "label": "\"Hide 'Table of contents'\" (목차 숨기기)에 대한 맞춤형 텍스트", - "default": "목차 숨기기" - }, - { - "label": "\"Next page\" (다음 페이지)에 대한 맞춤형 텍스트", - "default": "다음 페이지" - }, - { - "label": "\"Previous page\" (이전 페이지)에 대한 맞춤형 텍스트", - "default": "이전 페이지" - }, - { - "label": "\"Page completed!\" (페이지 완료)에 대한 맞춤형 텍스트", - "default": "페이지 완료!" - }, - { - "label": "\"@pages of @total completed\" 총 @total 중 @pages 완료 (@pages 와 @total 실제값으로 대체)에 대한 맞춤형 텍스트", - "default": "총 @total 중 @pages 완료" - }, - { - "label": "\"Incomplete page\" (페이지 미완료)에 대한 맞춤형 텍스트", - "default": "페이지 미완료" - }, - { - "label": "\"Navigate to the top\" (맨 위로 이동)에 대한 맞춤형 텍스트", - "default": "(맨 위로 이동)" - }, - { - "label": " \"I have finished this page\" (이 페이지 완료)에 대한 맞춤형 텍스트", - "default": "이 페이지를 완료했습니다." - }, - { - "label": "전체 화면 버튼 레이블", - "default": "전체화면" - }, - { - "label": "전체 화면 종료 버튼 레이블", - "default": "전체 화면 종료" - }, - { - "label": "책의 페이지 진행", - "description": "\"@count\"는 페이지 수로 대체되며, \"@total\"는 전체 페이지 수로 변경된다.", - "default": "총 @total 페이지 중 @count" - }, - { - "label": "상호작용 진행", - "description": "\"@count\"는 상호 작용 횟수로 대체되며, \"@total\"은 총 상호 작용 횟수로 대체된다.", - "default": " 총 @total 상호작용 중 @count" - }, - { - "label": "\"Submit report\" (보고서 제출)에 대한 맞춤형 텍스트", - "default": "보고서 제출" - }, - { - "label": "\"restart\" (재시작) 버튼", - "default": "재시작" - }, - { - "label": "요약 머릿말", - "default": "요약" - }, - { - "label": "\"All interactions\"(모든 상호작용)에 대한 맞춤형 텍스트", - "default": "모든 상호작용" - }, - { - "label": "\"Unanswered interactions\" (미답변 상호작용)에 대한 맞춤형 텍스트", - "default": "미답변 상호작용" - }, - { - "label": "점수", - "description": "\"@score\"는 현재 점수로 대체되고 \"@maxscore\" 는 달성 가능한 최대 점수로 대체됨.", - "default": "@score / @maxscore" - }, - { - "label": "페이지 단위 상호 작용 완료", - "description": "\"@left\"는 나머지 상호 작용으로 대체되며, \"@max\"는 페이지의 총 상호 작용 수로 대체된다", - "default": "총 @max 상호작용 남은 상호작용 @left" - }, - { - "label": "\"No interactions\"(상호작용 없음)에 대한 맞춤형 텍스트", - "default": "상호작용 없음" - }, - { - "label": "\"Score\"(점수)에 대한 맞춤형 텍스트", - "default": "점수" - }, - { - "label": "\"Summary & submit\" (요약 및 제출) 버튼", - "default": "요약 및 제출" - }, - { - "label": "\"You have not interacted with any pages.\" (상호작용이 없습니다)에 대한 맞춤형 텍스트", - "default": "상호작용이 없습니다." - }, - { - "label": "\"You have to interact with at least one page before you can see the summary.\" (요약보기에 앞서 적어도 한 페이지에서 상호작용 필수)에 대한 맞춤형 텍스트", - "default": "요약보기에 앞서 적어도 한 페이지에서 상호작용 필수" - }, - { - "label": "\"Your answers are submitted for review!\" (검토를 위해 답이 제출됨)에 대한 맞춤형 텍스트", - "default": "검토를 위해 답이 제출됨!" - }, - { - "label": "학습진도 요약 레이블", - "default": "책 진도" - }, - { - "label": "상호작용 진도 레이블", - "default": "상호작용 진도" - }, - { - "label": "전체 점수 레이블", - "default": "전체 점수" - }, - { - "label": "접근성 표시 텍스트", - "fields": [ - { - "label": "페이지 진도 텍스트형으로 표시", - "description": "시각화 진도표시에 대한 대체 텍스트. @page 및 @total 변수 이용가능.", - "default": "총 @total 중 @page 페이지." - }, - { - "label": "네비게이션 메뉴 확장/축소 레이블", - "default": "네비게이션 메뉴 온 오프" - } - ] - } - ] -} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/nb.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/nb.json deleted file mode 100644 index d8db881..0000000 --- a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/nb.json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "semantics": [ - { - "label": "Enable book cover", - "description": "A cover that shows info regarding the book before access" - }, - { - "label": "Cover Page", - "fields": [ - { - "label": "Cover description", - "description": "This text will be the description of your book." - }, - { - "label": "Cover image", - "description": "An optional background image for the introduction." - }, - { - "label": "Cover image alternative text", - "description": "An alternative text for the cover image" - } - ] - }, - { - "label": "Pages", - "entity": "Page", - "widgets": [ - { - "label": "Default" - } - ], - "field": { - "label": "Item", - "fields": [ - { - "label": "Page" - } - ] - } - }, - { - "label": "Behavioural settings", - "fields": [ - { - "label": "Display table of contents as default", - "description": "When enabled the table of contents is showed when opening the book" - }, - { - "label": "Display Progress Indicators", - "description": "When enabled there will be indicators per page showing the user if he is done with the page or not." - }, - { - "label": "Enable automatic progress", - "description": "If enabled a page without tasks is considered done when viewed. A page with tasks when all tasks are done. If disabled there will be a button at the bottom of every page for the user to click when done with the page." - }, - { - "label": "Vis sammendrag", - "description": "When enabled the user can see a summary and submit the progress/answers" - } - ] - }, - { - "label": "Translation for \"Read\"", - "default": "Read" - }, - { - "label": "Translation for \"Display 'Table of contents'\"", - "default": "Display 'Table of contents'" - }, - { - "label": "Translation for \"Hide 'Table of contents'\"", - "default": "Hide 'Table of contents'" - }, - { - "label": "Translation for \"Next page\"", - "default": "Neste side" - }, - { - "label": "Translation for \"Previous page\"", - "default": "Forrige side" - }, - { - "label": "Translation for \"Page completed!\"", - "default": "Kapittel ferdig!" - }, - { - "label": "Translation for \"@pages of @total completed\" (@pages and @total will be replaced by actual values)", - "default": "@pages of @total completed" - }, - { - "label": "Translation for \"Incomplete page\"", - "default": "Ikke fullført kapittel" - }, - { - "label": "Translation for \"Navigate to the top\"", - "default": "Gå til toppen" - }, - { - "label": "Translation for \"I have finished this page\"", - "default": "Jeg er ferdig med siden" - }, - { - "label": "Fullscreen button label", - "default": "Fullskjerm" - }, - { - "label": "Exit fullscreen button label", - "default": "Lukk fullskjerm" - }, - { - "label": "Page progress in book", - "description": "\"@count\" will be replaced by page count, and \"@total\" with the total number of pages", - "default": "@count of @total pages" - }, - { - "label": "Interaction progress", - "description": "\"@count\" will be replaced by interaction count, and \"@total\" with the total number of interactions", - "default": "@count av @total oppgaver" - }, - { - "label": "Oversettelse for \"Levér rapport\"", - "default": "Levér rapport" - }, - { - "label": "Label for \"restart\" button", - "default": "Restart" - }, - { - "label": "Summary header", - "default": "Summary" - }, - { - "label": "Translation for \"All interactions\"", - "default": "All interactions" - }, - { - "label": "Translation for \"Unanswered interactions\"", - "default": "Unanswered interactions" - }, - { - "label": "Score", - "description": "\"@score\" will be replaced with current score, and \"@maxscore\" will be replaced with max achievable score", - "default": "@score / @maxscore" - }, - { - "label": "Per page interactions completion", - "description": "\"@left\" will be replaced with remaining interactions, and \"@max\" will be replaced with total number of interactions on the page", - "default": "@left of @max interactions completed" - }, - { - "label": "Translation for \"No interactions\"", - "default": "No interactions" - }, - { - "label": "Translation for \"Score\"", - "default": "Score" - }, - { - "label": "Label for \"Summary & submit\" button", - "default": "Summary & submit" - }, - { - "label": "Translation for \"You have not interacted with any pages.\"", - "default": "You have not interacted with any pages." - }, - { - "label": "Translation for \"You have to interact with at least one page before you can see the summary.\"", - "default": "You have to interact with at least one page before you can see the summary." - }, - { - "label": "Translation for \"Your answers are submitted for review!\"", - "default": "Your answers are submitted for review!" - }, - { - "label": "Summary progress label", - "default": "Book progress" - }, - { - "label": "Interactions progress label", - "default": "Interactions progress" - }, - { - "label": "Total score label", - "default": "Total score" - }, - { - "label": "Accessibility texts", - "fields": [ - { - "label": "Page progress textual alternative", - "description": "An alternative text for the visual page progress. @page and @total variables available.", - "default": "Page @page of @total." - }, - { - "label": "Label for expanding/collapsing navigation menu", - "default": "Toggle navigation menu" - } - ] - } - ] -} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/nl.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/nl.json deleted file mode 100644 index 1ecc5e1..0000000 --- a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/nl.json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "semantics": [ - { - "label": "Schakel boekomslag in", - "description": "Een omslag die informatie over het boek toont voor toegang" - }, - { - "label": "Omslagpagina", - "fields": [ - { - "label": "Omslagbeschrijving", - "description": "Deze tekst wordt de beschrijving van je boek." - }, - { - "label": "Omslagafbeelding", - "description": "Een optionele achtergrondafbeelding voor de inleiding." - }, - { - "label": "Omslagafbeelding alternatieve tekst", - "description": "Een alternatieve tekst voor de omslagafbeelding" - } - ] - }, - { - "label": "Pagina's", - "entity": "Pagina", - "widgets": [ - { - "label": "Standaard" - } - ], - "field": { - "label": "Item", - "fields": [ - { - "label": "Pagina" - } - ] - } - }, - { - "label": "Gedragsinstellingen", - "fields": [ - { - "label": "Toon standaard de inhoudsopgave", - "description": "Indien ingeschakeld, wordt de inhoudsopgave getoond als het boek wordt geopend" - }, - { - "label": "Toon voortgangsindicatoren", - "description": "Indien ingeschakeld, worden er per pagina indicatoren getoond die de gebruiker tonen hoe ver hij op de pagina gevorderd is." - }, - { - "label": "Schakel automatische voortgang in", - "description": "Indien ingeschakeld, wordt een pagina zonder taken als voltooid beschouwd wanneer die is bekeken, een pagina met taken als die klaar zijn. Indien uitgeschakeld, wordt er een knop getoond op elke pagina waarop de gebruiker kan klikken als hij klaar is met de pagina." - }, - { - "label": "Toon samenvatting", - "description": "Indien ingeschakeld, kan de gebruiker een samenvatting zien en de voortgang/antwoorden inzenden" - } - ] - }, - { - "label": "Vertaling voor \"Lezen\"", - "default": "Lezen" - }, - { - "label": "Vertaling voor \"Toon 'Inhoudsopgave'\"", - "default": "Toon 'Inhoudsopgave'" - }, - { - "label": "Vertaling voor \"Verberg 'Inhoudsopgave'\"", - "default": "Verberg 'Inhoudsopgave'" - }, - { - "label": "Vertaling voor \"Volgende pagina\"", - "default": "Volgende pagina" - }, - { - "label": "Vertaling voor \"Vorige pagina\"", - "default": "Vorige pagina" - }, - { - "label": "Vertaling voor \"Pagina voltooid!\"", - "default": "Pagina voltooid!" - }, - { - "label": "Vertaling voor \"@pages van @total voltooid\" (@pages en @total worden vervangen door werkelijke waardes)", - "default": "@pages van @total voltooid" - }, - { - "label": "Vertaling voor \"Onvoltooide pagina\"", - "default": "Onvoltooide pagina" - }, - { - "label": "Vertaling voor \"Navigeer naar boven\"", - "default": "Navigeer naar boven" - }, - { - "label": "Vertaling voor \"Ik heb deze pagina voltooid\"", - "default": "Ik heb deze pagina voltooid" - }, - { - "label": "Label van \"Volledig scherm\"-knop", - "default": "Volledig scherm" - }, - { - "label": "Label van \"Volledig scherm afsluiten\"-knop", - "default": "Volledig scherm afsluiten" - }, - { - "label": "Paginavoortgang in boek", - "description": "\"@count\" wordt vervangen door paginatelling, en \"@total\" door het totaal aantal pagina's", - "default": "@count van @total pagina's" - }, - { - "label": "Interactie voortgang", - "description": "\"@count\" wordt vervangen door interactietelling, en \"@total\" door het totaal aantal interacties", - "default": "@count van @total interacties" - }, - { - "label": "Vertaling voor \"Rapport verzenden\"", - "default": "Rapport verzenden" - }, - { - "label": "Label voor \"Opnieuw starten\"-knop", - "default": "Opnieuw starten" - }, - { - "label": "Titel van samenvatting", - "default": "Samenvatting" - }, - { - "label": "Vertaling voor \"Alle interacties\"", - "default": "Alle interacties" - }, - { - "label": "Vertaling voor \"Niet-beantwoorde interacties\"", - "default": "Niet-beantwoorde interacties" - }, - { - "label": "Score", - "description": "\"@score\" wordt vervangen door huidige score, en \"@maxscore\" wordt vervangen door max. haalbare score", - "default": "@score / @maxscore" - }, - { - "label": "Voltooiing van interacties per pagina", - "description": "\"@left\" wordt vervangen door resterende interacties, en \"@max\" wordt vervangen door het totaal aantal interacties op de pagina", - "default": "@left van @max interacties afgerond" - }, - { - "label": "Vertaling voor \"Geen interacties\"", - "default": "Geen interacties" - }, - { - "label": "Vertaling voor \"Score\"", - "default": "Score" - }, - { - "label": "Label voor \"Samenvatting & verzenden\"-knop", - "default": "Samenvatting & verzenden" - }, - { - "label": "Vertaling voor \"Er zijn geen interacties met pagina's.\"", - "default": "Er zijn geen interacties met pagina's." - }, - { - "label": "Vertaling voor \"Je moet tenminste één interactie hebben voltooid om de samenvatting te kunnen zien.\"", - "default": "Je moet tenminste één interactie hebben voltooid om de samenvatting te kunnen zien." - }, - { - "label": "Vertaling voor \"Je antwoorden zijn verzonden voor beoordeling!\"", - "default": "Je antwoorden zijn verzonden voor beoordeling!" - }, - { - "label": "Label voor voortgang in samenvatting", - "default": "Boekvoortgang" - }, - { - "label": "Label voor voortgang bij interacties", - "default": "Interactievoortgang" - }, - { - "label": "Label voor totaalscore", - "default": "Totaalscore" - }, - { - "label": "Toegankelijkheidsteksten", - "fields": [ - { - "label": "Alternatieve tekst voor paginavoortgang", - "description": "Een alternatieve tekst voor de visuele paginavoortgang. @page en @total variabelen beschikbaar.", - "default": "Pagina @page van @total." - }, - { - "label": "Label voor uitvouwen/invouwen navigatiemenu", - "default": "Uit-/invouwen navigatiemenu" - } - ] - } - ] -} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/nn.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/nn.json deleted file mode 100644 index 3cdeae6..0000000 --- a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/nn.json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "semantics": [ - { - "label": "Enable book cover", - "description": "A cover that shows info regarding the book before access" - }, - { - "label": "Cover Page", - "fields": [ - { - "label": "Cover description", - "description": "This text will be the description of your book." - }, - { - "label": "Cover image", - "description": "An optional background image for the introduction." - }, - { - "label": "Cover image alternative text", - "description": "An alternative text for the cover image" - } - ] - }, - { - "label": "Pages", - "entity": "Page", - "widgets": [ - { - "label": "Default" - } - ], - "field": { - "label": "Item", - "fields": [ - { - "label": "Page" - } - ] - } - }, - { - "label": "Behavioural settings", - "fields": [ - { - "label": "Display table of contents as default", - "description": "When enabled the table of contents is showed when opening the book" - }, - { - "label": "Display Progress Indicators", - "description": "When enabled there will be indicators per page showing the user if he is done with the page or not." - }, - { - "label": "Enable automatic progress", - "description": "If enabled a page without tasks is considered done when viewed. A page with tasks when all tasks are done. If disabled there will be a button at the bottom of every page for the user to click when done with the page." - }, - { - "label": "Display summary", - "description": "When enabled the user can see a summary and submit the progress/answers" - } - ] - }, - { - "label": "Translation for \"Read\"", - "default": "Les" - }, - { - "label": "Translation for \"Display 'Table of contents'\"", - "default": "Vis 'Table of contents'" - }, - { - "label": "Translation for \"Hide 'Table of contents'\"", - "default": "Skjul 'Table of contents'" - }, - { - "label": "Translation for \"Next page\"", - "default": "Neste side" - }, - { - "label": "Translation for \"Previous page\"", - "default": "Førre side" - }, - { - "label": "Translation for \"Page completed!\"", - "default": "Kapittel ferdig!" - }, - { - "label": "Translation for \"@pages of @total completed\" (@pages and @total will be replaced by actual values)", - "default": "@pages av @total fullført" - }, - { - "label": "Translation for \"Incomplete page\"", - "default": "Ikkje fullført kapittel" - }, - { - "label": "Translation for \"Navigate to the top\"", - "default": "Gå til toppen" - }, - { - "label": "Translation for \"I have finished this page\"", - "default": "Eg er ferdig med sida" - }, - { - "label": "Fullscreen button label", - "default": "Fullskjerm" - }, - { - "label": "Exit fullscreen button label", - "default": "Lukk fullskjerm" - }, - { - "label": "Page progress in book", - "description": "\"@count\" will be replaced by page count, and \"@total\" with the total number of pages", - "default": "@count of @total pages" - }, - { - "label": "Interaction progress", - "description": "\"@count\" will be replaced by interaction count, and \"@total\" with the total number of interactions", - "default": "@count of @total interactions" - }, - { - "label": "Translation for \"Submit report\"", - "default": "Submit Report" - }, - { - "label": "Label for \"restart\" button", - "default": "Restart" - }, - { - "label": "Summary header", - "default": "Summary" - }, - { - "label": "Translation for \"All interactions\"", - "default": "All interactions" - }, - { - "label": "Translation for \"Unanswered interactions\"", - "default": "Unanswered interactions" - }, - { - "label": "Score", - "description": "\"@score\" will be replaced with current score, and \"@maxscore\" will be replaced with max achievable score", - "default": "@score / @maxscore" - }, - { - "label": "Per page interactions completion", - "description": "\"@left\" will be replaced with remaining interactions, and \"@max\" will be replaced with total number of interactions on the page", - "default": "@left of @max interactions completed" - }, - { - "label": "Translation for \"No interactions\"", - "default": "No interactions" - }, - { - "label": "Translation for \"Score\"", - "default": "Score" - }, - { - "label": "Label for \"Summary & submit\" button", - "default": "Summary & submit" - }, - { - "label": "Translation for \"You have not interacted with any pages.\"", - "default": "You have not interacted with any pages." - }, - { - "label": "Translation for \"You have to interact with at least one page before you can see the summary.\"", - "default": "You have to interact with at least one page before you can see the summary." - }, - { - "label": "Translation for \"Your answers are submitted for review!\"", - "default": "Your answers are submitted for review!" - }, - { - "label": "Summary progress label", - "default": "Book progress" - }, - { - "label": "Interactions progress label", - "default": "Interactions progress" - }, - { - "label": "Total score label", - "default": "Total score" - }, - { - "label": "Accessibility texts", - "fields": [ - { - "label": "Page progress textual alternative", - "description": "An alternative text for the visual page progress. @page and @total variables available.", - "default": "Side @page av @total." - }, - { - "label": "Label for expanding/collapsing navigation menu", - "default": "Slå på navigasjonsmeny" - } - ] - } - ] -} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/pt-br.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/pt-br.json deleted file mode 100644 index 982093b..0000000 --- a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/pt-br.json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "semantics": [ - { - "label": "Habilitar página de capa", - "description": "Habilita capa que mostra informações sobre o livro antes do acesso" - }, - { - "label": "Página de capa", - "fields": [ - { - "label": "Descrição da capa", - "description": "Texto exibido como descrição do livro." - }, - { - "label": "Imagem da capa", - "description": "Imagem opcional de fundo para a introdução." - }, - { - "label": "Text alternativo da imagem de capa", - "description": "Descrição da imagem de capa. É exibido quando a imagem não puder ser apresentada." - } - ] - }, - { - "label": "Capítulos", - "entity": "Capítulo", - "widgets": [ - { - "label": "Padrão" - } - ], - "field": { - "label": "Item", - "fields": [ - { - "label": "Capítulo" - } - ] - } - }, - { - "label": "Configurações comportamentais", - "fields": [ - { - "label": "Exibir Estrutura de Tópicos como padrão", - "description": "Exibe a Estrutra de Tópicos ao abrir o livro" - }, - { - "label": "Exibir indicador de progresso", - "description": "Exibe indicadores por página mostrando o que o usuário já concluiu e o que está pendente." - }, - { - "label": "Habilitar progresso automático", - "description": "Se habilitado, as páginas sem atividades são marcadas como concluídas quando são visualizadas, enquanto as páginas com atividades são marcadas apenas quando o usuário envia todas as atividades. Se desabilitado, exibe um botão no rodapé das páginas para o usuário indicar os conteúdos concluídos." - }, - { - "label": "Display summary", - "description": "When enabled the user can see a summary and submit the progress/answers" - } - ] - }, - { - "label": "Tradução para \"Ler\"", - "default": "Ler" - }, - { - "label": "Tradução para \"Exibir 'Estrutura de Tópicos'\"", - "default": "Display 'Table of contents'" - }, - { - "label": "Tradução para \"Hide 'Table of contents'\"", - "default": "Hide 'Table of contents'" - }, - { - "label": "Tradução para \"Próxima página\"", - "default": "Próxima página" - }, - { - "label": "Tradução para \"Página anterior\"", - "default": "Página anterior" - }, - { - "label": "Tradução para \"Aula concluída!\"", - "default": "Aula concluída!" - }, - { - "label": "Tradução para \"@pages de @total concluídas\" (@pages e @total serão substituídas pelos valores atuais para o usuário)", - "default": "@pages de @total concluídas" - }, - { - "label": "Tradução para \"Aula incompleta\"", - "default": "Aula incompleta" - }, - { - "label": "Tradução para \"Retornar ao topo\"", - "default": "Retornar ao topo" - }, - { - "label": "Tradução para \"Eu concluí o estudo desta página\"", - "default": "Eu concluí o estudo desta página" - }, - { - "label": "Texto do botão de tela cheia", - "default": "Tela cheia" - }, - { - "label": "Texto do botão Sair da tela cheia", - "default": "Sair da tela cheia" - }, - { - "label": "Page progress in book", - "description": "\"@count\" will be replaced by page count, and \"@total\" with the total number of pages", - "default": "@count of @total pages" - }, - { - "label": "Interaction progress", - "description": "\"@count\" will be replaced by interaction count, and \"@total\" with the total number of interactions", - "default": "@count of @total interactions" - }, - { - "label": "Translation for \"Submit report\"", - "default": "Submit Report" - }, - { - "label": "Label for \"restart\" button", - "default": "Restart" - }, - { - "label": "Summary header", - "default": "Summary" - }, - { - "label": "Translation for \"All interactions\"", - "default": "All interactions" - }, - { - "label": "Translation for \"Unanswered interactions\"", - "default": "Unanswered interactions" - }, - { - "label": "Score", - "description": "\"@score\" will be replaced with current score, and \"@maxscore\" will be replaced with max achievable score", - "default": "@score / @maxscore" - }, - { - "label": "Per page interactions completion", - "description": "\"@left\" will be replaced with remaining interactions, and \"@max\" will be replaced with total number of interactions on the page", - "default": "@left of @max interactions completed" - }, - { - "label": "Translation for \"No interactions\"", - "default": "No interactions" - }, - { - "label": "Translation for \"Score\"", - "default": "Score" - }, - { - "label": "Label for \"Summary & submit\" button", - "default": "Summary & submit" - }, - { - "label": "Translation for \"You have not interacted with any pages.\"", - "default": "You have not interacted with any pages." - }, - { - "label": "Translation for \"You have to interact with at least one page before you can see the summary.\"", - "default": "You have to interact with at least one page before you can see the summary." - }, - { - "label": "Translation for \"Your answers are submitted for review!\"", - "default": "Your answers are submitted for review!" - }, - { - "label": "Summary progress label", - "default": "Book progress" - }, - { - "label": "Interactions progress label", - "default": "Interactions progress" - }, - { - "label": "Total score label", - "default": "Total score" - }, - { - "label": "Textos de acessibilidade", - "fields": [ - { - "label": "Texto alternativo para progresso da página", - "description": "Texto alternativo para indicação visual de progresse da página. Varíaveis @page e @total disponíveis.", - "default": "Página @page de @total." - }, - { - "label": "Texto para expandir/colapsar menu de navegação", - "default": "Exibir/Ocultar menu de navegação" - } - ] - } - ] -} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/ru.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/ru.json deleted file mode 100644 index d2d519a..0000000 --- a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/ru.json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "semantics": [ - { - "label": "Добавить обложку книги", - "description": "Обложка, которая показывается перед открыванием книги" - }, - { - "label": "Обложка", - "fields": [ - { - "label": "Название книги", - "description": "Этот текст содержит описание книги." - }, - { - "label": "Изображение на обложке", - "description": "Дополнительное изображение на обложке." - }, - { - "label": "Название изображения на обложке", - "description": "Текст, появляющийся при наведении указателя на изображение" - } - ] - }, - { - "label": "Страницы", - "entity": "Страница", - "widgets": [ - { - "label": "По умолчанию" - } - ], - "field": { - "label": "Элемент", - "fields": [ - { - "label": "Страница" - } - ] - } - }, - { - "label": "Настройки поведения", - "fields": [ - { - "label": "Показывать содержание по умолчанию", - "description": "Если включено, содержание показывается сразу после октрывания книги" - }, - { - "label": "Показывать индикатор выполнения", - "description": "Если включено, на каждой странице показывается индикатор выполнения заданий." - }, - { - "label": "Автоподтверждение выполнения", - "description": "Если включено, то страница без заданий отмечается пройденной сразу после просмотра, а страница с заданиями - после из выполнения. Если выключено - требуется подтверждать выполнение кнопкой внизу каждой страницы." - }, - { - "label": "Показывать страницу Итоги", - "description": "Если включено, добавляется страница с результатами прохождения и кнопкой их отправки" - } - ] - }, - { - "label": "Перевод для \"Читать\"", - "default": "Читать" - }, - { - "label": "Перевод для \"Показать содержание\"", - "default": "Показать содержание" - }, - { - "label": "Перевод для \"Скрыть содержание\"", - "default": "Скрыть содержание" - }, - { - "label": "Перевод для \"Следующая страница\"", - "default": "Следующая страница" - }, - { - "label": "Перевод для \"Предыдущая страница\"", - "default": "Предыдущая страница" - }, - { - "label": "Перевод для \"Задания выполнены!\"", - "default": "Задания выполнены!" - }, - { - "label": "Перевод для \"@pages из @total выполнено\" (@pages и @total заменятся на текущие значения)", - "default": "@pages из @total выполнено" - }, - { - "label": "Перевод для \"Incomplete page\"", - "default": "Incomplete page" - }, - { - "label": "Перевод для \"К началу страницы\"", - "default": "К началу страницы" - }, - { - "label": "Перевод для \"Я выполнил задания этой страницы\"", - "default": "Я выполнил задания этой страницы" - }, - { - "label": "Кнопка Развернуть на весь экран", - "default": "Развернуть на весь экран" - }, - { - "label": "Кнопка Выйти из полноэкранного режима", - "default": "Выйти из полноэкранного режима" - }, - { - "label": "Номер открытой страницы", - "description": "\"@count\" заменится на номер открытой страницы, а \"@total\" - на общее количество страниц", - "default": "Страница @count из @total" - }, - { - "label": "Счетчик просмотренных заданий", - "description": "\"@count\" заменится на счетчик просмотренных заданий, а \"@total\" - на их общее число", - "default": "@count из @total просмотрено" - }, - { - "label": "Перевод для \"Итоги\"", - "default": "Итоги" - }, - { - "label": "Надпись на кнопке \"Перепройти\"", - "default": "Перепройти" - }, - { - "label": "Заголовок страницы Итоги курса", - "default": "Итоги курса" - }, - { - "label": "Перевод для \"Всего заданий просмотрено\"", - "default": "Всего заданий просмотрено" - }, - { - "label": "Перевод для \"Невыполненные задания\"", - "default": "Невыполненные задания" - }, - { - "label": "Баллы", - "description": "\"@score\" заменится на уже набранные баллы, \"@maxscore\" - на максимально возможное их количество", - "default": "@score / @maxscore" - }, - { - "label": "Осталось пройти на странице", - "description": "\"@left\" заменится на число непросмотренных заданий текущей страницы, а \"@max\" - на их общее количество", - "default": "Осталось на странице @left из @max" - }, - { - "label": "Перевод для \"Заданий нет\"", - "default": "Заданий нет" - }, - { - "label": "Перевод для \"Баллы\"", - "default": "Баллы" - }, - { - "label": "Надпись на кнопке \"Отправить ответы\"", - "default": "Отправить ответы" - }, - { - "label": "Перевод для \"Вы не завершили ни одной страницы.\"", - "default": "Вы не завершили ни одной страницы." - }, - { - "label": "Перевод для \"Для показа Итогов требуется завершить хотя бы одну страницу.\"", - "default": "Для показа Итогов требуется завершить хотя бы одну страницу." - }, - { - "label": "Перевод для \"Ваши ответы отправлены!\"", - "default": "Ваши ответы отправлены!" - }, - { - "label": "Заголовок Страниц просмотрено", - "default": "Страниц просмотрено" - }, - { - "label": "Заголовок Заданий просмотрено", - "default": "Заданий просмотрено" - }, - { - "label": "Заголовок Набрано баллов", - "default": "Набрано баллов" - }, - { - "label": "Accessibility texts", - "fields": [ - { - "label": "Page progress textual alternative", - "description": "An alternative text for the visual page progress. @page and @total variables available.", - "default": "Page @page of @total." - }, - { - "label": "Label for expanding/collapsing navigation menu", - "default": "Toggle navigation menu" - } - ] - } - ] -} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/sl.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/sl.json deleted file mode 100644 index fa9858b..0000000 --- a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/sl.json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "semantics": [ - { - "label": "Omogoči naslovno stran", - "description": "Na strani udeleženci že pred vstopom preberejo informacije o knjigi." - }, - { - "label": "Naslovna stran", - "fields": [ - { - "label": "Opis naslovne strani", - "description": "Besedilo opisuje vsebino knjige." - }, - { - "label": "Naslovna slika", - "description": "Neobvezna slika za ozadje naslovne strani." - }, - { - "label": "Nadomestno besedilo naslovne slike", - "description": "Besedilo z opisom naslovne slike za bralnike zaslona" - } - ] - }, - { - "label": "Strani", - "entity": "Stran", - "widgets": [ - { - "label": "Privzeto" - } - ], - "field": { - "label": "Element", - "fields": [ - { - "label": "Stran" - } - ] - } - }, - { - "label": "Nastavitve interakcije", - "fields": [ - { - "label": "Kazalo vsebin prikaži privzeto", - "description": "Omogočena nastavitev kazalo vsebin prikaže ob odprtju knjige." - }, - { - "label": "Prikaži indikatorje napredovanja", - "description": "Indikatorji udeležencu sporočijo status ogleda/zaključenosti posamezne strani." - }, - { - "label": "Omogoči samodejno beleženje napredovanja", - "description": "Brez samodejnega beleženja napredovanja, morajo udeleženci napredovanje potrditi s pomočjo potrditvenega polja." - }, - { - "label": "Prikaži stran s povzetkom", - "description": "Udeležencem se na dodatni strani prikaže povzetek interakcij oz. napredovanja." - } - ] - }, - { - "label": "Besedilo za \"Preberi\"", - "default": "Preberi" - }, - { - "label": "Besedilo za \"Prikaži 'kazalo vsebine'\"", - "default": "Prikaži 'kazalo vsebine'" - }, - { - "label": "Besedilo za \"Skrij 'kazalo vsebine'\"", - "default": "Skrij 'kazalo vsebine'" - }, - { - "label": "Besedilo za \"Naslednja stran\"", - "default": "Naslednja stran" - }, - { - "label": "Besedilo za \"Prejšnja stran\"", - "default": "Prejšnja stran" - }, - { - "label": "Besedilo za \"Stran zaključena!\"", - "default": "Stran zaključena!" - }, - { - "label": "Besedilo za \"Zaključeno @pages od @total\". @pages in @total sta spremenljivki.", - "default": "Zaključeno @pages od @total" - }, - { - "label": "Besedilo za \"Nezaključena stran\"", - "default": "Nezaključena stran" - }, - { - "label": "Besedilo za \"Na vrh\"", - "default": "Na vrh" - }, - { - "label": "Besedilo za \"Stran zaključena\"", - "default": "Stran zaključena" - }, - { - "label": "Besedilo za celozaslonski način", - "default": "Celozaslonski način" - }, - { - "label": "Besedilo za zaključek celozaslonskega načina", - "default": "Zapusti celozaslonski način" - }, - { - "label": "Napredek ogleda strani v knjigi", - "description": "\"@count\" in \"@total\" sta spremenljivki.", - "default": "Strani: @count od @total" - }, - { - "label": "Napredek interakcij v knjigi", - "description": "\"@count\" in \"@total\" sta spremenljivki.", - "default": "Interakcije: @count od @total" - }, - { - "label": "Besedilo za \"Oddaj poročilo\"", - "default": "Oddaj poročilo" - }, - { - "label": "Besedilo za gumb \"Poskusi ponovno\"", - "default": "Poskusi ponovno" - }, - { - "label": "Naslov strani s povzetkom", - "default": "Povzetek" - }, - { - "label": "Besedilo za \"Vse interakcije\"", - "default": "Vse interakcije" - }, - { - "label": "Besedilo za \"Nezaključene interakcije\"", - "default": "Nezaključene interakcije" - }, - { - "label": "Dosežek", - "description": "\"@score\" in \"@maxscore\" sta spremenljivki.", - "default": "@score / @maxscore" - }, - { - "label": "Napredek v interakcijah knjige po straneh", - "description": "\"@left\" in \"@max\" sta spremenljivki.", - "default": "Zaključene interakcije: @left od @max" - }, - { - "label": "Besedilo za \"Ni interakcij\"", - "default": "Ni interakcij" - }, - { - "label": "Besedilo za \"Dosežek\"", - "default": "Dosežek" - }, - { - "label": "Besedilo za gumb \"Povzetek\"", - "default": "Povzetek" - }, - { - "label": "Besedilo za \"Ni interakcij\"", - "default": "Ni interakcij" - }, - { - "label": "Besedilo za \"Pred ogledom povzetka je treba zaključiti vsaj eno interakcijo.\"", - "default": "Pred ogledom povzetka je treba zaključiti vsaj eno interakcijo." - }, - { - "label": "Besedilo za \"Odgovori so oddani v pregled!\"", - "default": "Odgovori so oddani v pregled!" - }, - { - "label": "Besedilo za indikator Ogled knjige", - "default": "Ogled knjige" - }, - { - "label": "Besedilo za indikator Zaključene interakcije", - "default": "Zaključene interakcije" - }, - { - "label": "Besedilo za indikator Skupen dosežek", - "default": "Skupen dosežek" - }, - { - "label": "Besedilo za dostopnost vsebin", - "fields": [ - { - "label": "Besedilo za napredek ogleda strani", - "description": "Nadomestno besedilo za vizualizacijo napredka ogleda strani. @page in @total sta spremenljivki.", - "default": "Stran @page od @total." - }, - { - "label": "Besedilo za kazalo vsebine", - "default": "Kazalo vsebine za navigacijo" - } - ] - } - ] -} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/sma.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/sma.json deleted file mode 100644 index fc2c8d3..0000000 --- a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/sma.json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "semantics": [ - { - "label": "Enable book cover", - "description": "A cover that shows info regarding the book before access" - }, - { - "label": "Cover Page", - "fields": [ - { - "label": "Cover description", - "description": "This text will be the description of your book." - }, - { - "label": "Cover image", - "description": "An optional background image for the introduction." - }, - { - "label": "Cover image alternative text", - "description": "An alternative text for the cover image" - } - ] - }, - { - "label": "Pages", - "entity": "Page", - "widgets": [ - { - "label": "Default" - } - ], - "field": { - "label": "Item", - "fields": [ - { - "label": "Page" - } - ] - } - }, - { - "label": "Behavioural settings", - "fields": [ - { - "label": "Display table of contents as default", - "description": "When enabled the table of contents is showed when opening the book" - }, - { - "label": "Display Progress Indicators", - "description": "When enabled there will be indicators per page showing the user if he is done with the page or not." - }, - { - "label": "Enable automatic progress", - "description": "If enabled a page without tasks is considered done when viewed. A page with tasks when all tasks are done. If disabled there will be a button at the bottom of every page for the user to click when done with the page." - }, - { - "label": "Display summary", - "description": "When enabled the user can see a summary and submit the progress/answers" - } - ] - }, - { - "label": "Translation for \"Read\"", - "default": "Read" - }, - { - "label": "Translation for \"Display 'Table of contents'\"", - "default": "Display 'Table of contents'" - }, - { - "label": "Translation for \"Hide 'Table of contents'\"", - "default": "Hide 'Table of contents'" - }, - { - "label": "Translation for \"Next page\"", - "default": "Next page" - }, - { - "label": "Translation for \"Previous page\"", - "default": "Previous page" - }, - { - "label": "Translation for \"Page completed!\"", - "default": "Page completed!" - }, - { - "label": "Translation for \"@pages of @total completed\" (@pages and @total will be replaced by actual values)", - "default": "@pages of @total completed" - }, - { - "label": "Translation for \"Incomplete page\"", - "default": "Incomplete page" - }, - { - "label": "Translation for \"Navigate to the top\"", - "default": "Navigate to the top" - }, - { - "label": "Translation for \"I have finished this page\"", - "default": "I have finished this page" - }, - { - "label": "Fullscreen button label", - "default": "Fullscreen" - }, - { - "label": "Exit fullscreen button label", - "default": "Exit fullscreen" - }, - { - "label": "Page progress in book", - "description": "\"@count\" will be replaced by page count, and \"@total\" with the total number of pages", - "default": "@count of @total pages" - }, - { - "label": "Interaction progress", - "description": "\"@count\" will be replaced by interaction count, and \"@total\" with the total number of interactions", - "default": "@count of @total interactions" - }, - { - "label": "Translation for \"Submit report\"", - "default": "Submit Report" - }, - { - "label": "Label for \"restart\" button", - "default": "Restart" - }, - { - "label": "Summary header", - "default": "Summary" - }, - { - "label": "Translation for \"All interactions\"", - "default": "All interactions" - }, - { - "label": "Translation for \"Unanswered interactions\"", - "default": "Unanswered interactions" - }, - { - "label": "Score", - "description": "\"@score\" will be replaced with current score, and \"@maxscore\" will be replaced with max achievable score", - "default": "@score / @maxscore" - }, - { - "label": "Per page interactions completion", - "description": "\"@left\" will be replaced with remaining interactions, and \"@max\" will be replaced with total number of interactions on the page", - "default": "@left of @max interactions completed" - }, - { - "label": "Translation for \"No interactions\"", - "default": "No interactions" - }, - { - "label": "Translation for \"Score\"", - "default": "Score" - }, - { - "label": "Label for \"Summary & submit\" button", - "default": "Summary & submit" - }, - { - "label": "Translation for \"You have not interacted with any pages.\"", - "default": "You have not interacted with any pages." - }, - { - "label": "Translation for \"You have to interact with at least one page before you can see the summary.\"", - "default": "You have to interact with at least one page before you can see the summary." - }, - { - "label": "Translation for \"Your answers are submitted for review!\"", - "default": "Your answers are submitted for review!" - }, - { - "label": "Summary progress label", - "default": "Book progress" - }, - { - "label": "Interactions progress label", - "default": "Interactions progress" - }, - { - "label": "Total score label", - "default": "Total score" - }, - { - "label": "Accessibility texts", - "fields": [ - { - "label": "Page progress textual alternative", - "description": "An alternative text for the visual page progress. @page and @total variables available.", - "default": "Page @page of @total." - }, - { - "label": "Label for expanding/collapsing navigation menu", - "default": "Toggle navigation menu" - } - ] - } - ] -} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/sme.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/sme.json deleted file mode 100644 index fc2c8d3..0000000 --- a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/sme.json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "semantics": [ - { - "label": "Enable book cover", - "description": "A cover that shows info regarding the book before access" - }, - { - "label": "Cover Page", - "fields": [ - { - "label": "Cover description", - "description": "This text will be the description of your book." - }, - { - "label": "Cover image", - "description": "An optional background image for the introduction." - }, - { - "label": "Cover image alternative text", - "description": "An alternative text for the cover image" - } - ] - }, - { - "label": "Pages", - "entity": "Page", - "widgets": [ - { - "label": "Default" - } - ], - "field": { - "label": "Item", - "fields": [ - { - "label": "Page" - } - ] - } - }, - { - "label": "Behavioural settings", - "fields": [ - { - "label": "Display table of contents as default", - "description": "When enabled the table of contents is showed when opening the book" - }, - { - "label": "Display Progress Indicators", - "description": "When enabled there will be indicators per page showing the user if he is done with the page or not." - }, - { - "label": "Enable automatic progress", - "description": "If enabled a page without tasks is considered done when viewed. A page with tasks when all tasks are done. If disabled there will be a button at the bottom of every page for the user to click when done with the page." - }, - { - "label": "Display summary", - "description": "When enabled the user can see a summary and submit the progress/answers" - } - ] - }, - { - "label": "Translation for \"Read\"", - "default": "Read" - }, - { - "label": "Translation for \"Display 'Table of contents'\"", - "default": "Display 'Table of contents'" - }, - { - "label": "Translation for \"Hide 'Table of contents'\"", - "default": "Hide 'Table of contents'" - }, - { - "label": "Translation for \"Next page\"", - "default": "Next page" - }, - { - "label": "Translation for \"Previous page\"", - "default": "Previous page" - }, - { - "label": "Translation for \"Page completed!\"", - "default": "Page completed!" - }, - { - "label": "Translation for \"@pages of @total completed\" (@pages and @total will be replaced by actual values)", - "default": "@pages of @total completed" - }, - { - "label": "Translation for \"Incomplete page\"", - "default": "Incomplete page" - }, - { - "label": "Translation for \"Navigate to the top\"", - "default": "Navigate to the top" - }, - { - "label": "Translation for \"I have finished this page\"", - "default": "I have finished this page" - }, - { - "label": "Fullscreen button label", - "default": "Fullscreen" - }, - { - "label": "Exit fullscreen button label", - "default": "Exit fullscreen" - }, - { - "label": "Page progress in book", - "description": "\"@count\" will be replaced by page count, and \"@total\" with the total number of pages", - "default": "@count of @total pages" - }, - { - "label": "Interaction progress", - "description": "\"@count\" will be replaced by interaction count, and \"@total\" with the total number of interactions", - "default": "@count of @total interactions" - }, - { - "label": "Translation for \"Submit report\"", - "default": "Submit Report" - }, - { - "label": "Label for \"restart\" button", - "default": "Restart" - }, - { - "label": "Summary header", - "default": "Summary" - }, - { - "label": "Translation for \"All interactions\"", - "default": "All interactions" - }, - { - "label": "Translation for \"Unanswered interactions\"", - "default": "Unanswered interactions" - }, - { - "label": "Score", - "description": "\"@score\" will be replaced with current score, and \"@maxscore\" will be replaced with max achievable score", - "default": "@score / @maxscore" - }, - { - "label": "Per page interactions completion", - "description": "\"@left\" will be replaced with remaining interactions, and \"@max\" will be replaced with total number of interactions on the page", - "default": "@left of @max interactions completed" - }, - { - "label": "Translation for \"No interactions\"", - "default": "No interactions" - }, - { - "label": "Translation for \"Score\"", - "default": "Score" - }, - { - "label": "Label for \"Summary & submit\" button", - "default": "Summary & submit" - }, - { - "label": "Translation for \"You have not interacted with any pages.\"", - "default": "You have not interacted with any pages." - }, - { - "label": "Translation for \"You have to interact with at least one page before you can see the summary.\"", - "default": "You have to interact with at least one page before you can see the summary." - }, - { - "label": "Translation for \"Your answers are submitted for review!\"", - "default": "Your answers are submitted for review!" - }, - { - "label": "Summary progress label", - "default": "Book progress" - }, - { - "label": "Interactions progress label", - "default": "Interactions progress" - }, - { - "label": "Total score label", - "default": "Total score" - }, - { - "label": "Accessibility texts", - "fields": [ - { - "label": "Page progress textual alternative", - "description": "An alternative text for the visual page progress. @page and @total variables available.", - "default": "Page @page of @total." - }, - { - "label": "Label for expanding/collapsing navigation menu", - "default": "Toggle navigation menu" - } - ] - } - ] -} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/smj.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/smj.json deleted file mode 100644 index fc2c8d3..0000000 --- a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/smj.json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "semantics": [ - { - "label": "Enable book cover", - "description": "A cover that shows info regarding the book before access" - }, - { - "label": "Cover Page", - "fields": [ - { - "label": "Cover description", - "description": "This text will be the description of your book." - }, - { - "label": "Cover image", - "description": "An optional background image for the introduction." - }, - { - "label": "Cover image alternative text", - "description": "An alternative text for the cover image" - } - ] - }, - { - "label": "Pages", - "entity": "Page", - "widgets": [ - { - "label": "Default" - } - ], - "field": { - "label": "Item", - "fields": [ - { - "label": "Page" - } - ] - } - }, - { - "label": "Behavioural settings", - "fields": [ - { - "label": "Display table of contents as default", - "description": "When enabled the table of contents is showed when opening the book" - }, - { - "label": "Display Progress Indicators", - "description": "When enabled there will be indicators per page showing the user if he is done with the page or not." - }, - { - "label": "Enable automatic progress", - "description": "If enabled a page without tasks is considered done when viewed. A page with tasks when all tasks are done. If disabled there will be a button at the bottom of every page for the user to click when done with the page." - }, - { - "label": "Display summary", - "description": "When enabled the user can see a summary and submit the progress/answers" - } - ] - }, - { - "label": "Translation for \"Read\"", - "default": "Read" - }, - { - "label": "Translation for \"Display 'Table of contents'\"", - "default": "Display 'Table of contents'" - }, - { - "label": "Translation for \"Hide 'Table of contents'\"", - "default": "Hide 'Table of contents'" - }, - { - "label": "Translation for \"Next page\"", - "default": "Next page" - }, - { - "label": "Translation for \"Previous page\"", - "default": "Previous page" - }, - { - "label": "Translation for \"Page completed!\"", - "default": "Page completed!" - }, - { - "label": "Translation for \"@pages of @total completed\" (@pages and @total will be replaced by actual values)", - "default": "@pages of @total completed" - }, - { - "label": "Translation for \"Incomplete page\"", - "default": "Incomplete page" - }, - { - "label": "Translation for \"Navigate to the top\"", - "default": "Navigate to the top" - }, - { - "label": "Translation for \"I have finished this page\"", - "default": "I have finished this page" - }, - { - "label": "Fullscreen button label", - "default": "Fullscreen" - }, - { - "label": "Exit fullscreen button label", - "default": "Exit fullscreen" - }, - { - "label": "Page progress in book", - "description": "\"@count\" will be replaced by page count, and \"@total\" with the total number of pages", - "default": "@count of @total pages" - }, - { - "label": "Interaction progress", - "description": "\"@count\" will be replaced by interaction count, and \"@total\" with the total number of interactions", - "default": "@count of @total interactions" - }, - { - "label": "Translation for \"Submit report\"", - "default": "Submit Report" - }, - { - "label": "Label for \"restart\" button", - "default": "Restart" - }, - { - "label": "Summary header", - "default": "Summary" - }, - { - "label": "Translation for \"All interactions\"", - "default": "All interactions" - }, - { - "label": "Translation for \"Unanswered interactions\"", - "default": "Unanswered interactions" - }, - { - "label": "Score", - "description": "\"@score\" will be replaced with current score, and \"@maxscore\" will be replaced with max achievable score", - "default": "@score / @maxscore" - }, - { - "label": "Per page interactions completion", - "description": "\"@left\" will be replaced with remaining interactions, and \"@max\" will be replaced with total number of interactions on the page", - "default": "@left of @max interactions completed" - }, - { - "label": "Translation for \"No interactions\"", - "default": "No interactions" - }, - { - "label": "Translation for \"Score\"", - "default": "Score" - }, - { - "label": "Label for \"Summary & submit\" button", - "default": "Summary & submit" - }, - { - "label": "Translation for \"You have not interacted with any pages.\"", - "default": "You have not interacted with any pages." - }, - { - "label": "Translation for \"You have to interact with at least one page before you can see the summary.\"", - "default": "You have to interact with at least one page before you can see the summary." - }, - { - "label": "Translation for \"Your answers are submitted for review!\"", - "default": "Your answers are submitted for review!" - }, - { - "label": "Summary progress label", - "default": "Book progress" - }, - { - "label": "Interactions progress label", - "default": "Interactions progress" - }, - { - "label": "Total score label", - "default": "Total score" - }, - { - "label": "Accessibility texts", - "fields": [ - { - "label": "Page progress textual alternative", - "description": "An alternative text for the visual page progress. @page and @total variables available.", - "default": "Page @page of @total." - }, - { - "label": "Label for expanding/collapsing navigation menu", - "default": "Toggle navigation menu" - } - ] - } - ] -} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/sv.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/sv.json deleted file mode 100644 index a9911d8..0000000 --- a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/sv.json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "semantics": [ - { - "label": "Aktivera bokomslag", - "description": "Ett bokomslag som visar information om boken" - }, - { - "label": "Omslagssida", - "fields": [ - { - "label": "Omslagets beskrivning", - "description": "Denna text beskriver din bok." - }, - { - "label": "Omslagsbild", - "description": "Valfri bakgrundsbild för introduktionen." - }, - { - "label": "Omslagsbildens alternativa text", - "description": "Alternativ text för omslagsbilden" - } - ] - }, - { - "label": "Sidor", - "entity": "Sida", - "widgets": [ - { - "label": "Standard" - } - ], - "field": { - "label": "Post", - "fields": [ - { - "label": "Sida" - } - ] - } - }, - { - "label": "Beteende-inställningar", - "fields": [ - { - "label": "Visa innehållsförteckning som standard", - "description": "När aktiverat så visas innehållsförteckningen vid öppning av boken" - }, - { - "label": "Visa framstegsindikatorer", - "description": "När aktiverat så visas framstegsindikatorer på varje sida, som visar användaren om sidan är färdig eller inte." - }, - { - "label": "Aktivera automatisk framsteg", - "description": "När aktiverat så kommer en sida utan uppgifter att betraktas som genomförd när den är visad.En sida med uppgifter är genomförd när alla uppgifter är genomförda. När inaktiverat så kommer det finnas en knapp längst ned på varje sida där användaren kan klicka när denne är färdig med sidan." - }, - { - "label": "Visa sammanfattning", - "description": "När aktiverat så kan användaren se en sammanfattning och skicka in sina framsteg/ svar." - } - ] - }, - { - "label": "Översättning för \"Läsa\"", - "default": "Läsa" - }, - { - "label": "Översättning för \"Visa 'Innehållsförteckning'\"", - "default": "Visa 'Innehållsförteckning'" - }, - { - "label": "Överstättning för \"Dölj 'Innehållsförteckning'\"", - "default": "Dölj 'Innehållsförteckning'" - }, - { - "label": "Översättning för \"Nästa sida\"", - "default": "Nästa sida" - }, - { - "label": "Översättning för \"Föregående sida\"", - "default": "Föregående sida" - }, - { - "label": "Översättning för \"Sida genomförd!\"", - "default": "Sida genomförd!" - }, - { - "label": "Översättning för \"@pages av @total genomförda\" (@pages och @total kommer ersättas med riktiga värden)", - "default": "@pages av @total genomförda" - }, - { - "label": "Översättning för \"Ej genomförd sida\"", - "default": "Ej genomförd sida" - }, - { - "label": "Översättning för \"Navigera till toppen\"", - "default": "Navigera till toppen" - }, - { - "label": "Översättnin för \"Jag har genomfört denna sida\"", - "default": "Jag har genomfört denna sida" - }, - { - "label": "Etikett för knapp för helskärmsläge", - "default": "Helskärmsläge" - }, - { - "label": "Etikett för knapp för avsluta helskärmsläge", - "default": "Avsluta helskärmsläge" - }, - { - "label": "Framsteg på sidor i bok", - "description": "\"@count\" kommer ersättas med antalet sidor, och \"@total\" med totala antalet sidor", - "default": "@count av @total sidor" - }, - { - "label": "Framsteg i interaktiva övningar", - "description": "\"@count\" kommer ersättas med antalet interaktiva övningar, och \"@total\" med totala antalet interaktiva övningar", - "default": "@count av @total interaktiva övningar" - }, - { - "label": "Översättning för \"Skicka in rapport\"", - "default": "Skicka in rapport" - }, - { - "label": "Etikett för \"starta om\"-knapp", - "default": "Starta om" - }, - { - "label": "Rubrik för sammanfattning", - "default": "Sammanfattning" - }, - { - "label": "Översättning för \"Alla interaktiva övningar\"", - "default": "Alla interaktiva övningar" - }, - { - "label": "Översättning för \"Obesvarade interaktiva övningar\"", - "default": "Obesvarade interaktiva övningar" - }, - { - "label": "Poäng", - "description": "\"@score\" kommer att ersättas med aktuell poäng, och \"@maxscore\" ersättas med max poäng som kan uppnås", - "default": "@score / @maxscore" - }, - { - "label": "Genomförande av interaktiva övningar per sida", - "description": "\"@left\" kommer att ersättas med återstående interaktiva övningar, och \"@max\" ersättas med totala antalet interaktiva övningar på sidan", - "default": "@left of @max interaktiva övningar genomförda" - }, - { - "label": "Översättning för \"Inga interaktiva övningar\"", - "default": "Inga interaktiva övningar" - }, - { - "label": "Översättning för \"Poäng\"", - "default": "Poäng" - }, - { - "label": "Etikett för \"Sammanfattning och skicka in\"-knapp", - "default": "Sammanfattning och skicka in" - }, - { - "label": "Översättning för \"Du har inte genomfört interaktiv övning på någon sida.\"", - "default": "Du har inte genomfört interaktiv övning på någon sida." - }, - { - "label": "Översättning för \"Du måste genomföra åtminstone en sidas interaktiva övningar innan du kan se sammanfattningen.\"", - "default": "Du måste genomföra åtminstone en sidas interaktiva övningar innan du kan se sammanfattningen." - }, - { - "label": "Översättning för \"Dina svar har skickats in för granskning!\"", - "default": "Dina svar har skickats in för granskning!" - }, - { - "label": "Etikett för sammanfattning av framsteg", - "default": "Framsteg i bok" - }, - { - "label": "Etikett för framsteg i interaktiva övningar", - "default": "Framsteg i interaktiva övningar" - }, - { - "label": "Etikett för total poäng", - "default": "Total poäng" - }, - { - "label": "Tillgänglighets-texter", - "fields": [ - { - "label": "Text-alternativ till framsteg på sida", - "description": "En alternativ text för visualiseringen av framsteg på sida. @page och @total variabler finns att använda.", - "default": "Sida @page av @total." - }, - { - "label": "Etikett för att expandera/komprimera navigeringsmenyn", - "default": "Växla läge på navigationsmeny" - } - ] - } - ] -} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/tr.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/tr.json deleted file mode 100644 index 7f2f662..0000000 --- a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/language/tr.json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "semantics": [ - { - "label": "Kitap kapağını etkinleştir", - "description": "Etkinlikten önce kitapla ilgili bilgileri gösteren bir kapak" - }, - { - "label": "Kapak Sayfası", - "fields": [ - { - "label": "Kapak açıklaması", - "description": "Bu metin kitabınızın açıklaması olacaktır." - }, - { - "label": "Kapak resmi", - "description": "Kapak için isteğe bağlı bir arka plan resmi." - }, - { - "label": "Kapak resmi alternatif metni", - "description": "Kapak resmi için alternatif bir metin" - } - ] - }, - { - "label": "Sayfalar", - "entity": "Sayfa", - "widgets": [ - { - "label": "Varsayılan" - } - ], - "field": { - "label": "Öge", - "fields": [ - { - "label": "Sayfa" - } - ] - } - }, - { - "label": "Etkinlik Ayarları", - "fields": [ - { - "label": "İçindekileri varsayılan olarak görüntüle", - "description": "Etkinleştirildiğinde, kitap açılırken içindekiler tablosu gösterilir" - }, - { - "label": "İlerleme Göstergelerini Görüntüle", - "description": "Etkinleştirildiğinde, kullanıcının sayfayla işinin bitip bitmediğini gösteren sayfa başına göstergeler olacaktır." - }, - { - "label": "Otomatik ilerlemeyi etkinleştir", - "description": "Etkinleştirilirse, etkinlik olmayan bir sayfa görüntülendiğinde tamamlanmış olarak kabul edilir. Tüm görevler tamamlandığında yeni görevleri içeren bir sayfaya ilerler. Devre dışı bırakılırsa, her sayfanın altında, kullanıcının sayfayla işi bittiğinde tıklaması için bir düğme olacaktır." - }, - { - "label": "Özeti görüntüle", - "description": "Etkinleştirildiğinde, kullanıcı bir özeti görebilir ve ilerlemeyi/cevapları gönderebilir" - } - ] - }, - { - "label": "\"Oku\" için çeviri", - "default": "Oku" - }, - { - "label": "\"'İçindekiler'i Görüntüle\" için çeviri", - "default": "'İçindekiler'i göster" - }, - { - "label": "\"'İçindekiler'i gizle\" çevirisi", - "default": "'İçindekiler'i gizle" - }, - { - "label": "\"Sonraki sayfa\" için çeviri", - "default": "Sonraki Sayfa" - }, - { - "label": "\"Önceki sayfa\" için çeviri", - "default": "Önceki sayfa" - }, - { - "label": "\"Sayfa tamamlandı!\" için çeviri", - "default": "Sayfa tamamlandı!" - }, - { - "label": "\"@total sayfadan @pages sayfa tamamlandı\"nın çevirisi (@pages ve @total gerçek değerlerle değiştirilecektir)", - "default": "@total sayfadan @pages sayfa tamamlandı" - }, - { - "label": "\"Tamamlanmamış sayfa\" için çeviri", - "default": "Tamamlanmamış sayfa" - }, - { - "label": "\"En üste git\"in çevirisi", - "default": "En üste git" - }, - { - "label": "\"Bu sayfayı bitirdim\"in çevirisi", - "default": "Bu sayfayı bitirdim" - }, - { - "label": "Tam ekran düğme etiketi", - "default": "Tam ekran" - }, - { - "label": "Tam ekrandan çık düğme etiketi", - "default": "Tam ekrandan çık" - }, - { - "label": "Kitapta sayfa ilerlemesi", - "description": "\"@count\" sayfa sayısıyla ve \"@total\" toplam sayfa sayısıyla değiştirilecektir", - "default": "@total sayfadan @count sayfa" - }, - { - "label": "Etkileşim ilerlemesi", - "description": "\"@count\" yerine etkileşim sayısı, \"@toplam\" ise toplam etkileşim sayısıyla değiştirilir", - "default": "@total etkileşimden @count etkileşim" - }, - { - "label": "\"Raporu Gönder\"in çevirisi", - "default": "Raporu Gönder" - }, - { - "label": "\"Yeniden Başlat\" düğmesi için etiket", - "default": "Yeniden Başlat" - }, - { - "label": "Özet başlığı", - "default": "Özet" - }, - { - "label": "\"Tüm Etkileşimler\" için çeviri", - "default": "Tüm Etkileşimler" - }, - { - "label": "\"Cevaplanmamış Etkileşimler\"in çevirisi", - "default": "Cevaplanmamış Etkileşimler" - }, - { - "label": "Puan", - "description": "\"@score\" geçerli puanla değiştirilecek ve \"@maxscore\" elde edilebilecek maksimum puanla değiştirilecek", - "default": "@score / @maxscore" - }, - { - "label": "Sayfa başına etkileşim tamamlama", - "description": "\"@left\" kalan etkileşimlerle değiştirilecek ve \"@max\" sayfadaki toplam etkileşim sayısıyla değiştirilecek", - "default": "@max etkileşimden @left etkileşim tamamlandı" - }, - { - "label": "\"Etkileşim Yok\" çevirisi", - "default": "Etkileşim Yok" - }, - { - "label": "\"Puan\" için çeviri", - "default": "Puan" - }, - { - "label": "\"Özet & gönder\" düğmesi için etiket", - "default": "Özet & gönder" - }, - { - "label": "\"Hiçbir sayfayla etkileşim kurmadınız\"ın çevirisi", - "default": "Hiçbir sayfayla etkileşim kurmadınız." - }, - { - "label": "\"Özeti görebilmeniz için en az bir sayfayla etkileşim kurmanız gerekir\"in çevirisi", - "default": "Özeti görebilmeniz için en az bir sayfayla etkileşim kurmanız gerekir." - }, - { - "label": "\"Yanıtlarınız incelemeye gönderildi!\" için çeviri", - "default": "Yanıtlarınız incelemeye gönderildi!" - }, - { - "label": "Özet ilerleme etiketi", - "default": "Kitap ilerlemesi" - }, - { - "label": "Etkileşim ilerleme etiketi", - "default": "Etkileşim ilerlemesi" - }, - { - "label": "Toplam puan etiketi", - "default": "Toplam puan" - }, - { - "label": "Erişilebilirlik metinleri", - "fields": [ - { - "label": "Sayfa ilerleme metni alternatifi", - "description": "Görsel sayfa ilerlemesi için alternatif bir metin. @page yerine sayfa sayısı ve @total yerine toplam sayfa sayısı getirilecek.", - "default": "@total sayfadan @page. sayfa." - }, - { - "label": "Genişleyen/daraltan gezinme menüsü için etiket", - "default": "Gezinme menüsünü aç/kapat" - } - ] - } - ] -} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/library.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/library.json deleted file mode 100644 index 5849353..0000000 --- a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/library.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "title": "Interactive Book", - "description": "An interactive book which displays content in pages and sections", - "majorVersion": 1, - "minorVersion": 3, - "patchVersion": 86, - "runnable": 1, - "fullscreen": 1, - "author": "Joubel", - "license": "MIT", - "machineName": "H5P.InteractiveBook", - "embedTypes": [ - "iframe" - ], - "preloadedJs": [ - { - "path": "dist/h5p-interactive-book.js" - } - ], - "preloadedDependencies": [ - { - "machineName": "FontAwesome", - "majorVersion": 4, - "minorVersion": 5 - }, - { - "machineName": "H5P.Column", - "majorVersion": 1, - "minorVersion": 13 - }, - { - "machineName": "H5P.JoubelUI", - "majorVersion": 1, - "minorVersion": 3 - }, - { - "machineName": "H5P.Audio", - "majorVersion": 1, - "minorVersion": 4 - } - ], - "editorDependencies": [ - { - "machineName": "H5PEditor.VerticalTabs", - "majorVersion": 1, - "minorVersion": 3 - }, - { - "machineName": "H5PEditor.ShowWhen", - "majorVersion": 1, - "minorVersion": 0 - } - ] -} diff --git a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/semantics.json b/H5P.InteractiveBook/H5P.InteractiveBook-1.3/semantics.json deleted file mode 100644 index 931aa5d..0000000 --- a/H5P.InteractiveBook/H5P.InteractiveBook-1.3/semantics.json +++ /dev/null @@ -1,433 +0,0 @@ -[ - { - "name": "showCoverPage", - "type": "boolean", - "label": "Enable book cover", - "description": "A cover that shows info regarding the book before access", - "importance": "low", - "default": false - }, - { - "name": "bookCover", - "type": "group", - "label": "Cover Page", - "importance": "medium", - "widget": "showWhen", - "showWhen": { - "rules": [ - { - "field": "showCoverPage", - "equals": true - } - ] - }, - "fields": [ - { - "name": "coverDescription", - "type": "text", - "widget": "html", - "label": "Cover description", - "importance": "medium", - "optional": true, - "description": "This text will be the description of your book.", - "enterMode": "p", - "tags": [ - "sub", - "sup", - "strong", - "em", - "p", - "code" - ] - }, - { - "name": "coverImage", - "type": "image", - "label": "Cover image", - "importance": "low", - "optional": true, - "description": "An optional background image for the introduction." - }, - { - "name": "coverAltText", - "type": "text", - "label": "Cover image alternative text", - "importance": "low", - "optional": true, - "description": "An alternative text for the cover image" - } - ] - }, - { - "name": "chapters", - "type": "list", - "label": "Pages", - "entity": "Page", - "widgets": [ - { - "name": "VerticalTabs", - "label": "Default" - } - ], - "importance": "high", - "min": 1, - "max": 50, - "field": { - "name": "item", - "type": "group", - "label": "Item", - "importance": "low", - "expanded": true, - "fields": [ - { - "label": "Page", - "name": "chapter", - "type": "library", - "options": [ - "H5P.Column 1.13" - ] - } - ] - } - }, - { - "name": "behaviour", - "type": "group", - "importance": "low", - "label": "Behavioural settings", - "fields": [ - { - "name": "defaultTableOfContents", - "type": "boolean", - "label": "Display table of contents as default", - "description": "When enabled the table of contents is showed when opening the book", - "default": true - }, - { - "name": "progressIndicators", - "type": "boolean", - "label": "Display Progress Indicators", - "description": "When enabled there will be indicators per page showing the user if he is done with the page or not.", - "default": true - }, - { - "name": "progressAuto", - "type": "boolean", - "label": "Enable automatic progress", - "description": "If enabled a page without tasks is considered done when viewed. A page with tasks when all tasks are done. If disabled there will be a button at the bottom of every page for the user to click when done with the page.", - "default": true, - "widget": "showWhen", - "showWhen": { - "rules": [ - { - "field": "progressIndicators", - "equals": true - } - ] - } - }, - { - "name": "displaySummary", - "type": "boolean", - "label": "Display summary", - "description": "When enabled the user can see a summary and submit the progress/answers", - "default": true - } - ] - }, - { - "name": "read", - "type": "text", - "label": "Translation for \"Read\"", - "importance": "low", - "default": "Read", - "common": true, - "optional": true - }, - { - "name": "displayTOC", - "type": "text", - "label": "Translation for \"Display 'Table of contents'\"", - "importance": "low", - "default": "Display 'Table of contents'", - "common": true, - "optional": true - }, - { - "name": "hideTOC", - "type": "text", - "label": "Translation for \"Hide 'Table of contents'\"", - "importance": "low", - "default": "Hide 'Table of contents'", - "common": true, - "optional": true - }, - { - "name": "nextPage", - "type": "text", - "label": "Translation for \"Next page\"", - "importance": "low", - "default": "Next page", - "common": true, - "optional": true - }, - { - "name": "previousPage", - "type": "text", - "label": "Translation for \"Previous page\"", - "importance": "low", - "default": "Previous page", - "common": true, - "optional": true - }, - { - "name": "chapterCompleted", - "type": "text", - "label": "Translation for \"Page completed!\"", - "importance": "low", - "default": "Page completed!", - "common": true, - "optional": true - }, - { - "name": "partCompleted", - "type": "text", - "label": "Translation for \"@pages of @total completed\" (@pages and @total will be replaced by actual values)", - "importance": "low", - "default": "@pages of @total completed", - "common": true, - "optional": true - }, - { - "name": "incompleteChapter", - "type": "text", - "label": "Translation for \"Incomplete page\"", - "importance": "low", - "default": "Incomplete page", - "common": true, - "optional": true - }, - { - "name": "navigateToTop", - "type": "text", - "label": "Translation for \"Navigate to the top\"", - "importance": "low", - "default": "Navigate to the top", - "common": true, - "optional": true - }, - { - "name": "markAsFinished", - "type": "text", - "importance": "low", - "label": "Translation for \"I have finished this page\"", - "default": "I have finished this page", - "common": true, - "optional": true - }, - { - "name": "fullscreen", - "type": "text", - "importance": "low", - "label": "Fullscreen button label", - "default": "Fullscreen", - "common": true, - "optional": true - }, - { - "name": "exitFullscreen", - "type": "text", - "importance": "low", - "label": "Exit fullscreen button label", - "default": "Exit fullscreen", - "common": true, - "optional": true - }, - { - "name": "bookProgressSubtext", - "type": "text", - "importance": "low", - "label": "Page progress in book", - "description": "\"@count\" will be replaced by page count, and \"@total\" with the total number of pages", - "default": "@count of @total pages", - "common": true, - "optional": true - }, - { - "name": "interactionsProgressSubtext", - "type": "text", - "importance": "low", - "label": "Interaction progress", - "description": "\"@count\" will be replaced by interaction count, and \"@total\" with the total number of interactions", - "default": "@count of @total interactions", - "common": true, - "optional": true - }, - { - "name": "submitReport", - "type": "text", - "importance": "low", - "label": "Translation for \"Submit report\"", - "default": "Submit Report", - "common": true, - "optional": true - }, - { - "name": "restartLabel", - "type": "text", - "importance": "low", - "label": "Label for \"restart\" button", - "default": "Restart", - "common": true, - "optional": true - }, - { - "name": "summaryHeader", - "type": "text", - "importance": "low", - "label": "Summary header", - "default": "Summary", - "common": true, - "optional": true - }, - { - "name": "allInteractions", - "type": "text", - "importance": "low", - "label": "Translation for \"All interactions\"", - "default": "All interactions", - "common": true, - "optional": true - }, - { - "name": "unansweredInteractions", - "type": "text", - "importance": "low", - "label": "Translation for \"Unanswered interactions\"", - "default": "Unanswered interactions", - "common": true, - "optional": true - }, - { - "name": "scoreText", - "type": "text", - "importance": "low", - "label": "Score", - "description": "\"@score\" will be replaced with current score, and \"@maxscore\" will be replaced with max achievable score", - "default": "@score / @maxscore", - "common": true, - "optional": true - }, - { - "name": "leftOutOfTotalCompleted", - "type": "text", - "importance": "low", - "label": "Per page interactions completion", - "description": "\"@left\" will be replaced with remaining interactions, and \"@max\" will be replaced with total number of interactions on the page", - "default": "@left of @max interactions completed", - "common": true, - "optional": true - }, - { - "name": "noInteractions", - "type": "text", - "importance": "low", - "label": "Translation for \"No interactions\"", - "default": "No interactions", - "common": true, - "optional": true - }, - { - "name": "score", - "type": "text", - "importance": "low", - "label": "Translation for \"Score\"", - "default": "Score", - "common": true, - "optional": true - }, - { - "name": "summaryAndSubmit", - "type": "text", - "importance": "low", - "label": "Label for \"Summary & submit\" button", - "default": "Summary & submit", - "common": true, - "optional": true - }, - { - "name": "noChapterInteractionBoldText", - "type": "text", - "importance": "low", - "label": "Translation for \"You have not interacted with any pages.\"", - "default": "You have not interacted with any pages.", - "common": true, - "optional": true - }, - { - "name": "noChapterInteractionText", - "type": "text", - "importance": "low", - "label": "Translation for \"You have to interact with at least one page before you can see the summary.\"", - "default": "You have to interact with at least one page before you can see the summary.", - "common": true, - "optional": true - }, - { - "name": "yourAnswersAreSubmittedForReview", - "type": "text", - "importance": "low", - "label": "Translation for \"Your answers are submitted for review!\"", - "default": "Your answers are submitted for review!", - "common": true, - "optional": true - }, - { - "name": "bookProgress", - "type": "text", - "importance": "low", - "label": "Summary progress label", - "default": "Book progress", - "common": true, - "optional": true - }, - { - "name": "interactionsProgress", - "type": "text", - "importance": "low", - "label": "Interactions progress label", - "default": "Interactions progress", - "common": true, - "optional": true - }, - { - "name": "totalScoreLabel", - "type": "text", - "importance": "low", - "label": "Total score label", - "default": "Total score", - "common": true, - "optional": true - }, - { - "name": "a11y", - "type": "group", - "label": "Accessibility texts", - "common": true, - "fields": [ - { - "name": "progress", - "type": "text", - "label": "Page progress textual alternative", - "description": "An alternative text for the visual page progress. @page and @total variables available.", - "default": "Page @page of @total." - }, - { - "name": "menu", - "type": "text", - "label": "Label for expanding/collapsing navigation menu", - "default": "Toggle navigation menu" - } - ] - } -] diff --git a/H5P.InteractiveBook/build.sh b/H5P.InteractiveBook/build.sh deleted file mode 100644 index 6d5e1ae..0000000 --- a/H5P.InteractiveBook/build.sh +++ /dev/null @@ -1 +0,0 @@ -zip -r -X -D ../dist/H5P.InteractiveBook-1.3.h5p * --exclude build.sh diff --git a/H5P.InteractiveBook/h5p.json b/H5P.InteractiveBook/h5p.json deleted file mode 100644 index 3ace9aa..0000000 --- a/H5P.InteractiveBook/h5p.json +++ /dev/null @@ -1 +0,0 @@ -{"title":"Interactive Book","language":"und","mainLibrary":"H5P.InteractiveBook","embedTypes":["div"],"license":"U","defaultLanguage":"en","preloadedDependencies":[{"machineName":"H5P.Image","majorVersion":"1","minorVersion":"1"},{"machineName":"H5P.AdvancedText","majorVersion":"1","minorVersion":"1"},{"machineName":"H5P.Text","majorVersion":"1","minorVersion":"1"},{"machineName":"H5P.ImageHotspots","majorVersion":"1","minorVersion":"8"},{"machineName":"H5P.Transition","majorVersion":"1","minorVersion":"0"},{"machineName":"FontAwesome","majorVersion":"4","minorVersion":"5"},{"machineName":"H5P.Table","majorVersion":"1","minorVersion":"1"},{"machineName":"H5P.SingleChoiceSet","majorVersion":"1","minorVersion":"11"},{"machineName":"H5P.SoundJS","majorVersion":"1","minorVersion":"0"},{"machineName":"H5P.JoubelUI","majorVersion":"1","minorVersion":"3"},{"machineName":"Drop","majorVersion":"1","minorVersion":"0"},{"machineName":"Tether","majorVersion":"1","minorVersion":"0"},{"machineName":"H5P.FontIcons","majorVersion":"1","minorVersion":"0"},{"machineName":"H5P.Question","majorVersion":"1","minorVersion":"4"},{"machineName":"H5P.DragQuestion","majorVersion":"1","minorVersion":"13"},{"machineName":"jQuery.ui","majorVersion":"1","minorVersion":"10"},{"machineName":"H5P.Column","majorVersion":"1","minorVersion":"13"},{"machineName":"H5P.Video","majorVersion":"1","minorVersion":"5"},{"machineName":"flowplayer","majorVersion":"1","minorVersion":"0"},{"machineName":"H5P.Blanks","majorVersion":"1","minorVersion":"12"},{"machineName":"H5P.TextUtilities","majorVersion":"1","minorVersion":"3"},{"machineName":"H5P.DragText","majorVersion":"1","minorVersion":"8"},{"machineName":"H5P.MultiChoice","majorVersion":"1","minorVersion":"14"},{"machineName":"EmbeddedJS","majorVersion":"1","minorVersion":"0"},{"machineName":"H5P.InteractiveBook","majorVersion":"1","minorVersion":"3"}]} \ No newline at end of file From a5aa16d0e876d19c4e070cbcf33db55943a92c2b Mon Sep 17 00:00:00 2001 From: rfohlin Date: Tue, 18 Jan 2022 13:22:24 +0100 Subject: [PATCH 4/5] Some improved styling for audio player --- .gitignore | 2 +- library.json | 2 +- src/styles/_pagecontent.scss | 18 ++++++++++++++++++ 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 274dc6a..7f8e9fb 100644 --- a/.gitignore +++ b/.gitignore @@ -44,5 +44,5 @@ jspm_packages src/styles/css/main.css #Temp dev folder -H5P.InteractiveBook/ +dev/ diff --git a/library.json b/library.json index ed6390e..e4251eb 100644 --- a/library.json +++ b/library.json @@ -3,7 +3,7 @@ "description": "An interactive book which displays content in pages and sections", "majorVersion": 1, "minorVersion": 3, - "patchVersion": 81, + "patchVersion": 6, "runnable": 1, "fullscreen": 1, "author": "Joubel", diff --git a/src/styles/_pagecontent.scss b/src/styles/_pagecontent.scss index bc248cd..c1f91a4 100644 --- a/src/styles/_pagecontent.scss +++ b/src/styles/_pagecontent.scss @@ -104,3 +104,21 @@ height: 596px; } } + +/* Some extra styling for minimalistic H5P.Audio related components */ +.h5p-column-content { + &.h5p-audio-wrapper { + .h5p-audio { + margin: 1em; + } + + .h5p-audio-minimal-button { + width: 48px; + height: 48px; + margin: 1em; + &:before { + font-size: 18px; + } + } + } +} \ No newline at end of file From 26b005d566324906b745125a70a9be9127221af8 Mon Sep 17 00:00:00 2001 From: rfohlin Date: Tue, 18 Jan 2022 13:43:22 +0100 Subject: [PATCH 5/5] Removed some redundant dependencies from lib and semantics --- library.json | 7 +------ semantics.json | 8 -------- 2 files changed, 1 insertion(+), 14 deletions(-) diff --git a/library.json b/library.json index e4251eb..56a3d82 100644 --- a/library.json +++ b/library.json @@ -3,7 +3,7 @@ "description": "An interactive book which displays content in pages and sections", "majorVersion": 1, "minorVersion": 3, - "patchVersion": 6, + "patchVersion": 7, "runnable": 1, "fullscreen": 1, "author": "Joubel", @@ -32,11 +32,6 @@ "machineName": "H5P.JoubelUI", "majorVersion": 1, "minorVersion": 3 - }, - { - "machineName": "H5P.Audio", - "majorVersion": 1, - "minorVersion": 4 } ], "editorDependencies": [ diff --git a/semantics.json b/semantics.json index 1107f71..931aa5d 100644 --- a/semantics.json +++ b/semantics.json @@ -86,14 +86,6 @@ "options": [ "H5P.Column 1.13" ] - }, - { - "label": "Page audio", - "name": "page_audio", - "type": "library", - "options": [ - "H5P.Audio 1.4" - ] } ] }