From 6404163f499105481e17d5221641523cb15d02f2 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Mon, 9 Jun 2014 17:04:37 +0200 Subject: [PATCH] Replace Nalimov with Syzygy everywhere. --- remoteglot.pl | 4 ++-- www/js/remoteglot.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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'; } } -- 2.39.2