From 87e289091e5396136e316d3c3f6ca76068e34670 Mon Sep 17 00:00:00 2001 From: u-e Date: Sat, 16 Mar 2019 12:51:18 +0300 Subject: [PATCH 01/79] created send feedback feature --- src/config/locales/en-US.json | 6 ++- .../settings/container/settingsContainer.js | 36 ++++++++++++++++++ src/screens/settings/screen/settingsScreen.js | 37 +++++++++++++------ src/utils/sendEmail.js | 27 ++++++++++++++ 4 files changed, 93 insertions(+), 13 deletions(-) create mode 100644 src/utils/sendEmail.js diff --git a/src/config/locales/en-US.json b/src/config/locales/en-US.json index 64408fad2..8c9c13f09 100644 --- a/src/config/locales/en-US.json +++ b/src/config/locales/en-US.json @@ -66,11 +66,15 @@ "pincode": "PIN code", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", diff --git a/src/screens/settings/container/settingsContainer.js b/src/screens/settings/container/settingsContainer.js index 4996886a5..69f8dc826 100644 --- a/src/screens/settings/container/settingsContainer.js +++ b/src/screens/settings/container/settingsContainer.js @@ -4,6 +4,7 @@ import { connect } from 'react-redux'; import AppCenter from 'appcenter'; import Push from 'appcenter-push'; import { Client } from 'dsteem'; +import VersionNumber from 'react-native-version-number'; // Realm import { @@ -36,6 +37,7 @@ import { VALUE as CURRENCY_VALUE } from '../../../constants/options/currency'; import { VALUE as LANGUAGE_VALUE } from '../../../constants/options/language'; // Utilities +import { sendEmail } from '../../../utils/sendEmail'; // Component import SettingsScreen from '../screen/settingsScreen'; @@ -86,6 +88,10 @@ class SettingsContainer extends Component { setNsfw2DB(action); break; + case 'feedback': + this._handleSendFeedback(); + break; + default: break; } @@ -216,6 +222,36 @@ class SettingsContainer extends Component { }); } }; + + _handleSendFeedback = async () => { + const { dispatch, intl } = this.props; + let message; + + await sendEmail( + 'bug@esteem.app', + 'Feedback/Bug report', + `Write your message here! + App version: ${VersionNumber.buildVersion} + Platform: ${Platform.OS === 'ios' ? 'IOS' : 'Android'} + Device: ${DeviceInfo.getDeviceName()}`, + ) + .then(() => { + message = 'settings.feedback_success'; + }) + .catch(() => { + message = 'settings.feedback_fail'; + }); + + if (message) { + dispatch( + toastNotification( + intl.formatMessage({ + id: message, + }), + ), + ); + } + }; render() { const { serverList } = this.state; diff --git a/src/screens/settings/screen/settingsScreen.js b/src/screens/settings/screen/settingsScreen.js index 4bda6243b..d1e446e4f 100644 --- a/src/screens/settings/screen/settingsScreen.js +++ b/src/screens/settings/screen/settingsScreen.js @@ -1,4 +1,4 @@ -import React, { PureComponent } from 'react'; +import React, { PureComponent, Fragment } from 'react'; import { ScrollView, View } from 'react-native'; import { injectIntl } from 'react-intl'; @@ -116,17 +116,30 @@ class SettingsScreen extends PureComponent { handleOnChange={handleOnChange} /> {!!isLoggedIn && ( - + + + + )} diff --git a/src/utils/sendEmail.js b/src/utils/sendEmail.js new file mode 100644 index 000000000..ca8538a68 --- /dev/null +++ b/src/utils/sendEmail.js @@ -0,0 +1,27 @@ +import { Linking } from 'react-native'; +import qs from 'qs'; + + export const sendEmail = async (to, subject, body, options = {}) => { + const { cc, bcc } = options; + + let url = `mailto:${to}`; + + const query = qs.stringify({ + subject, + body, + cc, + bcc, + }); + + if (query.length) { + url += `?${query}`; + } + + const canOpen = await Linking.canOpenURL(url); + + if (!canOpen) { + throw new Error('Provided URL can not be handled'); + } + + return Linking.openURL(url); +}; \ No newline at end of file From 1dac70d19d860e6fad05cd68eff7d66eb3902508 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 19 Mar 2019 00:25:23 +0200 Subject: [PATCH 02/79] New translations en-US.json (Portuguese) --- src/config/locales/pt-PT.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/locales/pt-PT.json b/src/config/locales/pt-PT.json index 2142797bc..1877b9095 100644 --- a/src/config/locales/pt-PT.json +++ b/src/config/locales/pt-PT.json @@ -66,7 +66,7 @@ "pincode": "Código PIN", "reset": "Reiniciar", "nsfw_content": "Conteúdo NSFW", - "default_footer": "Default Footer", + "default_footer": "Rodapé Padrão", "nsfw": { "always_show": "Mostrar sempre", "always_hide": "Ocultar sempre", From 8503d71a189f9d1ebf02260f5adc75672c292c48 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:27:05 +0200 Subject: [PATCH 03/79] New translations en-US.json (Dutch) --- src/config/locales/nl-NL.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/nl-NL.json b/src/config/locales/nl-NL.json index 3c4a54d4a..230b77bad 100644 --- a/src/config/locales/nl-NL.json +++ b/src/config/locales/nl-NL.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Stemmers informatie", From 143f7aeb92fdc3c21a5290c3d41097623a010354 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:27:07 +0200 Subject: [PATCH 04/79] New translations en-US.json (Catalan) --- src/config/locales/ca-ES.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/ca-ES.json b/src/config/locales/ca-ES.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/ca-ES.json +++ b/src/config/locales/ca-ES.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From c61e1386f375f3022718adef957462266ca8591f Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:27:09 +0200 Subject: [PATCH 05/79] New translations en-US.json (Georgian) --- src/config/locales/ka-GE.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/ka-GE.json b/src/config/locales/ka-GE.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/ka-GE.json +++ b/src/config/locales/ka-GE.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From 78476474a908ce79477cd8499e5f1ceeb7f0535f Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:27:10 +0200 Subject: [PATCH 06/79] New translations en-US.json (Galician) --- src/config/locales/gl-ES.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/gl-ES.json b/src/config/locales/gl-ES.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/gl-ES.json +++ b/src/config/locales/gl-ES.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From e6f2cb33d59e37d0b0dc126a64477cb1d4a3ae2b Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:27:12 +0200 Subject: [PATCH 07/79] New translations en-US.json (French) --- src/config/locales/fr-FR.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/fr-FR.json b/src/config/locales/fr-FR.json index b59e8fe91..8f9c84b90 100644 --- a/src/config/locales/fr-FR.json +++ b/src/config/locales/fr-FR.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Réinitialiser", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Info des votants", From 748fb3dce9d132bee244bfe761d6b060409a4395 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:27:13 +0200 Subject: [PATCH 08/79] New translations en-US.json (Finnish) --- src/config/locales/fi-FI.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/fi-FI.json b/src/config/locales/fi-FI.json index b0984594d..544abf5c9 100644 --- a/src/config/locales/fi-FI.json +++ b/src/config/locales/fi-FI.json @@ -66,12 +66,16 @@ "pincode": "PIN-koodi", "reset": "Nollaa", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From 18d7eab18930db94362df9c9fa861f0a4f636032 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:27:15 +0200 Subject: [PATCH 09/79] New translations en-US.json (Filipino) --- src/config/locales/fil-PH.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/fil-PH.json b/src/config/locales/fil-PH.json index e692881e4..fd46fb826 100644 --- a/src/config/locales/fil-PH.json +++ b/src/config/locales/fil-PH.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From 312bb4fd6950b6aa89ff84fd7cc62b5c23739555 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:27:17 +0200 Subject: [PATCH 10/79] New translations en-US.json (Estonian) --- src/config/locales/et-EE.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/et-EE.json b/src/config/locales/et-EE.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/et-EE.json +++ b/src/config/locales/et-EE.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From 4e60243e13c8a9cb62d18008b49d95b05fa75f52 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:27:18 +0200 Subject: [PATCH 11/79] New translations en-US.json (Esperanto) --- src/config/locales/eo-UY.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/eo-UY.json b/src/config/locales/eo-UY.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/eo-UY.json +++ b/src/config/locales/eo-UY.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From 06fe5e84d7f8b14b16be075970e123d15ac9a2f1 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:27:20 +0200 Subject: [PATCH 12/79] New translations en-US.json (Danish) --- src/config/locales/da-DK.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/da-DK.json b/src/config/locales/da-DK.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/da-DK.json +++ b/src/config/locales/da-DK.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From 65d602fa98ba9813707eb985933ee9225722f133 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:27:21 +0200 Subject: [PATCH 13/79] New translations en-US.json (Czech) --- src/config/locales/cs-CZ.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/cs-CZ.json b/src/config/locales/cs-CZ.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/cs-CZ.json +++ b/src/config/locales/cs-CZ.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From f32f04a2f807f2553e89c14a86bde7995211c915 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:27:23 +0200 Subject: [PATCH 14/79] New translations en-US.json (Croatian) --- src/config/locales/hr-HR.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/hr-HR.json b/src/config/locales/hr-HR.json index 7c43f908a..8c8722278 100644 --- a/src/config/locales/hr-HR.json +++ b/src/config/locales/hr-HR.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Resetiraj", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Informacije o glasačima", From fe5aa1eea8c134b7a9258585b47bbf40a454ae7f Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:27:25 +0200 Subject: [PATCH 15/79] New translations en-US.json (Chinese Traditional) --- src/config/locales/zh-TW.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/zh-TW.json b/src/config/locales/zh-TW.json index 8ceb7e5ff..7ebd7da31 100644 --- a/src/config/locales/zh-TW.json +++ b/src/config/locales/zh-TW.json @@ -66,12 +66,16 @@ "pincode": "PIN 碼", "reset": "重置", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "投票者訊息", From e9c75569e26835be81c08551a93598c437d270ae Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:27:26 +0200 Subject: [PATCH 16/79] New translations en-US.json (Chinese Simplified) --- src/config/locales/zh-CN.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/zh-CN.json b/src/config/locales/zh-CN.json index 434ec5014..ec2ab05b6 100644 --- a/src/config/locales/zh-CN.json +++ b/src/config/locales/zh-CN.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "重置", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "投票者信息", From 8d91283d585fd1da99756c6eebe3a4914d6d30c3 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:27:28 +0200 Subject: [PATCH 17/79] New translations en-US.json (Cebuano) --- src/config/locales/ceb-PH.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/ceb-PH.json b/src/config/locales/ceb-PH.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/ceb-PH.json +++ b/src/config/locales/ceb-PH.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From 0c915bad1d5f00c392a6c07722537d7da7cf589d Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:27:29 +0200 Subject: [PATCH 18/79] New translations en-US.json (Bulgarian) --- src/config/locales/bg-BG.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/bg-BG.json b/src/config/locales/bg-BG.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/bg-BG.json +++ b/src/config/locales/bg-BG.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From 157c6f2b5e1bb020e8ac9b1aaeb8a573d178a57c Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:27:31 +0200 Subject: [PATCH 19/79] New translations en-US.json (Arabic) --- src/config/locales/ar-SA.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/ar-SA.json b/src/config/locales/ar-SA.json index 74698f600..bea866c38 100644 --- a/src/config/locales/ar-SA.json +++ b/src/config/locales/ar-SA.json @@ -66,12 +66,16 @@ "pincode": "رمز PIN", "reset": "إعادة", "nsfw_content": "محتوى NSFW", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "تذييل إفتراضي", "nsfw": { "always_show": "عرض دوماً", "always_hide": "إخفاء دوماً", "always_warn": "التحذير دوماً" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "معلومات عن المصوتين", From 0170d89a24ccb8406cf7b36467d2ee04e1a6df7b Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:27:33 +0200 Subject: [PATCH 20/79] New translations en-US.json (Bengali) --- src/config/locales/bn-BD.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/bn-BD.json b/src/config/locales/bn-BD.json index 9d515b490..381f1feee 100644 --- a/src/config/locales/bn-BD.json +++ b/src/config/locales/bn-BD.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From dce960209f87dda4cef395705dd06d37b4f16208 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:27:35 +0200 Subject: [PATCH 21/79] New translations en-US.json (Azerbaijani) --- src/config/locales/az-AZ.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/az-AZ.json b/src/config/locales/az-AZ.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/az-AZ.json +++ b/src/config/locales/az-AZ.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From ca8676774828a7750a62fa38e3fb019f21b50358 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:27:37 +0200 Subject: [PATCH 22/79] New translations en-US.json (Assamese) --- src/config/locales/as-IN.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/as-IN.json b/src/config/locales/as-IN.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/as-IN.json +++ b/src/config/locales/as-IN.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From f4d2dada9b9bad0b32600c25dd5aecb9680d1018 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:27:38 +0200 Subject: [PATCH 23/79] New translations en-US.json (Bosnian) --- src/config/locales/bs-BA.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/bs-BA.json b/src/config/locales/bs-BA.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/bs-BA.json +++ b/src/config/locales/bs-BA.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From 49e1d7e5ac5989dabacf6cdde08c3adbc9a193db Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:27:39 +0200 Subject: [PATCH 24/79] New translations en-US.json (Albanian) --- src/config/locales/sq-AL.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/sq-AL.json b/src/config/locales/sq-AL.json index 8e2fd68e5..929f83911 100644 --- a/src/config/locales/sq-AL.json +++ b/src/config/locales/sq-AL.json @@ -66,12 +66,16 @@ "pincode": "PIN code", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From e783916ef94c14eb5a6e9ccae1d7f35c97498762 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:27:41 +0200 Subject: [PATCH 25/79] New translations en-US.json (Armenian) --- src/config/locales/hy-AM.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/hy-AM.json b/src/config/locales/hy-AM.json index 8e2fd68e5..929f83911 100644 --- a/src/config/locales/hy-AM.json +++ b/src/config/locales/hy-AM.json @@ -66,12 +66,16 @@ "pincode": "PIN code", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From 84a92a2b275a84b7190ca8546d297db84eb89725 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:27:43 +0200 Subject: [PATCH 26/79] New translations en-US.json (Slovenian) --- src/config/locales/sl-SI.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/sl-SI.json b/src/config/locales/sl-SI.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/sl-SI.json +++ b/src/config/locales/sl-SI.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From 09201d4dc41f62c3b697b8d5084afad97c8d0d3f Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:27:44 +0200 Subject: [PATCH 27/79] New translations en-US.json (Slovak) --- src/config/locales/sk-SK.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/sk-SK.json b/src/config/locales/sk-SK.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/sk-SK.json +++ b/src/config/locales/sk-SK.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From 42f1f2c62f829edbe641b9a22e99c15bc0356971 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:27:46 +0200 Subject: [PATCH 28/79] New translations en-US.json (Norwegian) --- src/config/locales/no-NO.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/no-NO.json b/src/config/locales/no-NO.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/no-NO.json +++ b/src/config/locales/no-NO.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From 916b56bdd93eb345212769a86b5a8935f7ea55af Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:27:47 +0200 Subject: [PATCH 29/79] New translations en-US.json (Polish) --- src/config/locales/pl-PL.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/pl-PL.json b/src/config/locales/pl-PL.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/pl-PL.json +++ b/src/config/locales/pl-PL.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From 194ac31b8ce69152eb47f02e11cf75c0bbd55f2e Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:27:49 +0200 Subject: [PATCH 30/79] New translations en-US.json (Romanian) --- src/config/locales/ro-RO.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/ro-RO.json b/src/config/locales/ro-RO.json index a26e1d8f7..b5fbc8682 100644 --- a/src/config/locales/ro-RO.json +++ b/src/config/locales/ro-RO.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Resetare", "nsfw_content": "Conținut NSFW", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Afisează întotdeauna", "always_hide": "Ascunde întotdeauna", "always_warn": "Avertizează întotdeauna" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Detalii votanți", From 82679d68b00a3399248be3c5010d05719d6d1522 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:27:51 +0200 Subject: [PATCH 31/79] New translations en-US.json (Punjabi) --- src/config/locales/pa-IN.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/pa-IN.json b/src/config/locales/pa-IN.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/pa-IN.json +++ b/src/config/locales/pa-IN.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From be886325b015a1c7dc9ad9bc3c4c7fa49e0cc6c0 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:27:52 +0200 Subject: [PATCH 32/79] New translations en-US.json (Serbian (Latin)) --- src/config/locales/sr-CS.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/sr-CS.json b/src/config/locales/sr-CS.json index e9442d164..be3441d9f 100644 --- a/src/config/locales/sr-CS.json +++ b/src/config/locales/sr-CS.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Resetuj", "nsfw_content": "NSFW sadržaj", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Informacije o glasačima", From 98dd647aae073aaf36603569773fd5c0b0b285ca Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:27:54 +0200 Subject: [PATCH 33/79] New translations en-US.json (Russian) --- src/config/locales/ru-RU.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/ru-RU.json b/src/config/locales/ru-RU.json index c85b12b04..ae46ac555 100644 --- a/src/config/locales/ru-RU.json +++ b/src/config/locales/ru-RU.json @@ -66,12 +66,16 @@ "pincode": "Пинкод", "reset": "Сбросить", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Детали голосов", From 0c187b1fa0cc91cd2e6089b2783418469fc71e6a Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:27:55 +0200 Subject: [PATCH 34/79] New translations en-US.json (Sanskrit) --- src/config/locales/sa-IN.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/sa-IN.json b/src/config/locales/sa-IN.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/sa-IN.json +++ b/src/config/locales/sa-IN.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From 560d452003ff70fb64fcc7a17a24c9de2fe6e5e9 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:27:57 +0200 Subject: [PATCH 35/79] New translations en-US.json (Swedish) --- src/config/locales/sv-SE.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/sv-SE.json b/src/config/locales/sv-SE.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/sv-SE.json +++ b/src/config/locales/sv-SE.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From 0f4f9ac1d36960bf5c84a174f1e55f8c9213a65b Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:27:58 +0200 Subject: [PATCH 36/79] New translations en-US.json (Swahili) --- src/config/locales/sw-KE.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/sw-KE.json b/src/config/locales/sw-KE.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/sw-KE.json +++ b/src/config/locales/sw-KE.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From 94dd45c632163db305162d332943cef1f3fbdd2b Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:00 +0200 Subject: [PATCH 37/79] New translations en-US.json (Hungarian) --- src/config/locales/hu-HU.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/hu-HU.json b/src/config/locales/hu-HU.json index 3e0bc6547..af6db3ec7 100644 --- a/src/config/locales/hu-HU.json +++ b/src/config/locales/hu-HU.json @@ -66,12 +66,16 @@ "pincode": "PIN kód", "reset": "Visszaállítás", "nsfw_content": "NSFW tartalom", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Alapértelmezett lábléc", "nsfw": { "always_show": "Mindig látszik", "always_hide": "Mindig rejtve", "always_warn": "Mindig figyelmeztess" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Infó a szavazókról", From 47ef982e6b2a02fe07b32832ce9ec1d58fa46d00 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:01 +0200 Subject: [PATCH 38/79] New translations en-US.json (Tajik) --- src/config/locales/tg-TJ.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/tg-TJ.json b/src/config/locales/tg-TJ.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/tg-TJ.json +++ b/src/config/locales/tg-TJ.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From 7112b962403a8b694becd8e58310eb2621cf8694 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:03 +0200 Subject: [PATCH 39/79] New translations en-US.json (Tamil) --- src/config/locales/ta-IN.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/ta-IN.json b/src/config/locales/ta-IN.json index a36caa8cb..3e3fe4c7c 100644 --- a/src/config/locales/ta-IN.json +++ b/src/config/locales/ta-IN.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From 304be99beb3ff17f44ee3530cef8f8af505514f6 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:04 +0200 Subject: [PATCH 40/79] New translations en-US.json (Thai) --- src/config/locales/th-TH.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/th-TH.json b/src/config/locales/th-TH.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/th-TH.json +++ b/src/config/locales/th-TH.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From 09dc8180811af08defca639f3cf2c10fa45a1166 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:07 +0200 Subject: [PATCH 41/79] New translations en-US.json (Tibetan) --- src/config/locales/bo-BT.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/bo-BT.json b/src/config/locales/bo-BT.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/bo-BT.json +++ b/src/config/locales/bo-BT.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From 6ac100d4253b0b97ae9de8245c4c768af10ffb20 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:09 +0200 Subject: [PATCH 42/79] New translations en-US.json (Nepali) --- src/config/locales/ne-NP.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/ne-NP.json b/src/config/locales/ne-NP.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/ne-NP.json +++ b/src/config/locales/ne-NP.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From c2b1b3345bdb8e9742ec73b81689f4444fe017f9 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:11 +0200 Subject: [PATCH 43/79] New translations en-US.json (Turkmen) --- src/config/locales/tk-TM.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/tk-TM.json b/src/config/locales/tk-TM.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/tk-TM.json +++ b/src/config/locales/tk-TM.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From 7ca518ce01dd7123830d0c3ca1a21e80fa7ba23b Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:12 +0200 Subject: [PATCH 44/79] New translations en-US.json (Ukrainian) --- src/config/locales/uk-UA.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/uk-UA.json b/src/config/locales/uk-UA.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/uk-UA.json +++ b/src/config/locales/uk-UA.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From ed65f6c0826ca2f353d621db571911773058199c Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:15 +0200 Subject: [PATCH 45/79] New translations en-US.json (Urdu (India)) --- src/config/locales/ur-IN.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/ur-IN.json b/src/config/locales/ur-IN.json index 7285811df..69ff6fe6d 100644 --- a/src/config/locales/ur-IN.json +++ b/src/config/locales/ur-IN.json @@ -66,12 +66,16 @@ "pincode": "PIN code", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From b9be8a6ac91b2c425f90c47d83cc0a3761c635a4 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:16 +0200 Subject: [PATCH 46/79] New translations en-US.json (Urdu (Pakistan)) --- src/config/locales/ur-PK.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/ur-PK.json b/src/config/locales/ur-PK.json index 7285811df..69ff6fe6d 100644 --- a/src/config/locales/ur-PK.json +++ b/src/config/locales/ur-PK.json @@ -66,12 +66,16 @@ "pincode": "PIN code", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From 15e99e36c112bde0b72fd1fe50a78d4e46dd11d7 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:19 +0200 Subject: [PATCH 47/79] New translations en-US.json (Uzbek) --- src/config/locales/uz-UZ.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/uz-UZ.json b/src/config/locales/uz-UZ.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/uz-UZ.json +++ b/src/config/locales/uz-UZ.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From f0a3d03b8b40ecfd87995aa742ee7b48056a45a9 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:22 +0200 Subject: [PATCH 48/79] New translations en-US.json (Yoruba) --- src/config/locales/yo-NG.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/yo-NG.json b/src/config/locales/yo-NG.json index 4678a029c..ad8a3e901 100644 --- a/src/config/locales/yo-NG.json +++ b/src/config/locales/yo-NG.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Tun bere", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Alaye nipa oludibo", From 3b63d5b6784f211c8e7c9115e15dce47a11e20f7 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:23 +0200 Subject: [PATCH 49/79] New translations en-US.json (Nigerian Pidgin) --- src/config/locales/pcm-NG.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/pcm-NG.json b/src/config/locales/pcm-NG.json index 2a8b83fc9..5e7422043 100644 --- a/src/config/locales/pcm-NG.json +++ b/src/config/locales/pcm-NG.json @@ -66,12 +66,16 @@ "pincode": "PIN code", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "People Wey Vote informate", From 032dc313c6c2d416a12932c40560bf3fefe3dce4 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:24 +0200 Subject: [PATCH 50/79] New translations en-US.json (Icelandic) --- src/config/locales/is-IS.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/is-IS.json b/src/config/locales/is-IS.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/is-IS.json +++ b/src/config/locales/is-IS.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From a3c3548777469d9cc8a059b1e9a105f57438f494 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:26 +0200 Subject: [PATCH 51/79] New translations en-US.json (Mongolian) --- src/config/locales/mn-MN.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/mn-MN.json b/src/config/locales/mn-MN.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/mn-MN.json +++ b/src/config/locales/mn-MN.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From d2e63ced9032916e0b4d194a382ed3079667d397 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:28 +0200 Subject: [PATCH 52/79] New translations en-US.json (Hindi) --- src/config/locales/hi-IN.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/hi-IN.json b/src/config/locales/hi-IN.json index e3bc69c13..bdcb785c0 100644 --- a/src/config/locales/hi-IN.json +++ b/src/config/locales/hi-IN.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "पुनः नियोजन", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "मतदाताओं की जानकारी", From 7f36b213078d876eef442f89733b6a16caed16e7 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:29 +0200 Subject: [PATCH 53/79] New translations en-US.json (Malay) --- src/config/locales/ms-MY.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/ms-MY.json b/src/config/locales/ms-MY.json index f4350aec3..8afd9ad6d 100644 --- a/src/config/locales/ms-MY.json +++ b/src/config/locales/ms-MY.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Tetapkan semula", "nsfw_content": "Kandungan NSFW", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Ranka Pendirian", "nsfw": { "always_show": "Benarkan", "always_hide": "Tutup", "always_warn": "Beri amaran dahulu" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Info pengundi", From b24e721fca465956e5f960704c78855954341697 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:31 +0200 Subject: [PATCH 54/79] New translations en-US.json (Vietnamese) --- src/config/locales/vi-VN.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/vi-VN.json b/src/config/locales/vi-VN.json index 469341a87..a6f7c1604 100644 --- a/src/config/locales/vi-VN.json +++ b/src/config/locales/vi-VN.json @@ -66,12 +66,16 @@ "pincode": "Mã PIN", "reset": "Thiết lập lại", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Thông tin người bình chọn", From 93b8ec7bfb028d77bf3c767dcb873f74a426abfe Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:33 +0200 Subject: [PATCH 55/79] New translations en-US.json (Indonesian) --- src/config/locales/id-ID.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/id-ID.json b/src/config/locales/id-ID.json index 630548b5c..826911e3b 100644 --- a/src/config/locales/id-ID.json +++ b/src/config/locales/id-ID.json @@ -66,12 +66,16 @@ "pincode": "Kode PIN", "reset": "Setel Ulang", "nsfw_content": "Konten NSFW", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Selalu Tampilkan", "always_hide": "Selalu menyembunyikan", "always_warn": "Selalu memperingatkan" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Info Pemilih", From 25d942932f4df29d9a01e0245489d915b3a1f687 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:35 +0200 Subject: [PATCH 56/79] New translations en-US.json (Turkish) --- src/config/locales/tr-TR.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/tr-TR.json b/src/config/locales/tr-TR.json index eb8362049..c4d98f3b3 100644 --- a/src/config/locales/tr-TR.json +++ b/src/config/locales/tr-TR.json @@ -66,12 +66,16 @@ "pincode": "Pinkod", "reset": "Sifirla", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Oy Verenler", From 168cab8b80ab4e71e44b0a5afb9ee27287df0143 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:36 +0200 Subject: [PATCH 57/79] New translations en-US.json (Portuguese) --- src/config/locales/pt-PT.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/pt-PT.json b/src/config/locales/pt-PT.json index 1877b9095..c0e7ab569 100644 --- a/src/config/locales/pt-PT.json +++ b/src/config/locales/pt-PT.json @@ -66,12 +66,16 @@ "pincode": "Código PIN", "reset": "Reiniciar", "nsfw_content": "Conteúdo NSFW", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Rodapé Padrão", "nsfw": { "always_show": "Mostrar sempre", "always_hide": "Ocultar sempre", "always_warn": "Avisar sempre" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Informação de eleitores", From afd0dd9abfa03b8957c339f9b0ccf4c3ab2259a9 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:38 +0200 Subject: [PATCH 58/79] New translations en-US.json (Persian) --- src/config/locales/fa-IR.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/fa-IR.json b/src/config/locales/fa-IR.json index 5837b1373..d50107f43 100644 --- a/src/config/locales/fa-IR.json +++ b/src/config/locales/fa-IR.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "راه اندازی مجدد", "nsfw_content": "محتوای نامناسب برای کودکان", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "پانویس پیش فرض", "nsfw": { "always_show": "همیشه نمایش بده", "always_hide": "همیشه پنهان باشد", "always_warn": "همیشه هشدار بده" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "اطلاعات رأی دهندگان", From 4987ef12f9265f1aedfb8ea05346d08561f256d2 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:39 +0200 Subject: [PATCH 59/79] New translations en-US.json (German) --- src/config/locales/de-DE.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/de-DE.json b/src/config/locales/de-DE.json index 3f87c1ed2..149647505 100644 --- a/src/config/locales/de-DE.json +++ b/src/config/locales/de-DE.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Zurücksetzen", "nsfw_content": "NSFW Inhalt", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Standard Fußzeile", "nsfw": { "always_show": "Immer anzeigen", "always_hide": "Immer verstecken", "always_warn": "Immer warnen" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voter-Informationen", From df90633ce5757b1f14dfc8263cd55c6d33cfca3a Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:41 +0200 Subject: [PATCH 60/79] New translations en-US.json (Gothic) --- src/config/locales/got-DE.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/got-DE.json b/src/config/locales/got-DE.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/got-DE.json +++ b/src/config/locales/got-DE.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From 341c0c55bdaa993b16d7f29c2c48ca7643f2724e Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:42 +0200 Subject: [PATCH 61/79] New translations en-US.json (Greek) --- src/config/locales/el-GR.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/el-GR.json b/src/config/locales/el-GR.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/el-GR.json +++ b/src/config/locales/el-GR.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From a2da6f229bd3ec6785b9314cd8219e53fc16447f Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:44 +0200 Subject: [PATCH 62/79] New translations en-US.json (Hebrew) --- src/config/locales/he-IL.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/he-IL.json b/src/config/locales/he-IL.json index 2c83f2c4a..2b184ed82 100644 --- a/src/config/locales/he-IL.json +++ b/src/config/locales/he-IL.json @@ -66,12 +66,16 @@ "pincode": "קוד PIN", "reset": "אתחל", "nsfw_content": "תוכן NSFW", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "ברירת מחדל תחתונה", "nsfw": { "always_show": "הצג תמיד", "always_hide": "הסתר תמיד", "always_warn": "הזהר תמיד" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "פרטי המצביעים", From f5258a00ec65b6338ba46326923d7192d70adb75 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:45 +0200 Subject: [PATCH 63/79] New translations en-US.json (Spanish) --- src/config/locales/es-ES.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/es-ES.json b/src/config/locales/es-ES.json index ee32ddbd8..f4377f39c 100644 --- a/src/config/locales/es-ES.json +++ b/src/config/locales/es-ES.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reiniciar", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Información de votantes", From 1609bc466d16ccf706a7d6a6f864f563efabf729 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:47 +0200 Subject: [PATCH 64/79] New translations en-US.json (Macedonian) --- src/config/locales/mk-MK.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/mk-MK.json b/src/config/locales/mk-MK.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/mk-MK.json +++ b/src/config/locales/mk-MK.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From 10dda1dc75a746a0ea584c3fd6324d7f9a4dd6e6 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:49 +0200 Subject: [PATCH 65/79] New translations en-US.json (Irish) --- src/config/locales/ga-IE.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/ga-IE.json b/src/config/locales/ga-IE.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/ga-IE.json +++ b/src/config/locales/ga-IE.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From 6ddc9afff8627728d47e206421442b88600d8a3d Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:51 +0200 Subject: [PATCH 66/79] New translations en-US.json (Italian) --- src/config/locales/it-IT.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/it-IT.json b/src/config/locales/it-IT.json index b548fb501..51876e74f 100644 --- a/src/config/locales/it-IT.json +++ b/src/config/locales/it-IT.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Resetta", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Info Votanti", From 355c5c6f92580548dec6ac68efaa3eb2c82c18b4 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:52 +0200 Subject: [PATCH 67/79] New translations en-US.json (Japanese) --- src/config/locales/ja-JP.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/ja-JP.json b/src/config/locales/ja-JP.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/ja-JP.json +++ b/src/config/locales/ja-JP.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From 65b374046d50330f8403d0adcedfca3bc8ead254 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:53 +0200 Subject: [PATCH 68/79] New translations en-US.json (Kashmiri) --- src/config/locales/ks-IN.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/ks-IN.json b/src/config/locales/ks-IN.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/ks-IN.json +++ b/src/config/locales/ks-IN.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From 28aa94a924bca891418241cf38f8c8158d7431a9 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:55 +0200 Subject: [PATCH 69/79] New translations en-US.json (Kazakh) --- src/config/locales/kk-KZ.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/kk-KZ.json b/src/config/locales/kk-KZ.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/kk-KZ.json +++ b/src/config/locales/kk-KZ.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From 94d562d4d7b2737643d2498a10c9cbca0bb99722 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:56 +0200 Subject: [PATCH 70/79] New translations en-US.json (Korean) --- src/config/locales/ko-KR.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/ko-KR.json b/src/config/locales/ko-KR.json index 9a06aa3f5..680e20ae7 100644 --- a/src/config/locales/ko-KR.json +++ b/src/config/locales/ko-KR.json @@ -66,12 +66,16 @@ "pincode": "PIN 코드", "reset": "초기화", "nsfw_content": "NSFW 콘텐츠", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "항상 보여주기", "always_hide": "항상 숨기기", "always_warn": "항상 경고 표시하기" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "투표자 정보", From c1b11821bf89db32bac04aadf66888e8b65255d5 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:28:58 +0200 Subject: [PATCH 71/79] New translations en-US.json (Kurdish) --- src/config/locales/ku-TR.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/ku-TR.json b/src/config/locales/ku-TR.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/ku-TR.json +++ b/src/config/locales/ku-TR.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From 2fc737f1fe30f1244ba5f918312baaf0735768a2 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:29:00 +0200 Subject: [PATCH 72/79] New translations en-US.json (Kyrgyz) --- src/config/locales/ky-KG.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/ky-KG.json b/src/config/locales/ky-KG.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/ky-KG.json +++ b/src/config/locales/ky-KG.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From b1c9619776eda6e487833d5ff72314cd04e4cb87 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:29:01 +0200 Subject: [PATCH 73/79] New translations en-US.json (Latvian) --- src/config/locales/lv-LV.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/lv-LV.json b/src/config/locales/lv-LV.json index 24269f452..d75ba4dbe 100644 --- a/src/config/locales/lv-LV.json +++ b/src/config/locales/lv-LV.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Reset", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Voters Info", From 01e85b7b29fecea1ea32959a86727f3d6c54cd73 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:29:03 +0200 Subject: [PATCH 74/79] New translations en-US.json (Lithuanian) --- src/config/locales/lt-LT.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/lt-LT.json b/src/config/locales/lt-LT.json index 59ca32b98..ecf41db19 100644 --- a/src/config/locales/lt-LT.json +++ b/src/config/locales/lt-LT.json @@ -66,12 +66,16 @@ "pincode": "Pincode", "reset": "Atstatyti", "nsfw_content": "NSFW Turinys", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Visada rodyti", "always_hide": "Visada paslėpti", "always_warn": "Visada įspėti" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Balsuotojo Informacija", From 3b74566fc6ccfc94e12623bc8178f182eb99c41e Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:29:04 +0200 Subject: [PATCH 75/79] New translations en-US.json (Acehnese) --- src/config/locales/ac-ace.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/locales/ac-ace.json b/src/config/locales/ac-ace.json index 7610e0b25..5736439d3 100644 --- a/src/config/locales/ac-ace.json +++ b/src/config/locales/ac-ace.json @@ -66,12 +66,16 @@ "pincode": "Kode PIN", "reset": "Atôe ulang", "nsfw_content": "NSFW Content", + "send_feedback": "Send Feedback", + "send": "Send", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", "always_hide": "Always hide", "always_warn": "Always warn" - } + }, + "feedback_success": "Email successfully open", + "feedback_fail": "Email client could not open" }, "voters": { "voters_info": "Info ureueng galak", From 582908e005a2b0ee127b2f05ef0b6181a370b041 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 21:55:02 +0200 Subject: [PATCH 76/79] New translations en-US.json (Arabic) --- src/config/locales/ar-SA.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/config/locales/ar-SA.json b/src/config/locales/ar-SA.json index bea866c38..d39685b28 100644 --- a/src/config/locales/ar-SA.json +++ b/src/config/locales/ar-SA.json @@ -66,16 +66,16 @@ "pincode": "رمز PIN", "reset": "إعادة", "nsfw_content": "محتوى NSFW", - "send_feedback": "Send Feedback", - "send": "Send", + "send_feedback": "إرسال الملاحظات", + "send": "إرسال", "default_footer": "تذييل إفتراضي", "nsfw": { "always_show": "عرض دوماً", "always_hide": "إخفاء دوماً", "always_warn": "التحذير دوماً" }, - "feedback_success": "Email successfully open", - "feedback_fail": "Email client could not open" + "feedback_success": "تم فتح البريد الإلكتروني بنجاح", + "feedback_fail": "لا يمكن فتح عميل البريد الإلكتروني" }, "voters": { "voters_info": "معلومات عن المصوتين", From 51cbd46f7d61a1408a4e955251f47e6faeee66da Mon Sep 17 00:00:00 2001 From: u-e Date: Wed, 20 Mar 2019 23:28:59 +0300 Subject: [PATCH 77/79] fixed weird confilit bugs --- .../settingsItem/view/settingsItemView.js | 3 +- .../settings/container/settingsContainer.js | 27 ++++++------ src/screens/settings/screen/settingsScreen.js | 42 ++++++++----------- 3 files changed, 32 insertions(+), 40 deletions(-) diff --git a/src/components/settingsItem/view/settingsItemView.js b/src/components/settingsItem/view/settingsItemView.js index ad523fdcc..1b9b09465 100644 --- a/src/components/settingsItem/view/settingsItemView.js +++ b/src/components/settingsItem/view/settingsItemView.js @@ -34,6 +34,7 @@ class SettingsItemView extends PureComponent { isOn, actionType, defaultText, + handleOnButtonPress, } = this.props; switch (type) { @@ -64,7 +65,7 @@ class SettingsItemView extends PureComponent { case 'button': return ( handleOnChange(null, type, actionType)} + onPress={() => handleOnButtonPress(actionType)} textStyle={styles.textStyle} style={styles.textButton} text={text} diff --git a/src/screens/settings/container/settingsContainer.js b/src/screens/settings/container/settingsContainer.js index bb01f05fa..8433b7e53 100644 --- a/src/screens/settings/container/settingsContainer.js +++ b/src/screens/settings/container/settingsContainer.js @@ -90,10 +90,6 @@ class SettingsContainer extends Component { setNsfw2DB(action); break; - case 'feedback': - this._handleSendFeedback(); - break; - default: break; } @@ -180,13 +176,17 @@ class SettingsContainer extends Component { this._setPushToken(); }; - _handleButtonPress = (action, actionType) => { + _handleButtonPress = (actionType) => { const { dispatch, setPinCodeState } = this.props; switch (actionType) { case 'pincode': setPinCodeState({ isReset: true }); dispatch(openPinCodeModal()); break; + + case 'feedback': + this._handleSendFeedback(); + break; default: break; } @@ -202,10 +202,6 @@ class SettingsContainer extends Component { this._handleToggleChanged(action, actionType); break; - case 'button': - this._handleButtonPress(action, actionType); - break; - default: break; } @@ -229,18 +225,18 @@ class SettingsContainer extends Component { }); } }; - + _handleSendFeedback = async () => { const { dispatch, intl } = this.props; let message; - await sendEmail( + await sendEmail( 'bug@esteem.app', 'Feedback/Bug report', `Write your message here! - App version: ${VersionNumber.buildVersion} - Platform: ${Platform.OS === 'ios' ? 'IOS' : 'Android'} - Device: ${DeviceInfo.getDeviceName()}`, + + App version: ${VersionNumber.buildVersion} + Platform: ${Platform.OS === 'ios' ? 'IOS' : 'Android'}`, ) .then(() => { message = 'settings.feedback_success'; @@ -249,7 +245,7 @@ class SettingsContainer extends Component { message = 'settings.feedback_fail'; }); - if (message) { + if (message) { dispatch( toastNotification( intl.formatMessage({ @@ -267,6 +263,7 @@ class SettingsContainer extends Component { ); diff --git a/src/screens/settings/screen/settingsScreen.js b/src/screens/settings/screen/settingsScreen.js index 20d740a7f..c4962a086 100644 --- a/src/screens/settings/screen/settingsScreen.js +++ b/src/screens/settings/screen/settingsScreen.js @@ -44,6 +44,7 @@ class SettingsScreen extends PureComponent { selectedCurrency, selectedLanguage, serverList, + handleOnButtonPress, } = this.props; return ( @@ -92,9 +93,11 @@ class SettingsScreen extends PureComponent { })} type="dropdown" actionType="nsfw" - options={NSFW.map(item => intl.formatMessage({ - id: item, - }))} + options={NSFW.map(item => + intl.formatMessage({ + id: item, + }), + )} selectedOptionIndex={parseInt(nsfw, 10)} handleOnChange={handleOnChange} /> @@ -118,26 +121,6 @@ class SettingsScreen extends PureComponent { /> {!!isLoggedIn && ( - - )} + ); From 3a020db8944d6b6ca674b224074fe8579555b4f8 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 20 Mar 2019 23:04:04 +0200 Subject: [PATCH 78/79] New translations en-US.json (German) --- src/config/locales/de-DE.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/config/locales/de-DE.json b/src/config/locales/de-DE.json index 149647505..bab3fe657 100644 --- a/src/config/locales/de-DE.json +++ b/src/config/locales/de-DE.json @@ -66,16 +66,16 @@ "pincode": "Pincode", "reset": "Zurücksetzen", "nsfw_content": "NSFW Inhalt", - "send_feedback": "Send Feedback", - "send": "Send", + "send_feedback": "Feedback senden", + "send": "Senden", "default_footer": "Standard Fußzeile", "nsfw": { "always_show": "Immer anzeigen", "always_hide": "Immer verstecken", "always_warn": "Immer warnen" }, - "feedback_success": "Email successfully open", - "feedback_fail": "Email client could not open" + "feedback_success": "E-Mail erfolgreich geöffnet", + "feedback_fail": "E-Mail Client konnte nicht geöffnet werden" }, "voters": { "voters_info": "Voter-Informationen", From a72f0c44a8c9de294aced9afac2000e6435d09a7 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Thu, 21 Mar 2019 03:00:21 +0200 Subject: [PATCH 79/79] New translations en-US.json (Korean) --- src/config/locales/ko-KR.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/locales/ko-KR.json b/src/config/locales/ko-KR.json index 680e20ae7..1f5294cef 100644 --- a/src/config/locales/ko-KR.json +++ b/src/config/locales/ko-KR.json @@ -66,7 +66,7 @@ "pincode": "PIN 코드", "reset": "초기화", "nsfw_content": "NSFW 콘텐츠", - "send_feedback": "Send Feedback", + "send_feedback": "피드백 보내기", "send": "Send", "default_footer": "Default Footer", "nsfw": {