Makes \s be properly used. (#11066)

This commit is contained in:
MarinaGryphon
2021-02-15 12:49:27 +01:00
committed by GitHub
parent a33a89f8ae
commit 18e4922626
13 changed files with 15 additions and 15 deletions
+1 -1
View File
@@ -118,7 +118,7 @@
/proc/ipintel_handle_error(error, ip, retryed)
if (retryed)
SSipintel.errors++
error += " Could not check [ip]. Disabling IPINTEL for [SSipintel.errors] minute[( SSipintel.errors == 1 ? "" : "s" )]"
error += " Could not check [ip]. Disabling IPINTEL for [SSipintel.errors] minute\s"
SSipintel.throttle = world.timeofday + (10 * 120 * SSipintel.errors)
else
error += " Attempting retry on [ip]."
+1 -1
View File
@@ -270,7 +270,7 @@
var/list/data = list("unread" = "", "expired" = "")
if (count)
data["unread"] = "You have <b>[count] unread [count > 1 ? "warnings" : "warning"]!</b> Click <a href='?JSlink=warnings;notification=:src_ref'>here</a> to review and acknowledge them!"
data["unread"] = "You have <b>[count] unread warning\s!</b> Click <a href='?JSlink=warnings;notification=:src_ref'>here</a> to review and acknowledge them!"
if (count_expire)
data["expired"] = "[count_expire] of your warnings have expired."