Improve localisation

This commit is contained in:
grandeljay 2022-04-26 10:34:47 +02:00
parent 9736371270
commit 9b6b06de15
2 changed files with 15 additions and 2 deletions

View file

@ -115,7 +115,15 @@ $page->navigation();
<div class="ui segment">
<h2 class="ui header"><?= __("What's new") ?></h2>
<p><?= sprintf(__('Check out the %s for a list changes'), '<a href="/CHANGELOG.md">' . __('Changelog') . '</a> (<i class="markdown icon"></i>)') ?></p>
<p>
<?php
printf(
/** TRANSLATORS: %s: Changelog */
__('Check out the %s for a list changes.'),
'<a href="/CHANGELOG.md">' . __('Changelog') . '</a> (<i class="markdown icon"></i>)'
);
?>
</p>
</div>
</div>
</div>

View file

@ -262,7 +262,12 @@ $page->navigation();
<i class="times icon"></i>
<div class="content">
<div class="title"><?= __('Special') ?></div>
<div class="title">
<?php
/** TRANSLATORS: A special character (for a password) */
__('Special');
?>
</div>
<div class="description"><?= __('Contains special characters.') ?></div>
</div>