w
clone your own copy | download snapshot

Snapshots | iceberg

No images in this repository’s iceberg at this time

Inside this repository

find-translations.sh
text/x-sh

Download raw (292 bytes)

#! /usr/bin/env bash

echo "var lang = {"

cat playground/templates/playground/underscore/*.mtpl | \
tr "<" "\n" | \
    grep "t(" | \
    cut -d "'" -f 2 | \
    sort | \
    uniq | \
    sort | \
    xargs -0 | while read -r line ; do
        echo "   \"${line}\": \"\"",
    done
echo "}"