Skip to content
Open
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
1 change: 1 addition & 0 deletions src/ui/app/lang_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@
{"code": "tr", "name": "Türkçe", "flag": "tr.svg", "english_name": "Turkish"},
{"code": "it", "name": "Italiano", "flag": "it.svg", "english_name": "Italian"},
{"code": "pl", "name": "Polski", "flag": "pl.svg", "english_name": "Polish"},
{"code": "tl", "name": "Filipino", "flag": "ph.svg", "english_name": "Filipino"},
]
1 change: 1 addition & 0 deletions src/ui/app/static/locales/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ This directory contains translation files for the BunkerWeb UI. Below is a summa
| tr.json | Manual (@wiseweb-works) | Manual (@wiseweb-works) |
| tw.json | AI (Google:Gemini-2.5-pro) | AI (Google:Gemini-3-pro) |
| ur.json | AI (Google:Gemini-2.5-pro) | AI (Google:Gemini-3-pro) |
| tl.json | Manual (@Cleverguns) | Manual (@Cleverguns) |
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick | 🔵 Trivial | ⚡ Quick win

Table row should be positioned alphabetically by locale code.

The new tl.json entry appears after ur.json, but alphabetically it should appear after ru.json (line 19) and before tr.json (line 20). Maintaining alphabetical order makes the table easier to scan and keep organised.

📋 Proposed fix to maintain alphabetical order

Move line 23 to appear after line 19:

 | pt.json | AI (Google:Gemini-2.5-pro)    | AI (Google:Gemini-3-pro) |
 | ru.json | AI (Google:Gemini-2.5-pro)    | AI (Google:Gemini-3-pro) |
+| tl.json | Manual (`@Cleverguns`)          | Manual (`@Cleverguns`)     |
 | tr.json | Manual (`@wiseweb-works`)       | Manual (`@wiseweb-works`)  |
 | tw.json | AI (Google:Gemini-2.5-pro)    | AI (Google:Gemini-3-pro) |
 | ur.json | AI (Google:Gemini-2.5-pro)    | AI (Google:Gemini-3-pro) |
-| tl.json | Manual (`@Cleverguns`)          | Manual (`@Cleverguns`)     |
 | zh.json | AI (Google:Gemini-2.5-pro)    | AI (Google:Gemini-3-pro) |
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
| tl.json | Manual (@Cleverguns) | Manual (@Cleverguns) |
| pt.json | AI (Google:Gemini-2.5-pro) | AI (Google:Gemini-3-pro) |
| ru.json | AI (Google:Gemini-2.5-pro) | AI (Google:Gemini-3-pro) |
| tl.json | Manual (`@Cleverguns`) | Manual (`@Cleverguns`) |
| tr.json | Manual (`@wiseweb-works`) | Manual (`@wiseweb-works`) |
| tw.json | AI (Google:Gemini-2.5-pro) | AI (Google:Gemini-3-pro) |
| ur.json | AI (Google:Gemini-2.5-pro) | AI (Google:Gemini-3-pro) |
| zh.json | AI (Google:Gemini-2.5-pro) | AI (Google:Gemini-3-pro) |
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@src/ui/app/static/locales/README.md` at line 23, The table row for the new
locale "tl.json" is out of alphabetical order; move the entire row containing
"tl.json | Manual (`@Cleverguns`) | Manual (`@Cleverguns`)" so it appears after the
"ru.json" row and before the "tr.json" row to restore alphabetical ordering by
locale code.

| zh.json | AI (Google:Gemini-2.5-pro) | AI (Google:Gemini-3-pro) |

**Table columns:**
Expand Down
Loading