상대 날짜 형식 문제

The relative date in Chinese language has unnecessary spaces.
Usually the date format should be “mm月dd日”, the current format is “mm月 dd 日”.
I haven’t found any issue with the translation, and also I think the ember helper lead to this issue.

I think function autoUpdatingRelativeAge adds the extra spaces.
I understand this is not an issue for English version discourse, but may cause some format issues for other languages.
I tried javascript to remove the spaces, but it won’t work with the lazy loading content.
I’m appreciated to any tips for modifying the ember helper in a plugin or any fix from the main branch.

이것은 로케일 파일의 날짜 형식 문자열로 인해 간체 중국어에서 발생하는 Contribute > Bug 인 것 같습니다. git 히스토리를 살펴보면, v3.3.0에서 형식은 다음과 같습니다:

최근에 업데이트된 것으로 보입니다(3.4.0.beta1-dev에서 라이브로 확인됨)

코드펜에서 "MMM D 日" 형식 문자열을 zh-cn의 기본 Momentjs 설정과 함께 테스트해 보면, 관찰된 결함(즉, "8월 2 日")이 생성됩니다.

즉각적인 수정을 위해, js.dates.tiny.date_monthjs.dates.long_no_year_no_time의 번역을 통해 형식을 다음과 같이 변경할 수 있습니다:

2개의 좋아요