Skip to content

Commit

Permalink
Fix incorrect strings in frontend standy screen. Fixes #11101
Browse files Browse the repository at this point in the history
Signed-off-by: Stuart Morgan <smorgan@mythtv.org>
  • Loading branch information
y-lee authored and stuartm committed Sep 20, 2012
1 parent 8c9fc7a commit 3128dac
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions mythtv/themes/default/status-ui.xml
Expand Up @@ -121,30 +121,39 @@
<!--<imagetype name="icon">-->
<shape name="iconplaceholder">
<area>30,10,80,80</area>
<fill color="#CC0000" />
<fill color="#666666" />
</shape>
<!-- </imagetype>-->
<textarea name="status">
<area>130,15,220,60</area>
<area>130,15,220,80</area>
<font>basemedium</font>
<value>Backend is idle</value>
<align>allcenter</align>
<multiline>true</multiline>
</textarea>
</state>
<state name="recording" from="idle">
<shape name="iconplaceholder">
<fill color="#80DF00" />
</shape>
<textarea name="status">
<value>Backend is recording</value>
</textarea>
</state>
<state name="shuttingdown" from="idle">
<shape name="iconplaceholder">
<fill color="#FFFF33" />
</shape>
<textarea name="status">
<value>Backend is recording</value>
<value>Backend is shutting down</value>
</textarea>
</state>
<state name="offline" from="idle">
<shape name="iconplaceholder">
<fill color="#800900" />
</shape>
<textarea name="status">
<value>Backend is recording</value>
<value>Backend is offline</value>
</textarea>
</state>
</statetype>
Expand Down

0 comments on commit 3128dac

Please sign in to comment.