Changeset 31033 in osm


Ignore:
Timestamp:
2015-02-22T15:00:26+01:00 (10 years ago)
Author:
stoecker
Message:

fix false detected string in trustosm plugin

Location:
applications/editors/josm/i18n
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/i18n/convplugins.pl

    r28990 r31033  
    2424      if($line =~ /name=\"[Pp]lugin.[Dd]escription\" +value=\"(.*)\"/)
    2525      {
     26        my $descr = $1;
     27        next if $descr eq '${plugin.description}';
    2628        $printed = 1;
    27         print "/* Plugin $plugin */\ntr(\"$1\");\n" if($plugin ne "myPluginName");
     29        print "/* Plugin $plugin */\ntr(\"$descr\");\n" if($plugin ne "myPluginName");
    2830      }
    2931      elsif($line =~ /project name=\"(.*?)\"/)
  • applications/editors/josm/i18n/launchpad.pl

    r30879 r31033  
    192192    getcredits();
    193193      #print $mech->status() ." - ". $mech->uri()."\n";
    194     $mech->submit_form(with_fields => {"email" => $user, "password" => $pwd});
     194    $mech->submit_form(form_id => "login-form", fields => {"email" => $user, "password" => $pwd});
    195195      #$mech->dump_headers();
    196196      #print $mech->status() ." - ". $mech->uri()."\n";
Note: See TracChangeset for help on using the changeset viewer.