Remove linebreak from translatable string

The new line was breaking the translation jobs, as it gets copied as is
into the pot file. In general, it's better to use "+"-style
concatenation for translatable/user-facing strings, as otherwise the
unnecessary spaces from the indentation also get included in the string
to translate, which can be confusing to translators.

Change-Id: I49ba048e1b06199c54b93f2b14ce07b5acdf131d
Closes-Bug: #1691006
This commit is contained in:
Julie Pichon 2017-05-16 10:25:11 +01:00
parent 7587487560
commit 90bf844a2e
1 changed files with 2 additions and 2 deletions

View File

@ -21,8 +21,8 @@ const messages = defineMessages({
},
disabledButtonsWarning: {
id: 'NodesToolbarActions.disabledButtonsWarning',
defaultMessage: `You need to select Nodes first or there is operation already in progress on
some of the selected Nodes`
defaultMessage: 'You need to select Nodes first, or there is an operation already in ' +
'progress on some of the selected Nodes.'
},
introspectNodes: {
id: 'NodesToolbarActions.introspectNodes',