fix(i18n): add all missing translations for German#1886
fix(i18n): add all missing translations for German#1886danielroe merged 6 commits intonpmx-dev:mainfrom
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
2 Skipped Deployments
|
Lunaria Status Overview🌕 This pull request will trigger status changes. Learn moreBy default, every PR changing files present in the Lunaria configuration's You can change this by adding one of the keywords present in the Tracked Files
Warnings reference
|
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review infoConfiguration used: Organization UI Review profile: CHILL Plan: Pro 📒 Files selected for processing (1)
🚧 Files skipped from review as they are similar to previous changes (1)
📝 WalkthroughWalkthroughThis PR updates the German locale file Possibly related PRs
Suggested reviewers
🚥 Pre-merge checks | ✅ 1✅ Passed checks (1 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
There was a problem hiding this comment.
♻️ Duplicate comments (1)
i18n/locales/de-DE.json (1)
1061-1061:⚠️ Potential issue | 🔴 CriticalFix invalid JSON string quoting in
compare.no_dependency.add_column.Line 1061 uses an unescaped ASCII quote inside the value, which terminates the string early and breaks JSON parsing (matching CI and Biome errors).
Use matching German quotes inside the JSON string.💡 Proposed fix
- "add_column": "Spalte „Keine Abhängigkeit" zum Vergleich hinzufügen" + "add_column": "Spalte „Keine Abhängigkeit“ zum Vergleich hinzufügen"#!/bin/bash # Verify JSON syntax for the locale file (read-only) python - <<'PY' import json, pathlib, sys p = pathlib.Path("i18n/locales/de-DE.json") try: json.loads(p.read_text(encoding="utf-8")) print("OK: valid JSON") except json.JSONDecodeError as e: print(f"ERROR: {e.msg} at line {e.lineno}, column {e.colno}") sys.exit(1) PY
📚 Description