diff --git a/README.md b/README.md
index e74cb52c..e3775765 100644
--- a/README.md
+++ b/README.md
@@ -88,6 +88,7 @@ Please see our [roadmap](https://github.com/mue/mue/projects)
Click Load unpacked (Make sure Developer Mode is on)
Go to the directory containing the built copy of Mue and click ok
Enjoy your new tab!
+
Opera (Click to expand)
@@ -98,6 +99,7 @@ Please see our [roadmap](https://github.com/mue/mue/projects)
Click Load unpacked extension... (Make sure Developer Mode is on)
Go to the directory containing Mue and click ok
Enjoy your new tab!
+
Firefox (Click to expand)
@@ -113,20 +115,23 @@ Please see our [roadmap](https://github.com/mue/mue/projects)
Other (Click to expand)Note: To get the full new tab experience, set your browser to open the index.html on startup and tab open!
-
-
yarn run build or npm run build
-
Open the index.html in your browser
-
Enjoy your new tab!
-
+
+
yarn run build or npm run build
+
Open the index.html in your browser
+
Enjoy your new tab!
+
## Credits
-### Maintainers
+### Core Team
+#### Maintainers
[David Ralph (ohlookitsderpy)](https://github.com/ohlookitsderpy) - Founder, Lead development, Photographer
+
[Alex Sparkes](https://github.com/alexsparkes) - Name, Lead design, Photographer
-### Contributors
+#### Developers
[Wessel Tip](https://github.com/Wessel) - Development
+
[Isaac (Eartharoid)](https://github.com/eartharoid) - QA, Development, Photographer
### Translators
@@ -138,9 +143,13 @@ Please see our [roadmap](https://github.com/mue/mue/projects)
[Pronin Egor](https://github.com/MrZillaGold) - Russian
-### Other
+[Vicente](https://github.com/Vicente015) - Spanish
+
+### Resources
[Pexels](https://pexels.com) - Stock photos used for offline mode
[Opera Forum](https://forums.opera.com/topic/25046/how-to-disable-completely-the-speed-dial/14) - Portions of code to add Opera support
-And many thanks to [Highholding](https://discord.bio/p/highholding), [Noa Shapira](#), [Roee Lupo](https://github.com/RoeeLupo), [Jeroen](#), [Glasvegas](https://twitter.com/_glasvegas), [Anders](https://github.com/FuryingFox), [Oded Shapira](https://twitter.com/dondishdev), Jacob Tyrrell and [Nikka Lai](#) for letting us use their wonderful photographs
+Many thanks to [Highholding](https://discord.bio/p/highholding), [Noa Shapira](#), [Roee Lupo](https://github.com/RoeeLupo), [Jeroen](#), [Glasvegas](https://twitter.com/_glasvegas), [Anders](https://github.com/FuryingFox), [Oded Shapira](https://twitter.com/dondishdev), Jacob Tyrrell and [Nikka Lai](#) for letting us use their wonderful photographs.
+
+And finally, a big thank you to all the [contributors](https://github.com/mue/mue/graphs/contributors)!
\ No newline at end of file
diff --git a/package.json b/package.json
index 9a0440dd..b13de57f 100644
--- a/package.json
+++ b/package.json
@@ -6,7 +6,7 @@
"David \"ohlookitsderpy\" Ralph (https://derpyenterprises.org)",
"Alex \"TurboMarshmello\" Sparkes (https://github.com/alexsparkes)"
],
- "description": "Fast, open and free-to-use new tab page for most modern browsers.",
+ "description": "Fast, open and free-to-use new tab page for modern browsers.",
"repository": {
"url": "github:mue/mue"
},
diff --git a/src/components/modals/settings/Dropdown.jsx b/src/components/modals/settings/Dropdown.jsx
index 6923da32..ea65294d 100644
--- a/src/components/modals/settings/Dropdown.jsx
+++ b/src/components/modals/settings/Dropdown.jsx
@@ -2,19 +2,19 @@ import React from 'react';
export default class Dropdown extends React.PureComponent {
getLabel() {
- return this.props.label ? : null;
+ return this.props.label ? : null;
}
render() {
return (
- <>
+
{this.getLabel()}
- >
+
);
}
}
\ No newline at end of file
diff --git a/src/components/modals/settings/sections/LanguageSettings.jsx b/src/components/modals/settings/sections/LanguageSettings.jsx
index 2c9717cf..0bc2ec7c 100644
--- a/src/components/modals/settings/sections/LanguageSettings.jsx
+++ b/src/components/modals/settings/sections/LanguageSettings.jsx
@@ -12,8 +12,9 @@ export default class LanguageSettings extends React.PureComponent {
onChange={() => localStorage.setItem('language', document.getElementById('language').value)}
>
-
+
+
diff --git a/src/modules/settingsFunctions.js b/src/modules/settingsFunctions.js
index dd3eddc6..6dfabf51 100644
--- a/src/modules/settingsFunctions.js
+++ b/src/modules/settingsFunctions.js
@@ -78,7 +78,7 @@ export default class SettingsFunctions {
if (supportsWebP) localStorage.setItem('supportswebp', 'true');
// Languages
- const languages = ['nl', 'no', 'fr', 'ru'];
+ const languages = ['nl', 'no', 'fr', 'ru', 'es'];
const browserLanguage = (navigator.languages && navigator.languages[0]) || navigator.language;
if (languages.includes(browserLanguage)) {
localStorage.setItem('language', browserLanguage);