prepareLocaleCustomPath method

String prepareLocaleCustomPath()

Implementation

String prepareLocaleCustomPath() {
  if (TGLocale.customPath.isNotEmpty) {
    if (TGLocale.customPath.endsWith("/")) {
      return TGLocale.customPath;
    } else {
      return "${TGLocale.customPath}/";
    }
  }
  return TGLocalization.LOCALE_PATH;
}