-
Notifications
You must be signed in to change notification settings - Fork 6
Remove source locale from targets (WP-1016) #631
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
d7b6cba
fe0e793
9c0399f
31a9804
3bfbf06
0c69bf9
0bdf96d
620ceaf
7b67f0e
5e03bcc
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,7 +4,7 @@ Tags: translation, localization, multilingual, internationalization, smartling | |
| Requires at least: 5.5 | ||
| Tested up to: 7.0 | ||
| Requires PHP: 8.0 | ||
| Stable tag: 5.7.0 | ||
| Stable tag: 5.7.3 | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 5.7.1 and 5.7.2 were development releases |
||
| License: GPLv2 or later | ||
|
|
||
| Translate content in WordPress quickly and seamlessly with Smartling, the industry-leading Translation Management System. | ||
|
|
@@ -62,6 +62,10 @@ Additional information on the Smartling Connector for WordPress can be found [he | |
| 3. Track translation status within WordPress from the Submissions Board. View overall progress of submitted translation requests as well as resend updated content. | ||
|
|
||
| == Changelog == | ||
| = 5.7.3 = | ||
| * Fixed possible misconfiguration where target locales were being saved as a duplicate of a newly changed source locale | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🔵 suggestion: the 5.7.3 changelog entry only documents the source/target-locale collision fix. This PR also adds Submissions Board source/target edit links and fixes a fatal error on that same board for historical unregistered content types - neither is mentioned. Consider adding a bullet for each.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Added changelog bullets for both the source/target edit links and the historical-content-type fatal error fix. |
||
| * Added links to the source and target content (if available) on the Translation Progress screen | ||
|
|
||
| = 5.7.0 = | ||
| * Reworked upload queue, added a live-refreshing upload queue count with visual feedback on change | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔵 suggestion:
$blogLabelis interpolated unescaped into the<a>tag here, unlikebuildSourceTitleCellabove, whose caller pre-escapes the title withhtmlentities(). Pre-existing gap, but this exact line is already being touched - cheap to close now, e.g.htmlentities($blogLabel)at the call site (line 432) or inside this method.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed - now escaping
$blogLabelwithhtmlentities()at the call site, matching howbuildSourceTitleCell's caller pre-escapes the title.