- | Product |
- Your Price |
+ {t.product} |
+ {t.yourPrice} |
{marketResearchResult.competitors.map((comp, i) => (
{comp} |
))}
@@ -172,7 +172,7 @@ const MarketResearcher = () => {
return (
@@ -203,8 +203,8 @@ const MarketResearcher = () => {
- | Feature |
- You |
+ {t.feature} |
+ {t.you} |
{marketResearchResult.competitors.map((comp, i) => (
{comp} |
))}
@@ -227,7 +227,7 @@ const MarketResearcher = () => {
typeof compStatus.status === 'boolean' ? (
compStatus.status ? :
) : {compStatus.status}
- ) : "N/A"}
+ ) : t.notAvailable}
);
})}
@@ -258,7 +258,7 @@ const MarketResearcher = () => {
- Company Profile
+ {t.companyProfile}
@@ -276,14 +276,14 @@ const MarketResearcher = () => {
{additionalUrls.map((url, i) => (
{
const newUrls = [...additionalUrls];
@@ -305,7 +305,7 @@ const MarketResearcher = () => {
- Competitive Intel
+ {t.competitiveIntel}
@@ -313,7 +313,7 @@ const MarketResearcher = () => {
@@ -347,13 +347,13 @@ const MarketResearcher = () => {
onChange={(e) => setProductMapping(e.target.value)}
className="min-h-[80px] bg-slate-50/50 border-slate-200 focus:bg-white transition-all text-sm"
/>
- Describe which products/features to compare across all sites.
+ {t.mappingDesc}
-
+
|