Opened 21 months ago
Closed 21 months ago
#6790 closed defect (bug) (maybelater)
changed translation strings are not marked as fuzzy
Reported by: | timse201 | Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Component: | Translate Site & Plugins | Keywords: | |
Cc: |
Description
Today The SEO Framework was updated and one string changed. It was marked as fuzzy in dev and under stable the string remained approved.
Attachments (3)
Change History (10)
#1
@
21 months ago
This was the case for all languages.
source code 4.2.7.1 old stable:
Input::make_checkbox( [
'id' => 'display_seo_bar_metabox',
'label' => esc_html( 'Display the SEO Bar in the SEO Settings metabox?', 'autodescription' ),
'escape' => false,
] ),
source code 4.2.8 new stable:
Input::make_checkbox( [
'id' => 'display_seo_bar_metabox',
'label' => esc_html( 'Display the SEO Bar in the SEO Settings meta box?', 'autodescription' ),
'escape' => false,
] ),
#2
@
21 months ago
- Keywords reporter-feedback added
- Priority changed from high to normal
The "Stable" translation branch reflects all strings currently available in whichever tagged version of the plugin the /trunk/readme.txt points to in the declaration "Stable tag:".
The "Stable branch" is the one that is used to build language packages, and the threshold for generating the first language pack (90% of the strings in the project translated and approved) is also calculated against the "Stable" branch.
The "Dev" translation branch contains all strings available under the /trunk branch.
In other words, a plugin developer can add an updated version of their plugin under /trunk. They can even add new tagged versions under /tags. But as long as the /trunk/readme.txt still points to an earlier version, that will be the "Stable version" that new users will be suggested, and the language pack will still be based on the "Stable version".
By pushing a change to /trunk before "releasing it" by updating the "Stable tag" declaration, a developer may make strings available for translation. When the stable tag later gets updated, translate.wordpress.org will synchronize any matching approved translations under "Dev" to the new "Stable" project.
To my understanding, I see no bug here. But I'll leave it to you, @timse201 to confirm that and close this ticket.
#3
@
21 months ago
Hi,
@tobifjellner I know this behaviour but the string is already present in stable.
overview