aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--po/Makefile68
-rw-r--r--po/af.po33
-rw-r--r--po/am.po31
-rw-r--r--po/ar.hack28
-rw-r--r--po/ar.po35
-rw-r--r--po/as.po32
-rw-r--r--po/az.po32
-rw-r--r--po/bg.po43
-rw-r--r--po/bn.po32
-rw-r--r--po/bootsplash.pot32
-rw-r--r--po/br.po30
-rw-r--r--po/bs.po34
-rw-r--r--po/ca.po34
-rw-r--r--po/cs.po34
-rw-r--r--po/cy.po32
-rw-r--r--po/da.po34
-rw-r--r--po/de.po34
-rw-r--r--po/el.po34
-rw-r--r--po/eo.po32
-rw-r--r--po/es.po41
-rw-r--r--po/et.po32
-rw-r--r--po/eu.po35
-rw-r--r--po/fa.hack37
-rw-r--r--po/fa.po42
-rw-r--r--po/fi.po36
-rw-r--r--po/fr.po32
-rw-r--r--po/fur.po35
-rw-r--r--po/gl.po37
-rwxr-xr-xpo/gprintify.py84
-rw-r--r--po/he.hack34
-rw-r--r--po/he.po35
-rw-r--r--po/hi.hack30
-rw-r--r--po/hi.po33
-rw-r--r--po/hr.po33
-rw-r--r--po/hu.po34
-rw-r--r--po/hy.po31
-rw-r--r--po/id.po37
-rw-r--r--po/is.po33
-rw-r--r--po/it.po36
-rw-r--r--po/ja.po33
-rw-r--r--po/ka.po32
-rw-r--r--po/ku.po34
-rw-r--r--po/ky.po36
-rw-r--r--po/lo.po32
-rw-r--r--po/lt.po33
-rw-r--r--po/ltg.po31
-rw-r--r--po/lv.po42
-rw-r--r--po/mk.po35
-rw-r--r--po/mn.po33
-rw-r--r--po/ms.po32
-rw-r--r--po/mt.po32
-rw-r--r--po/nb.po36
-rw-r--r--po/nl.po33
-rw-r--r--po/nn.po32
-rw-r--r--po/pa_IN.po33
-rw-r--r--po/pl.po37
-rw-r--r--po/pt.po36
-rw-r--r--po/pt_BR.po36
-rw-r--r--po/ro.po70
-rw-r--r--po/ru.po35
-rw-r--r--po/sc.po34
-rw-r--r--po/sk.po30
-rw-r--r--po/sl.po35
-rw-r--r--po/sq.po41
-rw-r--r--po/sr.po34
-rw-r--r--po/sr@Latn.po34
-rw-r--r--po/sv.po34
-rw-r--r--po/ta.hack31
-rw-r--r--po/ta.po32
-rw-r--r--po/tg.po43
-rw-r--r--po/th.po33
-rw-r--r--po/tl.po33
-rw-r--r--po/tr.po36
-rw-r--r--po/uk.po37
-rw-r--r--po/ur.hack32
-rw-r--r--po/ur.po32
-rw-r--r--po/uz.po32
-rw-r--r--po/uz@cyrillic.po32
-rw-r--r--po/vi.po32
-rw-r--r--po/wa.po43
-rwxr-xr-xpo/xgettext_sh.py119
-rw-r--r--po/zh_CN.po32
-rw-r--r--po/zh_TW.po36
84 files changed, 1 insertions, 3042 deletions
diff --git a/Makefile b/Makefile
index 0e1e7d6..62ca410 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
NAME=bootsplash
VERSION := 3.2.25
-SUBDIRS=scripts po
+SUBDIRS=scripts
FILES=$(SUBDIRS) Makefile ChangeLog README
prefix=/
diff --git a/po/Makefile b/po/Makefile
deleted file mode 100644
index d943c41..0000000
--- a/po/Makefile
+++ /dev/null
@@ -1,68 +0,0 @@
-INSTALL= /usr/bin/install -c
-INSTALL_PROGRAM= ${INSTALL}
-INSTALL_DATA= ${INSTALL} -m 644
-INSTALLNLSDIR=/usr/share/locale
-
-MSGMERGE = msgmerge
-
-NLSPACKAGE = bootsplash
-
-CATALOGS = $(shell ls *.po)
-FMTCATALOGS = $(patsubst %.po,%.mo,$(CATALOGS))
-
-all: $(FMTCATALOGS)
-
-pot $(NLSPACKAGE).pot:
- rm -rf tmp
- mkdir tmp
- cp ../scripts/splash.sh tmp
- ./gprintify.py tmp/*
- ./xgettext_sh.py tmp/* > $(NLSPACKAGE).po
- if cmp -s $(NLSPACKAGE).po $(NLSPACKAGE).pot; then \
- rm -f $(NLSPACKAGE).po; \
- else \
- mv $(NLSPACKAGE).po $(NLSPACKAGE).pot; \
- fi
- rm -rf tmp
-
-update-po: Makefile
- $(MAKE) $(NLSPACKAGE).pot
- $(MAKE) refresh-po
-
-refresh-po: Makefile
- catalogs='$(CATALOGS)'; \
- for cat in $$catalogs; do \
- lang=`echo $$cat | sed 's/.po//'`; \
- if $(MSGMERGE) $$lang.po $(NLSPACKAGE).pot > $$lang.pot ; then \
- mv -f $$lang.pot $$lang.po ; \
- echo "$(MSGMERGE) of $$lang succeeded" ; \
- else \
- echo "$(MSGMERGE) of $$lang failed" ; \
- rm -f $$lang.pot ; \
- fi \
- done
-
-clean:
- rm -f *mo *.pyc
-
-distclean: clean
- rm -f .depend Makefile
-
-depend:
-
-install: all
- mkdir -p $(PREFIX)/$(INSTALLNLSDIR)
- for n in $(CATALOGS); do \
- l=`basename $$n .po`; \
- mo=$$l.mo; \
- $(INSTALL) -m 755 -d $(prefix)/$(INSTALLNLSDIR)/$$l; \
- $(INSTALL) -m 755 -d $(prefix)/$(INSTALLNLSDIR)/$$l/LC_MESSAGES; \
- $(INSTALL) -m 644 $$mo \
- $(prefix)/$(INSTALLNLSDIR)/$$l/LC_MESSAGES/$(NLSPACKAGE).mo; \
- done
-
-%.mo: %.po
- sed 's/$[a-zA-Z0-9_{}]*/%s/g' < $< | msgfmt -o $@ -
- # for RTL langs, we use a hacked version of the po files that already
- # did the reordering and shaping
- if [ -r "`basename $@ .mo`.hack" ]; then msgfmt -o $@ "`basename $@ .mo`.hack" ; fi
diff --git a/po/af.po b/po/af.po
deleted file mode 100644
index f26333b..0000000
--- a/po/af.po
+++ /dev/null
@@ -1,33 +0,0 @@
-# translation of bootsplash.po to Afrikaans
-# Copyright (C) 2003 Free Software Foundation, Inc.
-# Dirk Konrad <dirkvanderwalt@webmail.co.za>, 2003
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2003-08-26 20:24+0200\n"
-"Last-Translator: Dirk Konrad <dirkvanderwalt@webmail.co.za>\n"
-"Language-Team: Afrikaans <af@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.1\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Druk Esc vir gedetaileerde modus"
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Selflaai die rekenaar"
-
-#: tmp/splash.sh:208
-#, fuzzy
-msgid "Suspending the system..."
-msgstr "Selflaai die rekenaar"
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Besig met afskakel proses..."
diff --git a/po/am.po b/po/am.po
deleted file mode 100644
index 1854639..0000000
--- a/po/am.po
+++ /dev/null
@@ -1,31 +0,0 @@
-# Latest versions of po files are at http://www.mandrakelinux.com/l10n/am.php3
-# Copyright (C) 2004 Free Software Foundation, Inc.
-# Alemayehu Gemeda <alemayehu@gmx.at>, 2004.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2004-05-12 14:23+0200\n"
-"Last-Translator: Alemayehu Gemeda <alemayehu@gmx.at>\n"
-"Language-Team: Amharic <LL@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "ዝርዝር መረጃ ከፈለጉ Escን ይጫኑ።"
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "ሲስተሙን በመጀመር ላይ..."
-
-#: tmp/splash.sh:208
-#, fuzzy
-msgid "Suspending the system..."
-msgstr "ሲስተሙን በመጀመር ላይ..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "ሲስተሙን በመዝጋት ላይ..."
diff --git a/po/ar.hack b/po/ar.hack
deleted file mode 100644
index c512566..0000000
--- a/po/ar.hack
+++ /dev/null
@@ -1,28 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Free Software Foundation, Inc.
-# Mohammed Gamal <f2c2001@yahoo.com>, 2003
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash\n"
-"POT-Creation-Date: 2001-03-02 09:00+0100\n"
-"PO-Revision-Date: 2003-08-14 13:30-0300\n"
-"Last-Translator: Mohammed Gamal <f2c2001@yahoo.com>\n"
-"Language-Team: Arabic\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.9.6\n"
-"Plural-Forms: nplurals=4; plural=n==1 ? 0 : n==2 ? 1 : n>=3 && n<=10 ? 2 : 3\n"
-
-#: tmp/splash.sh:167
-msgid "Booting the system..."
-msgstr " ...ﻣﺎﻆﻨﻟﺍ ﻞﻴﻐﺸﺗ ﺀﺪﺑ"
-
-#: tmp/splash.sh:172
-msgid "Press Esc for verbose mode."
-msgstr " .ﺔﻠﺼﻔﻤﻟﺍ ﺔﻴﻌﺿﻭﻠﻟ Esc ﻂﻐﺿﺍ"
-
-#: tmp/splash.sh:162
-msgid "Shutting down the system..."
-msgstr " ...ﻡﺍﻆﻨﻟﺍ ﻞﻴﻐﺸﺗ ﻑﺎﻘﻳﺍ"
diff --git a/po/ar.po b/po/ar.po
deleted file mode 100644
index bfbde58..0000000
--- a/po/ar.po
+++ /dev/null
@@ -1,35 +0,0 @@
-# translation of bootsplash.po to Arabic
-# Copyright (C) 2005, 2009 Free Software Foundation, Inc.
-#
-# Mohammed Gamal <f2c2001@yahoo.com>, 2003.
-# Ossama M. Khayat <okhayat@yahoo.com>, 2005.
-# Ma'moun Diraneyya <mamoun.diraneyya@gmail.com>, 2009.
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2009-04-13 02:49+0300\n"
-"Last-Translator: Ma'moun Diraneyya <mamoun.diraneyya@gmail.com>\n"
-"Language-Team: Arabic <doc@arabeyes.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
-"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "اضغط Esc للوضعية التفصيلية."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "النظام يُقلع..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "النظام يُعلَّق..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "النظام يُطفأ..."
-
diff --git a/po/as.po b/po/as.po
deleted file mode 100644
index 75d14d0..0000000
--- a/po/as.po
+++ /dev/null
@@ -1,32 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Free Software Foundation, Inc.
-# SUNARAM PATIR <lkpatir@yahoo.co.in>, 2004.
-#
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash VERSION\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2004-11-07 17:00+0530\n"
-"Last-Translator: SUNARAM PATIR <lkpatir@yahoo.co.in>\n"
-"Language-Team: ASSAMESE <>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "সবিশেষ জানিবলৈ Esc টিগক |"
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "চিচ্টেম বুট হৈছে..."
-
-#: tmp/splash.sh:208
-#, fuzzy
-msgid "Suspending the system..."
-msgstr "চিচ্টেম বুট হৈছে..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "চিচ্টেম বন্ধ হৈছে..."
diff --git a/po/az.po b/po/az.po
deleted file mode 100644
index f07c92a..0000000
--- a/po/az.po
+++ /dev/null
@@ -1,32 +0,0 @@
-# bootsplash.po faylının Azərbaycan dilinə tərcüməsi.
-# Copyright (C) 2003 Free Software Foundation, Inc.
-# Mətin Əmirov <metin@karegen.com>, 2003.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash 1.0\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2003-08-30 17:03+0200\n"
-"Last-Translator: Mətin Əmirov <metin@karegen.com>\n"
-"Language-Team: Azerbaijani <gnome@azitt.com>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Təfsilatlı mod üçün Esc düyməsinə basın."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Sistem açılır..."
-
-#: tmp/splash.sh:208
-#, fuzzy
-msgid "Suspending the system..."
-msgstr "Sistem açılır..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Sistem söndürülür..."
diff --git a/po/bg.po b/po/bg.po
deleted file mode 100644
index fb4c493..0000000
--- a/po/bg.po
+++ /dev/null
@@ -1,43 +0,0 @@
-# translation of bootsplash.po to Bulgarian
-# Copyright (C) 2003 Free Software Foundation, Inc.
-#
-# Boyan Ivanov <boyan17@bulgaria.com>, 2003.
-# Rossen Karpuzov gustav to cointech dot net, 2009.
-# Kolio Kolev <kolio_kolev@biotronica.net>, 2009.
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2009-03-10 00:02+0200\n"
-"Last-Translator: Kolio Kolev <kolio_kolev@biotronica.net>\n"
-"Language-Team: Mandriva User Group - Bulgaria <mandriva-bg@googlegroups.com>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 0.3\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Натиснете Esc за режим с подробности."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Начално зареждане на системата..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "Преустановяване на системата..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Изключване на системата..."
-
-#~ msgid "yY"
-#~ msgstr "дДyY"
-
-#~ msgid "nN"
-#~ msgstr "нНnN"
-
-#~ msgid "cC"
-#~ msgstr "пПcC"
diff --git a/po/bn.po b/po/bn.po
deleted file mode 100644
index 31c49fe..0000000
--- a/po/bn.po
+++ /dev/null
@@ -1,32 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Free Software Foundation, Inc.
-# Jamil Ahmed <jamil@bengalinux.org>, 2004.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash VERSION\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2004-06-21 16:09+0600\n"
-"Last-Translator: Jamil Ahmed <jamil@bengalinux.org>\n"
-"Language-Team: Bangla <mdk-translation@bengalinux.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "বিস্তারিত দেখার জন্য Esc চাপুন।"
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "সিষ্টেম বুট করা হচ্ছে..."
-
-#: tmp/splash.sh:208
-#, fuzzy
-msgid "Suspending the system..."
-msgstr "সিষ্টেম বুট করা হচ্ছে..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "সিষ্টেম বন্ধ করা হচ্ছে..."
diff --git a/po/bootsplash.pot b/po/bootsplash.pot
deleted file mode 100644
index 00eeb99..0000000
--- a/po/bootsplash.pot
+++ /dev/null
@@ -1,32 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Free Software Foundation, Inc.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash VERSION\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=CHARSET\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr ""
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr ""
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr ""
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr ""
-
diff --git a/po/br.po b/po/br.po
deleted file mode 100644
index c64f9c6..0000000
--- a/po/br.po
+++ /dev/null
@@ -1,30 +0,0 @@
-# translation of bootsplash.po to breton
-# Copyright (C) 2003 Mandrakesoft
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2009-04-15 15:18+0200\n"
-"Last-Translator: Thierry Vignaud <tvignaud@mandrakesoft.com>\n"
-"Language-Team: Breton <cooker-i18n@linux-mandrake.com>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1;plural=0\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Gwaskit <Esc> evit bezan klakenn."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "O c'hellañ ar reizhiad ..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "O lakaat ar reizhiad da gousket ..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "O lazhañ an ardivink ..."
diff --git a/po/bs.po b/po/bs.po
deleted file mode 100644
index cfba21b..0000000
--- a/po/bs.po
+++ /dev/null
@@ -1,34 +0,0 @@
-# translation of bootsplash-bs.po to Bosnian
-# Copyright (C) 2004 Free Software Foundation, Inc.
-# Vedran Ljubović <vljubovic@smartnet.ba>, 2004.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash-bs\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2004-02-28 11:15-0500\n"
-"Last-Translator: Vedran Ljubović <vljubovic@smartnet.ba>\n"
-"Language-Team: Bosnian <lokal@lugbih.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.3\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
-"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Pritisnite Esc za više informacija."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Pokrećem sistem..."
-
-#: tmp/splash.sh:208
-#, fuzzy
-msgid "Suspending the system..."
-msgstr "Pokrećem sistem..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Gasim sistem..."
diff --git a/po/ca.po b/po/ca.po
deleted file mode 100644
index 98858f2..0000000
--- a/po/ca.po
+++ /dev/null
@@ -1,34 +0,0 @@
-# translation of ca.po to Catalan
-# translation of bootsplash.po to Catalan
-# Copyright (C) 2003, 2004 Free Software Foundation, Inc.
-# Albert Astals Cid <astals11@terra.es>, 2003, 2004.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: ca\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2004-06-10 22:53+0200\n"
-"Last-Translator: Albert Astals Cid <astals11@terra.es>\n"
-"Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.3\n"
-"Plural-Forms: nplurals=2; plural=n!=1;\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Prem Esc pel mode detallat."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "S'està iniciant el sistema..."
-
-#: tmp/splash.sh:208
-#, fuzzy
-msgid "Suspending the system..."
-msgstr "S'està iniciant el sistema..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "S'està aturant el sistema..."
diff --git a/po/cs.po b/po/cs.po
deleted file mode 100644
index 6069866..0000000
--- a/po/cs.po
+++ /dev/null
@@ -1,34 +0,0 @@
-# Translation of cs.po to Czech
-# Copyright (C) 2007 Free Software Foundation, Inc.
-#
-# Radek Vybíral <Radek.Vybiral@vsb.cz>, 2003.
-# Michal Bukovjan <bukm@centrum.cz>, 2007.
-msgid ""
-msgstr ""
-"Project-Id-Version: cs\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2007-03-17 00:00+0100\n"
-"Last-Translator: Michal Bukovjan <bukm@centrum.cz>\n"
-"Language-Team: Czech <cs@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Stiskněte Esc pro režim s výpisy."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Zavádím systém..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "Uspávám systém..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Vypínám systém..."
-
diff --git a/po/cy.po b/po/cy.po
deleted file mode 100644
index 2633226..0000000
--- a/po/cy.po
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright (C) 2003 Mandrakesoft, Inc.
-# Rhoslyn Prys <rhoslyn.prys@meddal.org.uk>, 2003
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash VERSION\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2007-03-02 20:28-0000\n"
-"Last-Translator: Rhoslyn Prys <post@meddal.com>\n"
-"Language-Team: Cymraeg/Welsh <post@meddal.com>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Welsh\n"
-"X-Poedit-Country: UK\n"
-"Plural-Forms: nplurals=2; plural=(n == 2) ? 1 : 0;\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Pwyswch Esc am y fersiwn geiriol."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Cychwyn y system..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "Dal ar y system..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Cau'r system..."
diff --git a/po/da.po b/po/da.po
deleted file mode 100644
index b112fb1..0000000
--- a/po/da.po
+++ /dev/null
@@ -1,34 +0,0 @@
-# translation of da.po to dansk
-# translation of bootsplash.po to Danish
-# Copyright (C) 2003, 2007 Free Software Foundation, Inc.
-# Keld Simonsen <keld@dkuug.dk>, 2003, 2007.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: da\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2007-10-31 00:02+0100\n"
-"Last-Translator: Keld Simonsen <keld@dkuug.dk>\n"
-"Language-Team: dansk <dansk@dansk-gruppen.dk>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.10.2\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Tryk Esc for informativ tilstand."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Starter systemet op..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "Sætter systemet i dvale..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Lukker systemet ned..."
-
diff --git a/po/de.po b/po/de.po
deleted file mode 100644
index 1808857..0000000
--- a/po/de.po
+++ /dev/null
@@ -1,34 +0,0 @@
-# translation of bootsplash-de.po to deutsch
-# Copyright (C) 2007 Free Software Foundation, Inc.
-#
-# Peer Dunker <peer46@gmx.net>, 2003.
-# Nicolas Bauer <rastafarii@mandrivauser.de>, 2007, 2009.
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash-de\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2009-08-09 14:19+0200\n"
-"Last-Translator: \n"
-"Language-Team: German <kde-i18n-de@kde.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 1.0\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Für den Detailmodus Esc drücken"
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Das System wird gestartet..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "Das System in den Standbye-Betrieb fahren..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Das System wird heruntergefahren..."
-
diff --git a/po/el.po b/po/el.po
deleted file mode 100644
index 066e260..0000000
--- a/po/el.po
+++ /dev/null
@@ -1,34 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Free Software Foundation, Inc.
-# Μπαλάσκας Ευάγγελος (Balaskas Euaggelos) <ebalaskas@cs.teiath.gr>, 02 December 2003.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash VERSION\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2007-10-17 22:51+0200\n"
-"Last-Translator: nikos papadopoulos <231036448@freemail.gr>\n"
-"Language-Team: Greek <nls@tux.hellug.gr>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Poedit-Language: Greek\n"
-"X-Poedit-Country: GREECE\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Πατήστε το πλήκτρο Esc για αναλυτική οθόνη μηνυμάτων."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Εκκίνηση του συστήματος..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "Παύση του συστήματος..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Τερματισμός του συστήματος..."
-
diff --git a/po/eo.po b/po/eo.po
deleted file mode 100644
index 6590e2d..0000000
--- a/po/eo.po
+++ /dev/null
@@ -1,32 +0,0 @@
-# translation of eo.po to Esperanto
-# Copyright (C) 2004 Free Software Foundation, Inc.
-#
-# Wilhelm Luttermann <vlutermano@free.fr>, 2004.
-# Vilhelmo Lutermano <vlutermano@free.fr>, 2007.
-msgid ""
-msgstr ""
-"Project-Id-Version: eo\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2007-12-11 23:19+0100\n"
-"Last-Translator: Vilhelmo Lutermano <vlutermano@free.fr>\n"
-"Language-Team: Esperanto <eo@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Alklaku Esc por babilema moduso."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Mi startigas la sistemon..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "Mi suspendas la sistemon..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Mi finas la sistemon..."
diff --git a/po/es.po b/po/es.po
deleted file mode 100644
index 835e858..0000000
--- a/po/es.po
+++ /dev/null
@@ -1,41 +0,0 @@
-# translation of es.po to Español
-# Copyright (C) 2003 Mandrakesoft
-# Fabian Mandelbaum <fmandelbaum@gmail.com>, 2003-2008
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: es\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2008-03-25 11:16-0300\n"
-"Last-Translator: Fabian Mandelbaum <fmandelbaum@gmail.com>\n"
-"Language-Team: Español <es@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.1\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Presione Esc para modo detallado."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Iniciando el sistema..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "Suspendiendo el sistema..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Deteniendo el sistema..."
-
-#~ msgid "yY"
-#~ msgstr "yYoO"
-
-#~ msgid "nN"
-#~ msgstr "nN"
-
-#~ msgid "cC"
-#~ msgstr "cC"
diff --git a/po/et.po b/po/et.po
deleted file mode 100644
index b318f71..0000000
--- a/po/et.po
+++ /dev/null
@@ -1,32 +0,0 @@
-# Translation of bootsplash.po to Estonian.
-# Copyright (C) 2003 Free Software Foundation, Inc.
-# Marek Laane <bald@starman.ee>, 2003-2005,2007.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2007-02-28 12:06+0200\n"
-"Last-Translator: Marek Laane <bald@starman.ee>\n"
-"Language-Team: Estonian <et@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.2\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Klahvi Esc vajutamine käivitab selgitava režiimi."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Süsteemi käivitamine..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "Süsteem puhkeseisundisse..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Süsteemi seiskamine..."
diff --git a/po/eu.po b/po/eu.po
deleted file mode 100644
index 784c7c9..0000000
--- a/po/eu.po
+++ /dev/null
@@ -1,35 +0,0 @@
-# translation of bootsplash.po to Euskara
-# KDE: EUSKERA TRANSLATION
-# Copyright (C) 2003, 2004, 2007 Free Software Foundation, Inc.
-#
-# Iñigo Salvador Azurmendi <xalba@euskalnet.net>, 2003.
-# Iñigo Salvador Azurmendi <xalba@euskalnet.net>, 2004, 2007.
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2007-08-08 13:39+0200\n"
-"Last-Translator: Iñigo Salvador Azurmendi <xalba@euskalnet.net>\n"
-"Language-Team: Euskara <eu@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Sakatu Esc modu berritsurako."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Sistema abiarazten..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "Sistema esekitzen..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Sistema itzaltzen..."
-
diff --git a/po/fa.hack b/po/fa.hack
deleted file mode 100644
index 38f726d..0000000
--- a/po/fa.hack
+++ /dev/null
@@ -1,37 +0,0 @@
-# translation of bootsplash.po to Persian
-# Copyright (C) 2003 Free Software Foundation, Inc.
-# Abbas Izad <abbasizad@hotmail.com>, 2003
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash\n"
-"POT-Creation-Date: 2001-03-02 09:00+0100\n"
-"PO-Revision-Date: 2003-08-14 00:14+0200\n"
-"Last-Translator: Abbas Izad <abbasizad@hotmail.com>\n"
-"Language-Team: Persian\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.1\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#: tmp/splash.sh:167
-msgid "Booting the system..."
-msgstr " ...ﻢﺘﺴﻴﺳ ﯼﺮﮔﺯﺎﻏﺁ ﻝﺎﺣ ﺭﺩ"
-
-#: tmp/splash.sh:172
-msgid "Press Esc for verbose mode."
-msgstr " .ﺪﻴﻫﺩ ﺭﺎﺸﻓ ﺍﺭ Esc ﻰﺤﻳﺮﺸﺗ ﺖﻟﺎﺣ ﻯﺍﺮﺑ"
-
-#: tmp/splash.sh:162
-msgid "Shutting down the system..."
-msgstr " ...ﻢﺘﺴﻴﺳ ﻥﺩﺮﻛ ﺽﻮﻣﺎﺧ ﻝﺎﺣ ﺭﺩ"
-
-#~ msgid "yY"
-#~ msgstr "yY"
-
-#~ msgid "nN"
-#~ msgstr "nN"
-
-#~ msgid "cC"
-#~ msgstr "cC"
diff --git a/po/fa.po b/po/fa.po
deleted file mode 100644
index bc77ec3..0000000
--- a/po/fa.po
+++ /dev/null
@@ -1,42 +0,0 @@
-# translation of bootsplash.po to Persian
-# Copyright (C) 2003 Free Software Foundation, Inc.
-# Abbas Izad <abbasizad@hotmail.com>, 2003
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2003-08-14 00:14+0200\n"
-"Last-Translator: Abbas Izad <abbasizad@hotmail.com>\n"
-"Language-Team: Persian\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.1\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "برای حالت تشریحی Esc را فشار دهید."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "در حال آغازگری سیستم..."
-
-#: tmp/splash.sh:208
-#, fuzzy
-msgid "Suspending the system..."
-msgstr "در حال آغازگری سیستم..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "در حال خاموش کردن سیستم..."
-
-#~ msgid "yY"
-#~ msgstr "yY"
-
-#~ msgid "nN"
-#~ msgstr "nN"
-
-#~ msgid "cC"
-#~ msgstr "cC"
diff --git a/po/fi.po b/po/fi.po
deleted file mode 100644
index ca5265b..0000000
--- a/po/fi.po
+++ /dev/null
@@ -1,36 +0,0 @@
-# bootspash-fi.po - Finnish Translation
-#
-# Copyright (C) 2003 Mandrakesoft.
-#
-# Thomas Backlund <tmb@iki.fi>, 2003.
-# Thomas Backlund <tmb@mandrake.org>, 2003.
-# Anssi Hannula <anssi@mandriva.org>, 2007.
-msgid ""
-msgstr ""
-"Project-Id-Version: bootspash-fi - MDK Linux Release 10.0\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2007-09-27 16:18+0300\n"
-"Last-Translator: Anssi Hannula <anssi@mandriva.org>\n"
-"Language-Team: Finnish <fi@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Esc näyttää kaikki viestit."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Käynnistetään järjestelmää..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "Siirrytään keskeytystilaan..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Sammutetaan järjestelmää..."
-
diff --git a/po/fr.po b/po/fr.po
deleted file mode 100644
index 8428645..0000000
--- a/po/fr.po
+++ /dev/null
@@ -1,32 +0,0 @@
-# translation of bootsplash.po to french
-# Copyright (C) 2003 Mandrakesoft
-#
-# Christophe Berthelé <cpjc@free.fr>, 2007.
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2007-02-28 08:56+0100\n"
-"Last-Translator: Christophe Berthelé <cpjc@free.fr>\n"
-"Language-Team: Français <cooker-i18n@mandrivalinux.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2;plural=(n>1);\n"
-"X-Generator: KBabel 1.11.4\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Appuyez sur Esc pour le mode détaillé."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Démarrage du système..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "Mise en veille du système..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Arrêt du système..."
diff --git a/po/fur.po b/po/fur.po
deleted file mode 100644
index d5af859..0000000
--- a/po/fur.po
+++ /dev/null
@@ -1,35 +0,0 @@
-# translation of bootsplash-fur.po to furlan
-# translation of bootsplash-fur.po to furlàn
-# Copyright (C) 2000,2003, 2004 Free Software Foundation, Inc.
-# Copyright (c) 2003 Mandrakesoft.
-# Andrea <graccoandrea@tin.it>, 2004.
-# Andrea Gracco <graccoandrea@tin.it>, 2004.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash-fur\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2004-05-17 14:20+0200\n"
-"Last-Translator: Andrea Gracco <graccoandrea@tin.it>\n"
-"Language-Team: furlan <gft@freelists.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.3\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Frache Esc par ve plui informazions."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Inviament dal sisteme..."
-
-#: tmp/splash.sh:208
-#, fuzzy
-msgid "Suspending the system..."
-msgstr "Inviament dal sisteme..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Distudament dal sisteme..."
diff --git a/po/gl.po b/po/gl.po
deleted file mode 100644
index 02dd6ad..0000000
--- a/po/gl.po
+++ /dev/null
@@ -1,37 +0,0 @@
-# translation of bootsplash to Galician
-# Copyright (C) 2004 Free Software Foundation, Inc.
-#
-#
-# Proxecto Trasno http://trasno.net
-#
-# Leandro Regueiro <leandro.regueiro@gmail.com>, 2004, 2008.
-# Alejo Pacin Jul <alejopj@gmail.com>, 2009.
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash.gl\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2009-03-02 18:52+0100\n"
-"Last-Translator: Alejo Pacin Jul <alejopj@gmail.com>\n"
-"Language-Team: Galician <cooker-i18n@mandrivalinux.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 0.2\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Prema Esc para entrar no modo detallado."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Arrincando o sistema..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "Suspendendo o sistema..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Apagando o sistema..."
-
diff --git a/po/gprintify.py b/po/gprintify.py
deleted file mode 100755
index b181249..0000000
--- a/po/gprintify.py
+++ /dev/null
@@ -1,84 +0,0 @@
-#!/usr/bin/python
-#---------------------------------------------------------------
-# Project : Mandrake Linux
-# Module : mandrake
-# File : gprintify.py
-# Version : $Id$
-# Author : Frederic Lepied
-# Created On : Tue Feb 6 18:39:14 2001
-# Purpose : rewrite $"bla $TOTO bla" in "bla %s bla" $TOTO
-# and echo => gprintf
-# and toto=$"sfdg" => toto=`gprintf "sdfg"`
-#---------------------------------------------------------------
-
-import sys
-import re
-
-echo_regex=re.compile('^(.*)echo +(-[en]+)?')
-i18n_regex=re.compile('^(.*?)\$"([^"]+)"(.*)$')
-var_regex=re.compile('(\$[a-zA-Z0-9_{}]+(?:\[\$[a-zA-Z0-9_{}]+\])?}?)')
-assign_regex=re.compile('^([^\[=]+)=(\s*)$')
-
-def process_start(start):
- res=echo_regex.findall(start)
- if res:
- if 'n' in res[0][1]:
- return [res[0][0] + 'gprintf "', '"', '']
- else:
- return [res[0][0] + 'gprintf "', '\\n"', '']
- else:
- res=assign_regex.findall(start)
- if res:
- return [res[0][0] + '=' + '`gprintf "', '"', '`']
- else:
- return [start + '"', '"', '', '']
-
-def process_vars(str, trail):
- var_res=var_regex.findall(str)
- if var_res:
- ret=var_regex.sub('%s', str) + trail
- for v in var_res:
- ret = ret + ' ' + v
- return ret
- else:
- return str + trail
-
-def process_line(line):
- res=i18n_regex.findall(line)
- if res:
- res=res[0]
- start=process_start(res[0])
- str=process_vars(res[1], start[1])
- end=res[2]
- final=start[0] + str + start[2]
-
- res=i18n_regex.findall(end)
- if res:
- res=res[0]
- start=process_start(res[0])
- str=process_vars(res[1], start[1])
- end=res[2]
- return final + start[0] + str + start[2] + end + '\n'
- else:
- return final + end + '\n'
- else:
- return line
-
-def process_file(filename):
- fd=open(filename, 'r')
- lines=fd.readlines()
- fd.close()
-
- fd=open(filename, 'w')
- for l in lines:
- fd.write(process_line(l))
- fd.close()
-
-def main(args):
- for f in args:
- process_file(f)
-
-if __name__ == '__main__':
- main(sys.argv[1:])
-
-# gprintify.py ends here
diff --git a/po/he.hack b/po/he.hack
deleted file mode 100644
index 0aafccb..0000000
--- a/po/he.hack
+++ /dev/null
@@ -1,34 +0,0 @@
-# translation of he.po to Hebrew
-# Copyright (C) 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
-#
-# el-cuco <cuco3001@yahoo.com>, 2003.
-# dovix <dovix2003@yahoo.com>, 2004, 2006.
-# Dotan Kamber <kamberd@yahoo.com>, 2007.
-msgid ""
-msgstr ""
-"Project-Id-Version: he\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2007-03-08 03:49+0200\n"
-"Last-Translator: Dotan Kamber <kamberd@yahoo.com>\n"
-"Language-Team: Hebrew\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: tmp/splash.sh:172
-msgid "Press Esc for verbose mode."
-msgstr "Esc שקמ לע ץוחלל שי תוטרופמ תכרעמ תועדוה תגצהל"
-
-#: tmp/splash.sh:167
-msgid "Booting the system..."
-msgstr " ...תכרעמה תא לחתאמ"
-
-msgid "Suspending the system..."
-msgstr " ...תכרעמה תא ההשמ"
-
-#: tmp/splash.sh:162
-msgid "Shutting down the system..."
-msgstr " ...תכרעמה תא הבכמ"
-
diff --git a/po/he.po b/po/he.po
deleted file mode 100644
index e186f7f..0000000
--- a/po/he.po
+++ /dev/null
@@ -1,35 +0,0 @@
-# translation of he.po to Hebrew
-# Copyright (C) 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
-#
-# el-cuco <cuco3001@yahoo.com>, 2003.
-# dovix <dovix2003@yahoo.com>, 2004, 2006.
-# Dotan Kamber <kamberd@yahoo.com>, 2007.
-msgid ""
-msgstr ""
-"Project-Id-Version: he\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2007-03-08 03:49+0200\n"
-"Last-Translator: Dotan Kamber <kamberd@yahoo.com>\n"
-"Language-Team: Hebrew\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "להצגת הודעות מערכת מפורטות יש ללחוץ על מקש Esc"
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "מאתחל את המערכת..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "משהה את המערכת..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "מכבה את המערכת..."
-
diff --git a/po/hi.hack b/po/hi.hack
deleted file mode 100644
index f7f5cba..0000000
--- a/po/hi.hack
+++ /dev/null
@@ -1,30 +0,0 @@
-# :1,$s/\(..\)ि/ि\1/g
-#
-# translation of bootsplash-hi.po to Hindi, India
-# Copyright (C) 2003 Free Software Foundation, Inc.
-# Dhananjaya Sharma <dysxhi@yahoo.co.in>, 2003
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash-hi\n"
-"POT-Creation-Date: 2001-03-02 09:00+0100\n"
-"PO-Revision-Date: 2003-08-15 22:40+0530\n"
-"Last-Translator: धनंजय शर्मा (Dhananjaya Sharma) <dysxhi@yahoo.co.in>\n"
-"Language-Team: िहन्दी, भारत (Hindi, India) <dysxhi@yahoo.co.in>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.1\n"
-"Plural-Forms: nplurals=2; plural=(n!=1);\n"
-
-#: tmp/splash.sh:167
-msgid "Booting the system..."
-msgstr "प्रणाली शुरू हो रही है..."
-
-#: tmp/splash.sh:172
-msgid "Press Esc for verbose mode."
-msgstr "वर्णनात्मक िवधा के िलए स्केप (ईएससी िचह्त) कुज़ीं को दबायें"
-
-#: tmp/splash.sh:162
-msgid "Shutting down the system..."
-msgstr "प्रणाली बन्द हो रही है..."
diff --git a/po/hi.po b/po/hi.po
deleted file mode 100644
index ad933f3..0000000
--- a/po/hi.po
+++ /dev/null
@@ -1,33 +0,0 @@
-# translation of bootsplash-hi.po to Hindi, India
-# Copyright (C) 2003 Free Software Foundation, Inc.
-# Dhananjaya Sharma, 2003
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash-hi\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2003-08-15 22:40+0530\n"
-"Last-Translator: धनंजय शर्मा (Dhananjaya Sharma)\n"
-"Language-Team: हिन्दी, भारत (Hindi, India)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.1\n"
-"Plural-Forms: nplurals=2; plural=(n!=1);\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "वर्णनात्मक विधा के लिए स्केप (ईएससी चिह्त) कुज़ीं को दबायें"
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "प्रणाली शुरू हो रही है..."
-
-#: tmp/splash.sh:208
-#, fuzzy
-msgid "Suspending the system..."
-msgstr "प्रणाली शुरू हो रही है..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "प्रणाली बन्द हो रही है..."
diff --git a/po/hr.po b/po/hr.po
deleted file mode 100644
index 778eafb..0000000
--- a/po/hr.po
+++ /dev/null
@@ -1,33 +0,0 @@
-# Translation of bootsplash to Croatian
-# Copyright (C) Croatian team
-# Translators: Matija Blagus <Matija.Blagus@public.srce.hr>,Vlatko Kosturjak <kost@linux.hr>,
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash 0\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2005-01-04 21:26+CET\n"
-"Last-Translator: auto\n"
-"Language-Team: Croatian <lokalizacija@linux.hr>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
-"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;;\n"
-"X-Generator: TransDict server\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Pritisnite ESC za mod s više detalja."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Bootam sistem..."
-
-#: tmp/splash.sh:208
-#, fuzzy
-msgid "Suspending the system..."
-msgstr "Bootam sistem..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Gasim računalo..."
diff --git a/po/hu.po b/po/hu.po
deleted file mode 100644
index 971c85b..0000000
--- a/po/hu.po
+++ /dev/null
@@ -1,34 +0,0 @@
-# translation of bootsplash to Hungarian
-# bootsplash-hu
-# Copyright (C) 2003, 2007 Free Software Foundation, Inc.
-#
-# Arpad Biro <biro.arpad gmail>, 2003, 2007.
-msgid ""
-msgstr ""
-"Project-Id-Version: hu\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2007-02-28 23:44+0100\n"
-"Last-Translator: Arpad Biro <biro.arpad gmail>\n"
-"Language-Team: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n!=1);\n"
-"X-Generator: KBabel 1.11.4\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Részletes információkért nyomja le az Esc billentyűt."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Rendszerindítás..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "A rendszer felfüggesztése..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "A rendszer leállítása..."
-
diff --git a/po/hy.po b/po/hy.po
deleted file mode 100644
index 6464c08..0000000
--- a/po/hy.po
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright (C) YEAR Free Software Foundation, Inc.
-# Norayr Chilingaryan <norik@hay.am>, 2004.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash VERSION\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2004-03-13 23:18+0300\n"
-"Last-Translator: Norayr Chilingaryan <norik@hay.am>\n"
-"Language-Team: hay.am <norik@hay.am>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n > 1;\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Սեղմեք Esc շատախոս ռեժիմ մտնելու համար"
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Համակարգը բեռնվում է..."
-
-#: tmp/splash.sh:208
-#, fuzzy
-msgid "Suspending the system..."
-msgstr "Համակարգը բեռնվում է..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Համակարգը անջատվում է..."
diff --git a/po/id.po b/po/id.po
deleted file mode 100644
index 4539c5e..0000000
--- a/po/id.po
+++ /dev/null
@@ -1,37 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Free Software Foundation, Inc.
-# Budi Rachmanto <rac@linux-mandrake.com>, 2001-2003
-# Willy Sudiarto Raharjo <willysr@gmail.com>, 2004 - 2007.
-# Erwien Samantha <erwiensamantha@gmail.com>, 2005.
-# Bayu <bayuart@yahoo.com>, 2005.
-# Ahmad Ramadhana <ahmad_ramadhana@yahoo.com.sg>, 2005.
-# Firdaus <dausnux@gmail.com>, 2005.
-# Sofian <sofianhanafi@yahoo.com>, 2005.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: 0.1\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2007-09-28 0:18+0700\n"
-"Last-Translator: Willy Sudiarto Raharjo <willysr@gmail.com>\n"
-"Language-Team: Indonesia <mdk-id@yahoogroups.com>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Tekan Esc untuk mode verbose."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Mem-boot sistem..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "Men-suspend sistem..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Mematikan sistem..."
diff --git a/po/is.po b/po/is.po
deleted file mode 100644
index f19ddd9..0000000
--- a/po/is.po
+++ /dev/null
@@ -1,33 +0,0 @@
-# Icelandic translation of bootsplash.po
-# Copyright (C) 2003, 2007, 2008 Free Software Foundation, Inc.
-#
-# Pjetur G. Hjaltason <pjetur@pjetur.net>, 2003, 2007, 2008.
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2008-01-29 17:44+0000\n"
-"Last-Translator: Pjetur G. Hjaltason <pjetur@pjetur.net>\n"
-"Language-Team: Icelandic <kde-isl@molar.is>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "ýtið á Esc fyrir nánari upplýsingar"
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Ræsi kerfið..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "Svæfi kerfið..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Stöðva kerfi..."
-
diff --git a/po/it.po b/po/it.po
deleted file mode 100644
index 7262013..0000000
--- a/po/it.po
+++ /dev/null
@@ -1,36 +0,0 @@
-# translation of bootsplash-it.po to Italian
-# translation of bootsplash-it.po to italiano
-# Copyright (C) 2000,2003, 2007 Free Software Foundation, Inc.
-# Copyright (c) 2003 Mandrakesoft.
-# Roberto Rosselli Del Turco <rosselli@ling.unipi.it>, 2003.
-# Andrea Celli <andrea.celli@libero.it>, 2007.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash-it\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2007-03-20 11:48+0100\n"
-"Last-Translator: Andrea Celli <andrea.celli@libero.it>\n"
-"Language-Team: Italian <kde-i18n-it@kde.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.10.2\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Premi Esc per avere più informazioni."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Avvio del sistema..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "Sospensione del sistema..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Spegnimento del sistema..."
-
diff --git a/po/ja.po b/po/ja.po
deleted file mode 100644
index d9ef163..0000000
--- a/po/ja.po
+++ /dev/null
@@ -1,33 +0,0 @@
-# translation of bootsplash.po to Japanese
-# Copyright (C) 2003 Free Software Foundation, Inc.
-# UTUMI Hirosi <*>, 2003.
-# Yukiko BANDO <ybando@k6.dion.ne.jp>, 2005, 2007.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2007-03-01 19:00+0900\n"
-"Last-Translator: Yukiko BANDO <ybando@k6.dion.ne.jp>\n"
-"Language-Team: Japanese <cooker-i18n@mandrivalinux.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.2\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Esc を押して詳細モードに切り替え"
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "システムを起動..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "システムをサスペンド..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "システムを終了..."
diff --git a/po/ka.po b/po/ka.po
deleted file mode 100644
index 20d23a6..0000000
--- a/po/ka.po
+++ /dev/null
@@ -1,32 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Free Software Foundation, Inc.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash VERSION\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2004-04-22 00:44+0400\n"
-"Last-Translator: Aiet Kolkhi <aiet@qartuli.net>\n"
-"Language-Team: Georgian <aiet@qartuli.com>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "დააჭირეთ Esc ღილაკს ინტერაქტიული რეჟიმისათვის"
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "მოგესალმებით! ვიძახებ სისტემას..."
-
-#: tmp/splash.sh:208
-#, fuzzy
-msgid "Suspending the system..."
-msgstr "მოგესალმებით! ვიძახებ სისტემას..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "ნახვამდის! ვკეტავ სისტემას..."
diff --git a/po/ku.po b/po/ku.po
deleted file mode 100644
index 57aceb0..0000000
--- a/po/ku.po
+++ /dev/null
@@ -1,34 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Free Software Foundation, Inc.
-# Kader DILSIZ <kader@kaderland.net>,2003.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash-ku\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2005-08-25 13:57+0100\n"
-"Last-Translator: Erdal Ronahi <erdal.ronahi@gmail.com>\n"
-"Language-Team: Kurdi <team@linux-ku.com>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural= n != 1\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Ji bo zêdetir zanibin pêle Esc bikin."
-
-# Ew jî aliyê http://www.kaderland.net ê hatiyê wêrgêrandîn.
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Sîstem vedibe..."
-
-# Ew jî aliyê http://www.kaderland.net ê hatiyê wêrgêrandîn.
-#: tmp/splash.sh:208
-#, fuzzy
-msgid "Suspending the system..."
-msgstr "Sîstem vedibe..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Sîstem tê girtin..."
diff --git a/po/ky.po b/po/ky.po
deleted file mode 100644
index 3ef7bcd..0000000
--- a/po/ky.po
+++ /dev/null
@@ -1,36 +0,0 @@
-# translation of bootsplash-ky.po to Kirghiz
-# Copyright (C) 2003,2004 Free Software Foundation, Inc.
-# Timur Jamakeev <ztimur@mail.ru>, 2004
-# Ilyas Bakirov <just_ilyas@yahoo.com>, 2008
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash-ky\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2008-11-14 17:07+0600\n"
-"Last-Translator: Ilyas Bakirov <just_ilyas@yahoo.com>\n"
-"Language-Team: Kirghiz\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.1\n"
-"X-Poedit-Language: Kirghiz\n"
-"X-Poedit-Country: Kyrgyzstan\n"
-"X-Poedit-SourceCharset: utf-8\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Кеңири маалымат режимине өтүү үчүн 'Esc' клавишасын басыңыз."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Система жүктөлүп жатат..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "Система уктоо режимине өтүп жатат..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Система өчүп жатат..."
-
diff --git a/po/lo.po b/po/lo.po
deleted file mode 100644
index bb18527..0000000
--- a/po/lo.po
+++ /dev/null
@@ -1,32 +0,0 @@
-# translation of bootsplash.po to Lao
-# Copyright (C) 2004 Free Software Foundation, Inc.
-# Thinnaphavong Siphachanh <laonuke@yahoo.com>, 2004.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2004-12-13 13:50+0700\n"
-"Last-Translator: Thinnaphavong Siphachanh <laonuke@yahoo.com>\n"
-"Language-Team: Lao <la@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.2\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "ກົດ Esc ເພື່ອເບິ່ງແບບ verbose"
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "ກຳລັງເປີດລະບົບ..."
-
-#: tmp/splash.sh:208
-#, fuzzy
-msgid "Suspending the system..."
-msgstr "ກຳລັງເປີດລະບົບ..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "ກຳລັງມອດລະບົບ..."
diff --git a/po/lt.po b/po/lt.po
deleted file mode 100644
index 42240e7..0000000
--- a/po/lt.po
+++ /dev/null
@@ -1,33 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Free Software Foundation, Inc.
-# Arvydas Svirka <arvydas@arvis.lt>, 2005.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2005-03-30 09:46+0200\n"
-"Last-Translator: Arvydas Svirka <arvydas@arvis.lt>\n"
-"Language-Team: Lithuanian\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%"
-"100<10 || n%100>=20) ? 1 : 2);\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Verbose būsenos įjungimui spauskite Esc."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Sistema įkeliama..."
-
-#: tmp/splash.sh:208
-#, fuzzy
-msgid "Suspending the system..."
-msgstr "Sistema įkeliama..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Sistema išjungiama..."
diff --git a/po/ltg.po b/po/ltg.po
deleted file mode 100644
index c5054b9..0000000
--- a/po/ltg.po
+++ /dev/null
@@ -1,31 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Free Software Foundation, Inc.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2007-09-27 20:52+0200\n"
-"Last-Translator: Māris Laureckis <marisl@e-no.lv>\n"
-"Language-Team: Latgalian <marisl@e-no.lv>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Daspīdit Esc detalizeitam režimam."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Sistema teik suokneita..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "Sistema teik īmydzynuota..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Sistemu puortrauc dorbu..."
-
diff --git a/po/lv.po b/po/lv.po
deleted file mode 100644
index c7a289b..0000000
--- a/po/lv.po
+++ /dev/null
@@ -1,42 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Free Software Foundation, Inc.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2003-08-14 00:36+0200\n"
-"Last-Translator: Vitauts Stočka <vit@dau.lv>\n"
-"Language-Team: Latvian <ll10nt@listes.murds.lv>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
-"2);\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Nospiediet Esc izvērstam režīmam."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Startēju sistēmu..."
-
-#: tmp/splash.sh:208
-#, fuzzy
-msgid "Suspending the system..."
-msgstr "Startēju sistēmu..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Aizveru sistēmu..."
-
-#~ msgid "yY"
-#~ msgstr "jJyY"
-
-#~ msgid "nN"
-#~ msgstr "nN"
-
-#~ msgid "cC"
-#~ msgstr "tTcC"
diff --git a/po/mk.po b/po/mk.po
deleted file mode 100644
index 5b57db2..0000000
--- a/po/mk.po
+++ /dev/null
@@ -1,35 +0,0 @@
-# translation of bootsplash-mk.po to Macedonian
-# translation of bootsplash.po to Macedonian
-# Copyright (C) 2004 Free Software Foundation, Inc.
-# Danko Ilik <danko@on.net.mk>, 2004.
-# Зоран Димовски <decata@mt.net.mk>, 2004.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash-mk\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2004-12-17 22:15+0100\n"
-"Last-Translator: Зоран Димовски <decata@mt.net.mk>\n"
-"Language-Team: Macedonian <ossm-members@hedona.on.net.mk>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.9\n"
-"Plural-Forms: nplurals=2; plural= n==1 || n%10==1 ? 0 : 1\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "За детален приказ притиснете Esc."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Подигање на системот..."
-
-#: tmp/splash.sh:208
-#, fuzzy
-msgid "Suspending the system..."
-msgstr "Подигање на системот..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Исклучување на системот..."
diff --git a/po/mn.po b/po/mn.po
deleted file mode 100644
index 9e7b398..0000000
--- a/po/mn.po
+++ /dev/null
@@ -1,33 +0,0 @@
-# translation of bootsplash.po to Mongolian
-# Copyright (C) 2004 Free Software Foundation, Inc.
-# Sanlig Badral <Badral@openmn.org>, 2004.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2004-01-02 01:37+0100\n"
-"Last-Translator: Sanlig Badral <Badral@openmn.org>\n"
-"Language-Team: Mongolian <openmn-core@lists.sf.net>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.2\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Нарийвчилан харах бол Esc товч дарна уу"
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Системийг эхлүүлж байна..."
-
-#: tmp/splash.sh:208
-#, fuzzy
-msgid "Suspending the system..."
-msgstr "Системийг эхлүүлж байна..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Системийг унтрааж байна..."
diff --git a/po/ms.po b/po/ms.po
deleted file mode 100644
index 4367463..0000000
--- a/po/ms.po
+++ /dev/null
@@ -1,32 +0,0 @@
-# bootsplash Bahasa Melayu (Malay) (ms).
-# Copyright (C) 2003 Free Software Foundation, Inc.
-# Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>, 2003
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2007-09-02 02:00+0800\n"
-"Last-Translator: Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>\n"
-"Language-Team: Malay <translation-team-ms@lists.sourceforge.net>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Tekan Esc untuk mod verbose."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Memboot sistem..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "Menggantung sistem..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Mematikan sistem..."
-
diff --git a/po/mt.po b/po/mt.po
deleted file mode 100644
index 9fc9c67..0000000
--- a/po/mt.po
+++ /dev/null
@@ -1,32 +0,0 @@
-# translation of bootsplash-mt.po to
-# Copyright (C) 2003 Free Software Foundation, Inc.
-# Ramon Casha <rcasha@waldonet.net.mt>, 2003
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash-mt\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2003-09-10 06:28+0200\n"
-"Last-Translator: Ramon Casha <rcasha@waldonet.net.mt>\n"
-"Language-Team: <mt@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.1\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Agħfas ESC għal modalità dettaljata."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Qed tittella’ s-sistema..."
-
-#: tmp/splash.sh:208
-#, fuzzy
-msgid "Suspending the system..."
-msgstr "Qed tittella’ s-sistema..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Qed tintefa s-sistema..."
diff --git a/po/nb.po b/po/nb.po
deleted file mode 100644
index d3e8866..0000000
--- a/po/nb.po
+++ /dev/null
@@ -1,36 +0,0 @@
-# translation of nb.po to Norwegian Bokmål
-# translation of nb.po to
-# Copyright (C) 2003, 2007, 2009 Free Software Foundation, Inc.
-#
-# Per Øyvind Karlsen <peroyvind@sintrax.net>, 2003.
-# Per Øyvind Karlsen <peroyvind@mandriva.org>, 2007.
-# Olav Dahlum <odahlum@gmail.com>, 2009.
-msgid ""
-msgstr ""
-"Project-Id-Version: nb\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2009-08-23 18:08+0200\n"
-"Last-Translator: Olav Dahlum <odahlum@gmail.com>\n"
-"Language-Team: Norwegian Bokmål <cooker-i18n@mandrivalinux.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Trykk «Escape» for informativt modus."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Starter systemet …"
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "Går i hvilemodus …"
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Slår av systemet …"
-
diff --git a/po/nl.po b/po/nl.po
deleted file mode 100644
index 8d4d326..0000000
--- a/po/nl.po
+++ /dev/null
@@ -1,33 +0,0 @@
-# translation of bootsplash-nl.po to Nederlands
-# Copyright (C) 2003, 2004 Free Software Foundation, Inc.
-# Hendrik-Jan Heins <hjh@passys.nl>, 2003.
-# Rob Teng <mandrake.tips@free.fr>, 2004.
-# Reinout van Schouwen <reinout@gmail.com>, 2007
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash-nl\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2007-03-17 21:44+0200\n"
-"Last-Translator: Reinout van Schouwen <reinout@gmail.com>\n"
-"Language-Team: Nederlands <vertaling@vrijschrift.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Druk op Esc voor uitgebreide informatie."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Systeem opstarten..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "Systeem in slaapstand brengen..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Systeem afsluiten..."
diff --git a/po/nn.po b/po/nn.po
deleted file mode 100644
index 4f4fd24..0000000
--- a/po/nn.po
+++ /dev/null
@@ -1,32 +0,0 @@
-# Translation of bootsplash to Norwegian Nynorsk
-#
-# Karl Ove Hufthammer <karl@huftis.org>, 2004, 2007.
-msgid ""
-msgstr ""
-"Project-Id-Version: nn\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2007-03-04 13:09+0100\n"
-"Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n"
-"Language-Team: Norwegian Nynorsk <i18n-nn@lister.ping.uio.no>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Trykk «Escape» for utvida meldingar."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Startar systemet …"
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "Går i kvilemodus …"
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Slår av systemet …"
-
diff --git a/po/pa_IN.po b/po/pa_IN.po
deleted file mode 100644
index 02ef8f0..0000000
--- a/po/pa_IN.po
+++ /dev/null
@@ -1,33 +0,0 @@
-# translation of bootsplash.po to Punjabi
-# Copyright (C) 2005 Free Software Foundation, Inc.
-# Jaswinder Singh Phulewala <jaswinderphulewala@yahoo.com>, 2005.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2005-02-26 08:25+0530\n"
-"Last-Translator: Jaswinder Singh Phulewala <jaswinderphulewala@yahoo.com>\n"
-"Language-Team: PLT <punlinux-i18n@list.sourceforge.net>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.9.1\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "ਸੁਨੇਹੇ ਵੇਖਣ ਲਈ Esc ਦਬਾਓ।"
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "ਸਿਸਟਮ ਬੂਟ ਕਰ ਰਿਹਾ ਹੈ..."
-
-#: tmp/splash.sh:208
-#, fuzzy
-msgid "Suspending the system..."
-msgstr "ਸਿਸਟਮ ਬੂਟ ਕਰ ਰਿਹਾ ਹੈ..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "ਸਿਸਟਮ ਬੰਦ ਹੋ ਰਿਹਾ ਹੈ..."
diff --git a/po/pl.po b/po/pl.po
deleted file mode 100644
index e406032..0000000
--- a/po/pl.po
+++ /dev/null
@@ -1,37 +0,0 @@
-# translation of bootsplash.po to
-# Polish translation of bootsplash
-# Copyright (C) 2003, 2005, 2007, 2009 Free Software Foundation, Inc.
-#
-# Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>, 2003.
-# Tomasz Bednarski <tomasz.bednarski@mandriva.pl>, 2005.
-# Tomasz Bednarski - Mandriva Poland <tomasz.bednarski@mandriva.pl>, 2007.
-# Amazis.net sp. z o.o. - Tomasz Bednarski <tomasz.bednarski@amazis.pl>, 2009.
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2009-01-07 10:48+0100\n"
-"Last-Translator: Amazis.net sp. z o.o. - Tomasz Bednarski <tomasz.bednarski@amazis.pl>\n"
-"Language-Team: <pl@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
-"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Naciśnij Esc aby przejść do trybu informacyjnego"
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Uruchamianie systemu..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "Usypianie systemu..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Zamykanie systemu..."
-
diff --git a/po/pt.po b/po/pt.po
deleted file mode 100644
index 00b615f..0000000
--- a/po/pt.po
+++ /dev/null
@@ -1,36 +0,0 @@
-# translation of pt.po to Português
-# Copyright (C) 2003, 2004, 2007 Free Software Foundation, Inc.
-#
-# Jose Jorge <jose.jorge@oreka.com>, 2003.
-# Zé <mmodem00@netvisao.pt>, 2004.
-# Américo José Melo <mmodem00@netvisao.pt>, 2004.
-# Zé <mmodem00@gmail.com>, 2007.
-msgid ""
-msgstr ""
-"Project-Id-Version: pt\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2007-03-08 22:09+0000\n"
-"Last-Translator: Zé <mmodem00@gmail.com>\n"
-"Language-Team: Português <pt@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Prima Esc para modo detalhado."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "A iniciar o sistema..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "A suspender o sistema..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "A desligar o sistema..."
-
diff --git a/po/pt_BR.po b/po/pt_BR.po
deleted file mode 100644
index d129301..0000000
--- a/po/pt_BR.po
+++ /dev/null
@@ -1,36 +0,0 @@
-# translation of pt_BR.po to Brazilian portuguese
-# Copyright (C) 2003, 2007, 2009 Free Software Foundation, Inc.
-#
-# Clovis Nogueira Jr <linux_pt_BR@yahoogrupos.com.br>, 2003.
-# Carlinhos Cecconi <carlinux@terra.com.br>, 2003.
-# Felipe Arruda <felipemiguel@gmail.com>, 2007.
-# Sergio Rafael Lemke <sergio@mandriva.com.br>, 2009.
-msgid ""
-msgstr ""
-"Project-Id-Version: pt_BR\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2009-02-16 18:57-0300\n"
-"Last-Translator: Sergio Rafael Lemke <sergio@mandriva.com.br>\n"
-"Language-Team: Brazilian Portuguese <cooker-i18n@mandrivalinux.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 0.3\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Tecle ESC para modo texto."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Iniciando o Sistema..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "Suspendendo o Sistema..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Desligando o Sistema..."
-
diff --git a/po/ro.po b/po/ro.po
deleted file mode 100644
index 1e763b3..0000000
--- a/po/ro.po
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright (c) 1999-2009 Mandriva
-#
-# Vă rugăm să nu actualizaţi fișierul, cu excepția cazului în care sînteți
-# sigur de calitatea traducerii dumneavoastră, de gramatică și de ortografie.
-# Acestea din urmă sînt de prea multe ori aproximative.
-# Corectarea lor ulterioară nu are nici un alt rezultat decît acela de
-# pierdere de timp pentru toata lumea.
-#
-# VĂ RUGĂM SĂ RESPECTAȚI SEMNELE DE PUNCTUAȚIE ALE LIMBII ROMÂNE!
-#
-# Nu suprimați spațiul care urmează unui semn de punctuație de sfîrșit de
-# frază; trebuie respectată versiunea originală. În acest caz, este foarte
-# probabil ca programul să afișeze un mesaj la sfîrșit. Suprimînd acel spațiu,
-# cele două cuvintele vor fi afișate legat.
-#
-# Traduceți de manieră INTELIGENTĂ (de ce nu și prin comparație cu alte
-# traduceri ale acestui fișier în alte limbi) și nu cuvînt cu cuvînt. Unele
-# astfel de traduceri nu au nici un sens în limba română.
-#
-# ATENȚIE LA FONTURILE UTILIZATE! Pentru a reda corect diacriticele folosiți
-# disponerea tastaturii românească standard, codarea de caractere UTF-8 și
-# asigurați-vă că fonturile utilizate sînt cu virgulițe, NU CU SEDILE!
-# Exemplu:
-# font incorect (cu sedile): şŞ ţŢ
-# font corect (cu virgule): șȘ țȚ
-#
-# Pentru a vă asigura că folosiți fonturile corecte, vizitați:
-# http://i18n.ro/Fonturi_romanesti/testare
-#
-# Vă mulțumim pentru înțelegere.
-# Echipa de traducători,
-# www.Mandrivausers.ro
-#
-# Traducători de-a lungul timpului:
-#
-# Ovidiu CONSTANTIN <ovidiu.constantin@gmx.net>, 2003
-# Cristian Ionuț PÎRÎU <piriu.cristian@rdslink.ro>, 2008
-# Florin Cătălin RUSSEN <cfrussen@yahoo.co.uk>, 2009
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash\n"
-"Report-Msgid-Bugs-To: https://qa.mandriva.com\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2009-04-10 23:33+0100\n"
-"Last-Translator: Florin Cătălin RUSSEN <cfrussen@yahoo.co.uk>\n"
-"Language-Team: Mandrivausers.ro <cfrussen@yahoo.co.uk>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3;plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
-"2:1))\n"
-"X-Poedit-Language: Romanian\n"
-"X-Poedit-Country: ROMANIA\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Apăsați Esc pentru mod detaliat."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Se demarează sistemul..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "Sistemul intră în așteptare..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Se oprește sistemul..."
diff --git a/po/ru.po b/po/ru.po
deleted file mode 100644
index 4009dcd..0000000
--- a/po/ru.po
+++ /dev/null
@@ -1,35 +0,0 @@
-# translation of bootsplash-ru.po to Russian
-# This file is distributed under the same license as the PACKAGE package.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-#
-# Alice Lafox <alice@lafox.com.ua>, 2003.
-# Pavel Maryanov <acid_jack@ukr.net>, 2007.
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash-ru\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2007-06-16 16:49+0300\n"
-"Last-Translator: Pavel Maryanov <acid_jack@ukr.net>\n"
-"Language-Team: Russian <ru@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Нажмите 'Esc' для перехода в подробный режим."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Загрузка системы..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "Переход в спящий режим..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Завершение работы системы..."
-
diff --git a/po/sc.po b/po/sc.po
deleted file mode 100644
index ef525b0..0000000
--- a/po/sc.po
+++ /dev/null
@@ -1,34 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Free Software Foundation, Inc.
-# ANTONIO PISTIS <antonio.pistis@virgilio.it>, 2004.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2005-09-07 16:02+0100\n"
-"Last-Translator: Antoni Pistis <antonio.pistis@virgilio.it>\n"
-"Language-Team: Sardinian\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Sardinian\n"
-"X-Poedit-Country: ITALY\n"
-"X-Poedit-SourceCharset: utf-8\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Craca Esc po ndi sciri de prus."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Alluu su sistema..."
-
-#: tmp/splash.sh:208
-#, fuzzy
-msgid "Suspending the system..."
-msgstr "Alluu su sistema..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Studu su sistema..."
diff --git a/po/sk.po b/po/sk.po
deleted file mode 100644
index 04e0c00..0000000
--- a/po/sk.po
+++ /dev/null
@@ -1,30 +0,0 @@
-# Tibor Pittich <Tibor.Pittich@phuture.sk>, 2003
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2003-08-20 20:33+0100\n"
-"Last-Translator: Tibor Pittich <Tibor.Pittich@phuture.sk>\n"
-"Language-Team: Slovak <i18n@mandrake.sk>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Stlačte Esc ak chcete vidieť výpisy."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Systém sa spúšťa..."
-
-#: tmp/splash.sh:208
-#, fuzzy
-msgid "Suspending the system..."
-msgstr "Systém sa spúšťa..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Systém sa ukončuje..."
diff --git a/po/sl.po b/po/sl.po
deleted file mode 100644
index 811be5b..0000000
--- a/po/sl.po
+++ /dev/null
@@ -1,35 +0,0 @@
-# translation of bootsplash-sl.po to Slovenian
-# Copyright (C) 2003,2004, 2007 Free Software Foundation, Inc.
-#
-# Tadej Panjtar , 2003.
-# Gregor Pirnaver <gregor.pirnaver@siol.net>, 2004.
-# Jure Repinc <jlp@holodeck1.com>, 2007.
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash-sl\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2007-03-09 16:56+0100\n"
-"Last-Translator: Jure Repinc <jlp@holodeck1.com>\n"
-"Language-Team: Slovenian <sl@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
-"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
-"n%100==4 ? 2 : 3);\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Za zgovoren način pritisnite Esc."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Zaganjanje sistema ..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "Prehajanje v stanje pripravljenosti ..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Zaustavljanje sistema ..."
diff --git a/po/sq.po b/po/sq.po
deleted file mode 100644
index bd41849..0000000
--- a/po/sq.po
+++ /dev/null
@@ -1,41 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Free Software Foundation, Inc.
-# NAIM DAKA <naim70@freesurf.ch>, 2003.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2003-08-15 00:10+0100\n"
-"Last-Translator: NAIM DAKA <naim70@freesurf.ch>\n"
-"Language-Team: Albanain <LL@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Shtypeni Esc për mode detaje."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Rinisja e sistemit..."
-
-#: tmp/splash.sh:208
-#, fuzzy
-msgid "Suspending the system..."
-msgstr "Rinisja e sistemit..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Ndalja e sistemit..."
-
-#~ msgid "yY"
-#~ msgstr "yY"
-
-#~ msgid "nN"
-#~ msgstr "nN"
-
-#~ msgid "cC"
-#~ msgstr "cC"
diff --git a/po/sr.po b/po/sr.po
deleted file mode 100644
index c1d7fde..0000000
--- a/po/sr.po
+++ /dev/null
@@ -1,34 +0,0 @@
-# translation of bootsplash.po to serbian
-# Copyright (C) 2004 Free Software Foundation, Inc.
-# Toma Jankovic <webmaster@mandrake.co.yu>, 2004.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2004-02-01 14:51+0100\n"
-"Last-Translator: Toma Jankovic <webmaster@mandrake.co.yu>\n"
-"Language-Team: serbian <mdk@linux.rs.sr>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.2\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
-"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Притисните тастер Esc за детаљнији приказ."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Подижем систем...."
-
-#: tmp/splash.sh:208
-#, fuzzy
-msgid "Suspending the system..."
-msgstr "Подижем систем...."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Гасим систем..."
diff --git a/po/sr@Latn.po b/po/sr@Latn.po
deleted file mode 100644
index 250ff92..0000000
--- a/po/sr@Latn.po
+++ /dev/null
@@ -1,34 +0,0 @@
-# translation of bootsplash.po to serbian
-# Copyright (C) 2004 Free Software Foundation, Inc.
-# Toma Jankovic <webmaster@mandrake.co.yu>, 2004.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2004-02-01 14:51+0100\n"
-"Last-Translator: Toma Jankovic_<webmaster@mandrake.co.yu>\n"
-"Language-Team: serbian <mdk@linux.rs.sr>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.2\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
-"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Pritisnite taster Esc za detaljniji prikaz."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Podižem sistem...."
-
-#: tmp/splash.sh:208
-#, fuzzy
-msgid "Suspending the system..."
-msgstr "Podižem sistem...."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Gasim sistem..."
diff --git a/po/sv.po b/po/sv.po
deleted file mode 100644
index 97254fb..0000000
--- a/po/sv.po
+++ /dev/null
@@ -1,34 +0,0 @@
-# translation of bootsplash-sv.po to
-# Översättning av bootsplash-sv.po till Svenska
-# Copyright (C) 2003, 2007 Free Software Foundation, Inc.
-#
-# Mattias Newzella <newzella@linux.nu>, 2003.
-# Kenneth Krekula <kenneth.krekula@kiruna.se>, 2007.
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash-sv\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2007-03-20 19:25+0100\n"
-"Last-Translator: Kenneth Krekula <kenneth.krekula@kiruna.se>\n"
-"Language-Team: <sv@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Tryck på Esc för utförligt läge."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Startar systemet..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "Systemet går till viloläge..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Stänger av systemet..."
diff --git a/po/ta.hack b/po/ta.hack
deleted file mode 100644
index bf580c5..0000000
--- a/po/ta.hack
+++ /dev/null
@@ -1,31 +0,0 @@
-# converted to tscii then to pseudo-utf-8
-# iconv -f utf-8 -t tscii | iconv -f cp1252 -t utf-8
-#
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Free Software Foundation, Inc.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash VERSION\n"
-"POT-Creation-Date: 2001-03-02 09:00+0100\n"
-"PO-Revision-Date: 2004-03-04 22:22+0530\n"
-"Last-Translator: Badri Seshadri <bseshadri@yahoo.co.uk>\n"
-"Language-Team: Tamil <tamilinix@yahoogroups.com>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: tmp/splash.sh:167
-msgid "Booting the system..."
-msgstr "þÂí̾Çõ ¦¾¡¼í̸¢ÈÐ"
-
-#: tmp/splash.sh:172
-msgid "Press Esc for verbose mode."
-msgstr "Å¢Çì¸Á¡É ¯¨Ã¡¼ÖìÌ Esc ¦À¡ò¾¡¨É «Øò¾×õ"
-
-#: tmp/splash.sh:162
-msgid "Shutting down the system..."
-msgstr "þÂí̾Çõ ¿¢Úò¾ôÀθ¢ÈÐ..."
-
diff --git a/po/ta.po b/po/ta.po
deleted file mode 100644
index e40fa06..0000000
--- a/po/ta.po
+++ /dev/null
@@ -1,32 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Free Software Foundation, Inc.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash VERSION\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2004-03-04 22:22+0530\n"
-"Last-Translator: Badri Seshadri <bseshadri@yahoo.co.uk>\n"
-"Language-Team: Tamil <tamilinix@yahoogroups.com>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "விளக்கமான உரையாடலுக்கு Esc பொத்தானை அழுத்தவும்"
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "இயங்குதளம் தொடங்குகிறது"
-
-#: tmp/splash.sh:208
-#, fuzzy
-msgid "Suspending the system..."
-msgstr "இயங்குதளம் தொடங்குகிறது"
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "இயங்குதளம் நிறுத்தப்படுகிறது..."
diff --git a/po/tg.po b/po/tg.po
deleted file mode 100644
index ce47f33..0000000
--- a/po/tg.po
+++ /dev/null
@@ -1,43 +0,0 @@
-# translation of bootsplash-tg.po to Tajik
-# Copyright (C) 2003 Free Software Foundation, Inc.
-# Roger Kovacs, 2003
-# Dilshod Marupov <kct_tj@khujand.org>, 2003
-# Roger Kovacs, 2003
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash-tg\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2003-08-25 21:11-0500\n"
-"Last-Translator: Roger Kovacs\n"
-"Language-Team: Tajik\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.1\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Пахши Esc барои усули муфассал."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Пурборкунии систем..."
-
-#: tmp/splash.sh:208
-#, fuzzy
-msgid "Suspending the system..."
-msgstr "Пурборкунии систем..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Пахшкунии систем..."
-
-#~ msgid "yY"
-#~ msgstr "ҳҲ"
-
-#~ msgid "nN"
-#~ msgstr "нН"
-
-#~ msgid "cC"
-#~ msgstr "бБ"
diff --git a/po/th.po b/po/th.po
deleted file mode 100644
index fdc3e0c..0000000
--- a/po/th.po
+++ /dev/null
@@ -1,33 +0,0 @@
-# translation of bootsplash.po to Thai
-# Copyright (C) 2004 Free Software Foundation, Inc.
-# Narachai Sakorn <narachai@opentle.org>, 2004.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2004-10-06 17:28+0700\n"
-"Last-Translator: Narachai Sakorn <narachai@opentle.org>\n"
-"Language-Team: Thai <th@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.2\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "กด Esc สำหรับโหมด verbose"
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "กำลังเริ่มระบบ..."
-
-#: tmp/splash.sh:208
-#, fuzzy
-msgid "Suspending the system..."
-msgstr "กำลังเริ่มระบบ..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "กำลังปิดเครื่อง..."
diff --git a/po/tl.po b/po/tl.po
deleted file mode 100644
index ad244fc..0000000
--- a/po/tl.po
+++ /dev/null
@@ -1,33 +0,0 @@
-# translation of bootsplash-tl.po to Filipino
-# translation of bootsplash.po to Tagalog
-# Copyright (C) 2004, 2005 Free Software Foundation, Inc.
-# Arys P. Deloso <arys@deloso.org>, 2004, 2005.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash-tl\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2005-01-24 23:34+0000\n"
-"Last-Translator: Arys P. Deloso <arys@deloso.org>\n"
-"Language-Team: Filipino <salin@pandaypinoy.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.3.1\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Pindutin ang ESC para sa mensahe."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Pinapaandar ang sistema..."
-
-#: tmp/splash.sh:208
-#, fuzzy
-msgid "Suspending the system..."
-msgstr "Pinapaandar ang sistema..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Isinasara ang sistema..."
diff --git a/po/tr.po b/po/tr.po
deleted file mode 100644
index bc7a3da..0000000
--- a/po/tr.po
+++ /dev/null
@@ -1,36 +0,0 @@
-# Turkish translation of bootsplash.
-# Copyright (C) 2004 Free Software Foundation, Inc.
-#
-#
-# Ömer Fadıl USTA <omer_fad@hotmail.com>,2003,2004.
-# Atilla ÖNTAŞ <atilla_ontas@mandriva.org>, 2009.
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2009-01-21 21:56+0200\n"
-"Last-Translator: Atilla ÖNTAŞ <atilla_ontas@mandriva.org>\n"
-"Language-Team: Turkish <kde-i18n-doc@lists.kde.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;"
-"X-Generator: Lokalize 0.2\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Ayrıntılı kip için Esc tuşuna basın."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Sistem başlatılıyor..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "Sistem Askıya Alınıyor..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Sistem kapatılıyor..."
-
diff --git a/po/uk.po b/po/uk.po
deleted file mode 100644
index f0d92db..0000000
--- a/po/uk.po
+++ /dev/null
@@ -1,37 +0,0 @@
-# translation of bootsplash.po to ukrainian
-# $Id$
-# Copyright (C) 2003, 2004, 2005, 2007, 2008 Free Software Foundation, Inc.
-#
-# Taras Boychuk <btr1@torba.com>, 2003, 2004, 2005.
-# Taras Boychuk <btr1@ukrpost.net>, 2005.
-# Taras Boychuk <btr1@mail.ru>, 2007.
-# Taras Boychuk <btr0001@ukr.net>, 2008.
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2008-02-29 18:48+0200\n"
-"Last-Translator: Taras Boychuk <btr0001@ukr.net>\n"
-"Language-Team: ukrainian <translation@org.ua>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Натисніть Esc для детального перегляду."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Система завантажується..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "Система вимикається..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Система вимикається..."
-
diff --git a/po/ur.hack b/po/ur.hack
deleted file mode 100644
index 8f8fbf0..0000000
--- a/po/ur.hack
+++ /dev/null
@@ -1,32 +0,0 @@
-# translation of bootsplash.po to URDU
-# Copyright (C) 2004 Free Software Foundation, Inc.
-# azeem <azeemkhan@ciit.net.pk>, 2004
-#
-# NOTE: oddly, Urdu font nastaliq_unicode.ttf doesn't have keheh (U06A9)
-# but only arabic kaf (U0643), so the instances of those letters where
-# changed.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash\n"
-"POT-Creation-Date: 2001-03-02 09:00+0100\n"
-"PO-Revision-Date: 2004-06-21 14:03-0400\n"
-"Last-Translator: azeem <azeemkhan@ciit.net.pk>\n"
-"Language-Team: URDU <C@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.1\n"
-
-#: tmp/splash.sh:167
-msgid "Booting the system..."
-msgstr " ﮯﮬ ﺎﮬﺭ ﻮﮬ ﭦﻮﺑ ﻢﭩﺴﯿﺳ"
-
-#: tmp/splash.sh:172
-msgid "Press Esc for verbose mode."
-msgstr " ﭗﯿﻜﺳﺍ (\"Esc\") ﮯﻠﯿﻛ ﮈﻮﻣ ﺯﻮﺑﺭﻭ ﮮﺎﺑﺩ"
-
-#: tmp/splash.sh:162
-msgid "Shutting down the system..."
-msgstr " ﮯﮬ ﺎﮬﺭ ﻮﮬ ﻥﻭﺍﮉﭩﺷ ﻢﭩﺴﯿﺳ"
-
diff --git a/po/ur.po b/po/ur.po
deleted file mode 100644
index fbcdc8e..0000000
--- a/po/ur.po
+++ /dev/null
@@ -1,32 +0,0 @@
-# translation of bootsplash.po to URDU
-# Copyright (C) 2004 Free Software Foundation, Inc.
-# azeem <azeemkhan@ciit.net.pk>, 2004
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2004-06-21 14:03-0400\n"
-"Last-Translator: azeem <azeemkhan@ciit.net.pk>\n"
-"Language-Team: URDU <C@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.1\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "اسکیپ (\"Esc\" ) دباے وربوز موڈ کیلے"
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "سیسٹم بوٹ ھو رھا ھے "
-
-#: tmp/splash.sh:208
-#, fuzzy
-msgid "Suspending the system..."
-msgstr "سیسٹم بوٹ ھو رھا ھے "
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "سیسٹم شٹڈاون ھو رھا ھے "
diff --git a/po/uz.po b/po/uz.po
deleted file mode 100644
index 3128dd3..0000000
--- a/po/uz.po
+++ /dev/null
@@ -1,32 +0,0 @@
-# translation of bootsplash-uz@Lat.po to Uzbek
-# Copyright (C) 2003 Free Software Foundation, Inc.
-# Mashrab Kuvatov <kmashrab@uni-bremen.de>, 2003
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash-uz\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2005-08-03 17:45+0200\n"
-"Last-Translator: Mashrab Kuvatov <kmashrab@uni-bremen.de>\n"
-"Language-Team: Uzbek <kmashrab@uni-bremen.de>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.1\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Batafsil ma'lumot uchun Esc tugmasini bosing."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Kompyuter yuklanmoqda."
-
-#: tmp/splash.sh:208
-#, fuzzy
-msgid "Suspending the system..."
-msgstr "Kompyuter yuklanmoqda."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Kompyuter o'chirilmoqda."
diff --git a/po/uz@cyrillic.po b/po/uz@cyrillic.po
deleted file mode 100644
index baa37f1..0000000
--- a/po/uz@cyrillic.po
+++ /dev/null
@@ -1,32 +0,0 @@
-# translation of bootsplash-uz@.po to Uzbek
-# Copyright (C) 2003 Free Software Foundation, Inc.
-# Mashrab Kuvatov <kmashrab@uni-bremen.de>, 2003
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash-uz\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2005-08-03 17:45+0200\n"
-"Last-Translator: Mashrab Kuvatov <kmashrab@uni-bremen.de>\n"
-"Language-Team: Uzbek <kmashrab@uni-bremen.de>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.1\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Батафсил маълумот учун Esc тугмасини босинг."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Компьютер юкланмоқда."
-
-#: tmp/splash.sh:208
-#, fuzzy
-msgid "Suspending the system..."
-msgstr "Компьютер юкланмоқда."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Компьютер ўчирилмоқда."
diff --git a/po/vi.po b/po/vi.po
deleted file mode 100644
index 234f914..0000000
--- a/po/vi.po
+++ /dev/null
@@ -1,32 +0,0 @@
-# Vietnamese Translation For BootSplash.
-# Copyright (C) 2003 Free Software Foundation, Inc.
-# Trinh Minh Thanh <tmthanh@yahoo.com>, 2003.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: initscripts VERSION\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2003-08-30 10:55+0700\n"
-"Last-Translator: Trinh Minh Thanh <tmthanh@yahoo.com>\n"
-"Language-Team: Vietnamese <gnomevi-list@lists.sourceforge.net>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Nhấn Esc cho phương thức verbose."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Đang khởi động hệ thống..."
-
-#: tmp/splash.sh:208
-#, fuzzy
-msgid "Suspending the system..."
-msgstr "Đang khởi động hệ thống..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Đang tắt hệ thống..."
diff --git a/po/wa.po b/po/wa.po
deleted file mode 100644
index 302a342..0000000
--- a/po/wa.po
+++ /dev/null
@@ -1,43 +0,0 @@
-# wa.po file for the bootsplash package.
-# Copyright (C) 2003 Mandrakesoft.
-# Pablo Saratxaga <pablo@mandrakesoft.com>, 2003
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2003-08-09 09:00+0100\n"
-"Last-Translator: Pablo Saratxaga <pablo@mandrakesoft.com>\n"
-"Language-Team: Walon <linux-wa@walon.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n > 1;\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "Tchôkîz so Esc pol môde badjawe."
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "Enondant l' éndjole..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "Djocant l' éndjole..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "Distindant l' éndjole..."
-
-#~ msgid "yY"
-#~ msgstr "yYoOaAwW"
-
-#~ msgid "nN"
-#~ msgstr "nN"
-
-#~ msgid "cC"
-#~ msgstr "cC"
-
-#~ msgid "silent"
-#~ msgstr "taijheu"
diff --git a/po/xgettext_sh.py b/po/xgettext_sh.py
deleted file mode 100755
index e9342f4..0000000
--- a/po/xgettext_sh.py
+++ /dev/null
@@ -1,119 +0,0 @@
-#!/usr/bin/python
-# sh_xgettext
-# Arnaldo Carvalho de Melo <acme@conectiva.com.br>
-# Wed Mar 10 10:24:35 EST 1999
-# Copyright Conectiva Consultoria e Desenvolvimento de Sistemas LTDA
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-#
-# Changelog
-# Mon May 31 1999 Wanderlei Antonio Cavassin <cavassin@conectiva.com>
-# * option --initscripts
-
-
-from sys import argv, stderr, exit
-from string import find, split, strip
-from time import gmtime, strftime, time
-
-s = {}
-
-def xgettext(arq, tokens_i18n):
- line = 0
- f = open(arq, "r")
- while 1:
- l = f.readline()
- if not l: break
- line = line + 1
- if l[0:1] == '#': continue
- elif l[0:1] == '\n': continue
- else:
- for token in tokens_i18n:
- if not token[1]:
- pos = find(l, token[0] + ' $"')
- if pos == -1:
- pos = find(l, token[0] + ' "')
- else:
- pos = find(l, token[0] + ' "')
- if pos != -1:
- text = split(l[pos:], '"')[1]
- if not text: break
- if len(text) <= 2 or find(text, '$') != -1:
- continue
- if text[-1] == '\\':
- text = text[0:-1]
- if s.has_key(text):
- s[text].append((arq, line))
- else:
- s[text] = [(arq, line)]
- f.close()
-
-def print_header():
- print '# SOME DESCRIPTIVE TITLE.'
- print '# Copyright (C) YEAR Free Software Foundation, Inc.'
- print '# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.'
- print '#'
- print '#, fuzzy'
- print 'msgid ""'
- print 'msgstr ""'
- print '"Project-Id-Version: bootsplash VERSION\\n"'
- print strftime("\"POT-Creation-Date: %Y-%m-%d %H:%M+0000\\n\"",gmtime(time()))
- print '"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n"'
- print '"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n"'
- print '"Language-Team: LANGUAGE <LL@li.org>\\n"'
- print '"MIME-Version: 1.0\\n"'
- print '"Content-Type: text/plain; charset=CHARSET\\n"'
- print '"Content-Transfer-Encoding: 8bit\\n"'
- print ''
-
-def print_pot():
- print_header()
-
- for text in s.keys():
- print '#:',
- for p in s[text]:
- print '%s:%d' % p,
- if find(text, '%') != -1:
- print '\n#, c-format',
- print '\nmsgid "' + text + '"'
- print 'msgstr ""\n'
-
-def main():
- i18n_tokens = []
-### "echo" commands don't translate, so their contents must not be
-### included in the created *.pot file -- pablo@mandrakesoft.com
-# i18n_tokens.append(('echo', 0))
-# i18n_tokens.append(('echo -n', 0))
-# i18n_tokens.append(('echo -e', 0))
-# i18n_tokens.append(('echo -en', 0))
-# i18n_tokens.append(('echo -ne', 0))
- i18n_tokens.append(('action', 0))
- i18n_tokens.append(('failure', 0))
- i18n_tokens.append(('passed', 0))
- i18n_tokens.append(('runcmd', 0))
- i18n_tokens.append(('success', 0))
- i18n_tokens.append(('gprintf', 1))
- i18n_tokens.append(('/sbin/getkey -c $AUTOFSCK_TIMEOUT -m', 0))
-
- for a in argv[1:]:
-# xgettext(a, i18n_tokens)
- try:
- xgettext(a, i18n_tokens)
- except:
- stderr.write('error while processing "%s" \n' % a)
-
- print_pot()
-
-if __name__ == '__main__':
- main()
diff --git a/po/zh_CN.po b/po/zh_CN.po
deleted file mode 100644
index e569e50..0000000
--- a/po/zh_CN.po
+++ /dev/null
@@ -1,32 +0,0 @@
-# Simplified Chinese localization file for bootsplash.
-# Copyright (C) 2003 Free Software Foundation, Inc.
-# Shiyu Tang <shiyutang@netscape.net>, 2003.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootspalsh\n"
-"POT-Creation-Date: 2001-03-02 09:00+0100\n"
-"PO-Revision-Date: 2003-08-15 11:44+0800\n"
-"Last-Translator: Shiyu Tang <shiyutang@netscape.net>\n"
-"Language-Team: Mandrakelinux i18n Team <cooker-i18n@linux-mandrake.com>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "按 Esc 键以显示详细信息"
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "正在启动系统..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "正在挂起系统..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "正在关闭系统..."
-
diff --git a/po/zh_TW.po b/po/zh_TW.po
deleted file mode 100644
index 251103d..0000000
--- a/po/zh_TW.po
+++ /dev/null
@@ -1,36 +0,0 @@
-# translation of bootsplash.po to Chinese Traditional
-# Copyright (C) 2003 Free Software Foundation, Inc.
-# Hilbert <freehil@yahoo.com>, 2003
-# hilbert <freehil@yahoo.com>, 2003
-# Shiva Huang <shivahuang@gmail.com>, 2005
-# You-Cheng Hsieh <yochenhsieh@xuite.net>, 2007
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: bootsplash\n"
-"POT-Creation-Date: 2007-02-27 17:29+0000\n"
-"PO-Revision-Date: 2007-09-21 19:31+0800\n"
-"Last-Translator: You-Cheng Hsieh <yochenhsieh@gmail.com>\n"
-"Language-Team: Chinese Traditional <zh@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.0.1\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#: tmp/splash.sh:224
-msgid "Press Esc for verbose mode."
-msgstr "按下 Esc 顯示詳細訊息。"
-
-#: tmp/splash.sh:219
-msgid "Booting the system..."
-msgstr "系統啟動中..."
-
-#: tmp/splash.sh:208
-msgid "Suspending the system..."
-msgstr "系統休眠中..."
-
-#: tmp/splash.sh:203
-msgid "Shutting down the system..."
-msgstr "系統關閉中..."
-