Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
devapromix committed Jul 4, 2017
1 parent 02bcc06 commit 1ef791d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions uCalendar.pas
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,9 @@ function TCalendar.GetTime: string;
function TCalendar.GetTimeStr: string;
begin
case Hour of
6..8: Result := _('Day');
6..8: Result := _('Morning');
9..17: Result := _('Day');
18..20: Result := _('Day');
18..20: Result := _('Evening');
else Result := _('Night');
end;
end;
Expand Down
6 changes: 3 additions & 3 deletions uScenes.pas
Original file line number Diff line number Diff line change
Expand Up @@ -1652,9 +1652,9 @@ procedure TSceneRest.Render;
Self.FromAToZ;
Y := 1;

Inc(Y); Terminal.Print(1, Y, KeyStr(Chr(Y + 95)) + ' ' + _('Rest 10 turns'), TK_ALIGN_LEFT);
Inc(Y); Terminal.Print(1, Y, KeyStr(Chr(Y + 95)) + ' ' + _('Rest 100 turns'), TK_ALIGN_LEFT);
Inc(Y); Terminal.Print(1, Y, KeyStr(Chr(Y + 95)) + ' ' + _('Rest 1000 turns'), TK_ALIGN_LEFT);
Inc(Y); Terminal.Print(1, Y, KeyStr(Chr(Y + 95)) + ' ' + _('Rest for 10 turns'), TK_ALIGN_LEFT);
Inc(Y); Terminal.Print(1, Y, KeyStr(Chr(Y + 95)) + ' ' + _('Rest for 100 turns'), TK_ALIGN_LEFT);
Inc(Y); Terminal.Print(1, Y, KeyStr(Chr(Y + 95)) + ' ' + _('Rest for 1000 turns'), TK_ALIGN_LEFT);

MsgLog.Render(2, True);

Expand Down

0 comments on commit 1ef791d

Please sign in to comment.