Skip to content

Instantly share code, notes, and snippets.

@jerkovicl
Last active August 29, 2015 14:22
Show Gist options
  • Select an option

  • Save jerkovicl/d4a729a13e20d7bb10bc to your computer and use it in GitHub Desktop.

Select an option

Save jerkovicl/d4a729a13e20d7bb10bc to your computer and use it in GitHub Desktop.
Check site lang and apply proper label
@functions{
    public string TranslateLabels(string hrLabel, string enLabel)
    {
        switch (@System.Threading.Thread.CurrentThread.CurrentCulture.Name)
        {
            case "en-US":
                return enLabel;                
            case "hr-HR":
                return hrLabel;
            default:
                return enLabel;
        }
    }
}
 
 
@TranslateLabels("Labela na hrvatskom", "Labela na engleskom")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment