From 7ed6e7f4fbbde532e3cc0c9f5ccaa0a114dfbee8 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Tue, 2 Jan 2001 22:42:09 +0000 Subject: Big i18n commit. From Conectiva, originally. --- po/xgettext_sh.py | 93 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 93 insertions(+) create mode 100644 po/xgettext_sh.py (limited to 'po/xgettext_sh.py') diff --git a/po/xgettext_sh.py b/po/xgettext_sh.py new file mode 100644 index 00000000..99b331b6 --- /dev/null +++ b/po/xgettext_sh.py @@ -0,0 +1,93 @@ +#!/usr/bin/python +# sh_xgettext +# Arnaldo Carvalho de Melo +# 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 +# * option --initscripts + + +from sys import argv +from string import find, split, strip + +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: + pos = find(l, token + ' "') + if pos != -1: + text = split(l[pos:], '"')[1] + if find (text, '$') != -1: + continue + if s.has_key(text): + s[text].append((arq, line)) + else: + s[text] = [(arq, line)] + f.close() + +def print_header(): + print 'msgid ""' + print 'msgstr ""' + print '"Project-Id-Version: \\n"' + print '"PO-Revision-Date: YYYY-MM-DD HH:MM TZO DST\\n"' + print '"Last-Translator: \\n"' + print '"Language-Team: \\n"' + print '"MIME-Version: 1.0\\n"' + print '"Content-Type: text/plain; charset=ISO-8859-1\\n"' + print '"Content-Transfer-Encoding: 8-bit\\n"\n' + +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 = [] + i18n_tokens.append('gprintf') + if '--initscripts' in argv: + i18n_tokens.append('action') + i18n_tokens.append('failure') + i18n_tokens.append('passed') + i18n_tokens.append('runcmd') + i18n_tokens.append('success') + argv.remove('--initscripts') + + for a in argv: + xgettext(a, i18n_tokens) + + print_pot() + +if __name__ == '__main__': + main() -- cgit v1.2.1