Add method for getting Country name to location utils
```kotlin val currentCountry: String get() = Locale.getAvailableLocales().find { locale -> locale.country.equals(currentCountry, ignoreCase = true) }?.displayCountry ?: currentCountry ```
issue