Correct "one invalid characters" to "one invalid character"
Corrected "one invalid characters" to "one invalid character" in line 1575.
This commit is contained in:
parent
cfaee93552
commit
4a0c649c8a
|
@ -1572,7 +1572,7 @@ class View {
|
||||||
} catch (ReservedWordException $ex) {
|
} catch (ReservedWordException $ex) {
|
||||||
throw new InvalidPathException($l10n->t('File name is a reserved word'));
|
throw new InvalidPathException($l10n->t('File name is a reserved word'));
|
||||||
} catch (InvalidCharacterInPathException $ex) {
|
} 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'));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue