Bug 984206
Summary: | def friendly_join(items): in utils.py should not use string " and " | ||
---|---|---|---|
Product: | Red Hat Enterprise Linux 5 | Reporter: | John Sefler <jsefler> |
Component: | subscription-manager | Assignee: | Bryan Kearney <bkearney> |
Status: | CLOSED ERRATA | QA Contact: | IDM QE LIST <seceng-idm-qe-list> |
Severity: | unspecified | Docs Contact: | |
Priority: | unspecified | ||
Version: | 5.10 | CC: | alikins, bkearney, jesusr |
Target Milestone: | rc | ||
Target Release: | --- | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | Bug Fix | |
Doc Text: |
No description necessary
|
Story Points: | --- |
Clone Of: | Environment: | ||
Last Closed: | 2013-09-30 23:13:25 UTC | Type: | Bug |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: | |||
Bug Depends On: | |||
Bug Blocks: | 840995 |
Description
John Sefler
2013-07-13 15:53:49 UTC
This request was evaluated by Red Hat Product Management for inclusion in a Red Hat Enterprise Linux release. Product Management has requested further review of this request by Red Hat Engineering, for potential inclusion in a Red Hat Enterprise Linux release for currently deployed products. This request is not yet committed for inclusion in a release. Notice below that seven LANGS [as][es_ES][hi][it][ja][ml][pt_BR] have failed this translation. [root@jsefler-5 ~]# for i in `rpm -ql subscription-manager | grep rhsm.mo`; do echo $i; msgunfmt $i | grep "\" and \"" -A1; done; /usr/share/locale/as/LC_MESSAGES/rhsm.mo msgid " and " msgstr "আৰু" /usr/share/locale/bn_IN/LC_MESSAGES/rhsm.mo /usr/share/locale/de_DE/LC_MESSAGES/rhsm.mo msgid " and " msgstr " und" /usr/share/locale/es_ES/LC_MESSAGES/rhsm.mo msgid " and " msgstr "y" /usr/share/locale/fr/LC_MESSAGES/rhsm.mo msgid " and " msgstr " et " /usr/share/locale/gu/LC_MESSAGES/rhsm.mo msgid " and " msgstr " અને " /usr/share/locale/hi/LC_MESSAGES/rhsm.mo msgid " and " msgstr "और" /usr/share/locale/it/LC_MESSAGES/rhsm.mo msgid " and " msgstr "e" /usr/share/locale/ja/LC_MESSAGES/rhsm.mo msgid " and " msgstr "および" /usr/share/locale/kn/LC_MESSAGES/rhsm.mo msgid " and " msgstr " ಮತ್ತು " /usr/share/locale/ko/LC_MESSAGES/rhsm.mo msgid " and " msgstr " 및 " /usr/share/locale/ml/LC_MESSAGES/rhsm.mo msgid " and " msgstr "കൂടാതെ" /usr/share/locale/mr/LC_MESSAGES/rhsm.mo msgid " and " msgstr " अँड " /usr/share/locale/or/LC_MESSAGES/rhsm.mo msgid " and " msgstr " ଏବଂ" /usr/share/locale/pa/LC_MESSAGES/rhsm.mo /usr/share/locale/pt_BR/LC_MESSAGES/rhsm.mo msgid " and " msgstr "e" /usr/share/locale/ru/LC_MESSAGES/rhsm.mo msgid " and " msgstr " и " /usr/share/locale/ta_IN/LC_MESSAGES/rhsm.mo msgid " and " msgstr " மற்றும் " /usr/share/locale/te/LC_MESSAGES/rhsm.mo msgid " and " msgstr " మరియు " /usr/share/locale/zh_CN/LC_MESSAGES/rhsm.mo msgid " and " msgstr " 以及 " /usr/share/locale/zh_TW/LC_MESSAGES/rhsm.mo msgid " and " msgstr " 與 " [root@jsefler-5 ~]# 8a4d21b3fb480c41162b1a13d57d34fc01cdd00e and 8fe95ec94c177eea0ae8bc8808080e1e61219657 subscription-manager.git Note that this string is currently untranslated. I'll see if that is something that can be copied in bulk. Testing Version... [root@jsefler-5 ~]# rpm -q subscription-manager subscription-manager-1.8.19-1.el5 [root@jsefler-5 ~]# rpm -ql subscription-manager | grep utils.py /usr/share/rhsm/subscription_manager/utils.py /usr/share/rhsm/subscription_manager/utils.pyc /usr/share/rhsm/subscription_manager/utils.pyo [root@jsefler-5 ~]# egrep \"and\" /usr/share/rhsm/subscription_manager/utils.py return first_string + " %s " % _("and") + last ^ VERIFIED: White space has been stripped off the "and" msgid string in the source [root@jsefler-5 ~]# for i in `rpm -ql subscription-manager | grep rhsm.mo`; do echo $i; msgunfmt $i | grep "\" and \"" -A1; done; /usr/share/locale/as/LC_MESSAGES/rhsm.mo /usr/share/locale/bn_IN/LC_MESSAGES/rhsm.mo /usr/share/locale/de_DE/LC_MESSAGES/rhsm.mo /usr/share/locale/es_ES/LC_MESSAGES/rhsm.mo /usr/share/locale/fr/LC_MESSAGES/rhsm.mo /usr/share/locale/gu/LC_MESSAGES/rhsm.mo /usr/share/locale/hi/LC_MESSAGES/rhsm.mo /usr/share/locale/it/LC_MESSAGES/rhsm.mo /usr/share/locale/ja/LC_MESSAGES/rhsm.mo /usr/share/locale/kn/LC_MESSAGES/rhsm.mo /usr/share/locale/ko/LC_MESSAGES/rhsm.mo /usr/share/locale/ml/LC_MESSAGES/rhsm.mo /usr/share/locale/mr/LC_MESSAGES/rhsm.mo /usr/share/locale/or/LC_MESSAGES/rhsm.mo /usr/share/locale/pa/LC_MESSAGES/rhsm.mo /usr/share/locale/pt_BR/LC_MESSAGES/rhsm.mo /usr/share/locale/ru/LC_MESSAGES/rhsm.mo /usr/share/locale/ta_IN/LC_MESSAGES/rhsm.mo /usr/share/locale/te/LC_MESSAGES/rhsm.mo /usr/share/locale/zh_CN/LC_MESSAGES/rhsm.mo /usr/share/locale/zh_TW/LC_MESSAGES/rhsm.mo ^ VERIFIED: the " and " msgid is no longer included in the translations. I do NOT yet see the translations for the new "and" msgstr. Leaving this bug ON_QA to verify the next build of subscription-manager after strings are pulled again. Verifying new msgid "and" has been translated... [root@jsefler-5 ~]# rpm -q subscription-manager subscription-manager-1.8.20-1.el5 [root@jsefler-5 ~]# for i in `rpm -ql subscription-manager | grep rhsm.mo`; do echo $i; msgunfmt $i | grep "\"and\"" -A1; done; /usr/share/locale/as/LC_MESSAGES/rhsm.mo msgid "and" msgstr "আৰু" /usr/share/locale/bn_IN/LC_MESSAGES/rhsm.mo msgid "and" msgstr "এবং" /usr/share/locale/de_DE/LC_MESSAGES/rhsm.mo msgid "and" msgstr "und" /usr/share/locale/es_ES/LC_MESSAGES/rhsm.mo msgid "and" msgstr "y" /usr/share/locale/fr/LC_MESSAGES/rhsm.mo msgid "and" msgstr "et" /usr/share/locale/gu/LC_MESSAGES/rhsm.mo msgid "and" msgstr "અને" /usr/share/locale/hi/LC_MESSAGES/rhsm.mo msgid "and" msgstr "और" /usr/share/locale/it/LC_MESSAGES/rhsm.mo msgid "and" msgstr "e" /usr/share/locale/ja/LC_MESSAGES/rhsm.mo msgid "and" msgstr "および" /usr/share/locale/kn/LC_MESSAGES/rhsm.mo msgid "and" msgstr "ಮತ್ತು" /usr/share/locale/ko/LC_MESSAGES/rhsm.mo msgid "and" msgstr "및" /usr/share/locale/ml/LC_MESSAGES/rhsm.mo msgid "and" msgstr "," /usr/share/locale/mr/LC_MESSAGES/rhsm.mo msgid "and" msgstr "आणि" /usr/share/locale/or/LC_MESSAGES/rhsm.mo msgid "and" msgstr "ଏବଂ" /usr/share/locale/pa/LC_MESSAGES/rhsm.mo msgid "and" msgstr "ਅਤੇ" /usr/share/locale/pt_BR/LC_MESSAGES/rhsm.mo msgid "and" msgstr "e" /usr/share/locale/ru/LC_MESSAGES/rhsm.mo msgid "and" msgstr "и" /usr/share/locale/ta_IN/LC_MESSAGES/rhsm.mo msgid "and" msgstr "மற்றும்" /usr/share/locale/te/LC_MESSAGES/rhsm.mo msgid "and" msgstr "మరియు" /usr/share/locale/zh_CN/LC_MESSAGES/rhsm.mo msgid "and" msgstr "和" /usr/share/locale/zh_TW/LC_MESSAGES/rhsm.mo msgid "and" msgstr "且" [root@jsefler-5 ~]# Moving to VERIFIED Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. http://rhn.redhat.com/errata/RHBA-2013-1332.html |