From: Nik Okuntseff Date: Wed, 31 Oct 2018 22:06:44 +0000 (+0000) Subject: Dutch translation improved. X-Git-Tag: timetracker_1.19-1~740 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=3b4f6b89a71f50d89d816129b27ee819a314620e;p=timetracker.git Dutch translation improved. --- diff --git a/WEB-INF/resources/nl.lang.php b/WEB-INF/resources/nl.lang.php index 78dc1a20..5225d676 100644 --- a/WEB-INF/resources/nl.lang.php +++ b/WEB-INF/resources/nl.lang.php @@ -93,9 +93,7 @@ $i18n_key_words = array( 'error.no_groups' => 'Uw database is leeg. Meld je aan als admin en maak een nieuw groep.', 'error.upload' => 'Fout bij het uploaden van het bestand.', 'error.range_locked' => 'Datums zijn geblokkeerd.', -'error.mail_send' => 'Fout bij het versturen van een e-mailbericht.', -// TODO: improve the translation above by adding MAIL_SMTP_DEBUG part. -// 'error.mail_send' => 'Error sending mail. Use MAIL_SMTP_DEBUG for diagnostics.', +'error.mail_send' => 'Fout bij het versturen van een e-mailbericht. Gebruik MAIL_SMTP_DEBUG om het probleem te diagnosticeren', 'error.no_email' => 'Geen e-mailadres bekend voor dit account.', 'error.uncompleted_exists' => 'Niet afgeronde invoer bestaat al. Sluit of verwijder deze.', 'error.goto_uncompleted' => 'Ga naar onvolledige invoer.', diff --git a/WEB-INF/templates/footer.tpl b/WEB-INF/templates/footer.tpl index 996c8dfc..c92fd1a9 100644 --- a/WEB-INF/templates/footer.tpl +++ b/WEB-INF/templates/footer.tpl @@ -12,7 +12,7 @@
-
 Anuko Time Tracker 1.18.04.4339 | Copyright © Anuko | +  Anuko Time Tracker 1.18.04.4340 | Copyright © Anuko | {$i18n.footer.credits} | {$i18n.footer.license} | {$i18n.footer.improve} diff --git a/topdf.php b/topdf.php index 23f29d50..15ac1ee9 100644 --- a/topdf.php +++ b/topdf.php @@ -64,14 +64,15 @@ $totals_only = ($bean->getAttribute('chtotalsonly') == '1'); // Obtain items for report. $options = ttReportHelper::getReportOptions($bean); +$grouping = ttReportHelper::grouping($options); if (!$totals_only) $items = ttReportHelper::getItems($options); // Individual entries. -if ($totals_only || ttReportHelper::grouping($options)) +if ($totals_only || $grouping) $subtotals = ttReportHelper::getSubtotals($options); // Subtotals for groups of items. $totals = ttReportHelper::getTotals($options); // Totals for the entire report. // Assign variables that are used to print subtotals. -if ($items && 'no_grouping' != $group_by1) { +if ($items && $grouping) { $print_subtotals = true; $first_pass = true; $prev_grouped_by = '';