Commit 1a220a2a0515905545b9cafc66ecba626a15d549

Authored by yiming
1 parent df7cd200

翻译

src/main/resources/message_en_US.properties
... ... @@ -4530,6 +4530,9 @@ txt-4530=There is a problem with the association between shifts and stations
4530 4530 txt-4531=Switch:
4531 4531 txt-5000=Operation successfully
4532 4532 txt-5001=Operation failed
  4533 +txt-5002=Comfortable
  4534 +txt-5003=Normal
  4535 +txt-5004=Crowded
4533 4536  
4534 4537 dataToolsServiceImpl-line132=not .xls .xlsx type file.
4535 4538 dataToolsServiceImpl-line143=table content is empty.
... ...
src/main/resources/message_zh_CN.properties
... ... @@ -4531,6 +4531,9 @@ txt-4530=o(* ̄▽ ̄*)o 班次和站点关联有点问题!!
4531 4531 txt-4531=切换为
4532 4532 txt-5000=操作成功
4533 4533 txt-5001=操作失败
  4534 +txt-5002=舒适
  4535 +txt-5003=一般
  4536 +txt-5004=拥挤
4534 4537  
4535 4538 dataToolsServiceImpl-line132=非.xls .xlsx 格式文件!
4536 4539 dataToolsServiceImpl-line143=表格内容为空!
... ...
src/main/resources/static/real_control_v2/fragments/home/tooltip.html
... ... @@ -61,13 +61,13 @@
61 61 <div><span class="field">$$$$$${txt-4521}:</span>{{kl.num}}</div>
62 62 {{/if}}
63 63 {{if kl !=null && kl.num <= 5}}
64   - <div><span class="field">状态:</span><a href="javascript:;" style="color:green" onclick="javascript:gb_map_play_back.showPhoto('{{kl.photo}}');">舒适</a></div>
  64 + <div><span class="field">$$$$$${txt-3621}</span><a href="javascript:;" style="color:green" onclick="javascript:gb_map_play_back.showPhoto('{{kl.photo}}');">$$$$$${txt-5002}</a></div>
65 65 {{/if}}
66 66 {{if kl !=null && kl.num > 5 && kl.num <= 10}}
67   - <div><span class="field">状态:</span><a href="javascript:;" style="color:chocolate" onclick="javascript:gb_map_play_back.showPhoto('{{kl.photo}}');">一般</a></div>
  67 + <div><span class="field">$$$$$${txt-3621}</span><a href="javascript:;" style="color:chocolate" onclick="javascript:gb_map_play_back.showPhoto('{{kl.photo}}');">$$$$$${txt-5003}</a></div>
68 68 {{/if}}
69 69 {{if kl !=null && kl.num > 10}}
70   - <div><span class="field">状态:</span><a href="javascript:;" style="color:red" onclick="javascript:gb_map_play_back.showPhoto('{{kl.photo}}');">拥挤</a></div>
  70 + <div><span class="field">$$$$$${txt-3621}</span><a href="javascript:;" style="color:red" onclick="javascript:gb_map_play_back.showPhoto('{{kl.photo}}');">$$$$$${txt-5004}</a></div>
71 71 {{/if}}
72 72 </div>
73 73  
... ...
src/main/resources/static/real_control_v2/mapmonitor/fragments/map_infowindow.html
... ... @@ -36,13 +36,13 @@
36 36 <p>$$$$$${txt-4521}:{{kl.num}}</p>
37 37 {{/if}}
38 38 {{if kl !=null && kl.num <= 5}}
39   - <p>$$$$$${txt-3621}<a href="javascript:;" style="color:green" onclick="javascript:gb_map_play_back.showPhoto('{{photo}}');">舒适</a></p>
  39 + <p>$$$$$${txt-3621}<a href="javascript:;" style="color:green" onclick="javascript:gb_map_play_back.showPhoto('{{photo}}');">$$$$$${txt-5002}</a></p>
40 40 {{/if}}
41 41 {{if kl !=null && kl.num > 5 && kl.num <= 10}}
42   - <p>$$$$$${txt-3621}<a href="javascript:;" style="color:chocolate" onclick="javascript:gb_map_play_back.showPhoto('{{photo}}');">一般</a></p>
  42 + <p>$$$$$${txt-3621}<a href="javascript:;" style="color:chocolate" onclick="javascript:gb_map_play_back.showPhoto('{{photo}}');">$$$$$${txt-5003}</a></p>
43 43 {{/if}}
44 44 {{if kl !=null && kl.num > 10}}
45   - <p>$$$$$${txt-3621}<a href="javascript:;" style="color:red" onclick="javascript:gb_map_play_back.showPhoto('{{photo}}');">拥挤</a></p>
  45 + <p>$$$$$${txt-3621}<a href="javascript:;" style="color:red" onclick="javascript:gb_map_play_back.showPhoto('{{photo}}');">$$$$$${txt-5004}</a></p>
46 46 {{/if}}
47 47 {{if energy == 0}}
48 48 <div><span class="field">$$$$$${txt-4435}</span><span style="color: red;">{{energy}}%&nbsp;($$$$$${txt-3832})</span></div>
... ...