|
@@ -878,8 +878,8 @@ function formatTimeDifference(timestamp) {
|
|
|
hours = Math.round(totalHours % 24); // 剩余小时四舍五入
|
|
|
|
|
|
const result = [];
|
|
|
- if (days > 0) result.push(`${days}天`);
|
|
|
- if (hours > 0 || result.length === 0) result.push(`${hours}小时`);
|
|
|
+ if (days > 0) result.push(`${days + i18n.t('天')}`);
|
|
|
+ if (hours > 0 || result.length === 0) result.push(`${hours + i18n.t('小时')}`);
|
|
|
return result.join("");
|
|
|
|
|
|
} else {
|
|
@@ -896,9 +896,9 @@ function formatTimeDifference(timestamp) {
|
|
|
}
|
|
|
days = 0;
|
|
|
if (hours) {
|
|
|
- return `${hours}小时 ${minutes}分钟`;
|
|
|
+ return `${hours + i18n.t('小时')} ${minutes + i18n.t('分钟')}`;
|
|
|
}else {
|
|
|
- return `${minutes}分钟`;
|
|
|
+ return `${minutes + i18n.t('分钟')}`;
|
|
|
}
|
|
|
|
|
|
}
|