Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. You always sync in one language against Digizuite, fetching metadata in one language, no matter how many languages you support in Sitecore. This is the deafult setting. Will sync in english.
    In the config file App_Config → Include → damforsitecore → DFS.Settings.config you set this setting <setting name="DFS.OnlySyncAssetsInDefaultLanguage" value="true" /> to true.
    You can control the default language to sync with these settings:
    <setting name="DFS.Digizuite.Default.LanguageId" value="3" /> This is the languageId from Digizuite. Ask Digizuite for the id, if you want to use another then english.
    <setting name="DFS.AssetSilo.Default.Language" value="en" /> This should be the one from Sitecore.Globalization.Language.CultureInfo.Name.

  2. You sync against Digizuite with the supported metadata languages.
    In the config file App_Config → Include → damforsitecore → DFS.Settings.config you set this setting <setting name="DFS.OnlySyncAssetsInDefaultLanguage" value="true" /> to false.
    The next thing is to tell the DFS connector the language mapping between Sitecore and Digizuite. In the settings file look for the DFS.LanguageMapping.:

    Code Block
    <DFS.LanguageMapping>
      <add name="en" digizuiteLanguageId="3" />
      <add name="da" digizuiteLanguageId="1" />
    </DFS.LanguageMapping>

...