diff options
author | Jan Holesovsky <kendy@suse.cz> | 2011-09-01 00:08:45 +0200 |
---|---|---|
committer | Jan Holesovsky <kendy@suse.cz> | 2011-09-01 00:10:02 +0200 |
commit | 2ba0a9ffb550d21d141f4608cfb6245c65406964 (patch) | |
tree | 66696100d3143752bd12726a0dc0cf73647af299 /helpcontent2/help-to-wiki.py | |
parent | fea60e681e86b3facc5885b848f6705eb8232175 (diff) |
Adapt to the translations repository.
Diffstat (limited to 'helpcontent2/help-to-wiki.py')
-rwxr-xr-x | helpcontent2/help-to-wiki.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helpcontent2/help-to-wiki.py b/helpcontent2/help-to-wiki.py index 36281ed08a..90b30982d1 100755 --- a/helpcontent2/help-to-wiki.py +++ b/helpcontent2/help-to-wiki.py @@ -90,11 +90,11 @@ os.system( "python to-wiki/getalltitles.py source/text > alltitles.csv" ) try: sdf_path = args[0] except: - sdf_path = '../../l10n/l10n/source' + sdf_path = '../../translations/unxlngx6.pro/misc/sdf-l10n' sys.stderr.write('Path to the .sdf files not provided, using "%s"\n'% sdf_path) # do the work for lang in langs: - wikiconv2.convert(generate_redirects, lang, '%s/%s/localize.sdf'% (sdf_path, lang)) + wikiconv2.convert(generate_redirects, lang, '%s/%s.sdf'% (sdf_path, lang)) # vim:set shiftwidth=4 softtabstop=4 expandtab: |