Skip to content

Commit 1ef791d

Browse files
committed
1 parent 02bcc06 commit 1ef791d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

uCalendar.pas

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,9 @@ function TCalendar.GetTime: string;
104104
function TCalendar.GetTimeStr: string;
105105
begin
106106
case Hour of
107-
6..8: Result := _('Day');
107+
6..8: Result := _('Morning');
108108
9..17: Result := _('Day');
109-
18..20: Result := _('Day');
109+
18..20: Result := _('Evening');
110110
else Result := _('Night');
111111
end;
112112
end;

uScenes.pas

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1652,9 +1652,9 @@ procedure TSceneRest.Render;
16521652
Self.FromAToZ;
16531653
Y := 1;
16541654

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

16591659
MsgLog.Render(2, True);
16601660

0 commit comments

Comments
 (0)