Fix capitalisation
This commit is contained in:
parent
fae1913284
commit
cf0e0d2646
3 changed files with 4 additions and 4 deletions
|
@ -33,7 +33,7 @@ $(function() {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* fulfil wish
|
* Fulfil wish
|
||||||
*/
|
*/
|
||||||
$(document).on('click', '.ui.button.fulfil', function() {
|
$(document).on('click', '.ui.button.fulfil', function() {
|
||||||
var button = $(this);
|
var button = $(this);
|
||||||
|
|
|
@ -156,10 +156,10 @@ class Wish
|
||||||
<div class="extra content buttons">
|
<div class="extra content buttons">
|
||||||
<?php if (!$userIsCurrent) { ?>
|
<?php if (!$userIsCurrent) { ?>
|
||||||
<a class="ui small primary labeled icon button fulfil"
|
<a class="ui small primary labeled icon button fulfil"
|
||||||
title="<?= __('fulfil wish') ?>"
|
title="<?= __('Fulfil wish') ?>"
|
||||||
>
|
>
|
||||||
<i class="gift icon"></i>
|
<i class="gift icon"></i>
|
||||||
<?= __('fulfil wish') ?>
|
<?= __('Fulfil wish') ?>
|
||||||
</a>
|
</a>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
||||||
|
|
|
@ -53,7 +53,7 @@ $page->navigation();
|
||||||
<h2 class="ui header"><?= __('What to do?') ?></h2>
|
<h2 class="ui header"><?= __('What to do?') ?></h2>
|
||||||
<p><?= sprintf(
|
<p><?= sprintf(
|
||||||
__('If you found a wish you would like to fulfil, click the %s button and it will become unavailable for others.'),
|
__('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>
|
) ?></p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue