From f1d6b8a9d3c06f74e904959887cf043d09aff687 Mon Sep 17 00:00:00 2001 From: Dexter Morgan Date: Thu, 2 Jun 2011 20:51:50 +0000 Subject: Branch for updates --- wiz2fake_c.pl | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100755 wiz2fake_c.pl (limited to 'wiz2fake_c.pl') diff --git a/wiz2fake_c.pl b/wiz2fake_c.pl new file mode 100755 index 00000000..879f9539 --- /dev/null +++ b/wiz2fake_c.pl @@ -0,0 +1,50 @@ +#!/usr/bin/perl +use strict; +use XML::Parser; + + +sub wrap { + @_[0] =~ s/\\'/\\\\'/g; + @_[0] =~ s/\\q/\\\\q/g; + @_[0] =~ s/\\a/\\\\a/g; + @_[0] =~ s/\\n/\\\\n/g; +} + +sub load_wpo { + my ($tree, $tag, $page) = @_; + + foreach my $leaf (@$tree) { + if (ref($leaf) eq 'ARRAY') { + $page = load_wpo($leaf, $tag, $page); + } elsif (ref($leaf) eq 'HASH') { + # XML compatibility + wrap $leaf->{description}; + wrap $leaf->{helpText}; + wrap $leaf->{wizardTitle}; + wrap $leaf->{nextButtonText}; + $page->{$leaf->{wizardTitle}} = ""; + $page->{$leaf->{helpText}} = ""; + $page->{$leaf->{description}} = ""; + $page->{$leaf->{nextButtonText}} = ""; + } elsif (ref($leaf) =~ /\w\D/) { + $tag = $leaf; + } + } + $page; +} + +my $xmltree = XML::Parser->new(Style => 'Tree')->parsefile($ARGV[0]); +my $wpo = load_wpo($xmltree); + +print STDERR "$ARGV[0] => "; +my $fullname = $ARGV[0] . "_.c"; + +my $PO; +open($PO, "> $fullname"); + +foreach (keys %$wpo) { +# print "$_\n"; + $_ ne "" and print $PO qq(printf(_("$_"));\n); +} +close $PO; +print STDERR "$fullname\n"; -- cgit v1.2.1