Opened 8 years ago

Closed 8 years ago

#27293 closed Uncategorized (invalid)

Incorrect time string spacing in Korean

Reported by: Hwan Kim Owned by: nobody
Component: Internationalization Version: 1.10
Severity: Normal Keywords: Korean
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

There is incorrect space in Korean. It should be write together number and time string. Please see this example:

django/contrib/humanize/locale/ko/LC_MESSAGES/django.po

line 196:
- msgstr[0] "%(count)s 초 전"
+ msgstr[0] "%(count)s초 전"


line 203:
- msgstr[0] "%(count)s 분 전"
+ msgstr[0] "%(count)s분 전"

line 210:
- msgstr[0] "%(count)s 시간 전"
+ msgstr[0] "%(count)s시간 전"

line 222:
- msgstr[0] "지금부터 %(count)s 초"
+ msgstr[0] "지금부터 %(count)s초"

line 229:
- msgstr[0] "지금부터 %(count)s 분"
+ msgstr[0] "지금부터 %(count)s분"

line 236:
- msgstr[0] "지금부터 %(count)s 시간"
+ msgstr[0] "지금부터 %(count)s시간"

Change History (1)

comment:1 by Claude Paroz, 8 years ago

Resolution: invalid
Status: newclosed

Translation issues are handled through Transifex. You might ask to join the team or write to the latest translator (magno79 at gmail.com) for a quicker fix as translations will be updated tomorrow for 1.10.2.

Note: See TracTickets for help on using tickets.
Back to Top