getThirdTabTitle static method

String getThirdTabTitle()

Implementation

static String getThirdTabTitle() {
  switch (AppConfig.instance.appInUse) {
    case AppInUse.g:
      return AppTranslationConstants.directory;
    case AppInUse.e:
      return AppTranslationConstants.bookShop;
    case AppInUse.c:
      return AppTranslationConstants.directory;
    default:
      return AppTranslationConstants.shop;
  }
}