-
Notifications
You must be signed in to change notification settings - Fork 4.2k
🐛 Bug: Fix greeting timezone mismatch and add night greeting #8924
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: preview
Are you sure you want to change the base?
Changes from 1 commit
e3b3a77
df7aea7
388502a
9e47a43
bab77e6
93e15fc
84922cf
fc1a396
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -494,6 +494,7 @@ export default { | |||||
| morning: "pagi", | ||||||
| afternoon: "siang", | ||||||
| evening: "malam", | ||||||
| night: "night", | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Find all locale translation files and show the `night` key value to spot any that still carry the English literal or are otherwise untranslated.
fd -e ts 'translations\.ts$' packages/i18n/src/locales --exec sh -c 'printf "%s: " "$1"; rg -N "^\s*night:\s*" "$1" || echo "(missing)"' _ {}Repository: makeplane/plane Length of output: 1289 Untranslated All non-English locale files carry the English literal For Indonesian ( Suggested fix for Indonesian- night: "night",
+ night: "dini hari",All 18 non-English locales require equivalent translations for the 📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
| show_all: "Tampilkan semua", | ||||||
| show_less: "Tampilkan lebih sedikit", | ||||||
| no_data_yet: "Belum ada data", | ||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -490,6 +490,7 @@ export default { | |||||
| morning: "sabah", | ||||||
| afternoon: "öğleden sonra", | ||||||
| evening: "akşam", | ||||||
| night: "night", | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Localize the new Turkish This leaves the Turkish locale with an English greeting fragment. 🌐 Proposed localization fix- night: "night",
+ night: "gece",📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
| show_all: "Tümünü göster", | ||||||
| show_less: "Daha az göster", | ||||||
| no_data_yet: "Henüz veri yok", | ||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -495,6 +495,7 @@ export default { | |||||
| morning: "Buổi sáng", | ||||||
| afternoon: "Buổi chiều", | ||||||
| evening: "Buổi tối", | ||||||
| night: "night", | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Localize the new The vi-VN locale should not fall back to the English word 🌐 Example fix- night: "night",
+ night: "Buổi đêm",📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
| show_all: "Hiển thị tất cả", | ||||||
| show_less: "Hiển thị ít hơn", | ||||||
| no_data_yet: "Chưa có dữ liệu", | ||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -477,6 +477,7 @@ export default { | |||||
| morning: "早上", | ||||||
| afternoon: "下午", | ||||||
| evening: "晚上", | ||||||
| night: "night", | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Description: Find locale files where the new night greeting still uses the English placeholder.
# Expected: Only English locale files, if any, should contain night: "night".
rg -n --glob 'translations.ts' 'night:\s*"night"' packages/i18n/src/localesRepository: makeplane/plane Length of output: 1346 Localize the new The Chinese locale (and 17 other non-English locale files) still use the English placeholder
Example fix for zh-CN- night: "night",
+ night: "晚安",📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
| show_all: "显示全部", | ||||||
| show_less: "显示更少", | ||||||
| no_data_yet: "暂无数据", | ||||||
|
|
||||||
Uh oh!
There was an error while loading. Please reload this page.