mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-12 08:44:04 +01:00
22 lines
322 B
Go
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"
|
|
)
|