diff options
author | Ori Avtalion <ori@avtalion.name> | 2009-01-09 23:33:54 +0200 |
---|---|---|
committer | Evan Prodromou <git@evanprodromou.name> | 2009-01-11 08:35:10 -0500 |
commit | 47c869edbd1dd9ca5ca2f711c2b77fddd395fd3c (patch) | |
tree | 2054cde3fcb58cd03ae5e71701c1361155d2adff /lib | |
parent | f77b98d38a180e31a3eab4f9de228347c484e8d3 (diff) |
Removed periods from strings ending with "!."
Diffstat (limited to 'lib')
-rw-r--r-- | lib/subs.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/subs.php b/lib/subs.php index 91fc8445d..a2699f7b9 100644 --- a/lib/subs.php +++ b/lib/subs.php @@ -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'); |