From: Steinar H. Gunderson Date: Mon, 9 Jun 2014 15:04:37 +0000 (+0200) Subject: Replace Nalimov with Syzygy everywhere. X-Git-Url: https://git.sesse.net/?p=remoteglot;a=commitdiff_plain;h=6404163f499105481e17d5221641523cb15d02f2 Replace Nalimov with Syzygy everywhere. --- diff --git a/remoteglot.pl b/remoteglot.pl index 7658028..5ccfa20 100755 --- a/remoteglot.pl +++ b/remoteglot.pl @@ -756,9 +756,9 @@ sub output_screen { } if (exists($info->{'tbhits'}) && $info->{'tbhits'} > 0) { if ($info->{'tbhits'} == 1) { - $text .= ", one Nalimov hit"; + $text .= ", one Syzygy hit"; } else { - $text .= sprintf ", %u Nalimov hits", $info->{'tbhits'}; + $text .= sprintf ", %u Syzygy hits", $info->{'tbhits'}; } } $text .= "\n\n"; diff --git a/www/js/remoteglot.js b/www/js/remoteglot.js index 8cffebd..e741873 100644 --- a/www/js/remoteglot.js +++ b/www/js/remoteglot.js @@ -525,9 +525,9 @@ var update_board = function(data, num_viewers) { } if (data['tbhits'] && data['tbhits'] > 0) { if (data['tbhits'] == 1) { - stats += ', one Nalimov hit'; + stats += ', one Syzygy hit'; } else { - stats += ', ' + data['tbhits'] + ' Nalimov hits'; + stats += ', ' + thousands(data['tbhits']) + ' Syzygy hits'; } }