]> git.sesse.net Git - remoteglot/commitdiff
Replace Nalimov with Syzygy everywhere.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Mon, 9 Jun 2014 15:04:37 +0000 (17:04 +0200)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Mon, 9 Jun 2014 15:04:37 +0000 (17:04 +0200)
remoteglot.pl
www/js/remoteglot.js

index 765802833b054b9270d75c86d8db13f19f8cb047..5ccfa20e09afefd42a5674c400d830ae2901ee48 100755 (executable)
@@ -756,9 +756,9 @@ sub output_screen {
                }
                if (exists($info->{'tbhits'}) && $info->{'tbhits'} > 0) {
                        if ($info->{'tbhits'} == 1) {
                }
                if (exists($info->{'tbhits'}) && $info->{'tbhits'} > 0) {
                        if ($info->{'tbhits'} == 1) {
-                               $text .= ", one Nalimov hit";
+                               $text .= ", one Syzygy hit";
                        } else {
                        } else {
-                               $text .= sprintf ", %u Nalimov hits", $info->{'tbhits'};
+                               $text .= sprintf ", %u Syzygy hits", $info->{'tbhits'};
                        }
                }
                $text .= "\n\n";
                        }
                }
                $text .= "\n\n";
index 8cffebdeda197c78022ad443fdc2ea73c7fc56e7..e74187307250a5870b7d11a3ed71536796e1c2a1 100644 (file)
@@ -525,9 +525,9 @@ var update_board = function(data, num_viewers) {
                }
                if (data['tbhits'] && data['tbhits'] > 0) {
                        if (data['tbhits'] == 1) {
                }
                if (data['tbhits'] && data['tbhits'] > 0) {
                        if (data['tbhits'] == 1) {
-                               stats += ', one Nalimov hit';
+                               stats += ', one Syzygy hit';
                        } else {
                        } else {
-                               stats += ', ' + data['tbhits'] + ' Nalimov hits';
+                               stats += ', ' + thousands(data['tbhits']) + ' Syzygy hits';
                        }
                }
 
                        }
                }