Changeset 34390 in osm for applications/editors
- Timestamp:
- 2018-07-01T22:45:30+02:00 (6 years ago)
- Location:
- applications/editors/josm/plugins/MicrosoftStreetside/src/org/openstreetmap/josm/plugins/streetside
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/MicrosoftStreetside/src/org/openstreetmap/josm/plugins/streetside/cubemap/CubemapUtils.java
r34385 r34390 2 2 package org.openstreetmap.josm.plugins.streetside.cubemap; 3 3 4 import java.text.MessageFormat; 4 5 import java.util.HashMap; 5 6 import java.util.Map; … … 101 102 102 103 if (StreetsideProperties.DEBUGING_ENABLED.get()) { 103 logger.debug( I18n.tr("convertDecimal2Quaternary input: {0}", Long.toString(inputNum)));104 logger.debug(MessageFormat.format("convertDecimal2Quaternary input: {0}", Long.toString(inputNum))); 104 105 } 105 106 … … 114 115 115 116 if (StreetsideProperties.DEBUGING_ENABLED.get()) { 116 logger.debug( I18n.tr("convertDecimal2Quaternary output: {0}", res));117 logger.debug(MessageFormat.format("convertDecimal2Quaternary output: {0}", res)); 117 118 } 118 119 … … 125 126 126 127 if (StreetsideProperties.DEBUGING_ENABLED.get()) { 127 logger.debug( I18n.tr("convertQuaternary2Decimal input: {0}", inputNum));128 logger.debug(MessageFormat.format("convertQuaternary2Decimal input: {0}", inputNum)); 128 129 } 129 130 … … 148 149 149 150 if (StreetsideProperties.DEBUGING_ENABLED.get()) { 150 logger.debug( I18n.tr("convertQuaternary2Decimal output: {0}", res));151 logger.debug(MessageFormat.format("convertQuaternary2Decimal output: {0}", res)); 151 152 } 152 153 -
applications/editors/josm/plugins/MicrosoftStreetside/src/org/openstreetmap/josm/plugins/streetside/gui/imageinfo/ImageInfoPanel.java
r34385 r34390 105 105 gbc.gridwidth = 1; 106 106 gbc.gridheight = 2; 107 root.add(new JLabel( I18n.tr("Placeholder2 label")), gbc);107 root.add(new JLabel(("Placeholder2 label")), gbc); 108 108 gbc.gridy += 2; 109 109 gbc.gridheight = 1; 110 root.add(new JLabel( I18n.tr("Blah")), gbc);111 gbc.gridy++; 112 root.add(new JLabel( I18n.tr("Blee")), gbc);110 root.add(new JLabel(("Blah")), gbc); 111 gbc.gridy++; 112 root.add(new JLabel(("Blee")), gbc); 113 113 gbc.gridy++; 114 114 root.add(new JLabel(I18n.tr("Image key")), gbc);
Note:
See TracChangeset
for help on using the changeset viewer.