Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
9ef5c9a
fix: adds enableStatusLocalization option to reflects current locale …
jessrynkar Jul 17, 2025
6ac13f4
fix: add enableStatusLocalization support for postgres
jessrynkar Jul 17, 2025
9c3316e
chore: make localeStatus an optional property
jessrynkar Jul 17, 2025
32bfb7b
chore: make localeStatus an optional property again
jessrynkar Jul 17, 2025
b5185bb
chore: feedback changes
jessrynkar Aug 5, 2025
403bf5b
chore: merge conflicts
jessrynkar Aug 5, 2025
035ff38
fix: update status component
jessrynkar Aug 8, 2025
d885f07
Merge branch 'main' into fix/localized-status-UI
jessrynkar Aug 11, 2025
35471fc
fix: apply locale specific status to draft if available
jessrynkar Aug 12, 2025
75f9d99
chore: revert error thrown when adding locale status fields
jessrynkar Aug 12, 2025
1b71d69
chore: remove log and fix tests
jessrynkar Aug 13, 2025
8a9caef
Merge branch 'main' into fix/localized-status-UI
jessrynkar Aug 13, 2025
b2becb8
chore: update localization.enableStatusLocalization to experimental.l…
jessrynkar Aug 14, 2025
51f1c99
Merge branch 'main' into fix/localized-status-UI
jessrynkar Aug 14, 2025
b5ea211
chore: update localizeStatus option verbiage in docs
jessrynkar Aug 14, 2025
8996a31
Merge branch 'main' into fix/localized-status-UI
jessrynkar Aug 15, 2025
7425b04
feat: adds experimental.allLocaleStatus flag to add new group status …
jessrynkar Aug 19, 2025
54f444f
chore: updates docs to add experimental.allLocaleStatus
jessrynkar Aug 19, 2025
961355e
Merge branch 'main' into fix/localized-status-UI
jessrynkar Aug 19, 2025
cef081c
chore: separates experimental from localization in createClientConfig
jessrynkar Aug 19, 2025
903d235
chore: update createClientConfig to remove unnecessary if statement
jessrynkar Aug 19, 2025
d8eabd1
Merge branch 'fix/localized-status-UI' into feat/all-locale-status
jessrynkar Aug 19, 2025
eb8a925
chore: fix typo in createClientConfig
jessrynkar Aug 19, 2025
5ef49cf
add default experimental object
JarrodMFlesch Aug 19, 2025
29f4b8e
Merge branch 'fix/localized-status-UI' into feat/all-locale-status
jessrynkar Aug 27, 2025
ee8933f
chore: merge conflicts
jessrynkar Sep 5, 2025
04d5d43
Merge branch 'main' into feat/all-locale-status
jessrynkar Sep 18, 2025
fcfcd56
chore: improve localeStatus query performance and rename field
jessrynkar Sep 18, 2025
1e8df7a
chore: feedback updates
jessrynkar Sep 19, 2025
7595b05
chore: merge conflicts
jessrynkar Sep 19, 2025
33f6ebb
fix: only add the allLocaleStatus field to versioned collections
JarrodMFlesch Sep 23, 2025
818d26f
clean up saveVersion looping
JarrodMFlesch Sep 23, 2025
8ee892a
rm duplicative type
JarrodMFlesch Sep 23, 2025
cf9a15e
assign to shared localStatus
JarrodMFlesch Sep 23, 2025
9872d24
simplify react code
JarrodMFlesch Sep 23, 2025
1405877
fix var naming
JarrodMFlesch Sep 24, 2025
0348d5b
removes unnecessary optional chaining
JarrodMFlesch Sep 24, 2025
1a942e5
moves version read logic to server component, out of hooks
JarrodMFlesch Sep 24, 2025
3353a8c
localize label
JarrodMFlesch Sep 24, 2025
efd75cb
Merge branch 'main' into feat/all-locale-status
JarrodMFlesch Sep 24, 2025
374d3b5
update translations
JarrodMFlesch Sep 24, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions docs/configuration/localization.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,10 @@ export default buildConfig({

The following experimental options are available related to localization:

| 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`. |
| 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`. |
| **`allLocaleStatus`** | **Boolean.** When `true`, adds an `_allLocaleStatus` field that stores the status of each locale. In list views, this field is rendered as a custom cell with colored status pills. Defaults to `false`. |

## Field Localization

Expand Down
7 changes: 4 additions & 3 deletions docs/experimental/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@ const config = buildConfig({

The following options are available:

| 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`. |
| 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`. |
| **`allLocaleStatus`** | **Boolean.** When `true`, adds an `_allLocaleStatus` field that stores the status of each locale. In list views, this field is rendered as a custom cell with colored status pills. Defaults to `false`. |

This list may change without notice.

Expand Down
5 changes: 5 additions & 0 deletions packages/payload/src/collections/config/sanitize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import type {
import { authCollectionEndpoints } from '../../auth/endpoints/index.js'
import { getBaseAuthFields } from '../../auth/getAuthFields.js'
import { TimestampsRequired } from '../../errors/TimestampsRequired.js'
import { baseAllLocaleStatusField } from '../../fields/baseFields/baseAllLocaleStatusField.js'
import { sanitizeFields } from '../../fields/config/sanitize.js'
import { fieldAffectsData } from '../../fields/config/types.js'
import { mergeBaseFields } from '../../fields/mergeBaseFields.js'
Expand Down Expand Up @@ -256,6 +257,10 @@ export const sanitizeCollection = async (
sanitized.fields = mergeBaseFields(sanitized.fields, getBaseAuthFields(sanitized.auth))
}

if (config.localization && config.experimental?.allLocaleStatus && collection.versions) {
sanitized.fields = mergeBaseFields(sanitized.fields, baseAllLocaleStatusField)
}

if (collection?.admin?.pagination?.limits?.length) {
sanitized.admin!.pagination!.limits = collection.admin.pagination.limits
}
Expand Down
4 changes: 4 additions & 0 deletions packages/payload/src/config/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,10 @@ export const createClientConfig = ({
if (config.experimental?.localizeStatus) {
clientConfig.experimental.localizeStatus = config.experimental.localizeStatus
}

if (config.experimental?.allLocaleStatus) {
clientConfig.experimental.allLocaleStatus = config.experimental.allLocaleStatus
}
}

break
Expand Down
9 changes: 9 additions & 0 deletions packages/payload/src/config/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -731,6 +731,15 @@ export type ImportMapGenerators = Array<
* These may be unstable and may change or be removed in future releases.
*/
export type ExperimentalConfig = {
/**
* Adds `_localeStatus` group field which maintains the statuses of all locales.
* @default false
*/
allLocaleStatus?: boolean
/**
* Returns status of the current locale instead of overall document.
* @default false
*/
localizeStatus?: boolean
}

Expand Down
23 changes: 23 additions & 0 deletions packages/payload/src/fields/baseFields/baseAllLocaleStatusField.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import type { Field } from '../config/types.js'

/**
* This field is never used directly.
* The field type is `text` just so the column appears.
*
* It adds a custom cell component to display the status for all locales in the admin list view.
* The component queries the versions table for the `localeStatus` field on the latest version.
*/
export const baseAllLocaleStatusField: Field[] = [
{
name: '_localeStatusCell',
type: 'text',
admin: {
components: {
Cell: '@payloadcms/ui/rsc#AllLocaleStatusCell',
},
disableListFilter: true,
hidden: true,
},
label: ({ t }) => t('fields:allLocaleStatus'),
},
]
2 changes: 1 addition & 1 deletion packages/payload/src/versions/buildCollectionFields.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export const buildVersionCollectionFields = <T extends boolean = false>(
}),
})

if (config.experimental?.localizeStatus) {
if (config.experimental.localizeStatus || config.experimental.allLocaleStatus) {
const localeStatusFields = buildLocaleStatusField(config)

fields.push({
Expand Down
2 changes: 1 addition & 1 deletion packages/payload/src/versions/buildGlobalFields.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const buildVersionGlobalFields = <T extends boolean = false>(
}),
})

if (config.experimental.localizeStatus) {
if (config.experimental.localizeStatus || config.experimental.allLocaleStatus) {
const localeStatusFields = buildLocaleStatusField(config)

fields.push({
Expand Down
26 changes: 10 additions & 16 deletions packages/payload/src/versions/saveVersion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,41 +130,35 @@ export const saveVersion = async ({
}

if (createNewVersion) {
let localeStatus = {}
let localeStatus: Record<string, 'draft' | 'published'> = {}
const localizationEnabled =
payload.config.localization && payload.config.localization.locales.length > 0

if (
localizationEnabled &&
payload.config.localization !== false &&
payload.config.experimental?.localizeStatus
(payload.config.experimental?.localizeStatus ||
payload.config.experimental?.allLocaleStatus)
) {
const allLocales = (
(payload.config.localization && payload.config.localization?.locales) ||
[]
).map((locale) => (typeof locale === 'string' ? locale : locale.code))

// If `publish all`, set all locales to published
if (versionData._status === 'published' && !publishSpecificLocale) {
localeStatus = Object.fromEntries(allLocales.map((code) => [code, 'published']))
for (const code of payload.config.localization.localeCodes) {
localeStatus[code] = 'published'
}
} else if (publishSpecificLocale || (locale && versionData._status === 'draft')) {
const status: 'draft' | 'published' = publishSpecificLocale ? 'published' : 'draft'
const incomingLocale = String(publishSpecificLocale || locale)
const incomingLocale = (publishSpecificLocale || locale) as string
const existing = latestVersion?.localeStatus

// If no locale statuses are set, set it and set all others to draft
if (!existing) {
localeStatus = {
...Object.fromEntries(
allLocales.filter((code) => code !== incomingLocale).map((code) => [code, 'draft']),
),
[incomingLocale]: status,
for (const code of payload.config.localization.localeCodes) {
localeStatus[code] = code === incomingLocale ? status : 'draft'
}
} else {
// If locales already exist, update the status for the incoming locale
const { [incomingLocale]: _, ...rest } = existing
localeStatus = {
...rest,
...existing,
[incomingLocale]: status,
}
}
Expand Down
1 change: 1 addition & 0 deletions packages/translations/src/clientKeys.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ export const clientTranslationKeys = createClientTranslationKeys([
'fields:addNewLabel',
'fields:addRelationship',
'fields:addUpload',
'fields:allLocaleStatus',
'fields:block',
'fields:blocks',
'fields:blockType',
Expand Down
1 change: 1 addition & 0 deletions packages/translations/src/languages/ar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ export const arTranslations: DefaultTranslationsObject = {
addNewLabel: 'أضف {{label}} جديد',
addRelationship: 'أضف علاقة',
addUpload: 'أضف تحميل',
allLocaleStatus: 'الحالة - جميع الأماكن',
block: 'وحدة محتوى',
blocks: 'وحدات المحتوى',
blockType: 'نوع وحدة المحتوى',
Expand Down
1 change: 1 addition & 0 deletions packages/translations/src/languages/az.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ export const azTranslations: DefaultTranslationsObject = {
addNewLabel: 'Yeni {{label}} əlavə et',
addRelationship: 'Relationship əlavə et',
addUpload: 'Yükləmə əlavə et',
allLocaleStatus: 'Bütün Dil Variantları - Status',
block: 'Blok',
blocks: 'bloklar',
blockType: 'Blok Növü',
Expand Down
1 change: 1 addition & 0 deletions packages/translations/src/languages/bg.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ export const bgTranslations: DefaultTranslationsObject = {
addNewLabel: 'Добави нов {{label}}',
addRelationship: 'Добави отношение',
addUpload: 'Качи',
allLocaleStatus: 'Статус - всички езици',
block: 'Блок',
blocks: 'блокове',
blockType: 'Тип блок',
Expand Down
1 change: 1 addition & 0 deletions packages/translations/src/languages/bnBd.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ export const bnBdTranslations: DefaultTranslationsObject = {
addNewLabel: 'নতুন {{label}} যোগ করুন',
addRelationship: 'সম্পর্ক যোগ করুন',
addUpload: 'আপলোড যোগ করুন',
allLocaleStatus: 'স্ট্যাটাস - সমস্ত লোকাল',
block: 'ব্লক',
blocks: 'ব্লকগুলি',
blockType: 'ব্লক প্রকার',
Expand Down
1 change: 1 addition & 0 deletions packages/translations/src/languages/bnIn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ export const bnInTranslations: DefaultTranslationsObject = {
addNewLabel: 'নতুন {{label}} যোগ করুন',
addRelationship: 'সম্পর্ক যোগ করুন',
addUpload: 'আপলোড যোগ করুন',
allLocaleStatus: 'স্থিতি - সমস্ত লোকেলস্',
block: 'ব্লক',
blocks: 'ব্লকগুলি',
blockType: 'ব্লক প্রকার',
Expand Down
1 change: 1 addition & 0 deletions packages/translations/src/languages/ca.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ export const caTranslations: DefaultTranslationsObject = {
addNewLabel: 'Afegeix nou {{label}}',
addRelationship: 'Afegeix relació',
addUpload: 'Afegeix pujada',
allLocaleStatus: 'Estat - Totes les configuracions regionals',
block: 'Bloc',
blocks: 'blocs',
blockType: 'Tipus de bloc',
Expand Down
1 change: 1 addition & 0 deletions packages/translations/src/languages/cs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ export const csTranslations: DefaultTranslationsObject = {
addNewLabel: 'Přidat nový {{label}}',
addRelationship: 'Přidat vztah',
addUpload: 'Přidat nahrávání',
allLocaleStatus: 'Status - Všechny lokality',
block: 'Blok',
blocks: 'bloky',
blockType: 'Typ bloku',
Expand Down
1 change: 1 addition & 0 deletions packages/translations/src/languages/da.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ export const daTranslations: DefaultTranslationsObject = {
addNewLabel: 'Tilføj ny {{label}}',
addRelationship: 'Tilføj forhold',
addUpload: 'Tilføj upload',
allLocaleStatus: 'Status - Alle lokaliteter',
block: 'Blok',
blocks: 'blokke',
blockType: 'Blok type',
Expand Down
1 change: 1 addition & 0 deletions packages/translations/src/languages/de.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ export const deTranslations: DefaultTranslationsObject = {
addNewLabel: '{{label}} erstellen',
addRelationship: 'Verknüpfung hinzufügen',
addUpload: 'Neue Datei hochladen',
allLocaleStatus: 'Status - Alle Gebietsschemata',
block: 'Block',
blocks: 'Blöcke',
blockType: 'Block-Typ',
Expand Down
3 changes: 1 addition & 2 deletions packages/translations/src/languages/en.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import { title } from 'process'

import type { Language } from '../types.js'

export const enTranslations = {
Expand Down Expand Up @@ -145,6 +143,7 @@ export const enTranslations = {
addNewLabel: 'Add new {{label}}',
addRelationship: 'Add Relationship',
addUpload: 'Add Upload',
allLocaleStatus: 'Status - All Locales',
block: 'Block',
blocks: 'blocks',
blockType: 'Block Type',
Expand Down
1 change: 1 addition & 0 deletions packages/translations/src/languages/es.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ export const esTranslations: DefaultTranslationsObject = {
addNewLabel: 'Añadir {{label}}',
addRelationship: 'Añadir Relación',
addUpload: 'Añadir documento',
allLocaleStatus: 'Estado - Todos los Idiomas',
block: 'Bloque',
blocks: 'bloques',
blockType: 'Tipo de bloque',
Expand Down
1 change: 1 addition & 0 deletions packages/translations/src/languages/et.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ export const etTranslations: DefaultTranslationsObject = {
addNewLabel: 'Lisa uus {{label}}',
addRelationship: 'Lisa seos',
addUpload: 'Lisa üleslaadimine',
allLocaleStatus: 'Olekõik Lokalid - Staatus',
block: 'Plokk',
blocks: 'plokid',
blockType: 'Ploki tüüp',
Expand Down
1 change: 1 addition & 0 deletions packages/translations/src/languages/fa.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ export const faTranslations: DefaultTranslationsObject = {
addNewLabel: 'افزودن {{label}} تازه',
addRelationship: 'افزودن پیوستگی',
addUpload: 'افزودن بارگذار',
allLocaleStatus: 'وضعیت - همه مکان‌ها',
block: 'بلوک',
blocks: 'بلوک‌ها',
blockType: 'نوع بلوک',
Expand Down
1 change: 1 addition & 0 deletions packages/translations/src/languages/fr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ export const frTranslations: DefaultTranslationsObject = {
addNewLabel: 'Ajouter nouveau ou nouvelle {{label}}',
addRelationship: 'Ajouter une relation',
addUpload: 'Ajouter le téléchargement',
allLocaleStatus: 'Statut - Toutes les locales',
block: 'Bloc',
blocks: 'blocs',
blockType: 'Type de bloc',
Expand Down
1 change: 1 addition & 0 deletions packages/translations/src/languages/he.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ export const heTranslations: DefaultTranslationsObject = {
addNewLabel: 'הוסף {{label}} חדש',
addRelationship: 'הוסף יחס',
addUpload: 'הוסף העלאה',
allLocaleStatus: 'סטטוס - כל המקומות',
block: 'בלוק',
blocks: 'בלוקים',
blockType: 'סוג בלוק',
Expand Down
1 change: 1 addition & 0 deletions packages/translations/src/languages/hr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ export const hrTranslations: DefaultTranslationsObject = {
addNewLabel: 'Dodaj novi {{label}}',
addRelationship: 'Dodaj odnos',
addUpload: 'Dodaj učitavanje',
allLocaleStatus: 'Status - Svi lokaliteti',
block: 'Blokiranje',
blocks: 'blokiranja',
blockType: 'Vrsta blokiranja',
Expand Down
1 change: 1 addition & 0 deletions packages/translations/src/languages/hu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ export const huTranslations: DefaultTranslationsObject = {
addNewLabel: 'Új {{label}} hozzáadása',
addRelationship: 'Kapcsolat hozzáadása',
addUpload: 'Feltöltés hozzáadása',
allLocaleStatus: 'Állapot - Minden helyszín',
block: 'Blokk',
blocks: 'blokkok',
blockType: 'Blokk típusa',
Expand Down
1 change: 1 addition & 0 deletions packages/translations/src/languages/hy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ export const hyTranslations: DefaultTranslationsObject = {
addNewLabel: 'Ավելացնել նոր {{label}}',
addRelationship: 'Ավելացնել հարաբերություն',
addUpload: 'Վերբեռնել',
allLocaleStatus: 'Ստատուս - Բոլոր լոկալները',
block: 'բլոկ',
blocks: 'բլոկներ',
blockType: 'Բլոկի տեսակ',
Expand Down
1 change: 1 addition & 0 deletions packages/translations/src/languages/id.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ export const idTranslations: DefaultTranslationsObject = {
addNewLabel: 'Tambah {{label}} baru',
addRelationship: 'Tambah Hubungan',
addUpload: 'Tambah Unggahan',
allLocaleStatus: 'Status - Semua Lokal',
block: 'Blok',
blocks: 'blok',
blockType: 'Tipe Blok',
Expand Down
1 change: 1 addition & 0 deletions packages/translations/src/languages/is.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ export const isTranslations: DefaultTranslationsObject = {
addNewLabel: 'Bæta við nýju {{label}}',
addRelationship: 'Bæta við tengingu',
addUpload: 'Bæta við skráarupphleðslu',
allLocaleStatus: 'Staða - Allar staðfærslur',
block: 'blokk',
blocks: 'blokkir',
blockType: 'Blokkartegund',
Expand Down
1 change: 1 addition & 0 deletions packages/translations/src/languages/it.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ export const itTranslations: DefaultTranslationsObject = {
addNewLabel: 'Aggiungi nuovo {{label}}',
addRelationship: 'Aggiungi Relazione',
addUpload: 'aggiungi Carica',
allLocaleStatus: 'Stato - Tutti i luoghi',
block: 'Blocco',
blocks: 'blocchi',
blockType: 'Tipo di Blocco',
Expand Down
1 change: 1 addition & 0 deletions packages/translations/src/languages/ja.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ export const jaTranslations: DefaultTranslationsObject = {
addNewLabel: '{{label}} を新規追加',
addRelationship: 'リレーションシップを追加',
addUpload: 'アップロードを追加',
allLocaleStatus: 'ステータス - すべてのロケール',
block: 'ブロック',
blocks: 'ブロック',
blockType: 'ブロックタイプ',
Expand Down
1 change: 1 addition & 0 deletions packages/translations/src/languages/ko.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ export const koTranslations: DefaultTranslationsObject = {
addNewLabel: '새로운 {{label}} 추가',
addRelationship: '관계 추가',
addUpload: '업로드 추가',
allLocaleStatus: '상태 - 모든 로케일',
block: '블록',
blocks: '블록',
blockType: '블록 유형',
Expand Down
1 change: 1 addition & 0 deletions packages/translations/src/languages/lt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ export const ltTranslations: DefaultTranslationsObject = {
addNewLabel: 'Pridėti naują {{label}}',
addRelationship: 'Pridėti santykį',
addUpload: 'Pridėti Įkelti',
allLocaleStatus: 'Statusas - Visos lokalės',
block: 'Blokas',
blocks: 'blokai',
blockType: 'Blokas Tipas',
Expand Down
1 change: 1 addition & 0 deletions packages/translations/src/languages/lv.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ export const lvTranslations: DefaultTranslationsObject = {
addNewLabel: 'Pievienot jaunu {{label}}',
addRelationship: 'Pievienot saistību',
addUpload: 'Pievienot augšupielādi',
allLocaleStatus: 'Statuss - Visas lokālās versijas',
block: 'Bloks',
blocks: 'bloki',
blockType: 'Bloka tips',
Expand Down
1 change: 1 addition & 0 deletions packages/translations/src/languages/my.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ export const myTranslations: DefaultTranslationsObject = {
addNewLabel: '{{label}} အားအသစ် ထည့်သွင်းမည်။',
addRelationship: 'Relationship အသစ်ထည့်သွင်းမည်။',
addUpload: 'Upload ထည့်ပါ။',
allLocaleStatus: 'Status - Semua Locale',
block: 'ဘလောက်',
blocks: 'ဘလောက်များ',
blockType: 'ဘလောက် အမျိုးအစား',
Expand Down
1 change: 1 addition & 0 deletions packages/translations/src/languages/nb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ export const nbTranslations: DefaultTranslationsObject = {
addNewLabel: 'Legg til ny {{label}}',
addRelationship: 'Legg til relasjon',
addUpload: 'Legg til opplasting',
allLocaleStatus: 'Status - Alle lokaliteter',
block: 'Blokk',
blocks: 'blokker',
blockType: 'Blokktype',
Expand Down
Loading