sublime-settings/Packages/User/laravel_lang.sublime-snippet

49 lines
1.2 KiB
XML

<snippet>
<content><![CDATA[
return [
/*
|--------------------------------------------------------------------------
| ${1:Foo} Language Lines
|--------------------------------------------------------------------------
|
| ${2:-}
|
*/
// General language lines go here.
//
// Text used as a page title or main heading.
'titles_' => [
'main' => 'All ${1:Foo}s',
'show' => '${1:Foo}:',
'create' => 'Create A New ${1}',
'edit' => 'Edit ${1:Foo}:',
],
// Text used as a label of some sort, not restricted to
// label HTML elements.
'labels_' => [
//
],
// Text that may really only show up in a button.
'buttons_' => [
//
],
// These will be longer status messages or short descriptions that serve
// as an informational/warning notice to the user.
'notices_' => [
//
],
];
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>laralang</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<!-- <scope>source.python</scope> -->
</snippet>