Ignore:
Timestamp:
2015-11-02T09:40:18+01:00 (9 years ago)
Author:
simon04
Message:

fix #12041 - Wrong message in relation member deletion confirmation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/I18n.java

    r8972 r8975  
    88import java.io.IOException;
    99import java.io.InputStream;
     10import java.lang.annotation.Retention;
     11import java.lang.annotation.RetentionPolicy;
    1012import java.net.URL;
    1113import java.nio.charset.StandardCharsets;
     
    3638 */
    3739public final class I18n {
     40
     41    /**
     42     * This annotates strings which do not permit a clean i18n. This is mostly due to strings
     43     * containing two nouns which can occur in singular or plural form.
     44     */
     45    @Retention(RetentionPolicy.SOURCE)
     46    public @interface QuirkyPluralString {
     47    }
    3848
    3949    private I18n() {
Note: See TracChangeset for help on using the changeset viewer.