mirror of
https://github.com/itflow-org/itflow
synced 2026-09-20 21:51:16 +00:00
22 lines
645 B
TypeScript
22 lines
645 B
TypeScript
//* 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;
|