Opened 9 years ago
Closed 9 years ago
#2910 closed defect (bug) (fixed)
Avoid using HTML tags in translation strings (includes/admin/topics.php)
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 2.6 | Priority: | normal |
Severity: | normal | Version: | |
Component: | Locale - i18n/l10n | Keywords: | has-patch |
Cc: |
Description
In this ticket, we simplify the translation strings, like we did in wordpress code. Removing the HTML tags from translation strings to make the translation process faster and easier.
See the attached patch.
Old strings:
Topic updated. <a href="%s">View topic</a>
Topic created. <a href="%s">View topic</a>
Topic submitted. <a target="_blank" href="%s">Preview topic</a>
Topic draft updated. <a target="_blank" href="%s">Preview topic</a>
New strings:
Topic updated.
Topic created.
Topic submitted.
Topic draft updated.
View topic
Preview topic
Attachments (3)
Change History (9)
Note: See
TracTickets for help on using
tickets.
Related: #2881