fix typo in strings

This commit is contained in:
leogermani 2019-03-28 16:24:59 -03:00
parent 8b0f36ebf4
commit 7c6bb73524
1 changed files with 2 additions and 2 deletions

View File

@ -101,7 +101,7 @@ class System_Check {
if ( $time < $min ) {
$class = 'error';
$text = sprintf(
__('Your current configuratino is %ds. This is too little. Please increase it to at least 30s', 'tainacan'),
__('Your current configuration is %ds. This is too little. Please increase it to at least 30s', 'tainacan'),
$time
);
} elseif ( $time < $rec ) {
@ -113,7 +113,7 @@ class System_Check {
} else {
$class = 'good';
$text = sprintf(
__('Your current configuratino is %ds. This is excellent.', 'tainacan'),
__('Your current configuration is %ds. This is excellent.', 'tainacan'),
$time
);
}