The code must be fixed so that the colon is not displayed when the label
is hidden by accessibility CSS.
$string['firstdayofweek'] = '0';
$string['iso6391'] = 'en';
$string['iso6392'] = 'eng';
-$string['labelsep'] = ' ';
+$string['labelsep'] = ': ';
$string['listsep'] = ',';
$string['locale'] = 'en_AU.UTF-8';
$string['localewin'] = 'English_Australia.1252';
$text = trim($text);
$label = self::tag('label', $text, $attributes);
+ /*
+ // TODO $colonize disabled for now yet - see MDL-12192 for details
if (!empty($text) and $colonize) {
// the $text may end with the colon already, though it is bad string definition style
$colon = get_string('labelsep', 'langconfig');
}
}
}
+ */
return $label;
}