diff options
Diffstat (limited to 'po/xgettext_sh.py')
-rwxr-xr-x | po/xgettext_sh.py | 94 |
1 files changed, 0 insertions, 94 deletions
diff --git a/po/xgettext_sh.py b/po/xgettext_sh.py deleted file mode 100755 index 167ed5e0..00000000 --- a/po/xgettext_sh.py +++ /dev/null @@ -1,94 +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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -# -# Changelog -# Mon May 31 1999 Wanderlei Antonio Cavassin <cavassin@conectiva.com> -# * option --initscripts - - -from sys import argv -from string import find, split, strip -import re - -s = {} -pattern = re.compile('[ =]\$"') - -def xgettext(arq): - 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 match in pattern.finditer(l): - pos = match.start() - p1 = l.find('"',pos) + 1 - p2 = p1+1 - while 1: - p2 = l.find('"',p2) - if p2 == -1: - p2 = p1 - break - if l[p2-1] == '\\': - p2 = p2 + 1 - else: - break - text = l[p1:p2] - #text = split(l[pos:], '"')[1] - 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: <XX@li.org>\\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(): - for a in argv: - xgettext(a) - - print_pot() - -if __name__ == '__main__': - main() |