-
Notifications
You must be signed in to change notification settings - Fork 3.9k
[WEB-4432]fix: workspace analytics translation #7330
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
Changes from all commits
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 | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -1345,6 +1345,17 @@ | |||||||||||||
| "project_insights": { | ||||||||||||||
| "title": "Ще немає даних", | ||||||||||||||
| "description": "Призначені вам робочі елементи, розбиті за станом, з’являться тут." | ||||||||||||||
| }, | ||||||||||||||
| "general": { | ||||||||||||||
| "title": "Відстежуйте прогрес, робочу навантаженні та розподіл. Виявляйте тенденції, усувайте перешкоди та прискорюйте роботу", | ||||||||||||||
| "description": "Перегляньте обсяг проти попиту, оцінки та розповсюдження обсягу. Отримайте продуктивність членів команди та команд, щоб переконатися, що ваш проєкт виконується вчасно.", | ||||||||||||||
| "primary_button": { | ||||||||||||||
|
Comment on lines
+1350
to
+1352
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. Grammar & style – polish title/description – “робочу навантаженні” → incorrect case; use neuter noun in nominative “робоче навантаження”. - "title": "Відстежуйте прогрес, робочу навантаженні та розподіл. Виявляйте тенденції, усувайте перешкоди та прискорюйте роботу",
- "description": "Перегляньте обсяг проти попиту, оцінки та розповсюдження обсягу. Отримайте продуктивність членів команди та команд, щоб переконатися, що ваш проєкт виконується вчасно.",
+ "title": "Відстежуйте прогрес, робоче навантаження та розподіл навантаження. Виявляйте тенденції, усувайте перешкоди й прискорюйте роботу",
+ "description": "Перегляньте співвідношення обсягу та попиту, оцінки та розподіл обсягу. Отримайте дані про продуктивність учасників і команд, щоб упевнитись, що ваш проєкт рухається вчасно.",📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||
| "text": "Розпочніть свій перший проєкт", | ||||||||||||||
| "comic": { | ||||||||||||||
| "title": "Аналітика найкраще працює з циклами + модулями", | ||||||||||||||
| "description": "Спочатку обмежте свої робочі елементи часом у циклах та, якщо можливо, згрупуйте робочі елементи, які перевищують один цикл, у модулі. Перегляньте обидва в навігації зліва." | ||||||||||||||
| } | ||||||||||||||
| } | ||||||||||||||
| } | ||||||||||||||
| }, | ||||||||||||||
| "created_vs_resolved": "Створено vs Вирішено", | ||||||||||||||
|
|
||||||||||||||
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.
💡 Verification agent
🧩 Analysis chain
Verify the new
workspace_analytics.empty_state.generalkey across all localesNice addition for the English file. However, the UI will surface a blank string (or crash, depending on the fallback logic) if even one locale is missing this key. Please ensure every
translations.jsonunderpackages/i18n/src/locales/**now contains:Also note punctuation consistency: titles elsewhere are a mix of sentences with/without terminal periods – decide on one style and align.
🏁 Script executed:
Length of output: 3267
All locales include the new translation key ✅
I’ve verified that every
translations.jsonunderpackages/i18n/src/locales/**contains:Punctuation consistency still needs a decision
workspace_analytics.empty_state.generalentries to match that style.🤖 Prompt for AI Agents