What are the proposals for the organization of links to localized pages.
For example:
code-cracker.github.io/en/diagnostics - for English
code-cracker.github.io/ru/diagnostics - for Russian language.
Then it is necessary to alter the method:
publicstaticclassHelpLink{publicstaticstringForDiagnostic(DiagnosticIddiagnosticId)=>$"https://code-cracker.github.io/diagnostics/{diagnosticId.ToDiagnosticId()}.html";}Like that:
publicstaticstringForDiagnostic(DiagnosticIddiagnosticId){return$"https://code-cracker.github.io/diagnostics/{CultureInfo.CurrentCulture.Parent.Name}/{diagnosticId.ToDiagnosticId()}.html";}
What are the proposals for the organization of links to localized pages.
For example:
code-cracker.github.io/en/diagnostics - for English
code-cracker.github.io/ru/diagnostics - for Russian language.
Then it is necessary to alter the method:
Like that: