Added german translation and bugfixes

This commit is contained in:
2026-02-06 21:00:36 +01:00
parent 6ee7d5f892
commit 1a7b0a1667
10 changed files with 82 additions and 84 deletions

View File

@@ -242,9 +242,9 @@ scriptFunction(funcWait){
scriptFunction(funcGetVer){
int *arr = malloc(3 * sizeof(int));
arr[0] = LP_VER_MJ;
arr[1] = LP_VER_MN;
arr[2] = LP_VER_BF;
arr[0] = APL_VER_MJ;
arr[1] = APL_VER_MN;
arr[2] = APL_VER_BF;
Vector_t res = vecFromArray(arr, 3, sizeof(int));
return newVar(IntArrayType, 1, .vectorType = res);
}