diff --git a/app/src/main/java/net/helcel/beans/countries/GeoLoc.kt b/app/src/main/java/net/helcel/beans/countries/GeoLoc.kt index ebf1946..941c96d 100644 --- a/app/src/main/java/net/helcel/beans/countries/GeoLoc.kt +++ b/app/src/main/java/net/helcel/beans/countries/GeoLoc.kt @@ -1,10 +1,9 @@ package net.helcel.beans.countries - interface GeoLoc { enum class LocType(val txt: String) { - WORLD("World"), GROUP("Group"), CUSTOM_GROUP("Group"), COUNTRY("Country"), STATE("State"); + WORLD("Continents"), GROUP("Groups"), CUSTOM_GROUP("Groups"), COUNTRY("Countries"), STATE("Regions"); } val code: String @@ -14,5 +13,3 @@ interface GeoLoc { val type: LocType val children: Set } - -