chore (locales): add missing strings to locale

This commit is contained in:
Ash Monty
2022-09-20 18:00:44 +02:00
parent 1ce3175b0a
commit 3cd29be8be
6 changed files with 46 additions and 23 deletions

View File

@@ -39,9 +39,9 @@
<div class="content search">
<div class="content-inner">
<div class="purple-card">
<h1>Got an error code?</h1>
<p>Type it in the box below to get information on your issue!</p>
<label for="errorCode">Error code</label>
<h1>{{ locale.docs.search.title }}</h1>
<p>{{ locale.docs.search.caption }}</p>
<label for="errorCode">{{ locale.docs.search.label }}</label>
<div class="input-wrapper">
<input id="errorCode" placeholder="ABC-012-3456" required />
<div class="matches">
@@ -107,7 +107,7 @@
});
} else {
const noMatch = document.createElement('p');
noMatch.innerText = 'No matches found';
noMatch.innerText = '{{ locale.docs.search.no_match }}';
matchesContainer.appendChild(noMatch);
}
});