Spelling: Marked nouns, in-valid/sufficient

This commit is contained in:
Allan Nordhøy 2017-11-13 16:52:22 +01:00 committed by GitHub
parent 726ac6b100
commit c3fdde19fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -44,7 +44,7 @@ class Member extends BaseMember {
public function inviteToCircle($circleType) {
if ($circleType === 0) {
throw new CircleTypeNotValidException('Circle Type is not valid');
throw new CircleTypeNotValidException('Invalid circle type');
}
if ($circleType === Circle::CIRCLES_CLOSED) {
@ -142,7 +142,7 @@ class Member extends BaseMember {
if ($this->getLevel() <= $level) {
throw new ModeratorIsNotHighEnoughException(
$this->l10n->t('Not enough privileges')
$this->l10n->t('Insufficient privileges')
);
}
}
@ -166,7 +166,7 @@ class Member extends BaseMember {
public function hasToBeAdmin() {
if ($this->getLevel() < self::LEVEL_ADMIN) {
throw new MemberIsNotAdminException(
$this->l10n->t('This member is not admin of the circle')
$this->l10n->t('This member is not an admin of the circle')
);
}
}
@ -242,7 +242,7 @@ class Member extends BaseMember {
public function levelHasToBeEditable() {
if ($this->getType() !== self::TYPE_USER) {
throw new MemberTypeCantEditLevelException(
$this->l10n->t('Level cannot be changed for that type of member')
$this->l10n->t('Level cannot be changed for this type of member')
);
}
}
@ -275,13 +275,13 @@ class Member extends BaseMember {
if ($this->getLevel() > 0) {
throw new MemberAlreadyExistsException(
$this->l10n->t("User is already a member of this circle")
$this->l10n->t("The user is already a member of this circle")
);
}
if ($this->getStatus() === Member::STATUS_INVITED) {
throw new MemberAlreadyExistsException(
$this->l10n->t("User is already invited into this circle")
$this->l10n->t("The user has already been invited into this circle")
);
}
}