Skip to content

Commit

Permalink
Re-add i18n
Browse files Browse the repository at this point in the history
  • Loading branch information
jdhoek committed May 5, 2020
1 parent 6131346 commit 73eb49c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/nl/jeroenhoek/josm/gridify/ui/GridifySettingsDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
import javax.swing.JLabel;
import java.awt.Dimension;

import static org.openstreetmap.josm.tools.I18n.tr;

//import nl.jeroenhoek.josm.gridify.ui.GridSizePanel.Nudge;

/**
Expand All @@ -24,8 +26,7 @@ public class GridifySettingsDialog extends ExtendedDialog {
// private SourceWayPanel sourceWayPanel;

public GridifySettingsDialog(InputData inputData, GridifySettings settings) {
// super(MainApplication.getMainFrame(), tr("Gridify preview"), tr("Gridify"), tr("Cancel"));
super(MainApplication.getMainFrame(), "Gridify preview", "Gridify", "Cancel");
super(MainApplication.getMainFrame(), tr("Gridify preview"), tr("Gridify"), tr("Cancel"));
this.inputData = inputData;
this.settings = settings;
}
Expand Down

0 comments on commit 73eb49c

Please sign in to comment.