changedInput schema / properties / locales / description
Previous value: -"Locale codes to scaffold empty files for (e.g., [\"sv\", \"ja\", \"pt-BR\"]). If omitted, auto-detects locales defined in config that are missing locale files."New value: +"Locale codes to scaffold empty files for (e.g., [\"sv\", \"ja\", \"pt-BR\"]). If omitted, auto-detects the locales the config declares but has no files for."
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "additionalProperties": false,
+ "properties": {
+ "created": {
+ "description": "Files that were created, or would be under dryRun.",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "file": {
+ "description": "Absolute path of the locale file.",
+ "type": "string"
+ },
+ "keys": {
+ "description": "Keys copied from the default locale, all with an empty-string value.",
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "layer": {
+ "description": "Layer the file belongs to.",
+ "type": "string"
+ },
+ "locale": {
+ "description": "Locale code the file is for.",
+ "type": "string"
+ },
+ "namespace": {
+ "description": "Namespace this file holds, for a namespaced layout such as Laravel. Absent for a flat layout.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "locale",
+ "layer",
+ "file",
+ "keys"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "dryRun": {
+ "description": "True when nothing was written because a preview was asked for.",
+ "type": "boolean"
+ },
+ "skipped": {
+ "description": "Files that already existed and were left alone.",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "file": {
+ "description": "Absolute path of the locale file.",
+ "type": "string"
+ },
+ "keys": {
+ "description": "Keys copied from the default locale, all with an empty-string value.",
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "layer": {
+ "description": "Layer the file belongs to.",
+ "type": "string"
+ },
+ "locale": {
+ "description": "Locale code the file is for.",
+ "type": "string"
+ },
+ "namespace": {
+ "description": "Namespace this file holds, for a namespaced layout such as Laravel. Absent for a flat layout.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "locale",
+ "layer",
+ "file",
+ "keys"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "created",
+ "skipped",
+ "dryRun"
+ ],
+ "type": "object"
+}