Skip to content

Commit

Permalink
Fix major translations (#925)
Browse files Browse the repository at this point in the history
* Fix major translations

* Fix major translations

* fix string in ConfigOption
  • Loading branch information
ssrahn authored Feb 7, 2024
1 parent c41df15 commit 450e6f5
Show file tree
Hide file tree
Showing 24 changed files with 926 additions and 681 deletions.
2 changes: 1 addition & 1 deletion courseware/vueapp/components/CoursewareSearchBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
ref="searchbar"
v-on:keyup.enter="doSearch"
v-model="inputSearch"
placeholder="Suche..."
:placeholder="$gettext('Suche...')"
@input="doLiveSearch"
/>
</li>
Expand Down
2 changes: 1 addition & 1 deletion lib/Models/ScheduleHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public static function getSemesterList($seminar_id)
$end = $course->duration_time == -1 ? PHP_INT_MAX : $course->end_time;
$selectable_semesters = $selectable_semesters->findBy('beginn', [$start, $end], '>=<=')->toArray();

$selectable_semesters[] = ['name' => 'Alle Semester', 'id' => 'all'];
$selectable_semesters[] = ['name' => _('Alle Semester'), 'id' => 'all'];

$selectable_semesters = array_values(array_reverse($selectable_semesters));

Expand Down
Binary file modified locale/en/LC_MESSAGES/opencast.mo
Binary file not shown.
Loading

0 comments on commit 450e6f5

Please sign in to comment.