Changeset 8975 in josm for trunk/src/org/openstreetmap/josm/tools
- Timestamp:
- 2015-11-02T09:40:18+01:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/I18n.java
r8972 r8975 8 8 import java.io.IOException; 9 9 import java.io.InputStream; 10 import java.lang.annotation.Retention; 11 import java.lang.annotation.RetentionPolicy; 10 12 import java.net.URL; 11 13 import java.nio.charset.StandardCharsets; … … 36 38 */ 37 39 public 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 } 38 48 39 49 private I18n() {
Note:
See TracChangeset
for help on using the changeset viewer.