1*6a54128fSAndroid Build Coastguard Worker# All this catalog "translates" are quotation characters. 2*6a54128fSAndroid Build Coastguard Worker# The msgids must be ASCII and therefore cannot contain real quotation 3*6a54128fSAndroid Build Coastguard Worker# characters, only substitutes like grave accent (0x60), apostrophe (0x27) 4*6a54128fSAndroid Build Coastguard Worker# and double quote (0x22). These substitutes look strange; see 5*6a54128fSAndroid Build Coastguard Worker# http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html 6*6a54128fSAndroid Build Coastguard Worker# 7*6a54128fSAndroid Build Coastguard Worker# This catalog translates grave accent (0x60) and apostrophe (0x27) to 8*6a54128fSAndroid Build Coastguard Worker# left single quotation mark (U+2018) and right single quotation mark (U+2019). 9*6a54128fSAndroid Build Coastguard Worker# It also translates pairs of apostrophe (0x27) to 10*6a54128fSAndroid Build Coastguard Worker# left single quotation mark (U+2018) and right single quotation mark (U+2019) 11*6a54128fSAndroid Build Coastguard Worker# and pairs of quotation mark (0x22) to 12*6a54128fSAndroid Build Coastguard Worker# left double quotation mark (U+201C) and right double quotation mark (U+201D). 13*6a54128fSAndroid Build Coastguard Worker# 14*6a54128fSAndroid Build Coastguard Worker# When output to an UTF-8 terminal, the quotation characters appear perfectly. 15*6a54128fSAndroid Build Coastguard Worker# When output to an ISO-8859-1 terminal, the single quotation marks are 16*6a54128fSAndroid Build Coastguard Worker# transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to 17*6a54128fSAndroid Build Coastguard Worker# grave/acute accent (by libiconv), and the double quotation marks are 18*6a54128fSAndroid Build Coastguard Worker# transliterated to 0x22. 19*6a54128fSAndroid Build Coastguard Worker# When output to an ASCII terminal, the single quotation marks are 20*6a54128fSAndroid Build Coastguard Worker# transliterated to apostrophes, and the double quotation marks are 21*6a54128fSAndroid Build Coastguard Worker# transliterated to 0x22. 22*6a54128fSAndroid Build Coastguard Worker# 23*6a54128fSAndroid Build Coastguard Worker# This catalog furthermore displays the text between the quotation marks in 24*6a54128fSAndroid Build Coastguard Worker# bold face, assuming the VT100/XTerm escape sequences. 25*6a54128fSAndroid Build Coastguard Worker# 26