12 lines
173 B
Go
12 lines
173 B
Go
|
|
//go:build !js
|
||
|
|
|
||
|
|
// SPDX-Licence-Identifier: EUPL-1.2
|
||
|
|
|
||
|
|
package html
|
||
|
|
|
||
|
|
import i18n "dappco.re/go/core/i18n"
|
||
|
|
|
||
|
|
func newDefaultTranslator() Translator {
|
||
|
|
return &i18n.Service{}
|
||
|
|
}
|