Skip to content

Commit f7b04ab

Browse files
Update package with latest scaffolded components
1 parent 12415b8 commit f7b04ab

File tree

5 files changed

+46
-19
lines changed

5 files changed

+46
-19
lines changed

.github/ISSUE_TEMPLATE

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!--
2+
3+
Thanks for creating a new issue!
4+
5+
Found a bug or want to suggest an enhancement? Before completing your issue, please review our best practices: https://make.wordpress.org/cli/handbook/bug-reports/
6+
7+
Need help with something? GitHub issues aren't for general support questions, but there are other venues you can try: https://wp-cli.org/#support
8+
9+
You can safely delete this comment.
10+
11+
-->

.github/PULL_REQUEST_TEMPLATE

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!--
2+
3+
Thanks for submitting a pull request!
4+
5+
Here's an overview to our process:
6+
7+
1. One of the project committers will soon provide a code review.
8+
2. You are expected to address the code review comments in a timely manner.
9+
3. Please make sure to include functional tests for your changes.
10+
4. The reviewing committer will merge your pull request as soon as it passes code review (and provided it fits within the scope of the project).
11+
12+
You can safely delete this comment.
13+
14+
-->

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@ node_modules/
44
vendor/
55
*.zip
66
*.tar.gz
7-
composer.lock

CONTRIBUTING.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Contributing
2+
============
3+
4+
We appreciate you taking the initiative to contribute to this project.
5+
6+
Contributing isn’t limited to just code. We encourage you to contribute in the way that best fits your abilities, by writing tutorials, giving a demo at your local meetup, helping other users with their support questions, or revising our documentation.
7+
8+
For a more thorough introduction, [check out WP-CLI's guide to contributing](https://make.wordpress.org/cli/handbook/contributing/). This package follows those policy and guidelines.

README.md

+13-18
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Manage language packs.
55

66
[![Build Status](https://travis-ci.org/wp-cli/language-command.svg?branch=master)](https://travis-ci.org/wp-cli/language-command)
77

8-
Quick links: [Using](#using) | [Installing](#installing) | [Contributing](#contributing)
8+
Quick links: [Using](#using) | [Installing](#installing) | [Contributing](#contributing) | [Support](#support)
99

1010
## Using
1111

@@ -24,7 +24,7 @@ wp language core activate <language>
2424

2525
**EXAMPLES**
2626

27-
$ wp core language activate ja
27+
$ wp language core activate ja
2828
Success: Language activated.
2929

3030

@@ -48,7 +48,7 @@ Downloads the language pack from WordPress.org.
4848
**EXAMPLES**
4949

5050
# Install the Japanese language.
51-
$ wp core language install ja
51+
$ wp language core install ja
5252
Success: Language installed.
5353

5454

@@ -99,7 +99,7 @@ These fields are optionally available:
9999
**EXAMPLES**
100100

101101
# List language,english_name,status fields of available languages.
102-
$ wp core language list --fields=language,english_name,status
102+
$ wp language core list --fields=language,english_name,status
103103
+----------------+-------------------------+-------------+
104104
| language | english_name | status |
105105
+----------------+-------------------------+-------------+
@@ -122,7 +122,7 @@ wp language core uninstall <language>...
122122

123123
**EXAMPLES**
124124

125-
$ wp core language uninstall ja
125+
$ wp language core uninstall ja
126126
Success: Language uninstalled.
127127

128128

@@ -142,7 +142,7 @@ Updates installed languages for core, plugins and themes.
142142

143143
**EXAMPLES**
144144

145-
$ wp core language update
145+
$ wp language core update
146146
Updating 'Japanese' translation for Akismet 3.1.11...
147147
Downloading translation from https://downloads.wordpress.org/translation/plugin/akismet/3.1.11/ja.zip...
148148
Translation updated successfully.
@@ -165,30 +165,25 @@ We appreciate you taking the initiative to contribute to this project.
165165

166166
Contributing isn’t limited to just code. We encourage you to contribute in the way that best fits your abilities, by writing tutorials, giving a demo at your local meetup, helping other users with their support questions, or revising our documentation.
167167

168+
For a more thorough introduction, [check out WP-CLI's guide to contributing](https://make.wordpress.org/cli/handbook/contributing/). This package follows those policy and guidelines.
169+
168170
### Reporting a bug
169171

170172
Think you’ve found a bug? We’d love for you to help us get it fixed.
171173

172174
Before you create a new issue, you should [search existing issues](https://github.com/wp-cli/language-command/issues?q=label%3Abug%20) to see if there’s an existing resolution to it, or if it’s already been fixed in a newer version.
173175

174-
Once you’ve done a bit of searching and discovered there isn’t an open or fixed issue for your bug, please [create a new issue](https://github.com/wp-cli/language-command/issues/new) with the following:
175-
176-
1. What you were doing (e.g. "When I run `wp post list`").
177-
2. What you saw (e.g. "I see a fatal about a class being undefined.").
178-
3. What you expected to see (e.g. "I expected to see the list of posts.")
179-
180-
Include as much detail as you can, and clear steps to reproduce if possible.
176+
Once you’ve done a bit of searching and discovered there isn’t an open or fixed issue for your bug, please [create a new issue](https://github.com/wp-cli/language-command/issues/new). Include as much detail as you can, and clear steps to reproduce if possible. For more guidance, [review our bug report documentation](https://make.wordpress.org/cli/handbook/bug-reports/).
181177

182178
### Creating a pull request
183179

184180
Want to contribute a new feature? Please first [open a new issue](https://github.com/wp-cli/language-command/issues/new) to discuss whether the feature is a good fit for the project.
185181

186-
Once you've decided to commit the time to seeing your pull request through, please follow our guidelines for creating a pull request to make sure it's a pleasant experience:
182+
Once you've decided to commit the time to seeing your pull request through, [please follow our guidelines for creating a pull request](https://make.wordpress.org/cli/handbook/pull-requests/) to make sure it's a pleasant experience. See "[Setting up](https://make.wordpress.org/cli/handbook/pull-requests/#setting-up)" for details specific to working on this package locally.
183+
184+
## Support
187185

188-
1. Create a feature branch for each contribution.
189-
2. Submit your pull request early for feedback.
190-
3. Include functional tests with your changes. [Read the WP-CLI documentation](https://wp-cli.org/docs/pull-requests/#functional-tests) for an introduction.
191-
4. Follow the [WordPress Coding Standards](http://make.wordpress.org/core/handbook/coding-standards/).
186+
Github issues aren't for general support questions, but there are other venues you can try: http://wp-cli.org/#support
192187

193188

194189
*This README.md is generated dynamically from the project's codebase using `wp scaffold package-readme` ([doc](https://github.com/wp-cli/scaffold-package-command#wp-scaffold-package-readme)). To suggest changes, please submit a pull request against the corresponding part of the codebase.*

0 commit comments

Comments
 (0)