diff --git a/locales/en.json b/locales/en.json index 071fd5a..b7d5623 100644 --- a/locales/en.json +++ b/locales/en.json @@ -354,15 +354,15 @@ "libs": "Libraries used" }, "feedback": { - "title": "Feedback", - "bugs": "Report Bugs", - "bugsSubtitle": "Did you find a bug? Let us know!", - "bugsDescription": "Reporting bugs helps us make the app better. To do so, use one of the buttons below and be as precise as possible when describing your problem!", - "feedbackSubtitle": "Let us know what you think!", - "feedbackDescription": "Do you have a feature you want to be added/changed/removed, want to give your opinion on the app or simply chat with the dev? Use one of the links below!", - "contactMeans": "Using Gitea is recommended, to use it simply login with your INSA account.", - "homeButtonTitle": "Feedback/Bug report", - "homeButtonSubtitle": "Contact the devs" + "title": "Contribute", + "feedback": "Contact the dev", + "feedbackSubtitle": "A student like you!", + "feedbackDescription": "Feedback or bugs, you are always welcome.\nChoose your preferred way from the buttons bellow.", + "contribute": "Contribute to the project", + "contributeSubtitle": "With a possible \"implication citoyenne\"!", + "contributeDescription": "Everyone can help: communication, design or coding! You are free to contribute as you like.\nYou can find bellow a link to Trello for project organization, and a link to the source code on GitEtud.", + "homeButtonTitle": "Contribute to the project", + "homeButtonSubtitle": "Your help is important" }, "game": { "title": "So Awesome Game", @@ -413,16 +413,16 @@ "text": "You can do much more with CAMPUS, but I can't explain everything here. Explore the app to find out!" }, "slideDone": { - "title": "Your feedback is valuable!", - "text": "This app is the work of one student (with some help here and there), so your feedback is much appreciated!" + "title": "Contribute to the project!", + "text": "This app is the work of one student, so your feedback and your help are welcome!\nEveryone can help: communication, design or coding!" }, "updateSlide0": { - "title": "New in this update!", - "text": "Hello you! I'm here to help you around the app." + "title": "Hi you!", + "text": "I'm new here and I will help you around the app. My thing is to give you lots of tips and tricks." }, "updateSlide1": { - "title": "Contribute!", - "text": "Everyone is free to contribute to the project, from reporting bugs to implementing new features" + "title": "Contribute to the project!", + "text": "This app is the work of one student, so your feedback and your help are welcome!\nEveryone can help: communication, design or coding!" }, "aprilFoolsSlide": { "title": "New in this update!", diff --git a/locales/fr.json b/locales/fr.json index e399b93..21c88fd 100644 --- a/locales/fr.json +++ b/locales/fr.json @@ -353,15 +353,15 @@ "libs": "Librairies utilisées" }, "feedback": { - "title": "Feedback", - "bugs": "Rapporter des Bugs", - "bugsSubtitle": "Tu as trouvé un bug ?", - "bugsDescription": "Rapporter les bugs m'aide à améliorer l'appli. Pour cela, merci d'utiliser un des boutons ci-dessous et de décrire ton problème le plus précisément possible !", - "feedbackSubtitle": "Dis moi ce que tu penses !", - "feedbackDescription": "Tu veux voir une fonctionnalité ajoutée/modifiée/supprimée ? Tu veux donner ton opinion sur l'appli ou simplement discuter avec le développeur (c'est moi coucou) ? Utilise un des liens ci-dessous !", - "contactMeans": "L'utilisation de Gitea est recommandée, pour l'utiliser, connecte toi avec tes identifiants INSA.", - "homeButtonTitle": "Feedback/Bugs", - "homeButtonSubtitle": "Contacte le développeur de l'appli" + "title": "Participer", + "feedback": "Contacte le développeur", + "feedbackSubtitle": "C'est un étudiant comme toi !", + "feedbackDescription": "Que ce soit pour donner ton avis ou rapporter des bugs, tu es le bienvenue.\nUtilise le moyen de ton choix parmi les boutons ci-dessous.", + "contribute": "Contribue au projet", + "contributeSubtitle": "Avec une possible implication citoyenne !", + "contributeDescription": "Il y en a pour tous les goûts : de la com', du design ou de la technique. Tu es libre de participer comme tu veux.\nTu trouveras ci-dessous un Trello de l'organisation du projet, ainsi que le code source sur GitEtud.", + "homeButtonTitle": "Participer au projet", + "homeButtonSubtitle": "Ton aide compte" }, "game": { "title": "Jeu trop ouf", @@ -412,16 +412,16 @@ "text": "Tu peux faire bien plus avec CAMPUS, mais je n'ai pas le temps de tout dire ici. Balade toi sur l'appli pour tout découvrir !" }, "slideDone": { - "title": "Ton avis compte !", - "text": "Cette appli à été réalisée par un seul étudiant (avec un peu d'aide par-ci par-là), donc tes retours sont les bienvenus !" + "title": "Participe au projet !", + "text": "Cette appli à été réalisée par un seul étudiant, donc tes retours et ton aide sont les bienvenus !\nIl y en a pour tous les goûts : de la com', du design ou de la technique !" }, "updateSlide0": { - "title": "Nouveau dans cette mise à jour !", - "text": "Coucou toi ! Je suis là pour t'aider trouver à utiliser l'appli." + "title": "Coucou toi !", + "text": "Je suis le petit nouveau qui t'accompagnera sur l'appli. Mon dada c'est de te donner plein d'astuces et d'infos." }, "updateSlide1": { "title": "Participe au projet !", - "text": "Tout le monde peut participer, que ce soit pour trouver des bugs ou ajouter des nouvelles fonctionnalités." + "text": "Cette appli à été réalisée par un seul étudiant, donc tes retours et ton aide sont les bienvenus !\nIl y en a pour tous les goûts : de la com', du design ou de la technique !" }, "aprilFoolsSlide": { "title": "Nouveau dans cette mise à jour !", diff --git a/src/screens/Other/FeedbackScreen.js b/src/screens/Other/FeedbackScreen.js index 40a57aa..bd93008 100644 --- a/src/screens/Other/FeedbackScreen.js +++ b/src/screens/Other/FeedbackScreen.js @@ -3,110 +3,130 @@ import * as React from 'react'; import {Avatar, Button, Card, Paragraph, withTheme} from 'react-native-paper'; import i18n from 'i18n-js'; -import {Linking} from 'react-native'; -import type {CustomThemeType} from '../../managers/ThemeManager'; +import {Linking, View} from 'react-native'; import CollapsibleScrollView from '../../components/Collapsible/CollapsibleScrollView'; import type {CardTitleIconPropsType} from '../../constants/PaperStyles'; -type PropsType = { - theme: CustomThemeType, -}; - const links = { - bugsMail: `mailto:app@amicale-insat.fr?subject=[BUG] Application CAMPUS -&body=Coucou Arnaud ça bug c'est nul,\n\n -Informations sur ton système si tu sais (iOS ou Android, modèle du tel, version):\n\n\n -Nature du problème :\n\n\n -Étapes pour reproduire ce pb :\n\n\n\n -Stp corrige le pb, bien cordialement.`, - bugsGit: - 'https://git.etud.insa-toulouse.fr/vergnet/application-amicale/issues/new', + bugsGit: 'https://git.etud.insa-toulouse.fr/vergnet/application-amicale/', + trello: 'https://trello.com/b/RMej49Uq/application-campus-insa', facebook: 'https://www.facebook.com/campus.insat', feedbackMail: `mailto:app@amicale-insat.fr?subject=[FEEDBACK] Application CAMPUS &body=Coucou Arnaud j'ai du feedback\n\n\n\nBien cordialement.`, feedbackDiscord: 'https://discord.gg/W8MeTec', }; -class FeedbackScreen extends React.Component { +class FeedbackScreen extends React.Component { /** * Gets link buttons * - * @param isBug True if buttons should redirect to bug report methods * @returns {*} */ - static getButtons(isBug: boolean): React.Node { + static getButtons(isFeedback: boolean): React.Node { return ( - - - + {isFeedback ? ( + + + + + + ) : ( + + + + + )} ); } render(): React.Node { - const {theme} = this.props; return ( ( - - )} - /> - - {i18n.t('screens.feedback.bugsDescription')} - - {i18n.t('screens.feedback.contactMeans')} - - - {FeedbackScreen.getButtons(true)} - - - - ( @@ -117,6 +137,19 @@ class FeedbackScreen extends React.Component { {i18n.t('screens.feedback.feedbackDescription')} + {FeedbackScreen.getButtons(true)} + ( + + )} + /> + + + {i18n.t('screens.feedback.contributeDescription')} + + {FeedbackScreen.getButtons(false)}