diff --git a/App.js b/App.js index 7c428b7..7942001 100644 --- a/App.js +++ b/App.js @@ -72,7 +72,7 @@ export default class App extends React.Component { showUpdate: false, }); AsyncStorageManager.getInstance().savePref(AsyncStorageManager.getInstance().preferences.showIntro.key, '0'); - AsyncStorageManager.getInstance().savePref(AsyncStorageManager.getInstance().preferences.showUpdate3.key, '0'); + AsyncStorageManager.getInstance().savePref(AsyncStorageManager.getInstance().preferences.showUpdate4.key, '0'); } async loadAssetsAsync() { @@ -95,7 +95,7 @@ export default class App extends React.Component { isLoading: false, currentTheme: ThemeManager.getCurrentTheme(), showIntro: AsyncStorageManager.getInstance().preferences.showIntro.current === '1', - showUpdate: AsyncStorageManager.getInstance().preferences.showUpdate3.current === '1' + showUpdate: AsyncStorageManager.getInstance().preferences.showUpdate4.current === '1' // showIntro: true }); // Status bar goes dark if set too fast diff --git a/components/CustomIntroSlider.js b/components/CustomIntroSlider.js index 23261ab..96a3c52 100644 --- a/components/CustomIntroSlider.js +++ b/components/CustomIntroSlider.js @@ -105,7 +105,7 @@ export default class CustomIntroSlider extends React.Component { key: '1', title: i18n.t('intro.updateSlide.title'), text: i18n.t('intro.updateSlide.text'), - icon: 'view-dashboard', + icon: 'school', colors: ['#e01928', '#be1522'], }, ] diff --git a/translations/en.json b/translations/en.json index 6956cf7..e417f0d 100644 --- a/translations/en.json +++ b/translations/en.json @@ -41,7 +41,7 @@ }, "updateSlide": { "title": "New in this update!", - "text": "Say hello to the brand new dashboard!\nGet a quick look at the most important information right from the home screen!" + "text": "Get ready for your exams with Tutor'INSA! Book a Bib'Box or find an empty room to study, available in the side menu." }, "buttons": { "next": "Next", diff --git a/translations/fr.json b/translations/fr.json index 58f2a47..b9ddb8b 100644 --- a/translations/fr.json +++ b/translations/fr.json @@ -41,7 +41,7 @@ }, "updateSlide": { "title": "Nouveau dans cette mise à jour !", - "text": "Dites bonjour à la toute nouvelle Dashboard !\nAccédez rapidement aux informations les plus importantes depuis l'écran d'accueil !" + "text": "Préparez vos exams avec Tutor'INSA! Réservez une Bib'Box ou trouvez une salle libre pour travailler, disponible dans le menu à gauche. " }, "buttons": { "next": "Suivant", diff --git a/utils/AsyncStorageManager.js b/utils/AsyncStorageManager.js index 8a344bd..6d6e597 100644 --- a/utils/AsyncStorageManager.js +++ b/utils/AsyncStorageManager.js @@ -29,8 +29,8 @@ export default class AsyncStorageManager { default: '1', current: '', }, - showUpdate3: { - key: 'showUpdate3', + showUpdate4: { + key: 'showUpdate4', default: '1', current: '', },