Fix all days text

This commit is contained in:
Jamie Cameron
2022-11-27 20:08:52 -08:00
parent 5410dd7bb9
commit 3a33573c30
2 changed files with 2 additions and 2 deletions

View File

@@ -361,7 +361,7 @@ playtime_total=Total time
playtime_date=Show play time on :
playtime_ok=Show
playtime_today=<Today>
playtime_all=<All days combined>
playtime_alldays=<All days combined>
versions_title=Minecraft Versions
versions_file=Filename

View File

@@ -31,7 +31,7 @@ if (keys %$playtime || @players) {
print &ui_form_start("list_playtime.cgi");
print "<b>$text{'playtime_date'}</b>\n";
my @opts = ( [ "", $text{'playtime_today'} ],
[ "all", $text{'playtime_all'} ] );
[ "all", $text{'playtime_alldays'} ] );
push(@opts, @days);
print &ui_select("date", $in{'date'}, \@opts, 1, 0, 0, 0,
"onChange='form.submit()'"),"\n";