object Utils { fun getLanguage(locale: String) = locale.substringBefore('-') fun getRegion(locale: String) = locale.substringAfter('-') }