Ignore:
Timestamp:
2011-07-16T21:10:43+02:00 (14 years ago)
Author:
stoecker
Message:

see #josm6227 - fix wrong quote escaping in strings

Location:
applications/editors/josm/plugins/public_transport/src/public_transport
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/public_transport/src/public_transport/GTFSImporterDialog.java

    r26168 r26345  
    452452    {
    453453      JOptionPane.showMessageDialog
    454       (null, tr("Can't parse a time from this string."), tr("Invalid value"),
     454      (null, tr("Can''t parse a time from this string."), tr("Invalid value"),
    455455       JOptionPane.ERROR_MESSAGE);
    456456      return false;
     
    477477    {
    478478      JOptionPane.showMessageDialog
    479       (null, tr("Can't parse a time from this string."), tr("Invalid value"),
     479      (null, tr("Can''t parse a time from this string."), tr("Invalid value"),
    480480       JOptionPane.ERROR_MESSAGE);
    481481      return false;
  • applications/editors/josm/plugins/public_transport/src/public_transport/StopImporterDialog.java

    r26168 r26345  
    614614    {
    615615      JOptionPane.showMessageDialog
    616       (null, tr("Can't parse a time from this string."), tr("Invalid value"),
     616      (null, tr("Can''t parse a time from this string."), tr("Invalid value"),
    617617       JOptionPane.ERROR_MESSAGE);
    618618      return false;
     
    639639    {
    640640      JOptionPane.showMessageDialog
    641       (null, tr("Can't parse a time from this string."), tr("Invalid value"),
     641      (null, tr("Can''t parse a time from this string."), tr("Invalid value"),
    642642       JOptionPane.ERROR_MESSAGE);
    643643      return false;
  • applications/editors/josm/plugins/public_transport/src/public_transport/TrackReference.java

    r26168 r26345  
    5656      {
    5757    JOptionPane.showMessageDialog
    58         (null, tr("The GPX file doesn't contain valid trackpoints. "
     58        (null, tr("The GPX file doesn''t contain valid trackpoints. "
    5959        + "Please use a GPX file that has trackpoints."), tr("GPX File Trouble"),
    6060     JOptionPane.ERROR_MESSAGE);
     
    110110        (stoplistTM.timeAt(e.getFirstRow()), e.getFirstRow(), 0);
    111111    JOptionPane.showMessageDialog
    112         (null, tr("Can't parse a time from this string."), tr("Invalid value"),
     112        (null, tr("Can''t parse a time from this string."), tr("Invalid value"),
    113113         JOptionPane.ERROR_MESSAGE);
    114114    return;
Note: See TracChangeset for help on using the changeset viewer.