Changeset 22204 in osm for applications


Ignore:
Timestamp:
2010-07-06T17:42:20+02:00 (15 years ago)
Author:
bastik
Message:

'i18n fix'

Location:
applications/editors/josm/plugins/validator
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/validator/build.xml

    r22065 r22204  
    2626          ** update before publishing
    2727        -->
    28         <property name="commit.message" value="fixed josm bug 4220" />
     28        <property name="commit.message" value="i18n fix" />
    2929        <property name="plugin.main.version" value="3289" />
    3030
  • applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/tests/UntaggedNode.java

    r22043 r22204  
    7474                String value = tag.getValue();
    7575                if (contains(tag, "fixme") || contains(tag, "FIXME")) {
    76                     String msg = marktr("Has tag containing ''fixme'' or ''FIXME''"); // translation note: don't translate quoted words
     76                    /* translation note: don't translate quoted words */
     77                    String msg = marktr("Has tag containing ''fixme'' or ''FIXME''");
    7778                    errors.add(new TestError(this, Severity.OTHER, tr("Unconnected nodes without physical tags"),
    7879                                tr(msg), msg, UNTAGGED_NODE_FIXME, n));
     
    8384                int code = 0;
    8485                if (key.startsWith("note") || key.startsWith("comment") || key.startsWith("description")) {
    85                     msg = marktr("Has key ''note'' or ''comment'' or ''description''"); // translation note: don't translate quoted words
     86                    /* translation note: don't translate quoted words */
     87                    msg = marktr("Has key ''note'' or ''comment'' or ''description''");
    8688                    code = UNTAGGED_NODE_NOTE;
    8789                } else if (key.startsWith("created_by") || key.startsWith("converted_by")) {
    88                     msg = marktr("Has key ''created_by'' or ''converted_by''"); // translation note: don't translate quoted words
     90                    /* translation note: don't translate quoted words */
     91                    msg = marktr("Has key ''created_by'' or ''converted_by''");
    8992                    code = UNTAGGED_NODE_CREATED_BY;
    9093                } else if (key.startsWith("watch")) {
    91                     msg = marktr("Has key ''watch''"); // translation note: don't translate quoted words
     94                    /* translation note: don't translate quoted words */
     95                    msg = marktr("Has key ''watch''");
    9296                    code = UNTAGGED_NODE_WATCH;
    9397                } else if (key.startsWith("source")) {
    94                     msg = marktr("Has key ''source''"); // translation note: don't translate quoted words
     98                    /* translation note: don't translate quoted words */
     99                    msg = marktr("Has key ''source''");
    95100                    code = UNTAGGED_NODE_SOURCE;
    96101                }
Note: See TracChangeset for help on using the changeset viewer.