@sapui5/sap.suite.ui.generic.template 1.148.1 → 1.148.2
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.
- package/package.json +1 -1
- package/src/sap/suite/ui/generic/template/.library +1 -1
- package/src/sap/suite/ui/generic/template/AnalyticalListPage/manifest.json +1 -1
- package/src/sap/suite/ui/generic/template/Canvas/manifest.json +1 -1
- package/src/sap/suite/ui/generic/template/ListReport/controller/ControllerImplementation.js +6 -3
- package/src/sap/suite/ui/generic/template/ListReport/manifest.json +1 -1
- package/src/sap/suite/ui/generic/template/ObjectPage/manifest.json +1 -1
- package/src/sap/suite/ui/generic/template/QuickCreate/manifest.json +1 -1
- package/src/sap/suite/ui/generic/template/QuickView/manifest.json +1 -1
- package/src/sap/suite/ui/generic/template/genericUtilities/controlStateWrapperFactory/SmartFilterBarWrapper.js +20 -1
- package/src/sap/suite/ui/generic/template/lib/AppComponent.js +1 -1
- package/src/sap/suite/ui/generic/template/lib/CRUDManager.js +0 -7
- package/src/sap/suite/ui/generic/template/lib/ai/EasyFill/EasyFillAIOrchestrator.js +43 -12
- package/src/sap/suite/ui/generic/template/lib/ai/EasyFill/EasyFillApplyHandler.js +67 -218
- package/src/sap/suite/ui/generic/template/lib/ai/EasyFill/EasyFillDialogController.js +55 -8
- package/src/sap/suite/ui/generic/template/lib/ai/EasyFill/EasyFillFieldCollector.js +214 -35
- package/src/sap/suite/ui/generic/template/lib/ai/EasyFill/EasyFillFormRenderer.js +93 -18
- package/src/sap/suite/ui/generic/template/lib/ai/EasyFill/EasyFillHandler.js +426 -48
- package/src/sap/suite/ui/generic/template/lib/ai/EasyFill/EasyFillTableRenderer.js +512 -63
- package/src/sap/suite/ui/generic/template/lib/ai/EasyFill/fragments/EasyFillDialog.fragment.xml +33 -22
- package/src/sap/suite/ui/generic/template/lib/ai/EasyFilterBarHandler.js +90 -73
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n.properties +24 -0
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_ar.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_bg.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_ca.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_cnr.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_cs.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_cy.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_da.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_de.properties +19 -11
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_el.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_en.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_en_GB.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_en_US_saprigi.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_es.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_es_MX.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_et.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_fi.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_fr.properties +16 -8
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_fr_CA.properties +16 -8
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_hi.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_hr.properties +16 -8
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_hu.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_id.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_it.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_iw.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_ja.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_kk.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_ko.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_lt.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_lv.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_mk.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_ms.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_nl.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_no.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_pl.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_pt.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_pt_PT.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_ro.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_ru.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_sh.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_sk.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_sl.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_sr.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_sv.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_th.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_tr.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_uk.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_vi.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_zh_CN.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_zh_TW.properties +15 -7
- package/src/sap/suite/ui/generic/template/lib/navigation/NavigationController.js +1 -1
- package/src/sap/suite/ui/generic/template/library.js +1 -1
- package/src/sap/suite/ui/generic/template/themes/base/ObjectPage.less +22 -1
package/src/sap/suite/ui/generic/template/lib/ai/EasyFill/fragments/EasyFillDialog.fragment.xml
CHANGED
|
@@ -77,33 +77,56 @@ xmlns:fesr="http://schemas.sap.com/sapui5/extension/sap.ui.core.FESR/1">
|
|
|
77
77
|
<uxap:actions>
|
|
78
78
|
<SegmentedButton selectedKey="{easyFillDialogModel>/easyFillMode}" selectionChange=".onSelectionChange">
|
|
79
79
|
<items>
|
|
80
|
-
<SegmentedButtonItem icon="sap-icon://increase-line-height" key="
|
|
81
|
-
<SegmentedButtonItem icon="sap-icon://decrease-line-height" key="
|
|
80
|
+
<SegmentedButtonItem icon="sap-icon://increase-line-height" key="ObjectPageMode" tooltip="{i18n>EASY_FILL_DETAILED_VIEW_TOOLTIP}"/>
|
|
81
|
+
<SegmentedButtonItem icon="sap-icon://decrease-line-height" key="CondensedMode" tooltip="{i18n>EASY_FILL_CONDENSED_VIEW_TOOLTIP}"/>
|
|
82
82
|
</items>
|
|
83
83
|
</SegmentedButton>
|
|
84
84
|
<Button
|
|
85
85
|
icon="{= ${easyFillDialogModel>/isFullScreen} ? 'sap-icon://full-screen' : 'sap-icon://exit-full-screen'}"
|
|
86
|
+
tooltip="{= ${easyFillDialogModel>/isFullScreen} ? ${i18n>EASY_FILL_ENTER_FULL_SCREEN_TOOLTIP} : ${i18n>EASY_FILL_EXIT_FULL_SCREEN_TOOLTIP}}"
|
|
86
87
|
type="Transparent"
|
|
88
|
+
visible="{= !${easyFillDialogModel>/isSplitterPageMode} }"
|
|
87
89
|
press=".onToggleFullScreen"/>
|
|
88
90
|
</uxap:actions>
|
|
89
91
|
</uxap:ObjectPageDynamicHeaderTitle>
|
|
90
92
|
</uxap:headerTitle>
|
|
91
93
|
<uxap:headerContent>
|
|
92
|
-
<
|
|
93
|
-
<
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
94
|
+
<VBox width="100%">
|
|
95
|
+
<HBox gap="0.5rem" justifyContent="Start" alignItems="Center" renderType="Bare" class="sapSmartTemplatesObjectPageEasyFillReviewAreaBanner">
|
|
96
|
+
<Link text="{i18n>AI_LINK_NOTICE_TITLE}" press=".onLinkPress"/>
|
|
97
|
+
<ToggleButton icon = "sap-icon://thumb-up" type = "Transparent" fesr:press="fe2:ef:thumbsup" pressed="{easyFillDialogModel>/feedbackPressedUp}" enabled="{easyFillDialogModel>/feedbackEnabled}" press=".onFeedbackPress"/>
|
|
98
|
+
<ToggleButton icon = "sap-icon://thumb-down" type = "Transparent" fesr:press="fe2:ef:thumbsdown" pressed="{easyFillDialogModel>/feedbackPressedDown}" enabled="{easyFillDialogModel>/feedbackEnabled}" press=".onFeedbackPress"/>
|
|
99
|
+
</HBox>
|
|
100
|
+
<MessageStrip
|
|
101
|
+
visible="{easyFillDialogModel>/hasNonUpdatableFields}"
|
|
102
|
+
text="{i18n>EASY_FILL_READ_ONLY_WARNING}"
|
|
103
|
+
showIcon="true"
|
|
104
|
+
type="Warning"
|
|
105
|
+
class="sapUiSmallMarginBottom"/>
|
|
106
|
+
</VBox>
|
|
97
107
|
</uxap:headerContent>
|
|
98
|
-
<uxap:ObjectPageSection title="{path: 'easyFillDialogModel>title', formatter: '.formatSectionTitle'}" titleUppercase="false"
|
|
108
|
+
<uxap:ObjectPageSection title="{path: 'easyFillDialogModel>title', formatter: '.formatSectionTitle'}" titleUppercase="false"
|
|
109
|
+
visible="{
|
|
110
|
+
parts: [
|
|
111
|
+
{path: 'easyFillDialogModel>fields'},
|
|
112
|
+
{path: 'easyFillDialogModel>children'}
|
|
113
|
+
],
|
|
114
|
+
formatter: '.hasSectionFields'
|
|
115
|
+
}">
|
|
99
116
|
<uxap:ObjectPageSubSection>
|
|
100
|
-
<smartForm:SmartForm editable="true" id="EasyFillSmartForm" groups="{path: 'easyFillDialogModel>children', templateShareable: false}">
|
|
117
|
+
<smartForm:SmartForm editable="true" id="EasyFillSmartForm" validationMode="Async" groups="{path: 'easyFillDialogModel>children', templateShareable: false}">
|
|
118
|
+
<smartForm:customData>
|
|
119
|
+
<core:CustomData key="defaultInputFieldDisplayBehaviour" value="descriptionAndId"/>
|
|
120
|
+
<core:CustomData key="defaultDropDownDisplayBehaviour" value="descriptionOnly"/>
|
|
121
|
+
<core:CustomData key="defaultTextInEditModeSource" value="ValueList"/>
|
|
122
|
+
<core:CustomData key="dateFormatSettings" value='\{"UTC":true,"style":"medium"\}'/>
|
|
123
|
+
</smartForm:customData>
|
|
101
124
|
<smartForm:layout>
|
|
102
125
|
<smartForm:ColumnLayout
|
|
103
126
|
columnsXL="3"
|
|
104
127
|
columnsL="3"
|
|
105
128
|
columnsM="2"
|
|
106
|
-
labelCellsLarge="
|
|
129
|
+
labelCellsLarge="2"/>
|
|
107
130
|
</smartForm:layout>
|
|
108
131
|
<smartForm:Group
|
|
109
132
|
title="{path: 'easyFillDialogModel>title', formatter: '.formatSectionTitle'}"
|
|
@@ -123,18 +146,6 @@ xmlns:fesr="http://schemas.sap.com/sapui5/extension/sap.ui.core.FESR/1">
|
|
|
123
146
|
</uxap:ObjectPageSubSection>
|
|
124
147
|
</uxap:ObjectPageSection>
|
|
125
148
|
</uxap:ObjectPageLayout>
|
|
126
|
-
<VBox id="EasyFillTablePreviewContainer" fitContainer="true" renderType="Bare" visible="{easyFillDialogModel>/hasTableUpdates}"/>
|
|
127
|
-
<MessageStrip
|
|
128
|
-
visible="{easyFillDialogModel>/hasTableUpdates}"
|
|
129
|
-
text="{i18n>EASY_FILL_TABLE_UPDATES_INFO}"
|
|
130
|
-
showIcon="true"
|
|
131
|
-
type="Information"/>
|
|
132
|
-
|
|
133
|
-
<MessageStrip
|
|
134
|
-
visible="{easyFillDialogModel>/hasTableValidationErrors}"
|
|
135
|
-
text="{easyFillDialogModel>/tableValidationMessage}"
|
|
136
|
-
showIcon="true"
|
|
137
|
-
type="Error"/>
|
|
138
149
|
</FlexBox>
|
|
139
150
|
</layout:SplitPane>
|
|
140
151
|
|
|
@@ -41,6 +41,10 @@ sap.ui.define([
|
|
|
41
41
|
// variant load or Go press result. Used to suppress fnApplyEasyFilterVariantState from
|
|
42
42
|
// overwriting the stale-query (placeholder) state that fnTokensChanged put in place.
|
|
43
43
|
var bTokensModifiedByUser = false;
|
|
44
|
+
// Set to true when the user presses Reset Filter. Suppresses fnApplyEasyFilterVariantState
|
|
45
|
+
// from restoring the saved query into the (now intentionally empty) input field when
|
|
46
|
+
// afterVariantLoad fires as a side effect of the subsequent setUiState call.
|
|
47
|
+
var bFiltersResetByUser = false;
|
|
44
48
|
|
|
45
49
|
/**
|
|
46
50
|
* Calls setVariantCreationByUserAllowed(bAllowed) on the SmartVariantManagement control
|
|
@@ -108,54 +112,53 @@ sap.ui.define([
|
|
|
108
112
|
var mEffectiveNonSortable = mOverrideNonSortable || mNonSortableProperties;
|
|
109
113
|
entityType.property.forEach(function (oProperty) {
|
|
110
114
|
var sTokenType = "ValueHelp";
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
}
|
|
121
|
-
if (oExtension.name === "hidden") {
|
|
122
|
-
bIsHidden = oExtension.value === "true";
|
|
123
|
-
}
|
|
124
|
-
if (oExtension.name === "hidden-filter") {
|
|
125
|
-
bIsHiddenFilter = oExtension.value === "true";
|
|
126
|
-
}
|
|
127
|
-
if (oExtension.name === "filter-restriction") {
|
|
128
|
-
sFilterRestriction = oExtension.value;
|
|
129
|
-
}
|
|
130
|
-
});
|
|
131
|
-
if ((oProperty.type === "Edm.DateTime" && oProperty["sap:display-format"] === "Date") ||
|
|
132
|
-
(oProperty.type === "Edm.String" && oProperty["com.sap.vocabularies.Common.v1.IsCalendarDate"] && oProperty["com.sap.vocabularies.Common.v1.IsCalendarDate"].Bool === "true")) {
|
|
133
|
-
sTokenType = "Calendar";
|
|
134
|
-
} else if (oProperty.type === "Edm.DateTimeOffset") {
|
|
135
|
-
sTokenType = "Time";
|
|
115
|
+
var bFilterable = filterHelper.isPropertyFilterable(oProperty);
|
|
116
|
+
var bIsCodeListRequired;
|
|
117
|
+
var bIsHidden = false;
|
|
118
|
+
var bIsHiddenFilter = false;
|
|
119
|
+
var sFilterRestriction = "";
|
|
120
|
+
oProperty.extensions && oProperty.extensions.forEach(function(oExtension) {
|
|
121
|
+
if (oExtension.name === "value-list" && oExtension.value === "fixed-values") {
|
|
122
|
+
sTokenType = "MenuWithCheckBox";
|
|
123
|
+
bIsCodeListRequired = true;
|
|
136
124
|
}
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
unit: oProperty["sap:unit"] || "",
|
|
153
|
-
required: oProperty["sap:required-in-filter"] === "true" ? true : false,
|
|
154
|
-
hidden: bIsHidden,
|
|
155
|
-
hiddenFilter: bIsHiddenFilter,
|
|
156
|
-
filterRestriction: sFilterRestriction || undefined
|
|
157
|
-
};
|
|
125
|
+
if (oExtension.name === "hidden") {
|
|
126
|
+
bIsHidden = oExtension.value === "true";
|
|
127
|
+
}
|
|
128
|
+
if (oExtension.name === "hidden-filter") {
|
|
129
|
+
bIsHiddenFilter = oExtension.value === "true";
|
|
130
|
+
}
|
|
131
|
+
if (oExtension.name === "filter-restriction") {
|
|
132
|
+
sFilterRestriction = oExtension.value;
|
|
133
|
+
}
|
|
134
|
+
});
|
|
135
|
+
if ((oProperty.type === "Edm.DateTime" && oProperty["sap:display-format"] === "Date") ||
|
|
136
|
+
(oProperty.type === "Edm.String" && oProperty["com.sap.vocabularies.Common.v1.IsCalendarDate"] && oProperty["com.sap.vocabularies.Common.v1.IsCalendarDate"].Bool === "true")) {
|
|
137
|
+
sTokenType = "Calendar";
|
|
138
|
+
} else if (oProperty.type === "Edm.DateTimeOffset") {
|
|
139
|
+
sTokenType = "Time";
|
|
158
140
|
}
|
|
141
|
+
var propName = prefix ? prefix + "." + oProperty.name : oProperty.name;
|
|
142
|
+
// Determine sortability: property is sortable unless entity set is not sortable,
|
|
143
|
+
// property is in NonSortableProperties, or property has sap:sortable="false"
|
|
144
|
+
var bSortable = bEffectiveSortable && !mEffectiveNonSortable[oProperty.name] && oProperty["sap:sortable"] !== "false";
|
|
145
|
+
// Groupable follows the same logic as sortable: a property is groupable if it is sortable
|
|
146
|
+
var bGroupable = bSortable;
|
|
147
|
+
mFilterProperties[propName] = {
|
|
148
|
+
name: propName,
|
|
149
|
+
dataType: oProperty.type,
|
|
150
|
+
defaultValue : [],
|
|
151
|
+
filterable: bFilterable,
|
|
152
|
+
sortable: bSortable,
|
|
153
|
+
groupable: bGroupable,
|
|
154
|
+
codeList : bIsCodeListRequired,
|
|
155
|
+
type: sTokenType,
|
|
156
|
+
unit: oProperty["sap:unit"] || "",
|
|
157
|
+
required: oProperty["sap:required-in-filter"] === "true" ? true : false,
|
|
158
|
+
hidden: bIsHidden,
|
|
159
|
+
hiddenFilter: bIsHiddenFilter,
|
|
160
|
+
filterRestriction: sFilterRestriction || undefined
|
|
161
|
+
};
|
|
159
162
|
});
|
|
160
163
|
}
|
|
161
164
|
|
|
@@ -524,9 +527,9 @@ sap.ui.define([
|
|
|
524
527
|
oSmartFilterbar.setVisible(false);
|
|
525
528
|
var sQuery = oVariantState.easyFilter && oVariantState.easyFilter.query;
|
|
526
529
|
if (sQuery) {
|
|
527
|
-
//
|
|
528
|
-
//
|
|
529
|
-
if (!bTokensModifiedByUser) {
|
|
530
|
+
// Do not restore the query if the user just pressed Reset Filter —
|
|
531
|
+
// the input was intentionally cleared and must stay empty.
|
|
532
|
+
if (!bTokensModifiedByUser && !bFiltersResetByUser) {
|
|
530
533
|
var oEasyFilterBar = fnGetEasyFilterBar();
|
|
531
534
|
if (oEasyFilterBar) {
|
|
532
535
|
var sCurrentQuery = oEasyFilterBar.getQuery();
|
|
@@ -539,6 +542,8 @@ sap.ui.define([
|
|
|
539
542
|
} else {
|
|
540
543
|
oSmartFilterbar.setVisible(true);
|
|
541
544
|
}
|
|
545
|
+
// Reset so future variant switches are not suppressed.
|
|
546
|
+
bFiltersResetByUser = false;
|
|
542
547
|
}
|
|
543
548
|
|
|
544
549
|
/**
|
|
@@ -596,11 +601,16 @@ sap.ui.define([
|
|
|
596
601
|
});
|
|
597
602
|
}
|
|
598
603
|
|
|
599
|
-
|
|
604
|
+
function fnClearFilters(oEvent) {
|
|
600
605
|
//Making the SmartTable in dirty state
|
|
601
|
-
var
|
|
606
|
+
var oTemplatePrivateModel = oTemplateUtils.oComponentUtils.getTemplatePrivateModel();
|
|
602
607
|
oTemplatePrivateModel.setProperty("/listReport/firstSelection", true);
|
|
603
608
|
oTemplatePrivateModel.setProperty("/generic/bDataAreShownInTable", false);
|
|
609
|
+
var oSmartFilterbar = oState.oSmartFilterbar;
|
|
610
|
+
if (oSmartFilterbar.getSmartVariant()) {
|
|
611
|
+
oSmartFilterbar.getSmartVariant().currentVariantSetModified(true);
|
|
612
|
+
}
|
|
613
|
+
bFiltersResetByUser = true;
|
|
604
614
|
}
|
|
605
615
|
|
|
606
616
|
function fnAfterQueryProcessing(oEvent) {
|
|
@@ -615,9 +625,11 @@ sap.ui.define([
|
|
|
615
625
|
}
|
|
616
626
|
|
|
617
627
|
function fnTokensChanged(oEvent) {
|
|
618
|
-
//When reset button is clicked no batch call should be triggered
|
|
628
|
+
// When reset button is clicked no batch call should be triggered.
|
|
629
|
+
// Also clear the user-edit flag so a subsequent Go press re-enables Save/SaveAs correctly [if clear tokens and resetFilter are clicked].
|
|
619
630
|
if (oEvent.getParameter("reset")) {
|
|
620
|
-
|
|
631
|
+
bTokensModifiedByUser = false;
|
|
632
|
+
fnSetCreationAllowed(false);
|
|
621
633
|
return;
|
|
622
634
|
}
|
|
623
635
|
var oSmartFilterbar = oState.oSmartFilterbar;
|
|
@@ -627,14 +639,18 @@ sap.ui.define([
|
|
|
627
639
|
// manual token edits. tokensChangedByUser fires first on a user edit and sets
|
|
628
640
|
// bTokensModifiedByUser — use that to tell the two cases apart.
|
|
629
641
|
if (bTokensModifiedByUser) {
|
|
630
|
-
// User manually
|
|
631
|
-
//
|
|
632
|
-
|
|
633
|
-
|
|
642
|
+
// User manually removed a token — mark the variant dirty and fall through
|
|
643
|
+
// to update SFB state and trigger search with the remaining tokens.
|
|
644
|
+
// Keep Save/SaveAs disabled (do NOT call fnSetCreationAllowed(true) here)
|
|
645
|
+
// until a fresh Go press resolves new tokens.
|
|
646
|
+
if (oSmartFilterbar.getSmartVariant()) {
|
|
647
|
+
oSmartFilterbar.getSmartVariant().currentVariantSetModified(true);
|
|
648
|
+
}
|
|
649
|
+
} else {
|
|
650
|
+
// AI-resolved result path: reset the user-edit flag and re-enable Save/SaveAs.
|
|
651
|
+
fnSetCreationAllowed(true);
|
|
634
652
|
}
|
|
635
|
-
// AI-resolved result path: reset the user-edit flag and re-enable Save/SaveAs.
|
|
636
653
|
bTokensModifiedByUser = false;
|
|
637
|
-
fnSetCreationAllowed(true);
|
|
638
654
|
var sSmartFilterBarId = oSmartFilterbar.getId();
|
|
639
655
|
var oSmartFilterBarWrapper = oTemplateUtils.oCommonUtils.getControlStateWrapperById(sSmartFilterBarId, "SmartFilterBar");
|
|
640
656
|
var oSmartFilterBarVariant = oSmartFilterBarWrapper.getState();
|
|
@@ -727,21 +743,19 @@ sap.ui.define([
|
|
|
727
743
|
oPresentationVariant.SortOrder = undefined; // Clear existing sort order before applying new one
|
|
728
744
|
|
|
729
745
|
// Set new sort order (empty array clears sorting)
|
|
730
|
-
|
|
731
|
-
const aSortersMapped = aSorters.map(function(oSorter) {
|
|
746
|
+
const aSortersMapped = (aSorters && aSorters.length ) ? aSorters.map(function (oSorter) {
|
|
732
747
|
return {
|
|
733
748
|
Property: oSorter.key,
|
|
734
749
|
Descending: !!oSorter.descending
|
|
735
750
|
};
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
}
|
|
751
|
+
}) : undefined;
|
|
752
|
+
oPresentationVariant.SortOrder = aSortersMapped;
|
|
753
|
+
bApplyingSorting = true;
|
|
754
|
+
try {
|
|
755
|
+
oUiState.setPresentationVariant(oPresentationVariant);
|
|
756
|
+
oControl.setUiState(oUiState);
|
|
757
|
+
} finally {
|
|
758
|
+
bApplyingSorting = false;
|
|
745
759
|
}
|
|
746
760
|
|
|
747
761
|
} catch (error) {
|
|
@@ -921,12 +935,15 @@ sap.ui.define([
|
|
|
921
935
|
var sQuery = oGenericData.easyFilter && oGenericData.easyFilter.query;
|
|
922
936
|
if (oEasyFilterBar) {
|
|
923
937
|
if (sQuery) {
|
|
924
|
-
oEasyFilterBar.setQuery(sQuery);
|
|
925
|
-
// Only auto-trigger Go if "Apply Automatically" is checked on the variant.
|
|
926
|
-
// If not checked, only the search string is restored — no search triggered.
|
|
927
938
|
var bExecuteOnSelect = oEvent.getParameter("executeOnSelect");
|
|
928
939
|
if (bExecuteOnSelect) {
|
|
940
|
+
// AutoApply on: Go press resolves fresh tokens — no need to pre-clear.
|
|
929
941
|
oEasyFilterBar.onGoPress(sQuery);
|
|
942
|
+
} else {
|
|
943
|
+
// AutoApply off: clear stale tokens/thumbs/reset-button from the
|
|
944
|
+
// previous variant, then restore the new variant's query text.
|
|
945
|
+
oEasyFilterBar.resetState(false);
|
|
946
|
+
oEasyFilterBar.setQuery(sQuery);
|
|
930
947
|
}
|
|
931
948
|
} else {
|
|
932
949
|
oEasyFilterBar.resetState(false);
|
|
@@ -799,12 +799,18 @@ AI_LINK_NOTICE_TITLE = Created with AI. Verify results before use.
|
|
|
799
799
|
# XTIT: EasyFill fillable fields title
|
|
800
800
|
EASY_FILL_FILLED_FIELDS = Filled Fields
|
|
801
801
|
|
|
802
|
+
# XTIT: EasyFill unfilled fields title (condensed view section)
|
|
803
|
+
EASY_FILL_UNFILLED_FIELDS = Unfilled Fields
|
|
804
|
+
|
|
802
805
|
# XTIT: EasyFill unable to fill fields title
|
|
803
806
|
EASY_FILL_UNABLE_FILL = Unable to Fill
|
|
804
807
|
|
|
805
808
|
# XTXT: EasyFill warning message
|
|
806
809
|
EASY_FILL_WARNING_MESSAGE = The fields couldn\u2019t be filled in, for example because they are read-only fields or because you\u2019re not authorized to change them.
|
|
807
810
|
|
|
811
|
+
# XMSG: EasyFill read-only fields warning shown in header
|
|
812
|
+
EASY_FILL_READ_ONLY_WARNING = Some fields couldn't be filled. You can view them in the Unfilled Fields section.
|
|
813
|
+
|
|
808
814
|
# XTIT: EasyFill proposed values
|
|
809
815
|
EASY_FILL_PROPOSED_VALUES = Proposed Values
|
|
810
816
|
|
|
@@ -835,6 +841,9 @@ EASY_FILL_TABLE_VIEW_PREVIOUS = Previous
|
|
|
835
841
|
# XBUT: EasyFill table preview new values segment
|
|
836
842
|
EASY_FILL_TABLE_VIEW_NEW = New
|
|
837
843
|
|
|
844
|
+
# XTXT: Text for the GenericTag shown next to a table title when the AI tried to fill read-only fields in that table
|
|
845
|
+
EASYFILL_TABLE_READONLY_TAG=Highlighted fields not filled
|
|
846
|
+
|
|
838
847
|
# XTXT: EasyFill table row label used in validation messages
|
|
839
848
|
EASY_FILL_TABLE_ROW_LABEL = Row {0}
|
|
840
849
|
|
|
@@ -852,3 +861,18 @@ EASY_FILL_CONDENSED_VIEW_TOOLTIP=Switch to condensed layout
|
|
|
852
861
|
|
|
853
862
|
# XTOL: EasyFill detailed view mode tooltip
|
|
854
863
|
EASY_FILL_DETAILED_VIEW_TOOLTIP=Switch to object page layout
|
|
864
|
+
|
|
865
|
+
# XTOL: EasyFill enter full screen tooltip (shows Maximize action)
|
|
866
|
+
EASY_FILL_ENTER_FULL_SCREEN_TOOLTIP=Maximize Filled Fields Panel
|
|
867
|
+
|
|
868
|
+
# XTOL: EasyFill exit full screen tooltip (shows Minimize action)
|
|
869
|
+
EASY_FILL_EXIT_FULL_SCREEN_TOOLTIP=Minimize Filled Fields Panel
|
|
870
|
+
|
|
871
|
+
# XTXT: EasyFill previously label shown next to the current field value
|
|
872
|
+
EASY_FILL_PREVIOUSLY_LABEL=Previously:
|
|
873
|
+
|
|
874
|
+
# XMSG: EasyFill warning when the AI proposed multiple new rows but only one is supported per table
|
|
875
|
+
EASY_FILL_TABLE_MULTIPLE_NEW_ROWS_WARNING=Only one row can be added at a time. Repeat the request to add additional rows.
|
|
876
|
+
|
|
877
|
+
# XMSG: EasyFill warning shown when adding new rows is not allowed by the table configuration
|
|
878
|
+
EASY_FILL_TABLE_NEW_ROW_NOT_ALLOWED=Row not added. Either row creation isn't enabled, or Easy Fill doesn't support adding rows to this table.
|
|
@@ -500,11 +500,11 @@ RTA_CONTEXT_MENU_CONFIG=\u0627\u0644\u062A\u0643\u0648\u064A\u0646
|
|
|
500
500
|
|
|
501
501
|
EASY_FILL_TITLE=\u0645\u0644\u0621 \u0633\u0647\u0644
|
|
502
502
|
|
|
503
|
-
EASY_FILL_FIRST_LABEL_TEXT=\u064A\u0645\u0643\u0646\u0643 \u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0645\u064A\u0632\u0629 \u0627\u0644\u0645\u0644\u0621 \u0627\u0644\u0633\u0647\u0644 \u0644\u0645\u0644\u0621 \u062D\u0642\u0648\u0644 \u0645\u062A\u0639\u062F\u062F\u0629 \u0641\u064A \u0648\u0642\u062A \u0648\u0627\u062D\u062F.
|
|
503
|
+
EASY_FILL_FIRST_LABEL_TEXT=\u064A\u0645\u0643\u0646\u0643 \u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0645\u064A\u0632\u0629 \u0627\u0644\u0645\u0644\u0621 \u0627\u0644\u0633\u0647\u0644 \u0644\u0645\u0644\u0621 \u062D\u0642\u0648\u0644 \u0645\u062A\u0639\u062F\u062F\u0629 \u0641\u064A \u0648\u0642\u062A \u0648\u0627\u062D\u062F \u0628\u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0627\u0644\u0644\u063A\u0629 \u0627\u0644\u0637\u0628\u064A\u0639\u064A\u0629.
|
|
504
504
|
|
|
505
|
-
EASY_FILL_SECOND_LABEL_TEXT=\
|
|
505
|
+
EASY_FILL_SECOND_LABEL_TEXT=\u0623\u062F\u062E\u0644 \u0623\u064A \u0645\u0639\u0644\u0648\u0645\u0627\u062A \u062A\u0633\u0627\u0639\u062F \u0627\u0644\u0630\u0643\u0627\u0621 \u0627\u0644\u0627\u0635\u0637\u0646\u0627\u0639\u064A \u0639\u0644\u0649 \u0645\u0644\u0621 \u0627\u0644\u062D\u0642\u0648\u0644 \u0627\u0644\u0645\u0646\u0627\u0633\u0628\u0629. \u064A\u0645\u0643\u0646\u0643 \u0623\u064A\u0636\u064B\u0627 \u062A\u062D\u0645\u064A\u0644 \u0645\u0644\u0641 \u064A\u062D\u062A\u0648\u064A \u0639\u0644\u0649 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062A \u0630\u0627\u062A \u0627\u0644\u0635\u0644\u0629.
|
|
506
506
|
|
|
507
|
-
EASY_FILL_TEXTAREA_PLACEHOLDER=\
|
|
507
|
+
EASY_FILL_TEXTAREA_PLACEHOLDER=\u0623\u062F\u062E\u0644 \u0623\u064A \u0645\u0639\u0644\u0648\u0645\u0627\u062A \u062A\u0633\u0627\u0639\u062F \u0627\u0644\u0630\u0643\u0627\u0621 \u0627\u0644\u0627\u0635\u0637\u0646\u0627\u0639\u064A \u0639\u0644\u0649 \u0645\u0644\u0621 \u0627\u0644\u062D\u0642\u0648\u0644 \u0627\u0644\u0645\u0646\u0627\u0633\u0628\u0629. \u0644\u0627\u062D\u0638 \u0623\u0646 \u0627\u0644\u0630\u0643\u0627\u0621 \u0627\u0644\u0627\u0635\u0637\u0646\u0627\u0639\u064A \u0644\u0627 \u064A\u0645\u0643\u0646\u0647 \u0627\u0644\u0645\u0633\u0627\u0639\u062F\u0629 \u0625\u0644\u0627 \u0641\u064A \u0627\u0644\u062D\u0642\u0648\u0644 \u0648\u0627\u0644\u0635\u0641\u0648\u0641 \u0627\u0644\u0645\u0631\u0626\u064A\u0629 \u0641\u0642\u0637.
|
|
508
508
|
|
|
509
509
|
EASY_FILL_ILLUSTRATION_TITLE_INITIAL=\u062F\u0639\u0646\u0627 \u0646\u0645\u0644\u0623 \u0628\u0639\u0636 \u0627\u0644\u062D\u0642\u0648\u0644
|
|
510
510
|
|
|
@@ -520,9 +520,7 @@ EASY_FILL_ILLUSTRATION_DESCRIPTION_ERROR=\u064A\u0628\u062F\u0648 \u0623\u0646\u
|
|
|
520
520
|
|
|
521
521
|
EASY_FILL_CONFIRM=\u062A\u0623\u0643\u064A\u062F
|
|
522
522
|
|
|
523
|
-
AI_LINK_NOTICE_TITLE=\u062A\u0645 \u0627\u0644\u0625\u0646\u0634\u0627\u0621 \u0628\
|
|
524
|
-
|
|
525
|
-
AI_WARNING_TEXT=\u062A\u062D\u0642\u0642 \u0645\u0646 \u0635\u062D\u0629 \u0627\u0644\u0646\u062A\u0627\u0626\u062C \u0642\u0628\u0644 \u0627\u0644\u0627\u0633\u062A\u062E\u062F\u0627\u0645.
|
|
523
|
+
AI_LINK_NOTICE_TITLE=\u062A\u0645 \u0627\u0644\u0625\u0646\u0634\u0627\u0621 \u0628\u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0627\u0644\u0630\u0643\u0627\u0621 \u0627\u0644\u0627\u0635\u0637\u0646\u0627\u0639\u064A. \u062A\u062D\u0642\u0642 \u0645\u0646 \u0635\u062D\u0629 \u0627\u0644\u0646\u062A\u0627\u0626\u062C \u0642\u0628\u0644 \u0627\u0644\u0627\u0633\u062A\u062E\u062F\u0627\u0645.
|
|
526
524
|
|
|
527
525
|
EASY_FILL_FILLED_FIELDS=\u0627\u0644\u062D\u0642\u0648\u0644 \u0627\u0644\u0645\u0645\u0644\u0648\u0621\u0629
|
|
528
526
|
|
|
@@ -534,7 +532,7 @@ EASY_FILL_PROPOSED_VALUES=\u0627\u0644\u0642\u064A\u0645 \u0627\u0644\u0645\u064
|
|
|
534
532
|
|
|
535
533
|
EASY_FILL_PREVIOUS_VALUES=\u0627\u0644\u0642\u064A\u0645 \u0627\u0644\u0633\u0627\u0628\u0642\u0629
|
|
536
534
|
|
|
537
|
-
EASY_FILL_POPOVER_AI_TEXT_1=\u062A\u0645 \u0625\u0646\u0634\u0627\u0621 \u0627\u0644\u0645\u062D\u062A\u0648\u0649 \u062C\u0632\u0626\u064A\u064B\u0627 \u0623\u0648 \u0643\u0644\u064A\u064B\u0627 \u0628\u0648\u0627\u0633\u0637\u0629 \
|
|
535
|
+
EASY_FILL_POPOVER_AI_TEXT_1=\u062A\u0645 \u0625\u0646\u0634\u0627\u0621 \u0627\u0644\u0645\u062D\u062A\u0648\u0649 \u062C\u0632\u0626\u064A\u064B\u0627 \u0623\u0648 \u0643\u0644\u064A\u064B\u0627 \u0628\u0648\u0627\u0633\u0637\u0629 \u0627\u0644\u0630\u0643\u0627\u0621 \u0627\u0644\u0627\u0635\u0637\u0646\u0627\u0639\u064A.
|
|
538
536
|
|
|
539
537
|
EASY_FILL_POPOVER_AI_TEXT_2=\u0642\u062F \u064A\u062D\u062A\u0648\u064A \u0627\u0644\u0645\u062D\u062A\u0648\u0649 \u0627\u0644\u0645\u0646\u0634\u0623 \u0628\u0648\u0627\u0633\u0637\u0629 \u0627\u0644\u0630\u0643\u0627\u0621 \u0627\u0644\u0627\u0635\u0637\u0646\u0627\u0639\u064A \u0639\u0644\u0649 \u0628\u064A\u0627\u0646\u0627\u062A \u063A\u064A\u0631 \u062F\u0642\u064A\u0642\u0629 \u0628\u0633\u0628\u0628 \u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0645\u0635\u0627\u062F\u0631 \u0645\u0639\u0644\u0648\u0645\u0627\u062A \u0645\u062A\u0639\u062F\u062F\u0629. \u062A\u062D\u0642\u0642 \u0645\u0646 \u0627\u0644\u0646\u062A\u0627\u0626\u062C \u0642\u0628\u0644 \u0627\u0644\u0627\u0633\u062A\u062E\u062F\u0627\u0645.
|
|
540
538
|
|
|
@@ -550,6 +548,8 @@ EASY_FILL_TABLE_VIEW_PREVIOUS=\u0627\u0644\u0633\u0627\u0628\u0642
|
|
|
550
548
|
|
|
551
549
|
EASY_FILL_TABLE_VIEW_NEW=\u062C\u062F\u064A\u062F
|
|
552
550
|
|
|
551
|
+
EASYFILL_TABLE_READONLY_TAG=\u0644\u0645 \u064A\u062A\u0645 \u0645\u0644\u0621 \u0627\u0644\u062D\u0642\u0648\u0644 \u0627\u0644\u0645\u0645\u064A\u0632\u0629
|
|
552
|
+
|
|
553
553
|
EASY_FILL_TABLE_ROW_LABEL=\u0627\u0644\u0635\u0641 {0}
|
|
554
554
|
|
|
555
555
|
EASY_FILL_TABLE_VALIDATION_MESSAGE=\u0628\u0639\u0636 \u0642\u064A\u0645 \u0627\u0644\u062C\u062F\u0648\u0644 \u063A\u064A\u0631 \u0635\u0627\u0644\u062D\u0629 \u0644\u0645\u0633\u0627\u0639\u062F\u0629 \u0627\u0644\u0625\u062F\u062E\u0627\u0644\: {0}. \u0642\u0645 \u0628\u062A\u062D\u062F\u064A\u062B \u0637\u0644\u0628\u0643 \u0648\u062D\u0627\u0648\u0644 \u0645\u0631\u0629 \u0623\u062E\u0631\u0649.
|
|
@@ -557,3 +557,11 @@ EASY_FILL_TABLE_VALIDATION_MESSAGE=\u0628\u0639\u0636 \u0642\u064A\u0645 \u0627\
|
|
|
557
557
|
EASY_FILL_TABLE_INVALID_CELL_SUFFIX=(\u063A\u064A\u0631 \u0635\u0627\u0644\u062D)
|
|
558
558
|
|
|
559
559
|
EASY_FILL_SECTION_HEADER=\u0627\u0644\u0645\u0642\u062F\u0645\u0629
|
|
560
|
+
|
|
561
|
+
EASY_FILL_CONDENSED_VIEW_TOOLTIP=\u062A\u0628\u062F\u064A\u0644 \u0625\u0644\u0649 \u0627\u0644\u0645\u062E\u0637\u0637 \u0627\u0644\u0645\u0643\u062B\u0641
|
|
562
|
+
|
|
563
|
+
EASY_FILL_DETAILED_VIEW_TOOLTIP=\u062A\u0628\u062F\u064A\u0644 \u0625\u0644\u0649 \u0645\u062E\u0637\u0637 \u0635\u0641\u062D\u0629 \u0627\u0644\u0643\u0627\u0626\u0646
|
|
564
|
+
|
|
565
|
+
EASY_FILL_ENTER_FULL_SCREEN_TOOLTIP=\u062A\u0643\u0628\u064A\u0631 \u0644\u0648\u062D\u0629 \u0627\u0644\u062D\u0642\u0648\u0644 \u0627\u0644\u0645\u0645\u0644\u0648\u0621\u0629
|
|
566
|
+
|
|
567
|
+
EASY_FILL_EXIT_FULL_SCREEN_TOOLTIP=\u062A\u0635\u063A\u064A\u0631 \u0644\u0648\u062D\u0629 \u0627\u0644\u062D\u0642\u0648\u0644 \u0627\u0644\u0645\u0645\u0644\u0648\u0621\u0629
|
|
@@ -500,11 +500,11 @@ RTA_CONTEXT_MENU_CONFIG=\u041A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u
|
|
|
500
500
|
|
|
501
501
|
EASY_FILL_TITLE=\u041B\u0435\u0441\u043D\u043E \u043F\u043E\u043F\u044A\u043B\u0432\u0430\u043D\u0435
|
|
502
502
|
|
|
503
|
-
EASY_FILL_FIRST_LABEL_TEXT=\u041C\u043E\u0436\u0435 \u0434\u0430 \u0438\u0437\u043F\u043E\u043B\u0437\u0432\u0430\u0442\u0435 \u0444\u0443\u043D\u043A\u0446\u0438\u044F\u0442\u0430 \u0437\u0430 \u043B\u0435\u0441\u043D\u043E \u043F\u043E\u043F\u044A\u043B\u0432\u0430\u043D\u0435, \u0437\u0430 \u0434\u0430 \u043F\u043E\u043F\u044A\u043B\u043D\u0438\u0442\u0435 \u043D\u044F\u043A\u043E\u043B\u043A\u043E \u043F\u043E\u043B\u0435\u0442\u0430 \u0435\u0434\u043D\u043E\u0432\u0440\u0435\u043C\u0435\u043D\u043D\u043E.
|
|
503
|
+
EASY_FILL_FIRST_LABEL_TEXT=\u041C\u043E\u0436\u0435 \u0434\u0430 \u0438\u0437\u043F\u043E\u043B\u0437\u0432\u0430\u0442\u0435 \u0444\u0443\u043D\u043A\u0446\u0438\u044F\u0442\u0430 \u0437\u0430 \u043B\u0435\u0441\u043D\u043E \u043F\u043E\u043F\u044A\u043B\u0432\u0430\u043D\u0435, \u0437\u0430 \u0434\u0430 \u043F\u043E\u043F\u044A\u043B\u043D\u0438\u0442\u0435 \u043D\u044F\u043A\u043E\u043B\u043A\u043E \u043F\u043E\u043B\u0435\u0442\u0430 \u0435\u0434\u043D\u043E\u0432\u0440\u0435\u043C\u0435\u043D\u043D\u043E, \u043A\u0430\u0442\u043E \u0438\u0437\u043F\u043E\u043B\u0437\u0432\u0430\u0442\u0435 \u0435\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043D \u0435\u0437\u0438\u043A.
|
|
504
504
|
|
|
505
|
-
EASY_FILL_SECOND_LABEL_TEXT=\
|
|
505
|
+
EASY_FILL_SECOND_LABEL_TEXT=\u0412\u044A\u0432\u0435\u0434\u0435\u0442\u0435 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F, \u043A\u043E\u044F\u0442\u043E \u043F\u043E\u043C\u0430\u0433\u0430 \u043D\u0430 AI \u0434\u0430 \u043F\u043E\u043F\u044A\u043B\u043D\u0438 \u0441\u044A\u043E\u0442\u0432\u0435\u0442\u043D\u0438\u0442\u0435 \u043F\u043E\u043B\u0435\u0442\u0430. \u041C\u043E\u0436\u0435 \u0441\u044A\u0449\u043E \u0434\u0430 \u043A\u0430\u0447\u0438\u0442\u0435 \u0444\u0430\u0439\u043B, \u0441\u044A\u0434\u044A\u0440\u0436\u0430\u0449 \u0440\u0435\u043B\u0435\u0432\u0430\u043D\u0442\u043D\u0430\u0442\u0430 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F.
|
|
506
506
|
|
|
507
|
-
EASY_FILL_TEXTAREA_PLACEHOLDER=\
|
|
507
|
+
EASY_FILL_TEXTAREA_PLACEHOLDER=\u0412\u044A\u0432\u0435\u0434\u0435\u0442\u0435 \u0432\u0441\u044F\u043A\u0430 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F, \u043A\u043E\u044F\u0442\u043E \u043F\u043E\u043C\u0430\u0433\u0430 \u043D\u0430 AI \u0434\u0430 \u043F\u043E\u043F\u044A\u043B\u043D\u0438 \u0441\u044A\u043E\u0442\u0432\u0435\u0442\u043D\u0438\u0442\u0435 \u043F\u043E\u043B\u0435\u0442\u0430. \u0418\u043C\u0430\u0439\u0442\u0435 \u043F\u0440\u0435\u0434\u0432\u0438\u0434, \u0447\u0435 AI \u043C\u043E\u0436\u0435 \u0434\u0430 \u043F\u043E\u043C\u043E\u0433\u043D\u0435 \u0441\u0430\u043C\u043E \u0441 \u0432\u0438\u0434\u0438\u043C\u0438 \u043F\u043E\u043B\u0435\u0442\u0430 \u0438 \u0440\u0435\u0434\u043E\u0432\u0435.
|
|
508
508
|
|
|
509
509
|
EASY_FILL_ILLUSTRATION_TITLE_INITIAL=\u041D\u0435\u043A\u0430 \u043F\u043E\u043F\u044A\u043B\u043D\u0438\u043C \u043D\u044F\u043A\u043E\u0438 \u043F\u043E\u043B\u0435\u0442\u0430
|
|
510
510
|
|
|
@@ -520,9 +520,7 @@ EASY_FILL_ILLUSTRATION_DESCRIPTION_ERROR=\u0412\u044A\u0437\u043D\u0438\u043A\u0
|
|
|
520
520
|
|
|
521
521
|
EASY_FILL_CONFIRM=\u041F\u043E\u0442\u0432\u044A\u0440\u0436\u0434\u0430\u0432\u0430\u043D\u0435
|
|
522
522
|
|
|
523
|
-
AI_LINK_NOTICE_TITLE=\u0421\u044A\u0437\u0434\u0430\u0434\u0435\u043D\u043E \u0441 AI.
|
|
524
|
-
|
|
525
|
-
AI_WARNING_TEXT=\u041F\u0440\u043E\u0432\u0435\u0440\u0435\u0442\u0435 \u0440\u0435\u0437\u0443\u043B\u0442\u0430\u0442\u0438\u0442\u0435, \u043F\u0440\u0435\u0434\u0438 \u0434\u0430 \u0433\u0438 \u0438\u0437\u043F\u043E\u043B\u0437\u0432\u0430\u0442\u0435.
|
|
523
|
+
AI_LINK_NOTICE_TITLE=\u0421\u044A\u0437\u0434\u0430\u0434\u0435\u043D\u043E \u0441 AI. \u041F\u0440\u043E\u0432\u0435\u0440\u0435\u0442\u0435 \u0440\u0435\u0437\u0443\u043B\u0442\u0430\u0442\u0438\u0442\u0435 \u043F\u0440\u0435\u0434\u0438 \u0443\u043F\u043E\u0442\u0440\u0435\u0431\u0430.
|
|
526
524
|
|
|
527
525
|
EASY_FILL_FILLED_FIELDS=\u041F\u043E\u043F\u044A\u043B\u043D\u0435\u043D\u0438 \u043F\u043E\u043B\u0435\u0442\u0430
|
|
528
526
|
|
|
@@ -534,7 +532,7 @@ EASY_FILL_PROPOSED_VALUES=\u041F\u0440\u0435\u0434\u043B\u043E\u0436\u0435\u043D
|
|
|
534
532
|
|
|
535
533
|
EASY_FILL_PREVIOUS_VALUES=\u041F\u0440\u0435\u0434\u0438\u0448\u043D\u0438 \u0441\u0442\u043E\u0439\u043D\u043E\u0441\u0442\u0438
|
|
536
534
|
|
|
537
|
-
EASY_FILL_POPOVER_AI_TEXT_1=\
|
|
535
|
+
EASY_FILL_POPOVER_AI_TEXT_1=\u0421\u044A\u0434\u044A\u0440\u0436\u0430\u043D\u0438\u0435\u0442\u043E \u0435 \u0433\u0435\u043D\u0435\u0440\u0438\u0440\u0430\u043D\u043E \u0447\u0430\u0441\u0442\u0438\u0447\u043D\u043E \u0438\u043B\u0438 \u0438\u0437\u0446\u044F\u043B\u043E \u043E\u0442 AI.
|
|
538
536
|
|
|
539
537
|
EASY_FILL_POPOVER_AI_TEXT_2=\u0412 \u0441\u044A\u0434\u044A\u0440\u0436\u0430\u043D\u0438\u0435\u0442\u043E, \u0433\u0435\u043D\u0435\u0440\u0438\u0440\u0430\u043D\u043E \u043E\u0442 AI, \u043C\u043E\u0436\u0435 \u0434\u0430 \u0438\u043C\u0430 \u043D\u0435\u0442\u043E\u0447\u043D\u043E\u0441\u0442\u0438 \u043F\u043E\u0440\u0430\u0434\u0438 \u0438\u0437\u043F\u043E\u043B\u0437\u0432\u0430\u043D\u0435\u0442\u043E \u043D\u0430 \u043C\u043D\u043E\u0436\u0435\u0441\u0442\u0432\u043E \u0438\u0437\u0442\u043E\u0447\u043D\u0438\u0446\u0438 \u043D\u0430 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F. \u041F\u0440\u043E\u0432\u0435\u0440\u0435\u0442\u0435 \u0440\u0435\u0437\u0443\u043B\u0442\u0430\u0442\u0438\u0442\u0435 \u043F\u0440\u0435\u0434\u0438 \u0434\u0430 \u0433\u0438 \u0438\u0437\u043F\u043E\u043B\u0437\u0432\u0430\u0442\u0435.
|
|
540
538
|
|
|
@@ -550,6 +548,8 @@ EASY_FILL_TABLE_VIEW_PREVIOUS=\u041D\u0430\u0437\u0430\u0434
|
|
|
550
548
|
|
|
551
549
|
EASY_FILL_TABLE_VIEW_NEW=\u041D\u043E\u0432\u043E
|
|
552
550
|
|
|
551
|
+
EASYFILL_TABLE_READONLY_TAG=\u041E\u0441\u0432\u0435\u0442\u0435\u043D\u0438\u0442\u0435 \u043F\u043E\u043B\u0435\u0442\u0430 \u043D\u0435 \u0441\u0430 \u043F\u043E\u043F\u044A\u043B\u043D\u0435\u043D\u0438
|
|
552
|
+
|
|
553
553
|
EASY_FILL_TABLE_ROW_LABEL=\u0420\u0435\u0434 {0}
|
|
554
554
|
|
|
555
555
|
EASY_FILL_TABLE_VALIDATION_MESSAGE=\u041D\u044F\u043A\u043E\u0438 \u0441\u0442\u043E\u0439\u043D\u043E\u0441\u0442\u0438 \u043E\u0442 \u0442\u0430\u0431\u043B\u0438\u0446\u0430\u0442\u0430 \u0441\u0430 \u043D\u0435\u0432\u0430\u043B\u0438\u0434\u043D\u0438 \u0437\u0430 \u043F\u043E\u043C\u043E\u0449\u0442\u0430 \u043F\u0440\u0438 \u0432\u044A\u0432\u0435\u0436\u0434\u0430\u043D\u0435 \u043D\u0430 \u0441\u0442\u043E\u0439\u043D\u043E\u0441\u0442\: {0}. \u0410\u043A\u0442\u0443\u0430\u043B\u0438\u0437\u0438\u0440\u0430\u0439\u0442\u0435 \u0437\u0430\u044F\u0432\u043A\u0430\u0442\u0430 \u0441\u0438 \u0438 \u043E\u043F\u0438\u0442\u0430\u0439\u0442\u0435 \u043E\u0442\u043D\u043E\u0432\u043E.
|
|
@@ -557,3 +557,11 @@ EASY_FILL_TABLE_VALIDATION_MESSAGE=\u041D\u044F\u043A\u043E\u0438 \u0441\u0442\u
|
|
|
557
557
|
EASY_FILL_TABLE_INVALID_CELL_SUFFIX=(\u043D\u0435\u0432\u0430\u043B\u0438\u0434\u043D\u043E)
|
|
558
558
|
|
|
559
559
|
EASY_FILL_SECTION_HEADER=\u0417\u0430\u0433\u043B\u0430\u0432\u043A\u0430
|
|
560
|
+
|
|
561
|
+
EASY_FILL_CONDENSED_VIEW_TOOLTIP=\u041F\u0440\u0435\u0432\u043A\u043B\u044E\u0447\u0432\u0430\u043D\u0435 \u043A\u044A\u043C \u0441\u0431\u0438\u0442 \u0444\u043E\u0440\u043C\u0430\u0442
|
|
562
|
+
|
|
563
|
+
EASY_FILL_DETAILED_VIEW_TOOLTIP=\u041F\u0440\u0435\u0432\u043A\u043B\u044E\u0447\u0432\u0430\u043D\u0435 \u043A\u044A\u043C \u0444\u043E\u0440\u043C\u0430\u0442 \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430 \u0437\u0430 \u043E\u0431\u0435\u043A\u0442
|
|
564
|
+
|
|
565
|
+
EASY_FILL_ENTER_FULL_SCREEN_TOOLTIP=\u041C\u0430\u043A\u0441\u0438\u043C\u0438\u0437\u0438\u0440\u0430\u043D\u0435 \u043D\u0430 \u043F\u0430\u043D\u0435\u043B\u0430 \u0437\u0430 \u043F\u043E\u043F\u044A\u043B\u043D\u0435\u043D\u0438 \u043F\u043E\u043B\u0435\u0442\u0430
|
|
566
|
+
|
|
567
|
+
EASY_FILL_EXIT_FULL_SCREEN_TOOLTIP=\u041C\u0438\u043D\u0438\u043C\u0438\u0437\u0438\u0440\u0430\u043D\u0435 \u043D\u0430 \u043F\u0430\u043D\u0435\u043B\u0430 \u0437\u0430 \u043F\u043E\u043F\u044A\u043B\u043D\u0435\u043D\u0438 \u043F\u043E\u043B\u0435\u0442\u0430
|
|
@@ -500,11 +500,11 @@ RTA_CONTEXT_MENU_CONFIG=Configuraci\u00F3
|
|
|
500
500
|
|
|
501
501
|
EASY_FILL_TITLE=Easy Fill
|
|
502
502
|
|
|
503
|
-
EASY_FILL_FIRST_LABEL_TEXT=Podeu utilitzar
|
|
503
|
+
EASY_FILL_FIRST_LABEL_TEXT=Podeu utilitzar la funci\u00F3 Easy Fill per emplenar diversos camps alhora fent servir llenguatge natural.
|
|
504
504
|
|
|
505
|
-
EASY_FILL_SECOND_LABEL_TEXT=
|
|
505
|
+
EASY_FILL_SECOND_LABEL_TEXT=Proporcioneu informaci\u00F3 que ajudi la IA a emplenar els camps adequats. Tamb\u00E9 podeu carregar un fitxer que contingui la informaci\u00F3 rellevant.
|
|
506
506
|
|
|
507
|
-
EASY_FILL_TEXTAREA_PLACEHOLDER=Proporcioneu
|
|
507
|
+
EASY_FILL_TEXTAREA_PLACEHOLDER=Proporcioneu informaci\u00F3 que ajudi la IA a emplenar els camps adequats. Tingueu en compte que la IA nom\u00E9s pot ajudar amb camps i files visibles.
|
|
508
508
|
|
|
509
509
|
EASY_FILL_ILLUSTRATION_TITLE_INITIAL=Ara emplenarem alguns camps
|
|
510
510
|
|
|
@@ -520,9 +520,7 @@ EASY_FILL_ILLUSTRATION_DESCRIPTION_ERROR=Sembla que s'ha produ\u00EFt un error.
|
|
|
520
520
|
|
|
521
521
|
EASY_FILL_CONFIRM=Confirmar
|
|
522
522
|
|
|
523
|
-
AI_LINK_NOTICE_TITLE=
|
|
524
|
-
|
|
525
|
-
AI_WARNING_TEXT=Verifiqueu els resultats abans de la seva utilitzaci\u00F3.
|
|
523
|
+
AI_LINK_NOTICE_TITLE=Aquest contingut s'ha creat amb IA. Verifiqueu-ne els resultats abans d'utilitzar-lo.
|
|
526
524
|
|
|
527
525
|
EASY_FILL_FILLED_FIELDS=Camps emplenats
|
|
528
526
|
|
|
@@ -534,7 +532,7 @@ EASY_FILL_PROPOSED_VALUES=Valors proposats
|
|
|
534
532
|
|
|
535
533
|
EASY_FILL_PREVIOUS_VALUES=Valors anteriors
|
|
536
534
|
|
|
537
|
-
EASY_FILL_POPOVER_AI_TEXT_1=El contingut s'ha generat
|
|
535
|
+
EASY_FILL_POPOVER_AI_TEXT_1=El contingut s'ha generat parcialment o completament amb IA.
|
|
538
536
|
|
|
539
537
|
EASY_FILL_POPOVER_AI_TEXT_2=El contingut generat per IA pot contenir imprecisions a causa de l'\u00FAs de diverses fonts d'informaci\u00F3. Comproveu els resultats abans d'utilitzar-los.
|
|
540
538
|
|
|
@@ -550,6 +548,8 @@ EASY_FILL_TABLE_VIEW_PREVIOUS=Anterior
|
|
|
550
548
|
|
|
551
549
|
EASY_FILL_TABLE_VIEW_NEW=Nou
|
|
552
550
|
|
|
551
|
+
EASYFILL_TABLE_READONLY_TAG=Camps ressaltats no emplenats
|
|
552
|
+
|
|
553
553
|
EASY_FILL_TABLE_ROW_LABEL=Fila {0}
|
|
554
554
|
|
|
555
555
|
EASY_FILL_TABLE_VALIDATION_MESSAGE=Alguns valors de taula no s\u00F3n v\u00E0lids per a l''ajuda per a entrades\: {0}. Actualitzeu la vostra sol\u00B7licitud i torneu-ho a provar.
|
|
@@ -557,3 +557,11 @@ EASY_FILL_TABLE_VALIDATION_MESSAGE=Alguns valors de taula no s\u00F3n v\u00E0lid
|
|
|
557
557
|
EASY_FILL_TABLE_INVALID_CELL_SUFFIX=(no v\u00E0lid)
|
|
558
558
|
|
|
559
559
|
EASY_FILL_SECTION_HEADER=Cap\u00E7alera
|
|
560
|
+
|
|
561
|
+
EASY_FILL_CONDENSED_VIEW_TOOLTIP=Canvia a disposici\u00F3 condensada
|
|
562
|
+
|
|
563
|
+
EASY_FILL_DETAILED_VIEW_TOOLTIP=Canvia a disposici\u00F3 de p\u00E0gina de l'objecte
|
|
564
|
+
|
|
565
|
+
EASY_FILL_ENTER_FULL_SCREEN_TOOLTIP=Panell Maximitzar camps emplenats
|
|
566
|
+
|
|
567
|
+
EASY_FILL_EXIT_FULL_SCREEN_TOOLTIP=Panell Minimitzar camps emplenats
|