aboutsummaryrefslogtreecommitdiff
path: root/v2/src/bin/i18n
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-11-17 19:49:05 -0300
committerEuAndreh <eu@euandre.org>2024-11-17 19:49:05 -0300
commit08c9bcb3fed37d9483258bd97aaebc47b54b3fa3 (patch)
tree7b114f79c44d347a5ecd1082943d2ba8c95dac5c /v2/src/bin/i18n
parentmv src/content/styles.css src/content/style.css (diff)
downloadeuandre.org-08c9bcb3fed37d9483258bd97aaebc47b54b3fa3.tar.gz
euandre.org-08c9bcb3fed37d9483258bd97aaebc47b54b3fa3.tar.xz
rm -rf v2/
Diffstat (limited to 'v2/src/bin/i18n')
-rwxr-xr-xv2/src/bin/i18n97
1 files changed, 0 insertions, 97 deletions
diff --git a/v2/src/bin/i18n b/v2/src/bin/i18n
deleted file mode 100755
index 30404eb..0000000
--- a/v2/src/bin/i18n
+++ /dev/null
@@ -1,97 +0,0 @@
-#!/bin/sh
-set -eu
-
-usage() {
- cat <<-'EOF'
- Usage:
- i18n
- i18n -h
- EOF
-}
-
-help() {
- cat <<-'EOF'
-
-
- Options:
- -h, --help show this message
-
-
- Look at the mappings file provided via STDIN and notify all of
- the files of all of their translations, so that they can include
- it in their header.
-
-
- Examples:
-
- Generate it from "po/i18n.mappings":
-
- $ i18n < po/i18n.mappings
- EOF
-}
-
-
-for flag in "$@"; do
- case "$flag" in
- --)
- break
- ;;
- --help)
- usage
- help
- exit
- ;;
- *)
- ;;
- esac
-done
-
-while getopts 'h' flag; do
- case "$flag" in
- h)
- usage
- help
- exit
- ;;
- *)
- usage >&2
- exit 2
- ;;
- esac
-done
-shift $((OPTIND - 1))
-
-
-
-awk '
-{
- from = $3
- idx[from][0] = "en:" from
- for (i = 4; i <= NF; i++) {
- to = $i
- idx[from][length(idx[from])] = to
- }
-}
-
-END {
- for (k1 in idx) {
- split(idx[k1][0], b, /:/)
- base = b[2] ".i18n"
- for (k2 in idx[k1]) {
- split(idx[k1][k2], f, /:/)
- file = f[2] ".i18n"
- if (k2 == 0) {
- for (k3 in idx[k1]) {
- "url-for " f[2] | getline url
- print idx[k1][k3] ":" url > file
- }
- } else {
- ret = system("cp " base " " file)
- if (ret) {
- exit ret
- }
- }
- }
- }
-}
-'