X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;ds=sidebyside;f=web%2Fcore%2Flib%2FDrupal%2FComponent%2FGettext%2FPoItem.php;fp=web%2Fcore%2Flib%2FDrupal%2FComponent%2FGettext%2FPoItem.php;h=6c70990851d00b5e98baa69a37cc29962a630cf1;hb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;hp=1f05bbd59dd64f3f659f71e8fff7446a3670ce9e;hpb=aea91e65e895364e460983b890e295aa5d5540a5;p=yaffs-website diff --git a/web/core/lib/Drupal/Component/Gettext/PoItem.php b/web/core/lib/Drupal/Component/Gettext/PoItem.php index 1f05bbd59..6c7099085 100644 --- a/web/core/lib/Drupal/Component/Gettext/PoItem.php +++ b/web/core/lib/Drupal/Component/Gettext/PoItem.php @@ -13,7 +13,7 @@ class PoItem { /** * The language code this translation is in. * - * @car string + * @var string */ private $_langcode; @@ -27,7 +27,8 @@ class PoItem { /** * The source string or array of strings if it has plurals. * - * @var string or array + * @var string|array + * * @see $_plural */ private $_source; @@ -49,7 +50,7 @@ class PoItem { /** * The translation string or array of strings if it has plurals. * - * @var string or array + * @var string|array * @see $_plural */ private $_translation; @@ -104,7 +105,7 @@ class PoItem { * Set the source string or the array of strings if the translation has * plurals. * - * @param string or array $source + * @param string|array $source */ public function setSource($source) { $this->_source = $source; @@ -124,7 +125,7 @@ class PoItem { * Set the translation string or the array of strings if the translation has * plurals. * - * @param string or array $translation + * @param string|array $translation */ public function setTranslation($translation) { $this->_translation = $translation;