Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7d00d62

Browse files
committedOct 14, 2021
i18n
1 parent 371757e commit 7d00d62

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed
 

‎i18n/data/en.po

Lines changed: 4 additions & 0 deletions
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:"

‎legacy/builder/phases/libraries_builder.go

Lines changed: 1 addition & 1 deletion
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)
Please sign in to comment.