TurboWarp / extensions

User-contributed unsandboxed extension gallery for TurboWarp
https://extensions.turbowarp.org/
MIT License
116 stars 232 forks source link

Translate all the extensions #1539

Closed GarboMuffin closed 3 months ago

GarboMuffin commented 3 months ago

update list with

#!/bin/bash
set -euo pipefail
for i in $(find . -type f | grep '\.js$' | grep -v "docs-example" | sort); do
    slug="$(echo $i | sed 's/.\///' | sed 's/\.js//')"
    if [[ "$(cat $i)" =~ "Scratch.translate" ]]; then
        echo " - [x] $slug"
    else
        echo " - [ ] $slug"
    fi
done
AshimeeAlt commented 3 months ago

Oh, my, god.

GarboMuffin commented 3 months ago

We're not going to bother translating the old pen+, so the only thing left is Simple 3D

GarboMuffin commented 3 months ago

@Xeltalliv do you think it is viable for Simple 3D to have translations, noting that the people who will be writing those translations will not have a background in 3D graphics?