How can I update a theme app block language and values based on the market that is viewing them?
Example:
Inside my theme app block I have a use a meta object to create the copy to say something like “Spend over $100 get $10 back”.
This is a string at the moment so I know that will likely need to be adjusted but what would be the best way to make it work with markets?
Should the meta object house each dollar amount in its own field and then the word on their own? How would I translate/ convert based on the market?
Super new to markets api but just thinking this through as I continue to build.
Thanks for the help.
Hey @talktohenryj,
you can use metaobjects translatable capability. That way they can not only be translated into different languages, but also localized for different markets.
This translation/localization can either be done manually via the Translate & Adapt app or via the the translationsRegister and marketLocalizationsRegister mutations.
Alternatively, you could look into a placeholder-driven strategy - only replacing the numeric values.
Hope this helps,
Kevin 
I would personally use metafields on market to present market related logic.
You mean add a metafield with the phrase on the market that I want to use it?
Thanks @Kevin_Sieger this seems like the best way. Doesn’t seem perfect as its pretty manual it seems. The user would need to do all of the translations? Is that right?
. I will look into it. Thanks again.