Changeset 4045 in josm for trunk/src


Ignore:
Timestamp:
2011-04-20T15:31:14+02:00 (13 years ago)
Author:
stoecker
Message:

fix #6097 - i18n issues

Location:
trunk/src/org/openstreetmap/josm/actions
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/DownloadPrimitiveAction.java

    r3285 r4045  
    3737    public DownloadPrimitiveAction() {
    3838        super(tr("Download object..."), "downloadprimitive", tr("Download OSM object by ID."),
    39                 Shortcut.registerShortcut("system:download_primitive", tr("File: {0}", tr("Download Object...")), KeyEvent.VK_O, Shortcut.GROUP_MENU + Shortcut.GROUPS_ALT1), true);
     39                Shortcut.registerShortcut("system:download_primitive", tr("File: {0}", tr("Download object...")), KeyEvent.VK_O, Shortcut.GROUP_MENU + Shortcut.GROUPS_ALT1), true);
    4040        putValue("help", ht("/Action/DownloadObject"));
    4141    }
     
    7676        all.add(layer, gc);
    7777        ExtendedDialog dialog = new ExtendedDialog(Main.parent,
    78                 tr("Download Object"),
     78                tr("Download object"),
    7979                new String[] {tr("Download object"), tr("Cancel")}
    8080        );
  • trunk/src/org/openstreetmap/josm/actions/FullscreenToggleAction.java

    r3757 r4045  
    3333    public FullscreenToggleAction() {
    3434        super(
    35                 tr("Fullscreen View"),
     35                tr("Fullscreen view"),
    3636                null, /* no icon */
    3737                tr("Toggle fullscreen view"),
    38                 Shortcut.registerShortcut("menu:view:fullscreen", tr("Toggle Fullscreen view"),KeyEvent.VK_F11, Shortcut.GROUP_DIRECT),
     38                Shortcut.registerShortcut("menu:view:fullscreen", tr("Toggle fullscreen view"),KeyEvent.VK_F11, Shortcut.GROUP_DIRECT),
    3939                true /* register shortcut */
    4040        );
  • trunk/src/org/openstreetmap/josm/actions/JoinAreasAction.java

    r3844 r4045  
    14361436            stripTags(w);
    14371437        }
     1438        /* I18N: current action printed in status display */
    14381439        commitCommands(marktr("Remove tags from inner ways"));
    14391440    }
  • trunk/src/org/openstreetmap/josm/actions/MergeNodesAction.java

    r3757 r4045  
    6868                JOptionPane.showMessageDialog(
    6969                        Main.parent,
    70                         tr("Please select at least two nodes to merge or node that is close to another node."),
     70                        tr("Please select at least two nodes to merge or a node that is close to another node."),
    7171                        tr("Warning"),
    7272                        JOptionPane.WARNING_MESSAGE
  • trunk/src/org/openstreetmap/josm/actions/OpenLocationAction.java

    r3083 r4045  
    3737     */
    3838    public OpenLocationAction() {
     39        /* I18N: Command to download a specific location/URL */
    3940        super(tr("Open Location..."), "openlocation", tr("Open an URL."),
    4041                Shortcut.registerShortcut("system:open_location", tr("File: {0}", tr("Open Location...")), KeyEvent.VK_L, Shortcut.GROUP_MENU), true);
  • trunk/src/org/openstreetmap/josm/actions/SaveActionBase.java

    r3863 r4045  
    110110                ExtendedDialog dialog = new ExtendedDialog(
    111111                        Main.parent,
     112                        /* I18N: Display title of the window showing conflicts */
    112113                        tr("Conflicts"),
    113114                        new String[] {tr("Reject Conflicts and Save"), tr("Cancel")}
Note: See TracChangeset for help on using the changeset viewer.