diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-21 02:23:03 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-21 02:23:03 -0600 |
commit | 9b58d35185905f8334142bf4988cb784e993aea7 (patch) | |
tree | f83ec30722464f6e4d23d6e7a40201d7ef5b6bf4 /tde-i18n-sr@Latn/sr-fc2l | |
download | tde-i18n-9b58d35185905f8334142bf4988cb784e993aea7.tar.gz tde-i18n-9b58d35185905f8334142bf4988cb784e993aea7.zip |
Initial import of extracted KDE i18n tarballs
Diffstat (limited to 'tde-i18n-sr@Latn/sr-fc2l')
-rwxr-xr-x | tde-i18n-sr@Latn/sr-fc2l | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/tde-i18n-sr@Latn/sr-fc2l b/tde-i18n-sr@Latn/sr-fc2l new file mode 100755 index 00000000000..422124f5223 --- /dev/null +++ b/tde-i18n-sr@Latn/sr-fc2l @@ -0,0 +1,91 @@ +#!/bin/sh +# +# sr-fc2l 0.0.0 +# In-place converts UTF8 Serbian Cyrillic text files to Serbian Latin. +# January 15th, 2004. +# +# Author: +# Chusslove Illich (Часлав Илић) +# +# Usage: +# sr-fc2l [FILE...] +# +# Warning: +# Once converted to Latin, files cannot be converted back to Cyrillic, as +# that direction of conversion is ambiguous. So, make backup of originals if +# Cyrillic version might still be needed. +# +# Warning: +# This script cannot properly convert `Љ', `Њ' and `Џ' in all-caps words; +# e.g. `ЉУБЉАНА' would be converted to `LjUBLjANA' instead of correct +# `LJUBLJANA'. However, these cases occur rarely. + +for i in $*; do + if [ -f "$i" ]; then + sed \ + -e "s/А/A/g" \ + -e "s/Б/B/g" \ + -e "s/В/V/g" \ + -e "s/Г/G/g" \ + -e "s/Д/D/g" \ + -e "s/Ђ/Đ/g" \ + -e "s/Е/E/g" \ + -e "s/Ж/Ž/g" \ + -e "s/З/Z/g" \ + -e "s/И/I/g" \ + -e "s/Ј/J/g" \ + -e "s/К/K/g" \ + -e "s/Л/L/g" \ + -e "s/Љ/Lj/g" \ + -e "s/М/M/g" \ + -e "s/Н/N/g" \ + -e "s/Њ/Nj/g" \ + -e "s/О/O/g" \ + -e "s/П/P/g" \ + -e "s/Р/R/g" \ + -e "s/С/S/g" \ + -e "s/Т/T/g" \ + -e "s/Ћ/Ć/g" \ + -e "s/У/U/g" \ + -e "s/Ф/F/g" \ + -e "s/Х/H/g" \ + -e "s/Ц/C/g" \ + -e "s/Ч/Č/g" \ + -e "s/Џ/Dž/g" \ + -e "s/Ш/Š/g" \ + -e "s/а/a/g" \ + -e "s/б/b/g" \ + -e "s/в/v/g" \ + -e "s/г/g/g" \ + -e "s/д/d/g" \ + -e "s/ђ/đ/g" \ + -e "s/е/e/g" \ + -e "s/ж/ž/g" \ + -e "s/з/z/g" \ + -e "s/и/i/g" \ + -e "s/ј/j/g" \ + -e "s/к/k/g" \ + -e "s/л/l/g" \ + -e "s/љ/lj/g" \ + -e "s/м/m/g" \ + -e "s/н/n/g" \ + -e "s/њ/nj/g" \ + -e "s/о/o/g" \ + -e "s/п/p/g" \ + -e "s/р/r/g" \ + -e "s/с/s/g" \ + -e "s/т/t/g" \ + -e "s/ћ/ć/g" \ + -e "s/у/u/g" \ + -e "s/ф/f/g" \ + -e "s/х/h/g" \ + -e "s/ц/c/g" \ + -e "s/ч/č/g" \ + -e "s/џ/dž/g" \ + -e "s/ш/š/g" \ + $i >$i.tmp && \ + mv -f $i.tmp $i + else + echo "\"$i\" does not exist or is not a file!" + fi +done |