Skip to content
Snippets Groups Projects
Commit 7be266dc authored by Moritz Strohm's avatar Moritz Strohm
Browse files

views/my_tandems/pairs: use correct translation domain

parent e638e61f
No related branches found
No related tags found
No related merge requests found
...@@ -78,11 +78,11 @@ ...@@ -78,11 +78,11 @@
$pair->offer->user_id == $user->id $pair->offer->user_id == $user->id
? ($pair->request->user ? ($pair->request->user
? htmlReady($pair->request->user->getFullName()) ? htmlReady($pair->request->user->getFullName())
: _('unbekannt') : dgettext('TandemPlugin', 'unbekannt')
) )
: ($pair->offer->user : ($pair->offer->user
? htmlReady($pair->offer->user->getFullName()) ? htmlReady($pair->offer->user->getFullName())
: _('unbekannt') : dgettext('TandemPlugin', 'unbekannt')
) )
) ?>', function(){window.location = '<?= $href ?>';}, STUDIP.Dialog.close); return false;"> ) ?>', function(){window.location = '<?= $href ?>';}, STUDIP.Dialog.close); return false;">
<?= Icon::create('trash', 'clickable')->asImg('20px', ['class' => 'text-bottom']) ?> <?= Icon::create('trash', 'clickable')->asImg('20px', ['class' => 'text-bottom']) ?>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment