go-html/text_translate_default.go
Snider fb13048db2
Some checks are pending
Security Scan / security (push) Waiting to run
Test / test (push) Waiting to run
fix(html): share pluralisation args across builds
Co-Authored-By: Virgil <virgil@lethean.io>
2026-04-15 01:04:48 +01:00

13 lines
198 B
Go

//go:build !js
// SPDX-Licence-Identifier: EUPL-1.2
package html
import (
i18n "dappco.re/go/core/i18n"
)
func translateDefault(key string, args ...any) string {
return i18n.T(key, args...)
}