LP1778972 Removing unchanged file
authorChris Burton <cburton@nflibrary.ca>
Tue, 8 Sep 2020 02:00:55 +0000 (22:00 -0400)
committerChris Burton <cburton@nflibrary.ca>
Thu, 10 Sep 2020 16:01:35 +0000 (12:01 -0400)
Open-ILS/src/templates-bootstrap/opac/i18n_strings.tt2 [deleted file]

diff --git a/Open-ILS/src/templates-bootstrap/opac/i18n_strings.tt2 b/Open-ILS/src/templates-bootstrap/opac/i18n_strings.tt2
deleted file mode 100644 (file)
index 1617e29..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-<!--
-This file allows us to bring TT2 i18n'ized strings
-to js source files, via js blob.
--->
-<script>
-    // Add a boost-style format function to JavaScript string.
-    // Implementation stolen from StackOverflow:
-    // https://stackoverflow.com/questions/610406/javascript-equivalent-to-printf-string-format
-    String.prototype.format = function() {
-        var args = arguments;
-        return this.replace(/{(\d+)}/g, function(match, number) {
-        return typeof args[number] != 'undefined'
-            ? args[number]
-            : match;
-        });
-    };
-
-    var eg_opac_i18n = {};
-
-    eg_opac_i18n.EG_MISSING_REQUIRED_INPUT = "[% l('Please fill out all required fields') %]";
-    // For multiple holds placement confirmation dialog. {0} is replaced by number of copies requested.
-    eg_opac_i18n.EG_MULTIHOLD_MESSAGE = "[% l('Do you really want to place {0} holds for this title?') %]";
-</script>