Files
vibe-kanban/scripts/check-i18n.sh
Louis Knight-Webb e17de68547 Check i18n consistency (vibe-kanban) (#960)
* ## Done! 

The [check-i18n.sh](file:///private/var/folders/m1/9q_ct1913z10v6wbnv54j25r0000gn/T/vibe-kanban/worktrees/a6aa-check-i18n-consi/scripts/check-i18n.sh) script has been extended with key consistency checking:

**What was added:**
- `get_json_keys()` - Extracts all nested keys from translation JSON files
- `check_key_consistency()` - Validates that all languages have the same keys as English
- Both checks now run in sequence with aggregated exit status

**Features:**
- Auto-discovers languages and namespaces from the filesystem
- Reports missing keys as errors (script fails)
- Reports extra keys as warnings (optional strict mode with `I18N_FAIL_ON_EXTRA=1`)
- Verbose mode available with `I18N_VERBOSE=1`

**Current issues detected:**
- Spanish translations missing 13 keys across common.json and settings.json
- Japanese translations appear to be up to date

* Perfect! All missing Spanish translations have been added and the script now passes 

**Added translations:**
- [es/common.json](file:///private/var/folders/m1/9q_ct1913z10v6wbnv54j25r0000gn/T/vibe-kanban/worktrees/a6aa-check-i18n-consi/frontend/src/i18n/locales/es/common.json): 8 conversation-related keys
- [es/settings.json](file:///private/var/folders/m1/9q_ct1913z10v6wbnv54j25r0000gn/T/vibe-kanban/worktrees/a6aa-check-i18n-consi/frontend/src/i18n/locales/es/settings.json): 5 settings-related keys
2025-10-07 14:26:50 +01:00

195 lines
6.0 KiB
Bash
Executable File

#!/usr/bin/env bash
# i18n regression check script
# Compares i18next/no-literal-string violations between PR and main branch
# Initial implementation: This script will show high violation counts until enforcement is enabled
set -eo pipefail
WORKTREE_BASE="$(mktemp -d)"
RULE="i18next/no-literal-string"
# Function that outputs violation count to stdout
lint_count() {
local dir=$1
local tmp
tmp=$(mktemp)
trap 'rm -f "$tmp"' RETURN
(
set -eo pipefail
cd "$REPO_ROOT/frontend"
# Use ESLint from main workspace but lint files in the target directory
LINT_I18N=true npx eslint "$dir/frontend" \
--ext ts,tsx \
--format json \
--output-file "$tmp" \
--no-error-on-unmatched-pattern \
> /dev/null 2>&1 || true # Don't fail on violations
)
# Parse the clean JSON file
jq --arg RULE "$RULE" \
'[.[].messages[] | select(.ruleId == $RULE)] | length' "$tmp" \
|| echo "0"
}
get_json_keys() {
local file=$1
if [ ! -f "$file" ]; then
return 2
fi
jq -r '
paths(scalars) as $p
| select(getpath($p) | type == "string")
| $p | join(".")
' "$file" 2>/dev/null | LC_ALL=C sort -u
}
check_key_consistency() {
local locales_dir="$REPO_ROOT/frontend/src/i18n/locales"
local exit_code=0
local fail_on_extra="${I18N_FAIL_ON_EXTRA:-0}"
local verbose="${I18N_VERBOSE:-0}"
if [ ! -d "$locales_dir/en" ]; then
echo "❌ Missing source locale directory: $locales_dir/en"
return 1
fi
# Compute namespaces from en
local namespaces=()
while IFS= read -r ns; do
namespaces+=("$ns")
done < <(find "$locales_dir/en" -maxdepth 1 -type f -name "*.json" -exec basename {} .json \; 2>/dev/null | LC_ALL=C sort)
# Compute languages from locales
local languages=()
while IFS= read -r lang; do
languages+=("$lang")
done < <(find "$locales_dir" -maxdepth 1 -mindepth 1 -type d -exec basename {} \; 2>/dev/null | LC_ALL=C sort)
# Ensure en exists
if ! printf '%s\n' "${languages[@]}" | grep -qx "en"; then
echo "❌ Source language 'en' not found in $locales_dir"
return 1
fi
for ns in "${namespaces[@]}"; do
local ref_file="$locales_dir/en/$ns.json"
if ! ref_keys=$(get_json_keys "$ref_file"); then
echo "❌ Invalid or unreadable JSON: $ref_file"
exit_code=1
continue
fi
for lang in "${languages[@]}"; do
[ "$lang" = "en" ] && continue
local tgt_file="$locales_dir/$lang/$ns.json"
local tgt_keys
local missing
local extra
if ! tgt_keys=$(get_json_keys "$tgt_file"); then
echo "❌ [$lang/$ns] Missing or invalid JSON: $tgt_file"
echo " All keys from en/$ns are considered missing."
missing="$ref_keys"
extra=""
exit_code=1
else
# Compute set differences
missing=$(comm -23 <(printf "%s\n" "$ref_keys") <(printf "%s\n" "$tgt_keys"))
extra=$(comm -13 <(printf "%s\n" "$ref_keys") <(printf "%s\n" "$tgt_keys"))
fi
if [ -n "$missing" ]; then
echo "❌ [$lang/$ns] Missing keys:"
if [ "$verbose" = "1" ]; then
printf ' - %s\n' $missing
else
printf ' - %s\n' $(echo "$missing" | head -n 50)
local total_missing
total_missing=$(printf "%s\n" "$missing" | wc -l | tr -d ' ')
if [ "$total_missing" -gt 50 ]; then
echo " ... and $((total_missing - 50)) more. Set I18N_VERBOSE=1 to print all."
fi
fi
exit_code=1
fi
if [ -n "$extra" ]; then
if [ "$fail_on_extra" = "1" ]; then
echo "❌ [$lang/$ns] Extra keys (not in en):"
[ "$verbose" = "1" ] && printf ' - %s\n' $extra || printf ' - %s\n' $(echo "$extra" | head -n 50)
exit_code=1
else
echo "⚠️ [$lang/$ns] Extra keys (not in en):"
[ "$verbose" = "1" ] && printf ' - %s\n' $extra || printf ' - %s\n' $(echo "$extra" | head -n 50)
fi
fi
done
done
return "$exit_code"
}
echo "▶️ Counting literal strings in PR branch..."
REPO_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
PR_COUNT=$(lint_count "$REPO_ROOT")
BASE_REF="${GITHUB_BASE_REF:-main}"
echo "▶️ Checking out $BASE_REF for baseline..."
git fetch --depth=1 origin "$BASE_REF" 2>/dev/null || git fetch --depth=1 origin "$BASE_REF"
git worktree add "$WORKTREE_BASE" "origin/$BASE_REF" 2>/dev/null || {
echo "Could not create worktree, falling back to direct checkout"
TEMP_BRANCH="temp-i18n-check-$$"
git checkout -b "$TEMP_BRANCH" "origin/$BASE_REF" 2>/dev/null || git checkout "origin/$BASE_REF"
BASE_COUNT=$(lint_count "$REPO_ROOT")
git checkout - 2>/dev/null || true
git branch -D "$TEMP_BRANCH" 2>/dev/null || true
}
# Get base count from worktree if it was created successfully
if [ -d "$WORKTREE_BASE" ]; then
BASE_COUNT=$(lint_count "$WORKTREE_BASE")
git worktree remove "$WORKTREE_BASE" 2>/dev/null || rm -rf "$WORKTREE_BASE"
fi
# Ensure BASE_COUNT has a value
BASE_COUNT="${BASE_COUNT:-0}"
echo ""
echo "📊 I18n Violation Summary:"
echo " Base branch ($BASE_REF): $BASE_COUNT violations"
echo " PR branch: $PR_COUNT violations"
echo ""
EXIT_STATUS=0
if (( PR_COUNT > BASE_COUNT )); then
echo "❌ PR introduces $((PR_COUNT - BASE_COUNT)) new hard-coded strings."
echo ""
echo "💡 To fix, replace hardcoded strings with translation calls:"
echo " Before: <Button>Save</Button>"
echo " After: <Button>{t('buttons.save')}</Button>"
echo ""
echo "Files with new violations:"
(cd "$REPO_ROOT/frontend" && LINT_I18N=true npx eslint . --ext ts,tsx --rule "$RULE:error" -f codeframe 2>/dev/null || true)
EXIT_STATUS=1
elif (( PR_COUNT < BASE_COUNT )); then
echo "🎉 Great job! PR removes $((BASE_COUNT - PR_COUNT)) hard-coded strings."
echo " This helps improve i18n coverage!"
else
echo "✅ No new literal strings introduced."
fi
echo ""
echo "▶️ Checking translation key consistency..."
if ! check_key_consistency; then
EXIT_STATUS=1
else
echo "✅ Translation keys are consistent across locales."
fi
exit "$EXIT_STATUS"