Skip to content
This repository was archived by the owner on Jul 20, 2026. It is now read-only.

Commit 6640325

Browse files
committed
Update docs
1 parent a94734e commit 6640325

84 files changed

Lines changed: 174 additions & 153 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

‎.github/workflows/scripts/convert.sh‎

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,10 @@ TEMP_FILE=$(mktemp)
2424
# Use jq to parse xcstrings file and generate JSON in specified format
2525
jq -r '
2626
.strings | to_entries | map({
27-
runner_id: .key,
27+
runner_id: (
28+
# Convert runner_id to image_name format: split by underscore, reverse, join with hyphen
29+
.key | split("_") | reverse | join("-")
30+
),
2831
translations: {
2932
"en": .value.localizations.en.stringUnit.value,
3033
"fr": .value.localizations.fr.stringUnit.value,

‎docs/images/all-runners.png‎

3.95 KB

‎docs/images/bird.png‎

940 Bytes

‎docs/images/bonfire.png‎

2.49 KB

‎docs/images/butterfly.png‎

1.8 KB

‎docs/images/cat-b.png‎

4.45 KB

‎docs/images/cat-c.png‎

4.65 KB

‎docs/images/cat-tail.png‎

4.63 KB

‎docs/images/cat.png‎

4.32 KB

‎docs/images/chameleon.png‎

3.12 KB

0 commit comments

Comments
 (0)