Skip to content

Commit ada615d

Browse files
authored
BC-8795 - Add possibility to play audio in folder (#3709)
1 parent 861e592 commit ada615d

File tree

22 files changed

+726
-658
lines changed

22 files changed

+726
-658
lines changed

config/webpack/webpack.common.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@ module.exports = {
173173
"@feature-folder": getDir("src/modules/feature/folder"),
174174
"@icons": getDir("src/components/icons"),
175175
"@ui-alert": getDir("src/modules/ui/alert"),
176+
"@ui-audio-player": getDir("src/modules/ui/audio-player"),
176177
"@ui-board": getDir("src/modules/ui/board"),
177178
"@ui-breadcrumbs": getDir("src/modules/ui/breadcrumbs"),
178179
"@ui-chip": getDir("src/modules/ui/chip"),

src/locales/de.ts

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -211,12 +211,6 @@ export default {
211211
"common.words.topic": "Thema",
212212
"common.words.topics": "Themen",
213213
"common.words.yes": "Ja",
214-
"component.cardElement.fileElement.audioPlayer.pause": "Anhalten",
215-
"component.cardElement.fileElement.audioPlayer.play": "Abspielen",
216-
"component.cardElement.fileElement.audioPlayer.slider":
217-
"Audio Schieberegler für Fortschritt",
218-
"component.cardElement.fileElement.audioPlayer.speed.normal": "Normal",
219-
"component.cardElement.fileElement.audioPlayer.speed": "Geschwindigkeitsmenü",
220214
"components.administration.adminMigrationSection.description.firstPart":
221215
"Bei der Migration wird das Anmeldesystem der Schüler:innen und Lehrkräfte zu moin.schule gewechselt. Die zu den betroffenen Accounts gehörenden Daten bleiben erhalten.",
222216
"components.administration.adminMigrationSection.description.secondPart":
@@ -428,6 +422,11 @@ export default {
428422
"components.atoms.VCustomChipTimeRemaining.hintHoursShort": "h",
429423
"components.atoms.VCustomChipTimeRemaining.hintMinShort": "min",
430424
"components.atoms.VCustomChipTimeRemaining.hintMinutes": "Minute | Minuten",
425+
"components.audioPlayer.pause": "Anhalten",
426+
"components.audioPlayer.play": "Abspielen",
427+
"components.audioPlayer.slider": "Audio Schieberegler für Fortschritt",
428+
"components.audioPlayer.speed": "Geschwindigkeitsmenü",
429+
"components.audioPlayer.speed.normal": "Normal",
431430
"components.base.BaseIcon.error":
432431
"Das Icon aus dieser Quelle konnte leider nicht geladen werden. Falls Sie Microsoft Edge verwenden, stellen Sie bitte sicher, dass Sie die neuste Version verwenden.",
433432
"components.base.showPassword": "Passwort anzeigen",

src/locales/en.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -211,11 +211,6 @@ export default {
211211
"common.words.topics": "Topics",
212212
"common.words.yes": "Yes",
213213
"common.words.export": "Course export is downloading",
214-
"component.cardElement.fileElement.audioPlayer.pause": "Pause",
215-
"component.cardElement.fileElement.audioPlayer.play": "Play",
216-
"component.cardElement.fileElement.audioPlayer.slider": "Audio slider",
217-
"component.cardElement.fileElement.audioPlayer.speed.normal": "Normal",
218-
"component.cardElement.fileElement.audioPlayer.speed": "Speed Menu",
219214
"components.administration.adminMigrationSection.description.firstPart":
220215
"During the migration, the registration system for students and teachers is changed to moin.schule. The data belonging to the affected accounts will be preserved.",
221216
"components.administration.adminMigrationSection.description.secondPart":
@@ -426,6 +421,11 @@ export default {
426421
"components.atoms.VCustomChipTimeRemaining.hintHoursShort": "h",
427422
"components.atoms.VCustomChipTimeRemaining.hintMinShort": "min",
428423
"components.atoms.VCustomChipTimeRemaining.hintMinutes": "minute | minutes",
424+
"components.audioPlayer.pause": "Pause",
425+
"components.audioPlayer.play": "Play",
426+
"components.audioPlayer.slider": "Audio slider",
427+
"components.audioPlayer.speed": "Speed Menu",
428+
"components.audioPlayer.speed.normal": "Normal",
429429
"components.base.BaseIcon.error":
430430
"error loading icon {icon} from {source}. It might be not available or you are using the legacy Edge browser.",
431431
"components.base.showPassword": "Show password",

src/locales/es.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -213,11 +213,6 @@ export default {
213213
"common.words.topics": "Temas",
214214
"common.words.yes": "Sí",
215215
"common.words.export": "La exportación del curso se está descargando",
216-
"component.cardElement.fileElement.audioPlayer.pause": "Pausa",
217-
"component.cardElement.fileElement.audioPlayer.play": "Reproducir",
218-
"component.cardElement.fileElement.audioPlayer.slider": "Control deslizante",
219-
"component.cardElement.fileElement.audioPlayer.speed.normal": "Normal",
220-
"component.cardElement.fileElement.audioPlayer.speed": "Menú de velocidad",
221216
"components.administration.adminMigrationSection.description.firstPart":
222217
"Durante la migración se cambia el sistema de registro de alumnos y profesores a moin.schule. Los datos pertenecientes a las cuentas afectadas se conservarán.",
223218
"components.administration.adminMigrationSection.description.secondPart":
@@ -432,6 +427,11 @@ export default {
432427
"components.atoms.VCustomChipTimeRemaining.hintHoursShort": "h",
433428
"components.atoms.VCustomChipTimeRemaining.hintMinShort": "min",
434429
"components.atoms.VCustomChipTimeRemaining.hintMinutes": "minuto | minutos",
430+
"components.audioPlayer.pause": "Pausa",
431+
"components.audioPlayer.play": "Reproducir",
432+
"components.audioPlayer.slider": "Control deslizante",
433+
"components.audioPlayer.speed": "Menú de velocidad",
434+
"components.audioPlayer.speed.normal": "Normal",
435435
"components.base.BaseIcon.error":
436436
"Error al cargar el icono {icon} de {source}. Es posible que no esté disponible o que estés utilizando el navegador Edge heredado.",
437437
"components.base.showPassword": "Mostrar contraseña",

src/locales/uk.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -215,11 +215,6 @@ export default {
215215
"common.words.topics": "теми",
216216
"common.words.yes": "Так",
217217
"common.words.export": "Завантажується експорт курсу",
218-
"component.cardElement.fileElement.audioPlayer.pause": "пауза",
219-
"component.cardElement.fileElement.audioPlayer.play": "грати",
220-
"component.cardElement.fileElement.audioPlayer.slider": "повзунок",
221-
"component.cardElement.fileElement.audioPlayer.speed.normal": "нормальний",
222-
"component.cardElement.fileElement.audioPlayer.speed": "швидке меню",
223218
"components.administration.adminMigrationSection.description.firstPart":
224219
"Під час міграції система реєстрації студентів і викладачів змінена на moin.schule. Дані відповідних облікових записів буде збережено.",
225220
"components.administration.adminMigrationSection.description.secondPart":
@@ -436,6 +431,11 @@ export default {
436431
"components.atoms.VCustomChipTimeRemaining.hintMinShort": "хв",
437432
"components.atoms.VCustomChipTimeRemaining.hintMinutes":
438433
"хвилина | хвилини (хвилин)",
434+
"components.audioPlayer.pause": "пауза",
435+
"components.audioPlayer.play": "грати",
436+
"components.audioPlayer.slider": "повзунок",
437+
"components.audioPlayer.speed": "швидке меню",
438+
"components.audioPlayer.speed.normal": "нормальний",
439439
"components.base.BaseIcon.error":
440440
"помилка завантаження значка {icon} з {source}. Можливо, він недоступний або ви використовуєте застарілий браузер Edge.",
441441
"components.base.showPassword": "Показати пароль",

0 commit comments

Comments
 (0)