Correct "one invalid characters" to "one invalid character"

Corrected "one invalid characters" to "one invalid character" in line 1575.
This commit is contained in:
cmeh 2015-03-11 09:59:42 +01:00
parent cfaee93552
commit 4a0c649c8a
1 changed files with 1 additions and 1 deletions

View File

@ -1572,7 +1572,7 @@ class View {
} catch (ReservedWordException $ex) {
throw new InvalidPathException($l10n->t('File name is a reserved word'));
} catch (InvalidCharacterInPathException $ex) {
throw new InvalidPathException($l10n->t('File name contains at least one invalid characters'));
throw new InvalidPathException($l10n->t('File name contains at least one invalid character'));
}
}
}