You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
175 B
13 lines
175 B
3 years ago
|
#!/bin/sh
|
||
|
# FIXME: there should be less brutal i18n tuning
|
||
|
|
||
|
cd /usr/share/locale
|
||
|
rm -r *@*
|
||
|
for i in */; do
|
||
|
case "$i" in
|
||
|
be*|en*|ru*|uk*) continue;;
|
||
|
esac
|
||
|
rm -r "$i"
|
||
|
done
|
||
|
:
|