Add missing trailing punctuation

Trailing punctuation is missing, causing duplication of the same text in translation, although it exists in another file:
https://github.com/woocommerce/woocommerce/blob/master/includes/api/class-wc-rest-settings-options-controller.php#L482
This commit is contained in:
Konstantinos Kouratoras 2017-03-10 17:01:47 +02:00 committed by GitHub
parent 66e8d9b054
commit f77b03ef94
1 changed files with 1 additions and 1 deletions

View File

@ -210,7 +210,7 @@ class WC_REST_Settings_Controller extends WC_REST_Controller {
),
),
'description' => array(
'description' => __( 'A human readable translation wrapped description. Meant to be used in interfaces', 'woocommerce' ),
'description' => __( 'A human readable translation wrapped description. Meant to be used in interfaces.', 'woocommerce' ),
'type' => 'string',
'arg_options' => array(
'sanitize_callback' => 'sanitize_text_field',