Ignore:
Timestamp:
2010-02-08T17:26:01+01:00 (14 years ago)
Author:
mjulius
Message:
 
Location:
trunk/src/org/openstreetmap/josm/gui/preferences
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/preferences/DrawingPreference.java

    r2849 r2955  
    181181        colorTypeNone.setToolTipText(tr("All points and track segments will have the same color. Can be customized in Layer Manager."));
    182182        colorTypeVelocity.setToolTipText(tr("Colors points and track segments by velocity."));
    183         colorTypeDilution.setToolTipText(tr("Colors points and track segments by dilution of position (HDOP). Your capture device needs to logs that information."));
     183        colorTypeDilution.setToolTipText(tr("Colors points and track segments by dilution of position (HDOP). Your capture device needs to log that information."));
    184184
    185185        // color Tracks by Velocity Tune
  • trunk/src/org/openstreetmap/josm/gui/preferences/PluginPreference.java

    r2924 r2955  
    6868            sb.append(trn(
    6969                    "The following plugin has been downloaded <strong>successfully</strong>:",
    70                     "The following {0} plugins have been downloaded successfully:",
     70                    "The following {0} plugins have been downloaded <strong>successfully</strong>:",
    7171                    downloaded.size(),
    7272                    downloaded.size()
  • trunk/src/org/openstreetmap/josm/gui/preferences/PrefJPanel.java

    r2875 r2955  
    163163        editor.setText(
    164164                tr("<h1><a name=\"top\">Keyboard Shortcuts</a></h1>")+
    165                 tr("<p>Please note that shortcuts keys are assigned to the actions when JOSM is started. So you need to <b>restart</b> "
    166                         +"JOSM to see your changes.</p>")+
    167                         tr("<p>Furthermore, the shortcuts are activated when the actions are assigned to a menu entry of button for the first "
    168                                 +"time. So some of your changes may become active even without restart --- but also without collistion handling. "
    169                                 +"This is another reason to <b>restart</b> JOSM after making any changes here.</p>")+
    170                                 tr("<p>You may notice that the key selection list on the next page lists all keys that exist on all kinds of keyboards "
    171                                         +"Java knows about, not just those keys that exist on your keyboard. Please use only those values that correspond to "
    172                                         +"a real key on your keyboard. So if your keyboard has no ''Copy'' key (PC keyboard do not have them, Sun keyboards do), "
    173                                         +"the do not use it. Also there will be ''keys'' listed that correspond to a shortcut on your keyboard (e.g. '':''/Colon). "
    174                                         +"Please also do not use them, use the base key ('';''/Semicolon on US keyboards, ''.''/Period on German keyboards, ...) "
    175                                         +"instead. Not doing so may result in conflicts, as there is no way for JOSM to know that Ctrl+Shift+; and Ctrl+: "
    176                                         +"actually is the same thing on an US keyboard...</p>")+
    177                                         tr("<p>Thank you for your understanding</p>")+
    178                                         tr("<h1>Modifier Groups</h1>")+
    179                                         tr("<p>The last page lists the modifier keys JOSM will automatically assign to shortcuts. For every of the four kinds "
    180                                                 +"of shortcuts there are three alternatives. JOSM will try those alternative in the listed order when managing a "
    181                                                 +"conflict. If all alternatives would result in shortcuts that are already taken, it will assign a random shortcut "
    182                                                 +"instead.</p>")+
    183                                                 tr("<p>The pseudo-modifier ''disabled'' will disable the shortcut when encountered.</p>")
     165                tr("<p>Please note that shortcut keys are assigned to the actions when JOSM is started. So you need to <b>restart</b> "
     166                   +"JOSM to see your changes.</p>")+
     167                tr("<p>Furthermore, the shortcuts are activated when the actions are assigned to a menu entry of button for the first "
     168                   +"time. So some of your changes may become active even without restart --- but also without collision handling. "
     169                   +"This is another reason to <b>restart</b> JOSM after making any changes here.</p>")+
     170                tr("<p>You may notice that the key selection list on the next page lists all keys that exist on all kinds of keyboards "
     171                   +"Java knows about, not just those keys that exist on your keyboard. Please use only those values that correspond to "
     172                   +"a real key on your keyboard. So if your keyboard has no ''Copy'' key (PC keyboard do not have them, Sun keyboards do), "
     173                   +"then do not use it. Also there will be ''keys'' listed that correspond to a shortcut on your keyboard (e.g. '':''/Colon). "
     174                   +"Please also do not use them, use the base key ('';''/Semicolon on US keyboards, ''.''/Period on German keyboards, ...) "
     175                   +"instead. Not doing so may result in conflicts, as there is no way for JOSM to know that Ctrl+Shift+; and Ctrl+: "
     176                   +"actually is the same thing on an US keyboard...</p>")+
     177                tr("<p>Thank you for your understanding</p>")+
     178                tr("<h1>Modifier Groups</h1>")+
     179                tr("<p>The last page lists the modifier keys JOSM will automatically assign to shortcuts. For every of the four kinds "
     180                   +"of shortcuts there are three alternatives. JOSM will try those alternatives in the listed order when managing a "
     181                   +"conflict. If all alternatives would result in shortcuts that are already taken, it will assign a random shortcut "
     182                   +"instead.</p>")+
     183                tr("<p>The pseudo-modifier ''disabled'' will disable the shortcut when encountered.</p>")
    184184        );
    185185        editor.setCaretPosition(0); // scroll up
Note: See TracChangeset for help on using the changeset viewer.