invoiceninja/app/Console/Commands/stubs/lang.stub

20 lines
527 B
Text
Raw Normal View History

2016-12-09 12:35:49 +02:00
<?php
$LANG = array(
'$LOWER_NAME$' => '$STUDLY_NAME$',
2016-12-09 13:17:04 +02:00
'$LOWER_NAME$_list' => '$STUDLY_NAME$ List',
'archive_$LOWER_NAME$' => 'Archive $STUDLY_NAME$',
'delete_$LOWER_NAME$' => 'Delete $STUDLY_NAME$',
'edit_$LOWER_NAME$' => 'Edit $STUDLY_NAME$',
'restore_$LOWER_NAME$' => 'Restore $STUDLY_NAME$',
'new_$LOWER_NAME$' => 'New $STUDLY_NAME$',
'created_$LOWER_NAME$' => 'Successfully created $LOWER_NAME$',
'updated_$LOWER_NAME$' => 'Successfully updated $LOWER_NAME$',
2016-12-09 12:35:49 +02:00
);
return $LANG;
?>