Links
Overview
The links
section specifies common links (e.g., to terms and conditions, privacy policy, etc.) that can be referenced in the translation strings of dynamic checkboxes and texts (see Dynamic Fields). links
is an array consisting of objects with a key
and a link
property.
Parameter | Description | Data Type | Possible Values |
---|---|---|---|
key | unique translation key for Crowdin project | string | Crowdin translation key |
link | the hyperlink that needs to open | string | URL |
Use key backToShop
to customize the "Back To Shop" link on the "Empty Basket" and "Payment Confirmation Pending" pages.
Use key basket
to provide the URL of the basket page. If this link is provided, the basket page will appear as an extra step in the breadcrumbs.
Example
"links": [
{
"key": "privacyPolicy",
"link": "https://www.aboutyou.de/datenschutz"
}
],
In the translation strings of dynamic checkboxes and texts (see Dynamic Fields) the links can be referenced using this tag syntax:
I accept the <privacyPolicyLink>Privacy Policy</privacyPolicyLink>.
For the tag name, use the link's key
suffixed with Link
. For example, if the key is privacyPolicy
it can be accessed as <privacyPolicyLink>...</privacyPolicyLink>
as in the example above. If it is someThing
it can be accessed as <someThingLink>...</someThingLink>
.