1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393
|
####################################################################
# LanguageHelper.awk #
####################################################################
# Get locale key by language code or alias.
function getCode(code, group) {
if (code == "auto" || code in Locale)
return code
else if (code in LocaleAlias)
return LocaleAlias[code]
else if (tolower(code) in LocaleAlias)
return LocaleAlias[tolower(code)]
# Remove unidentified region or script code
match(code, /^([[:alpha:]][[:alpha:]][[:alpha:]]?)-(.*)$/, group)
if (group[1])
return group[1]
return # return nothing if not found
}
# Return the name of a language.
function getName(code) {
return Locale[getCode(code)]["name"]
}
# Return all the names of a language, separated by "/"
function getNames(code) {
if ("name2" in Locale[getCode(code)])
return Locale[getCode(code)]["name"] " / " Locale[getCode(code)]["name2"]
else
return Locale[getCode(code)]["name"]
}
# Return the endonym of a language.
function getEndonym(code) {
return Locale[getCode(code)]["endonym"]
}
# Return the string for displaying the endonym of a language.
function getDisplay(code) {
return Locale[getCode(code)]["display"]
}
# Return formatted text for "translations of".
function showTranslationsOf(code, text, fmt) {
fmt = Locale[getCode(code)]["translations-of"]
if (!fmt) fmt = Locale["en"]["translations-of"]
return sprintf(fmt, text)
}
# Return formatted text for "definitions of".
function showDefinitionsOf(code, text, fmt) {
fmt = Locale[getCode(code)]["definitions-of"]
if (!fmt) fmt = Locale["en"]["definitions-of"]
return sprintf(fmt, text)
}
# Return a string of "synonyms".
function showSynonyms(code, tmp) {
tmp = Locale[getCode(code)]["synonyms"]
if (!tmp) tmp = Locale["en"]["synonyms"]
return tmp
}
# Return a string of "examples".
function showExamples(code, tmp) {
tmp = Locale[getCode(code)]["examples"]
if (!tmp) tmp = Locale["en"]["examples"]
return tmp
}
# Return a string of "see also".
function showSeeAlso(code, tmp) {
tmp = Locale[getCode(code)]["see-also"]
if (!tmp) tmp = Locale["en"]["see-also"]
return tmp
}
# Return the family of a language.
function getFamily(code) {
return Locale[getCode(code)]["family"]
}
# Return the branch of a language.
function getBranch(code) {
return Locale[getCode(code)]["branch"]
}
# Return the ISO 639-3 code of a language.
function getISO(code) {
return Locale[getCode(code)]["iso"]
}
# Return the Glottocode of a language.
function getGlotto(code) {
return Locale[getCode(code)]["glotto"]
}
# Return the ISO 15924 script code of a language.
function getScript(code) {
return Locale[getCode(code)]["script"]
}
# Return 1 if a language is R-to-L; otherwise return 0.
function isRTL(code) {
return Locale[getCode(code)]["rtl"] ? 1 : 0
}
# Return 1 if Google provides dictionary data for a language; otherwise return 0.
function hasDictionary(code) {
return Locale[getCode(code)]["dictionary"] ? 1 : 0
}
# Comparator using getName().
function compName(i1, v1, i2, v2) {
if (getName(i1) < getName(i2))
return -1
else
return (getName(i1) != getName(i2))
}
# Return the name of script (writing system).
# See: <https://en.wikipedia.org/wiki/ISO_15924#List_of_codes>
# <http://unicode.org/iso15924/iso15924-codes.html>
function scriptName(code) {
switch (code) {
case "Arab": return "Arabic"
case "Armn": return "Armenian"
case "Beng": return "Bengali"
case "Cans": return "Canadian Aboriginal Syllabics"
case "Cher": return "Cherokee"
case "Cyrl": return "Cyrillic"
case "Deva": return "Devanagari"
case "Ethi": return "Ethiopic (Geʻez)"
case "Geor": return "Georgian (Mkhedruli)"
case "Grek": return "Greek"
case "Gujr": return "Gujarati"
case "Guru": return "Gurmukhi"
case "Hani": return "Han"
case "Hans": return "Han (Simplified)"
case "Hant": return "Han (Traditional)"
case "Hebr": return "Hebrew"
case "Jpan": return "Japanese (Han + Hiragana + Katakana)"
case "Khmr": return "Khmer"
case "Knda": return "Kannada"
case "Kore": return "Korean (Hangul + Han)"
case "Laoo": return "Lao"
case "Latn": return "Latin"
case "Mlym": return "Malayalam"
case "Mong": return "Mongolian"
case "Mtei": return "Meitei Mayek"
case "Mymr": return "Myanmar"
case "Orya": return "Oriya"
case "Sinh": return "Sinhala"
case "Taml": return "Tamil"
case "Telu": return "Telugu"
case "Thaa": return "Thaana"
case "Thai": return "Thai"
case "Tibt": return "Tibetan"
default: return "Unknown"
}
}
# Return the regions that a language is spoken in, as an English string.
function getSpokenIn(code, i, j, r, regions, str) {
r = NULLSTR
str = Locale[getCode(code)]["spoken-in"]
if (str) {
split(str, regions, /\s?;\s?/)
j = 0
for (i in regions) {
r = r regions[i]
j++
if (j < length(regions) - 1)
r = r ", "
else if (j == length(regions) - 1)
r = r " and "
}
}
return r
}
# Return the regions that a script is written in, as an English string.
function getWrittenIn(code, i, j, r, regions, str) {
r = NULLSTR
str = Locale[getCode(code)]["written-in"]
if (str) {
split(str, regions, /\s?;\s?/)
j = 0
for (i in regions) {
r = r regions[i]
j++
if (j < length(regions) - 1)
r = r ", "
else if (j == length(regions) - 1)
r = r " and "
}
}
return r
}
# Return the extra description of a language.
function getDescription(code) {
return Locale[getCode(code)]["description"]
}
# Return 1 if a language is supported by Google; otherwise return 0.
function isSupportedByGoogle(code, engines, i, str) {
str = Locale[getCode(code)]["supported-by"]
if (str) {
split(str, engines, /\s?;\s?/)
for (i in engines)
if (engines[i] == "google") return 1
}
return 0
}
# Return 1 if a language is supported by Bing; otherwise return 0.
function isSupportedByBing(code, engines, i, str) {
str = Locale[getCode(code)]["supported-by"]
if (str) {
split(str, engines, /\s?;\s?/)
for (i in engines)
if (engines[i] == "bing") return 1
}
return 0
}
# Return detailed information of a language as a string.
function getDetails(code, article, desc, group, iso, name, names, script, writing) {
if (code == "auto" || !getCode(code)) {
e("[ERROR] Language not found: " code "\n" \
" Run '-reference / -R' to see a list of available languages.")
exit 1
}
script = scriptName(getScript(code))
if (isRTL(code)) script = script " (R-to-L)"
split(getISO(code), group, "-")
iso = group[1]
name = getName(code)
names = getNames(code)
if (match(name, /\(.*\)/)) {
writing = substr(name, match(name, /\(.*\)/) + 1)
writing = substr(writing, 1, length(writing) - 1)
name = substr(name, 1, match(name, /\(.*\)/) - 2)
}
if (getDescription(code))
desc = sprintf("%s is %s.", names, getDescription(code))
else if (getBranch(code)) {
article = match(tolower(getBranch(code)), /^[aeiou]/) ? "an" : "a"
if (iso == "eng")
desc = sprintf("%s is %s %s language spoken %s.",
names, article, getBranch(code), getSpokenIn(code))
else
desc = sprintf("%s is %s %s language spoken mainly in %s.",
names, article, getBranch(code), getSpokenIn(code))
}
else if (getFamily(code) == NULLSTR || tolower(getFamily(code)) == "language isolate")
desc = sprintf("%s is a language spoken mainly in %s.", names, getSpokenIn(code))
else
desc = sprintf("%s is a language of the %s family, spoken mainly in %s.",
names, getFamily(code), getSpokenIn(code))
if (writing && getWrittenIn(code))
desc = desc sprintf(" The %s writing system is officially used in %s.",
tolower(writing), getWrittenIn(code))
return ansi("bold", sprintf("%s\n", getDisplay(code))) \
sprintf("%-22s%s\n", "Name", ansi("bold", names)) \
sprintf("%-22s%s\n", "Family", ansi("bold", getFamily(code))) \
sprintf("%-22s%s\n", "Writing system", ansi("bold", script)) \
sprintf("%-22s%s\n", "Code", ansi("bold", getCode(code))) \
sprintf("%-22s%s\n", "ISO 639-3", ansi("bold", iso)) \
sprintf("%-22s%s\n", "SIL", ansi("bold", "https://iso639-3.sil.org/code/" iso)) \
sprintf("%-22s%s\n", "Glottolog", getGlotto(code) ?
ansi("bold", "https://glottolog.org/resource/languoid/id/" getGlotto(code)) : "") \
sprintf("%-22s%s\n", "Wikipedia", ansi("bold", "https://en.wikipedia.org/wiki/ISO_639:" iso)) \
(Locale[getCode(code)]["supported-by"] ? # FIXME
sprintf("%-22s%s\n", "Translator support", sprintf("Google [%s] Bing [%s]",
isSupportedByGoogle(code) ? "✔" : "✘", isSupportedByBing(code) ? "✔" : "✘")) : "") \
(Locale[getCode(code)]["spoken-in"] ? # FIXME
ansi("bold", sprintf("\n%s", desc)) : "")
}
# Add /slashes/ for IPA phonemic notations and (parentheses) for others.
# Parameters:
# code
function showPhonetics(phonetics, code) {
if (code && getCode(code) == "en")
return "/" phonetics "/"
else
return "(" phonetics ")"
}
# Convert a logical string to visual; don't right justify RTL lines.
# Parameters:
# code: ignore to apply bidirectional algorithm on every string
function show(text, code, command, temp) {
if (!code || isRTL(code)) {
if (Cache[text][0])
return Cache[text][0]
else {
if ((FriBidi || (code && isRTL(code))) && BiDiNoPad) {
command = "echo " parameterize(text) PIPE BiDiNoPad
command | getline temp
close(command)
} else # non-RTL language, or FriBidi not installed
temp = text
return Cache[text][0] = temp
}
} else
return text
}
# Convert a logical string to visual and right justify RTL lines.
# Parameters:
# code: ignore to apply bidirectional algorithm on every string
# width: ignore to use default width for padding
function s(text, code, width, command, temp) {
if (!code || isRTL(code)) {
if (!width) width = Option["width"]
if (Cache[text][width])
return Cache[text][width]
else {
if ((FriBidi || (code && isRTL(code))) && BiDi) {
command = "echo " parameterize(text) PIPE sprintf(BiDi, width)
command | getline temp
close(command)
} else # non-RTL language, or FriBidi not installed
temp = text
return Cache[text][width] = temp
}
} else
return text
}
# Convert a logical string to visual with a certain level of indentation.
# Parameters:
# level: level of indentation
# code: ignore to apply left indentation
# width: ignore to use default width for padding
function ins(level, text, code, width, i, temp) {
if (code && isRTL(code)) {
if (!width) width = Option["width"]
return s(text, code, width - Option["indent"] * level)
} else
return replicate(" ", Option["indent"] * level) text
}
# Parse a POSIX locale identifier and return the language code;
# Identified by both language identifier and region identifier.
# Parameters:
# lang = [language[_territory][.codeset][@modifier]]
# See: <https://en.wikipedia.org/wiki/Locale>
function parseLang(lang, code, group) {
match(lang, /^([a-z][a-z][a-z]?)(_|$)/, group)
code = getCode(group[1])
# Detect region identifier
## Regions using Chinese Simplified: China, Singapore
if (lang ~ /^zh_(CN|SG)/) code = "zh-CN"
## Regions using Chinese Traditional: Taiwan, Hong Kong
else if (lang ~ /^zh_(TW|HK)/) code = "zh-TW"
# FIXME: handle unrecognized language code
if (!code) code = "en"
return code
}
# Initialize `UserLang`.
function initUserLang( lang, utf) {
if (lang = ENVIRON["LC_ALL"]) {
if (!UserLocale) UserLocale = lang
utf = utf || tolower(lang) ~ /utf-?8$/
}
if (lang = ENVIRON["LANG"]) {
if (!UserLocale) UserLocale = lang
utf = utf || tolower(lang) ~ /utf-?8$/
}
if (!UserLocale) {
UserLocale = "en_US.UTF-8"
utf = 1
}
if (!utf)
w("[WARNING] Your locale codeset (" UserLocale ") is not UTF-8.")
UserLang = parseLang(UserLocale)
}
|