+
diff --git a/src/components/widgets/quote/Quote.jsx b/src/components/widgets/quote/Quote.jsx
index 4def794f..0092e0b8 100644
--- a/src/components/widgets/quote/Quote.jsx
+++ b/src/components/widgets/quote/Quote.jsx
@@ -90,10 +90,13 @@ export default class Quote extends React.PureComponent {
return this.doOffline();
}
+ let authorlink = `https://${this.props.languagecode.split('-')[0]}.wikipedia.org/wiki/${data.author.split(' ').join('_')}`;
+ if (localStorage.getItem('authorLink') === 'false') authorLink = null;
+
this.setState({
quote: '"' + data.quote + '"',
author: data.author,
- authorlink: `https://${this.props.languagecode}.wikipedia.org/wiki/${data.author.split(' ').join('_')}`
+ authorlink: authorlink
});
} catch (e) {
// ..and if that fails we load one locally
diff --git a/src/translations/en-GB.json b/src/translations/en-GB.json
index 150b291f..f71c6728 100644
--- a/src/translations/en-GB.json
+++ b/src/translations/en-GB.json
@@ -34,6 +34,7 @@
"marketplace": "Marketplace"
},
"settings": {
+ "enabled": "Enabled",
"sections": {
"time": {
"title": "Time",
@@ -60,9 +61,9 @@
"short_format": "Short Format",
"short_separator": {
"title": "Short Separator",
- "default": "Default",
- "dash": "Dash",
- "gaps": "Gaps"
+ "default": "Dots (.)",
+ "dash": "Dash (-)",
+ "gaps": "Gaps ( )"
}
}
},
@@ -71,7 +72,8 @@
"buttons": "Buttons",
"copy": "Copy",
"tweet": "Tweet",
- "favourite": "Favourite"
+ "favourite": "Favourite",
+ "author_link": "Author Link"
},
"greeting": {
"title": "Greeting",
@@ -98,9 +100,21 @@
"search": {
"title": "Search",
"search_engine": "Search Engine",
- "custom": "Custom Search URL"
+ "custom": "Custom Search URL",
+ "voice_search": "Voice Search"
+ },
+ "appearance":{
+ "title": "Appearance",
+ "dark_theme": "Dark Theme",
+ "night_mode": "Night Mode",
+ "animations": "Animations",
+ "accessibility": {
+ "title": "Accessibility",
+ "zoom": "Zoom",
+ "toast_duration": "Toast Duration",
+ "milliseconds": "milliseconds"
+ }
},
- "appearance": "Appearance",
"language": "Language",
"changelog": "Change Log",
"about": {
@@ -121,7 +135,6 @@
}
},
"buttons": {
- "apply": "Apply",
"reset": "Reset",
"import": "Import",
"export": "Export"