From af17e56b6a6d0e1dd3bc02cc12be5ec853524703 Mon Sep 17 00:00:00 2001 From: wanghongjun <1445693971@qq.com> Date: Wed, 16 Sep 2026 16:09:47 +0800 Subject: [PATCH] =?UTF-8?q?=E8=8B=B1=E6=96=87=E6=98=BE=E7=A4=BA=E6=97=B6?= =?UTF-8?q?=E9=97=B4=E5=8D=95=E4=BD=8D=E5=8A=A0=E7=A9=BA=E6=A0=BC2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/common.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/common.php b/app/common.php index 3526e80..83ae061 100644 --- a/app/common.php +++ b/app/common.php @@ -167,17 +167,17 @@ if (!function_exists('get_time_difference_str')) { ); } if (!empty($difference['hours']) || !empty($value)) { - $value .= $difference['hours'] . $str . __( + $value .= $str . $difference['hours'] . $str . __( 'controller.parking_space.hours' ); } if (!empty($difference['minutes']) || !empty($value)) { - $value .= $difference['minutes'] . $str . __( + $value .= $str . $difference['minutes'] . $str . __( 'controller.parking_space.minutes' ); } if (!empty($difference['seconds']) || !empty($value)) { - $value .= $difference['seconds'] . $str . __( + $value .= $str . $difference['seconds'] . $str . __( 'controller.parking_space.seconds' ); } @@ -222,7 +222,7 @@ if (!function_exists('get_minutes')) { 'controller.parking_space.minutes' ); $hoursStr = $hours . $str . __('controller.parking_space.hours'); - return $hoursStr . $minutesStr; + return $hoursStr . $str . $minutesStr; } } }