Skip to content

Commit

Permalink
closes #1726 gettext ending in period
Browse files Browse the repository at this point in the history
  • Loading branch information
DawoudIO committed Feb 6, 2017
1 parent 4f0307b commit 0d8f589
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/CartView.php
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ function codename()
<!-- BEGIN CART LISTING -->
<div class="box box-primary">
<div class="box-header with-border">
<h3 class="box-title"><?= gettext('Your cart contains').' '.$iNumPersons.' '.gettext('persons from').' '.$iNumFamilies.' '.gettext('families.') ?></h3>
<h3 class="box-title"><?= gettext('Your cart contains').' '.$iNumPersons.' '.gettext('persons from').' '.$iNumFamilies.' '.gettext('families') ?>.</h3>
</div>
<div class="box-body">
<table class="table table-hover">
Expand Down
2 changes: 1 addition & 1 deletion src/Include/Functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ function addslashes_deep($value)
}

if (isset($_GET['AllPDFsEmailed'])) {
$sGlobalMessage = gettext('PDFs successfully emailed ').$_GET['AllPDFsEmailed'].' '.gettext('families.');
$sGlobalMessage = gettext('PDFs successfully emailed ').$_GET['AllPDFsEmailed'].' '.gettext('families').".";
}

if (isset($_GET['PDFEmailed'])) {
Expand Down

0 comments on commit 0d8f589

Please sign in to comment.