Describe the bug
While going through the WooCommerce setup wizard and noticed that "Choose any that apply" text is not translated (tested in Chinese and Korean so far) for the Industry and Product Type sections. It looks like they're both tagged correct for translation, for both the Industry and Product Type sections:
It also appears to have a translated string, seen here: https://translate.wordpress.org/projects/wp-plugins/woocommerce/stable/ko/default/?filters%5Bstatus%5D=either&filters%5Boriginal_id%5D=9168148&filters%5Btranslation_id%5D=70713407
Is this just an issue with needing to run xgettext potentially? I am not sure how often those are generated files in the normal development/deployment workflow.
To Reproduce
Steps to reproduce the behavior:
{base-url}/wp-admin/update-core.php){base-url}/wp-admin/admin.php?page=wc-admin&path=%2Fsetup-wizard&step=industry) and product types ({base-url}/wp-admin/admin.php?page=wc-admin&path=%2Fsetup-wizard&step=product-types) pagesExpected behavior
All text should be translated into the target language that have 100% coverage (in this case, Korean: https://translate.wordpress.org/projects/wp-plugins/woocommerce/stable/ko/default/?filters%5Btranslated%5D=yes&filters%5Bstatus%5D=current)
Screenshots

Desktop (please complete the following information):
Hi @zhongruige,
Thank you for taking the time to report this bug 馃憤
I was able to reproduce it and found a possible cause. I will open a PR soon.
Possible cause:
{ __( 'Choose any that apply' ) } is missing namespace.
It should be
{ __( 'Choose any that apply' , 'woocommerce-admin') }
Thanks,
Moon
Hi @zhongruige,
Thank you for taking the time to report this bug 馃憤
I was able to reproduce it and found a possible cause. I will open a PR soon.
Possible cause:
{ __( 'Choose any that apply' ) }is missing namespace.It should be
{ __( 'Choose any that apply' , 'woocommerce-admin') }Thanks,
Moon
Thanks for the follow up @moon0326 !
@zhongruige sure thing! PR is open.
Thank you!