]> git.mxchange.org Git - friendica.git/commitdiff
Update text.php
authorAndy H3 <andy@hubup.pro>
Thu, 7 Dec 2017 07:45:37 +0000 (14:45 +0700)
committerGitHub <noreply@github.com>
Thu, 7 Dec 2017 07:45:37 +0000 (14:45 +0700)
Corrected typo

include/text.php

index b2e0ac30d46397a787acdd59ff151d67bde417e4..3fce67fa1c3502703257c0c9326b0a945bd33d80 100644 (file)
@@ -1178,7 +1178,7 @@ function day_translate($s) {
  */
 function day_short_translate($s) {
        $ret = str_replace(array('Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'),
-               array(t('Mon'), t('Tue'), t('Wed'), t('Thu'), t('Fri'), t('Sat'), t('Sund')),
+               array(t('Mon'), t('Tue'), t('Wed'), t('Thu'), t('Fri'), t('Sat'), t('Sun')),
                $s);
        $ret = str_replace(array('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov','Dec'),
                array(t('Jan'), t('Feb'), t('Mar'), t('Apr'), t('May'), ('Jun'), t('Jul'), t('Aug'), t('Sep'), t('Oct'), t('Nov'), t('Dec')),