Skip to content

Commit

Permalink
Fix UpdateNotification string for boards+libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
facchinm committed Aug 21, 2019
1 parent 140f8e3 commit a740021
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public void run() {
} else if (!updatableLibraries && updatablePlatforms) {
text = I18n.format(tr("Updates available for some of your {0}boards{1}"), openAnchorBoards, closeAnchorBoards);
} else {
text = I18n.format(tr("Updates available for some of your {0}libraries{1} and {2}libraries{3}"), openAnchorBoards, closeAnchorBoards, openAnchorLibraries, closeAnchorLibraries);
text = I18n.format(tr("Updates available for some of your {0}boards{1} and {2}libraries{3}"), openAnchorBoards, closeAnchorBoards, openAnchorLibraries, closeAnchorLibraries);
}

if (cancelled) {
Expand Down

0 comments on commit a740021

Please sign in to comment.