Skip to content

Commit d94851f

Browse files
committed
fix
1 parent 811c948 commit d94851f

4 files changed

Lines changed: 6 additions & 4 deletions

File tree

src/locales/ja-JP/translation.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
"delete_current_logs": "現在のログを削除",
108108
"clear_completed": "クリア完了",
109109
"clear_logs": "ログをクリア",
110-
"to": "",
110+
"to": "",
111111
"now": "直近",
112112
"total_logs": "合計{{length}}件のログが見つかりました",
113113
"filtered_logs": "フィルタリング後{{length}}件のログ",

src/locales/zh-CN/translation.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
"delete_current_logs": "删除当前日志",
108108
"clear_completed": "清空完成",
109109
"clear_logs": "清空日志",
110-
"to": "",
110+
"to": "",
111111
"now": "当前",
112112
"total_logs": "共查询到 {{length}} 条日志",
113113
"filtered_logs": "筛选后 {{length}} 条日志",

src/locales/zh-TW/translation.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
"delete_current_logs": "刪除目前紀錄",
108108
"clear_completed": "清除完成",
109109
"clear_logs": "清除紀錄",
110-
"to": "",
110+
"to": "",
111111
"now": "現在",
112112
"total_logs": "共查詢到 {{length}} 筆紀錄",
113113
"filtered_logs": "篩選後 {{length}} 條紀錄",

src/pages/options/routes/Logger.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,9 @@ function LoggerPage() {
341341
borderRadius: "4px",
342342
}}
343343
>
344-
{formatUnixTime(startTime)} {t("to")} {isNow ? t("now") : formatUnixTime(endTime)}
344+
{formatUnixTime(startTime)}
345+
{t("to")}
346+
{isNow ? `${formatUnixTime(endTime)} (${t("now")})` : formatUnixTime(endTime)}
345347
</Typography.Text>
346348
<Typography.Text
347349
style={{

0 commit comments

Comments
 (0)