Skip to content

Commit 6623730

Browse files
committed
LF-5028 Move PRIVATE string outside of MARKET_DIRECTORY.INFO_FORM
1 parent 41bc217 commit 6623730

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

packages/webapp/public/locales/en/translation.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1917,6 +1917,9 @@
19171917
"WRONG_BROWSER": "LiteFarm is not optimized for this browser.",
19181918
"WRONG_BROWSER_BOTTOM": "Please login using Chrome."
19191919
},
1920+
"SIMPLE_BADGE": {
1921+
"PRIVATE": "Private"
1922+
},
19201923
"SLIDE_MENU": {
19211924
"CROPS": "Crops",
19221925
"DOCUMENTS": "Documents",

packages/webapp/src/components/SimpleBadges/PrivateBadge/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const PrivateBadge = () => {
2020
const { t } = useTranslation();
2121
return (
2222
<div className={styles.private}>
23-
<span>{t('MARKET_DIRECTORY.INFO_FORM.PRIVATE')}</span>
23+
<span>{t('SIMPLE_BADGE.PRIVATE')}</span>
2424
</div>
2525
);
2626
};

0 commit comments

Comments
 (0)