Skip to content

Commit 7465d44

Browse files
authored
Strings are changed #96 (#102)
1 parent 802482f commit 7465d44

File tree

5 files changed

+11
-8
lines changed

5 files changed

+11
-8
lines changed

src/3_widgets/report/ui/components/PageHeader.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ export function PageHeader(props: IPageHeaderProps) {
1010
<p className='sm:text-5xl text-2xl font-bold text-center'>{props.placeName}</p>
1111
</div>
1212
<p className='text-center mt-10'>
13-
Please upload a photo of the receipt or terminal screen📸
13+
Please take or select a photo of the receipt or terminal screen for recognising surcharge information.
14+
</p>
15+
<p className='text-center font-bold'>
16+
Please Note. When you report this information, the photo will be uploaded to the server to verify the information.
1417
</p>
1518
</div>
1619
)

src/3_widgets/report/ui/components/ReportButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export function ReportButton(props: ReportButtonProps) {
2121
disabled={props.disabled}
2222
onClick={props.onClick}
2323
>
24-
Report
24+
📝Report
2525
</LoadingButton>
2626
)
2727

src/3_widgets/report/ui/components/UploadButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export function UploadButton(props: UploadButtonProps) {
2424
loading={props.loading}
2525
disabled={props.disabled}
2626
>
27-
Upload
27+
📸 or 🏞️
2828
<VisuallyHiddenInput
2929
type='file'
3030
accept='image/*'

src/6_shared/ui/errorAlert/ErrorAlert.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export function ErrorAlert(props: ErrorAlertProps) {
1515
style={{ transform: props.isError ? 'translateY(0)' : 'translateY(100%)' }}
1616
>
1717
<Alert severity='error'>
18-
Opps, there's something wrong, Please try again later.
18+
Opps, something went wrong, Please try again later.
1919
</Alert>
2020
</div>
2121
)

src/6_shared/ui/surchargeStatus/help/StatusHelp.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,21 +36,21 @@ export function StatusHelp(props: StatusHelpProps) {
3636
<div className='flex flex-col gap-4'>
3737
<div className='flex items-center gap-2'>
3838
<Confirmed />
39-
<p>The surcharge rate is confirmed by administrator.</p>
39+
<p>The surcharge status is confirmed by us. It's highly likely to be accurate.\nBut still, it may be inaccurate. Please check the updated date in place detail.</p>
4040
</div>
4141
<div className='flex items-center gap-2'>
4242
<Reported />
43-
<p>The surcharge rate is reported by someone but not confirmed, It may not be accurate.</p>
43+
<p>The surcharge status is reported from someone who has passion to help others.\nHowever, it's not yet confirmed which means it may not be accurate.</p>
4444
</div>
4545
<div className='flex items-center gap-2'>
4646
<AutoGenerated />
47-
<p>The surcharge rate is assumed, It may not be accurate.</p>
47+
<p>Big franchises are unlikely to charge a surcharge, so we automatically set it to zero. However, this may not be accurate.</p>
4848
</div>
4949
{
5050
props.includingUnknown && (
5151
<div className='flex items-center gap-2'>
5252
<Unknown />
53-
<p>The surcharge rate is unknown.</p>
53+
<p>the surcharge status is not yet known. We welcome your report.</p>
5454
</div>
5555
)
5656
}

0 commit comments

Comments
 (0)