diff --git a/src/app/(app)/favorites.tsx b/src/app/(app)/favorites.tsx index 5dcd829..0be993c 100644 --- a/src/app/(app)/favorites.tsx +++ b/src/app/(app)/favorites.tsx @@ -7,6 +7,7 @@ import { API_CONSTS } from '@/api/consts'; import { useFavorites } from '@/api/favorites/use-favorites'; import { FavoriteCard } from '@/components/favourites/favorite-card'; import { HeaderLogo } from '@/components/header-logo'; +import { favorites } from '@/translations/en.json'; import { SafeAreaView, Text, View } from '@/ui'; export default function Favorite() { @@ -32,7 +33,7 @@ export default function Favorite() { - My favourites + {favorites.labels.tittle} - Check out our new and restored furniture + {dashboard.promotions.checkOutPromotion} - Shop today and get a 10% discount! + {dashboard.promotions.shopTodayDiscount} - Payment methods + {dashboard.labels.paymentMethods} @@ -36,10 +37,13 @@ export default function Feed() { image={images.fedexBanner()} > - We upgraded our shipments many levels up + {dashboard.promotions.shipmentUpgrade} - Powered by FedEx + {dashboard.promotions.poweredByFedEx}{' '} + + {dashboard.promotions.fedEx} + diff --git a/src/app/(app)/payment.tsx b/src/app/(app)/payment.tsx index bcf21d6..f38a727 100644 --- a/src/app/(app)/payment.tsx +++ b/src/app/(app)/payment.tsx @@ -6,6 +6,7 @@ import { KeyboardAvoidingView } from 'react-native-keyboard-controller'; import { usePurchaseOrder } from '@/api/purchase/use-purchase'; import type { BuyFormSubmitHandler } from '@/components/payment/buy-form'; import { BuyForm } from '@/components/payment/buy-form'; +import { purchaseForm } from '@/translations/en.json'; import { Button, SafeAreaView, ScrollView, showErrorMessage, View } from '@/ui'; type FormButtonsProps = { @@ -16,14 +17,14 @@ const FormButtons = ({ handleSubmit }: FormButtonsProps) => { return (