function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
sen19sen19 

retrieve record type label translation

I have translated record type label name in translation workbench but not able to retrieve it in package xml. record type is not coming in below xml:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Package xmlns="http://soap.sforce.com/2006/04/metadata">
    <types>
        <members>*</members>
        <name>CustomObjectTranslation</name>
    </types>
    <version>49.0</version>
</Package>


How can I retrieve record type label translated values in package xml
 
Best Answer chosen by sen19
sen19sen19
got solution: you have to mention customobject as well as objecttranslation both in package xml

All Answers

David Zhu 🔥David Zhu 🔥
You may try

    <types>
        <members>*</members>
        <name>Translations</name>
    </types>
 
sen19sen19
got solution: you have to mention customobject as well as objecttranslation both in package xml
This was selected as the best answer