Is it possible to use i18next with razor? If not, any other ideas about how to translate labels using razor? The only option I think is to keep the html tags instead of razor.
Example:
@Html.LabelFor( model => model.Name, new { @class = "control-label col-md-3", @data-18n = "test.name" } )
It gives me an error on @data-i18n
saying it does not exists in the current context.