-
- {isEn ? "Local Time" : "当前时间"}
- {row.local_time || "--"}
-
-
- {isEn ? "Current Temp" : "当前温度"}
-
- {row.current_temp != null
- ? formatTemperatureValue(row.current_temp, tempSymbol)
- : "--"}
-
-
-
- {isEn ? "Day High (So Far)" : "今日最高(至今)"}
-
- {row.current_max_so_far != null
- ? formatTemperatureValue(row.current_max_so_far, tempSymbol)
- : "--"}
-
-
-
- {isEn ? "Target" : "目标温度"}
-
- {normalizeTemperatureLabel(displayRow.target_label, tempSymbol) || "--"}
-
-
-
- {isEn ? "Gap To Target" : "距离目标"}
-
- {displayRow.gap_to_target != null
- ? formatTemperatureValue(displayRow.gap_to_target, tempSymbol, {
- signed: true,
- digits: 1,
- })
- : "--"}
-
-
-
- {isEn ? "Time To Peak" : "距离预测峰值"}
- {formatRemainingWindow(displayRow.remaining_window_minutes, locale)}
-
-
- {isEn ? "Airport" : "机场锚点"}
- {localizedAirport || "--"}
-
-
-