diff --git a/app/views/course/topics/edit.php b/app/views/course/topics/edit.php index 2180060678e6c74fdc57d52783398d7948afc674..0faa486ce71c87f2fcc668cf90634e31475cbdb9 100644 --- a/app/views/course/topics/edit.php +++ b/app/views/course/topics/edit.php @@ -39,7 +39,7 @@ <label> <? if ($topic->forum_thread_url) : ?> <?= Icon::create('accept', Icon::ROLE_ACCEPT)->asImg(['class' => 'text-bottom']) ?> - <?= _('Forenthema vorhanden ') ?> + <?= _('Forenthema vorhanden') ?> <? else : ?> <input type="checkbox" name="forumthread" id="topic_forumthread" value="1"> <?= _('Forenthema anlegen') ?> @@ -77,13 +77,13 @@ </fieldset> <footer data-dialog-button> <div class="button-group"> - <?= \Studip\Button::createAccept(_("Speichern")) ?> + <?= \Studip\Button::createAccept(_('Speichern')) ?> <? if (!$topic->isNew()) : ?> <?= \Studip\LinkButton::create( _('Löschen'), $controller->url_for('course/topics/delete/' . $topic->getId()), - ['data-confirm' => _('Wirklich löschen?')] + ['data-confirm' => _('Das Thema wirklich löschen?')] ) ?> <? endif ?> </div> diff --git a/app/views/course/topics/index.php b/app/views/course/topics/index.php index 39635d17586422698a3fe913452ab907669f354c..b0f5f48aadb1e924fdf9c0adf5ebe1032f614747 100644 --- a/app/views/course/topics/index.php +++ b/app/views/course/topics/index.php @@ -6,8 +6,8 @@ </colgroup> <thead> <tr> - <th><?= _("Thema") ?></th> - <th><?= _("Termine") ?></th> + <th><?= _('Thema') ?></th> + <th><?= _('Termine') ?></th> </tr> </thead> <tbody> @@ -43,11 +43,11 @@ <table class="default nohover"> <tbody> <tr> - <td><strong><?= _("Beschreibung") ?></strong></td> + <td><strong><?= _('Beschreibung') ?></strong></td> <td><?= formatReady($topic['description']) ?></td> </tr> <tr> - <td><strong><?= _("Materialien") ?></strong></td> + <td><strong><?= _('Materialien') ?></strong></td> <td> <? $material = false ?> <ul class="clean"> @@ -58,7 +58,7 @@ 'dispatch.php/course/files/index/' . $folder->id ) ?>"> <?= $folder->getTypedFolder()->getIcon('clickable')->asImg(['class' => "text-bottom"]) ?> - <?= _("Dateiordner") ?> + <?= _('Dateiordner') ?> </a> </li> <? $material = true ?> @@ -68,14 +68,14 @@ <li> <a href="<?= URLHelper::getLink($link_to_thread) ?>"> <?= Icon::create('forum', 'clickable')->asImg(['class' => "text-bottom"]) ?> - <?= _("Thema im Forum") ?> + <?= _('Thema im Forum') ?> </a> </li> <? $material = true ?> <? endif ?> </ul> <? if (!$material) : ?> - <?= _("Keine Materialien zu dem Thema vorhanden") ?> + <?= _('Keine Materialien zu dem Thema vorhanden') ?> <? endif ?> </td> </tr> @@ -93,12 +93,12 @@ <?= Studip\Button::create( _('Löschen'), 'delete', - ['data-confirm' => _('Wirklich löschen?')] + ['data-confirm' => _('Das Thema wirklich löschen?')] ) ?> </form> <? if (!$cancelled_dates_locked && $topic->dates->count()) : ?> - <?= \Studip\LinkButton::create(_("Alle Termine ausfallen lassen"), URLHelper::getURL("dispatch.php/course/cancel_dates", ['issue_id' => $topic->getId()]), ['data-dialog' => '']) ?> + <?= \Studip\LinkButton::create(_('Alle Termine ausfallen lassen'), URLHelper::getURL("dispatch.php/course/cancel_dates", ['issue_id' => $topic->getId()]), ['data-dialog' => '']) ?> <? endif ?> <span class="button-group">