initial commit

Signed-off-by: Peter Siegmund <mars3142@noreply.mars3142.dev>
This commit is contained in:
2025-10-31 23:37:30 +01:00
commit bf6b52fd94
9654 changed files with 4035664 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
# Prepare language data files update artifact
# Generated source files
New-Item -Path "distlang\include\wx\private" -ItemType Directory
New-Item -Path "distlang\interface\wx" -ItemType Directory
New-Item -Path "distlang\src\common" -ItemType Directory
Copy-Item -Path "include\wx\language.h" -Destination "distlang\include\wx\language.h" -Force
Copy-Item -Path "include\wx\private\lang_*.h" -Destination "distlang\include\wx\private" -Force
Copy-Item -Path "interface\wx\language.h" -Destination "distlang\interface\wx\language.h" -Force
Copy-Item -Path "src\common\languageinfo.cpp" -Destination "distlang\src\common\languageinfo.cpp" -Force
# Raw data tables
New-Item -Path "distlang\misc\languages" -ItemType Directory
Copy-Item -Path "misc\languages\*.txt" -Destination "distlang\misc\languages" -recurse -Force