]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/toselector.php
Bug tracker link updated.
[quix0rs-gnu-social.git] / lib / toselector.php
index 6dd4b5c9f4bfaa174f4d7db8ac18fe5d78428b12..6d424dc259ccc8433c2e5996cd392bc16fe51dbe 100644 (file)
@@ -4,7 +4,7 @@
  * Copyright (C) 2011, StatusNet, Inc.
  *
  * Widget showing a drop-down of potential addressees
- * 
+ *
  * PHP version 5
  *
  * This program is free software: you can redistribute it and/or modify
@@ -44,7 +44,6 @@ if (!defined('STATUSNET')) {
  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
  * @link      http://status.net/
  */
-
 class ToSelector extends Widget
 {
     protected $user;
@@ -84,15 +83,18 @@ class ToSelector extends Widget
         $default = 'public:site';
 
         if (!common_config('site', 'private')) {
-            $choices['public:everyone'] = _('Everyone');
+            // TRANS: Option in drop-down of potential addressees.
+            $choices['public:everyone'] = _m('SENDTO','Everyone');
             $default = 'public:everyone';
         }
         // XXX: better name...?
+        // TRANS: Option in drop-down of potential addressees.
+        // TRANS: %s is a StatusNet sitename.
         $choices['public:site'] = sprintf(_('My colleagues at %s'), common_config('site', 'name'));
-        
+
         $groups = $this->user->getGroups();
 
-        while ($groups->fetch()) {
+        while ($groups instanceof User_group && $groups->fetch()) {
             $value = 'group:'.$groups->id;
             if (($this->to instanceof User_group) && $this->to->id == $groups->id) {
                 $default = $value;
@@ -109,15 +111,19 @@ class ToSelector extends Widget
         }
 
         $this->out->dropdown($this->id,
-                             _('To:'),
+                             // TRANS: Label for drop-down of potential addressees.
+                             _m('LABEL','To:'),
                              $choices,
                              null,
                              false,
                              $default);
 
+        $this->out->elementStart('span', 'checkbox-wrapper');
         $this->out->checkbox('notice_private',
-                             _('Private'),
+                             // TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private.
+                             _('Private?'),
                              $this->private);
+        $this->out->elementEnd('span');
     }
 
     static function fillOptions($action, &$options)
@@ -126,6 +132,10 @@ class ToSelector extends Widget
         $toArg = $action->trimmed('notice_to');
         $private = $action->boolean('notice_private');
 
+        if (empty($toArg)) {
+            return;
+        }
+
         list($prefix, $value) = explode(':', $toArg);
         switch ($prefix) {
         case 'group':
@@ -135,8 +145,8 @@ class ToSelector extends Widget
             }
             break;
         case 'profile':
-            $profile = Profile::staticGet('id', $value);
-            $options['replies'] = $profile->getUri();
+            $profile = Profile::getKV('id', $value);
+            $options['replies'] = array($profile->getUri());
             if ($private) {
                 $options['scope'] = Notice::ADDRESSEE_SCOPE;
             }
@@ -149,7 +159,8 @@ class ToSelector extends Widget
             }
             break;
         default:
-            throw new ClientException('Unknown to value: ' . toArg);
+            // TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received.
+            throw new ClientException(sprintf(_('Unknown to value: "%s".'),$toArg));
             break;
         }
     }