Merge pull request #14788 from cmeh/patch-3

Correct "one invalid characters" to "one invalid character"
This commit is contained in:
Thomas Müller 2015-03-11 12:26:49 +01:00
commit 0d0f9a52d2
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'));
}
}
}