survey-react 1.9.101 → 1.9.102

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/survey.react.d.ts CHANGED
@@ -17,6 +17,7 @@ declare module "helpers" {
17
17
  static getUnbindValue(value: any): any;
18
18
  static createCopy(obj: any): any;
19
19
  static isConvertibleToNumber(value: any): boolean;
20
+ static isValueObject(val: any): boolean;
20
21
  static isNumber(value: any): boolean;
21
22
  static getNumber(value: any): number;
22
23
  private static prepareStringToNumber;
@@ -705,6 +706,8 @@ declare module "expressions/expressions" {
705
706
  private consumer;
706
707
  private isArithmeticValue;
707
708
  constructor(operatorName: string, left?: any, right?: any, isArithmeticOp?: boolean);
709
+ private get requireStrictCompare();
710
+ private getIsOperandRequireStrict;
708
711
  getType(): string;
709
712
  get isArithmetic(): boolean;
710
713
  get isConjunction(): boolean;
@@ -752,6 +755,7 @@ declare module "expressions/expressions" {
752
755
  getType(): string;
753
756
  toString(func?: (op: Operand) => string): string;
754
757
  get correctValue(): any;
758
+ get requireStrictCompare(): boolean;
755
759
  evaluate(): any;
756
760
  setVariables(variables: Array<string>): void;
757
761
  protected getCorrectValue(value: any): any;
@@ -766,6 +770,7 @@ declare module "expressions/expressions" {
766
770
  private valueInfo;
767
771
  private useValueAsItIs;
768
772
  constructor(variableName: string);
773
+ get requireStrictCompare(): boolean;
769
774
  getType(): string;
770
775
  toString(func?: (op: Operand) => string): string;
771
776
  get variable(): string;
@@ -804,7 +809,7 @@ declare module "expressions/expressions" {
804
809
  static plusMinus(a: number, b: number, res: number): number;
805
810
  static unaryFunctions: HashTable<Function>;
806
811
  static binaryFunctions: HashTable<Function>;
807
- static isTwoValueEquals(x: any, y: any): boolean;
812
+ static isTwoValueEquals(x: any, y: any, ignoreOrder?: boolean): boolean;
808
813
  static operatorToString(operatorName: string): string;
809
814
  static convertValForDateCompare(val: any, second: any): any;
810
815
  static signs: HashTable<string>;
@@ -1560,6 +1565,7 @@ declare module "defaultCss/defaultV2Css" {
1560
1565
  root: string;
1561
1566
  rootMobile: string;
1562
1567
  rootReadOnly: string;
1568
+ rootCompact: string;
1563
1569
  rootBackgroundImage: string;
1564
1570
  container: string;
1565
1571
  header: string;
@@ -1813,6 +1819,8 @@ declare module "defaultCss/defaultV2Css" {
1813
1819
  itemDisabled: string;
1814
1820
  itemHover: string;
1815
1821
  label: string;
1822
+ labelTrue: string;
1823
+ labelFalse: string;
1816
1824
  switch: string;
1817
1825
  disabledLabel: string;
1818
1826
  sliderText: string;
@@ -1948,6 +1956,9 @@ declare module "defaultCss/defaultV2Css" {
1948
1956
  tableWrapper: string;
1949
1957
  rootAlternateRows: string;
1950
1958
  cell: string;
1959
+ errorsCell: string;
1960
+ errorsCellTop: string;
1961
+ errorsCellBottom: string;
1951
1962
  itemCell: string;
1952
1963
  row: string;
1953
1964
  headerCell: string;
@@ -2001,6 +2012,9 @@ declare module "defaultCss/defaultV2Css" {
2001
2012
  emptyCell: string;
2002
2013
  verticalCell: string;
2003
2014
  cellQuestionWrapper: string;
2015
+ errorsCell: string;
2016
+ errorsCellTop: string;
2017
+ errorsCellBottom: string;
2004
2018
  compact: string;
2005
2019
  };
2006
2020
  rating: {
@@ -2626,6 +2640,8 @@ declare module "panel" {
2626
2640
  endLoadingFromJson(): void;
2627
2641
  showTitle: boolean;
2628
2642
  get hasTitle(): boolean;
2643
+ delete(): void;
2644
+ protected removeFromParent(): void;
2629
2645
  protected canShowTitle(): boolean;
2630
2646
  showDescription: boolean;
2631
2647
  get _showDescription(): boolean;
@@ -2980,7 +2996,7 @@ declare module "panel" {
2980
2996
  */
2981
2997
  get page(): IPage;
2982
2998
  set page(val: IPage);
2983
- delete(): void;
2999
+ protected removeFromParent(): void;
2984
3000
  moveTo(container: IPanel, insertBefore?: any): boolean;
2985
3001
  /**
2986
3002
  * Returns the visible index of the panel in the survey. Commonly it is -1 and it doesn't show.
@@ -4434,6 +4450,7 @@ declare module "question_matrixdropdownrendered" {
4434
4450
  panel: PanelModel;
4435
4451
  isShowHideDetail: boolean;
4436
4452
  isActionsCell: boolean;
4453
+ isErrorsCell: boolean;
4437
4454
  isDragHandlerCell: boolean;
4438
4455
  private classNameValue;
4439
4456
  constructor();
@@ -4441,10 +4458,6 @@ declare module "question_matrixdropdownrendered" {
4441
4458
  get hasTitle(): boolean;
4442
4459
  get hasPanel(): boolean;
4443
4460
  get id(): number;
4444
- get showErrorOnTop(): boolean;
4445
- get showErrorOnBottom(): boolean;
4446
- private showErrorOnCore;
4447
- private getShowErrorLocation;
4448
4461
  get item(): ItemValue;
4449
4462
  set item(val: ItemValue);
4450
4463
  get isChoice(): boolean;
@@ -4464,7 +4477,9 @@ declare module "question_matrixdropdownrendered" {
4464
4477
  isDetailRow: boolean;
4465
4478
  isGhostRow: boolean;
4466
4479
  isAdditionalClasses: boolean;
4480
+ visible: boolean;
4467
4481
  row: MatrixDropdownRowModelBase;
4482
+ isErrorsRow: boolean;
4468
4483
  private static counter;
4469
4484
  private idValue;
4470
4485
  cells: Array<QuestionMatrixDropdownRenderedCell>;
@@ -4477,6 +4492,13 @@ declare module "question_matrixdropdownrendered" {
4477
4492
  };
4478
4493
  get className(): string;
4479
4494
  }
4495
+ export class QuestionMatrixDropdownRenderedErrorRow extends QuestionMatrixDropdownRenderedRow {
4496
+ isErrorsRow: boolean;
4497
+ constructor(cssClasses: any);
4498
+ get attributes(): {};
4499
+ get className(): string;
4500
+ onAfterCreated(): void;
4501
+ }
4480
4502
  export class QuestionMatrixDropdownRenderedTable extends Base {
4481
4503
  matrix: QuestionMatrixDropdownModelBase;
4482
4504
  private headerRowValue;
@@ -4498,6 +4520,8 @@ declare module "question_matrixdropdownrendered" {
4498
4520
  get headerRow(): QuestionMatrixDropdownRenderedRow;
4499
4521
  get footerRow(): QuestionMatrixDropdownRenderedRow;
4500
4522
  get allowRowsDragAndDrop(): boolean;
4523
+ private get showCellErrorsTop();
4524
+ private get showCellErrorsBottom();
4501
4525
  protected build(): void;
4502
4526
  updateShowTableAndAddRow(): void;
4503
4527
  onAddedRow(row: MatrixDropdownRowModelBase, index: number): void;
@@ -4508,6 +4532,7 @@ declare module "question_matrixdropdownrendered" {
4508
4532
  private getRenderedRowIndex;
4509
4533
  protected buildRowsActions(): void;
4510
4534
  protected createRenderedRow(cssClasses: any, isDetailRow?: boolean): QuestionMatrixDropdownRenderedRow;
4535
+ protected createErrorRenderedRow(cssClasses: any): QuestionMatrixDropdownRenderedErrorRow;
4511
4536
  protected buildHeader(): void;
4512
4537
  protected buildFooter(): void;
4513
4538
  protected buildRows(): void;
@@ -4524,6 +4549,7 @@ declare module "question_matrixdropdownrendered" {
4524
4549
  private buildRowActions;
4525
4550
  private get showRemoveButtonAsIcon();
4526
4551
  protected setDefaultRowActions(row: MatrixDropdownRowModelBase, actions: Array<IAction>): void;
4552
+ private createErrorRow;
4527
4553
  private createHorizontalRow;
4528
4554
  private addRowActionsCell;
4529
4555
  private createDetailPanelRow;
@@ -4534,6 +4560,7 @@ declare module "question_matrixdropdownrendered" {
4534
4560
  private createMutlipleEditCells;
4535
4561
  private setItemCellCssClasses;
4536
4562
  private createEditCell;
4563
+ private createErrorCell;
4537
4564
  private createMutlipleColumnsFooter;
4538
4565
  private createMutlipleColumnsHeader;
4539
4566
  private getMultipleColumnChoices;
@@ -4633,6 +4660,7 @@ declare module "question_matrixdynamic" {
4633
4660
  set defaultValueFromLastRow(val: boolean);
4634
4661
  protected isDefaultValueEmpty(): boolean;
4635
4662
  protected valueFromData(val: any): any;
4663
+ protected isNewValueCorrect(val: any): boolean;
4636
4664
  protected setDefaultValue(): void;
4637
4665
  moveRowByIndex(fromIndex: number, toIndex: number): void;
4638
4666
  clearOnDrop(): void;
@@ -5426,6 +5454,7 @@ declare module "question_paneldynamic" {
5426
5454
  private onReadyChangedCallback;
5427
5455
  recalculateIsReadyValue(): void;
5428
5456
  protected onSetData(): void;
5457
+ protected isNewValueCorrect(val: any): boolean;
5429
5458
  getItemIndex(item: ISurveyData): number;
5430
5459
  getVisibleItemIndex(item: ISurveyData): number;
5431
5460
  getPanelItemData(item: ISurveyData): any;
@@ -6479,7 +6508,7 @@ declare module "page" {
6479
6508
  navigationLocStrChanged(): void;
6480
6509
  get passed(): boolean;
6481
6510
  set passed(val: boolean);
6482
- delete(): void;
6511
+ protected removeFromParent(): void;
6483
6512
  onFirstRendering(): void;
6484
6513
  /**
6485
6514
  * The visible index of the page. It has values from 0 to visible page count - 1.
@@ -7162,6 +7191,7 @@ declare module "question_multipletext" {
7162
7191
  getConditionJson(operator?: string, path?: string): any;
7163
7192
  locStrsChanged(): void;
7164
7193
  localeChanged(): void;
7194
+ protected isNewValueCorrect(val: any): boolean;
7165
7195
  supportGoNextPageAutomatic(): boolean;
7166
7196
  /**
7167
7197
  * The number of columns used to arrange input items. Accepts the following values: 1, 2, 3, 4, 5.
@@ -7288,6 +7318,7 @@ declare module "survey" {
7288
7318
  private textPreProcessor;
7289
7319
  private timerModelValue;
7290
7320
  private navigationBarValue;
7321
+ onThemeApplying: EventBase<SurveyModel>;
7291
7322
  onThemeApplied: EventBase<SurveyModel>;
7292
7323
  /**
7293
7324
  * An event that is raised after a [trigger](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#triggers) is executed.
@@ -10305,6 +10336,13 @@ declare module "questionCustomWidgets" {
10305
10336
  getCustomWidget(question: IQuestion): QuestionCustomWidget;
10306
10337
  }
10307
10338
  }
10339
+ declare module "console-warnings" {
10340
+ export class ConsoleWarnings {
10341
+ static disposedObjectChangedProperty(propName: string, objType: string): void;
10342
+ static inCorrectQuestionValue(questionName: string, val: any): void;
10343
+ static warn(text: string): void;
10344
+ }
10345
+ }
10308
10346
  declare module "question" {
10309
10347
  import { HashTable } from "helpers";
10310
10348
  import { EventBase } from "base";
@@ -10412,6 +10450,7 @@ declare module "question" {
10412
10450
  set page(val: IPage);
10413
10451
  getPanel(): IPanel;
10414
10452
  delete(): void;
10453
+ protected removeFromParent(): void;
10415
10454
  get isFlowLayout(): boolean;
10416
10455
  getLayoutType(): string;
10417
10456
  isLayoutTypeSupported(layoutType: string): boolean;
@@ -10994,9 +11033,11 @@ declare module "question" {
10994
11033
  private isValueChangedInSurvey;
10995
11034
  protected allowNotifyValueChanged: boolean;
10996
11035
  protected setNewValue(newValue: any): void;
11036
+ protected isNewValueCorrect(val: any): boolean;
10997
11037
  protected isNewValueEqualsToValue(newValue: any): boolean;
10998
11038
  protected isTextValue(): boolean;
10999
11039
  get isSurveyInputTextUpdate(): boolean;
11040
+ get requireStrictCompare(): boolean;
11000
11041
  private getDataLocNotification;
11001
11042
  get isInputTextUpdate(): boolean;
11002
11043
  protected setNewValueInData(newValue: any): void;
@@ -13005,7 +13046,7 @@ declare module "question_matrixdropdown" {
13005
13046
  protected getConditionObjectRowName(index: number): string;
13006
13047
  protected getConditionObjectRowText(index: number): string;
13007
13048
  protected getConditionObjectsRowIndeces(): Array<number>;
13008
- protected setNewValue(newValue: any): void;
13049
+ protected isNewValueCorrect(val: any): boolean;
13009
13050
  clearIncorrectValues(): void;
13010
13051
  protected clearValueIfInvisibleCore(reason: string): void;
13011
13052
  protected generateRows(): Array<MatrixDropdownRowModel>;
@@ -13326,6 +13367,7 @@ declare module "question_matrix" {
13326
13367
  protected getVisibleRows(): Array<MatrixRowModel>;
13327
13368
  protected sortVisibleRows(array: Array<MatrixRowModel>): Array<MatrixRowModel>;
13328
13369
  endLoadingFromJson(): void;
13370
+ protected isNewValueCorrect(val: any): boolean;
13329
13371
  protected processRowsOnSet(newRows: Array<any>): MatrixRowModel[];
13330
13372
  get visibleRows(): Array<MatrixRowModel>;
13331
13373
  get cells(): MatrixCells;
@@ -13945,6 +13987,7 @@ declare module "question_ranking" {
13945
13987
  getNumberByIndex(index: number): string;
13946
13988
  setSurveyImpl(value: ISurveyImpl, isLight?: boolean): void;
13947
13989
  isAnswerCorrect(): boolean;
13990
+ get requireStrictCompare(): boolean;
13948
13991
  onSurveyValueChanged(newValue: any): void;
13949
13992
  protected onVisibleChoicesChanged: () => void;
13950
13993
  localeChanged: () => void;
@@ -14136,6 +14179,7 @@ declare module "question_rating" {
14136
14179
  import { LocalizableString } from "localizablestring";
14137
14180
  import { Base } from "base";
14138
14181
  import { DropdownListModel } from "dropdownListModel";
14182
+ import { ISurveyImpl } from "base-interfaces";
14139
14183
  export class RenderedRatingItem extends Base {
14140
14184
  itemValue: ItemValue;
14141
14185
  private locString;
@@ -14236,13 +14280,14 @@ declare module "question_rating" {
14236
14280
  * [View Demo](/form-library/examples/rating-scale/ (linkStyle))
14237
14281
  */
14238
14282
  rateCount: number;
14283
+ private static colorsCalculated;
14239
14284
  private static badColor;
14240
14285
  private static normalColor;
14241
14286
  private static goodColor;
14242
14287
  private static badColorLight;
14243
14288
  private static normalColorLight;
14244
14289
  private static goodColorLight;
14245
- private initColors;
14290
+ private updateColors;
14246
14291
  protected getDisplayValueCore(keysAsText: boolean, value: any): any;
14247
14292
  get visibleRateValues(): ItemValue[];
14248
14293
  itemValuePropertyChanged(item: ItemValue, name: string, oldValue: any, newValue: any): void;
@@ -14385,6 +14430,7 @@ declare module "question_rating" {
14385
14430
  get dropdownListModel(): DropdownListModel;
14386
14431
  protected updateCssClasses(res: any, css: any): void;
14387
14432
  protected calcCssClasses(css: any): any;
14433
+ setSurveyImpl(value: ISurveyImpl, isLight?: boolean): void;
14388
14434
  dispose(): void;
14389
14435
  }
14390
14436
  }
@@ -15767,6 +15813,7 @@ declare module "defaultCss/cssstandard" {
15767
15813
  };
15768
15814
  };
15769
15815
  variables: {
15816
+ mobileWidth: string;
15770
15817
  themeMark: string;
15771
15818
  };
15772
15819
  tagbox: {
@@ -16228,6 +16275,7 @@ declare module "defaultCss/cssmodern" {
16228
16275
  };
16229
16276
  };
16230
16277
  variables: {
16278
+ mobileWidth: string;
16231
16279
  themeMark: string;
16232
16280
  };
16233
16281
  };
@@ -17832,18 +17880,23 @@ declare module "localization/arabic" {
17832
17880
  noneItemText: string;
17833
17881
  selectAllItemText: string;
17834
17882
  progressText: string;
17883
+ indexText: string;
17835
17884
  panelDynamicProgressText: string;
17885
+ panelDynamicTabTextFormat: string;
17836
17886
  questionsProgressText: string;
17837
17887
  emptySurvey: string;
17838
17888
  completingSurvey: string;
17839
17889
  completingSurveyBefore: string;
17840
17890
  loadingSurvey: string;
17841
17891
  placeholder: string;
17892
+ ratingOptionsCaption: string;
17842
17893
  value: string;
17843
17894
  requiredError: string;
17844
17895
  requiredErrorInPanel: string;
17845
17896
  requiredInAllRowsError: string;
17846
17897
  numericError: string;
17898
+ minError: string;
17899
+ maxError: string;
17847
17900
  textMinLength: string;
17848
17901
  textMaxLength: string;
17849
17902
  textMinMaxLength: string;
@@ -17863,16 +17916,19 @@ declare module "localization/arabic" {
17863
17916
  loadingFile: string;
17864
17917
  chooseFile: string;
17865
17918
  noFileChosen: string;
17919
+ fileDragAreaPlaceholder: string;
17866
17920
  confirmDelete: string;
17867
17921
  keyDuplicationError: string;
17868
17922
  addColumn: string;
17869
17923
  addRow: string;
17870
17924
  removeRow: string;
17925
+ emptyRowsText: string;
17871
17926
  addPanel: string;
17872
17927
  removePanel: string;
17873
17928
  choices_Item: string;
17874
17929
  matrix_column: string;
17875
17930
  matrix_row: string;
17931
+ multipletext_itemname: string;
17876
17932
  savingData: string;
17877
17933
  savingDataError: string;
17878
17934
  savingDataSuccess: string;
@@ -17886,6 +17942,7 @@ declare module "localization/arabic" {
17886
17942
  timerLimitPage: string;
17887
17943
  timerLimitSurvey: string;
17888
17944
  clearCaption: string;
17945
+ signaturePlaceHolder: string;
17889
17946
  chooseFileCaption: string;
17890
17947
  removeFileCaption: string;
17891
17948
  booleanCheckedLabel: string;
@@ -17893,6 +17950,16 @@ declare module "localization/arabic" {
17893
17950
  confirmRemoveFile: string;
17894
17951
  confirmRemoveAllFiles: string;
17895
17952
  questionTitlePatternText: string;
17953
+ modalCancelButtonText: string;
17954
+ modalApplyButtonText: string;
17955
+ filterStringPlaceholder: string;
17956
+ emptyMessage: string;
17957
+ noEntriesText: string;
17958
+ noEntriesReadonlyText: string;
17959
+ more: string;
17960
+ tagboxDoneButtonCaption: string;
17961
+ selectToRankEmptyRankedAreaText: string;
17962
+ selectToRankEmptyUnrankedAreaText: string;
17896
17963
  };
17897
17964
  }
17898
17965
  declare module "localization/basque" {
@@ -17907,13 +17974,16 @@ declare module "localization/basque" {
17907
17974
  noneItemText: string;
17908
17975
  selectAllItemText: string;
17909
17976
  progressText: string;
17977
+ indexText: string;
17910
17978
  panelDynamicProgressText: string;
17979
+ panelDynamicTabTextFormat: string;
17911
17980
  questionsProgressText: string;
17912
17981
  emptySurvey: string;
17913
17982
  completingSurvey: string;
17914
17983
  completingSurveyBefore: string;
17915
17984
  loadingSurvey: string;
17916
17985
  placeholder: string;
17986
+ ratingOptionsCaption: string;
17917
17987
  value: string;
17918
17988
  requiredError: string;
17919
17989
  requiredErrorInPanel: string;
@@ -17940,6 +18010,7 @@ declare module "localization/basque" {
17940
18010
  loadingFile: string;
17941
18011
  chooseFile: string;
17942
18012
  noFileChosen: string;
18013
+ fileDragAreaPlaceholder: string;
17943
18014
  confirmDelete: string;
17944
18015
  keyDuplicationError: string;
17945
18016
  addColumn: string;
@@ -17975,6 +18046,14 @@ declare module "localization/basque" {
17975
18046
  questionTitlePatternText: string;
17976
18047
  modalCancelButtonText: string;
17977
18048
  modalApplyButtonText: string;
18049
+ filterStringPlaceholder: string;
18050
+ emptyMessage: string;
18051
+ noEntriesText: string;
18052
+ noEntriesReadonlyText: string;
18053
+ more: string;
18054
+ tagboxDoneButtonCaption: string;
18055
+ selectToRankEmptyRankedAreaText: string;
18056
+ selectToRankEmptyUnrankedAreaText: string;
17978
18057
  };
17979
18058
  }
17980
18059
  declare module "localization/bulgarian" {
@@ -17989,18 +18068,23 @@ declare module "localization/bulgarian" {
17989
18068
  noneItemText: string;
17990
18069
  selectAllItemText: string;
17991
18070
  progressText: string;
18071
+ indexText: string;
17992
18072
  panelDynamicProgressText: string;
18073
+ panelDynamicTabTextFormat: string;
17993
18074
  questionsProgressText: string;
17994
18075
  emptySurvey: string;
17995
18076
  completingSurvey: string;
17996
18077
  completingSurveyBefore: string;
17997
18078
  loadingSurvey: string;
17998
18079
  placeholder: string;
18080
+ ratingOptionsCaption: string;
17999
18081
  value: string;
18000
18082
  requiredError: string;
18001
18083
  requiredErrorInPanel: string;
18002
18084
  requiredInAllRowsError: string;
18003
18085
  numericError: string;
18086
+ minError: string;
18087
+ maxError: string;
18004
18088
  textMinLength: string;
18005
18089
  textMaxLength: string;
18006
18090
  textMinMaxLength: string;
@@ -18020,16 +18104,19 @@ declare module "localization/bulgarian" {
18020
18104
  loadingFile: string;
18021
18105
  chooseFile: string;
18022
18106
  noFileChosen: string;
18107
+ fileDragAreaPlaceholder: string;
18023
18108
  confirmDelete: string;
18024
18109
  keyDuplicationError: string;
18025
18110
  addColumn: string;
18026
18111
  addRow: string;
18027
18112
  removeRow: string;
18113
+ emptyRowsText: string;
18028
18114
  addPanel: string;
18029
18115
  removePanel: string;
18030
18116
  choices_Item: string;
18031
18117
  matrix_column: string;
18032
18118
  matrix_row: string;
18119
+ multipletext_itemname: string;
18033
18120
  savingData: string;
18034
18121
  savingDataError: string;
18035
18122
  savingDataSuccess: string;
@@ -18043,6 +18130,7 @@ declare module "localization/bulgarian" {
18043
18130
  timerLimitPage: string;
18044
18131
  timerLimitSurvey: string;
18045
18132
  clearCaption: string;
18133
+ signaturePlaceHolder: string;
18046
18134
  chooseFileCaption: string;
18047
18135
  removeFileCaption: string;
18048
18136
  booleanCheckedLabel: string;
@@ -18050,6 +18138,16 @@ declare module "localization/bulgarian" {
18050
18138
  confirmRemoveFile: string;
18051
18139
  confirmRemoveAllFiles: string;
18052
18140
  questionTitlePatternText: string;
18141
+ modalCancelButtonText: string;
18142
+ modalApplyButtonText: string;
18143
+ filterStringPlaceholder: string;
18144
+ emptyMessage: string;
18145
+ noEntriesText: string;
18146
+ noEntriesReadonlyText: string;
18147
+ more: string;
18148
+ tagboxDoneButtonCaption: string;
18149
+ selectToRankEmptyRankedAreaText: string;
18150
+ selectToRankEmptyUnrankedAreaText: string;
18053
18151
  };
18054
18152
  }
18055
18153
  declare module "localization/catalan" {
@@ -18057,15 +18155,30 @@ declare module "localization/catalan" {
18057
18155
  pagePrevText: string;
18058
18156
  pageNextText: string;
18059
18157
  completeText: string;
18158
+ previewText: string;
18159
+ editText: string;
18160
+ startSurveyText: string;
18060
18161
  otherItemText: string;
18162
+ noneItemText: string;
18163
+ selectAllItemText: string;
18061
18164
  progressText: string;
18165
+ indexText: string;
18166
+ panelDynamicProgressText: string;
18167
+ panelDynamicTabTextFormat: string;
18168
+ questionsProgressText: string;
18062
18169
  emptySurvey: string;
18063
18170
  completingSurvey: string;
18171
+ completingSurveyBefore: string;
18064
18172
  loadingSurvey: string;
18065
18173
  placeholder: string;
18174
+ ratingOptionsCaption: string;
18175
+ value: string;
18066
18176
  requiredError: string;
18177
+ requiredErrorInPanel: string;
18067
18178
  requiredInAllRowsError: string;
18068
18179
  numericError: string;
18180
+ minError: string;
18181
+ maxError: string;
18069
18182
  textMinLength: string;
18070
18183
  textMaxLength: string;
18071
18184
  textMinMaxLength: string;
@@ -18076,15 +18189,59 @@ declare module "localization/catalan" {
18076
18189
  numericMin: string;
18077
18190
  numericMax: string;
18078
18191
  invalidEmail: string;
18192
+ invalidExpression: string;
18079
18193
  urlRequestError: string;
18080
18194
  urlGetChoicesError: string;
18081
18195
  exceedMaxSize: string;
18082
18196
  otherRequiredError: string;
18083
18197
  uploadingFile: string;
18198
+ loadingFile: string;
18199
+ chooseFile: string;
18200
+ noFileChosen: string;
18201
+ fileDragAreaPlaceholder: string;
18202
+ confirmDelete: string;
18203
+ keyDuplicationError: string;
18204
+ addColumn: string;
18084
18205
  addRow: string;
18085
18206
  removeRow: string;
18207
+ emptyRowsText: string;
18208
+ addPanel: string;
18209
+ removePanel: string;
18210
+ choices_Item: string;
18086
18211
  matrix_column: string;
18087
18212
  matrix_row: string;
18213
+ multipletext_itemname: string;
18214
+ savingData: string;
18215
+ savingDataError: string;
18216
+ savingDataSuccess: string;
18217
+ saveAgainButton: string;
18218
+ timerMin: string;
18219
+ timerSec: string;
18220
+ timerSpentAll: string;
18221
+ timerSpentPage: string;
18222
+ timerSpentSurvey: string;
18223
+ timerLimitAll: string;
18224
+ timerLimitPage: string;
18225
+ timerLimitSurvey: string;
18226
+ clearCaption: string;
18227
+ signaturePlaceHolder: string;
18228
+ chooseFileCaption: string;
18229
+ removeFileCaption: string;
18230
+ booleanCheckedLabel: string;
18231
+ booleanUncheckedLabel: string;
18232
+ confirmRemoveFile: string;
18233
+ confirmRemoveAllFiles: string;
18234
+ questionTitlePatternText: string;
18235
+ modalCancelButtonText: string;
18236
+ modalApplyButtonText: string;
18237
+ filterStringPlaceholder: string;
18238
+ emptyMessage: string;
18239
+ noEntriesText: string;
18240
+ noEntriesReadonlyText: string;
18241
+ more: string;
18242
+ tagboxDoneButtonCaption: string;
18243
+ selectToRankEmptyRankedAreaText: string;
18244
+ selectToRankEmptyUnrankedAreaText: string;
18088
18245
  };
18089
18246
  }
18090
18247
  declare module "localization/croatian" {
@@ -18099,18 +18256,23 @@ declare module "localization/croatian" {
18099
18256
  noneItemText: string;
18100
18257
  selectAllItemText: string;
18101
18258
  progressText: string;
18259
+ indexText: string;
18102
18260
  panelDynamicProgressText: string;
18261
+ panelDynamicTabTextFormat: string;
18103
18262
  questionsProgressText: string;
18104
18263
  emptySurvey: string;
18105
18264
  completingSurvey: string;
18106
18265
  completingSurveyBefore: string;
18107
18266
  loadingSurvey: string;
18108
18267
  placeholder: string;
18268
+ ratingOptionsCaption: string;
18109
18269
  value: string;
18110
18270
  requiredError: string;
18111
18271
  requiredErrorInPanel: string;
18112
18272
  requiredInAllRowsError: string;
18113
18273
  numericError: string;
18274
+ minError: string;
18275
+ maxError: string;
18114
18276
  textMinLength: string;
18115
18277
  textMaxLength: string;
18116
18278
  textMinMaxLength: string;
@@ -18130,16 +18292,19 @@ declare module "localization/croatian" {
18130
18292
  loadingFile: string;
18131
18293
  chooseFile: string;
18132
18294
  noFileChosen: string;
18295
+ fileDragAreaPlaceholder: string;
18133
18296
  confirmDelete: string;
18134
18297
  keyDuplicationError: string;
18135
18298
  addColumn: string;
18136
18299
  addRow: string;
18137
18300
  removeRow: string;
18301
+ emptyRowsText: string;
18138
18302
  addPanel: string;
18139
18303
  removePanel: string;
18140
18304
  choices_Item: string;
18141
18305
  matrix_column: string;
18142
18306
  matrix_row: string;
18307
+ multipletext_itemname: string;
18143
18308
  savingData: string;
18144
18309
  savingDataError: string;
18145
18310
  savingDataSuccess: string;
@@ -18153,6 +18318,7 @@ declare module "localization/croatian" {
18153
18318
  timerLimitPage: string;
18154
18319
  timerLimitSurvey: string;
18155
18320
  clearCaption: string;
18321
+ signaturePlaceHolder: string;
18156
18322
  chooseFileCaption: string;
18157
18323
  removeFileCaption: string;
18158
18324
  booleanCheckedLabel: string;
@@ -18162,6 +18328,14 @@ declare module "localization/croatian" {
18162
18328
  questionTitlePatternText: string;
18163
18329
  modalCancelButtonText: string;
18164
18330
  modalApplyButtonText: string;
18331
+ filterStringPlaceholder: string;
18332
+ emptyMessage: string;
18333
+ noEntriesText: string;
18334
+ noEntriesReadonlyText: string;
18335
+ more: string;
18336
+ tagboxDoneButtonCaption: string;
18337
+ selectToRankEmptyRankedAreaText: string;
18338
+ selectToRankEmptyUnrankedAreaText: string;
18165
18339
  };
18166
18340
  }
18167
18341
  declare module "localization/czech" {
@@ -18176,18 +18350,23 @@ declare module "localization/czech" {
18176
18350
  noneItemText: string;
18177
18351
  selectAllItemText: string;
18178
18352
  progressText: string;
18353
+ indexText: string;
18179
18354
  panelDynamicProgressText: string;
18355
+ panelDynamicTabTextFormat: string;
18180
18356
  questionsProgressText: string;
18181
18357
  emptySurvey: string;
18182
18358
  completingSurvey: string;
18183
18359
  completingSurveyBefore: string;
18184
18360
  loadingSurvey: string;
18185
18361
  placeholder: string;
18362
+ ratingOptionsCaption: string;
18186
18363
  value: string;
18187
18364
  requiredError: string;
18188
18365
  requiredErrorInPanel: string;
18189
18366
  requiredInAllRowsError: string;
18190
18367
  numericError: string;
18368
+ minError: string;
18369
+ maxError: string;
18191
18370
  textMinLength: string;
18192
18371
  textMaxLength: string;
18193
18372
  textMinMaxLength: string;
@@ -18207,16 +18386,19 @@ declare module "localization/czech" {
18207
18386
  loadingFile: string;
18208
18387
  chooseFile: string;
18209
18388
  noFileChosen: string;
18389
+ fileDragAreaPlaceholder: string;
18210
18390
  confirmDelete: string;
18211
18391
  keyDuplicationError: string;
18212
18392
  addColumn: string;
18213
18393
  addRow: string;
18214
18394
  removeRow: string;
18395
+ emptyRowsText: string;
18215
18396
  addPanel: string;
18216
18397
  removePanel: string;
18217
18398
  choices_Item: string;
18218
18399
  matrix_column: string;
18219
18400
  matrix_row: string;
18401
+ multipletext_itemname: string;
18220
18402
  savingData: string;
18221
18403
  savingDataError: string;
18222
18404
  savingDataSuccess: string;
@@ -18230,6 +18412,7 @@ declare module "localization/czech" {
18230
18412
  timerLimitPage: string;
18231
18413
  timerLimitSurvey: string;
18232
18414
  clearCaption: string;
18415
+ signaturePlaceHolder: string;
18233
18416
  chooseFileCaption: string;
18234
18417
  removeFileCaption: string;
18235
18418
  booleanCheckedLabel: string;
@@ -18237,6 +18420,16 @@ declare module "localization/czech" {
18237
18420
  confirmRemoveFile: string;
18238
18421
  confirmRemoveAllFiles: string;
18239
18422
  questionTitlePatternText: string;
18423
+ modalCancelButtonText: string;
18424
+ modalApplyButtonText: string;
18425
+ filterStringPlaceholder: string;
18426
+ emptyMessage: string;
18427
+ noEntriesText: string;
18428
+ noEntriesReadonlyText: string;
18429
+ more: string;
18430
+ tagboxDoneButtonCaption: string;
18431
+ selectToRankEmptyRankedAreaText: string;
18432
+ selectToRankEmptyUnrankedAreaText: string;
18240
18433
  };
18241
18434
  }
18242
18435
  declare module "localization/danish" {
@@ -18251,18 +18444,23 @@ declare module "localization/danish" {
18251
18444
  noneItemText: string;
18252
18445
  selectAllItemText: string;
18253
18446
  progressText: string;
18447
+ indexText: string;
18254
18448
  panelDynamicProgressText: string;
18449
+ panelDynamicTabTextFormat: string;
18255
18450
  questionsProgressText: string;
18256
18451
  emptySurvey: string;
18257
18452
  completingSurvey: string;
18258
18453
  completingSurveyBefore: string;
18259
18454
  loadingSurvey: string;
18260
18455
  placeholder: string;
18456
+ ratingOptionsCaption: string;
18261
18457
  value: string;
18262
18458
  requiredError: string;
18263
18459
  requiredErrorInPanel: string;
18264
18460
  requiredInAllRowsError: string;
18265
18461
  numericError: string;
18462
+ minError: string;
18463
+ maxError: string;
18266
18464
  textMinLength: string;
18267
18465
  textMaxLength: string;
18268
18466
  textMinMaxLength: string;
@@ -18282,16 +18480,19 @@ declare module "localization/danish" {
18282
18480
  loadingFile: string;
18283
18481
  chooseFile: string;
18284
18482
  noFileChosen: string;
18483
+ fileDragAreaPlaceholder: string;
18285
18484
  confirmDelete: string;
18286
18485
  keyDuplicationError: string;
18287
18486
  addColumn: string;
18288
18487
  addRow: string;
18289
18488
  removeRow: string;
18489
+ emptyRowsText: string;
18290
18490
  addPanel: string;
18291
18491
  removePanel: string;
18292
18492
  choices_Item: string;
18293
18493
  matrix_column: string;
18294
18494
  matrix_row: string;
18495
+ multipletext_itemname: string;
18295
18496
  savingData: string;
18296
18497
  savingDataError: string;
18297
18498
  savingDataSuccess: string;
@@ -18305,6 +18506,7 @@ declare module "localization/danish" {
18305
18506
  timerLimitPage: string;
18306
18507
  timerLimitSurvey: string;
18307
18508
  clearCaption: string;
18509
+ signaturePlaceHolder: string;
18308
18510
  chooseFileCaption: string;
18309
18511
  removeFileCaption: string;
18310
18512
  booleanCheckedLabel: string;
@@ -18312,6 +18514,16 @@ declare module "localization/danish" {
18312
18514
  confirmRemoveFile: string;
18313
18515
  confirmRemoveAllFiles: string;
18314
18516
  questionTitlePatternText: string;
18517
+ modalCancelButtonText: string;
18518
+ modalApplyButtonText: string;
18519
+ filterStringPlaceholder: string;
18520
+ emptyMessage: string;
18521
+ noEntriesText: string;
18522
+ noEntriesReadonlyText: string;
18523
+ more: string;
18524
+ tagboxDoneButtonCaption: string;
18525
+ selectToRankEmptyRankedAreaText: string;
18526
+ selectToRankEmptyUnrankedAreaText: string;
18315
18527
  };
18316
18528
  }
18317
18529
  declare module "localization/dutch" {
@@ -18326,18 +18538,23 @@ declare module "localization/dutch" {
18326
18538
  noneItemText: string;
18327
18539
  selectAllItemText: string;
18328
18540
  progressText: string;
18541
+ indexText: string;
18329
18542
  panelDynamicProgressText: string;
18543
+ panelDynamicTabTextFormat: string;
18330
18544
  questionsProgressText: string;
18331
18545
  emptySurvey: string;
18332
18546
  completingSurvey: string;
18333
18547
  completingSurveyBefore: string;
18334
18548
  loadingSurvey: string;
18335
18549
  placeholder: string;
18550
+ ratingOptionsCaption: string;
18336
18551
  value: string;
18337
18552
  requiredError: string;
18338
18553
  requiredErrorInPanel: string;
18339
18554
  requiredInAllRowsError: string;
18340
18555
  numericError: string;
18556
+ minError: string;
18557
+ maxError: string;
18341
18558
  textMinLength: string;
18342
18559
  textMaxLength: string;
18343
18560
  textMinMaxLength: string;
@@ -18363,11 +18580,13 @@ declare module "localization/dutch" {
18363
18580
  addColumn: string;
18364
18581
  addRow: string;
18365
18582
  removeRow: string;
18583
+ emptyRowsText: string;
18366
18584
  addPanel: string;
18367
18585
  removePanel: string;
18368
18586
  choices_Item: string;
18369
18587
  matrix_column: string;
18370
18588
  matrix_row: string;
18589
+ multipletext_itemname: string;
18371
18590
  savingData: string;
18372
18591
  savingDataError: string;
18373
18592
  savingDataSuccess: string;
@@ -18389,6 +18608,16 @@ declare module "localization/dutch" {
18389
18608
  confirmRemoveFile: string;
18390
18609
  confirmRemoveAllFiles: string;
18391
18610
  questionTitlePatternText: string;
18611
+ modalCancelButtonText: string;
18612
+ modalApplyButtonText: string;
18613
+ filterStringPlaceholder: string;
18614
+ emptyMessage: string;
18615
+ noEntriesText: string;
18616
+ noEntriesReadonlyText: string;
18617
+ more: string;
18618
+ tagboxDoneButtonCaption: string;
18619
+ selectToRankEmptyRankedAreaText: string;
18620
+ selectToRankEmptyUnrankedAreaText: string;
18392
18621
  };
18393
18622
  }
18394
18623
  declare module "localization/nl-BE" { }
@@ -18404,18 +18633,23 @@ declare module "localization/estonian" {
18404
18633
  noneItemText: string;
18405
18634
  selectAllItemText: string;
18406
18635
  progressText: string;
18636
+ indexText: string;
18407
18637
  panelDynamicProgressText: string;
18638
+ panelDynamicTabTextFormat: string;
18408
18639
  questionsProgressText: string;
18409
18640
  emptySurvey: string;
18410
18641
  completingSurvey: string;
18411
18642
  completingSurveyBefore: string;
18412
18643
  loadingSurvey: string;
18413
18644
  placeholder: string;
18645
+ ratingOptionsCaption: string;
18414
18646
  value: string;
18415
18647
  requiredError: string;
18416
18648
  requiredErrorInPanel: string;
18417
18649
  requiredInAllRowsError: string;
18418
18650
  numericError: string;
18651
+ minError: string;
18652
+ maxError: string;
18419
18653
  textMinLength: string;
18420
18654
  textMaxLength: string;
18421
18655
  textMinMaxLength: string;
@@ -18435,16 +18669,19 @@ declare module "localization/estonian" {
18435
18669
  loadingFile: string;
18436
18670
  chooseFile: string;
18437
18671
  noFileChosen: string;
18672
+ fileDragAreaPlaceholder: string;
18438
18673
  confirmDelete: string;
18439
18674
  keyDuplicationError: string;
18440
18675
  addColumn: string;
18441
18676
  addRow: string;
18442
18677
  removeRow: string;
18678
+ emptyRowsText: string;
18443
18679
  addPanel: string;
18444
18680
  removePanel: string;
18445
18681
  choices_Item: string;
18446
18682
  matrix_column: string;
18447
18683
  matrix_row: string;
18684
+ multipletext_itemname: string;
18448
18685
  savingData: string;
18449
18686
  savingDataError: string;
18450
18687
  savingDataSuccess: string;
@@ -18458,6 +18695,7 @@ declare module "localization/estonian" {
18458
18695
  timerLimitPage: string;
18459
18696
  timerLimitSurvey: string;
18460
18697
  clearCaption: string;
18698
+ signaturePlaceHolder: string;
18461
18699
  chooseFileCaption: string;
18462
18700
  removeFileCaption: string;
18463
18701
  booleanCheckedLabel: string;
@@ -18465,6 +18703,16 @@ declare module "localization/estonian" {
18465
18703
  confirmRemoveFile: string;
18466
18704
  confirmRemoveAllFiles: string;
18467
18705
  questionTitlePatternText: string;
18706
+ modalCancelButtonText: string;
18707
+ modalApplyButtonText: string;
18708
+ filterStringPlaceholder: string;
18709
+ emptyMessage: string;
18710
+ noEntriesText: string;
18711
+ noEntriesReadonlyText: string;
18712
+ more: string;
18713
+ tagboxDoneButtonCaption: string;
18714
+ selectToRankEmptyRankedAreaText: string;
18715
+ selectToRankEmptyUnrankedAreaText: string;
18468
18716
  };
18469
18717
  }
18470
18718
  declare module "localization/finnish" {
@@ -18481,6 +18729,7 @@ declare module "localization/finnish" {
18481
18729
  progressText: string;
18482
18730
  indexText: string;
18483
18731
  panelDynamicProgressText: string;
18732
+ panelDynamicTabTextFormat: string;
18484
18733
  questionsProgressText: string;
18485
18734
  emptySurvey: string;
18486
18735
  completingSurvey: string;
@@ -18551,7 +18800,13 @@ declare module "localization/finnish" {
18551
18800
  modalCancelButtonText: string;
18552
18801
  modalApplyButtonText: string;
18553
18802
  filterStringPlaceholder: string;
18803
+ emptyMessage: string;
18554
18804
  noEntriesText: string;
18805
+ noEntriesReadonlyText: string;
18806
+ more: string;
18807
+ tagboxDoneButtonCaption: string;
18808
+ selectToRankEmptyRankedAreaText: string;
18809
+ selectToRankEmptyUnrankedAreaText: string;
18555
18810
  };
18556
18811
  }
18557
18812
  declare module "localization/french" {
@@ -18568,6 +18823,7 @@ declare module "localization/french" {
18568
18823
  progressText: string;
18569
18824
  indexText: string;
18570
18825
  panelDynamicProgressText: string;
18826
+ panelDynamicTabTextFormat: string;
18571
18827
  questionsProgressText: string;
18572
18828
  emptySurvey: string;
18573
18829
  completingSurvey: string;
@@ -18638,33 +18894,17 @@ declare module "localization/french" {
18638
18894
  modalCancelButtonText: string;
18639
18895
  modalApplyButtonText: string;
18640
18896
  filterStringPlaceholder: string;
18897
+ emptyMessage: string;
18641
18898
  noEntriesText: string;
18899
+ noEntriesReadonlyText: string;
18900
+ more: string;
18901
+ tagboxDoneButtonCaption: string;
18902
+ selectToRankEmptyRankedAreaText: string;
18903
+ selectToRankEmptyUnrankedAreaText: string;
18642
18904
  };
18643
18905
  }
18644
18906
  declare module "localization/georgian" {
18645
18907
  export var georgianSurveyStrings: {
18646
- pagePrevText: string;
18647
- pageNextText: string;
18648
- completeText: string;
18649
- otherItemText: string;
18650
- progressText: string;
18651
- emptySurvey: string;
18652
- completingSurvey: string;
18653
- loadingSurvey: string;
18654
- placeholder: string;
18655
- requiredError: string;
18656
- numericError: string;
18657
- textMinLength: string;
18658
- minSelectError: string;
18659
- maxSelectError: string;
18660
- numericMinMax: string;
18661
- numericMin: string;
18662
- numericMax: string;
18663
- invalidEmail: string;
18664
- };
18665
- }
18666
- declare module "localization/german" {
18667
- export var germanSurveyStrings: {
18668
18908
  pagePrevText: string;
18669
18909
  pageNextText: string;
18670
18910
  completeText: string;
@@ -18677,6 +18917,7 @@ declare module "localization/german" {
18677
18917
  progressText: string;
18678
18918
  indexText: string;
18679
18919
  panelDynamicProgressText: string;
18920
+ panelDynamicTabTextFormat: string;
18680
18921
  questionsProgressText: string;
18681
18922
  emptySurvey: string;
18682
18923
  completingSurvey: string;
@@ -18749,9 +18990,107 @@ declare module "localization/german" {
18749
18990
  filterStringPlaceholder: string;
18750
18991
  emptyMessage: string;
18751
18992
  noEntriesText: string;
18993
+ noEntriesReadonlyText: string;
18752
18994
  more: string;
18753
- };
18754
- }
18995
+ tagboxDoneButtonCaption: string;
18996
+ selectToRankEmptyRankedAreaText: string;
18997
+ selectToRankEmptyUnrankedAreaText: string;
18998
+ };
18999
+ }
19000
+ declare module "localization/german" {
19001
+ export var germanSurveyStrings: {
19002
+ pagePrevText: string;
19003
+ pageNextText: string;
19004
+ completeText: string;
19005
+ previewText: string;
19006
+ editText: string;
19007
+ startSurveyText: string;
19008
+ otherItemText: string;
19009
+ noneItemText: string;
19010
+ selectAllItemText: string;
19011
+ progressText: string;
19012
+ indexText: string;
19013
+ panelDynamicProgressText: string;
19014
+ panelDynamicTabTextFormat: string;
19015
+ questionsProgressText: string;
19016
+ emptySurvey: string;
19017
+ completingSurvey: string;
19018
+ completingSurveyBefore: string;
19019
+ loadingSurvey: string;
19020
+ placeholder: string;
19021
+ ratingOptionsCaption: string;
19022
+ value: string;
19023
+ requiredError: string;
19024
+ requiredErrorInPanel: string;
19025
+ requiredInAllRowsError: string;
19026
+ numericError: string;
19027
+ minError: string;
19028
+ maxError: string;
19029
+ textMinLength: string;
19030
+ textMaxLength: string;
19031
+ textMinMaxLength: string;
19032
+ minRowCountError: string;
19033
+ minSelectError: string;
19034
+ maxSelectError: string;
19035
+ numericMinMax: string;
19036
+ numericMin: string;
19037
+ numericMax: string;
19038
+ invalidEmail: string;
19039
+ invalidExpression: string;
19040
+ urlRequestError: string;
19041
+ urlGetChoicesError: string;
19042
+ exceedMaxSize: string;
19043
+ otherRequiredError: string;
19044
+ uploadingFile: string;
19045
+ loadingFile: string;
19046
+ chooseFile: string;
19047
+ noFileChosen: string;
19048
+ fileDragAreaPlaceholder: string;
19049
+ confirmDelete: string;
19050
+ keyDuplicationError: string;
19051
+ addColumn: string;
19052
+ addRow: string;
19053
+ removeRow: string;
19054
+ emptyRowsText: string;
19055
+ addPanel: string;
19056
+ removePanel: string;
19057
+ choices_Item: string;
19058
+ matrix_column: string;
19059
+ matrix_row: string;
19060
+ multipletext_itemname: string;
19061
+ savingData: string;
19062
+ savingDataError: string;
19063
+ savingDataSuccess: string;
19064
+ saveAgainButton: string;
19065
+ timerMin: string;
19066
+ timerSec: string;
19067
+ timerSpentAll: string;
19068
+ timerSpentPage: string;
19069
+ timerSpentSurvey: string;
19070
+ timerLimitAll: string;
19071
+ timerLimitPage: string;
19072
+ timerLimitSurvey: string;
19073
+ clearCaption: string;
19074
+ signaturePlaceHolder: string;
19075
+ chooseFileCaption: string;
19076
+ removeFileCaption: string;
19077
+ booleanCheckedLabel: string;
19078
+ booleanUncheckedLabel: string;
19079
+ confirmRemoveFile: string;
19080
+ confirmRemoveAllFiles: string;
19081
+ questionTitlePatternText: string;
19082
+ modalCancelButtonText: string;
19083
+ modalApplyButtonText: string;
19084
+ filterStringPlaceholder: string;
19085
+ emptyMessage: string;
19086
+ noEntriesText: string;
19087
+ noEntriesReadonlyText: string;
19088
+ more: string;
19089
+ tagboxDoneButtonCaption: string;
19090
+ selectToRankEmptyRankedAreaText: string;
19091
+ selectToRankEmptyUnrankedAreaText: string;
19092
+ };
19093
+ }
18755
19094
  declare module "localization/greek" {
18756
19095
  export var greekSurveyStrings: {
18757
19096
  pagePrevText: string;
@@ -18766,6 +19105,7 @@ declare module "localization/greek" {
18766
19105
  progressText: string;
18767
19106
  indexText: string;
18768
19107
  panelDynamicProgressText: string;
19108
+ panelDynamicTabTextFormat: string;
18769
19109
  questionsProgressText: string;
18770
19110
  emptySurvey: string;
18771
19111
  completingSurvey: string;
@@ -18838,8 +19178,11 @@ declare module "localization/greek" {
18838
19178
  filterStringPlaceholder: string;
18839
19179
  emptyMessage: string;
18840
19180
  noEntriesText: string;
19181
+ noEntriesReadonlyText: string;
18841
19182
  more: string;
18842
19183
  tagboxDoneButtonCaption: string;
19184
+ selectToRankEmptyRankedAreaText: string;
19185
+ selectToRankEmptyUnrankedAreaText: string;
18843
19186
  };
18844
19187
  }
18845
19188
  declare module "localization/hebrew" {
@@ -18854,18 +19197,23 @@ declare module "localization/hebrew" {
18854
19197
  noneItemText: string;
18855
19198
  selectAllItemText: string;
18856
19199
  progressText: string;
19200
+ indexText: string;
18857
19201
  panelDynamicProgressText: string;
19202
+ panelDynamicTabTextFormat: string;
18858
19203
  questionsProgressText: string;
18859
19204
  emptySurvey: string;
18860
19205
  completingSurvey: string;
18861
19206
  completingSurveyBefore: string;
18862
19207
  loadingSurvey: string;
18863
19208
  placeholder: string;
19209
+ ratingOptionsCaption: string;
18864
19210
  value: string;
18865
19211
  requiredError: string;
18866
19212
  requiredErrorInPanel: string;
18867
19213
  requiredInAllRowsError: string;
18868
19214
  numericError: string;
19215
+ minError: string;
19216
+ maxError: string;
18869
19217
  textMinLength: string;
18870
19218
  textMaxLength: string;
18871
19219
  textMinMaxLength: string;
@@ -18885,16 +19233,19 @@ declare module "localization/hebrew" {
18885
19233
  loadingFile: string;
18886
19234
  chooseFile: string;
18887
19235
  noFileChosen: string;
19236
+ fileDragAreaPlaceholder: string;
18888
19237
  confirmDelete: string;
18889
19238
  keyDuplicationError: string;
18890
19239
  addColumn: string;
18891
19240
  addRow: string;
18892
19241
  removeRow: string;
19242
+ emptyRowsText: string;
18893
19243
  addPanel: string;
18894
19244
  removePanel: string;
18895
19245
  choices_Item: string;
18896
19246
  matrix_column: string;
18897
19247
  matrix_row: string;
19248
+ multipletext_itemname: string;
18898
19249
  savingData: string;
18899
19250
  savingDataError: string;
18900
19251
  savingDataSuccess: string;
@@ -18908,6 +19259,7 @@ declare module "localization/hebrew" {
18908
19259
  timerLimitPage: string;
18909
19260
  timerLimitSurvey: string;
18910
19261
  clearCaption: string;
19262
+ signaturePlaceHolder: string;
18911
19263
  chooseFileCaption: string;
18912
19264
  removeFileCaption: string;
18913
19265
  booleanCheckedLabel: string;
@@ -18915,6 +19267,16 @@ declare module "localization/hebrew" {
18915
19267
  confirmRemoveFile: string;
18916
19268
  confirmRemoveAllFiles: string;
18917
19269
  questionTitlePatternText: string;
19270
+ modalCancelButtonText: string;
19271
+ modalApplyButtonText: string;
19272
+ filterStringPlaceholder: string;
19273
+ emptyMessage: string;
19274
+ noEntriesText: string;
19275
+ noEntriesReadonlyText: string;
19276
+ more: string;
19277
+ tagboxDoneButtonCaption: string;
19278
+ selectToRankEmptyRankedAreaText: string;
19279
+ selectToRankEmptyUnrankedAreaText: string;
18918
19280
  };
18919
19281
  }
18920
19282
  declare module "localization/hindi" {
@@ -18926,20 +19288,26 @@ declare module "localization/hindi" {
18926
19288
  editText: string;
18927
19289
  startSurveyText: string;
18928
19290
  otherItemText: string;
19291
+ noneItemText: string;
18929
19292
  selectAllItemText: string;
18930
19293
  progressText: string;
19294
+ indexText: string;
18931
19295
  panelDynamicProgressText: string;
19296
+ panelDynamicTabTextFormat: string;
18932
19297
  questionsProgressText: string;
18933
19298
  emptySurvey: string;
18934
19299
  completingSurvey: string;
18935
19300
  completingSurveyBefore: string;
18936
19301
  loadingSurvey: string;
18937
19302
  placeholder: string;
19303
+ ratingOptionsCaption: string;
18938
19304
  value: string;
18939
19305
  requiredError: string;
18940
19306
  requiredErrorInPanel: string;
18941
19307
  requiredInAllRowsError: string;
18942
19308
  numericError: string;
19309
+ minError: string;
19310
+ maxError: string;
18943
19311
  textMinLength: string;
18944
19312
  textMaxLength: string;
18945
19313
  textMinMaxLength: string;
@@ -18959,16 +19327,19 @@ declare module "localization/hindi" {
18959
19327
  loadingFile: string;
18960
19328
  chooseFile: string;
18961
19329
  noFileChosen: string;
19330
+ fileDragAreaPlaceholder: string;
18962
19331
  confirmDelete: string;
18963
19332
  keyDuplicationError: string;
18964
19333
  addColumn: string;
18965
19334
  addRow: string;
18966
19335
  removeRow: string;
19336
+ emptyRowsText: string;
18967
19337
  addPanel: string;
18968
19338
  removePanel: string;
18969
19339
  choices_Item: string;
18970
19340
  matrix_column: string;
18971
19341
  matrix_row: string;
19342
+ multipletext_itemname: string;
18972
19343
  savingData: string;
18973
19344
  savingDataError: string;
18974
19345
  savingDataSuccess: string;
@@ -18982,6 +19353,7 @@ declare module "localization/hindi" {
18982
19353
  timerLimitPage: string;
18983
19354
  timerLimitSurvey: string;
18984
19355
  clearCaption: string;
19356
+ signaturePlaceHolder: string;
18985
19357
  chooseFileCaption: string;
18986
19358
  removeFileCaption: string;
18987
19359
  booleanCheckedLabel: string;
@@ -18989,6 +19361,16 @@ declare module "localization/hindi" {
18989
19361
  confirmRemoveFile: string;
18990
19362
  confirmRemoveAllFiles: string;
18991
19363
  questionTitlePatternText: string;
19364
+ modalCancelButtonText: string;
19365
+ modalApplyButtonText: string;
19366
+ filterStringPlaceholder: string;
19367
+ emptyMessage: string;
19368
+ noEntriesText: string;
19369
+ noEntriesReadonlyText: string;
19370
+ more: string;
19371
+ tagboxDoneButtonCaption: string;
19372
+ selectToRankEmptyRankedAreaText: string;
19373
+ selectToRankEmptyUnrankedAreaText: string;
18992
19374
  };
18993
19375
  }
18994
19376
  declare module "localization/hungarian" {
@@ -19003,18 +19385,23 @@ declare module "localization/hungarian" {
19003
19385
  noneItemText: string;
19004
19386
  selectAllItemText: string;
19005
19387
  progressText: string;
19388
+ indexText: string;
19006
19389
  panelDynamicProgressText: string;
19390
+ panelDynamicTabTextFormat: string;
19007
19391
  questionsProgressText: string;
19008
19392
  emptySurvey: string;
19009
19393
  completingSurvey: string;
19010
19394
  completingSurveyBefore: string;
19011
19395
  loadingSurvey: string;
19012
19396
  placeholder: string;
19397
+ ratingOptionsCaption: string;
19013
19398
  value: string;
19014
19399
  requiredError: string;
19015
19400
  requiredErrorInPanel: string;
19016
19401
  requiredInAllRowsError: string;
19017
19402
  numericError: string;
19403
+ minError: string;
19404
+ maxError: string;
19018
19405
  textMinLength: string;
19019
19406
  textMaxLength: string;
19020
19407
  textMinMaxLength: string;
@@ -19040,11 +19427,13 @@ declare module "localization/hungarian" {
19040
19427
  addColumn: string;
19041
19428
  addRow: string;
19042
19429
  removeRow: string;
19430
+ emptyRowsText: string;
19043
19431
  addPanel: string;
19044
19432
  removePanel: string;
19045
19433
  choices_Item: string;
19046
19434
  matrix_column: string;
19047
19435
  matrix_row: string;
19436
+ multipletext_itemname: string;
19048
19437
  savingData: string;
19049
19438
  savingDataError: string;
19050
19439
  savingDataSuccess: string;
@@ -19058,6 +19447,7 @@ declare module "localization/hungarian" {
19058
19447
  timerLimitPage: string;
19059
19448
  timerLimitSurvey: string;
19060
19449
  clearCaption: string;
19450
+ signaturePlaceHolder: string;
19061
19451
  chooseFileCaption: string;
19062
19452
  removeFileCaption: string;
19063
19453
  booleanCheckedLabel: string;
@@ -19065,6 +19455,16 @@ declare module "localization/hungarian" {
19065
19455
  confirmRemoveFile: string;
19066
19456
  confirmRemoveAllFiles: string;
19067
19457
  questionTitlePatternText: string;
19458
+ modalCancelButtonText: string;
19459
+ modalApplyButtonText: string;
19460
+ filterStringPlaceholder: string;
19461
+ emptyMessage: string;
19462
+ noEntriesText: string;
19463
+ noEntriesReadonlyText: string;
19464
+ more: string;
19465
+ tagboxDoneButtonCaption: string;
19466
+ selectToRankEmptyRankedAreaText: string;
19467
+ selectToRankEmptyUnrankedAreaText: string;
19068
19468
  };
19069
19469
  }
19070
19470
  declare module "localization/icelandic" {
@@ -19079,18 +19479,23 @@ declare module "localization/icelandic" {
19079
19479
  noneItemText: string;
19080
19480
  selectAllItemText: string;
19081
19481
  progressText: string;
19482
+ indexText: string;
19082
19483
  panelDynamicProgressText: string;
19484
+ panelDynamicTabTextFormat: string;
19083
19485
  questionsProgressText: string;
19084
19486
  emptySurvey: string;
19085
19487
  completingSurvey: string;
19086
19488
  completingSurveyBefore: string;
19087
19489
  loadingSurvey: string;
19088
19490
  placeholder: string;
19491
+ ratingOptionsCaption: string;
19089
19492
  value: string;
19090
19493
  requiredError: string;
19091
19494
  requiredErrorInPanel: string;
19092
19495
  requiredInAllRowsError: string;
19093
19496
  numericError: string;
19497
+ minError: string;
19498
+ maxError: string;
19094
19499
  textMinLength: string;
19095
19500
  textMaxLength: string;
19096
19501
  textMinMaxLength: string;
@@ -19110,16 +19515,19 @@ declare module "localization/icelandic" {
19110
19515
  loadingFile: string;
19111
19516
  chooseFile: string;
19112
19517
  noFileChosen: string;
19518
+ fileDragAreaPlaceholder: string;
19113
19519
  confirmDelete: string;
19114
19520
  keyDuplicationError: string;
19115
19521
  addColumn: string;
19116
19522
  addRow: string;
19117
19523
  removeRow: string;
19524
+ emptyRowsText: string;
19118
19525
  addPanel: string;
19119
19526
  removePanel: string;
19120
19527
  choices_Item: string;
19121
19528
  matrix_column: string;
19122
19529
  matrix_row: string;
19530
+ multipletext_itemname: string;
19123
19531
  savingData: string;
19124
19532
  savingDataError: string;
19125
19533
  savingDataSuccess: string;
@@ -19133,6 +19541,7 @@ declare module "localization/icelandic" {
19133
19541
  timerLimitPage: string;
19134
19542
  timerLimitSurvey: string;
19135
19543
  clearCaption: string;
19544
+ signaturePlaceHolder: string;
19136
19545
  chooseFileCaption: string;
19137
19546
  removeFileCaption: string;
19138
19547
  booleanCheckedLabel: string;
@@ -19140,6 +19549,16 @@ declare module "localization/icelandic" {
19140
19549
  confirmRemoveFile: string;
19141
19550
  confirmRemoveAllFiles: string;
19142
19551
  questionTitlePatternText: string;
19552
+ modalCancelButtonText: string;
19553
+ modalApplyButtonText: string;
19554
+ filterStringPlaceholder: string;
19555
+ emptyMessage: string;
19556
+ noEntriesText: string;
19557
+ noEntriesReadonlyText: string;
19558
+ more: string;
19559
+ tagboxDoneButtonCaption: string;
19560
+ selectToRankEmptyRankedAreaText: string;
19561
+ selectToRankEmptyUnrankedAreaText: string;
19143
19562
  };
19144
19563
  }
19145
19564
  declare module "localization/indonesian" {
@@ -19154,18 +19573,23 @@ declare module "localization/indonesian" {
19154
19573
  noneItemText: string;
19155
19574
  selectAllItemText: string;
19156
19575
  progressText: string;
19576
+ indexText: string;
19157
19577
  panelDynamicProgressText: string;
19578
+ panelDynamicTabTextFormat: string;
19158
19579
  questionsProgressText: string;
19159
19580
  emptySurvey: string;
19160
19581
  completingSurvey: string;
19161
19582
  completingSurveyBefore: string;
19162
19583
  loadingSurvey: string;
19163
19584
  placeholder: string;
19585
+ ratingOptionsCaption: string;
19164
19586
  value: string;
19165
19587
  requiredError: string;
19166
19588
  requiredErrorInPanel: string;
19167
19589
  requiredInAllRowsError: string;
19168
19590
  numericError: string;
19591
+ minError: string;
19592
+ maxError: string;
19169
19593
  textMinLength: string;
19170
19594
  textMaxLength: string;
19171
19595
  textMinMaxLength: string;
@@ -19185,16 +19609,19 @@ declare module "localization/indonesian" {
19185
19609
  loadingFile: string;
19186
19610
  chooseFile: string;
19187
19611
  noFileChosen: string;
19612
+ fileDragAreaPlaceholder: string;
19188
19613
  confirmDelete: string;
19189
19614
  keyDuplicationError: string;
19190
19615
  addColumn: string;
19191
19616
  addRow: string;
19192
19617
  removeRow: string;
19618
+ emptyRowsText: string;
19193
19619
  addPanel: string;
19194
19620
  removePanel: string;
19195
19621
  choices_Item: string;
19196
19622
  matrix_column: string;
19197
19623
  matrix_row: string;
19624
+ multipletext_itemname: string;
19198
19625
  savingData: string;
19199
19626
  savingDataError: string;
19200
19627
  savingDataSuccess: string;
@@ -19208,6 +19635,7 @@ declare module "localization/indonesian" {
19208
19635
  timerLimitPage: string;
19209
19636
  timerLimitSurvey: string;
19210
19637
  clearCaption: string;
19638
+ signaturePlaceHolder: string;
19211
19639
  chooseFileCaption: string;
19212
19640
  removeFileCaption: string;
19213
19641
  booleanCheckedLabel: string;
@@ -19215,6 +19643,16 @@ declare module "localization/indonesian" {
19215
19643
  confirmRemoveFile: string;
19216
19644
  confirmRemoveAllFiles: string;
19217
19645
  questionTitlePatternText: string;
19646
+ modalCancelButtonText: string;
19647
+ modalApplyButtonText: string;
19648
+ filterStringPlaceholder: string;
19649
+ emptyMessage: string;
19650
+ noEntriesText: string;
19651
+ noEntriesReadonlyText: string;
19652
+ more: string;
19653
+ tagboxDoneButtonCaption: string;
19654
+ selectToRankEmptyRankedAreaText: string;
19655
+ selectToRankEmptyUnrankedAreaText: string;
19218
19656
  };
19219
19657
  }
19220
19658
  declare module "localization/italian" {
@@ -19231,6 +19669,7 @@ declare module "localization/italian" {
19231
19669
  progressText: string;
19232
19670
  indexText: string;
19233
19671
  panelDynamicProgressText: string;
19672
+ panelDynamicTabTextFormat: string;
19234
19673
  questionsProgressText: string;
19235
19674
  emptySurvey: string;
19236
19675
  completingSurvey: string;
@@ -19301,7 +19740,13 @@ declare module "localization/italian" {
19301
19740
  modalCancelButtonText: string;
19302
19741
  modalApplyButtonText: string;
19303
19742
  filterStringPlaceholder: string;
19743
+ emptyMessage: string;
19304
19744
  noEntriesText: string;
19745
+ noEntriesReadonlyText: string;
19746
+ more: string;
19747
+ tagboxDoneButtonCaption: string;
19748
+ selectToRankEmptyRankedAreaText: string;
19749
+ selectToRankEmptyUnrankedAreaText: string;
19305
19750
  };
19306
19751
  }
19307
19752
  declare module "localization/japanese" {
@@ -19316,18 +19761,23 @@ declare module "localization/japanese" {
19316
19761
  noneItemText: string;
19317
19762
  selectAllItemText: string;
19318
19763
  progressText: string;
19764
+ indexText: string;
19319
19765
  panelDynamicProgressText: string;
19766
+ panelDynamicTabTextFormat: string;
19320
19767
  questionsProgressText: string;
19321
19768
  emptySurvey: string;
19322
19769
  completingSurvey: string;
19323
19770
  completingSurveyBefore: string;
19324
19771
  loadingSurvey: string;
19325
19772
  placeholder: string;
19773
+ ratingOptionsCaption: string;
19326
19774
  value: string;
19327
19775
  requiredError: string;
19328
19776
  requiredErrorInPanel: string;
19329
19777
  requiredInAllRowsError: string;
19330
19778
  numericError: string;
19779
+ minError: string;
19780
+ maxError: string;
19331
19781
  textMinLength: string;
19332
19782
  textMaxLength: string;
19333
19783
  textMinMaxLength: string;
@@ -19347,16 +19797,19 @@ declare module "localization/japanese" {
19347
19797
  loadingFile: string;
19348
19798
  chooseFile: string;
19349
19799
  noFileChosen: string;
19800
+ fileDragAreaPlaceholder: string;
19350
19801
  confirmDelete: string;
19351
19802
  keyDuplicationError: string;
19352
19803
  addColumn: string;
19353
19804
  addRow: string;
19354
19805
  removeRow: string;
19806
+ emptyRowsText: string;
19355
19807
  addPanel: string;
19356
19808
  removePanel: string;
19357
19809
  choices_Item: string;
19358
19810
  matrix_column: string;
19359
19811
  matrix_row: string;
19812
+ multipletext_itemname: string;
19360
19813
  savingData: string;
19361
19814
  savingDataError: string;
19362
19815
  savingDataSuccess: string;
@@ -19370,6 +19823,7 @@ declare module "localization/japanese" {
19370
19823
  timerLimitPage: string;
19371
19824
  timerLimitSurvey: string;
19372
19825
  clearCaption: string;
19826
+ signaturePlaceHolder: string;
19373
19827
  chooseFileCaption: string;
19374
19828
  removeFileCaption: string;
19375
19829
  booleanCheckedLabel: string;
@@ -19377,6 +19831,16 @@ declare module "localization/japanese" {
19377
19831
  confirmRemoveFile: string;
19378
19832
  confirmRemoveAllFiles: string;
19379
19833
  questionTitlePatternText: string;
19834
+ modalCancelButtonText: string;
19835
+ modalApplyButtonText: string;
19836
+ filterStringPlaceholder: string;
19837
+ emptyMessage: string;
19838
+ noEntriesText: string;
19839
+ noEntriesReadonlyText: string;
19840
+ more: string;
19841
+ tagboxDoneButtonCaption: string;
19842
+ selectToRankEmptyRankedAreaText: string;
19843
+ selectToRankEmptyUnrankedAreaText: string;
19380
19844
  };
19381
19845
  }
19382
19846
  declare module "localization/kazakh" {
@@ -19391,18 +19855,23 @@ declare module "localization/kazakh" {
19391
19855
  noneItemText: string;
19392
19856
  selectAllItemText: string;
19393
19857
  progressText: string;
19858
+ indexText: string;
19394
19859
  panelDynamicProgressText: string;
19860
+ panelDynamicTabTextFormat: string;
19395
19861
  questionsProgressText: string;
19396
19862
  emptySurvey: string;
19397
19863
  completingSurvey: string;
19398
19864
  completingSurveyBefore: string;
19399
19865
  loadingSurvey: string;
19400
19866
  placeholder: string;
19867
+ ratingOptionsCaption: string;
19401
19868
  value: string;
19402
19869
  requiredError: string;
19403
19870
  requiredErrorInPanel: string;
19404
19871
  requiredInAllRowsError: string;
19405
19872
  numericError: string;
19873
+ minError: string;
19874
+ maxError: string;
19406
19875
  textMinLength: string;
19407
19876
  textMaxLength: string;
19408
19877
  textMinMaxLength: string;
@@ -19422,16 +19891,19 @@ declare module "localization/kazakh" {
19422
19891
  loadingFile: string;
19423
19892
  chooseFile: string;
19424
19893
  noFileChosen: string;
19894
+ fileDragAreaPlaceholder: string;
19425
19895
  confirmDelete: string;
19426
19896
  keyDuplicationError: string;
19427
19897
  addColumn: string;
19428
19898
  addRow: string;
19429
19899
  removeRow: string;
19900
+ emptyRowsText: string;
19430
19901
  addPanel: string;
19431
19902
  removePanel: string;
19432
19903
  choices_Item: string;
19433
19904
  matrix_column: string;
19434
19905
  matrix_row: string;
19906
+ multipletext_itemname: string;
19435
19907
  savingData: string;
19436
19908
  savingDataError: string;
19437
19909
  savingDataSuccess: string;
@@ -19445,6 +19917,7 @@ declare module "localization/kazakh" {
19445
19917
  timerLimitPage: string;
19446
19918
  timerLimitSurvey: string;
19447
19919
  clearCaption: string;
19920
+ signaturePlaceHolder: string;
19448
19921
  chooseFileCaption: string;
19449
19922
  removeFileCaption: string;
19450
19923
  booleanCheckedLabel: string;
@@ -19452,6 +19925,16 @@ declare module "localization/kazakh" {
19452
19925
  confirmRemoveFile: string;
19453
19926
  confirmRemoveAllFiles: string;
19454
19927
  questionTitlePatternText: string;
19928
+ modalCancelButtonText: string;
19929
+ modalApplyButtonText: string;
19930
+ filterStringPlaceholder: string;
19931
+ emptyMessage: string;
19932
+ noEntriesText: string;
19933
+ noEntriesReadonlyText: string;
19934
+ more: string;
19935
+ tagboxDoneButtonCaption: string;
19936
+ selectToRankEmptyRankedAreaText: string;
19937
+ selectToRankEmptyUnrankedAreaText: string;
19455
19938
  };
19456
19939
  }
19457
19940
  declare module "localization/korean" {
@@ -19468,6 +19951,7 @@ declare module "localization/korean" {
19468
19951
  progressText: string;
19469
19952
  indexText: string;
19470
19953
  panelDynamicProgressText: string;
19954
+ panelDynamicTabTextFormat: string;
19471
19955
  questionsProgressText: string;
19472
19956
  emptySurvey: string;
19473
19957
  completingSurvey: string;
@@ -19538,8 +20022,13 @@ declare module "localization/korean" {
19538
20022
  modalCancelButtonText: string;
19539
20023
  modalApplyButtonText: string;
19540
20024
  filterStringPlaceholder: string;
20025
+ emptyMessage: string;
19541
20026
  noEntriesText: string;
20027
+ noEntriesReadonlyText: string;
19542
20028
  more: string;
20029
+ tagboxDoneButtonCaption: string;
20030
+ selectToRankEmptyRankedAreaText: string;
20031
+ selectToRankEmptyUnrankedAreaText: string;
19543
20032
  };
19544
20033
  }
19545
20034
  declare module "localization/latvian" {
@@ -19556,6 +20045,7 @@ declare module "localization/latvian" {
19556
20045
  progressText: string;
19557
20046
  indexText: string;
19558
20047
  panelDynamicProgressText: string;
20048
+ panelDynamicTabTextFormat: string;
19559
20049
  questionsProgressText: string;
19560
20050
  emptySurvey: string;
19561
20051
  completingSurvey: string;
@@ -19626,7 +20116,13 @@ declare module "localization/latvian" {
19626
20116
  modalCancelButtonText: string;
19627
20117
  modalApplyButtonText: string;
19628
20118
  filterStringPlaceholder: string;
20119
+ emptyMessage: string;
19629
20120
  noEntriesText: string;
20121
+ noEntriesReadonlyText: string;
20122
+ more: string;
20123
+ tagboxDoneButtonCaption: string;
20124
+ selectToRankEmptyRankedAreaText: string;
20125
+ selectToRankEmptyUnrankedAreaText: string;
19630
20126
  };
19631
20127
  }
19632
20128
  declare module "localization/lithuanian" {
@@ -19641,18 +20137,23 @@ declare module "localization/lithuanian" {
19641
20137
  noneItemText: string;
19642
20138
  selectAllItemText: string;
19643
20139
  progressText: string;
20140
+ indexText: string;
19644
20141
  panelDynamicProgressText: string;
20142
+ panelDynamicTabTextFormat: string;
19645
20143
  questionsProgressText: string;
19646
20144
  emptySurvey: string;
19647
20145
  completingSurvey: string;
19648
20146
  completingSurveyBefore: string;
19649
20147
  loadingSurvey: string;
19650
20148
  placeholder: string;
20149
+ ratingOptionsCaption: string;
19651
20150
  value: string;
19652
20151
  requiredError: string;
19653
20152
  requiredErrorInPanel: string;
19654
20153
  requiredInAllRowsError: string;
19655
20154
  numericError: string;
20155
+ minError: string;
20156
+ maxError: string;
19656
20157
  textMinLength: string;
19657
20158
  textMaxLength: string;
19658
20159
  textMinMaxLength: string;
@@ -19672,16 +20173,19 @@ declare module "localization/lithuanian" {
19672
20173
  loadingFile: string;
19673
20174
  chooseFile: string;
19674
20175
  noFileChosen: string;
20176
+ fileDragAreaPlaceholder: string;
19675
20177
  confirmDelete: string;
19676
20178
  keyDuplicationError: string;
19677
20179
  addColumn: string;
19678
20180
  addRow: string;
19679
20181
  removeRow: string;
20182
+ emptyRowsText: string;
19680
20183
  addPanel: string;
19681
20184
  removePanel: string;
19682
20185
  choices_Item: string;
19683
20186
  matrix_column: string;
19684
20187
  matrix_row: string;
20188
+ multipletext_itemname: string;
19685
20189
  savingData: string;
19686
20190
  savingDataError: string;
19687
20191
  savingDataSuccess: string;
@@ -19695,6 +20199,7 @@ declare module "localization/lithuanian" {
19695
20199
  timerLimitPage: string;
19696
20200
  timerLimitSurvey: string;
19697
20201
  clearCaption: string;
20202
+ signaturePlaceHolder: string;
19698
20203
  chooseFileCaption: string;
19699
20204
  removeFileCaption: string;
19700
20205
  booleanCheckedLabel: string;
@@ -19702,6 +20207,16 @@ declare module "localization/lithuanian" {
19702
20207
  confirmRemoveFile: string;
19703
20208
  confirmRemoveAllFiles: string;
19704
20209
  questionTitlePatternText: string;
20210
+ modalCancelButtonText: string;
20211
+ modalApplyButtonText: string;
20212
+ filterStringPlaceholder: string;
20213
+ emptyMessage: string;
20214
+ noEntriesText: string;
20215
+ noEntriesReadonlyText: string;
20216
+ more: string;
20217
+ tagboxDoneButtonCaption: string;
20218
+ selectToRankEmptyRankedAreaText: string;
20219
+ selectToRankEmptyUnrankedAreaText: string;
19705
20220
  };
19706
20221
  }
19707
20222
  declare module "localization/macedonian" {
@@ -19716,13 +20231,16 @@ declare module "localization/macedonian" {
19716
20231
  noneItemText: string;
19717
20232
  selectAllItemText: string;
19718
20233
  progressText: string;
20234
+ indexText: string;
19719
20235
  panelDynamicProgressText: string;
20236
+ panelDynamicTabTextFormat: string;
19720
20237
  questionsProgressText: string;
19721
20238
  emptySurvey: string;
19722
20239
  completingSurvey: string;
19723
20240
  completingSurveyBefore: string;
19724
20241
  loadingSurvey: string;
19725
20242
  placeholder: string;
20243
+ ratingOptionsCaption: string;
19726
20244
  value: string;
19727
20245
  requiredError: string;
19728
20246
  requiredErrorInPanel: string;
@@ -19761,6 +20279,7 @@ declare module "localization/macedonian" {
19761
20279
  choices_Item: string;
19762
20280
  matrix_column: string;
19763
20281
  matrix_row: string;
20282
+ multipletext_itemname: string;
19764
20283
  savingData: string;
19765
20284
  savingDataError: string;
19766
20285
  savingDataSuccess: string;
@@ -19774,6 +20293,7 @@ declare module "localization/macedonian" {
19774
20293
  timerLimitPage: string;
19775
20294
  timerLimitSurvey: string;
19776
20295
  clearCaption: string;
20296
+ signaturePlaceHolder: string;
19777
20297
  chooseFileCaption: string;
19778
20298
  removeFileCaption: string;
19779
20299
  booleanCheckedLabel: string;
@@ -19783,6 +20303,14 @@ declare module "localization/macedonian" {
19783
20303
  questionTitlePatternText: string;
19784
20304
  modalCancelButtonText: string;
19785
20305
  modalApplyButtonText: string;
20306
+ filterStringPlaceholder: string;
20307
+ emptyMessage: string;
20308
+ noEntriesText: string;
20309
+ noEntriesReadonlyText: string;
20310
+ more: string;
20311
+ tagboxDoneButtonCaption: string;
20312
+ selectToRankEmptyRankedAreaText: string;
20313
+ selectToRankEmptyUnrankedAreaText: string;
19786
20314
  };
19787
20315
  }
19788
20316
  declare module "localization/malay" {
@@ -19797,13 +20325,16 @@ declare module "localization/malay" {
19797
20325
  noneItemText: string;
19798
20326
  selectAllItemText: string;
19799
20327
  progressText: string;
20328
+ indexText: string;
19800
20329
  panelDynamicProgressText: string;
20330
+ panelDynamicTabTextFormat: string;
19801
20331
  questionsProgressText: string;
19802
20332
  emptySurvey: string;
19803
20333
  completingSurvey: string;
19804
20334
  completingSurveyBefore: string;
19805
20335
  loadingSurvey: string;
19806
20336
  placeholder: string;
20337
+ ratingOptionsCaption: string;
19807
20338
  value: string;
19808
20339
  requiredError: string;
19809
20340
  requiredErrorInPanel: string;
@@ -19867,7 +20398,13 @@ declare module "localization/malay" {
19867
20398
  modalCancelButtonText: string;
19868
20399
  modalApplyButtonText: string;
19869
20400
  filterStringPlaceholder: string;
20401
+ emptyMessage: string;
19870
20402
  noEntriesText: string;
20403
+ noEntriesReadonlyText: string;
20404
+ more: string;
20405
+ tagboxDoneButtonCaption: string;
20406
+ selectToRankEmptyRankedAreaText: string;
20407
+ selectToRankEmptyUnrankedAreaText: string;
19871
20408
  };
19872
20409
  }
19873
20410
  declare module "localization/norwegian" {
@@ -19882,18 +20419,23 @@ declare module "localization/norwegian" {
19882
20419
  noneItemText: string;
19883
20420
  selectAllItemText: string;
19884
20421
  progressText: string;
20422
+ indexText: string;
19885
20423
  panelDynamicProgressText: string;
20424
+ panelDynamicTabTextFormat: string;
19886
20425
  questionsProgressText: string;
19887
20426
  emptySurvey: string;
19888
20427
  completingSurvey: string;
19889
20428
  completingSurveyBefore: string;
19890
20429
  loadingSurvey: string;
19891
20430
  placeholder: string;
20431
+ ratingOptionsCaption: string;
19892
20432
  value: string;
19893
20433
  requiredError: string;
19894
20434
  requiredErrorInPanel: string;
19895
20435
  requiredInAllRowsError: string;
19896
20436
  numericError: string;
20437
+ minError: string;
20438
+ maxError: string;
19897
20439
  textMinLength: string;
19898
20440
  textMaxLength: string;
19899
20441
  textMinMaxLength: string;
@@ -19913,16 +20455,19 @@ declare module "localization/norwegian" {
19913
20455
  loadingFile: string;
19914
20456
  chooseFile: string;
19915
20457
  noFileChosen: string;
20458
+ fileDragAreaPlaceholder: string;
19916
20459
  confirmDelete: string;
19917
20460
  keyDuplicationError: string;
19918
20461
  addColumn: string;
19919
20462
  addRow: string;
19920
20463
  removeRow: string;
20464
+ emptyRowsText: string;
19921
20465
  addPanel: string;
19922
20466
  removePanel: string;
19923
20467
  choices_Item: string;
19924
20468
  matrix_column: string;
19925
20469
  matrix_row: string;
20470
+ multipletext_itemname: string;
19926
20471
  savingData: string;
19927
20472
  savingDataError: string;
19928
20473
  savingDataSuccess: string;
@@ -19936,6 +20481,7 @@ declare module "localization/norwegian" {
19936
20481
  timerLimitPage: string;
19937
20482
  timerLimitSurvey: string;
19938
20483
  clearCaption: string;
20484
+ signaturePlaceHolder: string;
19939
20485
  chooseFileCaption: string;
19940
20486
  removeFileCaption: string;
19941
20487
  booleanCheckedLabel: string;
@@ -19943,6 +20489,16 @@ declare module "localization/norwegian" {
19943
20489
  confirmRemoveFile: string;
19944
20490
  confirmRemoveAllFiles: string;
19945
20491
  questionTitlePatternText: string;
20492
+ modalCancelButtonText: string;
20493
+ modalApplyButtonText: string;
20494
+ filterStringPlaceholder: string;
20495
+ emptyMessage: string;
20496
+ noEntriesText: string;
20497
+ noEntriesReadonlyText: string;
20498
+ more: string;
20499
+ tagboxDoneButtonCaption: string;
20500
+ selectToRankEmptyRankedAreaText: string;
20501
+ selectToRankEmptyUnrankedAreaText: string;
19946
20502
  };
19947
20503
  }
19948
20504
  declare module "localization/persian" {
@@ -19957,18 +20513,23 @@ declare module "localization/persian" {
19957
20513
  noneItemText: string;
19958
20514
  selectAllItemText: string;
19959
20515
  progressText: string;
20516
+ indexText: string;
19960
20517
  panelDynamicProgressText: string;
20518
+ panelDynamicTabTextFormat: string;
19961
20519
  questionsProgressText: string;
19962
20520
  emptySurvey: string;
19963
20521
  completingSurvey: string;
19964
20522
  completingSurveyBefore: string;
19965
20523
  loadingSurvey: string;
19966
20524
  placeholder: string;
20525
+ ratingOptionsCaption: string;
19967
20526
  value: string;
19968
20527
  requiredError: string;
19969
20528
  requiredErrorInPanel: string;
19970
20529
  requiredInAllRowsError: string;
19971
20530
  numericError: string;
20531
+ minError: string;
20532
+ maxError: string;
19972
20533
  textMinLength: string;
19973
20534
  textMaxLength: string;
19974
20535
  textMinMaxLength: string;
@@ -19988,16 +20549,19 @@ declare module "localization/persian" {
19988
20549
  loadingFile: string;
19989
20550
  chooseFile: string;
19990
20551
  noFileChosen: string;
20552
+ fileDragAreaPlaceholder: string;
19991
20553
  confirmDelete: string;
19992
20554
  keyDuplicationError: string;
19993
20555
  addColumn: string;
19994
20556
  addRow: string;
19995
20557
  removeRow: string;
20558
+ emptyRowsText: string;
19996
20559
  addPanel: string;
19997
20560
  removePanel: string;
19998
20561
  choices_Item: string;
19999
20562
  matrix_column: string;
20000
20563
  matrix_row: string;
20564
+ multipletext_itemname: string;
20001
20565
  savingData: string;
20002
20566
  savingDataError: string;
20003
20567
  savingDataSuccess: string;
@@ -20011,6 +20575,7 @@ declare module "localization/persian" {
20011
20575
  timerLimitPage: string;
20012
20576
  timerLimitSurvey: string;
20013
20577
  clearCaption: string;
20578
+ signaturePlaceHolder: string;
20014
20579
  chooseFileCaption: string;
20015
20580
  removeFileCaption: string;
20016
20581
  booleanCheckedLabel: string;
@@ -20018,6 +20583,16 @@ declare module "localization/persian" {
20018
20583
  confirmRemoveFile: string;
20019
20584
  confirmRemoveAllFiles: string;
20020
20585
  questionTitlePatternText: string;
20586
+ modalCancelButtonText: string;
20587
+ modalApplyButtonText: string;
20588
+ filterStringPlaceholder: string;
20589
+ emptyMessage: string;
20590
+ noEntriesText: string;
20591
+ noEntriesReadonlyText: string;
20592
+ more: string;
20593
+ tagboxDoneButtonCaption: string;
20594
+ selectToRankEmptyRankedAreaText: string;
20595
+ selectToRankEmptyUnrankedAreaText: string;
20021
20596
  };
20022
20597
  }
20023
20598
  declare module "localization/polish" {
@@ -20034,6 +20609,7 @@ declare module "localization/polish" {
20034
20609
  progressText: string;
20035
20610
  indexText: string;
20036
20611
  panelDynamicProgressText: string;
20612
+ panelDynamicTabTextFormat: string;
20037
20613
  questionsProgressText: string;
20038
20614
  emptySurvey: string;
20039
20615
  completingSurvey: string;
@@ -20104,7 +20680,13 @@ declare module "localization/polish" {
20104
20680
  modalCancelButtonText: string;
20105
20681
  modalApplyButtonText: string;
20106
20682
  filterStringPlaceholder: string;
20683
+ emptyMessage: string;
20107
20684
  noEntriesText: string;
20685
+ noEntriesReadonlyText: string;
20686
+ more: string;
20687
+ tagboxDoneButtonCaption: string;
20688
+ selectToRankEmptyRankedAreaText: string;
20689
+ selectToRankEmptyUnrankedAreaText: string;
20108
20690
  };
20109
20691
  }
20110
20692
  declare module "localization/portuguese" {
@@ -20121,6 +20703,7 @@ declare module "localization/portuguese" {
20121
20703
  progressText: string;
20122
20704
  indexText: string;
20123
20705
  panelDynamicProgressText: string;
20706
+ panelDynamicTabTextFormat: string;
20124
20707
  questionsProgressText: string;
20125
20708
  emptySurvey: string;
20126
20709
  completingSurvey: string;
@@ -20193,8 +20776,11 @@ declare module "localization/portuguese" {
20193
20776
  filterStringPlaceholder: string;
20194
20777
  emptyMessage: string;
20195
20778
  noEntriesText: string;
20779
+ noEntriesReadonlyText: string;
20196
20780
  more: string;
20197
20781
  tagboxDoneButtonCaption: string;
20782
+ selectToRankEmptyRankedAreaText: string;
20783
+ selectToRankEmptyUnrankedAreaText: string;
20198
20784
  };
20199
20785
  }
20200
20786
  declare module "localization/portuguese-br" {
@@ -20202,30 +20788,96 @@ declare module "localization/portuguese-br" {
20202
20788
  * You don't need to translate strings that have the same value as Portuguese translation
20203
20789
  */
20204
20790
  export var portugueseBrSurveyStrings: {
20791
+ pagePrevText: string;
20792
+ pageNextText: string;
20793
+ completeText: string;
20794
+ previewText: string;
20795
+ editText: string;
20796
+ startSurveyText: string;
20797
+ otherItemText: string;
20798
+ noneItemText: string;
20799
+ selectAllItemText: string;
20800
+ progressText: string;
20801
+ indexText: string;
20802
+ panelDynamicProgressText: string;
20803
+ panelDynamicTabTextFormat: string;
20804
+ questionsProgressText: string;
20205
20805
  emptySurvey: string;
20206
20806
  completingSurvey: string;
20207
20807
  completingSurveyBefore: string;
20208
20808
  loadingSurvey: string;
20809
+ placeholder: string;
20810
+ ratingOptionsCaption: string;
20811
+ value: string;
20209
20812
  requiredError: string;
20210
20813
  requiredErrorInPanel: string;
20211
20814
  requiredInAllRowsError: string;
20815
+ numericError: string;
20816
+ minError: string;
20817
+ maxError: string;
20818
+ textMinLength: string;
20819
+ textMaxLength: string;
20820
+ textMinMaxLength: string;
20821
+ minRowCountError: string;
20822
+ minSelectError: string;
20212
20823
  maxSelectError: string;
20824
+ numericMinMax: string;
20825
+ numericMin: string;
20826
+ numericMax: string;
20213
20827
  invalidEmail: string;
20828
+ invalidExpression: string;
20214
20829
  urlRequestError: string;
20215
20830
  urlGetChoicesError: string;
20831
+ exceedMaxSize: string;
20216
20832
  otherRequiredError: string;
20217
20833
  uploadingFile: string;
20218
20834
  loadingFile: string;
20835
+ chooseFile: string;
20219
20836
  noFileChosen: string;
20837
+ fileDragAreaPlaceholder: string;
20220
20838
  confirmDelete: string;
20221
20839
  keyDuplicationError: string;
20840
+ addColumn: string;
20841
+ addRow: string;
20842
+ removeRow: string;
20843
+ emptyRowsText: string;
20844
+ addPanel: string;
20845
+ removePanel: string;
20846
+ choices_Item: string;
20847
+ matrix_column: string;
20848
+ matrix_row: string;
20849
+ multipletext_itemname: string;
20222
20850
  savingData: string;
20223
20851
  savingDataError: string;
20224
20852
  savingDataSuccess: string;
20853
+ saveAgainButton: string;
20854
+ timerMin: string;
20855
+ timerSec: string;
20856
+ timerSpentAll: string;
20857
+ timerSpentPage: string;
20858
+ timerSpentSurvey: string;
20859
+ timerLimitAll: string;
20860
+ timerLimitPage: string;
20861
+ timerLimitSurvey: string;
20862
+ clearCaption: string;
20863
+ signaturePlaceHolder: string;
20225
20864
  chooseFileCaption: string;
20226
20865
  removeFileCaption: string;
20866
+ booleanCheckedLabel: string;
20867
+ booleanUncheckedLabel: string;
20227
20868
  confirmRemoveFile: string;
20228
20869
  confirmRemoveAllFiles: string;
20870
+ questionTitlePatternText: string;
20871
+ modalCancelButtonText: string;
20872
+ modalApplyButtonText: string;
20873
+ filterStringPlaceholder: string;
20874
+ emptyMessage: string;
20875
+ noEntriesText: string;
20876
+ noEntriesReadonlyText: string;
20877
+ more: string;
20878
+ tagboxDoneButtonCaption: string;
20879
+ selectToRankEmptyRankedAreaText: string;
20880
+ selectToRankEmptyUnrankedAreaText: string;
20229
20881
  };
20230
20882
  }
20231
20883
  declare module "localization/romanian" {
@@ -20245,6 +20897,7 @@ declare module "localization/russian" {
20245
20897
  progressText: string;
20246
20898
  indexText: string;
20247
20899
  panelDynamicProgressText: string;
20900
+ panelDynamicTabTextFormat: string;
20248
20901
  questionsProgressText: string;
20249
20902
  emptySurvey: string;
20250
20903
  completingSurvey: string;
@@ -20315,7 +20968,13 @@ declare module "localization/russian" {
20315
20968
  modalCancelButtonText: string;
20316
20969
  modalApplyButtonText: string;
20317
20970
  filterStringPlaceholder: string;
20971
+ emptyMessage: string;
20318
20972
  noEntriesText: string;
20973
+ noEntriesReadonlyText: string;
20974
+ more: string;
20975
+ tagboxDoneButtonCaption: string;
20976
+ selectToRankEmptyRankedAreaText: string;
20977
+ selectToRankEmptyUnrankedAreaText: string;
20319
20978
  };
20320
20979
  }
20321
20980
  declare module "localization/serbian" {
@@ -20330,13 +20989,16 @@ declare module "localization/serbian" {
20330
20989
  noneItemText: string;
20331
20990
  selectAllItemText: string;
20332
20991
  progressText: string;
20992
+ indexText: string;
20333
20993
  panelDynamicProgressText: string;
20994
+ panelDynamicTabTextFormat: string;
20334
20995
  questionsProgressText: string;
20335
20996
  emptySurvey: string;
20336
20997
  completingSurvey: string;
20337
20998
  completingSurveyBefore: string;
20338
20999
  loadingSurvey: string;
20339
21000
  placeholder: string;
21001
+ ratingOptionsCaption: string;
20340
21002
  value: string;
20341
21003
  requiredError: string;
20342
21004
  requiredErrorInPanel: string;
@@ -20363,6 +21025,7 @@ declare module "localization/serbian" {
20363
21025
  loadingFile: string;
20364
21026
  chooseFile: string;
20365
21027
  noFileChosen: string;
21028
+ fileDragAreaPlaceholder: string;
20366
21029
  confirmDelete: string;
20367
21030
  keyDuplicationError: string;
20368
21031
  addColumn: string;
@@ -20388,6 +21051,7 @@ declare module "localization/serbian" {
20388
21051
  timerLimitPage: string;
20389
21052
  timerLimitSurvey: string;
20390
21053
  clearCaption: string;
21054
+ signaturePlaceHolder: string;
20391
21055
  chooseFileCaption: string;
20392
21056
  removeFileCaption: string;
20393
21057
  booleanCheckedLabel: string;
@@ -20397,6 +21061,14 @@ declare module "localization/serbian" {
20397
21061
  questionTitlePatternText: string;
20398
21062
  modalCancelButtonText: string;
20399
21063
  modalApplyButtonText: string;
21064
+ filterStringPlaceholder: string;
21065
+ emptyMessage: string;
21066
+ noEntriesText: string;
21067
+ noEntriesReadonlyText: string;
21068
+ more: string;
21069
+ tagboxDoneButtonCaption: string;
21070
+ selectToRankEmptyRankedAreaText: string;
21071
+ selectToRankEmptyUnrankedAreaText: string;
20400
21072
  };
20401
21073
  }
20402
21074
  declare module "localization/simplified-chinese" {
@@ -20411,13 +21083,16 @@ declare module "localization/simplified-chinese" {
20411
21083
  noneItemText: string;
20412
21084
  selectAllItemText: string;
20413
21085
  progressText: string;
21086
+ indexText: string;
20414
21087
  panelDynamicProgressText: string;
21088
+ panelDynamicTabTextFormat: string;
20415
21089
  questionsProgressText: string;
20416
21090
  emptySurvey: string;
20417
21091
  completingSurvey: string;
20418
21092
  completingSurveyBefore: string;
20419
21093
  loadingSurvey: string;
20420
21094
  placeholder: string;
21095
+ ratingOptionsCaption: string;
20421
21096
  value: string;
20422
21097
  requiredError: string;
20423
21098
  requiredErrorInPanel: string;
@@ -20444,6 +21119,7 @@ declare module "localization/simplified-chinese" {
20444
21119
  loadingFile: string;
20445
21120
  chooseFile: string;
20446
21121
  noFileChosen: string;
21122
+ fileDragAreaPlaceholder: string;
20447
21123
  confirmDelete: string;
20448
21124
  keyDuplicationError: string;
20449
21125
  addColumn: string;
@@ -20469,6 +21145,7 @@ declare module "localization/simplified-chinese" {
20469
21145
  timerLimitPage: string;
20470
21146
  timerLimitSurvey: string;
20471
21147
  clearCaption: string;
21148
+ signaturePlaceHolder: string;
20472
21149
  chooseFileCaption: string;
20473
21150
  removeFileCaption: string;
20474
21151
  booleanCheckedLabel: string;
@@ -20478,6 +21155,14 @@ declare module "localization/simplified-chinese" {
20478
21155
  questionTitlePatternText: string;
20479
21156
  modalCancelButtonText: string;
20480
21157
  modalApplyButtonText: string;
21158
+ filterStringPlaceholder: string;
21159
+ emptyMessage: string;
21160
+ noEntriesText: string;
21161
+ noEntriesReadonlyText: string;
21162
+ more: string;
21163
+ tagboxDoneButtonCaption: string;
21164
+ selectToRankEmptyRankedAreaText: string;
21165
+ selectToRankEmptyUnrankedAreaText: string;
20481
21166
  };
20482
21167
  }
20483
21168
  declare module "localization/slovak" {
@@ -20492,13 +21177,16 @@ declare module "localization/slovak" {
20492
21177
  noneItemText: string;
20493
21178
  selectAllItemText: string;
20494
21179
  progressText: string;
21180
+ indexText: string;
20495
21181
  panelDynamicProgressText: string;
21182
+ panelDynamicTabTextFormat: string;
20496
21183
  questionsProgressText: string;
20497
21184
  emptySurvey: string;
20498
21185
  completingSurvey: string;
20499
21186
  completingSurveyBefore: string;
20500
21187
  loadingSurvey: string;
20501
21188
  placeholder: string;
21189
+ ratingOptionsCaption: string;
20502
21190
  value: string;
20503
21191
  requiredError: string;
20504
21192
  requiredErrorInPanel: string;
@@ -20562,7 +21250,13 @@ declare module "localization/slovak" {
20562
21250
  modalCancelButtonText: string;
20563
21251
  modalApplyButtonText: string;
20564
21252
  filterStringPlaceholder: string;
21253
+ emptyMessage: string;
20565
21254
  noEntriesText: string;
21255
+ noEntriesReadonlyText: string;
21256
+ more: string;
21257
+ tagboxDoneButtonCaption: string;
21258
+ selectToRankEmptyRankedAreaText: string;
21259
+ selectToRankEmptyUnrankedAreaText: string;
20566
21260
  };
20567
21261
  }
20568
21262
  declare module "localization/spanish" {
@@ -20579,6 +21273,7 @@ declare module "localization/spanish" {
20579
21273
  progressText: string;
20580
21274
  indexText: string;
20581
21275
  panelDynamicProgressText: string;
21276
+ panelDynamicTabTextFormat: string;
20582
21277
  questionsProgressText: string;
20583
21278
  emptySurvey: string;
20584
21279
  completingSurvey: string;
@@ -20649,7 +21344,13 @@ declare module "localization/spanish" {
20649
21344
  modalCancelButtonText: string;
20650
21345
  modalApplyButtonText: string;
20651
21346
  filterStringPlaceholder: string;
21347
+ emptyMessage: string;
20652
21348
  noEntriesText: string;
21349
+ noEntriesReadonlyText: string;
21350
+ more: string;
21351
+ tagboxDoneButtonCaption: string;
21352
+ selectToRankEmptyRankedAreaText: string;
21353
+ selectToRankEmptyUnrankedAreaText: string;
20653
21354
  };
20654
21355
  }
20655
21356
  declare module "localization/swahili" {
@@ -20664,18 +21365,23 @@ declare module "localization/swahili" {
20664
21365
  noneItemText: string;
20665
21366
  selectAllItemText: string;
20666
21367
  progressText: string;
21368
+ indexText: string;
20667
21369
  panelDynamicProgressText: string;
21370
+ panelDynamicTabTextFormat: string;
20668
21371
  questionsProgressText: string;
20669
21372
  emptySurvey: string;
20670
21373
  completingSurvey: string;
20671
21374
  completingSurveyBefore: string;
20672
21375
  loadingSurvey: string;
20673
21376
  placeholder: string;
21377
+ ratingOptionsCaption: string;
20674
21378
  value: string;
20675
21379
  requiredError: string;
20676
21380
  requiredErrorInPanel: string;
20677
21381
  requiredInAllRowsError: string;
20678
21382
  numericError: string;
21383
+ minError: string;
21384
+ maxError: string;
20679
21385
  textMinLength: string;
20680
21386
  textMaxLength: string;
20681
21387
  textMinMaxLength: string;
@@ -20695,16 +21401,19 @@ declare module "localization/swahili" {
20695
21401
  loadingFile: string;
20696
21402
  chooseFile: string;
20697
21403
  noFileChosen: string;
21404
+ fileDragAreaPlaceholder: string;
20698
21405
  confirmDelete: string;
20699
21406
  keyDuplicationError: string;
20700
21407
  addColumn: string;
20701
21408
  addRow: string;
20702
21409
  removeRow: string;
21410
+ emptyRowsText: string;
20703
21411
  addPanel: string;
20704
21412
  removePanel: string;
20705
21413
  choices_Item: string;
20706
21414
  matrix_column: string;
20707
21415
  matrix_row: string;
21416
+ multipletext_itemname: string;
20708
21417
  savingData: string;
20709
21418
  savingDataError: string;
20710
21419
  savingDataSuccess: string;
@@ -20718,6 +21427,7 @@ declare module "localization/swahili" {
20718
21427
  timerLimitPage: string;
20719
21428
  timerLimitSurvey: string;
20720
21429
  clearCaption: string;
21430
+ signaturePlaceHolder: string;
20721
21431
  chooseFileCaption: string;
20722
21432
  removeFileCaption: string;
20723
21433
  booleanCheckedLabel: string;
@@ -20725,6 +21435,16 @@ declare module "localization/swahili" {
20725
21435
  confirmRemoveFile: string;
20726
21436
  confirmRemoveAllFiles: string;
20727
21437
  questionTitlePatternText: string;
21438
+ modalCancelButtonText: string;
21439
+ modalApplyButtonText: string;
21440
+ filterStringPlaceholder: string;
21441
+ emptyMessage: string;
21442
+ noEntriesText: string;
21443
+ noEntriesReadonlyText: string;
21444
+ more: string;
21445
+ tagboxDoneButtonCaption: string;
21446
+ selectToRankEmptyRankedAreaText: string;
21447
+ selectToRankEmptyUnrankedAreaText: string;
20728
21448
  };
20729
21449
  }
20730
21450
  declare module "localization/swedish" {
@@ -20741,6 +21461,7 @@ declare module "localization/swedish" {
20741
21461
  progressText: string;
20742
21462
  indexText: string;
20743
21463
  panelDynamicProgressText: string;
21464
+ panelDynamicTabTextFormat: string;
20744
21465
  questionsProgressText: string;
20745
21466
  emptySurvey: string;
20746
21467
  completingSurvey: string;
@@ -20774,11 +21495,13 @@ declare module "localization/swedish" {
20774
21495
  loadingFile: string;
20775
21496
  chooseFile: string;
20776
21497
  noFileChosen: string;
21498
+ fileDragAreaPlaceholder: string;
20777
21499
  confirmDelete: string;
20778
21500
  keyDuplicationError: string;
20779
21501
  addColumn: string;
20780
21502
  addRow: string;
20781
21503
  removeRow: string;
21504
+ emptyRowsText: string;
20782
21505
  addPanel: string;
20783
21506
  removePanel: string;
20784
21507
  choices_Item: string;
@@ -20811,7 +21534,11 @@ declare module "localization/swedish" {
20811
21534
  filterStringPlaceholder: string;
20812
21535
  emptyMessage: string;
20813
21536
  noEntriesText: string;
21537
+ noEntriesReadonlyText: string;
20814
21538
  more: string;
21539
+ tagboxDoneButtonCaption: string;
21540
+ selectToRankEmptyRankedAreaText: string;
21541
+ selectToRankEmptyUnrankedAreaText: string;
20815
21542
  };
20816
21543
  }
20817
21544
  declare module "localization/tajik" {
@@ -20890,18 +21617,23 @@ declare module "localization/thai" {
20890
21617
  noneItemText: string;
20891
21618
  selectAllItemText: string;
20892
21619
  progressText: string;
21620
+ indexText: string;
20893
21621
  panelDynamicProgressText: string;
21622
+ panelDynamicTabTextFormat: string;
20894
21623
  questionsProgressText: string;
20895
21624
  emptySurvey: string;
20896
21625
  completingSurvey: string;
20897
21626
  completingSurveyBefore: string;
20898
21627
  loadingSurvey: string;
20899
21628
  placeholder: string;
21629
+ ratingOptionsCaption: string;
20900
21630
  value: string;
20901
21631
  requiredError: string;
20902
21632
  requiredErrorInPanel: string;
20903
21633
  requiredInAllRowsError: string;
20904
21634
  numericError: string;
21635
+ minError: string;
21636
+ maxError: string;
20905
21637
  textMinLength: string;
20906
21638
  textMaxLength: string;
20907
21639
  textMinMaxLength: string;
@@ -20921,16 +21653,19 @@ declare module "localization/thai" {
20921
21653
  loadingFile: string;
20922
21654
  chooseFile: string;
20923
21655
  noFileChosen: string;
21656
+ fileDragAreaPlaceholder: string;
20924
21657
  confirmDelete: string;
20925
21658
  keyDuplicationError: string;
20926
21659
  addColumn: string;
20927
21660
  addRow: string;
20928
21661
  removeRow: string;
21662
+ emptyRowsText: string;
20929
21663
  addPanel: string;
20930
21664
  removePanel: string;
20931
21665
  choices_Item: string;
20932
21666
  matrix_column: string;
20933
21667
  matrix_row: string;
21668
+ multipletext_itemname: string;
20934
21669
  savingData: string;
20935
21670
  savingDataError: string;
20936
21671
  savingDataSuccess: string;
@@ -20944,6 +21679,7 @@ declare module "localization/thai" {
20944
21679
  timerLimitPage: string;
20945
21680
  timerLimitSurvey: string;
20946
21681
  clearCaption: string;
21682
+ signaturePlaceHolder: string;
20947
21683
  chooseFileCaption: string;
20948
21684
  removeFileCaption: string;
20949
21685
  booleanCheckedLabel: string;
@@ -20951,6 +21687,16 @@ declare module "localization/thai" {
20951
21687
  confirmRemoveFile: string;
20952
21688
  confirmRemoveAllFiles: string;
20953
21689
  questionTitlePatternText: string;
21690
+ modalCancelButtonText: string;
21691
+ modalApplyButtonText: string;
21692
+ filterStringPlaceholder: string;
21693
+ emptyMessage: string;
21694
+ noEntriesText: string;
21695
+ noEntriesReadonlyText: string;
21696
+ more: string;
21697
+ tagboxDoneButtonCaption: string;
21698
+ selectToRankEmptyRankedAreaText: string;
21699
+ selectToRankEmptyUnrankedAreaText: string;
20954
21700
  };
20955
21701
  }
20956
21702
  declare module "localization/traditional-chinese" {
@@ -20958,15 +21704,30 @@ declare module "localization/traditional-chinese" {
20958
21704
  pagePrevText: string;
20959
21705
  pageNextText: string;
20960
21706
  completeText: string;
21707
+ previewText: string;
21708
+ editText: string;
21709
+ startSurveyText: string;
20961
21710
  otherItemText: string;
21711
+ noneItemText: string;
21712
+ selectAllItemText: string;
20962
21713
  progressText: string;
21714
+ indexText: string;
21715
+ panelDynamicProgressText: string;
21716
+ panelDynamicTabTextFormat: string;
21717
+ questionsProgressText: string;
20963
21718
  emptySurvey: string;
20964
21719
  completingSurvey: string;
21720
+ completingSurveyBefore: string;
20965
21721
  loadingSurvey: string;
20966
21722
  placeholder: string;
21723
+ ratingOptionsCaption: string;
21724
+ value: string;
20967
21725
  requiredError: string;
21726
+ requiredErrorInPanel: string;
20968
21727
  requiredInAllRowsError: string;
20969
21728
  numericError: string;
21729
+ minError: string;
21730
+ maxError: string;
20970
21731
  textMinLength: string;
20971
21732
  textMaxLength: string;
20972
21733
  textMinMaxLength: string;
@@ -20977,20 +21738,59 @@ declare module "localization/traditional-chinese" {
20977
21738
  numericMin: string;
20978
21739
  numericMax: string;
20979
21740
  invalidEmail: string;
21741
+ invalidExpression: string;
20980
21742
  urlRequestError: string;
20981
21743
  urlGetChoicesError: string;
20982
21744
  exceedMaxSize: string;
20983
21745
  otherRequiredError: string;
20984
21746
  uploadingFile: string;
21747
+ loadingFile: string;
21748
+ chooseFile: string;
21749
+ noFileChosen: string;
21750
+ fileDragAreaPlaceholder: string;
21751
+ confirmDelete: string;
21752
+ keyDuplicationError: string;
21753
+ addColumn: string;
20985
21754
  addRow: string;
20986
21755
  removeRow: string;
21756
+ emptyRowsText: string;
21757
+ addPanel: string;
21758
+ removePanel: string;
20987
21759
  choices_Item: string;
20988
21760
  matrix_column: string;
20989
21761
  matrix_row: string;
21762
+ multipletext_itemname: string;
20990
21763
  savingData: string;
20991
21764
  savingDataError: string;
20992
21765
  savingDataSuccess: string;
20993
21766
  saveAgainButton: string;
21767
+ timerMin: string;
21768
+ timerSec: string;
21769
+ timerSpentAll: string;
21770
+ timerSpentPage: string;
21771
+ timerSpentSurvey: string;
21772
+ timerLimitAll: string;
21773
+ timerLimitPage: string;
21774
+ timerLimitSurvey: string;
21775
+ clearCaption: string;
21776
+ signaturePlaceHolder: string;
21777
+ chooseFileCaption: string;
21778
+ removeFileCaption: string;
21779
+ booleanCheckedLabel: string;
21780
+ booleanUncheckedLabel: string;
21781
+ confirmRemoveFile: string;
21782
+ confirmRemoveAllFiles: string;
21783
+ questionTitlePatternText: string;
21784
+ modalCancelButtonText: string;
21785
+ modalApplyButtonText: string;
21786
+ filterStringPlaceholder: string;
21787
+ emptyMessage: string;
21788
+ noEntriesText: string;
21789
+ noEntriesReadonlyText: string;
21790
+ more: string;
21791
+ tagboxDoneButtonCaption: string;
21792
+ selectToRankEmptyRankedAreaText: string;
21793
+ selectToRankEmptyUnrankedAreaText: string;
20994
21794
  };
20995
21795
  }
20996
21796
  declare module "localization/turkish" {
@@ -21099,18 +21899,23 @@ declare module "localization/ukrainian" {
21099
21899
  noneItemText: string;
21100
21900
  selectAllItemText: string;
21101
21901
  progressText: string;
21902
+ indexText: string;
21102
21903
  panelDynamicProgressText: string;
21904
+ panelDynamicTabTextFormat: string;
21103
21905
  questionsProgressText: string;
21104
21906
  emptySurvey: string;
21105
21907
  completingSurvey: string;
21106
21908
  completingSurveyBefore: string;
21107
21909
  loadingSurvey: string;
21108
21910
  placeholder: string;
21911
+ ratingOptionsCaption: string;
21109
21912
  value: string;
21110
21913
  requiredError: string;
21111
21914
  requiredErrorInPanel: string;
21112
21915
  requiredInAllRowsError: string;
21113
21916
  numericError: string;
21917
+ minError: string;
21918
+ maxError: string;
21114
21919
  textMinLength: string;
21115
21920
  textMaxLength: string;
21116
21921
  textMinMaxLength: string;
@@ -21130,16 +21935,19 @@ declare module "localization/ukrainian" {
21130
21935
  loadingFile: string;
21131
21936
  chooseFile: string;
21132
21937
  noFileChosen: string;
21938
+ fileDragAreaPlaceholder: string;
21133
21939
  confirmDelete: string;
21134
21940
  keyDuplicationError: string;
21135
21941
  addColumn: string;
21136
21942
  addRow: string;
21137
21943
  removeRow: string;
21944
+ emptyRowsText: string;
21138
21945
  addPanel: string;
21139
21946
  removePanel: string;
21140
21947
  choices_Item: string;
21141
21948
  matrix_column: string;
21142
21949
  matrix_row: string;
21950
+ multipletext_itemname: string;
21143
21951
  savingData: string;
21144
21952
  savingDataError: string;
21145
21953
  savingDataSuccess: string;
@@ -21153,6 +21961,7 @@ declare module "localization/ukrainian" {
21153
21961
  timerLimitPage: string;
21154
21962
  timerLimitSurvey: string;
21155
21963
  clearCaption: string;
21964
+ signaturePlaceHolder: string;
21156
21965
  chooseFileCaption: string;
21157
21966
  removeFileCaption: string;
21158
21967
  booleanCheckedLabel: string;
@@ -21160,6 +21969,16 @@ declare module "localization/ukrainian" {
21160
21969
  confirmRemoveFile: string;
21161
21970
  confirmRemoveAllFiles: string;
21162
21971
  questionTitlePatternText: string;
21972
+ modalCancelButtonText: string;
21973
+ modalApplyButtonText: string;
21974
+ filterStringPlaceholder: string;
21975
+ emptyMessage: string;
21976
+ noEntriesText: string;
21977
+ noEntriesReadonlyText: string;
21978
+ more: string;
21979
+ tagboxDoneButtonCaption: string;
21980
+ selectToRankEmptyRankedAreaText: string;
21981
+ selectToRankEmptyUnrankedAreaText: string;
21163
21982
  };
21164
21983
  }
21165
21984
  declare module "localization/vietnamese" {
@@ -21174,18 +21993,23 @@ declare module "localization/vietnamese" {
21174
21993
  noneItemText: string;
21175
21994
  selectAllItemText: string;
21176
21995
  progressText: string;
21996
+ indexText: string;
21177
21997
  panelDynamicProgressText: string;
21998
+ panelDynamicTabTextFormat: string;
21178
21999
  questionsProgressText: string;
21179
22000
  emptySurvey: string;
21180
22001
  completingSurvey: string;
21181
22002
  completingSurveyBefore: string;
21182
22003
  loadingSurvey: string;
21183
22004
  placeholder: string;
22005
+ ratingOptionsCaption: string;
21184
22006
  value: string;
21185
22007
  requiredError: string;
21186
22008
  requiredErrorInPanel: string;
21187
22009
  requiredInAllRowsError: string;
21188
22010
  numericError: string;
22011
+ minError: string;
22012
+ maxError: string;
21189
22013
  textMinLength: string;
21190
22014
  textMaxLength: string;
21191
22015
  textMinMaxLength: string;
@@ -21205,16 +22029,19 @@ declare module "localization/vietnamese" {
21205
22029
  loadingFile: string;
21206
22030
  chooseFile: string;
21207
22031
  noFileChosen: string;
22032
+ fileDragAreaPlaceholder: string;
21208
22033
  confirmDelete: string;
21209
22034
  keyDuplicationError: string;
21210
22035
  addColumn: string;
21211
22036
  addRow: string;
21212
22037
  removeRow: string;
22038
+ emptyRowsText: string;
21213
22039
  addPanel: string;
21214
22040
  removePanel: string;
21215
22041
  choices_Item: string;
21216
22042
  matrix_column: string;
21217
22043
  matrix_row: string;
22044
+ multipletext_itemname: string;
21218
22045
  savingData: string;
21219
22046
  savingDataError: string;
21220
22047
  savingDataSuccess: string;
@@ -21228,6 +22055,7 @@ declare module "localization/vietnamese" {
21228
22055
  timerLimitPage: string;
21229
22056
  timerLimitSurvey: string;
21230
22057
  clearCaption: string;
22058
+ signaturePlaceHolder: string;
21231
22059
  chooseFileCaption: string;
21232
22060
  removeFileCaption: string;
21233
22061
  booleanCheckedLabel: string;
@@ -21235,6 +22063,16 @@ declare module "localization/vietnamese" {
21235
22063
  confirmRemoveFile: string;
21236
22064
  confirmRemoveAllFiles: string;
21237
22065
  questionTitlePatternText: string;
22066
+ modalCancelButtonText: string;
22067
+ modalApplyButtonText: string;
22068
+ filterStringPlaceholder: string;
22069
+ emptyMessage: string;
22070
+ noEntriesText: string;
22071
+ noEntriesReadonlyText: string;
22072
+ more: string;
22073
+ tagboxDoneButtonCaption: string;
22074
+ selectToRankEmptyRankedAreaText: string;
22075
+ selectToRankEmptyUnrankedAreaText: string;
21238
22076
  };
21239
22077
  }
21240
22078
  declare module "localization/welsh" {
@@ -21249,18 +22087,23 @@ declare module "localization/welsh" {
21249
22087
  noneItemText: string;
21250
22088
  selectAllItemText: string;
21251
22089
  progressText: string;
22090
+ indexText: string;
21252
22091
  panelDynamicProgressText: string;
22092
+ panelDynamicTabTextFormat: string;
21253
22093
  questionsProgressText: string;
21254
22094
  emptySurvey: string;
21255
22095
  completingSurvey: string;
21256
22096
  completingSurveyBefore: string;
21257
22097
  loadingSurvey: string;
21258
22098
  placeholder: string;
22099
+ ratingOptionsCaption: string;
21259
22100
  value: string;
21260
22101
  requiredError: string;
21261
22102
  requiredErrorInPanel: string;
21262
22103
  requiredInAllRowsError: string;
21263
22104
  numericError: string;
22105
+ minError: string;
22106
+ maxError: string;
21264
22107
  textMinLength: string;
21265
22108
  textMaxLength: string;
21266
22109
  textMinMaxLength: string;
@@ -21280,16 +22123,19 @@ declare module "localization/welsh" {
21280
22123
  loadingFile: string;
21281
22124
  chooseFile: string;
21282
22125
  noFileChosen: string;
22126
+ fileDragAreaPlaceholder: string;
21283
22127
  confirmDelete: string;
21284
22128
  keyDuplicationError: string;
21285
22129
  addColumn: string;
21286
22130
  addRow: string;
21287
22131
  removeRow: string;
22132
+ emptyRowsText: string;
21288
22133
  addPanel: string;
21289
22134
  removePanel: string;
21290
22135
  choices_Item: string;
21291
22136
  matrix_column: string;
21292
22137
  matrix_row: string;
22138
+ multipletext_itemname: string;
21293
22139
  savingData: string;
21294
22140
  savingDataError: string;
21295
22141
  savingDataSuccess: string;
@@ -21303,6 +22149,7 @@ declare module "localization/welsh" {
21303
22149
  timerLimitPage: string;
21304
22150
  timerLimitSurvey: string;
21305
22151
  clearCaption: string;
22152
+ signaturePlaceHolder: string;
21306
22153
  chooseFileCaption: string;
21307
22154
  removeFileCaption: string;
21308
22155
  booleanCheckedLabel: string;
@@ -21310,6 +22157,16 @@ declare module "localization/welsh" {
21310
22157
  confirmRemoveFile: string;
21311
22158
  confirmRemoveAllFiles: string;
21312
22159
  questionTitlePatternText: string;
22160
+ modalCancelButtonText: string;
22161
+ modalApplyButtonText: string;
22162
+ filterStringPlaceholder: string;
22163
+ emptyMessage: string;
22164
+ noEntriesText: string;
22165
+ noEntriesReadonlyText: string;
22166
+ more: string;
22167
+ tagboxDoneButtonCaption: string;
22168
+ selectToRankEmptyRankedAreaText: string;
22169
+ selectToRankEmptyUnrankedAreaText: string;
21313
22170
  };
21314
22171
  }
21315
22172
  declare module "localization/telugu" {
@@ -21321,20 +22178,26 @@ declare module "localization/telugu" {
21321
22178
  editText: string;
21322
22179
  startSurveyText: string;
21323
22180
  otherItemText: string;
22181
+ noneItemText: string;
21324
22182
  selectAllItemText: string;
21325
22183
  progressText: string;
22184
+ indexText: string;
21326
22185
  panelDynamicProgressText: string;
22186
+ panelDynamicTabTextFormat: string;
21327
22187
  questionsProgressText: string;
21328
22188
  emptySurvey: string;
21329
22189
  completingSurvey: string;
21330
22190
  completingSurveyBefore: string;
21331
22191
  loadingSurvey: string;
21332
22192
  placeholder: string;
22193
+ ratingOptionsCaption: string;
21333
22194
  value: string;
21334
22195
  requiredError: string;
21335
22196
  requiredErrorInPanel: string;
21336
22197
  requiredInAllRowsError: string;
21337
22198
  numericError: string;
22199
+ minError: string;
22200
+ maxError: string;
21338
22201
  textMinLength: string;
21339
22202
  textMaxLength: string;
21340
22203
  textMinMaxLength: string;
@@ -21354,16 +22217,19 @@ declare module "localization/telugu" {
21354
22217
  loadingFile: string;
21355
22218
  chooseFile: string;
21356
22219
  noFileChosen: string;
22220
+ fileDragAreaPlaceholder: string;
21357
22221
  confirmDelete: string;
21358
22222
  keyDuplicationError: string;
21359
22223
  addColumn: string;
21360
22224
  addRow: string;
21361
22225
  removeRow: string;
22226
+ emptyRowsText: string;
21362
22227
  addPanel: string;
21363
22228
  removePanel: string;
21364
22229
  choices_Item: string;
21365
22230
  matrix_column: string;
21366
22231
  matrix_row: string;
22232
+ multipletext_itemname: string;
21367
22233
  savingData: string;
21368
22234
  savingDataError: string;
21369
22235
  savingDataSuccess: string;
@@ -21377,6 +22243,7 @@ declare module "localization/telugu" {
21377
22243
  timerLimitPage: string;
21378
22244
  timerLimitSurvey: string;
21379
22245
  clearCaption: string;
22246
+ signaturePlaceHolder: string;
21380
22247
  chooseFileCaption: string;
21381
22248
  removeFileCaption: string;
21382
22249
  booleanCheckedLabel: string;
@@ -21384,6 +22251,16 @@ declare module "localization/telugu" {
21384
22251
  confirmRemoveFile: string;
21385
22252
  confirmRemoveAllFiles: string;
21386
22253
  questionTitlePatternText: string;
22254
+ modalCancelButtonText: string;
22255
+ modalApplyButtonText: string;
22256
+ filterStringPlaceholder: string;
22257
+ emptyMessage: string;
22258
+ noEntriesText: string;
22259
+ noEntriesReadonlyText: string;
22260
+ more: string;
22261
+ tagboxDoneButtonCaption: string;
22262
+ selectToRankEmptyRankedAreaText: string;
22263
+ selectToRankEmptyUnrankedAreaText: string;
21387
22264
  };
21388
22265
  }
21389
22266
  declare module "entries/chunks/localization" {
@@ -22402,6 +23279,7 @@ declare module "react/components/matrix-actions/drag-drop-icon/drag-drop-icon" {
22402
23279
  }
22403
23280
  }
22404
23281
  declare module "react/reactquestion_matrixdropdownbase" {
23282
+ import * as React from "react";
22405
23283
  import { SurveyQuestionElementBase } from "react/reactquestion_element";
22406
23284
  import { SurveyQuestionAndErrorsCell } from "react/reactquestion";
22407
23285
  import { QuestionMatrixDropdownModelBase, QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownRenderedCell, Question } from "entries/core";
@@ -22435,6 +23313,16 @@ declare module "react/reactquestion_matrixdropdownbase" {
22435
23313
  private renderCellCheckboxButton;
22436
23314
  private renderCellRadiogroupButton;
22437
23315
  }
23316
+ export class SurveyQuestionMatrixDropdownErrorCell extends React.Component<any, any> {
23317
+ constructor(props: any);
23318
+ private get cell();
23319
+ private update;
23320
+ private registerCallback;
23321
+ private unRegisterCallback;
23322
+ componentDidUpdate(prevProps: Readonly<any>): void;
23323
+ componentWillUnmount(): void;
23324
+ render(): JSX.Element;
23325
+ }
22438
23326
  }
22439
23327
  declare module "react/reactquestion_matrixdropdown" {
22440
23328
  import { SurveyQuestionMatrixDropdownBase } from "react/reactquestion_matrixdropdownbase";