Eduard Makarov
2 years ago
23 changed files with 20 additions and 23 deletions
Before Width: | Height: | Size: 533 B After Width: | Height: | Size: 533 B |
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 4.7 KiB |
@ -1 +1 @@
@@ -1 +1 @@
|
||||
export * from './stepLocale'; |
||||
export * from './steps.translation'; |
||||
|
@ -1,23 +1,20 @@
@@ -1,23 +1,20 @@
|
||||
import {MainLocaleModule} from '../../types'; |
||||
import {OnBoardingLocale} from './../../types/onBoarding'; |
||||
import {OnBoardingLocale} from '../../types/onBoarding'; |
||||
export const onBoardingTranslation: OnBoardingLocale.OnboardingSteps = { |
||||
step1: { |
||||
title: 'Welcome!', |
||||
description: |
||||
'Thank you for downloading. Now you are \n in the best game for the company \n or to play with your loved one', |
||||
textButton: 'Skip', |
||||
}, |
||||
step2: { |
||||
title: 'Relax and enjoy \n the game!', |
||||
description: |
||||
'This game features 5 levels of "spiciness",\n some of which are divided into games for a \n couple or a company. All you have to do is \n add players and you can start playing.\n P.S. You can always create your own \n questions and tasks.', |
||||
textButton: 'Skip', |
||||
}, |
||||
step3: { |
||||
title: 'Premium version!', |
||||
description: |
||||
'Provides unlimited access to Hard and \n Extreme packages. Enjoy intriguing questions \n and exciting action.', |
||||
textButton: 'Open now', |
||||
}, |
||||
}; |
||||
|
@ -1 +1 @@
@@ -1 +1 @@
|
||||
export * from './stepLocaleUa'; |
||||
export * from './step.translation'; |
||||
|
@ -1,2 +1,2 @@
@@ -1,2 +1,2 @@
|
||||
export * from './contentOnboarding'; |
||||
export * from './languageItem'; |
||||
export * from './content-onBoarding.component'; |
||||
export * from './language-item.component'; |
||||
|
@ -1,6 +1,6 @@
@@ -1,6 +1,6 @@
|
||||
import ImageHearts from '../../../assets/image/hearts.svg'; |
||||
import ImageGlass from '../../../assets/image/glass.svg'; |
||||
import ImageCup from '../../../assets/image/winnersCup.svg'; |
||||
import ImageCup from '../../../assets/image/winners-cup.svg'; |
||||
import {OnBoardingLocale} from '../../../i18n/types/onBoarding'; |
||||
const translatePath = ( |
||||
itemKey: keyof OnBoardingLocale.OnboardingSteps, |
@ -1,2 +1,2 @@
@@ -1,2 +1,2 @@
|
||||
export * from './languageSelect'; |
||||
export * from './onBoarding'; |
||||
export * from './language-select.screen'; |
||||
export * from './onBoarding.screen'; |
||||
|
@ -1,14 +1,14 @@
@@ -1,14 +1,14 @@
|
||||
import React, {FC} from 'react'; |
||||
import {useTranslation} from 'react-i18next'; |
||||
import {Button, Image, StyleSheet, Text, View} from 'react-native'; |
||||
import FlagEng from '../../../assets/icons/ENG.svg'; |
||||
import FlagEng from '../../../assets/icons/eng.svg'; |
||||
import {LangKeys} from '../../../i18n'; |
||||
import {IRouteParams, RouteKey, colors, ScreenLayout} from '../../shared/'; |
||||
import {IRouteParams, RouteKey, colors, ScreenLayout} from '../../shared'; |
||||
import {LanguageItem} from '../components'; |
||||
const languageArr = [ |
||||
{ |
||||
name: 'Українська', |
||||
icon: <Image source={require('../../../assets/icons/UKR.png')} />, |
||||
icon: <Image source={require('../../../assets/icons/ukr.png')} />, |
||||
key: LangKeys.UA, |
||||
}, |
||||
{ |
@ -1,6 +1,6 @@
@@ -1,6 +1,6 @@
|
||||
import React, {FC} from 'react'; |
||||
import {Alert, TouchableOpacity, ViewStyle} from 'react-native'; |
||||
import IconBack from '../../../../assets/icons/arrowBack.svg'; |
||||
import IconBack from '../../../../assets/icons/arrow-back.svg'; |
||||
import {colors} from '../../colors/colors'; |
||||
interface IProps { |
||||
onPress: () => void; |
@ -1,2 +1,2 @@
@@ -1,2 +1,2 @@
|
||||
export * from './goBack'; |
||||
export * from './primaryBtn'; |
||||
export * from './goBack.component'; |
||||
export * from './primary-btn.component'; |
||||
|
@ -1 +1 @@
@@ -1 +1 @@
|
||||
export * from './screenLayout'; |
||||
export * from './screen-layout.component'; |
||||
|
@ -1 +1 @@
@@ -1 +1 @@
|
||||
export * from './routeKeys'; |
||||
export * from './route-keys'; |
||||
|
Loading…
Reference in new issue