|
| 1 | +<?php |
| 2 | + |
| 3 | +return [ |
| 4 | + 'plugin' => [ |
| 5 | + 'name' => 'Github Projects', |
| 6 | + 'description' => 'Utilize the GitHub API to show informations about repositories.' |
| 7 | + ], |
| 8 | + 'item' => [ |
| 9 | + 'name' => 'Github Repository Item', |
| 10 | + 'description' => 'Displays information about a GitHub repository.', |
| 11 | + 'user_title' => 'User', |
| 12 | + 'user_desc' => 'The user whose repository is displayed', |
| 13 | + 'repo_title' => 'Repository', |
| 14 | + 'repo_desc' => 'The repository name' |
| 15 | + ], |
| 16 | + 'list' => [ |
| 17 | + 'name' => 'Github Repository List', |
| 18 | + 'description' => 'List public repositories for the specified user.', |
| 19 | + 'user_title' => 'User', |
| 20 | + 'user_desc' => 'The user whose repositories are displayed', |
| 21 | + 'type_title' => 'Type', |
| 22 | + 'type_desc' => 'The repository type. Can be one of all, owner, member', |
| 23 | + 'type_opt_all' => 'All', |
| 24 | + 'type_opt_owner' => 'Owner', |
| 25 | + 'type_opt_member' => 'Member', |
| 26 | + 'sort_title' => 'Sorting', |
| 27 | + 'sort_desc' => 'The sorting field. Can be one of created, updated, pushed, full_name', |
| 28 | + 'sort_opt_created' => 'Created', |
| 29 | + 'sort_opt_updated' => 'Updated', |
| 30 | + 'sort_opt_pushed' => 'Pushed', |
| 31 | + 'sort_opt_fullname' => 'Full-Name', |
| 32 | + 'direction_title' => 'Sort Direction', |
| 33 | + 'direction_desc' => 'The sort direction. Can be one of asc or desc', |
| 34 | + 'direction_opt_asc' => 'Ascending', |
| 35 | + 'direction_opt_desc' => 'Descending' |
| 36 | + ] |
| 37 | +]; |
0 commit comments