mirror of
https://github.com/itflow-org/itflow
synced 2026-09-16 11:45:13 +00:00
25 lines
748 B
TypeScript
25 lines
748 B
TypeScript
//* Italian. Translated by: Google Translate.
|
|
import type { UiTranslations } from "./types.js";
|
|
|
|
const interfaceTranslations: UiTranslations = {
|
|
selectedCountryAriaLabel:
|
|
"Cambia il paese del numero di telefono, selezionato ${countryName} (${dialCode})",
|
|
noCountrySelected: "Seleziona il paese del numero di telefono",
|
|
countryListAriaLabel: "Elenco dei paesi",
|
|
searchPlaceholder: "Ricerca",
|
|
clearSearchAriaLabel: "Cancella ricerca",
|
|
searchEmptyState: "Nessun risultato trovato",
|
|
|
|
searchSummaryAria(count) {
|
|
if (count === 0) {
|
|
return "Nessun risultato trovato";
|
|
}
|
|
if (count === 1) {
|
|
return "1 risultato trovato";
|
|
}
|
|
return `${count} risultati trovati`;
|
|
},
|
|
};
|
|
|
|
export default interfaceTranslations;
|