Show "image looks like a screenshot" according to the spec.
This commit is contained in:
N-Pex 2025-09-29 16:47:29 +02:00
parent f54c125389
commit 47b4260761
3 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
{
"name": "keanuapp-weblite",
"version": "0.1.77",
"version": "0.1.78",
"private": true,
"scripts": {
"dev": "vite",

View file

@ -1,6 +1,6 @@
{
"name": "keanuapp-weblite",
"version": "0.1.76",
"version": "0.1.77",
"private": true,
"scripts": {
"dev": "vite",

View file

@ -6,7 +6,7 @@ export const interventionText = (t: any, f: ProofHintFlags): string | undefined
if (f.generator === "camera") {
res += "<b>" + t("cc.captured_with_camera") + "</b> ";
} else if (f.generator === "screenshot") {
res += "<b>" + (f.generatorSource === "c2pa" ? t("cc.screenshot") : t("cc.screenshot_probably")) + "</b> ";
res += "<b>" + (f.generatorSource === "c2pa" ? t("cc.screenshot_probably") : t("cc.screenshot_probably")) + "</b> ";
} else if (f.generator === "ai") {
res += "<b>" + t("cc.generated_with_ai") + "</b> ";
}