1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-30 03:23:08 +03:00

Remove non-English translation sets, read them from JSON instead

This commit is contained in:
Stefan Haller
2024-06-08 12:11:05 +02:00
parent b34de70c99
commit 98e5fd70fb
14 changed files with 100 additions and 4406 deletions

View File

@ -416,7 +416,7 @@ func TestGetPullRequestURL(t *testing.T) {
t.Run(s.testName, func(t *testing.T) {
tr := i18n.EnglishTranslationSet()
log := &fakes.FakeFieldLogger{}
hostingServiceMgr := NewHostingServiceMgr(log, &tr, s.remoteUrl, s.configServiceDomains)
hostingServiceMgr := NewHostingServiceMgr(log, tr, s.remoteUrl, s.configServiceDomains)
s.test(hostingServiceMgr.GetPullRequestURL(s.from, s.to))
log.AssertErrors(t, s.expectedLoggedErrors)
})