]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Removed periods from strings ending with "!."
authorOri Avtalion <ori@avtalion.name>
Fri, 9 Jan 2009 21:33:54 +0000 (23:33 +0200)
committerEvan Prodromou <git@evanprodromou.name>
Sun, 11 Jan 2009 13:35:10 +0000 (08:35 -0500)
lib/subs.php

index 91fc8445d7c34bc4a130819c5986f9ffd49a3350..a2699f7b998935caf6fb04737fad7b7db2c84504 100644 (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');