From c79381b9aa1c0ee8d9eee58caab5c7703ebe4342 Mon Sep 17 00:00:00 2001 From: Bo Peng Date: Fri, 23 Mar 2007 15:21:45 +0000 Subject: [PATCH] Tidy up po/lyx_pot.py, I did not 'svn add' the latest version of the script git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17527 a592a061-630c-0410-9148-cb99ea01b6c8 --- po/lyx_pot.py | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) diff --git a/po/lyx_pot.py b/po/lyx_pot.py index 9dc78f0874..2dd883aec5 100755 --- a/po/lyx_pot.py +++ b/po/lyx_pot.py @@ -18,7 +18,6 @@ # import sys, os, re, getopt - def relativePath(path, base): '''return relative path from top source dir''' # full pathname of path @@ -38,7 +37,6 @@ def ui_l10n(input_files, output, base): for src in input_files: input = open(src) for lineno, line in enumerate(input.readlines()): - # get lines that match ... if Submenu.match(line): (string,) = Submenu.match(line).groups() string = string.replace('_', ' ') @@ -67,7 +65,6 @@ def layouts_l10n(input_files, output, base): for src in input_files: input = open(src) for lineno, line in enumerate(input.readlines()): - # get lines that match ... if Style.match(line): (string,) = Style.match(line).groups() string = string.replace('_', ' ') @@ -96,11 +93,10 @@ def qt4_l10n(input_files, output, base): input = open(src) skipNextLine = False for lineno, line in enumerate(input.readlines()): - # looking for a line with + # skip the line after if skipNextLine: skipNextLine = False continue - # skip the line after if prop.match(line): skipNextLine = True continue @@ -138,21 +134,6 @@ def languages_l10n(input_files, output, base): output.close() -def processFiles(input_type, input_files, output, base): - '''Process files according to input_type''' - if input_type not in ['ui', 'layouts', 'qt4', 'languages'] or output is None: - print 'Wrong input type or output filename.' - sys.exit(1) - if input_type == 'ui': - ui_l10n(input_files, output, base) - elif input_type == 'layouts': - layouts_l10n(input_files, output, base) - elif input_type == 'qt4': - qt4_l10n(input_files, output, base) - else: - languages_l10n(input_files, output, base) - - Usage = ''' lyx_pot.py [-b|--base top_src_dir] [-o|--output output_file] [-h|--help] -t|--type input_type input_files -- 2.39.2