From 68ac89da58b16b8090a9fdf9b13b030a35fb98d8 Mon Sep 17 00:00:00 2001 From: Andy H3 Date: Thu, 7 Dec 2017 14:45:37 +0700 Subject: [PATCH] Update text.php Corrected typo --- include/text.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/text.php b/include/text.php index b2e0ac30d4..3fce67fa1c 100644 --- a/include/text.php +++ b/include/text.php @@ -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')),