-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathen-us.toml
More file actions
23 lines (19 loc) · 936 Bytes
/
Copy pathen-us.toml
File metadata and controls
23 lines (19 loc) · 936 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
_version = 1
[main]
missingOperation = "Missing operation. Usage: filecontent <get|set|test|export> --input <json>"
unknownOperation = "Unknown operation: '%{operation}'. Expected: get, set, test, or export"
missingInput = "Missing --input argument"
missingInputValue = "Missing value for --input argument"
invalidJson = "Invalid JSON input: %{error}"
serializeError = "Failed to serialize output: %{error}"
[input]
emptyPath = "The path must not be empty"
invalidHash = "%{name} must contain exactly %{length} hexadecimal characters"
[get]
readError = "Failed to read file '%{path}': %{error}"
[set]
contentRequired = "The content property is required when setting a file"
writeError = "Failed to write file '%{path}': %{error}"
removeError = "Failed to remove file '%{path}': %{error}"
sha256Mismatch = "The sha256 value does not match the content property"
sha512Mismatch = "The sha512 value does not match the content property"