guan404ming commented on code in PR #51943:
URL: https://github.com/apache/airflow/pull/51943#discussion_r2160259516


##########
airflow-core/src/airflow/ui/public/i18n/locales/zh-TW/common.json:
##########
@@ -128,6 +128,13 @@
     "manual": "手動觸發",
     "scheduled": "已排程"
   },
+  "scroll": {
+    "direction": {
+      "bottom": "最下方",
+      "top": "最上方"
+    },
+    "tooltip": "按 {{hotkey}} 捲動到{{direction}}"

Review Comment:
   This is intended since the direction would be Taiwanese Mandarin since it 
would be used like this
   ```js
   content={translate("scroll.tooltip", {
     direction: translate(`scroll.direction.${direction}`),
     hotkey: direction === "bottom" ? "↓" : "↑",
   })}
   ```
   
   Thus, it would be `按 ↑ 捲動到最上方` instead of `按 ↑ 捲動到 最上方`.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to