@archbase/core 3.0.0
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/README.md +42 -0
- package/dist/archbase-core-3.0.0.tgz +0 -0
- package/dist/context/ArchbaseAppContext.d.ts +43 -0
- package/dist/context/ArchbaseGlobalProvider.d.ts +33 -0
- package/dist/context/ArchbaseSimpleAppContext.d.ts +34 -0
- package/dist/context/index.d.ts +5 -0
- package/dist/error/ArchbaseError.d.ts +14 -0
- package/dist/error/index.d.ts +11 -0
- package/dist/errorboundary/ArchbaseErrorBoundary.d.ts +21 -0
- package/dist/errorboundary/ArchbaseErrorBoundaryContext.d.ts +6 -0
- package/dist/errorboundary/ArchbaseErrorFallback.d.ts +7 -0
- package/dist/errorboundary/assertArchbaseErrorBoundaryContext.d.ts +2 -0
- package/dist/errorboundary/index.d.ts +6 -0
- package/dist/errorboundary/types.d.ts +39 -0
- package/dist/errorboundary/useArchbaseErrorBoundary.d.ts +5 -0
- package/dist/errorboundary/withArchbaseErrorBoundary.d.ts +3 -0
- package/dist/exceptions/ApiError.d.ts +27 -0
- package/dist/exceptions/ArchbaseErrorHelper.d.ts +2 -0
- package/dist/exceptions/ArchbaseException.d.ts +9 -0
- package/dist/exceptions/index.d.ts +3 -0
- package/dist/fallback/ArchbaseSafeMigrationWrapper.d.ts +57 -0
- package/dist/helper/ArchbaseClickOutside.d.ts +9 -0
- package/dist/helper/ArchbaseObjectHelper.d.ts +9 -0
- package/dist/helper/index.d.ts +2 -0
- package/dist/hooks/ArchbaseDepencyManager.d.ts +70 -0
- package/dist/hooks/index.d.ts +15 -0
- package/dist/hooks/lifecycle/index.d.ts +54 -0
- package/dist/hooks/useArchbaseAsyncFunction.d.ts +1 -0
- package/dist/hooks/useArchbaseBool.d.ts +6 -0
- package/dist/hooks/useArchbaseForceRenderer.d.ts +1 -0
- package/dist/hooks/useArchbaseLatest.d.ts +3 -0
- package/dist/hooks/useArchbasePassiveLayoutEffect.d.ts +3 -0
- package/dist/hooks/useArchbasePasswordRemember.d.ts +11 -0
- package/dist/hooks/useArchbaseReducer.d.ts +21 -0
- package/dist/hooks/useArchbaseResizeObserver.d.ts +11 -0
- package/dist/hooks/useArchbaseSize.d.ts +12 -0
- package/dist/hooks/useArchbaseStateWithCallback.d.ts +2 -0
- package/dist/hooks/useArchbaseTextSelection.d.ts +14 -0
- package/dist/hooks/useArchbaseTheme.d.ts +6 -0
- package/dist/hooks/useArchbaseValidator.d.ts +2 -0
- package/dist/index.css +108 -0
- package/dist/index.d.ts +25 -0
- package/dist/index.js +9728 -0
- package/dist/index.js.map +1 -0
- package/dist/ioc/ArchbaseIOCHelper.d.ts +56 -0
- package/dist/ioc/ArchbaseIOCTypes.d.ts +11 -0
- package/dist/ioc/index.d.ts +2 -0
- package/dist/json/ArchbaseJacksonParser.d.ts +15 -0
- package/dist/json/index.d.ts +1 -0
- package/dist/locales/config.d.ts +1781 -0
- package/dist/locales/index.d.ts +1 -0
- package/dist/rsql/ast/ComparisonOperator.d.ts +24 -0
- package/dist/rsql/ast/LogicOperator.d.ts +13 -0
- package/dist/rsql/ast/Node.d.ts +41 -0
- package/dist/rsql/ast/ReservedChars.d.ts +4 -0
- package/dist/rsql/ast/index.d.ts +4 -0
- package/dist/rsql/builder/index.d.ts +20 -0
- package/dist/rsql/emitter/index.d.ts +19 -0
- package/dist/rsql/index.d.ts +7 -0
- package/dist/rsql/parser/Error.d.ts +7 -0
- package/dist/rsql/parser/ParserContext.d.ts +15 -0
- package/dist/rsql/parser/ParserOperation.d.ts +43 -0
- package/dist/rsql/parser/ParserProduction.d.ts +14 -0
- package/dist/rsql/parser/index.d.ts +3 -0
- package/dist/rsql/parser/lexer/LexerContext.d.ts +8 -0
- package/dist/rsql/parser/lexer/LexerProcessor.d.ts +8 -0
- package/dist/rsql/parser/lexer/Token.d.ts +38 -0
- package/dist/rsql/parser/lexer/lex.d.ts +3 -0
- package/dist/rsql/parser/lexer/processors/scanNonReservedSymbol.d.ts +3 -0
- package/dist/rsql/parser/lexer/processors/scanSymbol.d.ts +3 -0
- package/dist/rsql/parser/lexer/processors/seekAnyToken.d.ts +4 -0
- package/dist/rsql/parser/lexer/processors/seekComparisonCustomOperatorToken.d.ts +4 -0
- package/dist/rsql/parser/lexer/processors/seekComparisonOperatorToken.d.ts +4 -0
- package/dist/rsql/parser/lexer/processors/seekLogicCanonicalOperatorToken.d.ts +4 -0
- package/dist/rsql/parser/lexer/processors/seekLogicVerboseOperatorToken.d.ts +4 -0
- package/dist/rsql/parser/lexer/processors/seekParenthesisToken.d.ts +4 -0
- package/dist/rsql/parser/lexer/processors/seekQuotedToken.d.ts +4 -0
- package/dist/rsql/parser/lexer/processors/seekUnquotedToken.d.ts +4 -0
- package/dist/rsql/parser/lexer/processors/skipWhitespace.d.ts +3 -0
- package/dist/types/OptionsResult.d.ts +8 -0
- package/dist/types/filter.d.ts +56 -0
- package/dist/types/index.d.ts +5 -0
- package/dist/types/querybuilder.d.ts +85 -0
- package/dist/types/token.d.ts +50 -0
- package/dist/types/types.d.ts +5 -0
- package/dist/utils/archbaseLogo.d.ts +3 -0
- package/dist/utils/array.d.ts +1 -0
- package/dist/utils/convertImageToBase64.d.ts +1 -0
- package/dist/utils/deepFilter.d.ts +2 -0
- package/dist/utils/deepFind.d.ts +2 -0
- package/dist/utils/deepForEach.d.ts +2 -0
- package/dist/utils/deepMap.d.ts +2 -0
- package/dist/utils/dom.d.ts +2 -0
- package/dist/utils/enum-utils.d.ts +1 -0
- package/dist/utils/filter.d.ts +2 -0
- package/dist/utils/getElementName.d.ts +2 -0
- package/dist/utils/groupByType.d.ts +2 -0
- package/dist/utils/hasChildren.d.ts +4 -0
- package/dist/utils/hasComplexChildren.d.ts +4 -0
- package/dist/utils/index.d.ts +24 -0
- package/dist/utils/isBase64.d.ts +1 -0
- package/dist/utils/isEmail.d.ts +1 -0
- package/dist/utils/masker.d.ts +27 -0
- package/dist/utils/nestedObject.d.ts +7 -0
- package/dist/utils/object.d.ts +10 -0
- package/dist/utils/objectPrototype.d.ts +2 -0
- package/dist/utils/onlyText.d.ts +3 -0
- package/dist/utils/onlyValid.d.ts +2 -0
- package/dist/utils/propertyUtils.d.ts +1 -0
- package/dist/utils/string-utils.d.ts +138 -0
- package/dist/utils/string.d.ts +11 -0
- package/dist/validation/ValidationErrorsContext.d.ts +25 -0
- package/dist/validator/ArchbaseValidator.d.ts +21 -0
- package/dist/validator/container.d.ts +25 -0
- package/dist/validator/decorator/ValidationOptions.d.ts +25 -0
- package/dist/validator/decorator/array/ArrayContains.d.ts +12 -0
- package/dist/validator/decorator/array/ArrayMaxSize.d.ts +12 -0
- package/dist/validator/decorator/array/ArrayMinSize.d.ts +12 -0
- package/dist/validator/decorator/array/ArrayNotContains.d.ts +12 -0
- package/dist/validator/decorator/array/ArrayNotEmpty.d.ts +12 -0
- package/dist/validator/decorator/array/ArrayUnique.d.ts +13 -0
- package/dist/validator/decorator/common/Allow.d.ts +5 -0
- package/dist/validator/decorator/common/Equals.d.ts +10 -0
- package/dist/validator/decorator/common/IsDefined.d.ts +10 -0
- package/dist/validator/decorator/common/IsEmpty.d.ts +10 -0
- package/dist/validator/decorator/common/IsIn.d.ts +10 -0
- package/dist/validator/decorator/common/IsLatLong.d.ts +10 -0
- package/dist/validator/decorator/common/IsLatitude.d.ts +10 -0
- package/dist/validator/decorator/common/IsLongitude.d.ts +10 -0
- package/dist/validator/decorator/common/IsNotEmpty.d.ts +10 -0
- package/dist/validator/decorator/common/IsNotIn.d.ts +10 -0
- package/dist/validator/decorator/common/IsOptional.d.ts +5 -0
- package/dist/validator/decorator/common/NotEquals.d.ts +10 -0
- package/dist/validator/decorator/common/Validate.d.ts +14 -0
- package/dist/validator/decorator/common/ValidateBy.d.ts +11 -0
- package/dist/validator/decorator/common/ValidateIf.d.ts +5 -0
- package/dist/validator/decorator/common/ValidateNested.d.ts +5 -0
- package/dist/validator/decorator/common/ValidatePromise.d.ts +5 -0
- package/dist/validator/decorator/date/MaxDate.d.ts +10 -0
- package/dist/validator/decorator/date/MinDate.d.ts +10 -0
- package/dist/validator/decorator/decorators.d.ts +111 -0
- package/dist/validator/decorator/number/IsDivisibleBy.d.ts +10 -0
- package/dist/validator/decorator/number/IsNegative.d.ts +10 -0
- package/dist/validator/decorator/number/IsPositive.d.ts +10 -0
- package/dist/validator/decorator/number/Max.d.ts +10 -0
- package/dist/validator/decorator/number/Min.d.ts +10 -0
- package/dist/validator/decorator/object/IsInstance.d.ts +10 -0
- package/dist/validator/decorator/object/IsNotEmptyObject.d.ts +16 -0
- package/dist/validator/decorator/string/Contains.d.ts +12 -0
- package/dist/validator/decorator/string/IsAlpha.d.ts +12 -0
- package/dist/validator/decorator/string/IsAlphanumeric.d.ts +12 -0
- package/dist/validator/decorator/string/IsAscii.d.ts +12 -0
- package/dist/validator/decorator/string/IsBIC.d.ts +12 -0
- package/dist/validator/decorator/string/IsBase32.d.ts +12 -0
- package/dist/validator/decorator/string/IsBase58.d.ts +12 -0
- package/dist/validator/decorator/string/IsBase64.d.ts +12 -0
- package/dist/validator/decorator/string/IsBooleanString.d.ts +12 -0
- package/dist/validator/decorator/string/IsBtcAddress.d.ts +12 -0
- package/dist/validator/decorator/string/IsByteLength.d.ts +12 -0
- package/dist/validator/decorator/string/IsCreditCard.d.ts +12 -0
- package/dist/validator/decorator/string/IsCurrency.d.ts +12 -0
- package/dist/validator/decorator/string/IsDataURI.d.ts +12 -0
- package/dist/validator/decorator/string/IsDateString.d.ts +10 -0
- package/dist/validator/decorator/string/IsDecimal.d.ts +12 -0
- package/dist/validator/decorator/string/IsEAN.d.ts +12 -0
- package/dist/validator/decorator/string/IsEmail.d.ts +12 -0
- package/dist/validator/decorator/string/IsEthereumAddress.d.ts +12 -0
- package/dist/validator/decorator/string/IsFQDN.d.ts +12 -0
- package/dist/validator/decorator/string/IsFirebasePushId.d.ts +12 -0
- package/dist/validator/decorator/string/IsFullWidth.d.ts +12 -0
- package/dist/validator/decorator/string/IsHSL.d.ts +14 -0
- package/dist/validator/decorator/string/IsHalfWidth.d.ts +12 -0
- package/dist/validator/decorator/string/IsHash.d.ts +14 -0
- package/dist/validator/decorator/string/IsHexColor.d.ts +12 -0
- package/dist/validator/decorator/string/IsHexadecimal.d.ts +12 -0
- package/dist/validator/decorator/string/IsIBAN.d.ts +12 -0
- package/dist/validator/decorator/string/IsIP.d.ts +13 -0
- package/dist/validator/decorator/string/IsISBN.d.ts +13 -0
- package/dist/validator/decorator/string/IsISIN.d.ts +12 -0
- package/dist/validator/decorator/string/IsISO31661Alpha2.d.ts +10 -0
- package/dist/validator/decorator/string/IsISO31661Alpha3.d.ts +10 -0
- package/dist/validator/decorator/string/IsISO8601.d.ts +14 -0
- package/dist/validator/decorator/string/IsISRC.d.ts +12 -0
- package/dist/validator/decorator/string/IsISSN.d.ts +12 -0
- package/dist/validator/decorator/string/IsIdentityCard.d.ts +16 -0
- package/dist/validator/decorator/string/IsJSON.d.ts +12 -0
- package/dist/validator/decorator/string/IsJWT.d.ts +12 -0
- package/dist/validator/decorator/string/IsLocale.d.ts +12 -0
- package/dist/validator/decorator/string/IsLowercase.d.ts +12 -0
- package/dist/validator/decorator/string/IsMacAddress.d.ts +13 -0
- package/dist/validator/decorator/string/IsMagnetURI.d.ts +12 -0
- package/dist/validator/decorator/string/IsMilitaryTime.d.ts +12 -0
- package/dist/validator/decorator/string/IsMimeType.d.ts +12 -0
- package/dist/validator/decorator/string/IsMobilePhone.d.ts +28 -0
- package/dist/validator/decorator/string/IsMongoId.d.ts +12 -0
- package/dist/validator/decorator/string/IsMultibyte.d.ts +12 -0
- package/dist/validator/decorator/string/IsNumberString.d.ts +12 -0
- package/dist/validator/decorator/string/IsOctal.d.ts +12 -0
- package/dist/validator/decorator/string/IsPassportNumber.d.ts +12 -0
- package/dist/validator/decorator/string/IsPhoneNumber.d.ts +19 -0
- package/dist/validator/decorator/string/IsPort.d.ts +10 -0
- package/dist/validator/decorator/string/IsPostalCode.d.ts +12 -0
- package/dist/validator/decorator/string/IsRFC3339.d.ts +12 -0
- package/dist/validator/decorator/string/IsRgbColor.d.ts +14 -0
- package/dist/validator/decorator/string/IsSemVer.d.ts +12 -0
- package/dist/validator/decorator/string/IsStrongPassword.d.ts +16 -0
- package/dist/validator/decorator/string/IsSurrogatePair.d.ts +12 -0
- package/dist/validator/decorator/string/IsTimeZone.d.ts +12 -0
- package/dist/validator/decorator/string/IsUUID.d.ts +12 -0
- package/dist/validator/decorator/string/IsUppercase.d.ts +12 -0
- package/dist/validator/decorator/string/IsUrl.d.ts +12 -0
- package/dist/validator/decorator/string/IsVariableWidth.d.ts +12 -0
- package/dist/validator/decorator/string/Length.d.ts +12 -0
- package/dist/validator/decorator/string/Matches.d.ts +14 -0
- package/dist/validator/decorator/string/MaxLength.d.ts +12 -0
- package/dist/validator/decorator/string/MinLength.d.ts +12 -0
- package/dist/validator/decorator/string/NotContains.d.ts +12 -0
- package/dist/validator/decorator/string/is-iso4217-currency-code.d.ts +10 -0
- package/dist/validator/decorator/string/is-tax-id.d.ts +20 -0
- package/dist/validator/decorator/typechecker/IsArray.d.ts +10 -0
- package/dist/validator/decorator/typechecker/IsBoolean.d.ts +10 -0
- package/dist/validator/decorator/typechecker/IsDate.d.ts +10 -0
- package/dist/validator/decorator/typechecker/IsEnum.d.ts +10 -0
- package/dist/validator/decorator/typechecker/IsInt.d.ts +10 -0
- package/dist/validator/decorator/typechecker/IsNumber.d.ts +18 -0
- package/dist/validator/decorator/typechecker/IsObject.d.ts +12 -0
- package/dist/validator/decorator/typechecker/IsString.d.ts +10 -0
- package/dist/validator/index.d.ts +49 -0
- package/dist/validator/metadata/ConstraintMetadata.d.ts +23 -0
- package/dist/validator/metadata/MetadataStorage.d.ts +42 -0
- package/dist/validator/metadata/ValidationMetadata.d.ts +53 -0
- package/dist/validator/metadata/ValidationMetadataArgs.d.ts +38 -0
- package/dist/validator/register-decorator.d.ts +36 -0
- package/dist/validator/utils/convert-to-array.util.d.ts +4 -0
- package/dist/validator/utils/get-global.util.d.ts +7 -0
- package/dist/validator/utils/index.d.ts +3 -0
- package/dist/validator/utils/is-promise.util.d.ts +1 -0
- package/dist/validator/validation/ValidationArguments.d.ts +26 -0
- package/dist/validator/validation/ValidationError.d.ts +42 -0
- package/dist/validator/validation/ValidationExecutor.d.ts +28 -0
- package/dist/validator/validation/ValidationTypes.d.ts +15 -0
- package/dist/validator/validation/ValidationUtils.d.ts +8 -0
- package/dist/validator/validation/Validator.d.ts +37 -0
- package/dist/validator/validation/ValidatorConstraintInterface.d.ts +14 -0
- package/dist/validator/validation/ValidatorOptions.d.ts +75 -0
- package/dist/validator/validation-schema/ValidationSchema.d.ts +57 -0
- package/dist/validator/validation-schema/ValidationSchemaToMetadataTransformer.d.ts +8 -0
- package/package.json +88 -0
|
@@ -0,0 +1,1781 @@
|
|
|
1
|
+
import 'dayjs/locale/en';
|
|
2
|
+
import 'dayjs/locale/es';
|
|
3
|
+
import 'dayjs/locale/pt-br';
|
|
4
|
+
export declare const archbaseTranslationResources: {
|
|
5
|
+
en: {
|
|
6
|
+
archbase: {
|
|
7
|
+
Active: string;
|
|
8
|
+
Add: string;
|
|
9
|
+
AllRows: string;
|
|
10
|
+
apiIntegration: string;
|
|
11
|
+
Aplicar: string;
|
|
12
|
+
"Aplicar filtro": string;
|
|
13
|
+
Attention: string;
|
|
14
|
+
Avançado: string;
|
|
15
|
+
BOFDataSource: string;
|
|
16
|
+
Cancel: string;
|
|
17
|
+
cancelRecordIsNotAllowed: string;
|
|
18
|
+
ClearFilter: string;
|
|
19
|
+
"Click on Ok or Cancel to close": string;
|
|
20
|
+
"Clique para criar um novo registro": string;
|
|
21
|
+
"Clique para editar o registro": string;
|
|
22
|
+
"Clique para remover o registro": string;
|
|
23
|
+
"Clique para visualizar o registro": string;
|
|
24
|
+
Close: string;
|
|
25
|
+
"Comandos \u2318M": string;
|
|
26
|
+
Confirme: string;
|
|
27
|
+
dashboard: string;
|
|
28
|
+
date: string;
|
|
29
|
+
"Deseja COPIAR a integra\u00E7\u00E3o selecionada {{integrationName}} ?": string;
|
|
30
|
+
"Deseja remover o Filtro ?": string;
|
|
31
|
+
"Deseja salvar o Filtro ?": string;
|
|
32
|
+
Dia: string;
|
|
33
|
+
Edit: string;
|
|
34
|
+
editRecordIsNotAllowed: string;
|
|
35
|
+
effortType: string;
|
|
36
|
+
end: string;
|
|
37
|
+
EOFDataSource: string;
|
|
38
|
+
errorSavingRecord: string;
|
|
39
|
+
eventMonitor: string;
|
|
40
|
+
Export: string;
|
|
41
|
+
"Fechar filtro": string;
|
|
42
|
+
field: string;
|
|
43
|
+
Fields: string;
|
|
44
|
+
Filter: string;
|
|
45
|
+
"Filtro avan\u00E7ado": string;
|
|
46
|
+
"Filtros salvos": string;
|
|
47
|
+
getStarted: string;
|
|
48
|
+
globalDateFormat: string;
|
|
49
|
+
home: string;
|
|
50
|
+
Inactive: string;
|
|
51
|
+
indexOutOfRange: string;
|
|
52
|
+
Information: string;
|
|
53
|
+
"Informe um nome para o fitro...": string;
|
|
54
|
+
insertRecordIsNotAllowed: string;
|
|
55
|
+
integration: string;
|
|
56
|
+
Integration: string;
|
|
57
|
+
integrationField: string;
|
|
58
|
+
Intervalo: string;
|
|
59
|
+
"Invalid Date": string;
|
|
60
|
+
"Invalid Datetime": string;
|
|
61
|
+
invalidFieldName: string;
|
|
62
|
+
"Localizar...": string;
|
|
63
|
+
loginMicrosoft: string;
|
|
64
|
+
Mês: string;
|
|
65
|
+
monitor: string;
|
|
66
|
+
Name: string;
|
|
67
|
+
New: string;
|
|
68
|
+
No: string;
|
|
69
|
+
noBrowsingRecordsAllowed: string;
|
|
70
|
+
noRecordsToEdit: string;
|
|
71
|
+
noRecordsToRemove: string;
|
|
72
|
+
noRecordToSave: string;
|
|
73
|
+
notAllowCancelRecord: string;
|
|
74
|
+
notAllowedBrowseRecords: string;
|
|
75
|
+
"Novo filtro": string;
|
|
76
|
+
Ok: string;
|
|
77
|
+
OnlySelectedRows: string;
|
|
78
|
+
operationNotAllowed: string;
|
|
79
|
+
operationNotAllowedOnOpened: string;
|
|
80
|
+
Page: string;
|
|
81
|
+
Path: string;
|
|
82
|
+
Período: string;
|
|
83
|
+
"Pick path": string;
|
|
84
|
+
Print: string;
|
|
85
|
+
projectDiretives: string;
|
|
86
|
+
projectMembers: string;
|
|
87
|
+
projectRuleMapping: string;
|
|
88
|
+
projects: string;
|
|
89
|
+
recordNotBeingEdited: string;
|
|
90
|
+
Refresh: string;
|
|
91
|
+
Remove: string;
|
|
92
|
+
Remover: string;
|
|
93
|
+
"Remover filtro": string;
|
|
94
|
+
removingRecordIsNotAllowed: string;
|
|
95
|
+
"Salvar como...": string;
|
|
96
|
+
"Salvar filtro": string;
|
|
97
|
+
Save: string;
|
|
98
|
+
saveRecordIsNotAllowed: string;
|
|
99
|
+
"Selecionar campos filtro r\u00E1pido": string;
|
|
100
|
+
"Selecionar per\u00EDodo": string;
|
|
101
|
+
"Selecione o tipo do filtro": string;
|
|
102
|
+
Semana: string;
|
|
103
|
+
"Sentimos muito, ocorreu um erro inesperado.": string;
|
|
104
|
+
settings: string;
|
|
105
|
+
signIn: string;
|
|
106
|
+
Simples: string;
|
|
107
|
+
start: string;
|
|
108
|
+
survey: string;
|
|
109
|
+
surveySatisfaction: string;
|
|
110
|
+
system: string;
|
|
111
|
+
toggleColorScheme: string;
|
|
112
|
+
updateRecordIsNotAllowed: string;
|
|
113
|
+
View: string;
|
|
114
|
+
Voltar: string;
|
|
115
|
+
Warning: string;
|
|
116
|
+
WARNING: string;
|
|
117
|
+
workitems: string;
|
|
118
|
+
workitemType: string;
|
|
119
|
+
Yes: string;
|
|
120
|
+
undo: string;
|
|
121
|
+
redo: string;
|
|
122
|
+
"Invalid content": string;
|
|
123
|
+
"Json source": string;
|
|
124
|
+
"MJML source": string;
|
|
125
|
+
"Insert before": string;
|
|
126
|
+
"Insert after": string;
|
|
127
|
+
"Drag here": string;
|
|
128
|
+
"Drag to": string;
|
|
129
|
+
"Move up": string;
|
|
130
|
+
"Move down": string;
|
|
131
|
+
Copy: string;
|
|
132
|
+
Delete: string;
|
|
133
|
+
Configuration: string;
|
|
134
|
+
"Source code": string;
|
|
135
|
+
"Font size": string;
|
|
136
|
+
"Background color": string;
|
|
137
|
+
"No selectionRange": string;
|
|
138
|
+
"Not commonAncestorContainer": string;
|
|
139
|
+
"Align left": string;
|
|
140
|
+
"Align center": string;
|
|
141
|
+
"Align right": string;
|
|
142
|
+
Orderlist: string;
|
|
143
|
+
Unorderlist: string;
|
|
144
|
+
Line: string;
|
|
145
|
+
"Remove format": string;
|
|
146
|
+
"Text color": string;
|
|
147
|
+
Underline: string;
|
|
148
|
+
Unlink: string;
|
|
149
|
+
"Merge tag": string;
|
|
150
|
+
Paragraph: string;
|
|
151
|
+
Italic: string;
|
|
152
|
+
Link: string;
|
|
153
|
+
Apply: string;
|
|
154
|
+
"https://www.example.com": string;
|
|
155
|
+
Target: string;
|
|
156
|
+
blank: string;
|
|
157
|
+
self: string;
|
|
158
|
+
off: string;
|
|
159
|
+
on: string;
|
|
160
|
+
Bold: string;
|
|
161
|
+
"Select parent block": string;
|
|
162
|
+
"Add to collection": string;
|
|
163
|
+
"Font family": string;
|
|
164
|
+
Strikethrough: string;
|
|
165
|
+
"Uploading...": string;
|
|
166
|
+
"Upload failed": string;
|
|
167
|
+
Preview: string;
|
|
168
|
+
"Import font": string;
|
|
169
|
+
"Points to a hosted css file": string;
|
|
170
|
+
Href: string;
|
|
171
|
+
Item: string;
|
|
172
|
+
"Picker...": string;
|
|
173
|
+
Tab: string;
|
|
174
|
+
Title: string;
|
|
175
|
+
"Title required!": string;
|
|
176
|
+
Description: string;
|
|
177
|
+
Thumbnail: string;
|
|
178
|
+
"Thumbnail required!": string;
|
|
179
|
+
Layout: string;
|
|
180
|
+
Content: string;
|
|
181
|
+
"2 columns": string;
|
|
182
|
+
"3 columns": string;
|
|
183
|
+
"4 columns": string;
|
|
184
|
+
"Default value": string;
|
|
185
|
+
"If a personalized text value isn\\\"t available, then a default value is shown.": string;
|
|
186
|
+
Block: string;
|
|
187
|
+
Layer: string;
|
|
188
|
+
Text: string;
|
|
189
|
+
"This block allows you to display text in your email": string;
|
|
190
|
+
Image: string;
|
|
191
|
+
"Displays a responsive image in your email. It is similar to the HTML \\'<img/>\\' tag. Note that if no width is provided, the image will use the parent column width.": string;
|
|
192
|
+
Button: string;
|
|
193
|
+
"Displays a customizable button.": string;
|
|
194
|
+
Hero: string;
|
|
195
|
+
"This block displays a hero image. It behaves like an \\'section\\' with a single \\'column\\'.": string;
|
|
196
|
+
Navbar: string;
|
|
197
|
+
"Displays a menu for navigation with an optional hamburger mode for mobile devices.": string;
|
|
198
|
+
Spacer: string;
|
|
199
|
+
"Displays a blank space.": string;
|
|
200
|
+
Divider: string;
|
|
201
|
+
"Displays a horizontal divider that can be customized like a HTML border.": string;
|
|
202
|
+
Accordion: string;
|
|
203
|
+
"Accordion is an interactive component to stack content in tabs, so the information is collapsed and only the titles are visible. Readers can interact by clicking on the tabs to reveal the content, providing a great experience on mobile devices where space is scarce.": string;
|
|
204
|
+
Carousel: string;
|
|
205
|
+
"This block displays a gallery of images or \\'carousel\\'. Readers can interact by hovering and clicking on thumbnails depending on the email client they use.": string;
|
|
206
|
+
Social: string;
|
|
207
|
+
"Displays calls-to-action for various social networks with their associated logo.": string;
|
|
208
|
+
Wrapper: string;
|
|
209
|
+
"Wrapper enables to wrap multiple sections together. It\"s especially useful to achieve nested layouts with shared border or background images across sections.": string;
|
|
210
|
+
Section: string;
|
|
211
|
+
"Sections are intended to be used as rows within your email. They will be used to structure the layout.": string;
|
|
212
|
+
"Sections cannot nest in sections. Columns can nest in sections; all content must be in a column.": string;
|
|
213
|
+
Group: string;
|
|
214
|
+
"Group allows you to prevent columns from stacking on mobile. To do so, wrap the columns inside a group block, so they\"ll stay side by side on mobile.": string;
|
|
215
|
+
Column: string;
|
|
216
|
+
"Columns enable you to horizontally organize the content within\n your sections. They must be located under \"Section\" block in order\n to be considered by the engine. To be responsive, columns are\n expressed in terms of percentage.": string;
|
|
217
|
+
"Every single column has to contain something because they are\n responsive containers, and will be vertically stacked on a mobile\n view.": string;
|
|
218
|
+
"Navbar links": string;
|
|
219
|
+
Links: string;
|
|
220
|
+
Extra: string;
|
|
221
|
+
Color: string;
|
|
222
|
+
"Font size (px)": string;
|
|
223
|
+
Url: string;
|
|
224
|
+
_blank: string;
|
|
225
|
+
_self: string;
|
|
226
|
+
"Email Setting": string;
|
|
227
|
+
Subject: string;
|
|
228
|
+
SubTitle: string;
|
|
229
|
+
Width: string;
|
|
230
|
+
Breakpoint: string;
|
|
231
|
+
"Allows you to control on which breakpoint the layout should go desktop/mobile.": string;
|
|
232
|
+
"Theme Setting": string;
|
|
233
|
+
"Line height": string;
|
|
234
|
+
"Font weight": string;
|
|
235
|
+
Background: string;
|
|
236
|
+
"Content background": string;
|
|
237
|
+
"User style": string;
|
|
238
|
+
Dimension: string;
|
|
239
|
+
True: string;
|
|
240
|
+
False: string;
|
|
241
|
+
Border: string;
|
|
242
|
+
"Background border radius": string;
|
|
243
|
+
Left: string;
|
|
244
|
+
Right: string;
|
|
245
|
+
top: string;
|
|
246
|
+
middle: string;
|
|
247
|
+
bottom: string;
|
|
248
|
+
Setting: string;
|
|
249
|
+
"Icon width": string;
|
|
250
|
+
"Icon height": string;
|
|
251
|
+
"Unwrapped icon": string;
|
|
252
|
+
"The image suffix should be .jpg, jpeg, png, gif, etc. Otherwise, the picture may not be displayed normally.": string;
|
|
253
|
+
"Wrapped icon": string;
|
|
254
|
+
"Icon position": string;
|
|
255
|
+
"Icon align": string;
|
|
256
|
+
Padding: string;
|
|
257
|
+
hidden: string;
|
|
258
|
+
visible: string;
|
|
259
|
+
"Thumbnail width": string;
|
|
260
|
+
Thumbnails: string;
|
|
261
|
+
Images: string;
|
|
262
|
+
Icon: string;
|
|
263
|
+
"Left icon": string;
|
|
264
|
+
"Right icon": string;
|
|
265
|
+
"Hovered border": string;
|
|
266
|
+
"Selected Border": string;
|
|
267
|
+
"Border of the thumbnails": string;
|
|
268
|
+
"Border radius of the thumbnails": string;
|
|
269
|
+
src: string;
|
|
270
|
+
"Full width on mobile": string;
|
|
271
|
+
title: string;
|
|
272
|
+
alt: string;
|
|
273
|
+
"class name": string;
|
|
274
|
+
vertical: string;
|
|
275
|
+
horizontal: string;
|
|
276
|
+
Mode: string;
|
|
277
|
+
Typography: string;
|
|
278
|
+
"Social item": string;
|
|
279
|
+
"Border radius": string;
|
|
280
|
+
"Icon padding": string;
|
|
281
|
+
"Text padding": string;
|
|
282
|
+
"Inner padding": string;
|
|
283
|
+
"Button color": string;
|
|
284
|
+
Decoration: string;
|
|
285
|
+
"Html mode": string;
|
|
286
|
+
"Fluid height": string;
|
|
287
|
+
"Fixed height": string;
|
|
288
|
+
"Background width": string;
|
|
289
|
+
"Background height": string;
|
|
290
|
+
"Background position": string;
|
|
291
|
+
Html: string;
|
|
292
|
+
"Editor Loading...": string;
|
|
293
|
+
"Please select": string;
|
|
294
|
+
"Column inside a group must have a width in percentage, not in pixel": string;
|
|
295
|
+
None: string;
|
|
296
|
+
uppercase: string;
|
|
297
|
+
lowercase: string;
|
|
298
|
+
capitalize: string;
|
|
299
|
+
"Text transform": string;
|
|
300
|
+
Overline: string;
|
|
301
|
+
"Line through": string;
|
|
302
|
+
Blink: string;
|
|
303
|
+
Inherit: string;
|
|
304
|
+
"Text decoration": string;
|
|
305
|
+
ltr: string;
|
|
306
|
+
rtl: string;
|
|
307
|
+
Direction: string;
|
|
308
|
+
Iteration: string;
|
|
309
|
+
"Data source": string;
|
|
310
|
+
"Item name": string;
|
|
311
|
+
Limit: string;
|
|
312
|
+
"Mock quantity": string;
|
|
313
|
+
Normal: string;
|
|
314
|
+
"Font style": string;
|
|
315
|
+
"Container background color": string;
|
|
316
|
+
"Top (px)": string;
|
|
317
|
+
"Left (px)": string;
|
|
318
|
+
"Bottom (px)": string;
|
|
319
|
+
"Right (px)": string;
|
|
320
|
+
"Class name": string;
|
|
321
|
+
"No repeat": string;
|
|
322
|
+
Repeat: string;
|
|
323
|
+
"Repeat X": string;
|
|
324
|
+
"Repeat Y": string;
|
|
325
|
+
"Background image": string;
|
|
326
|
+
"Background repeat": string;
|
|
327
|
+
"Background size": string;
|
|
328
|
+
Dashed: string;
|
|
329
|
+
Dotted: string;
|
|
330
|
+
Solid: string;
|
|
331
|
+
double: string;
|
|
332
|
+
ridge: string;
|
|
333
|
+
groove: string;
|
|
334
|
+
inset: string;
|
|
335
|
+
outset: string;
|
|
336
|
+
Style: string;
|
|
337
|
+
"Vertical align": string;
|
|
338
|
+
attributes: string;
|
|
339
|
+
left: string;
|
|
340
|
+
center: string;
|
|
341
|
+
right: string;
|
|
342
|
+
Align: string;
|
|
343
|
+
Height: string;
|
|
344
|
+
Center: string;
|
|
345
|
+
"Text align": string;
|
|
346
|
+
Margin: string;
|
|
347
|
+
Top: string;
|
|
348
|
+
Bottom: string;
|
|
349
|
+
Opacity: string;
|
|
350
|
+
"At least one condition": string;
|
|
351
|
+
Condition: string;
|
|
352
|
+
Symbol: string;
|
|
353
|
+
And: string;
|
|
354
|
+
Or: string;
|
|
355
|
+
"Variable path": string;
|
|
356
|
+
Operator: string;
|
|
357
|
+
"Letter spacing": string;
|
|
358
|
+
"No matching components": string;
|
|
359
|
+
Template: string;
|
|
360
|
+
"Accordion element": string;
|
|
361
|
+
"Accordion title": string;
|
|
362
|
+
Table: string;
|
|
363
|
+
"Make it easy for everyone to compose emails!": string;
|
|
364
|
+
"Accordion text": string;
|
|
365
|
+
Raw: string;
|
|
366
|
+
"Upload a image": string;
|
|
367
|
+
"You must edit the image in order to resize it": string;
|
|
368
|
+
"too large": string;
|
|
369
|
+
"Open the editor panel": string;
|
|
370
|
+
"Download the image": string;
|
|
371
|
+
"Control Panel": string;
|
|
372
|
+
Quality: string;
|
|
373
|
+
"Max dimensions": string;
|
|
374
|
+
"aspect-ratio": string;
|
|
375
|
+
"max-width(px)": string;
|
|
376
|
+
"max-height(px)": string;
|
|
377
|
+
Format: string;
|
|
378
|
+
Crop: string;
|
|
379
|
+
"width(px)": string;
|
|
380
|
+
"height(px)": string;
|
|
381
|
+
Contrast: string;
|
|
382
|
+
Blur: string;
|
|
383
|
+
Brightness: string;
|
|
384
|
+
Grayscale: string;
|
|
385
|
+
Saturate: string;
|
|
386
|
+
Sepia: string;
|
|
387
|
+
Rotate: string;
|
|
388
|
+
Undo: string;
|
|
389
|
+
size: string;
|
|
390
|
+
Basic: string;
|
|
391
|
+
Filters: string;
|
|
392
|
+
"Min Length": string;
|
|
393
|
+
"Max Length": string;
|
|
394
|
+
"All Required": string;
|
|
395
|
+
"Choose root data type": string;
|
|
396
|
+
root: string;
|
|
397
|
+
"Add Title": string;
|
|
398
|
+
"Add Description": string;
|
|
399
|
+
"Add Child Node": string;
|
|
400
|
+
"Enter property name": string;
|
|
401
|
+
"Choose data type": string;
|
|
402
|
+
"Advanced Settings": string;
|
|
403
|
+
"Remove Node": string;
|
|
404
|
+
"Add Sibling Node": string;
|
|
405
|
+
"Duplicate Properties, the property already exists": string;
|
|
406
|
+
"Sibling Node": string;
|
|
407
|
+
"Child Node": string;
|
|
408
|
+
Pattern: string;
|
|
409
|
+
"Must be a valid regular expression": string;
|
|
410
|
+
Enum: string;
|
|
411
|
+
"Enum must not have duplicate values": string;
|
|
412
|
+
Format1: string;
|
|
413
|
+
"ENUM Values - One Entry Per Line": string;
|
|
414
|
+
"Min Value": string;
|
|
415
|
+
"Max Value": string;
|
|
416
|
+
true: string;
|
|
417
|
+
false: string;
|
|
418
|
+
"Advanced Schema Settings": string;
|
|
419
|
+
Items: string;
|
|
420
|
+
"O campo est\u00E1 incompleto": string;
|
|
421
|
+
Options: string;
|
|
422
|
+
toggleLanguage: string;
|
|
423
|
+
"usuario@email.com": string;
|
|
424
|
+
"Sua senha": string;
|
|
425
|
+
"Lembre-me": string;
|
|
426
|
+
"Esqueci minha senha": string;
|
|
427
|
+
"Email inv\u00E1lido": string;
|
|
428
|
+
"Um e-mail com instru\u00E7\u00F5es para redefinir sua senha foi enviado. Verifique sua caixa de entrada.": string;
|
|
429
|
+
"A nova senha e a confirma\u00E7\u00E3o devem ser iguais.": string;
|
|
430
|
+
"Senha redefinida com sucesso.": string;
|
|
431
|
+
"Erro ao redefinir senha.": string;
|
|
432
|
+
"Redefinir senha": string;
|
|
433
|
+
Enviar: string;
|
|
434
|
+
"C\u00F3digo enviado no seu e-mail": string;
|
|
435
|
+
"Nova senha": string;
|
|
436
|
+
"Confirmar senha": string;
|
|
437
|
+
Grupo: string;
|
|
438
|
+
"Nome do grupo": string;
|
|
439
|
+
"Informe o nome do grupo": string;
|
|
440
|
+
"Descri\u00E7\u00E3o do grupo": string;
|
|
441
|
+
"Informe a descri\u00E7\u00E3o do grupo": string;
|
|
442
|
+
Perfil: string;
|
|
443
|
+
"Nome do perfil": string;
|
|
444
|
+
"Informe o nome do perfil": string;
|
|
445
|
+
"Descri\u00E7\u00E3o do perfil": string;
|
|
446
|
+
"Informe a descri\u00E7\u00E3o do perfil": string;
|
|
447
|
+
"Informe a descri\u00E7\u00E3o do cronograma de acesso": string;
|
|
448
|
+
"Informe a hora de in\u00EDcio": string;
|
|
449
|
+
"Informe a hora de t\u00E9rmino": string;
|
|
450
|
+
"Informe o nome": string;
|
|
451
|
+
"Informe a descri\u00E7\u00E3o": string;
|
|
452
|
+
"Informe um email v\u00E1lido": string;
|
|
453
|
+
"Informe o nome para a a\u00E7\u00E3o": string;
|
|
454
|
+
"Informe a descri\u00E7\u00E3o para a a\u00E7\u00E3o": string;
|
|
455
|
+
"Informe a categoria para a a\u00E7\u00E3o": string;
|
|
456
|
+
"Informe o nome para o recurso": string;
|
|
457
|
+
"Informe a descri\u00E7\u00E3o para o recurso": string;
|
|
458
|
+
"Informe o nome de usu\u00E1rio": string;
|
|
459
|
+
"Informe a senha": string;
|
|
460
|
+
"Deseja remover o usu\u00E1rio": string;
|
|
461
|
+
"Deseja remover o grupo": string;
|
|
462
|
+
"Deseja remover o perfil": string;
|
|
463
|
+
Usuário: string;
|
|
464
|
+
"Nome completo": string;
|
|
465
|
+
"Informe o nome completo do usu\u00E1rio": string;
|
|
466
|
+
"Descri\u00E7\u00E3o do usu\u00E1rio": string;
|
|
467
|
+
"Informe a descri\u00E7\u00E3o do usu\u00E1rio": string;
|
|
468
|
+
"Apelido (username)": string;
|
|
469
|
+
"Informe o apelido(username) do usu\u00E1rio": string;
|
|
470
|
+
"Senha usu\u00E1rio": string;
|
|
471
|
+
"E-mail": string;
|
|
472
|
+
"Informe o e-mail do usu\u00E1rio": string;
|
|
473
|
+
"Perfil do usu\u00E1rio": string;
|
|
474
|
+
"Deve alterar senha pr\u00F3ximo login ?": string;
|
|
475
|
+
"Pode alterar a senha ?": string;
|
|
476
|
+
"Permite multiplos logins ?": string;
|
|
477
|
+
"Senha nunca expira ?": string;
|
|
478
|
+
"Conta desativada ?": string;
|
|
479
|
+
"Conta bloqueada ?": string;
|
|
480
|
+
"Administrador ?": string;
|
|
481
|
+
"Foto do usu\u00E1rio": string;
|
|
482
|
+
Revoke: string;
|
|
483
|
+
"Token de API": string;
|
|
484
|
+
user: string;
|
|
485
|
+
group: string;
|
|
486
|
+
profile: string;
|
|
487
|
+
"Edit permissions": string;
|
|
488
|
+
Available: string;
|
|
489
|
+
"Filter available permissions": string;
|
|
490
|
+
Granted: string;
|
|
491
|
+
"Filter granted permissions": string;
|
|
492
|
+
Navegação: string;
|
|
493
|
+
Foto: string;
|
|
494
|
+
Nome: string;
|
|
495
|
+
Apelido: string;
|
|
496
|
+
Email: string;
|
|
497
|
+
Grupos: string;
|
|
498
|
+
"Admin ?": string;
|
|
499
|
+
"Alt.senha pr\u00F3ximo login?": string;
|
|
500
|
+
"Pode alterar senha?": string;
|
|
501
|
+
"Permite multiplos logins?": string;
|
|
502
|
+
"Senha nunca expira?": string;
|
|
503
|
+
"Desativado?": string;
|
|
504
|
+
"Bloqueado?": string;
|
|
505
|
+
"Hor\u00E1rio acesso ilimitado?": string;
|
|
506
|
+
Descrição: string;
|
|
507
|
+
"Nome do recurso": string;
|
|
508
|
+
Usuários: string;
|
|
509
|
+
Perfis: string;
|
|
510
|
+
Recursos: string;
|
|
511
|
+
"Tokens Acesso": string;
|
|
512
|
+
"Nome de Usu\u00E1rio": string;
|
|
513
|
+
"Expira em": string;
|
|
514
|
+
"Revogado ?": string;
|
|
515
|
+
"Expirado ?": string;
|
|
516
|
+
"Token Acesso": string;
|
|
517
|
+
"Faltam {{days}} dias, {{hours}} horas e {{minutes}} minutos": string;
|
|
518
|
+
Disponíveis: string;
|
|
519
|
+
Selecionados: string;
|
|
520
|
+
"Nenhum resultado...": string;
|
|
521
|
+
"Usu\u00E1rio/senha n\u00E3o encontrados. N\u00E3o autorizado.": string;
|
|
522
|
+
recurso_nao_encontrado: string;
|
|
523
|
+
metodo_nao_permitido: string;
|
|
524
|
+
dados_incorretos: string;
|
|
525
|
+
erro_servidor: string;
|
|
526
|
+
servidor_nao_disponivel: string;
|
|
527
|
+
Password: string;
|
|
528
|
+
"C\u00F3digo de seguran\u00E7a": string;
|
|
529
|
+
"My Profile": string;
|
|
530
|
+
Rotation: string;
|
|
531
|
+
"Image max size": string;
|
|
532
|
+
erro_avatar_crop: string;
|
|
533
|
+
tabs: {
|
|
534
|
+
closeAll: string;
|
|
535
|
+
closeLeft: string;
|
|
536
|
+
closeRight: string;
|
|
537
|
+
closeOthers: string;
|
|
538
|
+
};
|
|
539
|
+
"PDF Viewer": string;
|
|
540
|
+
"Loading PDF...": string;
|
|
541
|
+
"Error loading PDF": string;
|
|
542
|
+
"No PDF document loaded": string;
|
|
543
|
+
of: string;
|
|
544
|
+
Zoom: string;
|
|
545
|
+
Download: string;
|
|
546
|
+
"Feature Flags": string;
|
|
547
|
+
"Loading feature flags...": string;
|
|
548
|
+
"Error loading feature flags": string;
|
|
549
|
+
"Add Annotation": string;
|
|
550
|
+
Highlight: string;
|
|
551
|
+
Comment: string;
|
|
552
|
+
Bookmark: string;
|
|
553
|
+
"Enter your comment...": string;
|
|
554
|
+
Annotations: string;
|
|
555
|
+
"No annotations yet": string;
|
|
556
|
+
"Import Spreadsheet": string;
|
|
557
|
+
"Importar Planilha": string;
|
|
558
|
+
"Upload File": string;
|
|
559
|
+
"Carregar Arquivo": string;
|
|
560
|
+
"Select File": string;
|
|
561
|
+
"Selecionar Arquivo": string;
|
|
562
|
+
"Drag and drop your file here": string;
|
|
563
|
+
"Supported formats: CSV, XLSX, XLS": string;
|
|
564
|
+
"Review Data": string;
|
|
565
|
+
"Revisar Dados": string;
|
|
566
|
+
"Review and edit your data before importing": string;
|
|
567
|
+
"Confirm Import": string;
|
|
568
|
+
"Confirmar Importa\u00E7\u00E3o": string;
|
|
569
|
+
"Confirm the data to be imported": string;
|
|
570
|
+
"Import Complete": string;
|
|
571
|
+
"Importa\u00E7\u00E3o Completa": string;
|
|
572
|
+
"Your data has been imported successfully": string;
|
|
573
|
+
Upload: string;
|
|
574
|
+
Carregar: string;
|
|
575
|
+
Next: string;
|
|
576
|
+
Próximo: string;
|
|
577
|
+
Back: string;
|
|
578
|
+
Confirm: string;
|
|
579
|
+
Done: string;
|
|
580
|
+
Concluído: string;
|
|
581
|
+
"This row has errors": string;
|
|
582
|
+
"Required field": string;
|
|
583
|
+
columns: string;
|
|
584
|
+
"rows imported": string;
|
|
585
|
+
"rows skipped": string;
|
|
586
|
+
"Composite Filters": string;
|
|
587
|
+
"Add filter": string;
|
|
588
|
+
"Add another filter": string;
|
|
589
|
+
"Select field": string;
|
|
590
|
+
"Select operator": string;
|
|
591
|
+
"Enter value": string;
|
|
592
|
+
"Clear all": string;
|
|
593
|
+
"Save preset": string;
|
|
594
|
+
"Load preset": string;
|
|
595
|
+
History: string;
|
|
596
|
+
"Quick filters": string;
|
|
597
|
+
"RSQL Query": string;
|
|
598
|
+
"Active filters": string;
|
|
599
|
+
"No filters applied": string;
|
|
600
|
+
"No fields found": string;
|
|
601
|
+
"No operators available": string;
|
|
602
|
+
"No options found": string;
|
|
603
|
+
"Press Enter to add filter": string;
|
|
604
|
+
"Enter a number": string;
|
|
605
|
+
"Enter a decimal": string;
|
|
606
|
+
"Enter a date (YYYY-MM-DD)": string;
|
|
607
|
+
Contains: string;
|
|
608
|
+
"Starts with": string;
|
|
609
|
+
"Ends with": string;
|
|
610
|
+
Equals: string;
|
|
611
|
+
"Not equals": string;
|
|
612
|
+
"Greater than": string;
|
|
613
|
+
"Less than": string;
|
|
614
|
+
"Greater or equal": string;
|
|
615
|
+
"Less or equal": string;
|
|
616
|
+
"Is null": string;
|
|
617
|
+
"Is not null": string;
|
|
618
|
+
Between: string;
|
|
619
|
+
Before: string;
|
|
620
|
+
After: string;
|
|
621
|
+
In: string;
|
|
622
|
+
"Not in": string;
|
|
623
|
+
};
|
|
624
|
+
};
|
|
625
|
+
'pt-BR': {
|
|
626
|
+
archbase: {
|
|
627
|
+
Active: string;
|
|
628
|
+
Add: string;
|
|
629
|
+
AllRows: string;
|
|
630
|
+
apiIntegration: string;
|
|
631
|
+
Aplicar: string;
|
|
632
|
+
"Aplicar filtro": string;
|
|
633
|
+
Attention: string;
|
|
634
|
+
Avançado: string;
|
|
635
|
+
BOFDataSource: string;
|
|
636
|
+
Cancel: string;
|
|
637
|
+
cancelRecordIsNotAllowed: string;
|
|
638
|
+
ClearFilter: string;
|
|
639
|
+
"Click on Ok or Cancel to close": string;
|
|
640
|
+
"Clique para criar um novo registro": string;
|
|
641
|
+
"Clique para editar o registro": string;
|
|
642
|
+
"Clique para remover o registro": string;
|
|
643
|
+
"Clique para visualizar o registro": string;
|
|
644
|
+
Close: string;
|
|
645
|
+
"Comandos \u2318M": string;
|
|
646
|
+
Confirme: string;
|
|
647
|
+
dashboard: string;
|
|
648
|
+
date: string;
|
|
649
|
+
"Deseja COPIAR a integra\u00E7\u00E3o selecionada {{integrationName}} ?": string;
|
|
650
|
+
"Deseja remover o Filtro ?": string;
|
|
651
|
+
"Deseja salvar o Filtro ?": string;
|
|
652
|
+
Dia: string;
|
|
653
|
+
Edit: string;
|
|
654
|
+
editRecordIsNotAllowed: string;
|
|
655
|
+
effortType: string;
|
|
656
|
+
end: string;
|
|
657
|
+
EOFDataSource: string;
|
|
658
|
+
errorSavingRecord: string;
|
|
659
|
+
eventMonitor: string;
|
|
660
|
+
Export: string;
|
|
661
|
+
"Fechar filtro": string;
|
|
662
|
+
field: string;
|
|
663
|
+
Fields: string;
|
|
664
|
+
Filter: string;
|
|
665
|
+
"Filtro avan\u00E7ado": string;
|
|
666
|
+
"Filtros salvos": string;
|
|
667
|
+
getStarted: string;
|
|
668
|
+
globalDateFormat: string;
|
|
669
|
+
home: string;
|
|
670
|
+
Inactive: string;
|
|
671
|
+
indexOutOfRange: string;
|
|
672
|
+
Information: string;
|
|
673
|
+
"Informe um nome para o fitro...": string;
|
|
674
|
+
insertRecordIsNotAllowed: string;
|
|
675
|
+
integration: string;
|
|
676
|
+
Integration: string;
|
|
677
|
+
integrationField: string;
|
|
678
|
+
Intervalo: string;
|
|
679
|
+
"Invalid Date": string;
|
|
680
|
+
"Invalid Datetime": string;
|
|
681
|
+
invalidFieldName: string;
|
|
682
|
+
"Localizar...": string;
|
|
683
|
+
loginMicrosoft: string;
|
|
684
|
+
Mês: string;
|
|
685
|
+
monitor: string;
|
|
686
|
+
Name: string;
|
|
687
|
+
New: string;
|
|
688
|
+
No: string;
|
|
689
|
+
noBrowsingRecordsAllowed: string;
|
|
690
|
+
noRecordsToEdit: string;
|
|
691
|
+
noRecordsToRemove: string;
|
|
692
|
+
noRecordToSave: string;
|
|
693
|
+
notAllowCancelRecord: string;
|
|
694
|
+
notAllowedBrowseRecords: string;
|
|
695
|
+
"Novo filtro": string;
|
|
696
|
+
Ok: string;
|
|
697
|
+
OnlySelectedRows: string;
|
|
698
|
+
operationNotAllowed: string;
|
|
699
|
+
operationNotAllowedOnOpened: string;
|
|
700
|
+
Page: string;
|
|
701
|
+
Path: string;
|
|
702
|
+
Período: string;
|
|
703
|
+
"Pick path": string;
|
|
704
|
+
Print: string;
|
|
705
|
+
projectDiretives: string;
|
|
706
|
+
projectMembers: string;
|
|
707
|
+
projectRuleMapping: string;
|
|
708
|
+
projects: string;
|
|
709
|
+
recordNotBeingEdited: string;
|
|
710
|
+
Refresh: string;
|
|
711
|
+
Remove: string;
|
|
712
|
+
Remover: string;
|
|
713
|
+
"Remover filtro": string;
|
|
714
|
+
removingRecordIsNotAllowed: string;
|
|
715
|
+
"Salvar como...": string;
|
|
716
|
+
"Salvar filtro": string;
|
|
717
|
+
Save: string;
|
|
718
|
+
saveRecordIsNotAllowed: string;
|
|
719
|
+
"Selecionar campos filtro r\u00E1pido": string;
|
|
720
|
+
"Selecionar per\u00EDodo": string;
|
|
721
|
+
"Selecione o tipo do filtro": string;
|
|
722
|
+
Semana: string;
|
|
723
|
+
"Sentimos muito, ocorreu um erro inesperado.": string;
|
|
724
|
+
settings: string;
|
|
725
|
+
signIn: string;
|
|
726
|
+
Simples: string;
|
|
727
|
+
start: string;
|
|
728
|
+
survey: string;
|
|
729
|
+
surveySatisfaction: string;
|
|
730
|
+
system: string;
|
|
731
|
+
toggleColorScheme: string;
|
|
732
|
+
updateRecordIsNotAllowed: string;
|
|
733
|
+
View: string;
|
|
734
|
+
Voltar: string;
|
|
735
|
+
Warning: string;
|
|
736
|
+
WARNING: string;
|
|
737
|
+
workitems: string;
|
|
738
|
+
workitemType: string;
|
|
739
|
+
Yes: string;
|
|
740
|
+
undo: string;
|
|
741
|
+
redo: string;
|
|
742
|
+
"Invalid content": string;
|
|
743
|
+
"Json source": string;
|
|
744
|
+
"MJML source": string;
|
|
745
|
+
"Insert before": string;
|
|
746
|
+
"Insert after": string;
|
|
747
|
+
"Drag here": string;
|
|
748
|
+
"Drag to": string;
|
|
749
|
+
"Move up": string;
|
|
750
|
+
"Move down": string;
|
|
751
|
+
Copy: string;
|
|
752
|
+
Delete: string;
|
|
753
|
+
Configuration: string;
|
|
754
|
+
"Source code": string;
|
|
755
|
+
"Font size": string;
|
|
756
|
+
"Background color": string;
|
|
757
|
+
"No selectionRange": string;
|
|
758
|
+
"Not commonAncestorContainer": string;
|
|
759
|
+
"Align left": string;
|
|
760
|
+
"Align center": string;
|
|
761
|
+
"Align right": string;
|
|
762
|
+
Orderlist: string;
|
|
763
|
+
Unorderlist: string;
|
|
764
|
+
Line: string;
|
|
765
|
+
"Remove format": string;
|
|
766
|
+
"Text color": string;
|
|
767
|
+
Underline: string;
|
|
768
|
+
Unlink: string;
|
|
769
|
+
"Merge tag": string;
|
|
770
|
+
Paragraph: string;
|
|
771
|
+
Italic: string;
|
|
772
|
+
Link: string;
|
|
773
|
+
Apply: string;
|
|
774
|
+
"https://www.example.com": string;
|
|
775
|
+
Target: string;
|
|
776
|
+
blank: string;
|
|
777
|
+
self: string;
|
|
778
|
+
off: string;
|
|
779
|
+
on: string;
|
|
780
|
+
Bold: string;
|
|
781
|
+
"Select parent block": string;
|
|
782
|
+
"Add to collection": string;
|
|
783
|
+
"Font family": string;
|
|
784
|
+
Strikethrough: string;
|
|
785
|
+
"Uploading...": string;
|
|
786
|
+
"Upload failed": string;
|
|
787
|
+
Preview: string;
|
|
788
|
+
"Import font": string;
|
|
789
|
+
"Points to a hosted css file": string;
|
|
790
|
+
Href: string;
|
|
791
|
+
Item: string;
|
|
792
|
+
"Picker...": string;
|
|
793
|
+
Tab: string;
|
|
794
|
+
Title: string;
|
|
795
|
+
"Title required!": string;
|
|
796
|
+
Description: string;
|
|
797
|
+
Thumbnail: string;
|
|
798
|
+
"Thumbnail required!": string;
|
|
799
|
+
Layout: string;
|
|
800
|
+
Content: string;
|
|
801
|
+
"2 columns": string;
|
|
802
|
+
"3 columns": string;
|
|
803
|
+
"4 columns": string;
|
|
804
|
+
"Default value": string;
|
|
805
|
+
"If a personalized text value isn\\\"t available, then a default value is shown.": string;
|
|
806
|
+
Block: string;
|
|
807
|
+
Layer: string;
|
|
808
|
+
Text: string;
|
|
809
|
+
"This block allows you to display text in your email": string;
|
|
810
|
+
Image: string;
|
|
811
|
+
"Displays a responsive image in your email. It is similar to the HTML \\'<img/>\\' tag. Note that if no width is provided, the image will use the parent column width.": string;
|
|
812
|
+
Button: string;
|
|
813
|
+
"Displays a customizable button.": string;
|
|
814
|
+
Hero: string;
|
|
815
|
+
"This block displays a hero image. It behaves like an \\'section\\' with a single \\'column\\'.": string;
|
|
816
|
+
Navbar: string;
|
|
817
|
+
"Displays a menu for navigation with an optional hamburger mode for mobile devices.": string;
|
|
818
|
+
Spacer: string;
|
|
819
|
+
"Displays a blank space.": string;
|
|
820
|
+
Divider: string;
|
|
821
|
+
"Displays a horizontal divider that can be customized like a HTML border.": string;
|
|
822
|
+
Accordion: string;
|
|
823
|
+
"Accordion is an interactive component to stack content in tabs, so the information is collapsed and only the titles are visible. Readers can interact by clicking on the tabs to reveal the content, providing a great experience on mobile devices where space is scarce.": string;
|
|
824
|
+
Carousel: string;
|
|
825
|
+
"This block displays a gallery of images or \\'carousel\\'. Readers can interact by hovering and clicking on thumbnails depending on the email client they use.": string;
|
|
826
|
+
Social: string;
|
|
827
|
+
"Displays calls-to-action for various social networks with their associated logo.": string;
|
|
828
|
+
Wrapper: string;
|
|
829
|
+
"Wrapper enables to wrap multiple sections together. It\"s especially useful to achieve nested layouts with shared border or background images across sections.": string;
|
|
830
|
+
Section: string;
|
|
831
|
+
"Sections are intended to be used as rows within your email. They will be used to structure the layout.": string;
|
|
832
|
+
"Sections cannot nest in sections. Columns can nest in sections; all content must be in a column.": string;
|
|
833
|
+
Group: string;
|
|
834
|
+
"Group allows you to prevent columns from stacking on mobile. To do so, wrap the columns inside a group block, so they\"ll stay side by side on mobile.": string;
|
|
835
|
+
Column: string;
|
|
836
|
+
"Columns enable you to horizontally organize the content within\n your sections. They must be located under \"Section\" block in order\n to be considered by the engine. To be responsive, columns are\n expressed in terms of percentage.": string;
|
|
837
|
+
"Every single column has to contain something because they are\n responsive containers, and will be vertically stacked on a mobile\n view.": string;
|
|
838
|
+
"Navbar links": string;
|
|
839
|
+
Links: string;
|
|
840
|
+
Extra: string;
|
|
841
|
+
Color: string;
|
|
842
|
+
"Font size (px)": string;
|
|
843
|
+
Url: string;
|
|
844
|
+
_blank: string;
|
|
845
|
+
_self: string;
|
|
846
|
+
"Email Setting": string;
|
|
847
|
+
Subject: string;
|
|
848
|
+
SubTitle: string;
|
|
849
|
+
Width: string;
|
|
850
|
+
Breakpoint: string;
|
|
851
|
+
"Allows you to control on which breakpoint the layout should go desktop/mobile.": string;
|
|
852
|
+
"Theme Setting": string;
|
|
853
|
+
"Line height": string;
|
|
854
|
+
"Font weight": string;
|
|
855
|
+
Background: string;
|
|
856
|
+
"Content background": string;
|
|
857
|
+
"User style": string;
|
|
858
|
+
Dimension: string;
|
|
859
|
+
True: string;
|
|
860
|
+
False: string;
|
|
861
|
+
Border: string;
|
|
862
|
+
"Background border radius": string;
|
|
863
|
+
Left: string;
|
|
864
|
+
Right: string;
|
|
865
|
+
top: string;
|
|
866
|
+
middle: string;
|
|
867
|
+
bottom: string;
|
|
868
|
+
Setting: string;
|
|
869
|
+
"Icon width": string;
|
|
870
|
+
"Icon height": string;
|
|
871
|
+
"Unwrapped icon": string;
|
|
872
|
+
"The image suffix should be .jpg, jpeg, png, gif, etc. Otherwise, the picture may not be displayed normally.": string;
|
|
873
|
+
"Wrapped icon": string;
|
|
874
|
+
"Icon position": string;
|
|
875
|
+
"Icon align": string;
|
|
876
|
+
Padding: string;
|
|
877
|
+
hidden: string;
|
|
878
|
+
visible: string;
|
|
879
|
+
"Thumbnail width": string;
|
|
880
|
+
Thumbnails: string;
|
|
881
|
+
Images: string;
|
|
882
|
+
Icon: string;
|
|
883
|
+
"Left icon": string;
|
|
884
|
+
"Right icon": string;
|
|
885
|
+
"Hovered border": string;
|
|
886
|
+
"Selected Border": string;
|
|
887
|
+
"Border of the thumbnails": string;
|
|
888
|
+
"Border radius of the thumbnails": string;
|
|
889
|
+
src: string;
|
|
890
|
+
"Full width on mobile": string;
|
|
891
|
+
title: string;
|
|
892
|
+
alt: string;
|
|
893
|
+
"class name": string;
|
|
894
|
+
vertical: string;
|
|
895
|
+
horizontal: string;
|
|
896
|
+
Mode: string;
|
|
897
|
+
Typography: string;
|
|
898
|
+
"Social item": string;
|
|
899
|
+
"Border radius": string;
|
|
900
|
+
"Icon padding": string;
|
|
901
|
+
"Text padding": string;
|
|
902
|
+
"Inner padding": string;
|
|
903
|
+
"Button color": string;
|
|
904
|
+
Decoration: string;
|
|
905
|
+
"Html mode": string;
|
|
906
|
+
"Fluid height": string;
|
|
907
|
+
"Fixed height": string;
|
|
908
|
+
"Background width": string;
|
|
909
|
+
"Background height": string;
|
|
910
|
+
"Background position": string;
|
|
911
|
+
Html: string;
|
|
912
|
+
"Editor Loading...": string;
|
|
913
|
+
"Please select": string;
|
|
914
|
+
"Column inside a group must have a width in percentage, not in pixel": string;
|
|
915
|
+
None: string;
|
|
916
|
+
uppercase: string;
|
|
917
|
+
lowercase: string;
|
|
918
|
+
capitalize: string;
|
|
919
|
+
"Text transform": string;
|
|
920
|
+
Overline: string;
|
|
921
|
+
"Line through": string;
|
|
922
|
+
Blink: string;
|
|
923
|
+
Inherit: string;
|
|
924
|
+
"Text decoration": string;
|
|
925
|
+
ltr: string;
|
|
926
|
+
rtl: string;
|
|
927
|
+
Direction: string;
|
|
928
|
+
Iteration: string;
|
|
929
|
+
"Data source": string;
|
|
930
|
+
"Item name": string;
|
|
931
|
+
Limit: string;
|
|
932
|
+
"Mock quantity": string;
|
|
933
|
+
Normal: string;
|
|
934
|
+
"Font style": string;
|
|
935
|
+
"Container background color": string;
|
|
936
|
+
"Top (px)": string;
|
|
937
|
+
"Left (px)": string;
|
|
938
|
+
"Bottom (px)": string;
|
|
939
|
+
"Right (px)": string;
|
|
940
|
+
"Class name": string;
|
|
941
|
+
"No repeat": string;
|
|
942
|
+
Repeat: string;
|
|
943
|
+
"Repeat X": string;
|
|
944
|
+
"Repeat Y": string;
|
|
945
|
+
"Background image": string;
|
|
946
|
+
"Background repeat": string;
|
|
947
|
+
"Background size": string;
|
|
948
|
+
Dashed: string;
|
|
949
|
+
Dotted: string;
|
|
950
|
+
Solid: string;
|
|
951
|
+
double: string;
|
|
952
|
+
ridge: string;
|
|
953
|
+
groove: string;
|
|
954
|
+
inset: string;
|
|
955
|
+
outset: string;
|
|
956
|
+
Style: string;
|
|
957
|
+
"Vertical align": string;
|
|
958
|
+
attributes: string;
|
|
959
|
+
left: string;
|
|
960
|
+
center: string;
|
|
961
|
+
right: string;
|
|
962
|
+
Align: string;
|
|
963
|
+
Height: string;
|
|
964
|
+
Center: string;
|
|
965
|
+
"Text align": string;
|
|
966
|
+
Margin: string;
|
|
967
|
+
Top: string;
|
|
968
|
+
Bottom: string;
|
|
969
|
+
Opacity: string;
|
|
970
|
+
"At least one condition": string;
|
|
971
|
+
Condition: string;
|
|
972
|
+
Symbol: string;
|
|
973
|
+
And: string;
|
|
974
|
+
Or: string;
|
|
975
|
+
"Variable path": string;
|
|
976
|
+
Operator: string;
|
|
977
|
+
"Letter spacing": string;
|
|
978
|
+
"No matching components": string;
|
|
979
|
+
Template: string;
|
|
980
|
+
"Accordion element": string;
|
|
981
|
+
"Accordion title": string;
|
|
982
|
+
Table: string;
|
|
983
|
+
"Make it easy for everyone to compose emails!": string;
|
|
984
|
+
"Accordion text": string;
|
|
985
|
+
Raw: string;
|
|
986
|
+
"Upload a image": string;
|
|
987
|
+
"You must edit the image in order to resize it": string;
|
|
988
|
+
"too large": string;
|
|
989
|
+
"Open the editor panel": string;
|
|
990
|
+
"Download the image": string;
|
|
991
|
+
"Control Panel": string;
|
|
992
|
+
Quality: string;
|
|
993
|
+
"Max dimensions": string;
|
|
994
|
+
"aspect-ratio": string;
|
|
995
|
+
"max-width(px)": string;
|
|
996
|
+
"max-height(px)": string;
|
|
997
|
+
Format: string;
|
|
998
|
+
Crop: string;
|
|
999
|
+
"width(px)": string;
|
|
1000
|
+
"height(px)": string;
|
|
1001
|
+
Contrast: string;
|
|
1002
|
+
Blur: string;
|
|
1003
|
+
Brightness: string;
|
|
1004
|
+
Grayscale: string;
|
|
1005
|
+
Saturate: string;
|
|
1006
|
+
Sepia: string;
|
|
1007
|
+
Rotate: string;
|
|
1008
|
+
Undo: string;
|
|
1009
|
+
size: string;
|
|
1010
|
+
Basic: string;
|
|
1011
|
+
Filters: string;
|
|
1012
|
+
"Min Length": string;
|
|
1013
|
+
"Max Length": string;
|
|
1014
|
+
"All Required": string;
|
|
1015
|
+
"Choose root data type": string;
|
|
1016
|
+
root: string;
|
|
1017
|
+
"Add Title": string;
|
|
1018
|
+
"Add Description": string;
|
|
1019
|
+
"Add Child Node": string;
|
|
1020
|
+
"Enter property name": string;
|
|
1021
|
+
"Choose data type": string;
|
|
1022
|
+
"Advanced Settings": string;
|
|
1023
|
+
"Remove Node": string;
|
|
1024
|
+
"Add Sibling Node": string;
|
|
1025
|
+
"Duplicate Properties, the property already exists": string;
|
|
1026
|
+
"Sibling Node": string;
|
|
1027
|
+
"Child Node": string;
|
|
1028
|
+
Pattern: string;
|
|
1029
|
+
"Must be a valid regular expression": string;
|
|
1030
|
+
Enum: string;
|
|
1031
|
+
"Enum must not have duplicate values": string;
|
|
1032
|
+
Format1: string;
|
|
1033
|
+
"ENUM Values - One Entry Per Line": string;
|
|
1034
|
+
"Min Value": string;
|
|
1035
|
+
"Max Value": string;
|
|
1036
|
+
true: string;
|
|
1037
|
+
false: string;
|
|
1038
|
+
"Advanced Schema Settings": string;
|
|
1039
|
+
Items: string;
|
|
1040
|
+
"O campo est\u00E1 incompleto": string;
|
|
1041
|
+
Options: string;
|
|
1042
|
+
toggleLanguage: string;
|
|
1043
|
+
"usuario@email.com": string;
|
|
1044
|
+
"Sua senha": string;
|
|
1045
|
+
"Lembre-me": string;
|
|
1046
|
+
"Esqueci minha senha": string;
|
|
1047
|
+
"Email inv\u00E1lido": string;
|
|
1048
|
+
"Um e-mail com instru\u00E7\u00F5es para redefinir sua senha foi enviado. Verifique sua caixa de entrada.": string;
|
|
1049
|
+
"A nova senha e a confirma\u00E7\u00E3o devem ser iguais.": string;
|
|
1050
|
+
"Senha redefinida com sucesso.": string;
|
|
1051
|
+
"Erro ao redefinir senha.": string;
|
|
1052
|
+
"Redefinir senha": string;
|
|
1053
|
+
Enviar: string;
|
|
1054
|
+
"C\u00F3digo enviado no seu e-mail": string;
|
|
1055
|
+
"Nova senha": string;
|
|
1056
|
+
"Confirmar senha": string;
|
|
1057
|
+
Grupo: string;
|
|
1058
|
+
"Nome do grupo": string;
|
|
1059
|
+
"Informe o nome do grupo": string;
|
|
1060
|
+
"Descri\u00E7\u00E3o do grupo": string;
|
|
1061
|
+
"Informe a descri\u00E7\u00E3o do grupo": string;
|
|
1062
|
+
Perfil: string;
|
|
1063
|
+
"Nome do perfil": string;
|
|
1064
|
+
"Informe o nome do perfil": string;
|
|
1065
|
+
"Descri\u00E7\u00E3o do perfil": string;
|
|
1066
|
+
"Informe a descri\u00E7\u00E3o do perfil": string;
|
|
1067
|
+
"Informe a descri\u00E7\u00E3o do cronograma de acesso": string;
|
|
1068
|
+
"Informe a hora de in\u00EDcio": string;
|
|
1069
|
+
"Informe a hora de t\u00E9rmino": string;
|
|
1070
|
+
"Informe o nome": string;
|
|
1071
|
+
"Informe a descri\u00E7\u00E3o": string;
|
|
1072
|
+
"Informe um email v\u00E1lido": string;
|
|
1073
|
+
"Informe o nome para a a\u00E7\u00E3o": string;
|
|
1074
|
+
"Informe a descri\u00E7\u00E3o para a a\u00E7\u00E3o": string;
|
|
1075
|
+
"Informe a categoria para a a\u00E7\u00E3o": string;
|
|
1076
|
+
"Informe o nome para o recurso": string;
|
|
1077
|
+
"Informe a descri\u00E7\u00E3o para o recurso": string;
|
|
1078
|
+
"Informe o nome de usu\u00E1rio": string;
|
|
1079
|
+
"Informe a senha": string;
|
|
1080
|
+
"Deseja remover o usu\u00E1rio": string;
|
|
1081
|
+
"Deseja remover o grupo": string;
|
|
1082
|
+
"Deseja remover o perfil": string;
|
|
1083
|
+
Usuário: string;
|
|
1084
|
+
"Nome completo": string;
|
|
1085
|
+
"Informe o nome completo do usu\u00E1rio": string;
|
|
1086
|
+
"Descri\u00E7\u00E3o do usu\u00E1rio": string;
|
|
1087
|
+
"Informe a descri\u00E7\u00E3o do usu\u00E1rio": string;
|
|
1088
|
+
"Apelido (username)": string;
|
|
1089
|
+
"Informe o apelido(username) do usu\u00E1rio": string;
|
|
1090
|
+
"Senha usu\u00E1rio": string;
|
|
1091
|
+
"E-mail": string;
|
|
1092
|
+
"Informe o e-mail do usu\u00E1rio": string;
|
|
1093
|
+
"Perfil do usu\u00E1rio": string;
|
|
1094
|
+
"Deve alterar senha pr\u00F3ximo login ?": string;
|
|
1095
|
+
"Pode alterar a senha ?": string;
|
|
1096
|
+
"Permite multiplos logins ?": string;
|
|
1097
|
+
"Senha nunca expira ?": string;
|
|
1098
|
+
"Conta desativada ?": string;
|
|
1099
|
+
"Conta bloqueada ?": string;
|
|
1100
|
+
"Administrador ?": string;
|
|
1101
|
+
"Foto do usu\u00E1rio": string;
|
|
1102
|
+
Revoke: string;
|
|
1103
|
+
"Token de API": string;
|
|
1104
|
+
user: string;
|
|
1105
|
+
group: string;
|
|
1106
|
+
profile: string;
|
|
1107
|
+
"Edit permissions": string;
|
|
1108
|
+
Available: string;
|
|
1109
|
+
"Filter available permissions": string;
|
|
1110
|
+
Granted: string;
|
|
1111
|
+
"Filter granted permissions": string;
|
|
1112
|
+
Navegação: string;
|
|
1113
|
+
Foto: string;
|
|
1114
|
+
Nome: string;
|
|
1115
|
+
Apelido: string;
|
|
1116
|
+
Email: string;
|
|
1117
|
+
Grupos: string;
|
|
1118
|
+
"Admin ?": string;
|
|
1119
|
+
"Alt.senha pr\u00F3ximo login?": string;
|
|
1120
|
+
"Pode alterar senha?": string;
|
|
1121
|
+
"Permite multiplos logins?": string;
|
|
1122
|
+
"Senha nunca expira?": string;
|
|
1123
|
+
"Desativado?": string;
|
|
1124
|
+
"Bloqueado?": string;
|
|
1125
|
+
"Hor\u00E1rio acesso ilimitado?": string;
|
|
1126
|
+
Descrição: string;
|
|
1127
|
+
"Nome do recurso": string;
|
|
1128
|
+
Usuários: string;
|
|
1129
|
+
Perfis: string;
|
|
1130
|
+
Recursos: string;
|
|
1131
|
+
"Tokens Acesso": string;
|
|
1132
|
+
"Nome de Usu\u00E1rio": string;
|
|
1133
|
+
"Expira em": string;
|
|
1134
|
+
"Revogado ?": string;
|
|
1135
|
+
"Expirado ?": string;
|
|
1136
|
+
"Token Acesso": string;
|
|
1137
|
+
"Faltam {{days}} dias, {{hours}} horas e {{minutes}} minutos": string;
|
|
1138
|
+
Disponíveis: string;
|
|
1139
|
+
Selecionados: string;
|
|
1140
|
+
"Nenhum resultado...": string;
|
|
1141
|
+
"Usu\u00E1rio/senha n\u00E3o encontrados. N\u00E3o autorizado.": string;
|
|
1142
|
+
recurso_nao_encontrado: string;
|
|
1143
|
+
metodo_nao_permitido: string;
|
|
1144
|
+
dados_incorretos: string;
|
|
1145
|
+
erro_servidor: string;
|
|
1146
|
+
servidor_nao_disponivel: string;
|
|
1147
|
+
Password: string;
|
|
1148
|
+
"C\u00F3digo de seguran\u00E7a": string;
|
|
1149
|
+
"My Profile": string;
|
|
1150
|
+
Rotation: string;
|
|
1151
|
+
"Image max size": string;
|
|
1152
|
+
erro_avatar_crop: string;
|
|
1153
|
+
tabs: {
|
|
1154
|
+
closeAll: string;
|
|
1155
|
+
closeLeft: string;
|
|
1156
|
+
closeRight: string;
|
|
1157
|
+
closeOthers: string;
|
|
1158
|
+
};
|
|
1159
|
+
"PDF Viewer": string;
|
|
1160
|
+
"Loading PDF...": string;
|
|
1161
|
+
"Error loading PDF": string;
|
|
1162
|
+
"No PDF document loaded": string;
|
|
1163
|
+
of: string;
|
|
1164
|
+
Zoom: string;
|
|
1165
|
+
Download: string;
|
|
1166
|
+
"Feature Flags": string;
|
|
1167
|
+
"Loading feature flags...": string;
|
|
1168
|
+
"Error loading feature flags": string;
|
|
1169
|
+
"Add Annotation": string;
|
|
1170
|
+
Highlight: string;
|
|
1171
|
+
Comment: string;
|
|
1172
|
+
Bookmark: string;
|
|
1173
|
+
"Enter your comment...": string;
|
|
1174
|
+
Annotations: string;
|
|
1175
|
+
"No annotations yet": string;
|
|
1176
|
+
"Import Spreadsheet": string;
|
|
1177
|
+
"Importar Planilha": string;
|
|
1178
|
+
"Upload File": string;
|
|
1179
|
+
"Carregar Arquivo": string;
|
|
1180
|
+
"Select File": string;
|
|
1181
|
+
"Selecionar Arquivo": string;
|
|
1182
|
+
"Drag and drop your file here": string;
|
|
1183
|
+
"Supported formats: CSV, XLSX, XLS": string;
|
|
1184
|
+
"Review Data": string;
|
|
1185
|
+
"Revisar Dados": string;
|
|
1186
|
+
"Review and edit your data before importing": string;
|
|
1187
|
+
"Confirm Import": string;
|
|
1188
|
+
"Confirmar Importa\u00E7\u00E3o": string;
|
|
1189
|
+
"Confirm the data to be imported": string;
|
|
1190
|
+
"Import Complete": string;
|
|
1191
|
+
"Importa\u00E7\u00E3o Completa": string;
|
|
1192
|
+
"Your data has been imported successfully": string;
|
|
1193
|
+
Upload: string;
|
|
1194
|
+
Carregar: string;
|
|
1195
|
+
Next: string;
|
|
1196
|
+
Próximo: string;
|
|
1197
|
+
Back: string;
|
|
1198
|
+
Confirm: string;
|
|
1199
|
+
Done: string;
|
|
1200
|
+
Concluído: string;
|
|
1201
|
+
"This row has errors": string;
|
|
1202
|
+
"Required field": string;
|
|
1203
|
+
columns: string;
|
|
1204
|
+
"rows imported": string;
|
|
1205
|
+
"rows skipped": string;
|
|
1206
|
+
"Composite Filters": string;
|
|
1207
|
+
"Add filter": string;
|
|
1208
|
+
"Add another filter": string;
|
|
1209
|
+
"Select field": string;
|
|
1210
|
+
"Select operator": string;
|
|
1211
|
+
"Enter value": string;
|
|
1212
|
+
"Clear all": string;
|
|
1213
|
+
"Save preset": string;
|
|
1214
|
+
"Load preset": string;
|
|
1215
|
+
History: string;
|
|
1216
|
+
"Quick filters": string;
|
|
1217
|
+
"RSQL Query": string;
|
|
1218
|
+
"Active filters": string;
|
|
1219
|
+
"No filters applied": string;
|
|
1220
|
+
"No fields found": string;
|
|
1221
|
+
"No operators available": string;
|
|
1222
|
+
"No options found": string;
|
|
1223
|
+
"Press Enter to add filter": string;
|
|
1224
|
+
"Enter a number": string;
|
|
1225
|
+
"Enter a decimal": string;
|
|
1226
|
+
"Enter a date (YYYY-MM-DD)": string;
|
|
1227
|
+
Contains: string;
|
|
1228
|
+
"Starts with": string;
|
|
1229
|
+
"Ends with": string;
|
|
1230
|
+
Equals: string;
|
|
1231
|
+
"Not equals": string;
|
|
1232
|
+
"Greater than": string;
|
|
1233
|
+
"Less than": string;
|
|
1234
|
+
"Greater or equal": string;
|
|
1235
|
+
"Less or equal": string;
|
|
1236
|
+
"Is null": string;
|
|
1237
|
+
"Is not null": string;
|
|
1238
|
+
Between: string;
|
|
1239
|
+
Before: string;
|
|
1240
|
+
After: string;
|
|
1241
|
+
In: string;
|
|
1242
|
+
"Not in": string;
|
|
1243
|
+
};
|
|
1244
|
+
};
|
|
1245
|
+
es: {
|
|
1246
|
+
archbase: {
|
|
1247
|
+
Active: string;
|
|
1248
|
+
Add: string;
|
|
1249
|
+
AllRows: string;
|
|
1250
|
+
apiIntegration: string;
|
|
1251
|
+
Aplicar: string;
|
|
1252
|
+
"Aplicar filtro": string;
|
|
1253
|
+
Attention: string;
|
|
1254
|
+
Avançado: string;
|
|
1255
|
+
BOFDataSource: string;
|
|
1256
|
+
Cancel: string;
|
|
1257
|
+
cancelRecordIsNotAllowed: string;
|
|
1258
|
+
ClearFilter: string;
|
|
1259
|
+
"Click on Ok or Cancel to close": string;
|
|
1260
|
+
"Clique para criar um novo registro": string;
|
|
1261
|
+
"Clique para editar o registro": string;
|
|
1262
|
+
"Clique para remover o registro": string;
|
|
1263
|
+
"Clique para visualizar o registro": string;
|
|
1264
|
+
Close: string;
|
|
1265
|
+
"Comandos \u2318M": string;
|
|
1266
|
+
Confirme: string;
|
|
1267
|
+
dashboard: string;
|
|
1268
|
+
date: string;
|
|
1269
|
+
"Deseja COPIAR a integra\u00E7\u00E3o selecionada {{integrationName}} ?": string;
|
|
1270
|
+
"Deseja remover o Filtro ?": string;
|
|
1271
|
+
"Deseja salvar o Filtro ?": string;
|
|
1272
|
+
Dia: string;
|
|
1273
|
+
Edit: string;
|
|
1274
|
+
editRecordIsNotAllowed: string;
|
|
1275
|
+
effortType: string;
|
|
1276
|
+
end: string;
|
|
1277
|
+
EOFDataSource: string;
|
|
1278
|
+
errorSavingRecord: string;
|
|
1279
|
+
eventMonitor: string;
|
|
1280
|
+
Export: string;
|
|
1281
|
+
"Fechar filtro": string;
|
|
1282
|
+
field: string;
|
|
1283
|
+
Fields: string;
|
|
1284
|
+
Filter: string;
|
|
1285
|
+
"Filtro avan\u00E7ado": string;
|
|
1286
|
+
"Filtros salvos": string;
|
|
1287
|
+
getStarted: string;
|
|
1288
|
+
globalDateFormat: string;
|
|
1289
|
+
home: string;
|
|
1290
|
+
Inactive: string;
|
|
1291
|
+
indexOutOfRange: string;
|
|
1292
|
+
Information: string;
|
|
1293
|
+
"Informe um nome para o fitro...": string;
|
|
1294
|
+
insertRecordIsNotAllowed: string;
|
|
1295
|
+
integration: string;
|
|
1296
|
+
Integration: string;
|
|
1297
|
+
integrationField: string;
|
|
1298
|
+
Intervalo: string;
|
|
1299
|
+
"Invalid Date": string;
|
|
1300
|
+
"Invalid Datetime": string;
|
|
1301
|
+
invalidFieldName: string;
|
|
1302
|
+
"Localizar...": string;
|
|
1303
|
+
loginMicrosoft: string;
|
|
1304
|
+
Mês: string;
|
|
1305
|
+
monitor: string;
|
|
1306
|
+
Name: string;
|
|
1307
|
+
New: string;
|
|
1308
|
+
No: string;
|
|
1309
|
+
noBrowsingRecordsAllowed: string;
|
|
1310
|
+
noRecordsToEdit: string;
|
|
1311
|
+
noRecordsToRemove: string;
|
|
1312
|
+
noRecordToSave: string;
|
|
1313
|
+
notAllowCancelRecord: string;
|
|
1314
|
+
notAllowedBrowseRecords: string;
|
|
1315
|
+
"Novo filtro": string;
|
|
1316
|
+
Ok: string;
|
|
1317
|
+
OnlySelectedRows: string;
|
|
1318
|
+
operationNotAllowed: string;
|
|
1319
|
+
operationNotAllowedOnOpened: string;
|
|
1320
|
+
Page: string;
|
|
1321
|
+
Path: string;
|
|
1322
|
+
Período: string;
|
|
1323
|
+
"Pick path": string;
|
|
1324
|
+
Print: string;
|
|
1325
|
+
projectDiretives: string;
|
|
1326
|
+
projectMembers: string;
|
|
1327
|
+
projectRuleMapping: string;
|
|
1328
|
+
projects: string;
|
|
1329
|
+
recordNotBeingEdited: string;
|
|
1330
|
+
Refresh: string;
|
|
1331
|
+
Remove: string;
|
|
1332
|
+
Remover: string;
|
|
1333
|
+
"Remover filtro": string;
|
|
1334
|
+
removingRecordIsNotAllowed: string;
|
|
1335
|
+
"Salvar como...": string;
|
|
1336
|
+
"Salvar filtro": string;
|
|
1337
|
+
Save: string;
|
|
1338
|
+
saveRecordIsNotAllowed: string;
|
|
1339
|
+
"Selecionar campos filtro r\u00E1pido": string;
|
|
1340
|
+
"Selecionar per\u00EDodo": string;
|
|
1341
|
+
"Selecione o tipo do filtro": string;
|
|
1342
|
+
Semana: string;
|
|
1343
|
+
"Sentimos muito, ocorreu um erro inesperado.": string;
|
|
1344
|
+
settings: string;
|
|
1345
|
+
signIn: string;
|
|
1346
|
+
Simples: string;
|
|
1347
|
+
start: string;
|
|
1348
|
+
survey: string;
|
|
1349
|
+
surveySatisfaction: string;
|
|
1350
|
+
system: string;
|
|
1351
|
+
toggleColorScheme: string;
|
|
1352
|
+
updateRecordIsNotAllowed: string;
|
|
1353
|
+
View: string;
|
|
1354
|
+
Voltar: string;
|
|
1355
|
+
Warning: string;
|
|
1356
|
+
WARNING: string;
|
|
1357
|
+
workitems: string;
|
|
1358
|
+
workitemType: string;
|
|
1359
|
+
Yes: string;
|
|
1360
|
+
undo: string;
|
|
1361
|
+
redo: string;
|
|
1362
|
+
"Invalid content": string;
|
|
1363
|
+
"Json source": string;
|
|
1364
|
+
"MJML source": string;
|
|
1365
|
+
"Insert before": string;
|
|
1366
|
+
"Insert after": string;
|
|
1367
|
+
"Drag here": string;
|
|
1368
|
+
"Drag to": string;
|
|
1369
|
+
"Move up": string;
|
|
1370
|
+
"Move down": string;
|
|
1371
|
+
Copy: string;
|
|
1372
|
+
Delete: string;
|
|
1373
|
+
Configuration: string;
|
|
1374
|
+
"Source code": string;
|
|
1375
|
+
"Font size": string;
|
|
1376
|
+
"Background color": string;
|
|
1377
|
+
"No selectionRange": string;
|
|
1378
|
+
"Not commonAncestorContainer": string;
|
|
1379
|
+
"Align left": string;
|
|
1380
|
+
"Align center": string;
|
|
1381
|
+
"Align right": string;
|
|
1382
|
+
Orderlist: string;
|
|
1383
|
+
Unorderlist: string;
|
|
1384
|
+
Line: string;
|
|
1385
|
+
"Remove format": string;
|
|
1386
|
+
"Text color": string;
|
|
1387
|
+
Underline: string;
|
|
1388
|
+
Unlink: string;
|
|
1389
|
+
"Merge tag": string;
|
|
1390
|
+
Paragraph: string;
|
|
1391
|
+
Italic: string;
|
|
1392
|
+
Link: string;
|
|
1393
|
+
Apply: string;
|
|
1394
|
+
"https://www.example.com": string;
|
|
1395
|
+
Target: string;
|
|
1396
|
+
blank: string;
|
|
1397
|
+
self: string;
|
|
1398
|
+
off: string;
|
|
1399
|
+
on: string;
|
|
1400
|
+
Bold: string;
|
|
1401
|
+
"Select parent block": string;
|
|
1402
|
+
"Add to collection": string;
|
|
1403
|
+
"Font family": string;
|
|
1404
|
+
Strikethrough: string;
|
|
1405
|
+
"Uploading...": string;
|
|
1406
|
+
"Upload failed": string;
|
|
1407
|
+
Preview: string;
|
|
1408
|
+
"Import font": string;
|
|
1409
|
+
"Points to a hosted css file": string;
|
|
1410
|
+
Href: string;
|
|
1411
|
+
Item: string;
|
|
1412
|
+
"Picker...": string;
|
|
1413
|
+
Tab: string;
|
|
1414
|
+
Title: string;
|
|
1415
|
+
"Title required!": string;
|
|
1416
|
+
Description: string;
|
|
1417
|
+
Thumbnail: string;
|
|
1418
|
+
"Thumbnail required!": string;
|
|
1419
|
+
Layout: string;
|
|
1420
|
+
Content: string;
|
|
1421
|
+
"2 columns": string;
|
|
1422
|
+
"3 columns": string;
|
|
1423
|
+
"4 columns": string;
|
|
1424
|
+
"Default value": string;
|
|
1425
|
+
"If a personalized text value isn\\\"t available, then a default value is shown.": string;
|
|
1426
|
+
Block: string;
|
|
1427
|
+
Layer: string;
|
|
1428
|
+
Text: string;
|
|
1429
|
+
"This block allows you to display text in your email": string;
|
|
1430
|
+
Image: string;
|
|
1431
|
+
"Displays a responsive image in your email. It is similar to the HTML \\'<img/>\\' tag. Note that if no width is provided, the image will use the parent column width.": string;
|
|
1432
|
+
Button: string;
|
|
1433
|
+
"Displays a customizable button.": string;
|
|
1434
|
+
Hero: string;
|
|
1435
|
+
"This block displays a hero image. It behaves like an \\'section\\' with a single \\'column\\'.": string;
|
|
1436
|
+
Navbar: string;
|
|
1437
|
+
"Displays a menu for navigation with an optional hamburger mode for mobile devices.": string;
|
|
1438
|
+
Spacer: string;
|
|
1439
|
+
"Displays a blank space.": string;
|
|
1440
|
+
Divider: string;
|
|
1441
|
+
"Displays a horizontal divider that can be customized like a HTML border.": string;
|
|
1442
|
+
Accordion: string;
|
|
1443
|
+
"Accordion is an interactive component to stack content in tabs, so the information is collapsed and only the titles are visible. Readers can interact by clicking on the tabs to reveal the content, providing a great experience on mobile devices where space is scarce.": string;
|
|
1444
|
+
Carousel: string;
|
|
1445
|
+
"This block displays a gallery of images or \\'carousel\\'. Readers can interact by hovering and clicking on thumbnails depending on the email client they use.": string;
|
|
1446
|
+
Social: string;
|
|
1447
|
+
"Displays calls-to-action for various social networks with their associated logo.": string;
|
|
1448
|
+
Wrapper: string;
|
|
1449
|
+
"Wrapper enables to wrap multiple sections together. It\"s especially useful to achieve nested layouts with shared border or background images across sections.": string;
|
|
1450
|
+
Section: string;
|
|
1451
|
+
"Sections are intended to be used as rows within your email. They will be used to structure the layout.": string;
|
|
1452
|
+
"Sections cannot nest in sections. Columns can nest in sections; all content must be in a column.": string;
|
|
1453
|
+
Group: string;
|
|
1454
|
+
"Group allows you to prevent columns from stacking on mobile. To do so, wrap the columns inside a group block, so they\"ll stay side by side on mobile.": string;
|
|
1455
|
+
Column: string;
|
|
1456
|
+
"Columns enable you to horizontally organize the content within\n your sections. They must be located under \"Section\" block in order\n to be considered by the engine. To be responsive, columns are\n expressed in terms of percentage.": string;
|
|
1457
|
+
"Every single column has to contain something because they are\n responsive containers, and will be vertically stacked on a mobile\n view.": string;
|
|
1458
|
+
"Navbar links": string;
|
|
1459
|
+
Links: string;
|
|
1460
|
+
Extra: string;
|
|
1461
|
+
Color: string;
|
|
1462
|
+
"Font size (px)": string;
|
|
1463
|
+
Url: string;
|
|
1464
|
+
_blank: string;
|
|
1465
|
+
_self: string;
|
|
1466
|
+
"Email Setting": string;
|
|
1467
|
+
Subject: string;
|
|
1468
|
+
SubTitle: string;
|
|
1469
|
+
Width: string;
|
|
1470
|
+
Breakpoint: string;
|
|
1471
|
+
"Allows you to control on which breakpoint the layout should go desktop/mobile.": string;
|
|
1472
|
+
"Theme Setting": string;
|
|
1473
|
+
"Line height": string;
|
|
1474
|
+
"Font weight": string;
|
|
1475
|
+
Background: string;
|
|
1476
|
+
"Content background": string;
|
|
1477
|
+
"User style": string;
|
|
1478
|
+
Dimension: string;
|
|
1479
|
+
True: string;
|
|
1480
|
+
False: string;
|
|
1481
|
+
Border: string;
|
|
1482
|
+
"Background border radius": string;
|
|
1483
|
+
Left: string;
|
|
1484
|
+
Right: string;
|
|
1485
|
+
top: string;
|
|
1486
|
+
middle: string;
|
|
1487
|
+
bottom: string;
|
|
1488
|
+
Setting: string;
|
|
1489
|
+
"Icon width": string;
|
|
1490
|
+
"Icon height": string;
|
|
1491
|
+
"Unwrapped icon": string;
|
|
1492
|
+
"The image suffix should be .jpg, jpeg, png, gif, etc. Otherwise, the picture may not be displayed normally.": string;
|
|
1493
|
+
"Wrapped icon": string;
|
|
1494
|
+
"Icon position": string;
|
|
1495
|
+
"Icon align": string;
|
|
1496
|
+
Padding: string;
|
|
1497
|
+
hidden: string;
|
|
1498
|
+
visible: string;
|
|
1499
|
+
"Thumbnail width": string;
|
|
1500
|
+
Thumbnails: string;
|
|
1501
|
+
Images: string;
|
|
1502
|
+
Icon: string;
|
|
1503
|
+
"Left icon": string;
|
|
1504
|
+
"Right icon": string;
|
|
1505
|
+
"Hovered border": string;
|
|
1506
|
+
"Selected Border": string;
|
|
1507
|
+
"Border of the thumbnails": string;
|
|
1508
|
+
"Border radius of the thumbnails": string;
|
|
1509
|
+
src: string;
|
|
1510
|
+
"Full width on mobile": string;
|
|
1511
|
+
title: string;
|
|
1512
|
+
alt: string;
|
|
1513
|
+
"class name": string;
|
|
1514
|
+
vertical: string;
|
|
1515
|
+
horizontal: string;
|
|
1516
|
+
Mode: string;
|
|
1517
|
+
Typography: string;
|
|
1518
|
+
"Social item": string;
|
|
1519
|
+
"Border radius": string;
|
|
1520
|
+
"Icon padding": string;
|
|
1521
|
+
"Text padding": string;
|
|
1522
|
+
"Inner padding": string;
|
|
1523
|
+
"Button color": string;
|
|
1524
|
+
Decoration: string;
|
|
1525
|
+
"Html mode": string;
|
|
1526
|
+
"Fluid height": string;
|
|
1527
|
+
"Fixed height": string;
|
|
1528
|
+
"Background width": string;
|
|
1529
|
+
"Background height": string;
|
|
1530
|
+
"Background position": string;
|
|
1531
|
+
Html: string;
|
|
1532
|
+
"Editor Loading...": string;
|
|
1533
|
+
"Please select": string;
|
|
1534
|
+
"Column inside a group must have a width in percentage, not in pixel": string;
|
|
1535
|
+
None: string;
|
|
1536
|
+
uppercase: string;
|
|
1537
|
+
lowercase: string;
|
|
1538
|
+
capitalize: string;
|
|
1539
|
+
"Text transform": string;
|
|
1540
|
+
Overline: string;
|
|
1541
|
+
"Line through": string;
|
|
1542
|
+
Blink: string;
|
|
1543
|
+
Inherit: string;
|
|
1544
|
+
"Text decoration": string;
|
|
1545
|
+
ltr: string;
|
|
1546
|
+
rtl: string;
|
|
1547
|
+
Direction: string;
|
|
1548
|
+
Iteration: string;
|
|
1549
|
+
"Data source": string;
|
|
1550
|
+
"Item name": string;
|
|
1551
|
+
Limit: string;
|
|
1552
|
+
"Mock quantity": string;
|
|
1553
|
+
Normal: string;
|
|
1554
|
+
"Font style": string;
|
|
1555
|
+
"Container background color": string;
|
|
1556
|
+
"Top (px)": string;
|
|
1557
|
+
"Left (px)": string;
|
|
1558
|
+
"Bottom (px)": string;
|
|
1559
|
+
"Right (px)": string;
|
|
1560
|
+
"Class name": string;
|
|
1561
|
+
"No repeat": string;
|
|
1562
|
+
Repeat: string;
|
|
1563
|
+
"Repeat X": string;
|
|
1564
|
+
"Repeat Y": string;
|
|
1565
|
+
"Background image": string;
|
|
1566
|
+
"Background repeat": string;
|
|
1567
|
+
"Background size": string;
|
|
1568
|
+
Dashed: string;
|
|
1569
|
+
Dotted: string;
|
|
1570
|
+
Solid: string;
|
|
1571
|
+
double: string;
|
|
1572
|
+
ridge: string;
|
|
1573
|
+
groove: string;
|
|
1574
|
+
inset: string;
|
|
1575
|
+
outset: string;
|
|
1576
|
+
Style: string;
|
|
1577
|
+
"Vertical align": string;
|
|
1578
|
+
attributes: string;
|
|
1579
|
+
left: string;
|
|
1580
|
+
center: string;
|
|
1581
|
+
right: string;
|
|
1582
|
+
Align: string;
|
|
1583
|
+
Height: string;
|
|
1584
|
+
Center: string;
|
|
1585
|
+
"Text align": string;
|
|
1586
|
+
Margin: string;
|
|
1587
|
+
Top: string;
|
|
1588
|
+
Bottom: string;
|
|
1589
|
+
Opacity: string;
|
|
1590
|
+
"At least one condition": string;
|
|
1591
|
+
Condition: string;
|
|
1592
|
+
Symbol: string;
|
|
1593
|
+
And: string;
|
|
1594
|
+
Or: string;
|
|
1595
|
+
"Variable path": string;
|
|
1596
|
+
Operator: string;
|
|
1597
|
+
"Letter spacing": string;
|
|
1598
|
+
"No matching components": string;
|
|
1599
|
+
Template: string;
|
|
1600
|
+
"Accordion element": string;
|
|
1601
|
+
"Accordion title": string;
|
|
1602
|
+
Table: string;
|
|
1603
|
+
"Make it easy for everyone to compose emails!": string;
|
|
1604
|
+
"Accordion text": string;
|
|
1605
|
+
Raw: string;
|
|
1606
|
+
"Upload a image": string;
|
|
1607
|
+
"You must edit the image in order to resize it": string;
|
|
1608
|
+
"too large": string;
|
|
1609
|
+
"Open the editor panel": string;
|
|
1610
|
+
"Download the image": string;
|
|
1611
|
+
"Control Panel": string;
|
|
1612
|
+
Quality: string;
|
|
1613
|
+
"Max dimensions": string;
|
|
1614
|
+
"aspect-ratio": string;
|
|
1615
|
+
"max-width(px)": string;
|
|
1616
|
+
"max-height(px)": string;
|
|
1617
|
+
Format: string;
|
|
1618
|
+
Crop: string;
|
|
1619
|
+
"width(px)": string;
|
|
1620
|
+
"height(px)": string;
|
|
1621
|
+
Contrast: string;
|
|
1622
|
+
Blur: string;
|
|
1623
|
+
Brightness: string;
|
|
1624
|
+
Grayscale: string;
|
|
1625
|
+
Saturate: string;
|
|
1626
|
+
Sepia: string;
|
|
1627
|
+
Rotate: string;
|
|
1628
|
+
Undo: string;
|
|
1629
|
+
size: string;
|
|
1630
|
+
Basic: string;
|
|
1631
|
+
Filters: string;
|
|
1632
|
+
"Min Length": string;
|
|
1633
|
+
"Max Length": string;
|
|
1634
|
+
"All Required": string;
|
|
1635
|
+
"Choose root data type": string;
|
|
1636
|
+
root: string;
|
|
1637
|
+
"Add Title": string;
|
|
1638
|
+
"Add Description": string;
|
|
1639
|
+
"Add Child Node": string;
|
|
1640
|
+
"Enter property name": string;
|
|
1641
|
+
"Choose data type": string;
|
|
1642
|
+
"Advanced Settings": string;
|
|
1643
|
+
"Remove Node": string;
|
|
1644
|
+
"Add Sibling Node": string;
|
|
1645
|
+
"Duplicate Properties, the property already exists": string;
|
|
1646
|
+
"Sibling Node": string;
|
|
1647
|
+
"Child Node": string;
|
|
1648
|
+
Pattern: string;
|
|
1649
|
+
"Must be a valid regular expression": string;
|
|
1650
|
+
Enum: string;
|
|
1651
|
+
"Enum must not have duplicate values": string;
|
|
1652
|
+
Format1: string;
|
|
1653
|
+
"ENUM Values - One Entry Per Line": string;
|
|
1654
|
+
"Min Value": string;
|
|
1655
|
+
"Max Value": string;
|
|
1656
|
+
true: string;
|
|
1657
|
+
false: string;
|
|
1658
|
+
"Advanced Schema Settings": string;
|
|
1659
|
+
Items: string;
|
|
1660
|
+
"O campo est\u00E1 incompleto": string;
|
|
1661
|
+
Options: string;
|
|
1662
|
+
toggleLanguage: string;
|
|
1663
|
+
"usuario@email.com": string;
|
|
1664
|
+
"Sua senha": string;
|
|
1665
|
+
"Lembre-me": string;
|
|
1666
|
+
"Esqueci minha senha": string;
|
|
1667
|
+
"Email inv\u00E1lido": string;
|
|
1668
|
+
"Um e-mail com instru\u00E7\u00F5es para redefinir sua senha foi enviado. Verifique sua caixa de entrada.": string;
|
|
1669
|
+
"A nova senha e a confirma\u00E7\u00E3o devem ser iguais.": string;
|
|
1670
|
+
"Senha redefinida com sucesso.": string;
|
|
1671
|
+
"Erro ao redefinir senha.": string;
|
|
1672
|
+
"Redefinir senha": string;
|
|
1673
|
+
Enviar: string;
|
|
1674
|
+
"C\u00F3digo enviado no seu e-mail": string;
|
|
1675
|
+
"Nova senha": string;
|
|
1676
|
+
"Confirmar senha": string;
|
|
1677
|
+
Grupo: string;
|
|
1678
|
+
"Nome do grupo": string;
|
|
1679
|
+
"Informe o nome do grupo": string;
|
|
1680
|
+
"Descri\u00E7\u00E3o do grupo": string;
|
|
1681
|
+
"Informe a descri\u00E7\u00E3o do grupo": string;
|
|
1682
|
+
Perfil: string;
|
|
1683
|
+
"Nome do perfil": string;
|
|
1684
|
+
"Informe o nome do perfil": string;
|
|
1685
|
+
"Descri\u00E7\u00E3o do perfil": string;
|
|
1686
|
+
"Informe a descri\u00E7\u00E3o do perfil": string;
|
|
1687
|
+
"Informe a descri\u00E7\u00E3o do cronograma de acesso": string;
|
|
1688
|
+
"Informe a hora de in\u00EDcio": string;
|
|
1689
|
+
"Informe a hora de t\u00E9rmino": string;
|
|
1690
|
+
"Informe o nome": string;
|
|
1691
|
+
"Informe a descri\u00E7\u00E3o": string;
|
|
1692
|
+
"Informe um email v\u00E1lido": string;
|
|
1693
|
+
"Informe o nome para a a\u00E7\u00E3o": string;
|
|
1694
|
+
"Informe a descri\u00E7\u00E3o para a a\u00E7\u00E3o": string;
|
|
1695
|
+
"Informe a categoria para a a\u00E7\u00E3o": string;
|
|
1696
|
+
"Informe o nome para o recurso": string;
|
|
1697
|
+
"Informe a descri\u00E7\u00E3o para o recurso": string;
|
|
1698
|
+
"Informe o nome de usu\u00E1rio": string;
|
|
1699
|
+
"Informe a senha": string;
|
|
1700
|
+
"Deseja remover o usu\u00E1rio": string;
|
|
1701
|
+
"Deseja remover o grupo": string;
|
|
1702
|
+
"Deseja remover o perfil": string;
|
|
1703
|
+
Usuário: string;
|
|
1704
|
+
"Nome completo": string;
|
|
1705
|
+
"Informe o nome completo do usu\u00E1rio": string;
|
|
1706
|
+
"Descri\u00E7\u00E3o do usu\u00E1rio": string;
|
|
1707
|
+
"Informe a descri\u00E7\u00E3o do usu\u00E1rio": string;
|
|
1708
|
+
"Apelido (username)": string;
|
|
1709
|
+
"Informe o apelido(username) do usu\u00E1rio": string;
|
|
1710
|
+
"Senha usu\u00E1rio": string;
|
|
1711
|
+
"E-mail": string;
|
|
1712
|
+
"Informe o e-mail do usu\u00E1rio": string;
|
|
1713
|
+
"Perfil do usu\u00E1rio": string;
|
|
1714
|
+
"Deve alterar senha pr\u00F3ximo login ?": string;
|
|
1715
|
+
"Pode alterar a senha ?": string;
|
|
1716
|
+
"Permite multiplos logins ?": string;
|
|
1717
|
+
"Senha nunca expira ?": string;
|
|
1718
|
+
"Conta desativada ?": string;
|
|
1719
|
+
"Conta bloqueada ?": string;
|
|
1720
|
+
"Administrador ?": string;
|
|
1721
|
+
"Foto do usu\u00E1rio": string;
|
|
1722
|
+
Revoke: string;
|
|
1723
|
+
"Token de API": string;
|
|
1724
|
+
user: string;
|
|
1725
|
+
group: string;
|
|
1726
|
+
profile: string;
|
|
1727
|
+
"Edit permissions": string;
|
|
1728
|
+
Available: string;
|
|
1729
|
+
"Filter available permissions": string;
|
|
1730
|
+
Granted: string;
|
|
1731
|
+
"Filter granted permissions": string;
|
|
1732
|
+
Navegação: string;
|
|
1733
|
+
Foto: string;
|
|
1734
|
+
Nome: string;
|
|
1735
|
+
Apelido: string;
|
|
1736
|
+
Email: string;
|
|
1737
|
+
Grupos: string;
|
|
1738
|
+
"Admin ?": string;
|
|
1739
|
+
"Alt.senha pr\u00F3ximo login?": string;
|
|
1740
|
+
"Pode alterar senha?": string;
|
|
1741
|
+
"Permite multiplos logins?": string;
|
|
1742
|
+
"Senha nunca expira?": string;
|
|
1743
|
+
"Desativado?": string;
|
|
1744
|
+
"Bloqueado?": string;
|
|
1745
|
+
"Hor\u00E1rio acesso ilimitado?": string;
|
|
1746
|
+
Descrição: string;
|
|
1747
|
+
"Nome do recurso": string;
|
|
1748
|
+
Usuários: string;
|
|
1749
|
+
Perfis: string;
|
|
1750
|
+
Recursos: string;
|
|
1751
|
+
"Tokens Acesso": string;
|
|
1752
|
+
"Nome de Usu\u00E1rio": string;
|
|
1753
|
+
"Expira em": string;
|
|
1754
|
+
"Revogado ?": string;
|
|
1755
|
+
"Expirado ?": string;
|
|
1756
|
+
"Token Acesso": string;
|
|
1757
|
+
"Faltam {{days}} dias, {{hours}} horas e {{minutes}} minutos": string;
|
|
1758
|
+
Disponíveis: string;
|
|
1759
|
+
Selecionados: string;
|
|
1760
|
+
"Nenhum resultado...": string;
|
|
1761
|
+
"Usu\u00E1rio/senha n\u00E3o encontrados. N\u00E3o autorizado.": string;
|
|
1762
|
+
recurso_nao_encontrado: string;
|
|
1763
|
+
metodo_nao_permitido: string;
|
|
1764
|
+
dados_incorretos: string;
|
|
1765
|
+
erro_servidor: string;
|
|
1766
|
+
servidor_nao_disponivel: string;
|
|
1767
|
+
Password: string;
|
|
1768
|
+
"C\u00F3digo de seguran\u00E7a": string;
|
|
1769
|
+
"My Profile": string;
|
|
1770
|
+
Rotation: string;
|
|
1771
|
+
"Image max size": string;
|
|
1772
|
+
erro_avatar_crop: string;
|
|
1773
|
+
tabs: {
|
|
1774
|
+
closeAll: string;
|
|
1775
|
+
closeLeft: string;
|
|
1776
|
+
closeRight: string;
|
|
1777
|
+
closeOthers: string;
|
|
1778
|
+
};
|
|
1779
|
+
};
|
|
1780
|
+
};
|
|
1781
|
+
};
|