-
Notifications
You must be signed in to change notification settings - Fork 3.6k
[WEB-4855] refactor: chart tick improvements #7732
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
67887ef
d063573
aa6b71a
df339c1
ab52003
4b40929
753daa6
c740539
8775b9a
fc4636e
b225b98
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 |
|---|---|---|
|
|
@@ -884,7 +884,8 @@ | |
| "in_progress": "Prebieha", | ||
| "planned": "Plánované", | ||
| "paused": "Pozastavené", | ||
| "no_of": "Počet {entity}" | ||
| "no_of": "Počet {entity}", | ||
| "resolved": "Vyriešené" | ||
| }, | ||
|
Comment on lines
+887
to
889
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. 💡 Verification agent 🧩 Analysis chainAdd "resolved" status — LGTM Correct translation and placeholder usage; JSON comma placement is valid. Optional check script to ensure all locale files include a valid "resolved" and remain parseable: 🏁 Script executed: #!/bin/bash
set -euo pipefail
# 1) Validate JSON across locales
fd translations.json packages/i18n/src/locales -t f -x jq -e '{}' {}
# 2) Confirm each locale has a "resolved" entry
missing=0
while read -r f; do
if ! rg -q '^\s*"resolved"\s*:' "$f"; then
echo "Missing resolved in: $f"
missing=1
fi
done < <(fd translations.json packages/i18n/src/locales -t f)
exit $missingLength of output: 15081 🏁 Script executed: #!/usr/bin/env bash
set -euo pipefail
# Find all translation files
files=$(fd '^translations\.json$' packages/i18n/src/locales -t f)
missing=0
for f in $files; do
# 1) Validate JSON parseability
if ! jq -e . "$f" > /dev/null; then
echo "Invalid JSON: $f"
missing=1
fi
# 2) Confirm top-level "resolved" key exists
if ! jq -e 'has("resolved")' "$f" > /dev/null; then
echo "Missing \"resolved\" in: $f"
missing=1
fi
done
exit $missingLength of output: 1557 🏁 Script executed: #!/usr/bin/env bash
set -euo pipefail
# Locate all translation JSON files
files=$(fd '^translations\.json$' packages/i18n/src/locales -t f)
missing=0
for f in $files; do
# 1) Validate JSON parseability
jq -e . "$f" > /dev/null || { echo "Invalid JSON: $f"; missing=1; }
# 2) Confirm top-level "resolved" key exists
jq -e 'has("resolved")' "$f" > /dev/null || { echo "Missing \"resolved\" in: $f"; missing=1; }
done
exit $missingLength of output: 1344 Add missing “resolved” entry to all locale files 🤖 Prompt for AI Agents |
||
| "chart": { | ||
| "x_axis": "Os X", | ||
|
|
@@ -2491,7 +2492,6 @@ | |
| "plane_didnt_start_up_this_could_be_because_one_or_more_plane_services_failed_to_start": "Plane sa nespustil. Toto môže byť spôsobené tým, že sa jedna alebo viac služieb Plane nepodarilo spustiť.", | ||
| "choose_view_logs_from_setup_sh_and_docker_logs_to_be_sure": "Vyberte View Logs z setup.sh a Docker logov, aby ste si boli istí." | ||
| }, | ||
|
|
||
| "page_navigation_pane": { | ||
| "tabs": { | ||
| "outline": { | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.