diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/sisu/v3/po4a.rb | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/lib/sisu/v3/po4a.rb b/lib/sisu/v3/po4a.rb index c87da346..a1f4991a 100644 --- a/lib/sisu/v3/po4a.rb +++ b/lib/sisu/v3/po4a.rb @@ -77,7 +77,7 @@ module SiSU_po4a        r.gsub!(/\|en\|/,'|')        @lang_regx=%r{(?:#{r})}        if opt.fns =~/\S+?~#{@lang_regx}\.ss[mti]/ \ -      and opt.f_pth[:lng]!='en' +      and opt.f_pth[:lng]!=opt.lng_base          @@opt_src_=false          @@opt_trn=opt          @@md_trn=SiSU_Param::Parameters.new(opt).get @@ -114,7 +114,7 @@ module SiSU_po4a              SiSU_Screen::Ansi.new(@opt.cmd,@opt.fns,"#{path}/#{md.fnb}/#{md.fn[:plain]}").flow if @opt.cmd =~/[MV]/            end            if @opt.fns =~/\S+?~#{@lang_regx}\.ss[mti]/ \ -          or @opt.f_pth[:lng] !='en' +          or @opt.f_pth[:lng] !=opt.lng_base              opt_lang_trn_fn=fn              @dal_array_lang_translation=SiSU_DAL::Source.new(@opt,opt_lang_trn_fn).get # dal file drawn here              opt_lang_src_fn=if fn =~/\S+?~\S{2}(?:_\S{2})?\.ss[mti]/ @@ -124,7 +124,7 @@ module SiSU_po4a              transdir,srcdir=Dir.pwd,Dir.pwd              if Dir.pwd.to_s =~/\/#{@lang_regx}$/                transdir=Dir.pwd -              srcdir=transdir.gsub(/\/#{@lang_regx}$/,'/en') +              srcdir=transdir.gsub(/\/#{@lang_regx}$/,"/#{opt.lng_base}")                if FileTest.directory?(srcdir)                   Dir.chdir(srcdir)                end @@ -924,7 +924,7 @@ GSUB          @file=SiSU_Env::SiSU_file.new(md,fn)        end        def po4a                                                                #%pot output -        file_pot=(@md.opt.f_pth[:lng] =='en') \ +        file_pot=(@md.opt.f_pth[:lng] ==opt.lng_base) \          ? @file.write_file.pot \          : @file.write_file.po          @sisu=[] @@ -955,7 +955,7 @@ GSUB            require_relative 'git'                           # git.rb            git=SiSU_Git::Source.new(@md.opt)            git.create_file_structure_git unless FileTest.directory?(@file.output_path.pot_git.dir) -          if @md.opt.f_pth[:lng] =='en' +          if @md.opt.f_pth[:lng] ==opt.lng_base              cp(@file.place_file.pot.dir, @file.output_path.pot_git.dir)            else # naive, work on -->              cp(@file.place_file.po.dir, @file.output_path.po_git.dir) #unless FileTest.file?(@file.place_file.po_git.dir) | 
