From b5ea2119d662b92c30c2b582417c5571a2ce7882 Mon Sep 17 00:00:00 2001 From: Jessica Chowdhury Date: Thu, 14 Aug 2025 17:38:38 +0100 Subject: [PATCH] chore: update localizeStatus option verbiage in docs --- docs/configuration/localization.mdx | 8 ++++---- docs/experimental/overview.mdx | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/configuration/localization.mdx b/docs/configuration/localization.mdx index a1d0bdfce6..8a01635958 100644 --- a/docs/configuration/localization.mdx +++ b/docs/configuration/localization.mdx @@ -143,16 +143,16 @@ import { buildConfig } from 'payload' export default buildConfig({ // ... experimental: { - statusLocalization: true, // enable experimental status localization + localizeStatus: true, }, }) ``` The following experimental options are available related to localization: -| Option | Description | -| ------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| **`statusLocalization`** | **Boolean.** When `true`, shows document status per locale in the admin panel instead of always showing the latest overall status. Opt-in for backwards compatibility. Defaults to `false`. | +| Option | Description | +| -------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **`localizeStatus`** | **Boolean.** When `true`, shows document status per locale in the admin panel instead of always showing the latest overall status. Opt-in for backwards compatibility. Defaults to `false`. | ## Field Localization diff --git a/docs/experimental/overview.mdx b/docs/experimental/overview.mdx index f0410fe837..ec423ce335 100644 --- a/docs/experimental/overview.mdx +++ b/docs/experimental/overview.mdx @@ -27,9 +27,9 @@ const config = buildConfig({ The following options are available: -| Option | Description | -| ------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| **`statusLocalization`** | **Boolean.** When `true`, shows document status per locale in the admin panel instead of always showing the latest overall status. Opt-in for backwards compatibility. Defaults to `false`. | +| Option | Description | +| -------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **`localizeStatus`** | **Boolean.** When `true`, shows document status per locale in the admin panel instead of always showing the latest overall status. Opt-in for backwards compatibility. Defaults to `false`. | This list may change without notice.