veloren/assets/voxygen/i18n/cs/hud
Xiretza 06111612a3 voxygen: better translation of buff-death messages
This removes interpolation of translated strings, which is bad practice
because it simply doesn't work in many languages.

Translation files were updated using the following fish script. Some
resulting translations are truly terrible, but they always have been -
now it's just a lot more obvious.

```
function getbuff --argument langfile buff
    grep hud-outcome-$buff $langfile | cut -d= -f2- | string trim
end

set buffs burning bleeding curse crippled frozen mysterious

function replacebuffs --argument langfile entity
	set slug 'hud-chat-died_of_'$entity'_buff_msg'
    for buff in $buffs[-1..1]
        set bstr (getbuff $langfile $buff)
        or continue
        sed -i -e '/'$slug'/{p; s/[^=]* = \(.*\)/ .'$buff' = \1/; s/{ \$died_of_buff }/'(string replace / '\\/' $bstr)'/}' $langfile
    end
    sed -i -E 's/('$slug' \=).*/\1/' $langfile
end

function dofile --argument langfile
    sed -i -e s/buff_nonexistent/nonexistent_buff/ $langfile
    for entity in pvp npc nonexistent
        replacebuffs $langfile $entity
    end
    sed -i -e s/nonexistent_buff/buff_nonexistent/ $langfile
    sed -i -e /hud-outcome-/d $langfile
    sed -i -e '/#.*outcomes/d' $langfile
end

for langfile in assets/voxygen/i18n/*/hud/chat.ftl
    echo doing $langfile
    dofile $langfile
end
```
2023-08-29 17:09:48 +00:00
..
ability.ftl Update translation files 2023-08-28 17:37:37 +00:00
bag.ftl Typos fixed in Czech localisation 2023-07-05 18:44:24 +02:00
char_window.ftl Make i18n language identifiers comply with IETF BCP 47 2023-06-07 13:12:34 +00:00
chat.ftl voxygen: better translation of buff-death messages 2023-08-29 17:09:48 +00:00
crafting.ftl Make i18n language identifiers comply with IETF BCP 47 2023-06-07 13:12:34 +00:00
group.ftl Typos fixed in Czech localisation 2023-07-05 18:44:24 +02:00
map.ftl Make i18n language identifiers comply with IETF BCP 47 2023-06-07 13:12:34 +00:00
misc.ftl Make i18n language identifiers comply with IETF BCP 47 2023-06-07 13:12:34 +00:00
quest.ftl Czech translation - adding missing files 2023-07-09 12:59:58 +02:00
sct.ftl Make i18n language identifiers comply with IETF BCP 47 2023-06-07 13:12:34 +00:00
settings.ftl Update translation files 2023-08-28 17:37:37 +00:00
skills.ftl Update translation files 2023-08-28 17:37:37 +00:00
social.ftl Make i18n language identifiers comply with IETF BCP 47 2023-06-07 13:12:34 +00:00
subtitles.ftl Czech translation - adding missing files 2023-07-09 12:59:58 +02:00
trade.ftl Update translation files 2023-08-28 17:37:37 +00:00