Fix capitalisation

This commit is contained in:
Jay Trees 2022-03-28 10:19:32 +02:00
parent fae1913284
commit cf0e0d2646
3 changed files with 4 additions and 4 deletions

View file

@ -33,7 +33,7 @@ $(function() {
}
/**
* fulfil wish
* Fulfil wish
*/
$(document).on('click', '.ui.button.fulfil', function() {
var button = $(this);

View file

@ -156,10 +156,10 @@ class Wish
<div class="extra content buttons">
<?php if (!$userIsCurrent) { ?>
<a class="ui small primary labeled icon button fulfil"
title="<?= __('fulfil wish') ?>"
title="<?= __('Fulfil wish') ?>"
>
<i class="gift icon"></i>
<?= __('fulfil wish') ?>
<?= __('Fulfil wish') ?>
</a>
<?php } ?>

View file

@ -53,7 +53,7 @@ $page->navigation();
<h2 class="ui header"><?= __('What to do?') ?></h2>
<p><?= sprintf(
__('If you found a wish you would like to fulfil, click the %s button and it will become unavailable for others.'),
'<span class="ui primary tiny horizontal label"><i class="gift icon"></i> ' . __('fulfil wish') . '</span>'
'<span class="ui primary tiny horizontal label"><i class="gift icon"></i> ' . __('Fulfil wish') . '</span>'
) ?></p>
</div>
</div>