4
It could be helpfull for readability to have the ability to write Labels value in multilines, as we can do it for text variable assigments.

For instance, in the standard codeunit Job Task-Indent we have these labels:
****
Text000: Label 'This function updates the indentation of all the Job Tasks.';
Text001: Label 'All Job Tasks between a Begin-Total and the matching End-Total are indented one level. ';
Text002: Label 'The Totaling for each End-total is also updated.';
Text003: Label '\\Do you want to indent the Job Tasks?';
****

All concatened in this Confirm method:
***
Confirm(
Text000 +
Text001 +
Text002 +
Text003, true)
***

For readability purposes we have to declare 4 labels variables. Concatenating these 4 variables decreases the readability of the confirm method.

It could be nice to be able to do something like:

***
myLbl: Label 'Something that is describing
my very long label variable';
***

Thanks for considering this
Category: Development
STATUS DETAILS
Needs Votes
Ideas Administrator

Thank you for this suggestion! Currently this is not on our roadmap. We are tracking this idea and if it gathers more votes and comments we will consider it in the future.

Best regards,
Business Central Team