Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
80 changes: 80 additions & 0 deletions src/localize/languages/hi-IN.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
{
"card": {
"label": {
"car": "कार",
"motorbike": "मोटरसाइकिल"
}
},
"editor": {
"entity_generator": "जनरेटर",
"combined": "संयुक्त इकाई (सकारात्मक और नकारात्मक मानों के साथ)",
"separated": "अलग-अलग इकाइयाँ (उपभोग और उत्पादन के लिए)",
"custom_colors": "कस्टम रंग",
"secondary_info": "द्वितीयक जानकारी",
"power_outage": "बिजली गुल",
"grid": "ग्रिड",
"solar": "सौर ऊर्जा",
"battery": "बैटरी",
"fossil_fuel_percentage": "जीवाश्म ईंधन",
"home": "घर",
"individual": "व्यक्तिगत",
"accept_negative": "नकारात्मक स्वीकार करें",
"advanced": "उन्नत विकल्प",
"decimals": "दशमलव",
"consumption": "उपभोग",
"production": "उत्पादन",
"color_icon": "आइकन का रंग",
"color_circle": "सर्कल का रंग",
"color_value": "मान का रंग",
"color_state_of_charge_value": "रंग",
"display_zero": "शून्य दिखाएँ",
"display_zero_tolerance": "शून्य सहिष्णुता दिखाएँ",
"display_state": "स्थिति दिखाएँ",
"display_zero_state": "शून्य स्थिति दिखाएँ",
"invert_state": "स्थिति उलटें",
"template": "टेम्पलेट",
"unit_of_measurement": "माप की इकाई",
"unit_white_space": "यूनिट स्पेस",
"label_alert": "अलर्ट के लिए लेबल",
"icon_alert": "अलर्ट के लिए आइकन",
"state_alert": "अलर्ट की स्थिति",
"state_of_charge": "चार्ज की स्थिति",
"state_of_charge_unit_white_space": "स्पेस",
"state_of_charge_unit": "इकाई",
"state_of_charge_decimals": "दशमलव",
"state_of_charge_icon": "आइकन",
"show_state_of_charge": "चार्ज की स्थिति दिखाएँ",
"state_type": "स्थिति प्रकार",
"subtract_individual": "व्यक्तिगत घटाएँ",
"override_state": "स्थिति ओवरराइड करें",
"calculate_flow_rate": "प्रवाह दर की गणना करें",
"inverted_animation": "एनिमेशन उलटें",
"show_direction": "दिशा दिखाएँ",
"circle_animation": "सर्कल एनिमेशन",
"color": "रंग",
"dashboard_link": "डैशबोर्ड लिंक",
"dashboard_link_label": "डैशबोर्ड लिंक नाम",
"w_decimals": "वाट दशमलव",
"kw_decimals": "किलोवाट दशमलव",
"max_flow_rate": "अधिकतम प्रवाह दर",
"min_flow_rate": "न्यूनतम प्रवाह दर",
"max_expected_power": "अधिकतम अपेक्षित शक्ति",
"min_expected_power": "न्यूनतम अपेक्षित शक्ति",
"watt_threshold": "वाट से किलोवाट सीमा",
"display_zero_lines": "शून्य रेखाएँ दिखाएँ",
"clickable_entities": "क्लिक करने योग्य इकाइयाँ",
"disable_dots": "डॉट्स अक्षम करें",
"use_new_flow_rate_model": "नया प्रवाह दर मॉडल",
"use_metadata": "मेटाडेटा का उपयोग करें",
"mode": "मोड",
"show": "दिखाएँ",
"hide": "छुपाएँ",
"custom": "कस्टम",
"grey_out": "धूसर करें",
"transparency": "पारदर्शिता",
"grey_color": "धूसर रंग",
"tap_action": "टैप क्रिया",
"navigation_path": "नेविगेशन पथ",
"sort_individual_devices": "व्यक्तिगत डिवाइस क्रमबद्ध करें"
}
}
2 changes: 2 additions & 0 deletions src/localize/localize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import * as fi from "./languages/fi.json";
import * as pl from "./languages/pl.json";
import * as sk from "./languages/sk.json";
import * as sv from "./languages/sv.json";
import * as hi from "./languages/hi-IN.json";

const languages: Record<string, unknown> = {
cs,
Expand All @@ -30,6 +31,7 @@ const languages: Record<string, unknown> = {
pl,
sk,
sv,
hi,
};

const defaultLang = "en";
Expand Down