diff options
| author | rsudev <rasch@munin-soft.de> | 2014-06-25 17:32:22 +0200 |
|---|---|---|
| committer | rsudev <rasch@munin-soft.de> | 2014-06-25 17:32:22 +0200 |
| commit | f5c757586bce707c4ddfda4ae00e7935096d3040 (patch) | |
| tree | e6371df5b348966b615bed7a5c8341995f514924 /main | |
| parent | e3824d900edb7825b8a00ad44a9472484ec3fb57 (diff) | |
| download | cgeo-f5c757586bce707c4ddfda4ae00e7935096d3040.zip cgeo-f5c757586bce707c4ddfda4ae00e7935096d3040.tar.gz cgeo-f5c757586bce707c4ddfda4ae00e7935096d3040.tar.bz2 | |
Fixes #4025, Usage of Mytery instead of Unknown in GPX exports
- makes 'Unknown Cache' again the main type, still understanding 'Mystery Cache'
Diffstat (limited to 'main')
| -rw-r--r-- | main/src/cgeo/geocaching/enumerations/CacheType.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/cgeo/geocaching/enumerations/CacheType.java b/main/src/cgeo/geocaching/enumerations/CacheType.java index 61ad2c2..e36f1fd 100644 --- a/main/src/cgeo/geocaching/enumerations/CacheType.java +++ b/main/src/cgeo/geocaching/enumerations/CacheType.java @@ -16,7 +16,7 @@ public enum CacheType { TRADITIONAL("traditional", "Traditional Cache", "32bc9333-5e52-4957-b0f6-5a2c8fc7b257", R.string.traditional, R.drawable.type_traditional), MULTI("multi", "Multi-cache", "a5f6d0ad-d2f2-4011-8c14-940a9ebf3c74", R.string.multi, R.drawable.type_multi), - MYSTERY("mystery", "Mystery Cache", "40861821-1835-4e11-b666-8d41064d03fe", R.string.mystery, R.drawable.type_mystery), + MYSTERY("mystery", "Unknown Cache", "40861821-1835-4e11-b666-8d41064d03fe", R.string.mystery, R.drawable.type_mystery), LETTERBOX("letterbox", "Letterbox hybrid", "4bdd8fb2-d7bc-453f-a9c5-968563b15d24", R.string.letterbox, R.drawable.type_letterbox), EVENT("event", "Event Cache", "69eb8534-b718-4b35-ae3c-a856a55b0874", R.string.event, R.drawable.type_event), MEGA_EVENT("mega", "Mega-Event Cache", "69eb8535-b718-4b35-ae3c-a856a55b0874", R.string.mega, R.drawable.type_mega), @@ -69,7 +69,7 @@ public enum CacheType { mappingGuid.put(ct.guid, ct); } // add old mystery type for GPX file compatibility - mappingPattern.put("Unknown Cache".toLowerCase(Locale.US), MYSTERY); + mappingPattern.put("Mystery Cache".toLowerCase(Locale.US), MYSTERY); FIND_BY_ID = Collections.unmodifiableMap(mappingId); FIND_BY_PATTERN = Collections.unmodifiableMap(mappingPattern); |
