feat(translator-tools): add locale review and glossary workflow

This commit is contained in:
2026-09-02 21:39:02 +02:00
parent 5e962ff0f3
commit 655797c4fe
32 changed files with 2084 additions and 2192 deletions
+13
View File
@@ -0,0 +1,13 @@
import { describe, expect, it } from "vitest";
import { manifest } from "../src/toolbox/manifest";
import { APP_VERSION } from "../src/version";
describe("translator-tools smoke", () => {
it("exposes a coherent toolbox manifest", () => {
expect(manifest.id).toBe("de.add-ideas.translator-tools");
expect(manifest.name).toBe("Translator Tools");
expect(manifest.version).toBe(APP_VERSION);
expect(manifest.categories).toContain("text");
expect(manifest.entry).toBe("./");
});
});