Browse Source

Updated about screen

Arnaud Vergnet 3 years ago
parent
commit
03d57e91d9
3 changed files with 13 additions and 4 deletions
  1. 7
    0
      src/screens/About/AboutScreen.js
  2. 3
    2
      translations/en.json
  3. 3
    2
      translations/fr.json

+ 7
- 0
src/screens/About/AboutScreen.js View File

@@ -37,6 +37,7 @@ const links = {
37 37
         "Coucou !\n\n",
38 38
     yohanLinkedin: 'https://www.linkedin.com/in/yohan-simard',
39 39
     react: 'https://facebook.github.io/react-native/',
40
+    expo: 'https://expo.io/',
40 41
 };
41 42
 
42 43
 type Props = {
@@ -165,6 +166,12 @@ class AboutScreen extends React.Component<Props, State> {
165 166
             showChevron: true
166 167
         },
167 168
         {
169
+            onPressCallback: () => openWebLink(links.react),
170
+            icon: 'language-javascript',
171
+            text: i18n.t('aboutScreen.expo'),
172
+            showChevron: true
173
+        },
174
+        {
168 175
             onPressCallback: () => this.props.navigation.navigate('dependencies'),
169 176
             icon: 'developer-board',
170 177
             text: i18n.t('aboutScreen.libs'),

+ 3
- 2
translations/en.json View File

@@ -107,11 +107,12 @@
107 107
     "license": "License",
108 108
     "debug": "Debug",
109 109
     "team": "Team",
110
-    "author": "Author",
110
+    "author": "Author and maintainer",
111 111
     "authorMail": "Send an email",
112
-    "additionalDev": "Additional developer",
112
+    "additionalDev": "Development help",
113 113
     "technologies": "Technologies",
114 114
     "reactNative": "Made with React Native",
115
+    "expo": "Built with Expo",
115 116
     "libs": "Libraries used"
116 117
   },
117 118
   "proximoScreen": {

+ 3
- 2
translations/fr.json View File

@@ -107,11 +107,12 @@
107 107
     "license": "Licence",
108 108
     "debug": "Debug",
109 109
     "team": "Équipe",
110
-    "author": "Auteur",
110
+    "author": "Auteur et mainteneur",
111 111
     "authorMail": "Envoyer un mail",
112
-    "additionalDev": "Développeur additionnel",
112
+    "additionalDev": "Aide au développement",
113 113
     "technologies": "Technologies",
114 114
     "reactNative": "Créé avec React Native",
115
+    "expo": "Compilé avec Expo",
115 116
     "libs": "Librairies utilisées"
116 117
   },
117 118
   "proximoScreen": {

Loading…
Cancel
Save