This repository has been archived by the owner on Jul 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use native taglist and add translation file
- Loading branch information
1 parent
1592b08
commit 2258b22
Showing
5 changed files
with
55 additions
and
84 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?php | ||
return [ | ||
// | ||
// plugin | ||
// | ||
'plugin' => [ | ||
'name' => 'Blog Tags Extension', | ||
'description' => 'Adds tagging to RainLab.Blog posts.', | ||
], | ||
|
||
// | ||
// form | ||
// | ||
'form' => [ | ||
'label' => 'Tags', | ||
'name_invalid' => 'Tag names may only contain alpha-numeric characters and hyphens.', | ||
'name_required' => 'The tag field is required.', | ||
'name_unique' => 'That tag name is already taken.', | ||
], | ||
|
||
// | ||
// navigation | ||
// | ||
'navigation' => [ | ||
'tags' => 'Tags', | ||
] | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters