forked from sebirdman/hass_traeger
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Services Translation Update for Hassfest.
https://www.home-assistant.io/blog/2023/08/02/release-20238/#translated-services https://developers.home-assistant.io/blog/2023/07/11/translating-services/
- Loading branch information
njobrien
committed
Oct 6, 2023
1 parent
8e9875b
commit 5121f27
Showing
2 changed files
with
99 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,84 @@ | ||
{ | ||
"config": { | ||
"step": { | ||
"user": { | ||
"description": "If you need help with the configuration have a look here: https://github.com/njobrien1006/hass_traeger/issues", | ||
"data": { | ||
"username": "Username", | ||
"password": "Password" | ||
} | ||
} | ||
}, | ||
"error": { | ||
"auth": "Username/Password is wrong." | ||
}, | ||
"abort": { | ||
"single_instance_allowed": "Only a single configuration of Traeger is allowed." | ||
"config": { | ||
"step": { | ||
"user": { | ||
"description": "If you need help with the configuration have a look here: https://github.com/njobrien1006/hass_traeger/issues", | ||
"data": { | ||
"username": "Username", | ||
"password": "Password" | ||
} | ||
} | ||
}, | ||
"error": { | ||
"auth": "Username/Password is wrong." | ||
}, | ||
"abort": { | ||
"single_instance_allowed": "Only a single configuration of Traeger is allowed." | ||
} | ||
}, | ||
"options": { | ||
"step": { | ||
"user": { | ||
"data": { | ||
"sensor": "Sensors enabled", | ||
"climate": "Climate entity enabled", | ||
"switch": "Switch entity enabled", | ||
"number": "Number entity enabled", | ||
"binary_sensor": "Binary Sensors enabled" | ||
} | ||
} | ||
"step": { | ||
"user": { | ||
"data": { | ||
"sensor": "Sensors enabled", | ||
"climate": "Climate entity enabled", | ||
"switch": "Switch entity enabled", | ||
"number": "Number entity enabled", | ||
"binary_sensor": "Binary Sensors enabled" | ||
} | ||
} | ||
} | ||
}, | ||
"services": { | ||
"set_custom_cook": { | ||
"name": "Set Cook Cycle", | ||
"description": "Set Custom Cook Cycle Steps", | ||
"fields": { | ||
"steps": { | ||
"name": "Steps", | ||
"description": "List of steps to perform." | ||
}, | ||
"set_temp": { | ||
"name": "Set Temp", | ||
"description": "Set Grill Temp.____________________________Only up to your grill's MaxTemp." | ||
}, | ||
"smoke": { | ||
"name": "Set S.Smoke Mode", | ||
"description": "Set Smoke Mode 1 or 0._________________________Only Avail if grill supports" | ||
}, | ||
"keepwarm": { | ||
"name": "Set KeepWarm Mode", | ||
"description": "Set keepwarm, Mode 1 or 0." | ||
}, | ||
"time_set": { | ||
"name": "Set Timer", | ||
"description": "Set Timer in Minutes." | ||
}, | ||
"use_timer": { | ||
"name": "Use Timer", | ||
"description": "Use Timer to Advance State._________________*Only applies to current state." | ||
}, | ||
"min_delta": { | ||
"name": "Min Probe/Grill Delta", | ||
"description": "Min DELTA temp between Grill and Probe.___*Requires `max_grill_delta_temp`." | ||
}, | ||
"max_grill_delta_temp": { | ||
"name": "Max Grill Set.Temp for Delta", | ||
"description": "Max Temp it will increase to from probe `min_delta`. *Requires `min_delta`." | ||
}, | ||
"act_temp_adv": { | ||
"name": "Actual Grill Temp for Advance", | ||
"description": "Grill Temp at which the State will advance." | ||
}, | ||
"probe_act_temp_adv": { | ||
"name": "Actual Probe Temp for Advance", | ||
"description": "Probe Temp at which the State will advance." | ||
}, | ||
"shutdown": { | ||
"name": "Command Shutdown", | ||
"description": "Call Grill Shutdown." | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |