diff --git a/resources/static/shared/gettext.js b/resources/static/shared/gettext.js
new file mode 100644
index 0000000000000000000000000000000000000000..411c168ff5c24ca49b01e8e41b7f616d79851931
--- /dev/null
+++ b/resources/static/shared/gettext.js
@@ -0,0 +1,14 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+function Gettext(params) {
+    return {
+      gettext: function (msgid) {
+        return msgid;
+      },
+      strargs: function (fmt, args) {
+        return fmt;
+      }
+    };
+};
\ No newline at end of file