c# - Asp.net core localization - how to pass to translators if there's no default resource -
i studied new approach localization in asp.net core using istringlocalizer
, using _localizer["about title"]
.
then it's stated that
for many developers new workflow of not having default language .resx file , wrapping string literals can reduce overhead of localizing app.
it reduce overhead, pass translators then? usually, have default resource.resx
in english, able translate , give me resource.fr.resx
. what's workflow new "not having default language .resx" mechanism?
Comments
Post a Comment