diff --git a/openmetadata-ui/src/main/resources/ui/src/assets/svg/no-conversations.svg b/openmetadata-ui/src/main/resources/ui/src/assets/svg/no-conversations.svg
new file mode 100644
index 00000000000..953b86e6efa
--- /dev/null
+++ b/openmetadata-ui/src/main/resources/ui/src/assets/svg/no-conversations.svg
@@ -0,0 +1,6 @@
+
diff --git a/openmetadata-ui/src/main/resources/ui/src/components/ActivityFeed/ActivityFeedTab/ActivityFeedTab.component.tsx b/openmetadata-ui/src/main/resources/ui/src/components/ActivityFeed/ActivityFeedTab/ActivityFeedTab.component.tsx
index 2b952b57607..b28b74c983d 100644
--- a/openmetadata-ui/src/main/resources/ui/src/components/ActivityFeed/ActivityFeedTab/ActivityFeedTab.component.tsx
+++ b/openmetadata-ui/src/main/resources/ui/src/components/ActivityFeed/ActivityFeedTab/ActivityFeedTab.component.tsx
@@ -29,6 +29,7 @@ import { ReactComponent as MentionIcon } from '../../../assets/svg/ic-mention.sv
import { ReactComponent as TaskOpenIcon } from '../../../assets/svg/ic-open-task.svg';
import { ReactComponent as TaskFilterIcon } from '../../../assets/svg/ic-task-filter-button.svg';
import { ReactComponent as TaskIcon } from '../../../assets/svg/ic-task-new.svg';
+import { ReactComponent as NoConversationsIcon } from '../../../assets/svg/no-conversations.svg';
import { ReactComponent as MyTaskIcon } from '../../../assets/svg/task.svg';
import { ReactComponent as AllActivityIcon } from '../../../assets/svg/all-activity-v2.svg';
@@ -40,6 +41,7 @@ import {
} from '../../../constants/constants';
import { FEED_COUNT_INITIAL_DATA } from '../../../constants/entity.constants';
import { observerOptions } from '../../../constants/Mydata.constants';
+import { ERROR_PLACEHOLDER_TYPE } from '../../../enums/common.enum';
import { EntityTabs, EntityType } from '../../../enums/entity.enum';
import { FeedFilter } from '../../../enums/mydata.enum';
import {
@@ -60,6 +62,7 @@ import {
getEntityUserLink,
} from '../../../utils/EntityUtils';
import { showErrorToast } from '../../../utils/ToastUtils';
+import ErrorPlaceHolderNew from '../../common/ErrorWithPlaceholder/ErrorPlaceHolderNew';
import Loader from '../../common/Loader/Loader';
import { TaskTabNew } from '../../Entity/Task/TaskTab/TaskTabNew.component';
import '../../MyData/Widgets/FeedsWidget/feeds-widget.less';
@@ -282,9 +285,12 @@ export const ActivityFeedTab = ({
const handleFeedClick = useCallback(
(feed: Thread) => {
+ if (!feed && (isTaskActiveTab || isMentionTabSelected)) {
+ setIsFullWidth(false);
+ }
setActiveThread(feed);
},
- [setActiveThread]
+ [setActiveThread, isTaskActiveTab, isMentionTabSelected]
);
useEffect(() => {
@@ -430,6 +436,82 @@ export const ActivityFeedTab = ({
setIsFullWidth(isFullWidth);
};
+ const getRightPanelContent = (selectedThread: Thread) => {
+ if (
+ activeTab !== ActivityFeedTabs.TASKS &&
+ selectedThread?.type !== ThreadType.Task
+ ) {
+ return (
+
+
+
+ );
+ }
+
+ return (
+
+ {entityType === EntityType.TABLE ? (
+
+ ) : (
+
+ )}
+
+ );
+ };
+
+ const getRightPanelPlaceholder = useMemo(() => {
+ if (activeTab === ActivityFeedTabs.MENTIONS) {
+ return (
+
+ {t('message.no-mentions')}
+
+ );
+ }
+
+ return (
+
+
+ {t('message.no-conversations')}
+
+
+ {t('message.no-conversations-description')}
+
+
+ );
+ }, [activeTab, selectedThread]);
+
return (
{layoutType === ActivityFeedLayoutType.THREE_PANEL && (
@@ -554,56 +636,19 @@ export const ActivityFeedTab = ({
layoutType === ActivityFeedLayoutType.THREE_PANEL,
})}>
{loader}
- {selectedThread &&
- !loading &&
- (activeTab !== ActivityFeedTabs.TASKS &&
- selectedThread?.type !== ThreadType.Task ? (
-
-
-
+ {selectedThread && !loading
+ ? getRightPanelContent(selectedThread)
+ : !loading && (
+
+ }
+ type={ERROR_PLACEHOLDER_TYPE.CUSTOM}>
+
+ {getRightPanelPlaceholder}
+
+
-
- ) : (
-
- {entityType === EntityType.TABLE ? (
-
- ) : (
-
- )}
-
- ))}
+ )}
);
diff --git a/openmetadata-ui/src/main/resources/ui/src/components/Modals/ProfileEditModal/ProfileEditModal.tsx b/openmetadata-ui/src/main/resources/ui/src/components/Modals/ProfileEditModal/ProfileEditModal.tsx
index 4cdb50b33e2..23716d42661 100644
--- a/openmetadata-ui/src/main/resources/ui/src/components/Modals/ProfileEditModal/ProfileEditModal.tsx
+++ b/openmetadata-ui/src/main/resources/ui/src/components/Modals/ProfileEditModal/ProfileEditModal.tsx
@@ -89,7 +89,7 @@ export const ProfileEditModal: FunctionComponent = ({
open={visible}
title={
- {t('label.edit-profile')}
+ {t('label.edit-name')}
}
onCancel={onCancel}>
diff --git a/openmetadata-ui/src/main/resources/ui/src/components/ProfileCard/ProfileSectionUserDetailsCard.component.tsx b/openmetadata-ui/src/main/resources/ui/src/components/ProfileCard/ProfileSectionUserDetailsCard.component.tsx
index 93e273f677a..21da9265947 100644
--- a/openmetadata-ui/src/main/resources/ui/src/components/ProfileCard/ProfileSectionUserDetailsCard.component.tsx
+++ b/openmetadata-ui/src/main/resources/ui/src/components/ProfileCard/ProfileSectionUserDetailsCard.component.tsx
@@ -151,7 +151,7 @@ const ProfileSectionUserDetailsCard = ({
{...ICON_DIMENSION_USER_PAGE}
/>
- {t('label.edit-profile')}
+ {t('label.edit-name')}
)}
@@ -274,7 +274,7 @@ const ProfileSectionUserDetailsCard = ({
)}
{editProfile && (
{
diff --git a/openmetadata-ui/src/main/resources/ui/src/components/Settings/Users/UsersProfile/UserProfileRoles/UserProfileRoles.test.tsx b/openmetadata-ui/src/main/resources/ui/src/components/Settings/Users/UsersProfile/UserProfileRoles/UserProfileRoles.test.tsx
index 791342e5fae..f438c250f9c 100644
--- a/openmetadata-ui/src/main/resources/ui/src/components/Settings/Users/UsersProfile/UserProfileRoles/UserProfileRoles.test.tsx
+++ b/openmetadata-ui/src/main/resources/ui/src/components/Settings/Users/UsersProfile/UserProfileRoles/UserProfileRoles.test.tsx
@@ -184,12 +184,8 @@ describe('Test User Profile Roles Component', () => {
screen.getByTestId('user-profile-edit-roles-cancel-button')
);
- expect(
- screen.getByText('37a00e0b-383c-4451-b63f-0bad4c745abc')
- ).toBeInTheDocument();
- expect(
- screen.getByText('afc5583c-e268-4f6c-a638-a876d04ebaa1')
- ).toBeInTheDocument();
+ expect(screen.getByText('37a00e0b-383...')).toBeInTheDocument();
+ expect(screen.getByText('afc5583c-e26...')).toBeInTheDocument();
expect(screen.queryByText('admin')).not.toBeInTheDocument();
});
diff --git a/openmetadata-ui/src/main/resources/ui/src/locale/languages/de-de.json b/openmetadata-ui/src/main/resources/ui/src/locale/languages/de-de.json
index ab6985dbb9e..fbab75779ce 100644
--- a/openmetadata-ui/src/main/resources/ui/src/locale/languages/de-de.json
+++ b/openmetadata-ui/src/main/resources/ui/src/locale/languages/de-de.json
@@ -445,7 +445,7 @@
"edit-entity-name": "{{entityType}} bearbeiten: \"{{entityName}}\"",
"edit-glossary-display-name": "Glossarnamen bearbeiten",
"edit-glossary-name": "Glossarnamen bearbeiten",
- "edit-profile": "Profil bearbeiten",
+ "edit-name": "Namen bearbeiten",
"edit-suggestion": "Vorschlag bearbeiten",
"edit-widget-plural": "Widgets bearbeiten",
"edit-workflow-agent": "{{workflow}} Agent bearbeiten",
@@ -1848,6 +1848,8 @@
"no-closed-task": "Keine geschlossenen Aufgaben.",
"no-config-available": "Keine Verbindungskonfigurationen verfügbar.",
"no-config-plural": "Keine Konfigurationen.",
+ "no-conversations": "Keine Konversationen!",
+ "no-conversations-description": "Sie haben derzeit keine offenen Aufgaben. Es gibt keine Details oder Konversationen anzuzeigen.",
"no-custom-properties-entity": "Derzeit sind keine benutzerdefinierten Eigenschaften für das {{entity}} Data Asset definiert. Um zu erfahren, wie man benutzerdefinierte Eigenschaften hinzufügt, lesen Sie bitte <0>{{docs}}0>",
"no-customization-available": "Keine Anpassung für diesen Tab verfügbar",
"no-data": "Keine Daten",
diff --git a/openmetadata-ui/src/main/resources/ui/src/locale/languages/en-us.json b/openmetadata-ui/src/main/resources/ui/src/locale/languages/en-us.json
index 7bbb736c6d0..80c0f784895 100644
--- a/openmetadata-ui/src/main/resources/ui/src/locale/languages/en-us.json
+++ b/openmetadata-ui/src/main/resources/ui/src/locale/languages/en-us.json
@@ -445,7 +445,7 @@
"edit-entity-name": "Edit {{entityType}}: \"{{entityName}}\"",
"edit-glossary-display-name": "Edit Glossary Display Name",
"edit-glossary-name": "Edit Glossary Name",
- "edit-profile": "Edit Profile",
+ "edit-name": "Edit Name",
"edit-suggestion": "Edit Suggestion",
"edit-widget-plural": "Edit Widgets",
"edit-workflow-agent": "Edit {{workflow}} Agent",
@@ -1848,6 +1848,8 @@
"no-closed-task": "No Closed Tasks",
"no-config-available": "No Connection Configs available.",
"no-config-plural": "No Configs.",
+ "no-conversations": "No Conversations!",
+ "no-conversations-description": "You have no open tasks right now. There are no details or conversations to show.",
"no-custom-properties-entity": "There are currently no Custom Properties defined for the {{entity}} Data Asset. To discover how to add Custom Properties, please refer to <0>{{docs}}0>",
"no-customization-available": "No customization available for this tab",
"no-data": "No data",
diff --git a/openmetadata-ui/src/main/resources/ui/src/locale/languages/es-es.json b/openmetadata-ui/src/main/resources/ui/src/locale/languages/es-es.json
index 8d0c050be4f..8462b2129f8 100644
--- a/openmetadata-ui/src/main/resources/ui/src/locale/languages/es-es.json
+++ b/openmetadata-ui/src/main/resources/ui/src/locale/languages/es-es.json
@@ -445,7 +445,7 @@
"edit-entity-name": "Editar {{entityType}}: \"{{entityName}}\"",
"edit-glossary-display-name": "Editar nombre de visualización del glosario",
"edit-glossary-name": "Editar nombre del glosario",
- "edit-profile": "Editar perfil",
+ "edit-name": "Editar nombre",
"edit-suggestion": "Editar sugerencia",
"edit-widget-plural": "Editar Widgets",
"edit-workflow-agent": "Editar {{workflow}} Agente",
@@ -1848,6 +1848,8 @@
"no-closed-task": "No hay tareas cerradas",
"no-config-available": "No hay configuraciones de conexión disponibles.",
"no-config-plural": "No hay configuraciones.",
+ "no-conversations": "¡Sin conversaciones!",
+ "no-conversations-description": "No tienes tareas abiertas en este momento. No hay detalles ni conversaciones para mostrar.",
"no-custom-properties-entity": "Actualmente no hay Propiedades Personalizadas definidas para el Activo de Datos {{entity}}. Para saber cómo añadir Propiedades Personalizadas, consulte <0>{{docs}}0>.",
"no-customization-available": "No customization available for this tab",
"no-data": "No hay datos",
diff --git a/openmetadata-ui/src/main/resources/ui/src/locale/languages/fr-fr.json b/openmetadata-ui/src/main/resources/ui/src/locale/languages/fr-fr.json
index 26e2f3ab5bb..8e3a90e37ef 100644
--- a/openmetadata-ui/src/main/resources/ui/src/locale/languages/fr-fr.json
+++ b/openmetadata-ui/src/main/resources/ui/src/locale/languages/fr-fr.json
@@ -445,7 +445,7 @@
"edit-entity-name": "Éditer {{entityType}} : \"{{entityName}}\"",
"edit-glossary-display-name": "Éditer le Nom d'Affichage du Glossaire",
"edit-glossary-name": "Éditer le Nom du Glossaire",
- "edit-profile": "Modifier le profil",
+ "edit-name": "Modifier le nom",
"edit-suggestion": "Modifier la suggestion",
"edit-widget-plural": "Éditer les Widgets",
"edit-workflow-agent": "Modifier l'Agent {{workflow}}",
@@ -1848,6 +1848,8 @@
"no-closed-task": "Aucune tâche à effectuer",
"no-config-available": "Aucun paramètre de connexion disponible.",
"no-config-plural": "Pas de Configs.",
+ "no-conversations": "Pas de conversations !",
+ "no-conversations-description": "Vous n'avez pas de tâches ouvertes en ce moment. Il n'y a pas de détails ou de conversations à afficher.",
"no-custom-properties-entity": "Aucune propriété personnalisée n'est actuellement définie pour l'actif de données {{entity}}. Pour découvrir comment ajouter des propriétés personnalisées, veuillez consulter <0>{{docs}}0>",
"no-customization-available": "No customization available for this tab",
"no-data": "Aucune donnée",
diff --git a/openmetadata-ui/src/main/resources/ui/src/locale/languages/gl-es.json b/openmetadata-ui/src/main/resources/ui/src/locale/languages/gl-es.json
index 99b502ac098..9d911ba98ce 100644
--- a/openmetadata-ui/src/main/resources/ui/src/locale/languages/gl-es.json
+++ b/openmetadata-ui/src/main/resources/ui/src/locale/languages/gl-es.json
@@ -445,7 +445,7 @@
"edit-entity-name": "Editar {{entityType}}: \"{{entityName}}\"",
"edit-glossary-display-name": "Editar nome de visualización do glosario",
"edit-glossary-name": "Editar nome do glosario",
- "edit-profile": "Editar perfil",
+ "edit-name": "Editar nome",
"edit-suggestion": "Editar suxestión",
"edit-widget-plural": "Editar widgets",
"edit-workflow-agent": "Editar {{workflow}} Agente",
@@ -1848,6 +1848,8 @@
"no-closed-task": "Non hai tarefas pechadas",
"no-config-available": "Non hai configuracións de conexión dispoñibles.",
"no-config-plural": "Non hai configuracións.",
+ "no-conversations": "¡Sen conversas!",
+ "no-conversations-description": "Non tes tarefas abertas neste momento. Non hai detalles nin conversas para mostrar.",
"no-custom-properties-entity": "There are currently no Custom Properties defined for the {{entity}} Data Asset. To discover how to add Custom Properties, please refer to <0>{{docs}}0>",
"no-customization-available": "Non hai ningunha personalización dispoñible para esta pestana",
"no-data": "Non hai datos",
diff --git a/openmetadata-ui/src/main/resources/ui/src/locale/languages/he-he.json b/openmetadata-ui/src/main/resources/ui/src/locale/languages/he-he.json
index c40b4a4dfbc..d8fb779a173 100644
--- a/openmetadata-ui/src/main/resources/ui/src/locale/languages/he-he.json
+++ b/openmetadata-ui/src/main/resources/ui/src/locale/languages/he-he.json
@@ -445,7 +445,7 @@
"edit-entity-name": "ערוך {{entityType}}: \"{{entityName}}\"",
"edit-glossary-display-name": "ערוך שם תצוגת מילון מונחים",
"edit-glossary-name": "ערוך שם מילון מונחים",
- "edit-profile": "ערוך פרופיל",
+ "edit-name": "ערוך שם",
"edit-suggestion": "ערוך הצעה",
"edit-widget-plural": "ערוך ווידג'טים",
"edit-workflow-agent": "ערוך סוכן {{workflow}}",
@@ -1848,6 +1848,8 @@
"no-closed-task": "אין משימות סגורות",
"no-config-available": "אין הגדרות חיבור זמינות.",
"no-config-plural": "אין הגדרות.",
+ "no-conversations": "אין שיחות!",
+ "no-conversations-description": "אין לך משימות פתוחות כרגע. אין פרטים או שיחות להצגה.",
"no-custom-properties-entity": "נכון לעכשיו לא מוגדרות תכונות מותאמות אישית עבור נכס הנתונים {{entity}}. כדי לגלות כיצד להוסיף תכונות מותאמות אישית, נא עיין ב-<0>{{docs}}0>",
"no-customization-available": "No customization available for this tab",
"no-data": "אין נתונים",
diff --git a/openmetadata-ui/src/main/resources/ui/src/locale/languages/ja-jp.json b/openmetadata-ui/src/main/resources/ui/src/locale/languages/ja-jp.json
index bf647159099..e05857c23dd 100644
--- a/openmetadata-ui/src/main/resources/ui/src/locale/languages/ja-jp.json
+++ b/openmetadata-ui/src/main/resources/ui/src/locale/languages/ja-jp.json
@@ -445,7 +445,7 @@
"edit-entity-name": "{{entityType}}: \"{{entityName}}\" を編集",
"edit-glossary-display-name": "Edit Glossary Display Name",
"edit-glossary-name": "Edit Glossary Name",
- "edit-profile": "プロフィールを編集",
+ "edit-name": "名前を編集",
"edit-suggestion": "提案を編集",
"edit-widget-plural": "ウィジェットを編集",
"edit-workflow-agent": "{{workflow}}エージェントを編集",
@@ -1848,6 +1848,8 @@
"no-closed-task": "終了したタスクはありません",
"no-config-available": "利用可能な接続の設定はありません。",
"no-config-plural": "No Configs.",
+ "no-conversations": "会話なし!",
+ "no-conversations-description": "現在、開いているタスクはありません。表示する詳細や会話はありません。",
"no-custom-properties-entity": "現在、{{entity}} データアセットにはカスタムプロパティが定義されていません。カスタムプロパティの追加方法については、<0>{{docs}}0> を参照してください。",
"no-customization-available": "No customization available for this tab",
"no-data": "データがありません",
diff --git a/openmetadata-ui/src/main/resources/ui/src/locale/languages/ko-kr.json b/openmetadata-ui/src/main/resources/ui/src/locale/languages/ko-kr.json
index 8b3f1389eb1..ecdc5de083a 100644
--- a/openmetadata-ui/src/main/resources/ui/src/locale/languages/ko-kr.json
+++ b/openmetadata-ui/src/main/resources/ui/src/locale/languages/ko-kr.json
@@ -445,7 +445,7 @@
"edit-entity-name": "{{entityType}} 수정: \"{{entityName}}\"",
"edit-glossary-display-name": "용어집 표시 이름 수정",
"edit-glossary-name": "용어집 이름 수정",
- "edit-profile": "Edit Profile",
+ "edit-name": "이름 편집",
"edit-suggestion": "Edit Suggestion",
"edit-widget-plural": "위젯 수정",
"edit-workflow-agent": "{{workflow}} 에이전트 편집",
@@ -1848,6 +1848,8 @@
"no-closed-task": "닫힌 작업이 없습니다.",
"no-config-available": "사용 가능한 연결 구성이 없습니다.",
"no-config-plural": "구성이 없습니다.",
+ "no-conversations": "대화 없음!",
+ "no-conversations-description": "현재 열린 작업이 없습니다. 표시할 세부 정보나 대화가 없습니다.",
"no-custom-properties-entity": "There are currently no Custom Properties defined for the {{entity}} Data Asset. To discover how to add Custom Properties, please refer to <0>{{docs}}0>",
"no-customization-available": "No customization available for this tab",
"no-data": "데이터가 없습니다.",
diff --git a/openmetadata-ui/src/main/resources/ui/src/locale/languages/mr-in.json b/openmetadata-ui/src/main/resources/ui/src/locale/languages/mr-in.json
index cfd7bbb8f8f..b244efcf0b6 100644
--- a/openmetadata-ui/src/main/resources/ui/src/locale/languages/mr-in.json
+++ b/openmetadata-ui/src/main/resources/ui/src/locale/languages/mr-in.json
@@ -445,7 +445,7 @@
"edit-entity-name": "{{entityType}} संपादित करा: \"{{entityName}}\"",
"edit-glossary-display-name": "शब्दकोश प्रदर्शन नाव संपादित करा",
"edit-glossary-name": "शब्दकोश नाव संपादित करा",
- "edit-profile": "प्रोफाइल संपादित करा",
+ "edit-name": "नाव संपादित करा",
"edit-suggestion": "सूचना संपादित करा",
"edit-widget-plural": "विजेट्स संपादित करा",
"edit-workflow-agent": "{{workflow}} एजंट संपादित करा",
@@ -1848,6 +1848,8 @@
"no-closed-task": "कोणतीही बंद कार्ये नाहीत",
"no-config-available": "कोणतेही कनेक्शन कॉन्फिग उपलब्ध नाहीत.",
"no-config-plural": "कोणतेही कॉन्फिग नाहीत.",
+ "no-conversations": "संवाद नाही!",
+ "no-conversations-description": "आपल्याकडे सध्या कोणतेही खुले कार्य नाही. दर्शविण्यासाठी कोणतीही तपशील किंवा संवाद नाहीत.",
"no-custom-properties-entity": "सध्या {{entity}} डेटा संपत्तीसाठी कोणताही कस्टम प्रॉपर्टी परिभाषित केलेली नाही. कस्टम प्रॉपर्टी कशी जोडावी ते जाणून घेण्यासाठी, कृपया <0>{{docs}}0> पहा.",
"no-customization-available": "या टॅबसाठी कोणतीही सानुकूलन उपलब्ध नाही",
"no-data": "डेटा नाही",
diff --git a/openmetadata-ui/src/main/resources/ui/src/locale/languages/nl-nl.json b/openmetadata-ui/src/main/resources/ui/src/locale/languages/nl-nl.json
index a1f42361e81..f135818a0de 100644
--- a/openmetadata-ui/src/main/resources/ui/src/locale/languages/nl-nl.json
+++ b/openmetadata-ui/src/main/resources/ui/src/locale/languages/nl-nl.json
@@ -445,7 +445,7 @@
"edit-entity-name": "{{entityType}} bewerken: \"{{entityName}}\"",
"edit-glossary-display-name": "Weergavenaam van het woordenboek bewerken",
"edit-glossary-name": "Naam van het woordenboek bewerken",
- "edit-profile": "Profiel bewerken",
+ "edit-name": "Naam bewerken",
"edit-suggestion": "Suggestie bewerken",
"edit-widget-plural": "Widgets bewerken",
"edit-workflow-agent": "{{workflow}} Agent bewerken",
@@ -1848,6 +1848,8 @@
"no-closed-task": "Geen gesloten taken",
"no-config-available": "Geen connectieconfiguraties beschikbaar.",
"no-config-plural": "Geen configuraties.",
+ "no-conversations": "Geen gesprekken!",
+ "no-conversations-description": "Je hebt momenteel geen open taken. Er zijn geen details of gesprekken om weer te geven.",
"no-custom-properties-entity": "Er zijn momenteel geen aangepaste eigenschappen gedefinieerd voor het {{entity}} Data Asset. Raadpleeg <0>{{docs}}0> voor meer informatie over het toevoegen van aangepaste eigenschappen.",
"no-customization-available": "No customization available for this tab",
"no-data": "Geen data",
diff --git a/openmetadata-ui/src/main/resources/ui/src/locale/languages/pr-pr.json b/openmetadata-ui/src/main/resources/ui/src/locale/languages/pr-pr.json
index a2f49b188e3..bb71001a455 100644
--- a/openmetadata-ui/src/main/resources/ui/src/locale/languages/pr-pr.json
+++ b/openmetadata-ui/src/main/resources/ui/src/locale/languages/pr-pr.json
@@ -445,7 +445,7 @@
"edit-entity-name": "ویرایش {{entityType }}: \"{{entityName }}\"",
"edit-glossary-display-name": "ویرایش نام نمایشی واژهنامه",
"edit-glossary-name": "ویرایش نام واژهنامه",
- "edit-profile": "Editar perfil",
+ "edit-name": "ویرایش نام",
"edit-suggestion": "Editar sugerencia",
"edit-widget-plural": "ویرایش ویجتها",
"edit-workflow-agent": "Editar {{workflow}} Agente",
@@ -1848,6 +1848,8 @@
"no-closed-task": "هیچ وظیفه بستهای وجود ندارد.",
"no-config-available": "هیچ پیکربندی اتصالی در دسترس نیست.",
"no-config-plural": "هیچ پیکربندیای وجود ندارد.",
+ "no-conversations": "بدون گفتگو!",
+ "no-conversations-description": "شما در حال حاضر هیچ کار باز ندارید. هیچ جزئیات یا گفتگویی برای نمایش وجود ندارد.",
"no-custom-properties-entity": "در حال حاضر هیچ ویژگی سفارشی برای دارایی داده {{entity}} تعریف نشده است. برای یادگیری نحوه افزودن ویژگیهای سفارشی، لطفاً به <0>{{docs}}0> مراجعه کنید.",
"no-customization-available": "No customization available for this tab",
"no-data": "بدون داده",
diff --git a/openmetadata-ui/src/main/resources/ui/src/locale/languages/pt-br.json b/openmetadata-ui/src/main/resources/ui/src/locale/languages/pt-br.json
index cf9fe8abf2e..577b908eac3 100644
--- a/openmetadata-ui/src/main/resources/ui/src/locale/languages/pt-br.json
+++ b/openmetadata-ui/src/main/resources/ui/src/locale/languages/pt-br.json
@@ -445,7 +445,7 @@
"edit-entity-name": "Editar {{entityType}}: \"{{entityName}}\"",
"edit-glossary-display-name": "Editar Nome de Exibição do Glossário",
"edit-glossary-name": "Editar Nome do Glossário",
- "edit-profile": "Editar perfil",
+ "edit-name": "Editar nome",
"edit-suggestion": "Editar sugestão",
"edit-widget-plural": "Editar Widgets",
"edit-workflow-agent": "Editar {{workflow}} Agente",
@@ -1848,6 +1848,8 @@
"no-closed-task": "Nenhuma Tarefa Concluída",
"no-config-available": "Nenhuma Configuração de Conexão disponível.",
"no-config-plural": "Nenhuma Configuração.",
+ "no-conversations": "Sem conversas!",
+ "no-conversations-description": "Você não tem tarefas abertas no momento. Não há detalhes ou conversas para mostrar.",
"no-custom-properties-entity": "Atualmente, não há Propriedades Personalizadas definidas para o Ativo de Dados {{entity}}. Para saber como adicionar Propriedades Personalizadas, consulte <0>{{docs}}0>.",
"no-customization-available": "No customization available for this tab",
"no-data": "Sem dados",
diff --git a/openmetadata-ui/src/main/resources/ui/src/locale/languages/pt-pt.json b/openmetadata-ui/src/main/resources/ui/src/locale/languages/pt-pt.json
index 2e8fa1a806e..1d1a1bd0884 100644
--- a/openmetadata-ui/src/main/resources/ui/src/locale/languages/pt-pt.json
+++ b/openmetadata-ui/src/main/resources/ui/src/locale/languages/pt-pt.json
@@ -445,7 +445,7 @@
"edit-entity-name": "Editar {{entityType}}: \"{{entityName}}\"",
"edit-glossary-display-name": "Editar Nome de Exibição do Glossário",
"edit-glossary-name": "Editar Nome do Glossário",
- "edit-profile": "Editar perfil",
+ "edit-name": "Edit Name",
"edit-suggestion": "Editar sugestão",
"edit-widget-plural": "Editar Widgets",
"edit-workflow-agent": "Editar Agente {{workflow}}",
@@ -1848,6 +1848,8 @@
"no-closed-task": "Nenhuma Tarefa Concluída",
"no-config-available": "Nenhuma Configuração de Conexão disponível.",
"no-config-plural": "Nenhuma Configuração.",
+ "no-conversations": "Sem conversas!",
+ "no-conversations-description": "Não tem tarefas abertas no momento. Não há detalhes ou conversas para mostrar.",
"no-custom-properties-entity": "Atualmente, não existem Propriedades Personalizadas definidas para o Ativo de Dados {{entity}}. Para descobrir como adicionar Propriedades Personalizadas, consulte <0>{{docs}}0>",
"no-customization-available": "No customization available for this tab",
"no-data": "Sem dados",
diff --git a/openmetadata-ui/src/main/resources/ui/src/locale/languages/ru-ru.json b/openmetadata-ui/src/main/resources/ui/src/locale/languages/ru-ru.json
index 9fed5408541..784ad11c733 100644
--- a/openmetadata-ui/src/main/resources/ui/src/locale/languages/ru-ru.json
+++ b/openmetadata-ui/src/main/resources/ui/src/locale/languages/ru-ru.json
@@ -445,7 +445,7 @@
"edit-entity-name": "Редактировать {{entityType}}: \"{{entityName}}\"",
"edit-glossary-display-name": "Изменить отображаемое имя глоссария",
"edit-glossary-name": "Изменить название глоссария",
- "edit-profile": "Редактировать профиль",
+ "edit-name": "Редактировать имя",
"edit-suggestion": "Редактировать предложение",
"edit-widget-plural": "Редактировать виджеты",
"edit-workflow-agent": "Редактировать {{workflow}} агент",
@@ -1848,6 +1848,8 @@
"no-closed-task": "Нет закрытых задач",
"no-config-available": "Нет доступных конфигураций подключения.",
"no-config-plural": "No Configs.",
+ "no-conversations": "Нет разговоров!",
+ "no-conversations-description": "У вас нет открытых задач. Нет деталей или разговоров для отображения.",
"no-custom-properties-entity": "В настоящее время для {{entity}} Data Asset не определены пользовательские свойства. Чтобы узнать, как добавить пользовательские свойства, обратитесь к <0>{{docs}}0>",
"no-customization-available": "No customization available for this tab",
"no-data": "Нет данных",
diff --git a/openmetadata-ui/src/main/resources/ui/src/locale/languages/th-th.json b/openmetadata-ui/src/main/resources/ui/src/locale/languages/th-th.json
index 30e6557d4e8..deacae4deb1 100644
--- a/openmetadata-ui/src/main/resources/ui/src/locale/languages/th-th.json
+++ b/openmetadata-ui/src/main/resources/ui/src/locale/languages/th-th.json
@@ -445,7 +445,7 @@
"edit-entity-name": "แก้ไข {{entityType}}: \"{{entityName}}\"",
"edit-glossary-display-name": "แก้ไขชื่อแสดงสารานุกรม",
"edit-glossary-name": "แก้ไขชื่อสารานุกรม",
- "edit-profile": "แก้ไขโปรไฟล์",
+ "edit-name": "แก้ไขชื่อ",
"edit-suggestion": "แก้ไขข้อเสนอแนะ",
"edit-widget-plural": "แก้ไขวิดเจ็ต",
"edit-workflow-agent": "แก้ไขเอเจนต์ {{workflow}}",
@@ -1848,6 +1848,8 @@
"no-closed-task": "ไม่มีงานที่ปิดแล้ว",
"no-config-available": "ไม่มีการตั้งค่าการเชื่อมต่อที่สามารถใช้งานได้",
"no-config-plural": "ไม่มีการตั้งค่า",
+ "no-conversations": "ไม่มีบทสนทนา!",
+ "no-conversations-description": "คุณไม่มีงานที่เปิดอยู่ในขณะนี้ ไม่มีรายละเอียดหรือบทสนทนาให้แสดง",
"no-custom-properties-entity": "ขณะนี้ไม่มีการกำหนดคุณสมบัติเฉพาะสำหรับสินทรัพย์ข้อมูล {{entity}} หากต้องการเรียนรู้วิธีการเพิ่มคุณสมบัติเฉพาะ โปรดดูที่ <0>{{docs}}0>.",
"no-customization-available": "ไม่มีการปรับแต่งให้ใช้งานได้สำหรับแท็บนี้",
"no-data": "ไม่มีข้อมูล",
diff --git a/openmetadata-ui/src/main/resources/ui/src/locale/languages/zh-cn.json b/openmetadata-ui/src/main/resources/ui/src/locale/languages/zh-cn.json
index 3f72f6e08d6..8d2363115de 100644
--- a/openmetadata-ui/src/main/resources/ui/src/locale/languages/zh-cn.json
+++ b/openmetadata-ui/src/main/resources/ui/src/locale/languages/zh-cn.json
@@ -445,7 +445,7 @@
"edit-entity-name": "编辑{{entityType}}: \"{{entityName}}\"",
"edit-glossary-display-name": "编辑术语库显示名称",
"edit-glossary-name": "编辑术语库名称",
- "edit-profile": "编辑个人资料",
+ "edit-name": "编辑名称",
"edit-suggestion": "编辑建议",
"edit-widget-plural": "编辑小部件",
"edit-workflow-agent": "编辑{{workflow}}代理",
@@ -1848,6 +1848,8 @@
"no-closed-task": "没有关闭的任务",
"no-config-available": "没有可用的连接配置",
"no-config-plural": "No Configs.",
+ "no-conversations": "没有对话!",
+ "no-conversations-description": "您目前没有开放的任务。没有可显示的详细信息或对话。",
"no-custom-properties-entity": "当前没有为 {{entity}} 数据资产定义自定义属性。要了解如何添加自定义属性,请参考 <0>{{docs}}0>",
"no-customization-available": "No customization available for this tab",
"no-data": "没有数据",