feat(i18n): add ClaudeDo.Localization project with nested-JSON locale parser

This commit is contained in:
mika kuns
2026-06-03 11:35:59 +02:00
parent 8dc8b8ba8e
commit 9efde2bf88
6 changed files with 131 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
namespace ClaudeDo.Localization;
public sealed class LocaleFile
{
public LocaleFile(string code, string name, IReadOnlyDictionary<string, string> strings)
{
Code = code;
Name = name;
Strings = strings;
}
public string Code { get; }
public string Name { get; }
public IReadOnlyDictionary<string, string> Strings { get; }
}