-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
[WEB-3173] chore: language support for cycles constant file #6415
base: preview
Are you sure you want to change the base?
Changes from 1 commit
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 |
---|---|---|
|
@@ -316,5 +316,15 @@ | |
"remove_parent_issue": "Eliminar problema padre", | ||
"add_parent": "Agregar padre", | ||
"loading_members": "Cargando miembros...", | ||
"inbox": "bandeja de entrada" | ||
"inbox": "bandeja de entrada", | ||
|
||
"project_cycles": { | ||
"status": { | ||
"days_left": "Días restantes", | ||
"completed": "Completado", | ||
"yet_to_start": "Por comenzar", | ||
"in_progress": "En progreso", | ||
"draft": "Borrador" | ||
} | ||
} | ||
Comment on lines
+321
to
+329
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. 💡 Codebase verification Missing required translations in Chinese locale file The
🔗 Analysis chainVerify translation key consistency across language files. Let's ensure all required translation keys are present in all language files. 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Check for consistency of project_cycles.status keys across language files
# List all translation files
translation_files=$(fd translations.json packages/i18n/src/locales)
# Check for required keys in each file
for file in $translation_files; do
echo "Checking $file..."
jq -e '.project_cycles.status | has("days_left") and has("completed") and has("yet_to_start") and has("in_progress") and has("draft")' "$file"
done
Length of output: 2064 Script: #!/bin/bash
# Show the actual content of project_cycles.status in zh-CN translations
echo "Content of zh-CN translations:"
jq '.project_cycles.status' packages/i18n/src/locales/zh-CN/translations.json
Length of output: 153 Script: #!/bin/bash
# Check if project_cycles exists and show its structure
echo "Structure of project_cycles in zh-CN:"
jq '.project_cycles' packages/i18n/src/locales/zh-CN/translations.json
Length of output: 160 |
||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We will have to change it to
labelTranslationKey
andtitleTranslationKey
respectively.