Files
itflow/libs/intl-tel-input/js/locale/ja.ts
2026-08-26 13:14:32 -04:00

22 lines
690 B
TypeScript

//* Japanese. Translated by: Google Translate.
import type { UiTranslations } from "./types.js";
const interfaceTranslations: UiTranslations = {
selectedCountryAriaLabel:
"電話番号の国を変更、選択中: ${countryName} (${dialCode})",
noCountrySelected: "電話番号の国を選択",
countryListAriaLabel: "国のリスト",
searchPlaceholder: "検索",
clearSearchAriaLabel: "検索をクリア",
searchEmptyState: "結果が見つかりません",
searchSummaryAria(count) {
if (count === 0) {
return "結果が見つかりません";
}
return `${count} 件の結果が見つかりました`;
},
};
export default interfaceTranslations;