aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/enumerations/CacheSize.java
diff options
context:
space:
mode:
authorcampbeb <bpcampbell@gmail.com>2012-02-24 09:44:15 +0900
committercampbeb <bpcampbell@gmail.com>2012-02-24 09:44:15 +0900
commitd9e1279973f1b428e390845a7ba33b74970a5c13 (patch)
tree2d3c3f6f21a926c999d8c270a322734798ffaf35 /main/src/cgeo/geocaching/enumerations/CacheSize.java
parenta221f3a6a1e26ce11090b09c6a8db749ef5fb27d (diff)
downloadcgeo-d9e1279973f1b428e390845a7ba33b74970a5c13.zip
cgeo-d9e1279973f1b428e390845a7ba33b74970a5c13.tar.gz
cgeo-d9e1279973f1b428e390845a7ba33b74970a5c13.tar.bz2
Change label for unknown cache size - Unknown instead of Unknown Error
Diffstat (limited to 'main/src/cgeo/geocaching/enumerations/CacheSize.java')
-rw-r--r--main/src/cgeo/geocaching/enumerations/CacheSize.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/enumerations/CacheSize.java b/main/src/cgeo/geocaching/enumerations/CacheSize.java
index c0de75b..9b0a559 100644
--- a/main/src/cgeo/geocaching/enumerations/CacheSize.java
+++ b/main/src/cgeo/geocaching/enumerations/CacheSize.java
@@ -20,7 +20,7 @@ public enum CacheSize {
VIRTUAL("virtual", 0, R.string.cache_size_virtual),
NOT_CHOSEN("not chosen", 0, R.string.cache_size_notchosen),
OTHER("other", 0, R.string.cache_size_other),
- UNKNOWN("unknown", 0, R.string.err_unknown); // CacheSize not init. yet
+ UNKNOWN("unknown", 0, R.string.cache_size_unknown); // CacheSize not init. yet
public final String id;
public final int comparable;