Skip to content

Commit

Permalink
Merge pull request #200 from SizeMeCom/fix-size-itself-translation-in…
Browse files Browse the repository at this point in the history
…-guide

Fix missing size label from size guide
  • Loading branch information
nomasi authored Nov 8, 2021
2 parents 90aa246 + 58ff6a7 commit c52504b
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
3 changes: 2 additions & 1 deletion src/i18n/ar.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"sizingBarRecommendationTooltip": " نوصي بأن يكون مقاسك قريبًا من هذه المنطقة",
"togglerText": "ابحث عن مقاسي",
"sizemeTooltip": "يدعم هذا المنتج ”سايزمي” ، وهي خدمة توصي بأفضل حجم مناسب من خلال مقارنة القياسات الفعلية لقياسات هذا المنتج.",
"sizemeTooltipLink": "قراءة المزيد"
"sizemeTooltipLink": "قراءة المزيد",
"sizeItself": "مقاس"
},
"detailed": {
"buttonText": "صورة تفصيلية للمقاس",
Expand Down
3 changes: 2 additions & 1 deletion src/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"sizingBarRecommendationTooltip": "We recommend that your fit is close to this area",
"togglerText": "Find my size",
"sizemeTooltip": "This product supports SizeMe, a service that recommends the best fitting size by comparing your physical measurements to the measurements of this product.",
"sizemeTooltipLink": "Read more"
"sizemeTooltipLink": "Read more",
"sizeItself": "Size"
},
"detailed": {
"buttonText": "Detailed view of fit",
Expand Down
3 changes: 2 additions & 1 deletion src/i18n/fi.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"sizingBarRecommendationTooltip": "Tämän tuotteen kohdalla suosittelemme tätä sopivuutta",
"togglerText": "Löydä oikea kokosi",
"sizemeTooltip": "Tässä tuotteessa on käytössä SizeMe-palvelu, joka suosittelee sopivinta kokoa vertaamalla mittojasi tämän tuotteen mittoihin.",
"sizemeTooltipLink": "Lue lisää"
"sizemeTooltipLink": "Lue lisää",
"sizeItself": "Koko"
},
"detailed": {
"windowTitle": "Sopivuustiedot tuotteelle",
Expand Down
3 changes: 2 additions & 1 deletion src/i18n/sv.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"sizingBarRecommendationTooltip": "We recommend that your fit is around this area",
"togglerText": "Hitta min storlek",
"sizemeTooltip": "Denna produkt stöder SizeMe, en tjänst som rekommenderar den bästa passningsstorleken genom att jämföra dina fysiska mätningar med mätningarna på denna produkt.",
"sizemeTooltipLink": "Läs mer"
"sizemeTooltipLink": "Läs mer",
"sizeItself": "Storlek"
},
"detailed": {
"windowTitle": "Detaljerad Bild för",
Expand Down
2 changes: 1 addition & 1 deletion src/sizeguide/SizeGuideProductInfo.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class SizeGuideProductInfo extends React.Component {
<table className="product-info-table">
<thead>
<tr>
<th className="size-col">size</th>
<th className="size-col">{t("common.sizeItself")}</th>
{measurementOrder.map((measurement, i) => (
<HoverContainer measurement={measurement} key={measurement}
onHover={onHover}>
Expand Down

0 comments on commit c52504b

Please sign in to comment.