Current File : /home/digitaw/www/wp-content/plugins/creame-whatsapp-me/admin/js/i18n/cs/interface.js
const interfaceTranslations = {
  selectedCountryAriaLabel: "Vybraná země",
  noCountrySelected: "Není vybrána žádná země",
  countryListAriaLabel: "Seznam zemí",
  searchPlaceholder: "Vyhledat",
  zeroSearchResults: "Nebyly nalezeny žádné výsledky",
  searchResultsText(count) {
    if (count === 1) {
      return "Nalezen 1 výsledek";
    }
    if (count >= 2 && count <= 4) {
      return `Nalezeny ${count} výsledky`;
    }
    return `Nalezeno ${count} výsledků`;
  },
  // additional countries (not supported by country-list library)
  ac: "Ascension",
  xk: "Kosovo"
};
export default interfaceTranslations;