@topconsultnpm/sdkui-react 6.21.0-dev4.18 → 6.21.0-dev4.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -402,7 +402,7 @@ const TMRelationViewer = ({ inputDcmts, isForMaster = false, showCurrentDcmtIndi
402
402
  updatedItems = [
403
403
  {
404
404
  key: `__info__${node.key}`,
405
- name: 'Nessun documento correlato da visualizzare',
405
+ name: SDKUI_Localizator.NoRelatedDocumentsToDisplay,
406
406
  isContainer: false,
407
407
  isDcmt: false,
408
408
  isInfoMessage: true,
@@ -956,7 +956,7 @@ const TMRelationViewer = ({ inputDcmts, isForMaster = false, showCurrentDcmtIndi
956
956
  return [
957
957
  {
958
958
  key: `__info__${node.key}`,
959
- name: 'Nessun documento correlato da visualizzare',
959
+ name: SDKUI_Localizator.NoRelatedDocumentsToDisplay,
960
960
  isContainer: false,
961
961
  isDcmt: false,
962
962
  isInfoMessage: true,
@@ -985,7 +985,7 @@ const TMRelationViewer = ({ inputDcmts, isForMaster = false, showCurrentDcmtIndi
985
985
  return [
986
986
  {
987
987
  key: `__info__${node.key}`,
988
- name: 'Nessun documento correlato da visualizzare',
988
+ name: SDKUI_Localizator.NoRelatedDocumentsToDisplay,
989
989
  isContainer: false,
990
990
  isDcmt: false,
991
991
  isInfoMessage: true,
@@ -1040,7 +1040,7 @@ const TMRelationViewer = ({ inputDcmts, isForMaster = false, showCurrentDcmtIndi
1040
1040
  return [
1041
1041
  {
1042
1042
  key: `__info__${node.key}`,
1043
- name: 'Nessun documento correlato da visualizzare',
1043
+ name: SDKUI_Localizator.NoRelatedDocumentsToDisplay,
1044
1044
  isContainer: false,
1045
1045
  isDcmt: false,
1046
1046
  isInfoMessage: true,
@@ -218,6 +218,7 @@ export declare class SDKUI_Localizator {
218
218
  static get Documents(): string;
219
219
  static get DocumentsNotAvailableOrNoCorrelations(): string;
220
220
  static get NoMasterDocumentsAvailable(): string;
221
+ static get NoRelatedDocumentsToDisplay(): string;
221
222
  static get NoRelationsAvailable(): string;
222
223
  static get DocumentOperations(): string;
223
224
  static get DocumentTypeNameAndDID(): string;
@@ -2129,6 +2129,16 @@ export class SDKUI_Localizator {
2129
2129
  default: return "Nessun documento master disponibile per la correlazione selezionata";
2130
2130
  }
2131
2131
  }
2132
+ static get NoRelatedDocumentsToDisplay() {
2133
+ switch (this._cultureID) {
2134
+ case CultureIDs.De_DE: return "Keine verknüpften Dokumente zum Anzeigen";
2135
+ case CultureIDs.En_US: return "No related documents to display";
2136
+ case CultureIDs.Es_ES: return "No hay documentos relacionados para mostrar";
2137
+ case CultureIDs.Fr_FR: return "Aucun document lié à afficher";
2138
+ case CultureIDs.Pt_PT: return "Nenhum documento relacionado para exibir";
2139
+ default: return "Nessun documento correlato da visualizzare";
2140
+ }
2141
+ }
2132
2142
  static get NoRelationsAvailable() {
2133
2143
  switch (this._cultureID) {
2134
2144
  case CultureIDs.De_DE: return "Keine Beziehung verfügbar";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@topconsultnpm/sdkui-react",
3
- "version": "6.21.0-dev4.18",
3
+ "version": "6.21.0-dev4.19",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",