From c6b8b887a433862dfe6741268fc454f293f75930 Mon Sep 17 00:00:00 2001 From: Stefan Koshy Date: Thu, 9 Apr 2020 14:12:16 -0400 Subject: Minor spelling fixes in README (#552) --- src/config.js | 10 +++++----- src/scripts/add-crowdin-contributors.js | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'src') diff --git a/src/config.js b/src/config.js index bde710d44..45b840b0a 100644 --- a/src/config.js +++ b/src/config.js @@ -36,13 +36,13 @@ export const GA_ID = !isDevMode ? 'UA-74126766-10' : 'UA-74126766-12'; export const KEEP_WS_LOADED_USID = '0a0aa000-0a0a-49a0-a000-a0a0a0a0a0a0'; export const HIBERNATION_STRATEGIES = { - 10: 'Extemely Fast Hibernation (10sec)', + 10: 'Extremely Fast Hibernation (10sec)', 30: 'Very Fast Hibernation (30sec)', 60: 'Fast Hibernation (1min)', 300: 'Normal Hibernation (5min)', 600: 'Slow Hibernation (10min)', 1800: 'Very Slow Hibernation (30min)', - 3600: 'Extemely Slow Hibernation (1hour)', + 3600: 'Extremely Slow Hibernation (1hour)', }; export const NAVIGATION_BAR_BEHAVIOURS = { @@ -64,13 +64,13 @@ export const TODO_APPS = { }; export const SIDEBAR_WIDTH = { - 35: 'Extemely slim sidebar', + 35: 'Extremely slim sidebar', 45: 'Very slim sidebar', 55: 'Slim sidebar', 68: 'Normal sidebar', 80: 'Wide sidebar', 90: 'Very wide sidebar', - 100: 'Extemely wide sidebar', + 100: 'Extremely wide sidebar', }; export const ICON_SIZES = { @@ -179,7 +179,7 @@ if (process.env.FERDI_APPDATA_DIR != null) { export const SETTINGS_PATH = path.join(app.getPath('userData'), 'config'); -// Replacing app.asar is not beautiful but unforunately necessary +// Replacing app.asar is not beautiful but unfortunately necessary export const RECIPES_PATH = asarPath(path.join(__dirname, 'recipes')); export const ALLOWED_PROTOCOLS = [ diff --git a/src/scripts/add-crowdin-contributors.js b/src/scripts/add-crowdin-contributors.js index 7ad3df0ed..efe981b6e 100644 --- a/src/scripts/add-crowdin-contributors.js +++ b/src/scripts/add-crowdin-contributors.js @@ -22,7 +22,7 @@ membersEl.forEach((el) => { let picture = el.querySelector('img').getAttribute('src'); picture = picture.replace(/\?.+/, ''); - // Check if the text includes a seperate username + // Check if the text includes a separate username if (text.includes('(')) { const username = /(?<=\()\w*(?=\))/.exec(text)[0]; const name = /^.*(?= \()/.exec(text)[0]; -- cgit v1.2.3-54-g00ecf