Revision 7434
Added by Aaron Marcuse-Kubitza almost 12 years ago
bin/translate_ci | ||
---|---|---|
1 |
#!/bin/sh |
|
2 |
# Translates a spreadsheet column using a dictionary. |
|
3 |
# The column header is also translated. CSVs without a header are supported. |
|
4 |
# Unrecognized names are left untouched, permitting successive runs on different |
|
5 |
# dictionaries. |
|
6 |
# Case- and punctuation-insensitive. |
|
7 |
|
|
8 |
selfDir="$(dirname -- "$0")" |
|
9 |
|
|
10 |
"$selfDir/canon" "$@"|"$selfDir/translate" "$@" |
|
0 | 11 |
Also available in: Unified diff
Added translate_ci