diff --git a/src/strings/eng.json b/src/strings/eng.json
index a976f68ea..5e3be48a3 100644
--- a/src/strings/eng.json
+++ b/src/strings/eng.json
@@ -48,6 +48,7 @@
"Help_Improve": "Help us improve Apertium!",
"Contact_Us": "Feel free to contact us if you find a mistake, there's a project you would like to see us work on, or you would like to help out.",
"Maintainer": "This website is maintained by {{maintainer}}.",
+ "More_Languages": "Looking for more languages? Try {{more_languages}}",
"About_Title": "About this website",
"Enable_JS_Warning": "This site only works with JavaScript enabled, if you cannot
enable Javascript, then try the
translators at Prompsit.",
"Not_Found_Error": "
404 Error: Sorry, that page doesn't exist anymore!",
diff --git a/src/util/__tests__/localization.test.tsx b/src/util/__tests__/localization.test.tsx
index 463d00eb9..cce60eaef 100644
--- a/src/util/__tests__/localization.test.tsx
+++ b/src/util/__tests__/localization.test.tsx
@@ -43,6 +43,10 @@ describe('useLocalization', () => {
'Maintainer',
`
Apertium-Default`,
],
+ [
+ 'More_Languages',
+ `
`
+ ]
])('maps %s to %s', (id, value) => expect(t(id)).toBe(value));
});