Ignore:
Timestamp:
2014-02-17T21:05:58+01:00 (10 years ago)
Author:
simon04
Message:

see #9659 - History dialog: improve i18n strings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/history/VersionInfoPanel.java

    r6836 r6864  
    33
    44import static org.openstreetmap.josm.tools.I18n.tr;
     5import static org.openstreetmap.josm.tools.I18n.trc;
    56
    67import java.awt.BorderLayout;
     
    9192        lblChangesetComment = buildTextArea(tr("Changeset comment"));
    9293        lblChangesetSource = buildTextArea(tr("Changeset source"));
    93        
    94         lblComment = buildLabel(/*I18n: comment*/tr("<b>c</b>:"), tr("comment"), lblChangesetComment);
    95         lblSource = buildLabel(/*I18n: source*/tr("<b>s</b>:"), tr("source"), lblChangesetSource);
    96        
     94
     95        lblComment = buildLabel(trc("comment", "<b>c</b>:"), tr("Changeset comment"), lblChangesetComment);
     96        lblSource = buildLabel(trc("source", "<b>s</b>:"), tr("Changeset source"), lblChangesetSource);
     97
    9798        pnlChangesetComment = buildTextPanel(lblComment, lblChangesetComment);
    9899        pnlChangesetSource = buildTextPanel(lblSource, lblChangesetSource);
Note: See TracChangeset for help on using the changeset viewer.