Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • David Gregory 89 posts 235 karma points
    Mar 19, 2019 @ 15:03
    David Gregory
    0

    GetDictionaryValue by passing in Culture

    Hi

    I have a bilingual site with lots of Dictionary items that Umbraco nicely takes care of using Umbraco.GetDictionaryValue("MyValueName")

    However, I have a piece of content that's only available in one language (English) and therefore it only lives in the English content tree.

    Problem is, in my view, I still want to call Umbraco.GetDictionaryValue() but as my currentpage will always be English, I only get the English value returned.

    I suppose my question is, can I force the culture when I make the call? Something like Umbraco.GetDictionaryValue("MyValueName", myLang)

  • Alex Skrypnyk 6182 posts 24284 karma points MVP 8x admin c-trib
    Mar 19, 2019 @ 15:10
    Alex Skrypnyk
    101

    Hi David

    You can set current request culture with this code:

    System.Threading.Thread.CurrentThread.CurrentUICulture = new CultureInfo("needed culture");
    

    And After that, GetDictionaryValue will return that value.

    Thanks,

    Alex

  • David Gregory 89 posts 235 karma points
    Mar 19, 2019 @ 15:58
    David Gregory
    0

    Perfect, thanks.

  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies