Open
Description
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:
public static class HelpLink
{
public static string ForDiagnostic(DiagnosticId diagnosticId) =>
$"https://code-cracker.github.io/diagnostics/{diagnosticId.ToDiagnosticId()}.html";
}
Like that:
public static string ForDiagnostic(DiagnosticId diagnosticId)
{
return $"https://code-cracker.github.io/diagnostics/{CultureInfo.CurrentCulture.Parent.Name}/{diagnosticId.ToDiagnosticId()}.html";
}
Metadata
Metadata
Assignees
Labels
No labels