mirror of
https://github.com/itflow-org/itflow
synced 2026-09-20 05:31:15 +00:00
25 lines
701 B
TypeScript
25 lines
701 B
TypeScript
//* Finnish. Translated by: Michael Winton (mrwinton).
|
|
import type { UiTranslations } from "./types.js";
|
|
|
|
const interfaceTranslations: UiTranslations = {
|
|
selectedCountryAriaLabel:
|
|
"Vaihda maa puhelinnumeroa varten, valittu ${countryName} (${dialCode})",
|
|
noCountrySelected: "Valitse maa puhelinnumeroa varten",
|
|
countryListAriaLabel: "Luettelo maista",
|
|
searchPlaceholder: "Haku",
|
|
clearSearchAriaLabel: "Tyhjennä haku",
|
|
searchEmptyState: "Ei tuloksia",
|
|
|
|
searchSummaryAria(count) {
|
|
if (count === 0) {
|
|
return "Ei tuloksia";
|
|
}
|
|
if (count === 1) {
|
|
return "1 tulos löytyi";
|
|
}
|
|
return `${count} tulosta löytyi`;
|
|
},
|
|
};
|
|
|
|
export default interfaceTranslations;
|