summaryrefslogtreecommitdiffstats
path: root/loader/simplemot
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-09-12 16:59:19 +0000
committerMatt Wilson <msw@redhat.com>1999-09-12 16:59:19 +0000
commitc8a45a63b6b31f74ae7c83e690b94cbf3c3e55ea (patch)
tree6b24661ec83f922194dd13da2ce2815251ad9222 /loader/simplemot
parentca0c6579981c990ec7242b36b2d6f7f74ae091db (diff)
downloadanaconda-c8a45a63b6b31f74ae7c83e690b94cbf3c3e55ea.tar.gz
anaconda-c8a45a63b6b31f74ae7c83e690b94cbf3c3e55ea.tar.xz
anaconda-c8a45a63b6b31f74ae7c83e690b94cbf3c3e55ea.zip
warning cleanups, language selection
Diffstat (limited to 'loader/simplemot')
-rwxr-xr-xloader/simplemot59
1 files changed, 59 insertions, 0 deletions
diff --git a/loader/simplemot b/loader/simplemot
new file mode 100755
index 000000000..467020be0
--- /dev/null
+++ b/loader/simplemot
@@ -0,0 +1,59 @@
+#!/usr/bin/perl
+
+$inone = 0;
+$intran = 0;
+$total = 0;
+while (<>) {
+ if (!$inone && /^msgid/) {
+ chop;
+ $str = substr($_, 7, length($_) - 8);
+ $inone = 1;
+ } elsif ($inone && /^"/) {
+ chop;
+ $str .= substr($_, 1, length($_) - 2);
+ } elsif ($inone) {
+ $inone = 0;
+
+ $str =~ s/\\n/\n/g;
+ $str =~ s/\\t/\t/g;
+ $str =~ s/\\"/"/g;
+
+ # the string is complete -- calculate a hash
+ $sum = 0;
+ $xor = 0;
+ for ($i = 0; $i < length($str); $i++) {
+ $char = ord(substr($str, $i, 1));
+ $sum += $char;
+ $xor ^= $char;
+ }
+
+ $total = ($sum << 16) | (($xor & 0xFF) << 8) | (length($str) & 0xFF);
+ }
+
+ if (!$intran && /^msgstr/) {
+ chop;
+ $tran = substr($_, 8, length($_) - 9);
+ $intran = 1;
+ } elsif ($intran && /^"/) {
+ chop;
+ $tran .= substr($_, 1, length($_) - 2);
+ } elsif ($intran) {
+ $intran = 0;
+
+ $tran =~ s/\\n/\n/g;
+ $tran =~ s/\\t/\t/g;
+ $tran =~ s/\\"/"/g;
+
+ if (!$total && $str) {
+ print STDERR "Missing string for $tran";
+ exit 1
+ } elsif ($str && $tran) {
+ print pack("Nn", $total, length($tran));
+ print $tran;
+
+ #if ($tran < 60) {
+ #printf STDERR ("0x%x %s\n", $total, $tran);
+ #}
+ }
+ }
+}