Skip to content

Commit a740021

Browse files
committed
Fix UpdateNotification string for boards+libraries
1 parent 140f8e3 commit a740021

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/cc/arduino/contributions/ContributionsSelfCheck.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ public void run() {
117117
} else if (!updatableLibraries && updatablePlatforms) {
118118
text = I18n.format(tr("Updates available for some of your {0}boards{1}"), openAnchorBoards, closeAnchorBoards);
119119
} else {
120-
text = I18n.format(tr("Updates available for some of your {0}libraries{1} and {2}libraries{3}"), openAnchorBoards, closeAnchorBoards, openAnchorLibraries, closeAnchorLibraries);
120+
text = I18n.format(tr("Updates available for some of your {0}boards{1} and {2}libraries{3}"), openAnchorBoards, closeAnchorBoards, openAnchorLibraries, closeAnchorLibraries);
121121
}
122122

123123
if (cancelled) {

0 commit comments

Comments
 (0)