-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconst.go
38 lines (33 loc) · 1.26 KB
/
const.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package msg
const (
BlockPalette = "Block palette"
InvalidPalette = "Palette must exist and be non-empty."
ReplacedPalette = "Block palette to be replaced"
FillMenu = "Fill menu"
ReplaceMenu = "Replace menu"
)
const (
BrushSelection = "Brush selection"
BrushShape = "Brush shape"
BrushRadius = "Brush radius"
BrushAction = "Brush action"
)
const (
BindNeedsItem = "You must hold an item to bind a brush."
AlreadyBound = "You can only bind one brush to an item."
NotBound = "The item held is not currently bound to a brush."
BrushUnbound = "Unbound brush from held item."
NoUndo = "No actions left to undo."
UndoSuccessful = "Undid the last brush action. (%v left)"
)
const (
StartPaletteSelection = "Select 2 points to create a palette."
FirstPointSelected = "Selected point 1 %v."
SecondPointSelected = "Selected point 2 %v."
PaletteCreated = "Palette created %v-%v."
NoPaletteSelected = "You have not currently selected a palette."
PaletteSaved = "Saved palette %v-%v to disk as '%v'."
PaletteExists = "Palette with name '%v' already exists. Use /palette delete %v to remove it."
PaletteDoesNotExist = "Palette with name '%v' does not exist."
PaletteDeleted = "Deleted palette '%v'."
)