Skip to content

Commit 7d00d62

Browse files
committed
i18n
1 parent 371757e commit 7d00d62

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Diff for: i18n/data/en.po

+4
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,10 @@ msgstr "ARCH"
110110
msgid "ARDUINO COMMAND LINE MANUAL"
111111
msgstr "ARDUINO COMMAND LINE MANUAL"
112112

113+
#: legacy/builder/phases/libraries_builder.go:48
114+
msgid "Additional compiler options provided by user sketch: {0}"
115+
msgstr "Additional compiler options provided by user sketch: {0}"
116+
113117
#: cli/usage.go:32
114118
msgid "Additional help topics:"
115119
msgstr "Additional help topics:"

Diff for: legacy/builder/phases/libraries_builder.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ func (s *LibrariesBuilder) Run(ctx *types.Context) error {
4545
}
4646

4747
if len(ctx.Arduifines) > 0 {
48-
ctx.GetLogger().Println(constants.LOG_LEVEL_DEBUG, constants.MSG_ADDITIONAL_OPTIONS, ctx.Arduifines)
48+
ctx.GetLogger().Println(constants.LOG_LEVEL_DEBUG, tr("Additional compiler options provided by user sketch: {0}"), ctx.Arduifines)
4949
}
5050

5151
objectFiles, err := compileLibraries(ctx, libs, librariesBuildPath, buildProperties, includes)

0 commit comments

Comments
 (0)