First pass conversion of NAV Patterns
This commit is contained in:
parent
1341938262
commit
6b32107a72
325 changed files with 11946 additions and 0 deletions
16
content/NAVPatterns/message-and-error/index.md
Normal file
16
content/NAVPatterns/message-and-error/index.md
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
+++
|
||||
title = "message-and-error.md"
|
||||
weight = 790
|
||||
+++
|
||||
Always end MESSAGE or ERROR with a period.
|
||||
Bad code
|
||||
|
||||
CustIsBlockedErr@1025 : TextConst 'ENU=You cannot %1 this type of document when Customer %2 is blocked with type %3';
|
||||
...
|
||||
ERROR(CustIsBlockedErr,...);
|
||||
|
||||
Good code
|
||||
|
||||
CustIsBlockedErr@1025 : TextConst 'ENU=You cannot %1 this type of document when Customer %2 is blocked with type %3.';
|
||||
...
|
||||
ERROR(CustIsBlockedErr,...);
|
||||
Loading…
Add table
Add a link
Reference in a new issue