Skip to content

Commit

Permalink
Updated shareUrl messages in both langauges (#188)
Browse files Browse the repository at this point in the history
* Updated shareUrl error message in both langs
  • Loading branch information
prtkjakhar authored Sep 26, 2023
1 parent 82e6646 commit 9dea454
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions apps/amakrushi/lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
"message.review_submitted": "Review Submitted!",
"message.didnt_receive": "Didn't receive the OTP?",
"message.resend_again": "Resend again",
"message.shareUrl_android_error" : "Share feature coming soon, please download pdf to share",
"message.coming_soon" : "Coming Soon!",
"message.coming_soon_description" : "We are going to launch this feature very soon. Stay tuned!",
"message.dial_description" : "To connect with call centre",
Expand Down
1 change: 1 addition & 0 deletions apps/amakrushi/lang/or.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
"message.wait_minutes": "ଗୋଟିଏ ଥର ପାସୱାର୍ଡ ପଠାଇବା ପୂର୍ବରୁ ଦୟାକରି {countdown} ସେକେଣ୍ଡ ଅପେକ୍ଷା କରନ୍ତୁ |",
"message.resend_again":"ପୁନର୍ବାର ପଠାନ୍ତୁ |",
"message.didnt_receive": "ଗୋଟିଏ ଥର ପାସୱାର୍ଡ ଗ୍ରହଣ କରିନାହାଁନ୍ତି କି?",
"message.shareUrl_android_error" : "ଶେୟାର୍ ଫିଚର୍ ଶୀଘ୍ର ଆସୁଛି, ଦୟାକରି ଶେୟାର୍ କରିବାକୁ pdf ଡାଉନଲୋଡ୍ କରନ୍ତୁ",
"message.coming_soon" : "ଶୀଘ୍ର ଆସୁଅଛି!",
"message.coming_soon_description" : "ଆମେ ଖୁବ୍ ଶୀଘ୍ର ଏହି ଫିଚର ଲଞ୍ଚ କରିବାକୁ ଯାଉଛୁ , ଶୁଣୁ ଥାନ୍ତୁ",
"message.dial_description" : "କଲ୍ ସେଣ୍ଟର ସହିତ ସଂଯୋଗ କରିବାକୁ |",
Expand Down
2 changes: 1 addition & 1 deletion apps/amakrushi/src/components/HistoryPage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ const HistoryPage: NextPage = () => {
error.message ===
"Cannot read properties of undefined (reading 'shareUrl')"
) {
toast.success(`${t('message.coming_soon')}`);
toast.success(`${t('message.shareUrl_android_error')}`);
} else toast.error(error.message);

console.error(error);
Expand Down
2 changes: 1 addition & 1 deletion apps/amakrushi/src/components/NavBar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ function NavBar() {
error.message ===
"Cannot read properties of undefined (reading 'shareUrl')"
) {
toast.success(`${t('message.coming_soon')}`);
toast.success(`${t('message.shareUrl_android_error')}`);
} else toast.error(error.message);

console.error(error);
Expand Down

1 comment on commit 9dea454

@vercel
Copy link

@vercel vercel bot commented on 9dea454 Sep 26, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.