Skip to content

Commit

Permalink
adjust text from sync details
Browse files Browse the repository at this point in the history
  • Loading branch information
Janderson Souza Matias authored and Janderson Souza Matias committed Jan 22, 2024
1 parent 9daf981 commit 97a9044
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/i18n/langs/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ const enTranslation = {
start: 'Start using the app',
'description-list': "You'll be able to :",

list_0: '- Select Bayshore High in the school list',
list_0: '- Select {{ value }} in the school list',
list_1: '- Create new teachers',
list_2: '- Select teachers created before',
list_3: "- View previously created teacher's data",
Expand Down
2 changes: 1 addition & 1 deletion src/i18n/langs/np.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ const npTranslation = {
start: 'एप प्रयोग गर्न सुरु गर्नुहोस्',
'description-list': 'तपाईं सक्षम हुनुहुनेछ',

list_0: '- स्कूल सूचीमा Bayshore High छान्नुहोस्',
list_0: '- स्कूल सूचीमा {{ value }} छान्नुहोस्',
list_1: '- नयाँ शिक्षकहरू बनाउनुहोस्',
list_2: '- पहिले बनाएका शिक्षकहरू छान्नुहोस्',
list_3: '- पहिले बनाएका शिक्षकहरूको डाटा हेर्नुहोस्',
Expand Down
2 changes: 1 addition & 1 deletion src/screens/SyncDetails/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const SyncDetails: React.FC = () => {
{t('syncDetails.description-list')}
</Text>
<Text mt="4px" color="#576375">
{t('syncDetails.list_0')}
{t('syncDetails.list_0', {value: currentSchool?.name})}
</Text>
<Text color="#576375">{t('syncDetails.list_1')}</Text>
{isConnected && (
Expand Down

0 comments on commit 97a9044

Please sign in to comment.