Changeset 32261 in osm for applications/editors
- Timestamp:
- 2016-06-15T11:46:46+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/pt_assistant
- Files:
-
- 4 added
- 3 deleted
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/pt_assistant
-
Property svn:ignore
set to
build
-
Property svn:ignore
set to
-
applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/gui/IncompleteMembersDownloadDialog.java
r32259 r32261 31 31 message = tr("The relation (id=" + id 32 32 + ") has incomplete members.\nThey need to be downloaded to proceed with validation of this relation.\nDo you want to download incomplete members?"); 33 checkbox = new JCheckBox(tr("Remember my choice and don't ask me again in this session")); 33 checkbox = new JCheckBox(tr("Remember my choice and don''t ask me again in this session")); 34 34 options = new String[2]; 35 35 options[0] = tr("Yes"); -
applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/gui/ProceedDialog.java
r32259 r32261 75 75 76 76 77 checkbox = new JCheckBox(tr("Remember my choice and don't ask me again in this session")); 77 checkbox = new JCheckBox(tr("Remember my choice and don''t ask me again in this session")); 78 78 panel.add(checkbox); 79 79 checkbox.setAlignmentX(Component.LEFT_ALIGNMENT); -
applications/editors/josm/plugins/pt_assistant/test/README
r32218 r32261 1 1 2 This directory includes the test resources for the turnrestictionsplugin.2 This directory includes the test resources for the pt-assistant plugin. 3 3 4 4 -
applications/editors/josm/plugins/pt_assistant/test/unit/org/openstreetmap/josm/plugins/pt_assistant/AbstractTest.java
r32218 r32261 1 package unit.org.openstreetmap.josm.plugins.pt_assistant;1 package org.openstreetmap.josm.plugins.pt_assistant; 2 2 3 3 import org.junit.BeforeClass; -
applications/editors/josm/plugins/pt_assistant/test/unit/org/openstreetmap/josm/plugins/pt_assistant/ImportUtils.java
r32218 r32261 1 package unit.org.openstreetmap.josm.plugins.pt_assistant;1 package org.openstreetmap.josm.plugins.pt_assistant; 2 2 3 3 /** -
applications/editors/josm/plugins/pt_assistant/test/unit/org/openstreetmap/josm/plugins/pt_assistant/TestUtil.java
r32218 r32261 1 package unit.org.openstreetmap.josm.plugins.pt_assistant;1 package org.openstreetmap.josm.plugins.pt_assistant; 2 2 3 3 import static org.junit.Assert.assertEquals; -
applications/editors/josm/plugins/pt_assistant/test/unit/org/openstreetmap/josm/plugins/pt_assistant/validation/GapTestTest.java
r32218 r32261 1 package unit.org.openstreetmap.josm.plugins.pt_assistant.validation;1 package org.openstreetmap.josm.plugins.pt_assistant.validation; 2 2 3 3 import static org.junit.Assert.assertEquals; … … 12 12 import org.openstreetmap.josm.plugins.pt_assistant.validation.GapTest; 13 13 14 import unit.org.openstreetmap.josm.plugins.pt_assistant.AbstractTest;15 import unit.org.openstreetmap.josm.plugins.pt_assistant.ImportUtils;14 import org.openstreetmap.josm.plugins.pt_assistant.AbstractTest; 15 import org.openstreetmap.josm.plugins.pt_assistant.ImportUtils; 16 16 17 17 public class GapTestTest extends AbstractTest { -
applications/editors/josm/plugins/pt_assistant/test/unit/org/openstreetmap/josm/plugins/pt_assistant/validation/PlatformAsWayTest.java
r32218 r32261 1 package unit.org.openstreetmap.josm.plugins.pt_assistant.validation;1 package org.openstreetmap.josm.plugins.pt_assistant.validation; 2 2 3 3 import static org.junit.Assert.assertEquals; … … 12 12 import org.openstreetmap.josm.plugins.pt_assistant.validation.GapTest; 13 13 14 import unit.org.openstreetmap.josm.plugins.pt_assistant.AbstractTest;15 import unit.org.openstreetmap.josm.plugins.pt_assistant.ImportUtils;14 import org.openstreetmap.josm.plugins.pt_assistant.AbstractTest; 15 import org.openstreetmap.josm.plugins.pt_assistant.ImportUtils; 16 16 17 17 public class PlatformAsWayTest extends AbstractTest{ -
applications/editors/josm/plugins/pt_assistant/test/unit/org/openstreetmap/josm/plugins/pt_assistant/validation/PlatformsFirstTestTest.java
r32218 r32261 1 package unit.org.openstreetmap.josm.plugins.pt_assistant.validation;1 package org.openstreetmap.josm.plugins.pt_assistant.validation; 2 2 3 3 import static org.junit.Assert.assertEquals; … … 12 12 import org.openstreetmap.josm.plugins.pt_assistant.validation.PlatformsFirstTest; 13 13 14 import unit.org.openstreetmap.josm.plugins.pt_assistant.AbstractTest;15 import unit.org.openstreetmap.josm.plugins.pt_assistant.ImportUtils;14 import org.openstreetmap.josm.plugins.pt_assistant.AbstractTest; 15 import org.openstreetmap.josm.plugins.pt_assistant.ImportUtils; 16 16 17 17 public class PlatformsFirstTestTest extends AbstractTest {
Note:
See TracChangeset
for help on using the changeset viewer.