veloren/assets/voxygen
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
..
audio used second sfx for teleport event 2023-08-19 11:44:58 +02:00
background login background 2023-06-27 21:37:19 +02:00
element digging shovel 2023-08-03 19:32:09 +02:00
font font: add license of existing font file 2023-01-14 01:34:19 +01:00
i18n voxygen: better translation of buff-death messages 2023-08-29 17:09:48 +00:00
lod Added dead trees to LoD 2022-12-31 15:32:56 +00:00
shaders new model for portal & use cultist particles 2023-08-27 19:40:49 +02:00
texture Improved cloud visuals and performance 2022-12-15 23:56:28 +00:00
voxel model update 2 2023-08-27 19:40:49 +02:00
item_image_manifest.ron Reliable leather pack 2023-08-09 20:44:51 +00:00
logo.ico Lossless compression of UI assets 2021-04-11 16:35:25 +02:00
net.veloren.veloren.desktop Add German translation to .desktop and metainfo 2022-04-05 08:11:09 +00:00
net.veloren.veloren.metainfo.xml Add German translation to .desktop and metainfo 2022-04-05 08:11:09 +00:00
net.veloren.veloren.png Lossless compression of UI assets 2021-04-11 16:35:25 +02:00