Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"previousYear": "Previous year"
},
"noData": "No data available",
"noFailedRuns": "No failed runs",
"noRuns": "No runs",
"totalRuns": "Total Runs",
"week": "Week {{weekNumber}}",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"backfill": {
"affected_one": "將會觸發 1 次執行。",
"affected_other": "將會觸發 {{count}} 次執行。",
"affectedNone": "沒有符合條件的執行。",
"affectedNone": "無符合條件的執行。",
"allRuns": "所有執行",
"backwards": "反向執行",
"dateRange": "日期範圍",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"hourly": "每小時",
"legend": {
"less": "較少",
"mixed": "混合",
"more": "較多"
},
"navigation": {
Expand All @@ -19,7 +20,8 @@
"previousYear": "上一年"
},
"noData": "沒有可用的資料",
"noRuns": "沒有執行",
"noFailedRuns": "無失敗的執行",
"noRuns": "無執行",
"totalRuns": "總執行數",
"week": "第 {{weekNumber}} 週",
"weekdays": {
Expand Down Expand Up @@ -62,7 +64,7 @@
"tooltip": "按下 {{hotkey}} 進入全螢幕"
},
"info": "INFO",
"noTryNumber": "沒有嘗試次數",
"noTryNumber": "無嘗試次數",
"settings": "日誌設定",
"viewInExternal": "在 {{name}} 中檢視日誌(嘗試 {{attempt}})",
"warning": "WARNING"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,10 +140,7 @@ export const CalendarTooltip = ({ cellData, triggerRef, viewMode = "total" }: Pr
) : (
<Text fontSize="sm">
{/* To do: remove fallback translations */}
{date}:{" "}
{viewMode === "failed"
? translate("calendar.noFailedRuns", "No failed runs")
: translate("calendar.noRuns", "No runs")}
{date}: {viewMode === "failed" ? translate("calendar.noFailedRuns") : translate("calendar.noRuns")}
</Text>
)}
</div>
Expand Down