From f51d4af2b6fa55f9f0e689f7efcdc5e1cf968132 Mon Sep 17 00:00:00 2001 From: Kijin Sung Date: Mon, 7 Mar 2016 10:45:48 +0900 Subject: [PATCH] Fix incorrect unit display in English --- common/lang/en.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/lang/en.php b/common/lang/en.php index 7a5942434..573202aab 100644 --- a/common/lang/en.php +++ b/common/lang/en.php @@ -179,8 +179,8 @@ $lang->private = 'private'; $lang->etc = 'Others'; $lang->unit_sec = 'sec'; $lang->unit_min = 'min'; -$lang->unit_hour = 'hr'; -$lang->unit_day = 'th'; +$lang->unit_hour = 'hour'; +$lang->unit_day = 'day'; $lang->unit_month = 'month'; $lang->unit_year = 'year'; $lang->unit_count = 'count';