diff --git a/README.md b/README.md index 0f4ccef..10adbe2 100644 --- a/README.md +++ b/README.md @@ -278,7 +278,7 @@ This behaves similarly to the [msgmerge](https://www.gnu.org/software/gettext/ma **EXAMPLES** - # Update all PO files from a POT file in the same directory. + # Update all PO files from a POT file in the current directory. $ wp i18n update-po example-plugin.pot Success: Updated 3 files. @@ -286,7 +286,7 @@ This behaves similarly to the [msgmerge](https://www.gnu.org/software/gettext/ma $ wp i18n update-po example-plugin.pot example-plugin-de_DE.po Success: Updated 1 file. - # Update all PO files from a POT file in the specific directory. + # Update all PO files in a given directory from a POT file. $ wp i18n update-po example-plugin.pot languages Success: Updated 2 files. diff --git a/src/UpdatePoCommand.php b/src/UpdatePoCommand.php index 70232c1..f46f131 100644 --- a/src/UpdatePoCommand.php +++ b/src/UpdatePoCommand.php @@ -29,7 +29,7 @@ class UpdatePoCommand extends WP_CLI_Command { * * ## EXAMPLES * - * # Update all PO files from a POT file in the same directory. + * # Update all PO files from a POT file in the current directory. * $ wp i18n update-po example-plugin.pot * Success: Updated 3 files. * @@ -37,7 +37,7 @@ class UpdatePoCommand extends WP_CLI_Command { * $ wp i18n update-po example-plugin.pot example-plugin-de_DE.po * Success: Updated 1 file. * - * # Update all PO files from a POT file in the specific directory. + * # Update all PO files in a given directory from a POT file. * $ wp i18n update-po example-plugin.pot languages * Success: Updated 2 files. *