We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41bc217 commit 6623730Copy full SHA for 6623730
packages/webapp/public/locales/en/translation.json
@@ -1917,6 +1917,9 @@
1917
"WRONG_BROWSER": "LiteFarm is not optimized for this browser.",
1918
"WRONG_BROWSER_BOTTOM": "Please login using Chrome."
1919
},
1920
+ "SIMPLE_BADGE": {
1921
+ "PRIVATE": "Private"
1922
+ },
1923
"SLIDE_MENU": {
1924
"CROPS": "Crops",
1925
"DOCUMENTS": "Documents",
packages/webapp/src/components/SimpleBadges/PrivateBadge/index.tsx
@@ -20,7 +20,7 @@ export const PrivateBadge = () => {
20
const { t } = useTranslation();
21
return (
22
<div className={styles.private}>
23
- <span>{t('MARKET_DIRECTORY.INFO_FORM.PRIVATE')}</span>
+ <span>{t('SIMPLE_BADGE.PRIVATE')}</span>
24
</div>
25
);
26
};
0 commit comments