Removed periods from strings ending with "!."

This commit is contained in:
Ori Avtalion 2009-01-09 23:33:54 +02:00 committed by Evan Prodromou
parent f77b98d38a
commit 47c869edbd
1 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ function subs_subscribe_user($user, $other_nickname) {
function subs_subscribe_to($user, $other) {
if ($user->isSubscribed($other)) {
return _('Already subscribed!.');
return _('Already subscribed!');
}
if ($other->hasBlocked($user)) {
@ -114,7 +114,7 @@ function subs_unsubscribe_user($user, $other_nickname) {
function subs_unsubscribe_to($user, $other) {
if (!$user->isSubscribed($other))
return _('Not subscribed!.');
return _('Not subscribed!');
$sub = DB_DataObject::factory('subscription');