Ignore:
Timestamp:
2009-11-24T10:45:04+01:00 (14 years ago)
Author:
stoecker
Message:

i18n updated, fixed files to reduce problems when applying patches, fix #4017

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/help/HelpUtil.java

    r2389 r2512  
    1919    /**
    2020     * Replies the base wiki URL.
    21      * 
     21     *
    2222     * @return the base wiki URL
    2323     */
     
    2828    /**
    2929     * Replies the base wiki URL for help pages
    30      * 
     30     *
    3131     * @return the base wiki URL for help pages
    3232     */
     
    3737    /**
    3838     * Replies the URL on the wiki for an absolute help topic. The URL is encoded in UTF-8.
    39      * 
     39     *
    4040     * @param absoluteHelpTopic the absolute help topic
    4141     * @return the url
     
    5353    /**
    5454     * Replies the URL to the edit page for the absolute help topic.
    55      * 
     55     *
    5656     * @param absoluteHelpTopic the absolute help topic
    5757     * @return the URL to the edit page
     
    6666     * Extracts the relative help topic from an URL. Replies null, if
    6767     * no relative help topic is found.
    68      * 
     68     *
    6969     * @param url the url
    7070     * @return the relative help topic in the URL, i.e. "/Action/New"
     
    8282     * Extracts the absolute help topic from an URL. Replies null, if
    8383     * no absolute help topic is found.
    84      * 
     84     *
    8585     * @param url the url
    8686     * @return the absolute help topic in the URL, i.e. "/De:Help/Action/New"
     
    106106     *   <li>/De:Help if the current locale is a locale with language "de"</li>
    107107     * </ul>
    108      * 
     108     *
    109109     * @return the help topic prefix
    110110     * @see #getHelpTopicPrefix(Locale)
     
    120120     *   <li>/De:Help if the  locale is a locale with language "de"</li>
    121121     * </ul>
    122      * 
     122     *
    123123     * @param locale the locale. {@see Locale#ENGLISH} assumed, if null.
    124124     * @return the help topic prefix
     
    137137    /**
    138138     * Replies the absolute, localized help topic for the given topic.
    139      * 
     139     *
    140140     * Example: for a topic "/Dialog/RelationEditor" and the locale "de", this method
    141141     * replies "/De:Help/Dialog/RelationEditor"
    142      * 
     142     *
    143143     * @param topic the relative help topic. Home help topic assumed, if null.
    144144     * @param locale the locale. {@see Locale#ENGLISH} assumed, if null.
     
    164164     * Replies the absolute, localized help topic for the given topic and the
    165165     * current locale.
    166      * 
     166     *
    167167     * @param topic the relative help topic. Home help topic assumed, if null.
    168168     * @return the absolute, localized help topic
     
    176176    /**
    177177     * Replies the context specific help topic configured for <code>context</code>.
    178      * 
     178     *
    179179     * @return the help topic. null, if no context specific help topic is found
    180180     */
     
    208208     * Replies the global help action, if available. Otherwise, creates an instance
    209209     * of {@see HelpAction}.
    210      * 
     210     *
    211211     * @return
    212212     */
     
    221221    /**
    222222     * Makes a component aware of context sensitive help.
    223      * 
     223     *
    224224     * A relative help topic doesn't start with /Help and doesn't include a locale
    225225     * code. Example: /Dialog/RelationEditor is a relative help topic, /De:Help/Dialog/RelationEditor
    226226     * is not.
    227      * 
     227     *
    228228     * @param component the component  the component
    229229     * @param topic the help topic. Set to the default help topic if null.
     
    241241     * This is a simple marker method for help topic literals. If you declare a help
    242242     * topic literal in the source you should enclose it in ht(...).
    243      * 
     243     *
    244244     *  <strong>Example</strong>
    245245     *  <pre>
     
    248248     *     putValue("help", ht("/Dialog/RelationEditor"));
    249249     *  </pre>
    250      * 
    251      * 
     250     *
     251     *
    252252     * @param helpTopic
    253253     */
Note: See TracChangeset for help on using the changeset viewer.