diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2000-10-03 22:17:16 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2000-10-03 22:17:16 +0000 |
commit | e8949df63ea00d5d0bf0d9763aa5d4f9de51abf7 (patch) | |
tree | 40892861e5441683375f55837283247b4fcda525 | |
parent | cd812f4939a1f1b2512a8474cb2a5da125a16567 (diff) | |
download | drakx-e8949df63ea00d5d0bf0d9763aa5d4f9de51abf7.tar drakx-e8949df63ea00d5d0bf0d9763aa5d4f9de51abf7.tar.gz drakx-e8949df63ea00d5d0bf0d9763aa5d4f9de51abf7.tar.bz2 drakx-e8949df63ea00d5d0bf0d9763aa5d4f9de51abf7.tar.xz drakx-e8949df63ea00d5d0bf0d9763aa5d4f9de51abf7.zip |
re-included i18n_compssUsers
-rw-r--r-- | perl-install/share/po/i18n_compssUsers | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/perl-install/share/po/i18n_compssUsers b/perl-install/share/po/i18n_compssUsers new file mode 100644 index 000000000..d37fdf3fd --- /dev/null +++ b/perl-install/share/po/i18n_compssUsers @@ -0,0 +1,25 @@ +#!/usr/bin/perl + +use lib "../.."; +use pkgs; +use common ":common"; + + +sub get { + my ($meta_class) = @_; + local *install_any::getFile = sub { + open GETFILE, "../compssUsers$meta_class" and *GETFILE; + }; + my (undef, undef, undef, $descr) = pkgs::readCompssUsers([{}], [], $meta_class); + %$descr; +} + +foreach (uniq(get(''), get('.desktop'))) { + s/"/\"/g; + print qq( +#: ../../share/compssUsers +msgid "$_" +msgstr "" +); +} + |