Add missing periods to translation strings

This commit is contained in:
Tautvidas Sipavičius
2017-01-23 16:34:13 +02:00
parent 9466be4793
commit 9f7ae122e3
37 changed files with 116 additions and 116 deletions

View File

@ -38,7 +38,7 @@ class API {
if($this->checkToken() === false) {
$error_response = new ErrorResponse(
array(
Error::UNAUTHORIZED => __('Invalid request.', 'mailpoet')
Error::UNAUTHORIZED => __('Invalid request', 'mailpoet')
),
array(),
Response::STATUS_UNAUTHORIZED
@ -64,7 +64,7 @@ class API {
// throw exception bad request
$error_response = new ErrorResponse(
array(
Error::BAD_REQUEST => __('Invalid request.', 'mailpoet')
Error::BAD_REQUEST => __('Invalid request', 'mailpoet')
),
array(),
Response::STATUS_BAD_REQUEST
@ -149,4 +149,4 @@ class API {
$global .= '</script>';
echo $global;
}
}
}