Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

NameIn modulesPurposeNotes
auth.php(error)(error)Translation strings for authentication
help.php(tick)(tick)Help messages for formular fieldsCurrently named helper.php ... will be renamed in future
messages.php(tick)(tick)Predominantly for log and error/warning messages (e.g. in modals)
validation.php(error)(error)All validation error messages
view.php(tick)(tick)Everything else that appears in views: Labels, Headlines, table headers, sidebar menu entries

Guidelines

...

  1. Use Array syntax

...

  1. Create module specific language files
Code Block
languagephp
titleExamples
/* Global / Generic used messages */
$helpmessage1 = trans('help.translate');

/* In file resources/lang/en/help.php */
return [
    'translate' => 'You can help translating NMS PRIME at',
];

/* Module specific */
$helpmessage2 = trans('billing::help.settlementrun.msg');

/* In file modules/BillingBase/Resources/lang/en/help.php */
return [
    'settlementrun' => [
        'msg' => 'This is a help message',
    ],
];

...