Release 0.0.7

This commit is contained in:
2026-04-20 21:13:27 +00:00
parent 456c656750
commit e998784ac6
6 changed files with 92 additions and 39 deletions

View File

@@ -24,6 +24,10 @@
"Progress": {
"Initialize": "Initializing analysis",
"Analyzing": "Analyzing",
"ScanFiles": "Scanning files",
"ReadReferences": "Reading references",
"ClassifyFindings": "Classifying findings",
"Completed": "Analysis complete",
"Current": "Current: {source}",
"Files": "Files: {count}",
"Sources": "Sources: {count}",
@@ -87,6 +91,21 @@
"warning": "Warning",
"info": "Info"
},
"FindingReason": {
"BrokenWildcard": "Wildcard reference {locator} did not match any files in the scanned roots.",
"BrokenReference": "Referenced file {locator} does not exist in the scanned roots.",
"UnanchoredPackageTarget": "{sourceOwner} references package-owned storage {locator}, but the asset is not visibly referenced by its owning package.",
"RiskyPublicTarget": "{sourceOwner} references release-public storage {locator}.",
"OrphanFile": "No incoming media reference was found for {locator}."
},
"FindingRecommendation": {
"CheckWildcard": "Check whether the wildcard pattern is still correct and whether matching files still exist.",
"CheckMissingFile": "Check whether the file was moved, deleted, or should be copied into a stable location.",
"MoveToStableStorage": "Review whether the file was manually placed into the package folder. If the package does not use it itself, prefer moving it into user-controlled storage.",
"CopyToStableStorage": "Prefer copying the asset into world or user-controlled storage.",
"ReviewOrMoveOrphan": "Review whether the file is safe to remove or should be moved into a stable storage location.",
"KeepAsReserve": "Review whether the file is intentionally kept as reserve content."
},
"Owner": {
"Unknown": "unknown"
},