A fork of https://github.com/crosspoint-reader/crosspoint-reader
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: Update SKILL.md to reflect generated i18n files are gitignored (#1423)

## Summary

**What is the goal of this PR?**

Update SKILL.md to stop instructing contributors to commit `I18nKeys.h`
and `I18nStrings.h`. All three generated i18n files have been gitignored
since ff577540 and are regenerated at build time.

---

### AI Usage

While CrossPoint doesn't have restrictions on AI tools in contributing,
please be transparent about their usage as it
helps set the right context for reviewers.

Did you use AI tools to help write this code? _**NO**_

authored by

Zach Nelson and committed by
GitHub
9665dd74 71719e1d

+2 -2
+2 -2
.skills/SKILL.md
··· 664 664 - `lib/I18n/I18nKeys.h`, `lib/I18n/I18nStrings.h`, `lib/I18n/I18nStrings.cpp` 665 665 - **Source**: YAML translation files in `lib/I18n/translations/` (one per language) 666 666 - **To modify**: Edit source YAML files, then run `python scripts/gen_i18n.py lib/I18n/translations lib/I18n/` 667 - - **Commit**: Source YAML files + `I18nKeys.h` and `I18nStrings.h` (needed for IDE symbol resolution), but NOT `I18nStrings.cpp` 667 + - **Commit**: Source YAML files only. All three generated files (`I18nKeys.h`, `I18nStrings.h`, `I18nStrings.cpp`) are in `.gitignore` and regenerated at build time. 668 668 669 669 3. **Build Artifacts** (in `.gitignore`): 670 670 - `.pio/` - PlatformIO build output ··· 686 686 - English (`english.yaml`) is the reference; missing keys in other languages fall back to English 687 687 2. Run generator: `python scripts/gen_i18n.py lib/I18n/translations lib/I18n/` 688 688 3. Generated files update: `I18nKeys.h`, `I18nStrings.h`, `I18nStrings.cpp` 689 - 4. **Commit** source YAML files + `I18nKeys.h` and `I18nStrings.h` (IDE needs these for symbol resolution), but NOT `I18nStrings.cpp` 689 + 4. **Commit** source YAML files only. All three generated files are in `.gitignore` and regenerated at build time. 690 690 691 691 **To use translated strings in code**: 692 692 ```cpp