mirror of
https://github.com/itflow-org/itflow
synced 2026-09-19 13:15:14 +00:00
25 lines
812 B
TypeScript
25 lines
812 B
TypeScript
//* Urdu. 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 "کوئی نتیجہ نہیں";
|
|
}
|
|
if (count === 1) {
|
|
return "1 نتیجہ ملا";
|
|
}
|
|
return `${count} نتائج ملے`;
|
|
},
|
|
};
|
|
|
|
export default interfaceTranslations;
|