-
-
Notifications
You must be signed in to change notification settings - Fork 202
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update locales-zh-CN.xml #242
base: master
Are you sure you want to change the base?
Conversation
Additional commit:
|
With respect to the quote marks, in citation styles, quote marks are mostly used for book and article titles, so the angle brackets would be correct, no? |
@bwiernik It may cause problem for a title with quoted text such as |
@adam3smith Not sure how to handle this here because CSL doesn't distinguish between types of quotes like that. The context where angle brackets would be used is by far the most common case, so even if CSL can't currently handle all cases correctly, reverting the outer brackets to angle brackets should be done. |
It sounds reasonable if the I also checked the following example. <style xmlns="http://purl.org/net/xbiblio/csl" class="note" version="1.0" default-locale="zh-CN">
<info>
<id />
<title />
<updated>2009-08-10T04:49:00+09:00</updated>
</info>
<locale xml:lang="zh-CN">
<terms>
<term name="open-quote">《</term>
<term name="close-quote">》</term>
<term name="open-inner-quote">〈</term>
<term name="close-inner-quote">〉</term>
</terms>
</locale>
<citation>
<layout>
<text value="Foo "bar" baz" quotes="true"/>
<text value="Foo “bar” baz" quotes="true"/>
<text value="甲"乙"丙" quotes="true"/>
<text value="甲“乙”丙" quotes="true"/>
</layout>
</citation>
</style>
|
The reverting is done. I've also added changes about the date range.
Besides, can I squash these changes to one commit before merging? |
1. Change range-delimiter of text-form date to em dash. 2. Change range-delimiter of numeric-form date to slash. 3. Correct the short form of `edition` term. 4. Change `page-range-delimiter` to fullwidth tilde "~" (U+FF5E).
The changes are rebased on master branch (4a551a8) to solve the conflicts. I also added zh-CN translations for new terms in v1.0.2 and they are reviewed by @redleafnew (zepinglee#1 in Chinese). |
Description
Correct the short form of
edition
term.The short form of
edition
term should be "版" not "本". See https://translate.google.com/?sl=en&tl=zh-CN&text=edition&op=translate.Correct quotation marks.
The quotation marks in Simplified Chinese should be U+201C, U+201C, U+2018, and U+2019 as specified in the China national standard GB/T 15834—2011 General rules for punctuation (in Chinese). See also https://en.wikipedia.org/wiki/Quotation_mark#Summary_table. The original fullwidth angled brackets "《》〈〉" are actually used for indicating book titles in Chinese.
Change
page-range-delimiter
to fullwidth tilde "~" (U+FF5E).The fullwidth tilde "~" (U+FF5E) is used as the delimiter of numeric range in general Chinese language, which is also specified in GB/T 15834—2011. See also https://en.wikipedia.org/wiki/Tilde#Range. As an exception, the
page-range-delimiter
is hyphen in the GB/T 7714—2015 China national bibliography style. Thus thechina-national-standard-gb-t-7714-2015-*.csl
from https://github.com/citation-style-language/styles need to be updated after this PR is merged.BTW, there are a lot of trailing spaces in the file which may need to be cleaned.
Checklist
<translator>
in the<info>
block at the beginning of the file.