@danhachuel/thunderbolt 0.3.7 → 0.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app/main.py +1 -1
- package/hermes_ui/languages.py +11 -0
- package/package.json +1 -1
package/app/main.py
CHANGED
|
@@ -2838,7 +2838,7 @@ def render_python_editor():
|
|
|
2838
2838
|
|
|
2839
2839
|
|
|
2840
2840
|
def render_videos():
|
|
2841
|
-
st.subheader("Backlog
|
|
2841
|
+
st.subheader("Backlog Videos")
|
|
2842
2842
|
st.caption("Acompanhamento dos vídeos criados, estados da pipeline e controlos de execução.")
|
|
2843
2843
|
st.caption(f"Os vídeos são guardados em `{STORAGE / 'videos'}`.")
|
|
2844
2844
|
tasks = read_json("tasks.json", [])
|
package/hermes_ui/languages.py
CHANGED
|
@@ -179,6 +179,17 @@ UI_NAV_TRANSLATIONS: dict[str, dict[str, str]] = {
|
|
|
179
179
|
for _language_code, _navigation_values in UI_NAV_TRANSLATIONS.items():
|
|
180
180
|
UI_TRANSLATIONS[_language_code].update(_navigation_values)
|
|
181
181
|
|
|
182
|
+
# The source-level page identifier intentionally uses the exact English spelling
|
|
183
|
+
# requested by the product flow. The displayed label remains localized per UI
|
|
184
|
+
# language, while the legacy accented navigation label stays backward-compatible.
|
|
185
|
+
_BACKLOG_CANONICAL_LABELS = {
|
|
186
|
+
"pt": "Backlog Vídeos", "en": "Video Backlog", "zh": "视频待办", "de": "Video-Backlog",
|
|
187
|
+
"vi": "Danh sách video", "tr": "Video Bekleme Listesi", "ru": "Очередь видео", "es": "Cola de vídeos",
|
|
188
|
+
"id": "Antrean Video", "it": "Coda video",
|
|
189
|
+
}
|
|
190
|
+
for _language_code, _backlog_label in _BACKLOG_CANONICAL_LABELS.items():
|
|
191
|
+
UI_TRANSLATIONS[_language_code]["Backlog Videos"] = _backlog_label
|
|
192
|
+
|
|
182
193
|
|
|
183
194
|
VIDEO_GENERATION_TRANSLATIONS: dict[str, dict[str, str]] = {
|
|
184
195
|
"pt": {
|
package/package.json
CHANGED