photoprism/pkg/txt/const.go
Michael Mayer f26f6ecd17 Backend: Refactor new enum package and yes/no matching #5191
Signed-off-by: Michael Mayer <michael@photoprism.app>
2025-10-10 13:40:51 +02:00

21 lines
322 B
Go

package txt
import (
"github.com/photoprism/photoprism/pkg/enum"
)
// True and False specify boolean string representations.
const (
True = enum.True
False = enum.False
)
// Additional english language strings.
const (
EnOr = "or"
EnAnd = "and"
EnWith = "with"
EnIn = "in"
EnAt = "at"
EnNew = "new"
)