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.
11 lines
354 B
11 lines
354 B
15 years ago
|
|
||
|
messages:
|
||
|
: > colors.cpp
|
||
|
list=`grep '^[0-9]' rgb.txt | tr ' ' ' ' | sed -e "s#^[0-9]* [0-9]* [0-9]* *##" | fgrep -v " " | fgrep -v gray | fgrep -v grey | LC_ALL=C sort -u` ;\
|
||
|
for i in $$list; do \
|
||
|
echo "i18n(\"color\", \"$$i\");" | sed -e "s#!# #g" >> colors.cpp ;\
|
||
|
done
|
||
|
$(XGETTEXT) colors.cpp -o $(podir)/kdelibs_colors.pot
|
||
|
-rm -f colors.cpp
|
||
|
|