Skip to content

Commit 80d160a

Browse files
committed
bug-fix: french language file.
1 parent 361afeb commit 80d160a

7 files changed

+46
-28
lines changed

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ by kuertee. Contributors: Erixon, Forleyor, Mycu, Runekn, AlexandreTK, IALuir, s
55

66
Updates
77
=======
8+
v7.1.20, 15 Feb 2025:
9+
-Bug-fix: French language file was breaking French localisation within the game.
10+
811
v7.1.19, 25 Jan 2025:
912
-New feature: UI callback, updatePlotSize_on_before_extend, in Map Menu for sticeIO's mod.
1013

content.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
name="kuertee UI Extensions and HUD"
44
author="kuertee"
55
version="710"
6-
date="2025-01-12"
6+
date="2025-02-15"
77
save="false"
88
enabled="1">
99

kuertee-ui-extensions-readme.txt

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ by kuertee. Contributors: Erixon, Forleyor, Mycu, Runekn, AlexandreTK, IALuir, s
55

66
Updates
77
=======
8+
v7.1.20, 15 Feb 2025:
9+
-Bug-fix: French language file was breaking French localisation within the game.
10+
811
v7.1.19, 25 Jan 2025:
912
-New feature: UI callback, updatePlotSize_on_before_extend, in Map Menu for sticeIO's mod.
1013

subst_01.cat

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
t/0001-l033.xml 167 1737851931 d0176eda58d5e15402d2bfdcefc51c13
2-
t/0001.xml 167 1737851931 abd701dea2326d8bf710b3c49ab4dbea
1+
t/0001-l033.xml 195 1739600825 bc1257bf309d74fd456ceded18058184
2+
t/0001.xml 195 1739600850 4f6a3e606b4ed6bd9c2c8197c6184a26
33
ui/addons/ego_chatwindow/chatwindow.xpl 36934 1737851931 b2f0cf0d93a58503f14622cb62e9ac88
44
ui/addons/ego_detailmonitor/menu_docked.xpl 81775 1737851931 471d8414e3a0231e57f72d8eb38867be
55
ui/addons/ego_detailmonitor/menu_encyclopedia.xpl 180563 1737851931 45e2fdc1fcd9daaacb6d5a022adbd87b
6-
ui/addons/ego_detailmonitor/menu_map.xpl 1413868 1737851948 07e117e79cbbced37ed0448c6e2a55cd
6+
ui/addons/ego_detailmonitor/menu_map.xpl 1413872 1737852468 3d920b3d34bc8934abd18f5a0386ed58
77
ui/addons/ego_detailmonitor/menu_playerinfo.xpl 328173 1737851931 7cdbf1822d98ce73f3bf715253f3a467
88
ui/addons/ego_detailmonitor/menu_ship_configuration.xpl 464520 1737851931 ef61d0111ca13101ad44432bc229f186
99
ui/addons/ego_detailmonitor/menu_station_configuration.xpl 262944 1737851931 9cfcd480e3aee8e4e8439b5f44fc170e

subst_01.dat

+20-12
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
11
<?xml version="1.0" encoding="UTF-8" ?>
2-
<language>
3-
<page id="101475" voice="no">
4-
<t id="100">Actions spéc.</t>
5-
<t id="101">Ordres spéc.</t>
6-
</page>
7-
</language><?xml version="1.0" encoding="UTF-8" ?>
8-
<language>
9-
<page id="101475" voice="no">
10-
<t id="100">Custom Actions</t>
11-
<t id="101">Custom Orders</t>
12-
</page>
13-
</language>-- ffi setup
2+
<diff>
3+
<add sel="/language">
4+
<page id="101475" voice="no">
5+
<t id="100">Actions spéc.</t>
6+
<t id="101">Ordres spéc.</t>
7+
</page>
8+
</add>
9+
</diff>
10+
<?xml version="1.0" encoding="UTF-8" ?>
11+
<diff>
12+
<add sel="/language">
13+
<page id="101475" voice="no">
14+
<t id="100">Custom Actions</t>
15+
<t id="101">Custom Orders</t>
16+
</page>
17+
</add>
18+
</diff>
19+
-- ffi setup
1420
local ffi = require("ffi")
1521
local C = ffi.C
1622
ffi.cdef[[
@@ -11722,6 +11728,7 @@ function menu.updatePlotSize(dimension, axis, valchange)
1172211728
DebugError("menu.updatePlotSize: dimension passed in: " .. tostring(dimension) .. " indicates neither positive nor negative.")
1172311729
return
1172411730
end
11731+
1172511732
-- kuertee start: callback
1172611733
local canExtend = true
1172711734
if callbacks["updatePlotSize_on_before_extend"] then
@@ -11735,6 +11742,7 @@ function menu.updatePlotSize(dimension, axis, valchange)
1173511742
end
1173611743
if not canExtend then return end
1173711744
-- kuertee end: callback
11745+
1173811746
if C.ExtendBuildPlot(menu.plotData.component, posSizeChange, negSizeChange, true) then
1173911747
--print("menu.updatePlotSize: successfully extended build plot of station: " .. ffi.string(C.GetComponentName(menu.plotData.component)) .. ". posSizeChange.x: " .. tostring(posSizeChange.x) .. ", posSizeChange.y: " .. tostring(posSizeChange.y) .. ", posSizeChange.z: " .. tostring(posSizeChange.z) .. ", negSizeChange.x: " .. tostring(negSizeChange.x) .. ", negSizeChange.y: " .. tostring(negSizeChange.y) .. ", negSizeChange.z: " .. tostring(negSizeChange.z) .. ".")
1174011748
C.UpdateMapBuildPlot(menu.holomap)

t/0001-l033.xml

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8" ?>
2-
<language>
3-
<page id="101475" voice="no">
4-
<t id="100">Actions spéc.</t>
5-
<t id="101">Ordres spéc.</t>
6-
</page>
7-
</language>
2+
<diff>
3+
<add sel="/language">
4+
<page id="101475" voice="no">
5+
<t id="100">Actions spéc.</t>
6+
<t id="101">Ordres spéc.</t>
7+
</page>
8+
</add>
9+
</diff>

t/0001.xml

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8" ?>
2-
<language>
3-
<page id="101475" voice="no">
4-
<t id="100">Custom Actions</t>
5-
<t id="101">Custom Orders</t>
6-
</page>
7-
</language>
2+
<diff>
3+
<add sel="/language">
4+
<page id="101475" voice="no">
5+
<t id="100">Custom Actions</t>
6+
<t id="101">Custom Orders</t>
7+
</page>
8+
</add>
9+
</diff>

0 commit comments

Comments
 (0)