comparison core/lib/Drupal/Component/Gettext/PoItem.php @ 12:7a779792577d

Update Drupal core to v8.4.5 (via Composer)
author Chris Cannam
date Fri, 23 Feb 2018 15:52:07 +0000
parents 4c8ae668cc8c
children 129ea1e6d783
comparison
equal deleted inserted replaced
11:bfffd8d7479a 12:7a779792577d
11 class PoItem { 11 class PoItem {
12 12
13 /** 13 /**
14 * The language code this translation is in. 14 * The language code this translation is in.
15 * 15 *
16 * @car string 16 * @var string
17 */ 17 */
18 private $_langcode; 18 private $_langcode;
19 19
20 /** 20 /**
21 * The context this translation belongs to. 21 * The context this translation belongs to.
25 private $_context = ''; 25 private $_context = '';
26 26
27 /** 27 /**
28 * The source string or array of strings if it has plurals. 28 * The source string or array of strings if it has plurals.
29 * 29 *
30 * @var string or array 30 * @var string|array
31 *
31 * @see $_plural 32 * @see $_plural
32 */ 33 */
33 private $_source; 34 private $_source;
34 35
35 /** 36 /**
47 private $_comment; 48 private $_comment;
48 49
49 /** 50 /**
50 * The translation string or array of strings if it has plurals. 51 * The translation string or array of strings if it has plurals.
51 * 52 *
52 * @var string or array 53 * @var string|array
53 * @see $_plural 54 * @see $_plural
54 */ 55 */
55 private $_translation; 56 private $_translation;
56 57
57 /** 58 /**