Skip to content

Commit d00f55e

Browse files
fix(i18n): add missing comma in lang JSON (broke artisan boot / Docker build)
A merge concatenated the inspection-versioning keys with later additions without a comma after "Version history", making lang/en.json and pl.json invalid JSON — which aborts package:discover and the production image build (FileLoader: invalid JSON structure).
1 parent f69c056 commit d00f55e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

backend/lang/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3029,7 +3029,7 @@
30293029
"Save as new version": "Save as new version",
30303030
"This is a draft — editable in place and not yet used for inspections.": "This is a draft — editable in place and not yet used for inspections.",
30313031
"This version is published and immutable. Saving creates a new draft version — the published version stays unchanged so past inspections remain reproducible.": "This version is published and immutable. Saving creates a new draft version — the published version stays unchanged so past inspections remain reproducible.",
3032-
"Version history": "Version history"
3032+
"Version history": "Version history",
30333033
"CLOSED": "CLOSED",
30343034
"+ New Account": "+ New Account",
30353035
"+ New Area": "+ New Area",

backend/lang/pl.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3029,7 +3029,7 @@
30293029
"Save as new version": "Zapisz jako nową wersję",
30303030
"This is a draft — editable in place and not yet used for inspections.": "To szkic — edytowalny w miejscu i jeszcze nieużywany do inspekcji.",
30313031
"This version is published and immutable. Saving creates a new draft version — the published version stays unchanged so past inspections remain reproducible.": "Ta wersja jest opublikowana i niezmienna. Zapis utworzy nową wersję-szkic — opublikowana wersja pozostaje bez zmian, aby przeszłe inspekcje były odtwarzalne.",
3032-
"Version history": "Historia wersji"
3032+
"Version history": "Historia wersji",
30333033
"CLOSED": "ZAMKNIĘTE",
30343034
"+ New Account": "+ Nowe konto",
30353035
"+ New Area": "+ Nowy obszar",

0 commit comments

Comments
 (0)