Files
photoprism/pkg/txt/const.go
2025-10-10 13:40:51 +02:00

22 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"
)