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

22 lines
645 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//* Chinese (Simplified). 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;