Changeset 33940 in osm for applications


Ignore:
Timestamp:
2017-12-08T08:25:14+01:00 (7 years ago)
Author:
stoecker
Message:

fix double quotes parsing error

File:
1 edited

Legend:

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

    r33756 r33940  
    3939    my $val = $1;
    4040    $val =~ s/&/&/g;
     41    $val =~ s/"/\\"/g;
    4142    print "tr(\"$val\"); /* $line */\n";
    4243  }
     
    4546    my $val = $1;
    4647    $val =~ s/&/&/g;
     48    $val =~ s/"/\\"/g;
    4749    print "tr(\"$val\"); /* $line */\n";
    4850  }
Note: See TracChangeset for help on using the changeset viewer.