aboutsummaryrefslogtreecommitdiffstats
path: root/src/helpers
diff options
context:
space:
mode:
Diffstat (limited to 'src/helpers')
-rw-r--r--src/helpers/translation-helpers.ts2
-rw-r--r--src/helpers/update-helpers.ts4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/helpers/translation-helpers.ts b/src/helpers/translation-helpers.ts
index 2e8f6b260..105a0ccfc 100644
--- a/src/helpers/translation-helpers.ts
+++ b/src/helpers/translation-helpers.ts
@@ -8,7 +8,7 @@ export async function translateTo(
8): Promise<{ text: string; error: boolean }> { 8): Promise<{ text: string; error: boolean }> {
9 const errorText = 9 const errorText =
10 // TODO: Need to support i18n 10 // TODO: Need to support i18n
11 'FERDIUM ERROR: An error occured. Please select less text to translate or try again later.'; 11 'FERDIUM ERROR: An error occurred. Please select less text to translate or try again later.';
12 12
13 if (translatorEngine === 'Google') { 13 if (translatorEngine === 'Google') {
14 const translationResult = await translateGoogle(text, { 14 const translationResult = await translateGoogle(text, {
diff --git a/src/helpers/update-helpers.ts b/src/helpers/update-helpers.ts
index 3e548c69b..a6a2162a7 100644
--- a/src/helpers/update-helpers.ts
+++ b/src/helpers/update-helpers.ts
@@ -29,12 +29,12 @@ const messages = defineMessages({
29 connectionError: { 29 connectionError: {
30 id: 'settings.releasenotes.connectionError', 30 id: 'settings.releasenotes.connectionError',
31 defaultMessage: 31 defaultMessage:
32 'An error occured when connecting to Github, please try again later.', 32 'An error occurred when connecting to Github, please try again later.',
33 }, 33 },
34 connectionErrorPageMissing: { 34 connectionErrorPageMissing: {
35 id: 'settings.releasenotes.connectionErrorPageMissing', 35 id: 'settings.releasenotes.connectionErrorPageMissing',
36 defaultMessage: 36 defaultMessage:
37 'An error occured when connecting to Github, the page you are looking for is missing.', 37 'An error occurred when connecting to Github, the page you are looking for is missing.',
38 }, 38 },
39}); 39});
40 40