Skip to content

Commit 4628846

Browse files
committed
arduino#1456 - Skip using tr() - requires translations.
1 parent 62dff72 commit 4628846

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: cli/sketch/new.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ func initNewCommand() *cobra.Command {
3939
func runNewCommand(cmd *cobra.Command, args []string) {
4040
sketchDir, _, err := sk.CreateSketch(args[0]);
4141
if err != nil {
42-
feedback.Errorf(tr("Error creating sketch: %v"), err)
42+
feedback.Errorf("Error creating sketch: %v", err) // TODO: use `tr()`
4343
os.Exit(errorcodes.ErrGeneric)
4444
}
4545

0 commit comments

Comments
 (0)