2025-09-10 19:34:49 +05:00
|
|
|
package core
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
)
|
|
|
|
|
2025-09-13 09:23:47 +05:00
|
|
|
// ServiceNameTranslations is a name for translations service.
|
2025-09-10 19:34:49 +05:00
|
|
|
const ServiceNameTranslations = "core/translations"
|
|
|
|
|
2025-09-13 09:24:15 +05:00
|
|
|
// ErrTranslationsIsInvalid appears when translations service implementation is invalid.
|
2025-09-13 09:23:47 +05:00
|
|
|
var ErrTranslationsIsInvalid = errors.New("translations service implementation is invalid")
|
2025-09-10 19:34:49 +05:00
|
|
|
|
2025-09-13 09:23:47 +05:00
|
|
|
// Translations is an interface for translations service.
|
2025-09-10 19:34:49 +05:00
|
|
|
type Translations interface{}
|