We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
tr()
1 parent 62dff72 commit 4628846Copy full SHA for 4628846
cli/sketch/new.go
@@ -39,7 +39,7 @@ func initNewCommand() *cobra.Command {
39
func runNewCommand(cmd *cobra.Command, args []string) {
40
sketchDir, _, err := sk.CreateSketch(args[0]);
41
if err != nil {
42
- feedback.Errorf(tr("Error creating sketch: %v"), err)
+ feedback.Errorf("Error creating sketch: %v", err) // TODO: use `tr()`
43
os.Exit(errorcodes.ErrGeneric)
44
}
45
0 commit comments