diff options
| -rw-r--r-- | main/res/values/strings.xml | 4 | ||||
| -rw-r--r-- | main/src/cgeo/geocaching/cgData.java | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/main/res/values/strings.xml b/main/res/values/strings.xml index b08ad5a..b7e1f8d 100644 --- a/main/res/values/strings.xml +++ b/main/res/values/strings.xml @@ -1005,8 +1005,8 @@ <string name="attribute_swamp_no">No swamp or marsh</string> <string name="attribute_hills_yes">Hilly area</string> <string name="attribute_hills_no">No hilly area</string> - <string name="attribute_easy_climbing_yes">Easy climbing</string> - <string name="attribute_easy_climbing_no">No easy climbing</string> + <string name="attribute_easy_climbing_yes">Lightweight climbing</string> + <string name="attribute_easy_climbing_no">No lightweight climbing</string> <string name="attribute_poi_yes">Point of interest</string> <string name="attribute_poi_no">No point of interest</string> <string name="attribute_moving_target_yes">Moving target</string> diff --git a/main/src/cgeo/geocaching/cgData.java b/main/src/cgeo/geocaching/cgData.java index 8a6d718..32d428a 100644 --- a/main/src/cgeo/geocaching/cgData.java +++ b/main/src/cgeo/geocaching/cgData.java @@ -678,8 +678,8 @@ public class cgData { // issue2662 OC: Leichtes Klettern / Easy climbing if (oldVersion < 67) { try { - db.execSQL("update " + dbTableAttributes + " set attribute = 'easy_climbing_yes' where geocode like 'O%' and attribute = 'climbing_yes'"); - db.execSQL("update " + dbTableAttributes + " set attribute = 'easy_climbing_no' where geocode like 'O%' and attribute = 'climbing_no'"); + db.execSQL("update " + dbTableAttributes + " set attribute = 'easy_climbing_yes' where geocode like 'OC%' and attribute = 'climbing_yes'"); + db.execSQL("update " + dbTableAttributes + " set attribute = 'easy_climbing_no' where geocode like 'OC%' and attribute = 'climbing_no'"); } catch (Exception e) { Log.e("Failed to upgrade to ver. 67", e); |
