Problem/Motivation
Followup to #2236789: Styling of inline radios broken: inappropriate trailing colons (breaks EditorImageDialog):
.container-inline label:after,
.container-inline .label:after {
content: ':';
}
The above code adds a colon after form item labels. These colons are incompatible with Drupal's localization. For example, in French this would need to be ' : ' instead of ':'; in Hindi, this might need to be localized to :-.
Proposed resolution
Possibly remove the hardcoded colon from CSS and use PHP to add the colons instead, so it can be localized properly.
Remaining tasks
- Decide on a solution
- Write a patch
- Review
- Commit
User interface changes
To be determined.
API changes
To be determined.
Data model changes
To be determined.
Comments
Comment #13
quietone commentedThis was a bugsmash daily target. mstrelan pointed out a related issue. I am adding that issue.
Comment #17
gauravvvv commentedComment #18
smustgrave commentedReviewing #2838547: Remove default colon behind inline labels and agree this appears to be a duplicate.