"title": "Current State"|"title": "当前状态"
"label": "Car"|"label": "车辆"
"title": "Last state change"|"title": "最近一次更新"
"title": "Range"|"title": "续航里程"
"title": "Estimated Range"|"title": "预估续航里程"
"title": "Battery Level"|"title": "电池电量"
"title": "Tire Pressure ($pressure_unit)"|"title": "胎压($pressure_unit)"
"title": "Driver Temp"|"title": "驾驶舱温度"
"title": "Inside Temp"|"title": "车内温度"
"title": "Outside Temp"|"title": "车外温度"
"title": "Location"|"title": "位置"
"title": "States"|"title": "状态"
"title": "Odometer"|"title": "里程表"
"title": "Firmware"|"title": "固件版本"
"title": "Timeline"|"title": "时间线"
"text": "online"|"text": "在线"
"text": "driving"|"text": "行驶中"
"text": "charging"|"text": "充电中"
"text": "offline"|"text": "离线"
"text": "asleep"|"text": "休眠"
"text": "updating"|"text": "更新中"
\"Front left\"|\"左前轮\"
\"Front right\"|\"右前轮\"
\"Rear left\"|\"左后轮\"
\"Rear right\"|\"右后轮\"
WHEN state = 0 OR state = 5 THEN 'online'|WHEN state = 0 OR state = 5 THEN '在线'
WHEN state = 1 THEN 'driving'|WHEN state = 1 THEN '行驶中'
WHEN state = 2 THEN 'charging'|WHEN state = 2 THEN '充电中'
WHEN state = 3 THEN 'offline'|WHEN state = 3 THEN '离线'
WHEN state = 4 THEN 'asleep'|WHEN state = 4 THEN '休眠'
WHEN state = 6 THEN 'updating'|WHEN state = 6 THEN '更新中'
#"select $__time(start_date), state from states where car_id = $car_id AND $__timeFilter(start_date) order by start_date desc limit 1;"|"select $__time(start_date), \r\nCASE\r\n   WHEN state = 'offline' THEN '离线'\r\n   WHEN state = 'asleep' THEN '休眠'\r\n   WHEN state = 'online' THEN '在线'\r\nEND AS\r\n state\r\nfrom states where car_id = $car_id AND $__timeFilter(start_date) order by start_date desc limit 1;"
"title": "Dashboards"|"title": "特斯拉"
"select $__time(start_date), state from states where car_id = $car_id AND $__timeFilter(start_date) order by start_date desc limit 1;"|"select $__time(start_date), \r\nCASE\r\n   WHEN state = 'offline' THEN '离线'\r\n   WHEN state = 'asleep' THEN '休眠'\r\n   WHEN state = 'online' THEN '在线'\r\nEND AS\r\n state\r\nfrom states where car_id = $car_id  order by start_date desc limit 1;"
