Skip to content

Commit

Permalink
Merge branch 'main' into N21-939-assign-groups-to-course
Browse files Browse the repository at this point in the history
  • Loading branch information
MBergCap committed Oct 13, 2023
2 parents 560478c + 0866f9b commit a95d9e6
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 11 deletions.
3 changes: 1 addition & 2 deletions locales/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -992,8 +992,7 @@
"tab_label": {
"groups": "Gruppen",
"tasks": "Aufgaben",
"tools": "Tools (neu)",
"oldTools": "Tools",
"tools": "Tools",
"oldTopics": "Themen",
"topics": "Lerninhalte"
},
Expand Down
3 changes: 1 addition & 2 deletions locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -992,8 +992,7 @@
"tab_label": {
"groups": "Groups",
"tasks": "Tasks",
"tools": "Tools (new)",
"oldTools": "Tools",
"tools": "Tools",
"oldTopics": "Topics",
"topics": "Learning content"
},
Expand Down
3 changes: 1 addition & 2 deletions locales/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -992,8 +992,7 @@
"tab_label": {
"groups": "Grupos",
"tasks": "Tareas",
"tools": "Herramientas (nuevo)",
"oldTools": "Herramientas",
"tools": "Herramientas",
"oldTopics": "Temas",
"topics": "Contenidos de aprendizaje"
},
Expand Down
3 changes: 1 addition & 2 deletions locales/uk.json
Original file line number Diff line number Diff line change
Expand Up @@ -315,8 +315,7 @@
"tab_label": {
"groups": "Групи",
"tasks": "Завдання",
"tools": "Інструменти (новий)",
"oldTools": "Інструменти",
"tools": "Інструменти",
"oldTopics": "Теми",
"topics": "Зміст навчання"
},
Expand Down
2 changes: 1 addition & 1 deletion views/courses/course.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
{{#if (getConfig "FEATURE_LTI_TOOLS_TAB_ENABLED")}}
<button class="tab" data-testid="tools" data-tab="js-tools" type="button">
<i class="mdi mdi-puzzle-outline" aria-hidden="true"></i>
<span class="text">{{$t "courses._course.tab_label.oldTools"}}</span>
<span class="text">{{$t "courses._course.tab_label.tools"}}</span>
</button>
{{/if}}
<button class="tab" data-testid="groups" data-tab="js-groups" type="button">
Expand Down
4 changes: 2 additions & 2 deletions views/courses/edit-course.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@
{{#ifConfig "FEATURE_CTL_TOOLS_TAB_ENABLED" true}}
{{#ifConfig "FEATURE_VIDEOCONFERENCE_ENABLED" true}}
<div class="form-group">
<input id="activateConf" type="checkbox" name="videoconference" value="true" data-testid="videoconf_checkbox" {{#inArray "videoconference" @root.course.features}}checked{{/inArray}} {{#inArray "videoconference" @root.schoolData.features}} {{else}} disabled {{/inArray}}>
<label for="activateConf">{{$t "courses._course.edit.label.activateVideoConferences"}}</label>
<input id="activateConf" type="checkbox" name="videoconference" value="true" data-testid="videoconf_checkbox" {{#if @root.course.isArchived}}disabled{{/if}} {{#inArray "videoconference" @root.course.features}}checked{{/inArray}} {{#inArray "videoconference" @root.schoolData.features}} {{else}} disabled {{/inArray}}>
<label for="activateConf">{{$t "courses._course.edit.label.activateVideoConferences"}}</label>
{{#inArray "videoconference" @root.schoolData.features}}
{{else}}
<small class="form-text text-muted">
Expand Down

0 comments on commit a95d9e6

Please sign in to comment.