mirror of
https://github.com/itflow-org/itflow
synced 2026-09-20 05:31:15 +00:00
22 lines
672 B
TypeScript
22 lines
672 B
TypeScript
//* Indonesian. Translated by: Google Translate.
|
|
import type { UiTranslations } from "./types.js";
|
|
|
|
const interfaceTranslations: UiTranslations = {
|
|
selectedCountryAriaLabel:
|
|
"Ubah negara untuk nomor telepon, dipilih ${countryName} (${dialCode})",
|
|
noCountrySelected: "Pilih negara untuk nomor telepon",
|
|
countryListAriaLabel: "Daftar negara",
|
|
searchPlaceholder: "Mencari",
|
|
clearSearchAriaLabel: "Hapus pencarian",
|
|
searchEmptyState: "Tidak ada hasil yang ditemukan",
|
|
|
|
searchSummaryAria(count) {
|
|
if (count === 0) {
|
|
return "Tidak ada hasil yang ditemukan";
|
|
}
|
|
return `${count} hasil ditemukan`;
|
|
},
|
|
};
|
|
|
|
export default interfaceTranslations;
|