mirror of
https://github.com/Buriburizaem0n/admin-frontend-domain.git
synced 2026-09-19 09:40:13 +00:00
* Translated using Weblate (Chinese (Traditional Han script)) Currently translated at 100.0% (158 of 158 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (158 of 158 strings) Translated using Weblate (English) Currently translated at 100.0% (158 of 158 strings) Translated using Weblate (English) Currently translated at 100.0% (158 of 158 strings) Translated using Weblate (Chinese (Traditional Han script)) Currently translated at 100.0% (158 of 158 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 96.8% (153 of 158 strings) Translated using Weblate (Italian) Currently translated at 69.6% (110 of 158 strings) Translated using Weblate (English) Currently translated at 100.0% (158 of 158 strings) Translated using Weblate (Chinese (Traditional Han script)) Currently translated at 99.3% (157 of 158 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 70.8% (112 of 158 strings) Translated using Weblate (Italian) Currently translated at 99.3% (157 of 158 strings) Translated using Weblate (English) Currently translated at 100.0% (158 of 158 strings) Co-authored-by: Anonymous <noreply@weblate.org> Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: UUBulb <uub@kuzu.uk> Translate-URL: https://hosted.weblate.org/projects/nezha/admin-frontend/en/ Translate-URL: https://hosted.weblate.org/projects/nezha/admin-frontend/it/ Translate-URL: https://hosted.weblate.org/projects/nezha/admin-frontend/zh_Hans/ Translate-URL: https://hosted.weblate.org/projects/nezha/admin-frontend/zh_Hant/ Translation: Nezha/Admin frontend * chore: auto-fix linting and formatting issues --------- Co-authored-by: UUBulb <uub@kuzu.uk> Co-authored-by: weblate <weblate@users.noreply.github.com>
13 lines
278 B
TypeScript
13 lines
278 B
TypeScript
import i18n from "@/lib/i18n"
|
|
|
|
export const serviceTypes: Record<number, string> = {
|
|
1: "HTTP GET",
|
|
2: "ICMP Ping",
|
|
3: "TCPing",
|
|
}
|
|
|
|
export const serviceCoverageTypes: Record<number, string> = {
|
|
0: i18n.t("Coverages.Excludes"),
|
|
1: i18n.t("Coverages.Only"),
|
|
}
|