diff options
Diffstat (limited to 'plugins/Watrack/templates')
-rw-r--r-- | plugins/Watrack/templates/i_text.inc | 6 | ||||
-rw-r--r-- | plugins/Watrack/templates/i_variables.inc | 12 |
2 files changed, 9 insertions, 9 deletions
diff --git a/plugins/Watrack/templates/i_text.inc b/plugins/Watrack/templates/i_text.inc index fa0c966728..f6f7406b49 100644 --- a/plugins/Watrack/templates/i_text.inc +++ b/plugins/Watrack/templates/i_text.inc @@ -87,10 +87,10 @@ begin Replace(ls,mn_length,IntToTime(ws,Info^.total));
Replace(ls,mn_total ,ws);
case Info^.status of
- WAT_MES_PLAYING: pp:=splPlaying;
- WAT_MES_PAUSED : pp:=splPaused;
+ WAT_PLS_PLAYING: pp:=splPlaying;
+ WAT_PLS_PAUSED : pp:=splPaused;
else
- {WAT_MES_STOPPED:} pp:=splStopped;
+ {WAT_PLS_STOPPED:} pp:=splStopped;
end;
Replace(ls,mn_status,TranslateW(pp));
Replace(ls,mn_nstatus,pp);
diff --git a/plugins/Watrack/templates/i_variables.inc b/plugins/Watrack/templates/i_variables.inc index a43c77b8c2..d022aa3a07 100644 --- a/plugins/Watrack/templates/i_variables.inc +++ b/plugins/Watrack/templates/i_variables.inc @@ -73,14 +73,14 @@ begin else if WriteCBR<>0 then
ws:=chCBR;
mn_status: case si^.status of
- WAT_MES_STOPPED: ws:=TranslateW(splStopped);
- WAT_MES_PLAYING: ws:=TranslateW(splPlaying);
- WAT_MES_PAUSED : ws:=TranslateW(splPaused);
+ WAT_PLS_STOPPED: ws:=TranslateW(splStopped);
+ WAT_PLS_PLAYING: ws:=TranslateW(splPlaying);
+ WAT_PLS_PAUSED : ws:=TranslateW(splPaused);
end;
mn_nstatus: case si^.status of
- WAT_MES_STOPPED: ws:=splStopped;
- WAT_MES_PLAYING: ws:=splPlaying;
- WAT_MES_PAUSED : ws:=splPaused;
+ WAT_PLS_STOPPED: ws:=splStopped;
+ WAT_PLS_PLAYING: ws:=splPlaying;
+ WAT_PLS_PAUSED : ws:=splPaused;
end;
mn_mono: begin
case si^.channels of
|