started working on app ui page
Some checks failed
PHPUnit / test (push) Has been cancelled

This commit is contained in:
2026-07-18 12:58:06 +02:00
parent 14f90bd1fd
commit 154535edc2
7 changed files with 3330 additions and 64 deletions

View File

@ -304,6 +304,9 @@ case 'PUT':
json_error('NOT_FOUND', 'Translation entity not found', 404);
}
qdb_put_translation($pdo, $type, $id, $lang, $text);
if ($type === 'app_string' && $lang === QDB_SOURCE_LANGUAGE) {
qdb_update_app_string_german_default((string)$id, (string)$text);
}
qdb_save($tmpDb, $lockFp);
json_success([]);
} catch (Throwable $e) {