|
31 | 31 | function get_hf_name(hf) --'Native Name "Translated Name", Race' |
32 | 32 | local full_name = transName(hf.name, false) |
33 | 33 | if full_name == '' then --Improve searchability |
34 | | - full_name = 'Anonymous' |
| 34 | + full_name = 'Unnamed' |
35 | 35 | else --Add the translation |
36 | 36 | local t_name = transName(hf.name, true) |
37 | 37 | if full_name ~= t_name then --Don't repeat |
|
50 | 50 | function get_art_name(ar) --'Native Name "Translated Name", Item' |
51 | 51 | local full_name = transName(ar.name, false) |
52 | 52 | if full_name == '' then --Improve searchability |
53 | | - full_name = 'Anonymous' |
| 53 | + full_name = 'Unnamed' |
54 | 54 | else --Add the translation |
55 | 55 | local t_name = transName(ar.name, true) |
56 | 56 | if full_name ~= t_name then --Don't repeat |
|
539 | 539 | local function insert_name_text(t, name) --HF or artifact name; Return true if both lines |
540 | 540 | local str = transName(name, false) |
541 | 541 | if str == '' then |
542 | | - table.insert(t, 'Anonymous') |
| 542 | + table.insert(t, 'Unnamed') |
543 | 543 | else --Both native and translation |
544 | 544 | table.insert(t, str) --Native |
545 | 545 | local t_name = transName(name, true) |
|
0 commit comments