cozy-ui-plus 1.1.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/CHANGELOG.md +10 -0
- package/LICENSE +21 -0
- package/README.md +1 -0
- package/babel.config.js +24 -0
- package/dist/AppIcon/index.js +265 -0
- package/dist/AppLinker/index.js +159 -0
- package/dist/AppLinker/native.config.js +8 -0
- package/dist/AppLinker/native.js +81 -0
- package/dist/AppSections/Sections.js +461 -0
- package/dist/AppSections/_mockApps.js +210 -0
- package/dist/AppSections/_testApps.js +162 -0
- package/dist/AppSections/categories.js +183 -0
- package/dist/AppSections/components/AppsSection.js +112 -0
- package/dist/AppSections/components/DropdownFilter.js +101 -0
- package/dist/AppSections/constants.js +16 -0
- package/dist/AppSections/generateI18nConfig.js +37 -0
- package/dist/AppSections/helpers.js +28 -0
- package/dist/AppSections/index.js +24 -0
- package/dist/AppSections/search.js +161 -0
- package/dist/AppTile/helpers.js +41 -0
- package/dist/AppTile/index.js +171 -0
- package/dist/CipherIcon/index.js +102 -0
- package/dist/CollectionField/index.js +166 -0
- package/dist/ContactPicker/index.js +129 -0
- package/dist/Contacts/AddModal/ContactAddressDialog/helpers.js +31 -0
- package/dist/Contacts/AddModal/ContactAddressDialog/index.js +106 -0
- package/dist/Contacts/AddModal/ContactAddressDialog/locales/index.js +113 -0
- package/dist/Contacts/AddModal/ContactForm/FieldInput.js +164 -0
- package/dist/Contacts/AddModal/ContactForm/FieldInputAccordion.js +91 -0
- package/dist/Contacts/AddModal/ContactForm/FieldInputArray.js +105 -0
- package/dist/Contacts/AddModal/ContactForm/FieldInputLayout.js +98 -0
- package/dist/Contacts/AddModal/ContactForm/FieldInputWrapper.js +51 -0
- package/dist/Contacts/AddModal/ContactForm/HasValueCondition.js +44 -0
- package/dist/Contacts/AddModal/ContactForm/RelatedContactList.js +55 -0
- package/dist/Contacts/AddModal/ContactForm/TextFieldCustomLabelSelect.js +104 -0
- package/dist/Contacts/AddModal/ContactForm/TextFieldSelect.js +59 -0
- package/dist/Contacts/AddModal/ContactForm/contactToFormValues.js +119 -0
- package/dist/Contacts/AddModal/ContactForm/fieldsConfig.js +314 -0
- package/dist/Contacts/AddModal/ContactForm/formValuesToContact.js +110 -0
- package/dist/Contacts/AddModal/ContactForm/helpers.js +466 -0
- package/dist/Contacts/AddModal/ContactForm/index.js +184 -0
- package/dist/Contacts/AddModal/ContactForm/locales/index.js +313 -0
- package/dist/Contacts/AddModal/CustomLabelDialog/index.js +138 -0
- package/dist/Contacts/AddModal/CustomLabelDialog/locales/index.js +73 -0
- package/dist/Contacts/AddModal/index.js +134 -0
- package/dist/Contacts/AddModal/locales/index.js +65 -0
- package/dist/Contacts/AddModal/mocks.js +265 -0
- package/dist/Contacts/AddModal/types.js +110 -0
- package/dist/Contacts/GroupsSelect/GroupCreation.js +157 -0
- package/dist/Contacts/GroupsSelect/GroupsSelect.js +207 -0
- package/dist/Contacts/GroupsSelect/GroupsSelectProvider.js +60 -0
- package/dist/Contacts/GroupsSelect/SelectBox/Control.js +54 -0
- package/dist/Contacts/GroupsSelect/SelectBox/EditGroupName.js +89 -0
- package/dist/Contacts/GroupsSelect/SelectBox/Menu.js +49 -0
- package/dist/Contacts/GroupsSelect/SelectBox/Option.js +80 -0
- package/dist/Contacts/GroupsSelect/SelectBox/SelectContainer.js +25 -0
- package/dist/Contacts/GroupsSelect/helpers.js +45 -0
- package/dist/Contacts/GroupsSelect/locales/index.js +97 -0
- package/dist/Contacts/GroupsSelect/useGroupSelect.js +196 -0
- package/dist/Contacts/Header/GroupsSelection.js +101 -0
- package/dist/Contacts/Header/ImportDropdown.js +115 -0
- package/dist/Contacts/Header/SearchInput.js +40 -0
- package/dist/Contacts/Header/index.js +93 -0
- package/dist/Contacts/Header/locales/index.js +73 -0
- package/dist/ContactsList/ContactCell.js +45 -0
- package/dist/ContactsList/ContactRow.js +84 -0
- package/dist/ContactsList/Contacts/ContactCozy.js +44 -0
- package/dist/ContactsList/Contacts/ContactEmail.js +44 -0
- package/dist/ContactsList/Contacts/ContactIdentity.js +86 -0
- package/dist/ContactsList/Contacts/ContactName.js +48 -0
- package/dist/ContactsList/Contacts/ContactPhone.js +44 -0
- package/dist/ContactsList/ContactsList.js +74 -0
- package/dist/ContactsList/helpers.js +156 -0
- package/dist/ContactsList/index.js +13 -0
- package/dist/ContactsList/locales/withContactsListLocales.js +42 -0
- package/dist/ContactsListModal/AddContact/AddContactActions.js +32 -0
- package/dist/ContactsListModal/AddContact/AddContactContent.js +85 -0
- package/dist/ContactsListModal/AddContact/AddContactDialog.js +63 -0
- package/dist/ContactsListModal/AddContact/AddContactTitle.js +21 -0
- package/dist/ContactsListModal/AddContact/helpers.js +61 -0
- package/dist/ContactsListModal/ContactsListContent.js +88 -0
- package/dist/ContactsListModal/ContactsListModal.js +178 -0
- package/dist/ContactsListModal/ContactsListModalWithQuery.js +44 -0
- package/dist/ContactsListModal/EmptyMessage.js +33 -0
- package/dist/ContactsListModal/MobileHeader.js +67 -0
- package/dist/ContactsListModal/index.js +58 -0
- package/dist/ContactsListModal/mockClient.js +2009 -0
- package/dist/ContactsListModal/queries.js +26 -0
- package/dist/ContactsListModal/withContactsListLocales.js +40 -0
- package/dist/Dialogs/AuthenticationDialogs/index.js +139 -0
- package/dist/Field/index.js +297 -0
- package/dist/FileImageLoader/checkImageSource.js +61 -0
- package/dist/FileImageLoader/index.js +394 -0
- package/dist/FilePicker/FilePickerBody.js +108 -0
- package/dist/FilePicker/FilePickerBodyItem.js +132 -0
- package/dist/FilePicker/FilePickerBreadcrumb.js +74 -0
- package/dist/FilePicker/FilePickerFooter.js +91 -0
- package/dist/FilePicker/FilePickerHeader.js +110 -0
- package/dist/FilePicker/docs/DemoProvider.js +280 -0
- package/dist/FilePicker/helpers.js +57 -0
- package/dist/FilePicker/index.js +125 -0
- package/dist/FilePicker/queries.js +61 -0
- package/dist/Intent/IntentDialogOpener/index.js +142 -0
- package/dist/Intent/IntentIframe/index.js +182 -0
- package/dist/ListItem/ExpandedAttributes/ExpandedAttribute.js +64 -0
- package/dist/ListItem/ExpandedAttributes/helpers.js +263 -0
- package/dist/ListItem/ExpandedAttributes/index.js +90 -0
- package/dist/ListItem/ListItemBase/Renaming/RenameDialog.js +52 -0
- package/dist/ListItem/ListItemBase/Renaming/RenameInput.js +319 -0
- package/dist/ListItem/ListItemBase/Renaming/helpers.js +73 -0
- package/dist/ListItem/ListItemBase/index.js +153 -0
- package/dist/ListItem/ListItemByDoc/index.js +109 -0
- package/dist/ListItem/ListItemContact/helpers.js +39 -0
- package/dist/ListItem/ListItemContact/index.js +87 -0
- package/dist/ListItem/ListItemContact/useActions.js +28 -0
- package/dist/ListItem/ListItemFile/ExpirationAnnotation.js +54 -0
- package/dist/ListItem/ListItemFile/ItemIcon.js +61 -0
- package/dist/ListItem/ListItemFile/PrimaryText.js +47 -0
- package/dist/ListItem/ListItemFile/SecondaryText.js +41 -0
- package/dist/ListItem/ListItemFile/index.js +96 -0
- package/dist/ListItem/hoc/withListItemLocales.js +322 -0
- package/dist/Paywall/MaxAccountsByKonnectorPaywall.js +48 -0
- package/dist/Paywall/MaxAccountsPaywall.js +43 -0
- package/dist/Paywall/MaxDaysToCapturePaywall.js +43 -0
- package/dist/Paywall/MaxPapersPaywall.js +44 -0
- package/dist/Paywall/OnlyOfficePaywall.js +41 -0
- package/dist/Paywall/PasswordSharingPaywall.js +34 -0
- package/dist/Paywall/Paywall.js +205 -0
- package/dist/Paywall/QuotaPaywall.js +32 -0
- package/dist/Paywall/helpers.js +31 -0
- package/dist/Paywall/index.js +63 -0
- package/dist/Paywall/locales/withPaywallLocales.js +401 -0
- package/dist/Qualification/QualificationGrid/helpers.js +16 -0
- package/dist/Qualification/QualificationGrid/index.js +136 -0
- package/dist/Qualification/QualificationGrid/locales/withLocales.js +82 -0
- package/dist/Qualification/QualificationIcon/index.js +156 -0
- package/dist/Qualification/QualificationItem/index.js +87 -0
- package/dist/Qualification/QualificationModal/helpers.js +95 -0
- package/dist/Qualification/QualificationModal/index.js +121 -0
- package/dist/Qualification/QualificationModal/locales/index.js +37 -0
- package/dist/ShortcutTile/index.js +68 -0
- package/dist/SquareAppIcon/index.js +262 -0
- package/dist/Storage/StorageButton.js +54 -0
- package/dist/Storage/StorageProgress.js +68 -0
- package/dist/Storage/index.js +49 -0
- package/dist/Storage/locales/index.js +41 -0
- package/dist/UploadQueue/FileUploadProgress.js +86 -0
- package/dist/UploadQueue/Item.js +132 -0
- package/dist/UploadQueue/Pending.js +23 -0
- package/dist/UploadQueue/RemainingTime.js +59 -0
- package/dist/UploadQueue/helpers.js +13 -0
- package/dist/UploadQueue/index.js +277 -0
- package/dist/UploadQueue/useStatusIcon.js +60 -0
- package/dist/hooks/useClientErrors.js +185 -0
- package/dist/proptypes.js +33 -0
- package/dist/providers/CozyTheme/CozyThemeWithQuery.js +41 -0
- package/dist/providers/CozyTheme/index.js +58 -0
- package/dist/providers/CozyTheme/queries.js +25 -0
- package/dist/providers/DemoProvider.js +49 -0
- package/dist/providers/Intent/index.js +130 -0
- package/dist/src/AppIcon/index.d.ts +50 -0
- package/dist/src/AppIcon/index.spec.d.ts +1 -0
- package/dist/src/AppLinker/index.d.ts +35 -0
- package/dist/src/AppLinker/index.spec.d.ts +1 -0
- package/dist/src/AppLinker/native.config.d.ts +1 -0
- package/dist/src/AppLinker/native.d.ts +6 -0
- package/dist/src/AppLinker/native.spec.d.ts +1 -0
- package/dist/src/AppSections/Sections.d.ts +49 -0
- package/dist/src/AppSections/_mockApps.d.ts +242 -0
- package/dist/src/AppSections/_testApps.d.ts +203 -0
- package/dist/src/AppSections/categories.d.ts +7 -0
- package/dist/src/AppSections/categories.spec.d.ts +1 -0
- package/dist/src/AppSections/components/AppsSection.d.ts +20 -0
- package/dist/src/AppSections/components/AppsSection.spec.d.ts +1 -0
- package/dist/src/AppSections/components/DropdownFilter.d.ts +17 -0
- package/dist/src/AppSections/constants.d.ts +8 -0
- package/dist/src/AppSections/generateI18nConfig.d.ts +4 -0
- package/dist/src/AppSections/helpers.d.ts +2 -0
- package/dist/src/AppSections/helpers.spec.d.ts +1 -0
- package/dist/src/AppSections/index.d.ts +3 -0
- package/dist/src/AppSections/index.spec.d.ts +1 -0
- package/dist/src/AppSections/search.d.ts +3 -0
- package/dist/src/AppSections/search.spec.d.ts +1 -0
- package/dist/src/AppTile/AppTile.spec.d.ts +1 -0
- package/dist/src/AppTile/helpers.d.ts +9 -0
- package/dist/src/AppTile/index.d.ts +33 -0
- package/dist/src/CipherIcon/index.d.ts +2 -0
- package/dist/src/CipherIcon/index.spec.d.ts +1 -0
- package/dist/src/CollectionField/index.d.ts +23 -0
- package/dist/src/ContactPicker/index.d.ts +21 -0
- package/dist/src/Contacts/AddModal/ContactAddressDialog/helpers.d.ts +4 -0
- package/dist/src/Contacts/AddModal/ContactAddressDialog/helpers.spec.d.ts +1 -0
- package/dist/src/Contacts/AddModal/ContactAddressDialog/index.d.ts +39 -0
- package/dist/src/Contacts/AddModal/ContactAddressDialog/locales/index.d.ts +10 -0
- package/dist/src/Contacts/AddModal/ContactForm/FieldInput.d.ts +39 -0
- package/dist/src/Contacts/AddModal/ContactForm/FieldInputAccordion.d.ts +12 -0
- package/dist/src/Contacts/AddModal/ContactForm/FieldInputArray.d.ts +14 -0
- package/dist/src/Contacts/AddModal/ContactForm/FieldInputLayout.d.ts +22 -0
- package/dist/src/Contacts/AddModal/ContactForm/FieldInputWrapper.d.ts +19 -0
- package/dist/src/Contacts/AddModal/ContactForm/HasValueCondition.d.ts +18 -0
- package/dist/src/Contacts/AddModal/ContactForm/HasValueCondition.spec.d.ts +1 -0
- package/dist/src/Contacts/AddModal/ContactForm/RelatedContactList.d.ts +15 -0
- package/dist/src/Contacts/AddModal/ContactForm/TextFieldCustomLabelSelect.d.ts +9 -0
- package/dist/src/Contacts/AddModal/ContactForm/TextFieldSelect.d.ts +5 -0
- package/dist/src/Contacts/AddModal/ContactForm/contactToFormValues.d.ts +6 -0
- package/dist/src/Contacts/AddModal/ContactForm/contactToFormValues.spec.d.ts +1 -0
- package/dist/src/Contacts/AddModal/ContactForm/fieldsConfig.d.ts +4 -0
- package/dist/src/Contacts/AddModal/ContactForm/formValuesToContact.d.ts +7 -0
- package/dist/src/Contacts/AddModal/ContactForm/formValuesToContact.spec.d.ts +1 -0
- package/dist/src/Contacts/AddModal/ContactForm/helpers.d.ts +35 -0
- package/dist/src/Contacts/AddModal/ContactForm/helpers.spec.d.ts +1 -0
- package/dist/src/Contacts/AddModal/ContactForm/index.d.ts +17 -0
- package/dist/src/Contacts/AddModal/ContactForm/index.spec.d.ts +1 -0
- package/dist/src/Contacts/AddModal/ContactForm/locales/index.d.ts +10 -0
- package/dist/src/Contacts/AddModal/CustomLabelDialog/index.d.ts +22 -0
- package/dist/src/Contacts/AddModal/CustomLabelDialog/locales/index.d.ts +10 -0
- package/dist/src/Contacts/AddModal/index.d.ts +8 -0
- package/dist/src/Contacts/AddModal/locales/index.d.ts +10 -0
- package/dist/src/Contacts/AddModal/mocks.d.ts +276 -0
- package/dist/src/Contacts/AddModal/types.d.ts +188 -0
- package/dist/src/Contacts/GroupsSelect/GroupCreation.d.ts +3 -0
- package/dist/src/Contacts/GroupsSelect/GroupsSelect.d.ts +56 -0
- package/dist/src/Contacts/GroupsSelect/GroupsSelect.spec.d.ts +22 -0
- package/dist/src/Contacts/GroupsSelect/GroupsSelectProvider.d.ts +5 -0
- package/dist/src/Contacts/GroupsSelect/SelectBox/Control.d.ts +14 -0
- package/dist/src/Contacts/GroupsSelect/SelectBox/EditGroupName.d.ts +7 -0
- package/dist/src/Contacts/GroupsSelect/SelectBox/Menu.d.ts +7 -0
- package/dist/src/Contacts/GroupsSelect/SelectBox/Option.d.ts +18 -0
- package/dist/src/Contacts/GroupsSelect/SelectBox/SelectContainer.d.ts +2 -0
- package/dist/src/Contacts/GroupsSelect/helpers.d.ts +9 -0
- package/dist/src/Contacts/GroupsSelect/locales/index.d.ts +10 -0
- package/dist/src/Contacts/GroupsSelect/useGroupSelect.d.ts +11 -0
- package/dist/src/Contacts/Header/GroupsSelection.d.ts +7 -0
- package/dist/src/Contacts/Header/ImportDropdown.d.ts +4 -0
- package/dist/src/Contacts/Header/SearchInput.d.ts +4 -0
- package/dist/src/Contacts/Header/index.d.ts +26 -0
- package/dist/src/Contacts/Header/locales/index.d.ts +10 -0
- package/dist/src/ContactsList/ContactCell.d.ts +8 -0
- package/dist/src/ContactsList/ContactRow.d.ts +16 -0
- package/dist/src/ContactsList/ContactRow.spec.d.ts +1 -0
- package/dist/src/ContactsList/Contacts/ContactCozy.d.ts +14 -0
- package/dist/src/ContactsList/Contacts/ContactEmail.d.ts +14 -0
- package/dist/src/ContactsList/Contacts/ContactIdentity.d.ts +10 -0
- package/dist/src/ContactsList/Contacts/ContactName.d.ts +10 -0
- package/dist/src/ContactsList/Contacts/ContactPhone.d.ts +14 -0
- package/dist/src/ContactsList/ContactsList.d.ts +2 -0
- package/dist/src/ContactsList/helpers.d.ts +9 -0
- package/dist/src/ContactsList/helpers.spec.d.ts +1 -0
- package/dist/src/ContactsList/index.d.ts +2 -0
- package/dist/src/ContactsList/locales/withContactsListLocales.d.ts +12 -0
- package/dist/src/ContactsListModal/AddContact/AddContactActions.d.ts +2 -0
- package/dist/src/ContactsListModal/AddContact/AddContactContent.d.ts +2 -0
- package/dist/src/ContactsListModal/AddContact/AddContactDialog.d.ts +6 -0
- package/dist/src/ContactsListModal/AddContact/AddContactTitle.d.ts +2 -0
- package/dist/src/ContactsListModal/AddContact/helpers.d.ts +6 -0
- package/dist/src/ContactsListModal/AddContact/helpers.spec.d.ts +1 -0
- package/dist/src/ContactsListModal/ContactsListContent.d.ts +2 -0
- package/dist/src/ContactsListModal/ContactsListModal.d.ts +20 -0
- package/dist/src/ContactsListModal/ContactsListModalWithQuery.d.ts +12 -0
- package/dist/src/ContactsListModal/EmptyMessage.d.ts +2 -0
- package/dist/src/ContactsListModal/MobileHeader.d.ts +16 -0
- package/dist/src/ContactsListModal/index.d.ts +2 -0
- package/dist/src/ContactsListModal/mockClient.d.ts +3 -0
- package/dist/src/ContactsListModal/queries.d.ts +7 -0
- package/dist/src/ContactsListModal/withContactsListLocales.d.ts +7 -0
- package/dist/src/Dialogs/AuthenticationDialogs/index.d.ts +2 -0
- package/dist/src/Field/index.d.ts +53 -0
- package/dist/src/Field/index.spec.d.ts +1 -0
- package/dist/src/FileImageLoader/checkImageSource.d.ts +1 -0
- package/dist/src/FileImageLoader/index.d.ts +45 -0
- package/dist/src/FileImageLoader/index.spec.d.ts +1 -0
- package/dist/src/FilePicker/FilePickerBody.d.ts +19 -0
- package/dist/src/FilePicker/FilePickerBodyItem.d.ts +22 -0
- package/dist/src/FilePicker/FilePickerBodyItem.spec.d.ts +1 -0
- package/dist/src/FilePicker/FilePickerBreadcrumb.d.ts +13 -0
- package/dist/src/FilePicker/FilePickerFooter.d.ts +15 -0
- package/dist/src/FilePicker/FilePickerFooter.spec.d.ts +1 -0
- package/dist/src/FilePicker/FilePickerHeader.d.ts +14 -0
- package/dist/src/FilePicker/docs/DemoProvider.d.ts +23 -0
- package/dist/src/FilePicker/helpers.d.ts +3 -0
- package/dist/src/FilePicker/helpers.spec.d.ts +1 -0
- package/dist/src/FilePicker/index.d.ts +22 -0
- package/dist/src/FilePicker/queries.d.ts +14 -0
- package/dist/src/Intent/IntentDialogOpener/index.d.ts +32 -0
- package/dist/src/Intent/IntentIframe/index.d.ts +8 -0
- package/dist/src/ListItem/ExpandedAttributes/ExpandedAttribute.d.ts +14 -0
- package/dist/src/ListItem/ExpandedAttributes/helpers.d.ts +43 -0
- package/dist/src/ListItem/ExpandedAttributes/helpers.spec.d.ts +1 -0
- package/dist/src/ListItem/ExpandedAttributes/index.d.ts +2 -0
- package/dist/src/ListItem/ListItemBase/Renaming/RenameDialog.d.ts +2 -0
- package/dist/src/ListItem/ListItemBase/Renaming/RenameInput.d.ts +12 -0
- package/dist/src/ListItem/ListItemBase/Renaming/helpers.d.ts +1 -0
- package/dist/src/ListItem/ListItemBase/index.d.ts +2 -0
- package/dist/src/ListItem/ListItemByDoc/index.d.ts +46 -0
- package/dist/src/ListItem/ListItemContact/helpers.d.ts +1 -0
- package/dist/src/ListItem/ListItemContact/helpers.spec.d.ts +1 -0
- package/dist/src/ListItem/ListItemContact/index.d.ts +35 -0
- package/dist/src/ListItem/ListItemContact/useActions.d.ts +2 -0
- package/dist/src/ListItem/ListItemFile/ExpirationAnnotation.d.ts +2 -0
- package/dist/src/ListItem/ListItemFile/ItemIcon.d.ts +12 -0
- package/dist/src/ListItem/ListItemFile/PrimaryText.d.ts +12 -0
- package/dist/src/ListItem/ListItemFile/SecondaryText.d.ts +12 -0
- package/dist/src/ListItem/ListItemFile/index.d.ts +37 -0
- package/dist/src/ListItem/hoc/withListItemLocales.d.ts +12 -0
- package/dist/src/Paywall/MaxAccountsByKonnectorPaywall.d.ts +2 -0
- package/dist/src/Paywall/MaxAccountsPaywall.d.ts +2 -0
- package/dist/src/Paywall/MaxDaysToCapturePaywall.d.ts +2 -0
- package/dist/src/Paywall/MaxPapersPaywall.d.ts +2 -0
- package/dist/src/Paywall/OnlyOfficePaywall.d.ts +16 -0
- package/dist/src/Paywall/PasswordSharingPaywall.d.ts +10 -0
- package/dist/src/Paywall/Paywall.d.ts +2 -0
- package/dist/src/Paywall/Paywall.spec.d.ts +1 -0
- package/dist/src/Paywall/QuotaPaywall.d.ts +13 -0
- package/dist/src/Paywall/helpers.d.ts +1 -0
- package/dist/src/Paywall/index.d.ts +7 -0
- package/dist/src/Paywall/locales/withPaywallLocales.d.ts +2 -0
- package/dist/src/Qualification/QualificationGrid/helpers.d.ts +1 -0
- package/dist/src/Qualification/QualificationGrid/index.d.ts +2 -0
- package/dist/src/Qualification/QualificationGrid/locales/withLocales.d.ts +12 -0
- package/dist/src/Qualification/QualificationIcon/index.d.ts +13 -0
- package/dist/src/Qualification/QualificationItem/index.d.ts +17 -0
- package/dist/src/Qualification/QualificationModal/helpers.d.ts +14 -0
- package/dist/src/Qualification/QualificationModal/helpers.spec.d.ts +1 -0
- package/dist/src/Qualification/QualificationModal/index.d.ts +16 -0
- package/dist/src/Qualification/QualificationModal/locales/index.d.ts +10 -0
- package/dist/src/ShortcutTile/index.d.ts +13 -0
- package/dist/src/SquareAppIcon/SquareAppIcon.spec.d.ts +1 -0
- package/dist/src/SquareAppIcon/index.d.ts +26 -0
- package/dist/src/Storage/StorageButton.d.ts +4 -0
- package/dist/src/Storage/StorageProgress.d.ts +5 -0
- package/dist/src/Storage/index.d.ts +14 -0
- package/dist/src/Storage/locales/index.d.ts +10 -0
- package/dist/src/UploadQueue/FileUploadProgress.d.ts +4 -0
- package/dist/src/UploadQueue/Item.d.ts +3 -0
- package/dist/src/UploadQueue/Pending.d.ts +3 -0
- package/dist/src/UploadQueue/RemainingTime.d.ts +4 -0
- package/dist/src/UploadQueue/helpers.d.ts +1 -0
- package/dist/src/UploadQueue/index.d.ts +42 -0
- package/dist/src/UploadQueue/index.spec.d.ts +1 -0
- package/dist/src/UploadQueue/useStatusIcon.d.ts +1 -0
- package/dist/src/hooks/useClientErrors.d.ts +29 -0
- package/dist/src/hooks/useClientErrors.spec.d.ts +1 -0
- package/dist/src/proptypes.d.ts +18 -0
- package/dist/src/providers/CozyTheme/CozyThemeWithQuery.d.ts +2 -0
- package/dist/src/providers/CozyTheme/index.d.ts +24 -0
- package/dist/src/providers/CozyTheme/queries.d.ts +8 -0
- package/dist/src/providers/DemoProvider.d.ts +6 -0
- package/dist/src/providers/Intent/index.d.ts +9 -0
- package/dist/stylesheet.css +898 -0
- package/dist/test/I18n.d.ts +6 -0
- package/dist/types.d.js +1 -0
- package/jest.config.js +20 -0
- package/package.json +76 -0
- package/preprocess.js +16 -0
- package/src/AppIcon/Readme.md +96 -0
- package/src/AppIcon/index.jsx +168 -0
- package/src/AppIcon/index.spec.js +145 -0
- package/src/AppIcon/styles.styl +37 -0
- package/src/AppLinker/Readme.md +32 -0
- package/src/AppLinker/__snapshots__/index.spec.jsx.snap +13 -0
- package/src/AppLinker/index.jsx +107 -0
- package/src/AppLinker/index.spec.jsx +60 -0
- package/src/AppLinker/native.config.js +1 -0
- package/src/AppLinker/native.js +57 -0
- package/src/AppLinker/native.spec.js +120 -0
- package/src/AppSections/Readme.md +35 -0
- package/src/AppSections/Sections.jsx +285 -0
- package/src/AppSections/Sections.styl +4 -0
- package/src/AppSections/__snapshots__/search.spec.js.snap +972 -0
- package/src/AppSections/_mockApps.js +197 -0
- package/src/AppSections/_testApps.js +151 -0
- package/src/AppSections/categories.js +138 -0
- package/src/AppSections/categories.spec.js +289 -0
- package/src/AppSections/components/AppsSection.jsx +82 -0
- package/src/AppSections/components/AppsSection.spec.jsx +50 -0
- package/src/AppSections/components/AppsSection.styl +7 -0
- package/src/AppSections/components/DropdownFilter.jsx +50 -0
- package/src/AppSections/components/DropdownFilter.styl +14 -0
- package/src/AppSections/constants.js +9 -0
- package/src/AppSections/generateI18nConfig.ts +23 -0
- package/src/AppSections/helpers.js +16 -0
- package/src/AppSections/helpers.spec.js +40 -0
- package/src/AppSections/index.jsx +3 -0
- package/src/AppSections/index.spec.jsx +137 -0
- package/src/AppSections/locales/en.json +37 -0
- package/src/AppSections/locales/fr.json +37 -0
- package/src/AppSections/locales/ru.json +37 -0
- package/src/AppSections/locales/vi.json +37 -0
- package/src/AppSections/search.js +104 -0
- package/src/AppSections/search.spec.js +158 -0
- package/src/AppTile/AppTile.spec.jsx +117 -0
- package/src/AppTile/Readme.md +24 -0
- package/src/AppTile/helpers.js +25 -0
- package/src/AppTile/index.jsx +139 -0
- package/src/AppTile/locales/en.json +9 -0
- package/src/AppTile/locales/fr.json +9 -0
- package/src/AppTile/locales/ru.json +9 -0
- package/src/AppTile/locales/vi.json +9 -0
- package/src/AppTile/styles.styl +27 -0
- package/src/CipherIcon/Readme.md +14 -0
- package/src/CipherIcon/index.jsx +46 -0
- package/src/CipherIcon/index.spec.jsx +53 -0
- package/src/CollectionField/Readme.md +41 -0
- package/src/CollectionField/index.jsx +141 -0
- package/src/CollectionField/styles.styl +15 -0
- package/src/ContactPicker/Readme.md +26 -0
- package/src/ContactPicker/index.jsx +86 -0
- package/src/ContactPicker/styles.styl +5 -0
- package/src/Contacts/AddModal/ContactAddressDialog/helpers.js +22 -0
- package/src/Contacts/AddModal/ContactAddressDialog/helpers.spec.js +64 -0
- package/src/Contacts/AddModal/ContactAddressDialog/index.jsx +85 -0
- package/src/Contacts/AddModal/ContactAddressDialog/locales/en.json +25 -0
- package/src/Contacts/AddModal/ContactAddressDialog/locales/fr.json +25 -0
- package/src/Contacts/AddModal/ContactAddressDialog/locales/index.jsx +11 -0
- package/src/Contacts/AddModal/ContactAddressDialog/locales/ru.json +25 -0
- package/src/Contacts/AddModal/ContactAddressDialog/locales/vi.json +25 -0
- package/src/Contacts/AddModal/ContactForm/FieldInput.jsx +124 -0
- package/src/Contacts/AddModal/ContactForm/FieldInputAccordion.jsx +58 -0
- package/src/Contacts/AddModal/ContactForm/FieldInputArray.jsx +81 -0
- package/src/Contacts/AddModal/ContactForm/FieldInputLayout.jsx +77 -0
- package/src/Contacts/AddModal/ContactForm/FieldInputWrapper.jsx +44 -0
- package/src/Contacts/AddModal/ContactForm/HasValueCondition.jsx +31 -0
- package/src/Contacts/AddModal/ContactForm/HasValueCondition.spec.jsx +79 -0
- package/src/Contacts/AddModal/ContactForm/RelatedContactList.jsx +37 -0
- package/src/Contacts/AddModal/ContactForm/TextFieldCustomLabelSelect.jsx +79 -0
- package/src/Contacts/AddModal/ContactForm/TextFieldSelect.jsx +40 -0
- package/src/Contacts/AddModal/ContactForm/__snapshots__/HasValueCondition.spec.jsx.snap +33 -0
- package/src/Contacts/AddModal/ContactForm/contactToFormValues.js +109 -0
- package/src/Contacts/AddModal/ContactForm/contactToFormValues.spec.js +133 -0
- package/src/Contacts/AddModal/ContactForm/fieldsConfig.jsx +357 -0
- package/src/Contacts/AddModal/ContactForm/formValuesToContact.js +111 -0
- package/src/Contacts/AddModal/ContactForm/formValuesToContact.spec.js +557 -0
- package/src/Contacts/AddModal/ContactForm/helpers.js +393 -0
- package/src/Contacts/AddModal/ContactForm/helpers.spec.js +391 -0
- package/src/Contacts/AddModal/ContactForm/index.jsx +138 -0
- package/src/Contacts/AddModal/ContactForm/index.spec.jsx +301 -0
- package/src/Contacts/AddModal/ContactForm/locales/en.json +75 -0
- package/src/Contacts/AddModal/ContactForm/locales/fr.json +75 -0
- package/src/Contacts/AddModal/ContactForm/locales/index.jsx +11 -0
- package/src/Contacts/AddModal/ContactForm/locales/ru.json +75 -0
- package/src/Contacts/AddModal/ContactForm/locales/vi.json +75 -0
- package/src/Contacts/AddModal/ContactForm/styles.styl +2 -0
- package/src/Contacts/AddModal/CustomLabelDialog/index.jsx +109 -0
- package/src/Contacts/AddModal/CustomLabelDialog/locales/en.json +15 -0
- package/src/Contacts/AddModal/CustomLabelDialog/locales/fr.json +15 -0
- package/src/Contacts/AddModal/CustomLabelDialog/locales/index.jsx +11 -0
- package/src/Contacts/AddModal/CustomLabelDialog/locales/ru.json +15 -0
- package/src/Contacts/AddModal/CustomLabelDialog/locales/vi.json +15 -0
- package/src/Contacts/AddModal/Readme.md +55 -0
- package/src/Contacts/AddModal/index.jsx +86 -0
- package/src/Contacts/AddModal/locales/en.json +13 -0
- package/src/Contacts/AddModal/locales/fr.json +13 -0
- package/src/Contacts/AddModal/locales/index.jsx +11 -0
- package/src/Contacts/AddModal/locales/ru.json +13 -0
- package/src/Contacts/AddModal/locales/vi.json +13 -0
- package/src/Contacts/AddModal/mocks.js +299 -0
- package/src/Contacts/AddModal/types.js +102 -0
- package/src/Contacts/GroupsSelect/GroupCreation.jsx +96 -0
- package/src/Contacts/GroupsSelect/GroupsSelect.jsx +159 -0
- package/src/Contacts/GroupsSelect/GroupsSelect.spec.jsx +249 -0
- package/src/Contacts/GroupsSelect/GroupsSelectProvider.jsx +40 -0
- package/src/Contacts/GroupsSelect/Readme.md +1 -0
- package/src/Contacts/GroupsSelect/SelectBox/Control.jsx +37 -0
- package/src/Contacts/GroupsSelect/SelectBox/EditGroupName.jsx +52 -0
- package/src/Contacts/GroupsSelect/SelectBox/Menu.jsx +27 -0
- package/src/Contacts/GroupsSelect/SelectBox/Option.jsx +71 -0
- package/src/Contacts/GroupsSelect/SelectBox/SelectContainer.jsx +15 -0
- package/src/Contacts/GroupsSelect/SelectBox/styles.styl +2 -0
- package/src/Contacts/GroupsSelect/helpers.js +25 -0
- package/src/Contacts/GroupsSelect/locales/en.json +21 -0
- package/src/Contacts/GroupsSelect/locales/fr.json +21 -0
- package/src/Contacts/GroupsSelect/locales/index.jsx +11 -0
- package/src/Contacts/GroupsSelect/locales/ru.json +21 -0
- package/src/Contacts/GroupsSelect/locales/vi.json +21 -0
- package/src/Contacts/GroupsSelect/styles.styl +48 -0
- package/src/Contacts/GroupsSelect/useGroupSelect.jsx +89 -0
- package/src/Contacts/Header/GroupsSelection.jsx +75 -0
- package/src/Contacts/Header/ImportDropdown.jsx +80 -0
- package/src/Contacts/Header/Readme.md +38 -0
- package/src/Contacts/Header/SearchInput.jsx +19 -0
- package/src/Contacts/Header/index.jsx +80 -0
- package/src/Contacts/Header/locales/en.json +15 -0
- package/src/Contacts/Header/locales/fr.json +15 -0
- package/src/Contacts/Header/locales/index.jsx +11 -0
- package/src/Contacts/Header/locales/ru.json +15 -0
- package/src/Contacts/Header/locales/vi.json +15 -0
- package/src/Contacts/Readme.md +1 -0
- package/src/ContactsList/ContactCell.jsx +23 -0
- package/src/ContactsList/ContactRow.jsx +46 -0
- package/src/ContactsList/ContactRow.spec.js +75 -0
- package/src/ContactsList/Contacts/ContactCozy.jsx +23 -0
- package/src/ContactsList/Contacts/ContactEmail.jsx +23 -0
- package/src/ContactsList/Contacts/ContactIdentity.jsx +57 -0
- package/src/ContactsList/Contacts/ContactName.jsx +43 -0
- package/src/ContactsList/Contacts/ContactPhone.jsx +24 -0
- package/src/ContactsList/ContactsList.jsx +52 -0
- package/src/ContactsList/Readme.md +47 -0
- package/src/ContactsList/_mockContacts.json +2494 -0
- package/src/ContactsList/helpers.js +132 -0
- package/src/ContactsList/helpers.spec.js +150 -0
- package/src/ContactsList/index.js +3 -0
- package/src/ContactsList/locales/en.json +5 -0
- package/src/ContactsList/locales/fr.json +5 -0
- package/src/ContactsList/locales/ru.json +5 -0
- package/src/ContactsList/locales/vi.json +5 -0
- package/src/ContactsList/locales/withContactsListLocales.jsx +15 -0
- package/src/ContactsList/styles.styl +35 -0
- package/src/ContactsListModal/AddContact/AddContactActions.jsx +16 -0
- package/src/ContactsListModal/AddContact/AddContactContent.jsx +60 -0
- package/src/ContactsListModal/AddContact/AddContactDialog.jsx +38 -0
- package/src/ContactsListModal/AddContact/AddContactTitle.jsx +9 -0
- package/src/ContactsListModal/AddContact/helpers.js +18 -0
- package/src/ContactsListModal/AddContact/helpers.spec.js +74 -0
- package/src/ContactsListModal/AddContact/styles.styl +2 -0
- package/src/ContactsListModal/ContactsListContent.jsx +74 -0
- package/src/ContactsListModal/ContactsListModal.jsx +143 -0
- package/src/ContactsListModal/ContactsListModalWithQuery.jsx +27 -0
- package/src/ContactsListModal/EmptyMessage.jsx +18 -0
- package/src/ContactsListModal/MobileHeader.jsx +50 -0
- package/src/ContactsListModal/Readme.md +45 -0
- package/src/ContactsListModal/index.jsx +28 -0
- package/src/ContactsListModal/locales/en.json +11 -0
- package/src/ContactsListModal/locales/fr.json +11 -0
- package/src/ContactsListModal/locales/ru.json +11 -0
- package/src/ContactsListModal/locales/vi.json +11 -0
- package/src/ContactsListModal/mockClient.jsx +47 -0
- package/src/ContactsListModal/queries.js +12 -0
- package/src/ContactsListModal/styles.styl +12 -0
- package/src/ContactsListModal/withContactsListLocales.jsx +11 -0
- package/src/Dialogs/AuthenticationDialogs/index.jsx +115 -0
- package/src/Field/Readme.md +357 -0
- package/src/Field/index.jsx +317 -0
- package/src/Field/index.spec.js +59 -0
- package/src/Field/styles.styl +41 -0
- package/src/FileImageLoader/Readme.md +112 -0
- package/src/FileImageLoader/checkImageSource.js +29 -0
- package/src/FileImageLoader/index.jsx +186 -0
- package/src/FileImageLoader/index.spec.jsx +176 -0
- package/src/FilePicker/FilePickerBody.jsx +111 -0
- package/src/FilePicker/FilePickerBodyItem.jsx +126 -0
- package/src/FilePicker/FilePickerBodyItem.spec.jsx +164 -0
- package/src/FilePicker/FilePickerBreadcrumb.jsx +55 -0
- package/src/FilePicker/FilePickerFooter.jsx +42 -0
- package/src/FilePicker/FilePickerFooter.spec.jsx +41 -0
- package/src/FilePicker/FilePickerHeader.jsx +89 -0
- package/src/FilePicker/Readme.md +50 -0
- package/src/FilePicker/docs/DemoProvider.jsx +273 -0
- package/src/FilePicker/helpers.js +46 -0
- package/src/FilePicker/helpers.spec.js +84 -0
- package/src/FilePicker/index.jsx +94 -0
- package/src/FilePicker/locales/en.json +8 -0
- package/src/FilePicker/locales/fr.json +8 -0
- package/src/FilePicker/locales/ru.json +8 -0
- package/src/FilePicker/locales/vi.json +8 -0
- package/src/FilePicker/queries.js +37 -0
- package/src/FilePicker/styles.styl +18 -0
- package/src/Intent/IntentDialogOpener/Readme.md +25 -0
- package/src/Intent/IntentDialogOpener/index.jsx +110 -0
- package/src/Intent/IntentIframe/Readme.md +80 -0
- package/src/Intent/IntentIframe/index.jsx +112 -0
- package/src/Intent/IntentIframe/styles.styl +21 -0
- package/src/ListItem/ExpandedAttributes/ExpandedAttribute.jsx +40 -0
- package/src/ListItem/ExpandedAttributes/helpers.js +214 -0
- package/src/ListItem/ExpandedAttributes/helpers.spec.js +175 -0
- package/src/ListItem/ExpandedAttributes/index.jsx +62 -0
- package/src/ListItem/ListItemBase/Renaming/RenameDialog.jsx +38 -0
- package/src/ListItem/ListItemBase/Renaming/RenameInput.jsx +134 -0
- package/src/ListItem/ListItemBase/Renaming/helpers.js +35 -0
- package/src/ListItem/ListItemBase/index.jsx +116 -0
- package/src/ListItem/ListItemByDoc/index.jsx +103 -0
- package/src/ListItem/ListItemContact/helpers.js +28 -0
- package/src/ListItem/ListItemContact/helpers.spec.js +41 -0
- package/src/ListItem/ListItemContact/index.jsx +68 -0
- package/src/ListItem/ListItemContact/useActions.jsx +22 -0
- package/src/ListItem/ListItemFile/ExpirationAnnotation.jsx +39 -0
- package/src/ListItem/ListItemFile/ItemIcon.jsx +49 -0
- package/src/ListItem/ListItemFile/PrimaryText.jsx +38 -0
- package/src/ListItem/ListItemFile/SecondaryText.jsx +36 -0
- package/src/ListItem/ListItemFile/index.jsx +75 -0
- package/src/ListItem/Readme.md +211 -0
- package/src/ListItem/hoc/withListItemLocales.jsx +15 -0
- package/src/ListItem/locales/en.json +75 -0
- package/src/ListItem/locales/fr.json +75 -0
- package/src/ListItem/locales/ru.json +75 -0
- package/src/ListItem/locales/vi.json +75 -0
- package/src/Paywall/MaxAccountsByKonnectorPaywall.jsx +32 -0
- package/src/Paywall/MaxAccountsPaywall.jsx +27 -0
- package/src/Paywall/MaxDaysToCapturePaywall.jsx +27 -0
- package/src/Paywall/MaxPapersPaywall.jsx +29 -0
- package/src/Paywall/OnlyOfficePaywall.jsx +24 -0
- package/src/Paywall/PasswordSharingPaywall.jsx +20 -0
- package/src/Paywall/Paywall.jsx +130 -0
- package/src/Paywall/Paywall.spec.jsx +228 -0
- package/src/Paywall/QuotaPaywall.jsx +18 -0
- package/src/Paywall/Readme.md +139 -0
- package/src/Paywall/helpers.js +22 -0
- package/src/Paywall/howto.md +28 -0
- package/src/Paywall/index.jsx +7 -0
- package/src/Paywall/locales/en.json +95 -0
- package/src/Paywall/locales/fr.json +95 -0
- package/src/Paywall/locales/ru.json +95 -0
- package/src/Paywall/locales/vi.json +95 -0
- package/src/Paywall/locales/withPaywallLocales.jsx +15 -0
- package/src/Qualification/QualificationGrid/Readme.md +26 -0
- package/src/Qualification/QualificationGrid/helpers.js +4 -0
- package/src/Qualification/QualificationGrid/index.jsx +91 -0
- package/src/Qualification/QualificationGrid/locales/en.json +15 -0
- package/src/Qualification/QualificationGrid/locales/fr.json +15 -0
- package/src/Qualification/QualificationGrid/locales/ru.json +15 -0
- package/src/Qualification/QualificationGrid/locales/vi.json +15 -0
- package/src/Qualification/QualificationGrid/locales/withLocales.jsx +15 -0
- package/src/Qualification/QualificationIcon/Readme.md +14 -0
- package/src/Qualification/QualificationIcon/index.jsx +104 -0
- package/src/Qualification/QualificationItem/Readme.md +8 -0
- package/src/Qualification/QualificationItem/index.jsx +64 -0
- package/src/Qualification/QualificationModal/Readme.md +28 -0
- package/src/Qualification/QualificationModal/helpers.js +63 -0
- package/src/Qualification/QualificationModal/helpers.spec.js +61 -0
- package/src/Qualification/QualificationModal/index.jsx +71 -0
- package/src/Qualification/QualificationModal/locales/en.json +6 -0
- package/src/Qualification/QualificationModal/locales/fr.json +6 -0
- package/src/Qualification/QualificationModal/locales/index.jsx +11 -0
- package/src/Qualification/QualificationModal/locales/ru.json +6 -0
- package/src/Qualification/QualificationModal/locales/vi.json +6 -0
- package/src/ShortcutTile/index.tsx +60 -0
- package/src/SquareAppIcon/Readme.md +185 -0
- package/src/SquareAppIcon/SquareAppIcon.spec.js +86 -0
- package/src/SquareAppIcon/__snapshots__/SquareAppIcon.spec.js.snap +474 -0
- package/src/SquareAppIcon/constants.json +6 -0
- package/src/SquareAppIcon/index.jsx +289 -0
- package/src/SquareAppIcon/styles.styl +141 -0
- package/src/Storage/Readme.md +45 -0
- package/src/Storage/StorageButton.jsx +34 -0
- package/src/Storage/StorageProgress.jsx +52 -0
- package/src/Storage/index.jsx +41 -0
- package/src/Storage/locales/en.json +7 -0
- package/src/Storage/locales/fr.json +7 -0
- package/src/Storage/locales/index.jsx +11 -0
- package/src/Storage/locales/ru.json +7 -0
- package/src/Storage/locales/vi.json +7 -0
- package/src/UploadQueue/FileUploadProgress.jsx +50 -0
- package/src/UploadQueue/Item.jsx +99 -0
- package/src/UploadQueue/Pending.jsx +12 -0
- package/src/UploadQueue/Readme.md +95 -0
- package/src/UploadQueue/RemainingTime.jsx +27 -0
- package/src/UploadQueue/helpers.js +3 -0
- package/src/UploadQueue/index.jsx +161 -0
- package/src/UploadQueue/index.spec.jsx +163 -0
- package/src/UploadQueue/locales/en.json +10 -0
- package/src/UploadQueue/locales/es.json +10 -0
- package/src/UploadQueue/locales/fr.json +10 -0
- package/src/UploadQueue/locales/ru.json +10 -0
- package/src/UploadQueue/locales/vi.json +10 -0
- package/src/UploadQueue/styles.styl +155 -0
- package/src/UploadQueue/useStatusIcon.js +32 -0
- package/src/hooks/useClientErrors.jsx +140 -0
- package/src/hooks/useClientErrors.spec.jsx +94 -0
- package/src/proptypes.js +20 -0
- package/src/providers/CozyTheme/CozyThemeWithQuery.jsx +25 -0
- package/src/providers/CozyTheme/Readme.md +88 -0
- package/src/providers/CozyTheme/index.jsx +35 -0
- package/src/providers/CozyTheme/queries.js +14 -0
- package/src/providers/DemoProvider.jsx +30 -0
- package/src/providers/Intent/index.jsx +83 -0
- package/src/types.d.ts +4 -0
- package/test/I18n.js +13 -0
- package/test/fileMock.js +3 -0
- package/test/jestsetup.js +1 -0
- package/tsconfig-build.json +16 -0
- package/tsconfig.json +9 -0
|
@@ -0,0 +1,401 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.default = void 0;
|
|
9
|
+
|
|
10
|
+
var _withOnlyLocales = _interopRequireDefault(require("cozy-ui/transpiled/react/providers/I18n/withOnlyLocales"));
|
|
11
|
+
|
|
12
|
+
var en = {
|
|
13
|
+
action: {
|
|
14
|
+
loading: "Loading...",
|
|
15
|
+
withoutIAP: "I understand"
|
|
16
|
+
},
|
|
17
|
+
onlyOfficePaywall: {
|
|
18
|
+
premium: {
|
|
19
|
+
title: "Upgrade your plan",
|
|
20
|
+
content: "Your plan doesn't allow you to **modify your documents online**.\n\nTo unlock this feature, or simply support us, you can change your Cozy plan.",
|
|
21
|
+
action: "Check our plans"
|
|
22
|
+
},
|
|
23
|
+
"public": {
|
|
24
|
+
title: "Information",
|
|
25
|
+
content: "You cannot edit this file online. Please ask the document owner to update their Cozy subscription.",
|
|
26
|
+
action: "I understand"
|
|
27
|
+
},
|
|
28
|
+
"default": {
|
|
29
|
+
title: "Information",
|
|
30
|
+
content: "Your current plan does not allow you to take advantage of this feature.",
|
|
31
|
+
action: "I understand"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
passwordSharingPaywall: {
|
|
35
|
+
premium: {
|
|
36
|
+
title: "Upgrade your plan",
|
|
37
|
+
content: "Your plan doesn't allow you to **share your passwords**.\n\nTo unlock this feature, or simply support us, you can change your Cozy plan.",
|
|
38
|
+
action: "Check our plans"
|
|
39
|
+
},
|
|
40
|
+
"default": {
|
|
41
|
+
title: "Information",
|
|
42
|
+
content: "Your current plan does not allow you to take advantage of this feature.",
|
|
43
|
+
action: "I understand"
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
maxAccountsByKonnectorPaywall: {
|
|
47
|
+
premium: {
|
|
48
|
+
title: "Upgrade your plan",
|
|
49
|
+
content: "Your plan allows you to connect up to **%{smart_count} account %{konnectorName}** in your Cozy.\n\nTo unlock this feature, or simply support us, you can change your Cozy plan. |||| Your plan allows you to connect up to **%{smart_count} accounts %{konnectorName}** in your Cozy.\n\nTo unlock this feature, or simply support us, you can change your Cozy plan.",
|
|
50
|
+
action: "Check our plans"
|
|
51
|
+
},
|
|
52
|
+
"default": {
|
|
53
|
+
title: "Information",
|
|
54
|
+
content: "Your current plan does not allow you to take advantage of this feature.",
|
|
55
|
+
action: "I understand"
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
maxAccountsPaywall: {
|
|
59
|
+
premium: {
|
|
60
|
+
title: "Upgrade your plan",
|
|
61
|
+
content: "Your plan allows you to connect up to **%{smart_count} account** in your Cozy.\n\nTo unlock this feature, or simply support us, you can change your Cozy plan. |||| Your plan allows you to connect up to **%{smart_count} accounts** in your Cozy.\n\nTo unlock this feature, or simply support us, you can change your Cozy plan.",
|
|
62
|
+
action: "Check our plans"
|
|
63
|
+
},
|
|
64
|
+
"default": {
|
|
65
|
+
title: "Information",
|
|
66
|
+
content: "Your current plan does not allow you to take advantage of this feature.",
|
|
67
|
+
action: "I understand"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
maxPapersPaywall: {
|
|
71
|
+
premium: {
|
|
72
|
+
title: "Upgrade your plan",
|
|
73
|
+
content: "Your plan allows you to manually add up to **%{smart_count} paper**.\n\nTo unlock this feature, or simply support us, you can modify the plan of your Cozy. |||| Your plan allows you to manually add up to **%{smart_count} papers**.\n\nTo unlock this feature, or simply support us, you can modify the plan of your Cozy.",
|
|
74
|
+
action: "Check our plans"
|
|
75
|
+
},
|
|
76
|
+
"default": {
|
|
77
|
+
title: "Information",
|
|
78
|
+
content: "Your current plan does not allow you to take advantage of this feature.",
|
|
79
|
+
action: "I understand"
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
quotaPaywall: {
|
|
83
|
+
premium: {
|
|
84
|
+
title: "Upgrade your plan",
|
|
85
|
+
content: "Your disk storage is full.\n\nPlease remove files, empty your trash or upgrade your plan before uploading files.",
|
|
86
|
+
action: "Check our plans"
|
|
87
|
+
},
|
|
88
|
+
"default": {
|
|
89
|
+
title: "Information",
|
|
90
|
+
content: "Your disk storage is full.\n\nPlease remove files, empty your trash before uploading files.",
|
|
91
|
+
action: "I understand"
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
maxDaysToCapturePaywall: {
|
|
95
|
+
premium: {
|
|
96
|
+
title: "Upgrade your plan",
|
|
97
|
+
content: "Your plan allows you to capture only **%{smart_count} day of trips**.\n\nTo unlock this feature, or simply support us, you can change your Cozy plan. |||| Your plan allows you to capture only **%{smart_count} days of trips**.\n\nTo unlock this feature, or simply support us, you can change your Cozy plan.",
|
|
98
|
+
action: "Check our plans"
|
|
99
|
+
},
|
|
100
|
+
"default": {
|
|
101
|
+
title: "Information",
|
|
102
|
+
content: "Your current plan does not allow you to take advantage of this feature.",
|
|
103
|
+
action: "I understand"
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
};
|
|
107
|
+
var fr = {
|
|
108
|
+
action: {
|
|
109
|
+
loading: "Chargement...",
|
|
110
|
+
withoutIAP: "J'ai compris"
|
|
111
|
+
},
|
|
112
|
+
onlyOfficePaywall: {
|
|
113
|
+
premium: {
|
|
114
|
+
title: "Augmentez votre offre",
|
|
115
|
+
content: "Votre offre ne vous permet pas de **modifier vos documents en ligne**.\n\nPour d\xE9bloquer cette fonctionnalit\xE9, ou simplement nous soutenir, vous pouvez modifier l'offre de votre Cozy.",
|
|
116
|
+
action: "Voir les offres"
|
|
117
|
+
},
|
|
118
|
+
"public": {
|
|
119
|
+
title: "Information",
|
|
120
|
+
content: "Vous ne pouvez pas \xE9diter ce fichier en ligne. Merci de demander au propri\xE9taire du document de mettre \xE0 jour son abonnement Cozy.",
|
|
121
|
+
action: "J'ai compris"
|
|
122
|
+
},
|
|
123
|
+
"default": {
|
|
124
|
+
title: "Information",
|
|
125
|
+
content: "Votre offre actuelle ne vous permet pas de profiter de cette fonctionnalit\xE9.",
|
|
126
|
+
action: "J'ai compris"
|
|
127
|
+
}
|
|
128
|
+
},
|
|
129
|
+
passwordSharingPaywall: {
|
|
130
|
+
premium: {
|
|
131
|
+
title: "Augmentez votre offre",
|
|
132
|
+
content: "Votre offre ne vous permet pas de **partager vos mots de passe**.\n\nPour d\xE9bloquer cette fonctionnalit\xE9, ou simplement nous soutenir, vous pouvez modifier l'offre de votre Cozy.",
|
|
133
|
+
action: "Voir les offres"
|
|
134
|
+
},
|
|
135
|
+
"default": {
|
|
136
|
+
title: "Information",
|
|
137
|
+
content: "Votre offre actuelle ne vous permet pas de profiter de cette fonctionnalit\xE9.",
|
|
138
|
+
action: "J'ai compris"
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
maxAccountsByKonnectorPaywall: {
|
|
142
|
+
premium: {
|
|
143
|
+
title: "Augmentez votre offre",
|
|
144
|
+
content: "Votre offre vous permet de connecter jusqu'\xE0 **%{smart_count} compte %{konnectorName}** dans votre Cozy.\n\nPour d\xE9bloquer cette fonctionnalit\xE9, ou simplement nous soutenir, vous pouvez modifier l'offre de votre Cozy. |||| Votre offre vous permet de connecter jusqu'\xE0 **%{smart_count} comptes %{konnectorName}** dans votre Cozy.\n\nPour d\xE9bloquer cette fonctionnalit\xE9, ou simplement nous soutenir, vous pouvez modifier l'offre de votre Cozy.",
|
|
145
|
+
action: "Voir les offres"
|
|
146
|
+
},
|
|
147
|
+
"default": {
|
|
148
|
+
title: "Information",
|
|
149
|
+
content: "Votre offre actuelle ne vous permet pas de profiter de cette fonctionnalit\xE9.",
|
|
150
|
+
action: "J'ai compris"
|
|
151
|
+
}
|
|
152
|
+
},
|
|
153
|
+
maxAccountsPaywall: {
|
|
154
|
+
premium: {
|
|
155
|
+
title: "Augmentez votre offre",
|
|
156
|
+
content: "Votre offre vous permet de connecter jusqu'\xE0 **%{smart_count} compte** dans votre Cozy.\n\nPour d\xE9bloquer cette fonctionnalit\xE9, ou simplement nous soutenir, vous pouvez modifier l'offre de votre Cozy. |||| Votre offre vous permet de connecter jusqu'\xE0 **%{smart_count} comptes** dans votre Cozy.\n\nPour d\xE9bloquer cette fonctionnalit\xE9, ou simplement nous soutenir, vous pouvez modifier l'offre de votre Cozy.",
|
|
157
|
+
action: "Voir les offres"
|
|
158
|
+
},
|
|
159
|
+
"default": {
|
|
160
|
+
title: "Information",
|
|
161
|
+
content: "Votre offre actuelle ne vous permet pas de profiter de cette fonctionnalit\xE9.",
|
|
162
|
+
action: "J'ai compris"
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
maxPapersPaywall: {
|
|
166
|
+
premium: {
|
|
167
|
+
title: "Augmentez votre offre",
|
|
168
|
+
content: "Votre offre vous permet d'ajouter manuellement jusqu'\xE0 **%{smart_count} papier**.\n\nPour d\xE9bloquer cette fonctionnalit\xE9, ou simplement nous soutenir, vous pouvez modifier l'offre de votre Cozy. |||| Votre offre vous permet d'ajouter manuellement jusqu'\xE0 **%{smart_count} papiers**.\n\nPour d\xE9bloquer cette fonctionnalit\xE9, ou simplement nous soutenir, vous pouvez modifier l'offre de votre Cozy.",
|
|
169
|
+
action: "Voir les offres"
|
|
170
|
+
},
|
|
171
|
+
"default": {
|
|
172
|
+
title: "Information",
|
|
173
|
+
content: "Votre offre actuelle ne vous permet pas de profiter de cette fonctionnalit\xE9.",
|
|
174
|
+
action: "J'ai compris"
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
quotaPaywall: {
|
|
178
|
+
premium: {
|
|
179
|
+
title: "Augmentez votre offre",
|
|
180
|
+
content: "Votre espace de stockage est plein.\n\nVeuillez supprimer des fichiers, vider votre corbeille ou changer d'offre avant d'importer de nouveaux fichiers.",
|
|
181
|
+
action: "Voir les offres"
|
|
182
|
+
},
|
|
183
|
+
"default": {
|
|
184
|
+
title: "Information",
|
|
185
|
+
content: "Votre espace de stockage est plein.\n\nVeuillez supprimer des fichiers, et vider votre corbeille avant d'importer de nouveaux fichiers.",
|
|
186
|
+
action: "J'ai compris"
|
|
187
|
+
}
|
|
188
|
+
},
|
|
189
|
+
maxDaysToCapturePaywall: {
|
|
190
|
+
premium: {
|
|
191
|
+
title: "Augmentez votre offre",
|
|
192
|
+
content: "Vous avez atteint la limite de **%{smart_count} jour de trajet sauvegard\xE9** inclus dans votre offre.\n\nPour d\xE9bloquer cette fonctionnalit\xE9, ou simplement nous soutenir, vous pouvez modifier l'offre de votre Cozy. |||| Vous avez atteint la limite des **%{smart_count} jours de trajets sauvegard\xE9s** inclus dans votre offre.\n\nPour d\xE9bloquer cette fonctionnalit\xE9, ou simplement nous soutenir, vous pouvez modifier l'offre de votre Cozy.",
|
|
193
|
+
action: "Voir les offres"
|
|
194
|
+
},
|
|
195
|
+
"default": {
|
|
196
|
+
title: "Information",
|
|
197
|
+
content: "Votre offre actuelle ne vous permet pas de profiter de cette fonctionnalit\xE9.",
|
|
198
|
+
action: "J'ai compris"
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
};
|
|
202
|
+
var ru = {
|
|
203
|
+
action: {
|
|
204
|
+
loading: "\u0417\u0430\u0433\u0440\u0443\u0437\u043A\u0430...",
|
|
205
|
+
withoutIAP: "\u041F\u043E\u043D\u044F\u0442\u043D\u043E"
|
|
206
|
+
},
|
|
207
|
+
onlyOfficePaywall: {
|
|
208
|
+
premium: {
|
|
209
|
+
title: "\u041E\u0431\u043D\u043E\u0432\u0438\u0442\u0435 \u0432\u0430\u0448 \u043F\u043B\u0430\u043D",
|
|
210
|
+
content: "\u0412\u0430\u0448 \u043F\u043B\u0430\u043D \u043D\u0435 \u043F\u043E\u0437\u0432\u043E\u043B\u044F\u0435\u0442 **\u0438\u0437\u043C\u0435\u043D\u044F\u0442\u044C \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u044B \u043E\u043D\u043B\u0430\u0439\u043D**.\n\n\u0427\u0442\u043E\u0431\u044B \u0440\u0430\u0437\u0431\u043B\u043E\u043A\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u044D\u0442\u0443 \u0444\u0443\u043D\u043A\u0446\u0438\u044E \u0438\u043B\u0438 \u043F\u0440\u043E\u0441\u0442\u043E \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0430\u0442\u044C \u043D\u0430\u0441, \u0432\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u0438\u0437\u043C\u0435\u043D\u0438\u0442\u044C \u0441\u0432\u043E\u0439 \u043F\u043B\u0430\u043D Cozy.",
|
|
211
|
+
action: "\u041F\u043E\u0441\u043C\u043E\u0442\u0440\u0435\u0442\u044C \u043D\u0430\u0448\u0438 \u043F\u043B\u0430\u043D\u044B"
|
|
212
|
+
},
|
|
213
|
+
"public": {
|
|
214
|
+
title: "\u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F",
|
|
215
|
+
content: "\u0412\u044B \u043D\u0435 \u043C\u043E\u0436\u0435\u0442\u0435 \u0440\u0435\u0434\u0430\u043A\u0442\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u044D\u0442\u043E\u0442 \u0444\u0430\u0439\u043B \u043E\u043D\u043B\u0430\u0439\u043D. \u041F\u043E\u043F\u0440\u043E\u0441\u0438\u0442\u0435 \u0432\u043B\u0430\u0434\u0435\u043B\u044C\u0446\u0430 \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u0430 \u043E\u0431\u043D\u043E\u0432\u0438\u0442\u044C \u043F\u043E\u0434\u043F\u0438\u0441\u043A\u0443 Cozy.",
|
|
216
|
+
action: "\u041F\u043E\u043D\u044F\u0442\u043D\u043E"
|
|
217
|
+
},
|
|
218
|
+
"default": {
|
|
219
|
+
title: "\u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F",
|
|
220
|
+
content: "\u0412\u0430\u0448 \u0442\u0435\u043A\u0443\u0449\u0438\u0439 \u043F\u043B\u0430\u043D \u043D\u0435 \u043F\u043E\u0437\u0432\u043E\u043B\u044F\u0435\u0442 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u044D\u0442\u0443 \u0444\u0443\u043D\u043A\u0446\u0438\u044E.",
|
|
221
|
+
action: "\u041F\u043E\u043D\u044F\u0442\u043D\u043E"
|
|
222
|
+
}
|
|
223
|
+
},
|
|
224
|
+
passwordSharingPaywall: {
|
|
225
|
+
premium: {
|
|
226
|
+
title: "\u041E\u0431\u043D\u043E\u0432\u0438\u0442\u0435 \u0432\u0430\u0448 \u043F\u043B\u0430\u043D",
|
|
227
|
+
content: "\u0412\u0430\u0448 \u043F\u043B\u0430\u043D \u043D\u0435 \u043F\u043E\u0437\u0432\u043E\u043B\u044F\u0435\u0442 **\u0434\u0435\u043B\u0438\u0442\u044C\u0441\u044F \u043F\u0430\u0440\u043E\u043B\u044F\u043C\u0438**.\n\n\u0427\u0442\u043E\u0431\u044B \u0440\u0430\u0437\u0431\u043B\u043E\u043A\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u044D\u0442\u0443 \u0444\u0443\u043D\u043A\u0446\u0438\u044E \u0438\u043B\u0438 \u043F\u0440\u043E\u0441\u0442\u043E \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0430\u0442\u044C \u043D\u0430\u0441, \u0432\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u0438\u0437\u043C\u0435\u043D\u0438\u0442\u044C \u0441\u0432\u043E\u0439 \u043F\u043B\u0430\u043D Cozy.",
|
|
228
|
+
action: "\u041F\u043E\u0441\u043C\u043E\u0442\u0440\u0435\u0442\u044C \u043D\u0430\u0448\u0438 \u043F\u043B\u0430\u043D\u044B"
|
|
229
|
+
},
|
|
230
|
+
"default": {
|
|
231
|
+
title: "\u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F",
|
|
232
|
+
content: "\u0412\u0430\u0448 \u0442\u0435\u043A\u0443\u0449\u0438\u0439 \u043F\u043B\u0430\u043D \u043D\u0435 \u043F\u043E\u0437\u0432\u043E\u043B\u044F\u0435\u0442 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u044D\u0442\u0443 \u0444\u0443\u043D\u043A\u0446\u0438\u044E.",
|
|
233
|
+
action: "\u041F\u043E\u043D\u044F\u0442\u043D\u043E"
|
|
234
|
+
}
|
|
235
|
+
},
|
|
236
|
+
maxAccountsByKonnectorPaywall: {
|
|
237
|
+
premium: {
|
|
238
|
+
title: "\u041E\u0431\u043D\u043E\u0432\u0438\u0442\u0435 \u0432\u0430\u0448 \u043F\u043B\u0430\u043D",
|
|
239
|
+
content: "\u0412\u0430\u0448 \u043F\u043B\u0430\u043D \u043F\u043E\u0437\u0432\u043E\u043B\u044F\u0435\u0442 \u043F\u043E\u0434\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u0434\u043E **%{smart_count} \u0430\u043A\u043A\u0430\u0443\u043D\u0442\u0430 %{konnectorName}** \u0432 \u0432\u0430\u0448\u0435\u043C Cozy.\n\n\u0427\u0442\u043E\u0431\u044B \u0440\u0430\u0437\u0431\u043B\u043E\u043A\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u044D\u0442\u0443 \u0444\u0443\u043D\u043A\u0446\u0438\u044E \u0438\u043B\u0438 \u043F\u0440\u043E\u0441\u0442\u043E \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0430\u0442\u044C \u043D\u0430\u0441, \u0432\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u0438\u0437\u043C\u0435\u043D\u0438\u0442\u044C \u0441\u0432\u043E\u0439 \u043F\u043B\u0430\u043D Cozy. |||| \u0412\u0430\u0448 \u043F\u043B\u0430\u043D \u043F\u043E\u0437\u0432\u043E\u043B\u044F\u0435\u0442 \u043F\u043E\u0434\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u0434\u043E **%{smart_count} \u0430\u043A\u043A\u0430\u0443\u043D\u0442\u043E\u0432 %{konnectorName}** \u0432 \u0432\u0430\u0448\u0435\u043C Cozy.\n\n\u0427\u0442\u043E\u0431\u044B \u0440\u0430\u0437\u0431\u043B\u043E\u043A\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u044D\u0442\u0443 \u0444\u0443\u043D\u043A\u0446\u0438\u044E \u0438\u043B\u0438 \u043F\u0440\u043E\u0441\u0442\u043E \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0430\u0442\u044C \u043D\u0430\u0441, \u0432\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u0438\u0437\u043C\u0435\u043D\u0438\u0442\u044C \u0441\u0432\u043E\u0439 \u043F\u043B\u0430\u043D Cozy.",
|
|
240
|
+
action: "\u041F\u043E\u0441\u043C\u043E\u0442\u0440\u0435\u0442\u044C \u043D\u0430\u0448\u0438 \u043F\u043B\u0430\u043D\u044B"
|
|
241
|
+
},
|
|
242
|
+
"default": {
|
|
243
|
+
title: "\u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F",
|
|
244
|
+
content: "\u0412\u0430\u0448 \u0442\u0435\u043A\u0443\u0449\u0438\u0439 \u043F\u043B\u0430\u043D \u043D\u0435 \u043F\u043E\u0437\u0432\u043E\u043B\u044F\u0435\u0442 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u044D\u0442\u0443 \u0444\u0443\u043D\u043A\u0446\u0438\u044E.",
|
|
245
|
+
action: "\u041F\u043E\u043D\u044F\u0442\u043D\u043E"
|
|
246
|
+
}
|
|
247
|
+
},
|
|
248
|
+
maxAccountsPaywall: {
|
|
249
|
+
premium: {
|
|
250
|
+
title: "\u041E\u0431\u043D\u043E\u0432\u0438\u0442\u0435 \u0432\u0430\u0448 \u043F\u043B\u0430\u043D",
|
|
251
|
+
content: "\u0412\u0430\u0448 \u043F\u043B\u0430\u043D \u043F\u043E\u0437\u0432\u043E\u043B\u044F\u0435\u0442 \u043F\u043E\u0434\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u0434\u043E **%{smart_count} \u0430\u043A\u043A\u0430\u0443\u043D\u0442\u0430** \u0432 \u0432\u0430\u0448\u0435\u043C Cozy.\n\n\u0427\u0442\u043E\u0431\u044B \u0440\u0430\u0437\u0431\u043B\u043E\u043A\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u044D\u0442\u0443 \u0444\u0443\u043D\u043A\u0446\u0438\u044E \u0438\u043B\u0438 \u043F\u0440\u043E\u0441\u0442\u043E \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0430\u0442\u044C \u043D\u0430\u0441, \u0432\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u0438\u0437\u043C\u0435\u043D\u0438\u0442\u044C \u0441\u0432\u043E\u0439 \u043F\u043B\u0430\u043D Cozy. |||| \u0412\u0430\u0448 \u043F\u043B\u0430\u043D \u043F\u043E\u0437\u0432\u043E\u043B\u044F\u0435\u0442 \u043F\u043E\u0434\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u0434\u043E **%{smart_count} \u0430\u043A\u043A\u0430\u0443\u043D\u0442\u043E\u0432** \u0432 \u0432\u0430\u0448\u0435\u043C Cozy.\n\n\u0427\u0442\u043E\u0431\u044B \u0440\u0430\u0437\u0431\u043B\u043E\u043A\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u044D\u0442\u0443 \u0444\u0443\u043D\u043A\u0446\u0438\u044E \u0438\u043B\u0438 \u043F\u0440\u043E\u0441\u0442\u043E \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0430\u0442\u044C \u043D\u0430\u0441, \u0432\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u0438\u0437\u043C\u0435\u043D\u0438\u0442\u044C \u0441\u0432\u043E\u0439 \u043F\u043B\u0430\u043D Cozy.",
|
|
252
|
+
action: "\u041F\u043E\u0441\u043C\u043E\u0442\u0440\u0435\u0442\u044C \u043D\u0430\u0448\u0438 \u043F\u043B\u0430\u043D\u044B"
|
|
253
|
+
},
|
|
254
|
+
"default": {
|
|
255
|
+
title: "\u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F",
|
|
256
|
+
content: "\u0412\u0430\u0448 \u0442\u0435\u043A\u0443\u0449\u0438\u0439 \u043F\u043B\u0430\u043D \u043D\u0435 \u043F\u043E\u0437\u0432\u043E\u043B\u044F\u0435\u0442 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u044D\u0442\u0443 \u0444\u0443\u043D\u043A\u0446\u0438\u044E.",
|
|
257
|
+
action: "\u041F\u043E\u043D\u044F\u0442\u043D\u043E"
|
|
258
|
+
}
|
|
259
|
+
},
|
|
260
|
+
maxPapersPaywall: {
|
|
261
|
+
premium: {
|
|
262
|
+
title: "\u041E\u0431\u043D\u043E\u0432\u0438\u0442\u0435 \u0432\u0430\u0448 \u043F\u043B\u0430\u043D",
|
|
263
|
+
content: "\u0412\u0430\u0448 \u043F\u043B\u0430\u043D \u043F\u043E\u0437\u0432\u043E\u043B\u044F\u0435\u0442 \u0432\u0440\u0443\u0447\u043D\u0443\u044E \u0434\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u0434\u043E **%{smart_count} \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u0430**.\n\n\u0427\u0442\u043E\u0431\u044B \u0440\u0430\u0437\u0431\u043B\u043E\u043A\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u044D\u0442\u0443 \u0444\u0443\u043D\u043A\u0446\u0438\u044E \u0438\u043B\u0438 \u043F\u0440\u043E\u0441\u0442\u043E \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0430\u0442\u044C \u043D\u0430\u0441, \u0432\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u0438\u0437\u043C\u0435\u043D\u0438\u0442\u044C \u043F\u043B\u0430\u043D \u0441\u0432\u043E\u0435\u0433\u043E Cozy. |||| \u0412\u0430\u0448 \u043F\u043B\u0430\u043D \u043F\u043E\u0437\u0432\u043E\u043B\u044F\u0435\u0442 \u0432\u0440\u0443\u0447\u043D\u0443\u044E \u0434\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u0434\u043E **%{smart_count} \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u043E\u0432**.\n\n\u0427\u0442\u043E\u0431\u044B \u0440\u0430\u0437\u0431\u043B\u043E\u043A\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u044D\u0442\u0443 \u0444\u0443\u043D\u043A\u0446\u0438\u044E \u0438\u043B\u0438 \u043F\u0440\u043E\u0441\u0442\u043E \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0430\u0442\u044C \u043D\u0430\u0441, \u0432\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u0438\u0437\u043C\u0435\u043D\u0438\u0442\u044C \u043F\u043B\u0430\u043D \u0441\u0432\u043E\u0435\u0433\u043E Cozy.",
|
|
264
|
+
action: "\u041F\u043E\u0441\u043C\u043E\u0442\u0440\u0435\u0442\u044C \u043D\u0430\u0448\u0438 \u043F\u043B\u0430\u043D\u044B"
|
|
265
|
+
},
|
|
266
|
+
"default": {
|
|
267
|
+
title: "\u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F",
|
|
268
|
+
content: "\u0412\u0430\u0448 \u0442\u0435\u043A\u0443\u0449\u0438\u0439 \u043F\u043B\u0430\u043D \u043D\u0435 \u043F\u043E\u0437\u0432\u043E\u043B\u044F\u0435\u0442 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u044D\u0442\u0443 \u0444\u0443\u043D\u043A\u0446\u0438\u044E.",
|
|
269
|
+
action: "\u041F\u043E\u043D\u044F\u0442\u043D\u043E"
|
|
270
|
+
}
|
|
271
|
+
},
|
|
272
|
+
quotaPaywall: {
|
|
273
|
+
premium: {
|
|
274
|
+
title: "\u041E\u0431\u043D\u043E\u0432\u0438\u0442\u0435 \u0432\u0430\u0448 \u043F\u043B\u0430\u043D",
|
|
275
|
+
content: "\u0414\u0438\u0441\u043A\u043E\u0432\u043E\u0435 \u0445\u0440\u0430\u043D\u0438\u043B\u0438\u0449\u0435 \u0437\u0430\u043F\u043E\u043B\u043D\u0435\u043D\u043E.\n\n\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0443\u0434\u0430\u043B\u0438\u0442\u0435 \u0444\u0430\u0439\u043B\u044B, \u043E\u0447\u0438\u0441\u0442\u0438\u0442\u0435 \u043A\u043E\u0440\u0437\u0438\u043D\u0443 \u0438\u043B\u0438 \u043E\u0431\u043D\u043E\u0432\u0438\u0442\u0435 \u043F\u043B\u0430\u043D \u043F\u0435\u0440\u0435\u0434 \u0437\u0430\u0433\u0440\u0443\u0437\u043A\u043E\u0439 \u0444\u0430\u0439\u043B\u043E\u0432.",
|
|
276
|
+
action: "\u041F\u043E\u0441\u043C\u043E\u0442\u0440\u0435\u0442\u044C \u043D\u0430\u0448\u0438 \u043F\u043B\u0430\u043D\u044B"
|
|
277
|
+
},
|
|
278
|
+
"default": {
|
|
279
|
+
title: "\u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F",
|
|
280
|
+
content: "\u0414\u0438\u0441\u043A\u043E\u0432\u043E\u0435 \u0445\u0440\u0430\u043D\u0438\u043B\u0438\u0449\u0435 \u0437\u0430\u043F\u043E\u043B\u043D\u0435\u043D\u043E.\n\n\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0443\u0434\u0430\u043B\u0438\u0442\u0435 \u0444\u0430\u0439\u043B\u044B, \u043E\u0447\u0438\u0441\u0442\u0438\u0442\u0435 \u043A\u043E\u0440\u0437\u0438\u043D\u0443 \u043F\u0435\u0440\u0435\u0434 \u0437\u0430\u0433\u0440\u0443\u0437\u043A\u043E\u0439 \u0444\u0430\u0439\u043B\u043E\u0432.",
|
|
281
|
+
action: "\u041F\u043E\u043D\u044F\u0442\u043D\u043E"
|
|
282
|
+
}
|
|
283
|
+
},
|
|
284
|
+
maxDaysToCapturePaywall: {
|
|
285
|
+
premium: {
|
|
286
|
+
title: "\u041E\u0431\u043D\u043E\u0432\u0438\u0442\u0435 \u0432\u0430\u0448 \u043F\u043B\u0430\u043D",
|
|
287
|
+
content: "\u0412\u0430\u0448 \u043F\u043B\u0430\u043D \u043F\u043E\u0437\u0432\u043E\u043B\u044F\u0435\u0442 \u0437\u0430\u043F\u0438\u0441\u044B\u0432\u0430\u0442\u044C \u0442\u043E\u043B\u044C\u043A\u043E **%{smart_count} \u0434\u0435\u043D\u044C \u043F\u043E\u0435\u0437\u0434\u043E\u043A**.\n\n\u0427\u0442\u043E\u0431\u044B \u0440\u0430\u0437\u0431\u043B\u043E\u043A\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u044D\u0442\u0443 \u0444\u0443\u043D\u043A\u0446\u0438\u044E \u0438\u043B\u0438 \u043F\u0440\u043E\u0441\u0442\u043E \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0430\u0442\u044C \u043D\u0430\u0441, \u0432\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u0438\u0437\u043C\u0435\u043D\u0438\u0442\u044C \u0441\u0432\u043E\u0439 \u043F\u043B\u0430\u043D Cozy. |||| \u0412\u0430\u0448 \u043F\u043B\u0430\u043D \u043F\u043E\u0437\u0432\u043E\u043B\u044F\u0435\u0442 \u0437\u0430\u043F\u0438\u0441\u044B\u0432\u0430\u0442\u044C \u0442\u043E\u043B\u044C\u043A\u043E **%{smart_count} \u0434\u043D\u0435\u0439 \u043F\u043E\u0435\u0437\u0434\u043E\u043A**.\n\n\u0427\u0442\u043E\u0431\u044B \u0440\u0430\u0437\u0431\u043B\u043E\u043A\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u044D\u0442\u0443 \u0444\u0443\u043D\u043A\u0446\u0438\u044E \u0438\u043B\u0438 \u043F\u0440\u043E\u0441\u0442\u043E \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0430\u0442\u044C \u043D\u0430\u0441, \u0432\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u0438\u0437\u043C\u0435\u043D\u0438\u0442\u044C \u0441\u0432\u043E\u0439 \u043F\u043B\u0430\u043D Cozy.",
|
|
288
|
+
action: "\u041F\u043E\u0441\u043C\u043E\u0442\u0440\u0435\u0442\u044C \u043D\u0430\u0448\u0438 \u043F\u043B\u0430\u043D\u044B"
|
|
289
|
+
},
|
|
290
|
+
"default": {
|
|
291
|
+
title: "\u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F",
|
|
292
|
+
content: "\u0412\u0430\u0448 \u0442\u0435\u043A\u0443\u0449\u0438\u0439 \u043F\u043B\u0430\u043D \u043D\u0435 \u043F\u043E\u0437\u0432\u043E\u043B\u044F\u0435\u0442 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u044D\u0442\u0443 \u0444\u0443\u043D\u043A\u0446\u0438\u044E.",
|
|
293
|
+
action: "\u041F\u043E\u043D\u044F\u0442\u043D\u043E"
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
};
|
|
297
|
+
var vi = {
|
|
298
|
+
action: {
|
|
299
|
+
loading: "\u0110ang t\u1EA3i...",
|
|
300
|
+
withoutIAP: "T\xF4i hi\u1EC3u"
|
|
301
|
+
},
|
|
302
|
+
onlyOfficePaywall: {
|
|
303
|
+
premium: {
|
|
304
|
+
title: "N\xE2ng c\u1EA5p g\xF3i c\u1EE7a b\u1EA1n",
|
|
305
|
+
content: "G\xF3i c\u1EE7a b\u1EA1n kh\xF4ng cho ph\xE9p **ch\u1EC9nh s\u1EEDa t\xE0i li\u1EC7u tr\u1EF1c tuy\u1EBFn**.\n\n\u0110\u1EC3 m\u1EDF kh\xF3a t\xEDnh n\u0103ng n\xE0y, ho\u1EB7c \u0111\u01A1n gi\u1EA3n l\xE0 h\u1ED7 tr\u1EE3 ch\xFAng t\xF4i, b\u1EA1n c\xF3 th\u1EC3 thay \u0111\u1ED5i g\xF3i Cozy c\u1EE7a m\xECnh.",
|
|
306
|
+
action: "Xem c\xE1c g\xF3i c\u1EE7a ch\xFAng t\xF4i"
|
|
307
|
+
},
|
|
308
|
+
"public": {
|
|
309
|
+
title: "Th\xF4ng tin",
|
|
310
|
+
content: "B\u1EA1n kh\xF4ng th\u1EC3 ch\u1EC9nh s\u1EEDa t\u1EADp tin n\xE0y tr\u1EF1c tuy\u1EBFn. Vui l\xF2ng y\xEAu c\u1EA7u ch\u1EE7 s\u1EDF h\u1EEFu t\xE0i li\u1EC7u c\u1EADp nh\u1EADt \u0111\u0103ng k\xFD Cozy c\u1EE7a h\u1ECD.",
|
|
311
|
+
action: "T\xF4i hi\u1EC3u"
|
|
312
|
+
},
|
|
313
|
+
"default": {
|
|
314
|
+
title: "Th\xF4ng tin",
|
|
315
|
+
content: "G\xF3i hi\u1EC7n t\u1EA1i c\u1EE7a b\u1EA1n kh\xF4ng cho ph\xE9p b\u1EA1n t\u1EADn d\u1EE5ng t\xEDnh n\u0103ng n\xE0y.",
|
|
316
|
+
action: "T\xF4i hi\u1EC3u"
|
|
317
|
+
}
|
|
318
|
+
},
|
|
319
|
+
passwordSharingPaywall: {
|
|
320
|
+
premium: {
|
|
321
|
+
title: "N\xE2ng c\u1EA5p g\xF3i c\u1EE7a b\u1EA1n",
|
|
322
|
+
content: "G\xF3i c\u1EE7a b\u1EA1n kh\xF4ng cho ph\xE9p **chia s\u1EBB m\u1EADt kh\u1EA9u**.\n\n\u0110\u1EC3 m\u1EDF kh\xF3a t\xEDnh n\u0103ng n\xE0y, ho\u1EB7c \u0111\u01A1n gi\u1EA3n l\xE0 h\u1ED7 tr\u1EE3 ch\xFAng t\xF4i, b\u1EA1n c\xF3 th\u1EC3 thay \u0111\u1ED5i g\xF3i Cozy c\u1EE7a m\xECnh.",
|
|
323
|
+
action: "Xem c\xE1c g\xF3i c\u1EE7a ch\xFAng t\xF4i"
|
|
324
|
+
},
|
|
325
|
+
"default": {
|
|
326
|
+
title: "Th\xF4ng tin",
|
|
327
|
+
content: "G\xF3i hi\u1EC7n t\u1EA1i c\u1EE7a b\u1EA1n kh\xF4ng cho ph\xE9p b\u1EA1n t\u1EADn d\u1EE5ng t\xEDnh n\u0103ng n\xE0y.",
|
|
328
|
+
action: "T\xF4i hi\u1EC3u"
|
|
329
|
+
}
|
|
330
|
+
},
|
|
331
|
+
maxAccountsByKonnectorPaywall: {
|
|
332
|
+
premium: {
|
|
333
|
+
title: "N\xE2ng c\u1EA5p g\xF3i c\u1EE7a b\u1EA1n",
|
|
334
|
+
content: "G\xF3i c\u1EE7a b\u1EA1n cho ph\xE9p b\u1EA1n k\u1EBFt n\u1ED1i t\u1ED1i \u0111a **%{smart_count} t\xE0i kho\u1EA3n %{konnectorName}** trong Cozy c\u1EE7a b\u1EA1n.\n\n\u0110\u1EC3 m\u1EDF kh\xF3a t\xEDnh n\u0103ng n\xE0y, ho\u1EB7c \u0111\u01A1n gi\u1EA3n l\xE0 h\u1ED7 tr\u1EE3 ch\xFAng t\xF4i, b\u1EA1n c\xF3 th\u1EC3 thay \u0111\u1ED5i g\xF3i Cozy c\u1EE7a m\xECnh. |||| G\xF3i c\u1EE7a b\u1EA1n cho ph\xE9p b\u1EA1n k\u1EBFt n\u1ED1i t\u1ED1i \u0111a **%{smart_count} t\xE0i kho\u1EA3n %{konnectorName}** trong Cozy c\u1EE7a b\u1EA1n.\n\n\u0110\u1EC3 m\u1EDF kh\xF3a t\xEDnh n\u0103ng n\xE0y, ho\u1EB7c \u0111\u01A1n gi\u1EA3n l\xE0 h\u1ED7 tr\u1EE3 ch\xFAng t\xF4i, b\u1EA1n c\xF3 th\u1EC3 thay \u0111\u1ED5i g\xF3i Cozy c\u1EE7a m\xECnh.",
|
|
335
|
+
action: "Xem c\xE1c g\xF3i c\u1EE7a ch\xFAng t\xF4i"
|
|
336
|
+
},
|
|
337
|
+
"default": {
|
|
338
|
+
title: "Th\xF4ng tin",
|
|
339
|
+
content: "G\xF3i hi\u1EC7n t\u1EA1i c\u1EE7a b\u1EA1n kh\xF4ng cho ph\xE9p b\u1EA1n t\u1EADn d\u1EE5ng t\xEDnh n\u0103ng n\xE0y.",
|
|
340
|
+
action: "T\xF4i hi\u1EC3u"
|
|
341
|
+
}
|
|
342
|
+
},
|
|
343
|
+
maxAccountsPaywall: {
|
|
344
|
+
premium: {
|
|
345
|
+
title: "N\xE2ng c\u1EA5p g\xF3i c\u1EE7a b\u1EA1n",
|
|
346
|
+
content: "G\xF3i c\u1EE7a b\u1EA1n cho ph\xE9p b\u1EA1n k\u1EBFt n\u1ED1i t\u1ED1i \u0111a **%{smart_count} t\xE0i kho\u1EA3n** trong Cozy c\u1EE7a b\u1EA1n.\n\n\u0110\u1EC3 m\u1EDF kh\xF3a t\xEDnh n\u0103ng n\xE0y, ho\u1EB7c \u0111\u01A1n gi\u1EA3n l\xE0 h\u1ED7 tr\u1EE3 ch\xFAng t\xF4i, b\u1EA1n c\xF3 th\u1EC3 thay \u0111\u1ED5i g\xF3i Cozy c\u1EE7a m\xECnh. |||| G\xF3i c\u1EE7a b\u1EA1n cho ph\xE9p b\u1EA1n k\u1EBFt n\u1ED1i t\u1ED1i \u0111a **%{smart_count} t\xE0i kho\u1EA3n** trong Cozy c\u1EE7a b\u1EA1n.\n\n\u0110\u1EC3 m\u1EDF kh\xF3a t\xEDnh n\u0103ng n\xE0y, ho\u1EB7c \u0111\u01A1n gi\u1EA3n l\xE0 h\u1ED7 tr\u1EE3 ch\xFAng t\xF4i, b\u1EA1n c\xF3 th\u1EC3 thay \u0111\u1ED5i g\xF3i Cozy c\u1EE7a m\xECnh.",
|
|
347
|
+
action: "Xem c\xE1c g\xF3i c\u1EE7a ch\xFAng t\xF4i"
|
|
348
|
+
},
|
|
349
|
+
"default": {
|
|
350
|
+
title: "Th\xF4ng tin",
|
|
351
|
+
content: "G\xF3i hi\u1EC7n t\u1EA1i c\u1EE7a b\u1EA1n kh\xF4ng cho ph\xE9p b\u1EA1n t\u1EADn d\u1EE5ng t\xEDnh n\u0103ng n\xE0y.",
|
|
352
|
+
action: "T\xF4i hi\u1EC3u"
|
|
353
|
+
}
|
|
354
|
+
},
|
|
355
|
+
maxPapersPaywall: {
|
|
356
|
+
premium: {
|
|
357
|
+
title: "N\xE2ng c\u1EA5p g\xF3i c\u1EE7a b\u1EA1n",
|
|
358
|
+
content: "G\xF3i c\u1EE7a b\u1EA1n cho ph\xE9p b\u1EA1n th\xEAm th\u1EE7 c\xF4ng t\u1ED1i \u0111a **%{smart_count} gi\u1EA5y t\u1EDD**.\n\n\u0110\u1EC3 m\u1EDF kh\xF3a t\xEDnh n\u0103ng n\xE0y, ho\u1EB7c \u0111\u01A1n gi\u1EA3n l\xE0 h\u1ED7 tr\u1EE3 ch\xFAng t\xF4i, b\u1EA1n c\xF3 th\u1EC3 s\u1EEDa \u0111\u1ED5i g\xF3i Cozy c\u1EE7a m\xECnh. |||| G\xF3i c\u1EE7a b\u1EA1n cho ph\xE9p b\u1EA1n th\xEAm th\u1EE7 c\xF4ng t\u1ED1i \u0111a **%{smart_count} gi\u1EA5y t\u1EDD**.\n\n\u0110\u1EC3 m\u1EDF kh\xF3a t\xEDnh n\u0103ng n\xE0y, ho\u1EB7c \u0111\u01A1n gi\u1EA3n l\xE0 h\u1ED7 tr\u1EE3 ch\xFAng t\xF4i, b\u1EA1n c\xF3 th\u1EC3 s\u1EEDa \u0111\u1ED5i g\xF3i Cozy c\u1EE7a m\xECnh.",
|
|
359
|
+
action: "Xem c\xE1c g\xF3i c\u1EE7a ch\xFAng t\xF4i"
|
|
360
|
+
},
|
|
361
|
+
"default": {
|
|
362
|
+
title: "Th\xF4ng tin",
|
|
363
|
+
content: "G\xF3i hi\u1EC7n t\u1EA1i c\u1EE7a b\u1EA1n kh\xF4ng cho ph\xE9p b\u1EA1n t\u1EADn d\u1EE5ng t\xEDnh n\u0103ng n\xE0y.",
|
|
364
|
+
action: "T\xF4i hi\u1EC3u"
|
|
365
|
+
}
|
|
366
|
+
},
|
|
367
|
+
quotaPaywall: {
|
|
368
|
+
premium: {
|
|
369
|
+
title: "N\xE2ng c\u1EA5p g\xF3i c\u1EE7a b\u1EA1n",
|
|
370
|
+
content: "Dung l\u01B0\u1EE3ng \u0111\u0129a c\u1EE7a b\u1EA1n \u0111\xE3 \u0111\u1EA7y.\n\nVui l\xF2ng x\xF3a c\xE1c t\u1EADp tin, l\xE0m tr\u1ED1ng th\xF9ng r\xE1c ho\u1EB7c n\xE2ng c\u1EA5p g\xF3i tr\u01B0\u1EDBc khi t\u1EA3i l\xEAn t\u1EADp tin.",
|
|
371
|
+
action: "Xem c\xE1c g\xF3i c\u1EE7a ch\xFAng t\xF4i"
|
|
372
|
+
},
|
|
373
|
+
"default": {
|
|
374
|
+
title: "Th\xF4ng tin",
|
|
375
|
+
content: "Dung l\u01B0\u1EE3ng \u0111\u0129a c\u1EE7a b\u1EA1n \u0111\xE3 \u0111\u1EA7y.\n\nVui l\xF2ng x\xF3a c\xE1c t\u1EADp tin, l\xE0m tr\u1ED1ng th\xF9ng r\xE1c tr\u01B0\u1EDBc khi t\u1EA3i l\xEAn t\u1EADp tin.",
|
|
376
|
+
action: "T\xF4i hi\u1EC3u"
|
|
377
|
+
}
|
|
378
|
+
},
|
|
379
|
+
maxDaysToCapturePaywall: {
|
|
380
|
+
premium: {
|
|
381
|
+
title: "N\xE2ng c\u1EA5p g\xF3i c\u1EE7a b\u1EA1n",
|
|
382
|
+
content: "G\xF3i c\u1EE7a b\u1EA1n cho ph\xE9p b\u1EA1n ch\u1EC9 ghi l\u1EA1i **%{smart_count} ng\xE0y chuy\u1EBFn \u0111i**.\n\n\u0110\u1EC3 m\u1EDF kh\xF3a t\xEDnh n\u0103ng n\xE0y, ho\u1EB7c \u0111\u01A1n gi\u1EA3n l\xE0 h\u1ED7 tr\u1EE3 ch\xFAng t\xF4i, b\u1EA1n c\xF3 th\u1EC3 thay \u0111\u1ED5i g\xF3i Cozy c\u1EE7a m\xECnh. |||| G\xF3i c\u1EE7a b\u1EA1n cho ph\xE9p b\u1EA1n ch\u1EC9 ghi l\u1EA1i **%{smart_count} ng\xE0y chuy\u1EBFn \u0111i**.\n\n\u0110\u1EC3 m\u1EDF kh\xF3a t\xEDnh n\u0103ng n\xE0y, ho\u1EB7c \u0111\u01A1n gi\u1EA3n l\xE0 h\u1ED7 tr\u1EE3 ch\xFAng t\xF4i, b\u1EA1n c\xF3 th\u1EC3 thay \u0111\u1ED5i g\xF3i Cozy c\u1EE7a m\xECnh.",
|
|
383
|
+
action: "Xem c\xE1c g\xF3i c\u1EE7a ch\xFAng t\xF4i"
|
|
384
|
+
},
|
|
385
|
+
"default": {
|
|
386
|
+
title: "Th\xF4ng tin",
|
|
387
|
+
content: "G\xF3i hi\u1EC7n t\u1EA1i c\u1EE7a b\u1EA1n kh\xF4ng cho ph\xE9p b\u1EA1n t\u1EADn d\u1EE5ng t\xEDnh n\u0103ng n\xE0y.",
|
|
388
|
+
action: "T\xF4i hi\u1EC3u"
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
};
|
|
392
|
+
var locales = {
|
|
393
|
+
en: en,
|
|
394
|
+
fr: fr,
|
|
395
|
+
ru: ru,
|
|
396
|
+
vi: vi
|
|
397
|
+
};
|
|
398
|
+
|
|
399
|
+
var _default = (0, _withOnlyLocales.default)(locales);
|
|
400
|
+
|
|
401
|
+
exports.default = _default;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.getThemesList = void 0;
|
|
7
|
+
|
|
8
|
+
var _documentTypeData = require("cozy-client/dist/models/document/documentTypeData");
|
|
9
|
+
|
|
10
|
+
var getThemesList = function getThemesList(noHealth) {
|
|
11
|
+
return noHealth ? _documentTypeData.themesList.filter(function (theme) {
|
|
12
|
+
return theme.label !== 'health';
|
|
13
|
+
}) : _documentTypeData.themesList;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
exports.getThemesList = getThemesList;
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.default = void 0;
|
|
9
|
+
|
|
10
|
+
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
|
11
|
+
|
|
12
|
+
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
13
|
+
|
|
14
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
15
|
+
|
|
16
|
+
var _Grid = _interopRequireDefault(require("cozy-ui/transpiled/react/Grid"));
|
|
17
|
+
|
|
18
|
+
var _Bank = _interopRequireDefault(require("cozy-ui/transpiled/react/Icons/Bank"));
|
|
19
|
+
|
|
20
|
+
var _Bill = _interopRequireDefault(require("cozy-ui/transpiled/react/Icons/Bill"));
|
|
21
|
+
|
|
22
|
+
var _Car = _interopRequireDefault(require("cozy-ui/transpiled/react/Icons/Car"));
|
|
23
|
+
|
|
24
|
+
var _Chess = _interopRequireDefault(require("cozy-ui/transpiled/react/Icons/Chess"));
|
|
25
|
+
|
|
26
|
+
var _Dots = _interopRequireDefault(require("cozy-ui/transpiled/react/Icons/Dots"));
|
|
27
|
+
|
|
28
|
+
var _Heart = _interopRequireDefault(require("cozy-ui/transpiled/react/Icons/Heart"));
|
|
29
|
+
|
|
30
|
+
var _Home = _interopRequireDefault(require("cozy-ui/transpiled/react/Icons/Home"));
|
|
31
|
+
|
|
32
|
+
var _People = _interopRequireDefault(require("cozy-ui/transpiled/react/Icons/People"));
|
|
33
|
+
|
|
34
|
+
var _Team = _interopRequireDefault(require("cozy-ui/transpiled/react/Icons/Team"));
|
|
35
|
+
|
|
36
|
+
var _Work = _interopRequireDefault(require("cozy-ui/transpiled/react/Icons/Work"));
|
|
37
|
+
|
|
38
|
+
var _I18n = require("cozy-ui/transpiled/react/providers/I18n");
|
|
39
|
+
|
|
40
|
+
var _helpers = require("./helpers");
|
|
41
|
+
|
|
42
|
+
var _QualificationItem = _interopRequireDefault(require("../QualificationItem"));
|
|
43
|
+
|
|
44
|
+
var _withLocales = _interopRequireDefault(require("./locales/withLocales"));
|
|
45
|
+
|
|
46
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
47
|
+
|
|
48
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
49
|
+
|
|
50
|
+
var IconByName = {
|
|
51
|
+
people: _People.default,
|
|
52
|
+
team: _Team.default,
|
|
53
|
+
work: _Work.default,
|
|
54
|
+
heart: _Heart.default,
|
|
55
|
+
home: _Home.default,
|
|
56
|
+
car: _Car.default,
|
|
57
|
+
chess: _Chess.default,
|
|
58
|
+
bank: _Bank.default,
|
|
59
|
+
bill: _Bill.default,
|
|
60
|
+
dots: _Dots.default
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
var QualificationGrid = function QualificationGrid(_ref) {
|
|
64
|
+
var noUndefined = _ref.noUndefined,
|
|
65
|
+
noOthers = _ref.noOthers,
|
|
66
|
+
noHealth = _ref.noHealth,
|
|
67
|
+
onClick = _ref.onClick;
|
|
68
|
+
var themesList = (0, _helpers.getThemesList)(noHealth);
|
|
69
|
+
|
|
70
|
+
var _useI18n = (0, _I18n.useI18n)(),
|
|
71
|
+
t = _useI18n.t;
|
|
72
|
+
|
|
73
|
+
var _useState = (0, _react.useState)(),
|
|
74
|
+
_useState2 = (0, _slicedToArray2.default)(_useState, 2),
|
|
75
|
+
selectedQualification = _useState2[0],
|
|
76
|
+
setSelectedQualification = _useState2[1];
|
|
77
|
+
|
|
78
|
+
var handleClick = function handleClick(theme) {
|
|
79
|
+
onClick(theme === null || theme === void 0 ? void 0 : theme.label);
|
|
80
|
+
setSelectedQualification(theme === null || theme === void 0 ? void 0 : theme.label);
|
|
81
|
+
};
|
|
82
|
+
|
|
83
|
+
return /*#__PURE__*/_react.default.createElement(_Grid.default, {
|
|
84
|
+
container: true,
|
|
85
|
+
spacing: 1
|
|
86
|
+
}, !noUndefined && /*#__PURE__*/_react.default.createElement(_Grid.default, {
|
|
87
|
+
item: true,
|
|
88
|
+
xs: 3,
|
|
89
|
+
sm: 2
|
|
90
|
+
}, /*#__PURE__*/_react.default.createElement(_QualificationItem.default, {
|
|
91
|
+
label: t('themes.undefined'),
|
|
92
|
+
isSelected: selectedQualification === undefined,
|
|
93
|
+
onClick: function onClick() {
|
|
94
|
+
return handleClick();
|
|
95
|
+
}
|
|
96
|
+
})), themesList.map(function (theme, index) {
|
|
97
|
+
return /*#__PURE__*/_react.default.createElement(_react.Fragment, {
|
|
98
|
+
key: index
|
|
99
|
+
}, (!noOthers || theme.label !== 'others') && /*#__PURE__*/_react.default.createElement(_Grid.default, {
|
|
100
|
+
item: true,
|
|
101
|
+
xs: 3,
|
|
102
|
+
sm: 2
|
|
103
|
+
}, /*#__PURE__*/_react.default.createElement(_QualificationItem.default, {
|
|
104
|
+
label: t("themes.".concat(theme.label)),
|
|
105
|
+
icon: IconByName[theme.icon],
|
|
106
|
+
isSelected: theme.label === selectedQualification,
|
|
107
|
+
onClick: function onClick() {
|
|
108
|
+
return handleClick(theme);
|
|
109
|
+
}
|
|
110
|
+
})));
|
|
111
|
+
}));
|
|
112
|
+
};
|
|
113
|
+
|
|
114
|
+
QualificationGrid.defaultProps = {
|
|
115
|
+
noUndefined: false,
|
|
116
|
+
noOthers: false,
|
|
117
|
+
noHealth: false,
|
|
118
|
+
onClick: function onClick() {}
|
|
119
|
+
};
|
|
120
|
+
QualificationGrid.propTypes = {
|
|
121
|
+
/** Remove `undefined` theme */
|
|
122
|
+
noUndefined: _propTypes.default.bool,
|
|
123
|
+
|
|
124
|
+
/** Remove `others` theme */
|
|
125
|
+
noOthers: _propTypes.default.bool,
|
|
126
|
+
|
|
127
|
+
/** Remove `health` theme */
|
|
128
|
+
noHealth: _propTypes.default.bool,
|
|
129
|
+
|
|
130
|
+
/** Triggered when an item is clicked */
|
|
131
|
+
onClick: _propTypes.default.func
|
|
132
|
+
};
|
|
133
|
+
|
|
134
|
+
var _default = (0, _withLocales.default)(QualificationGrid);
|
|
135
|
+
|
|
136
|
+
exports.default = _default;
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.locales = exports.default = void 0;
|
|
9
|
+
|
|
10
|
+
var _withOnlyLocales = _interopRequireDefault(require("cozy-ui/transpiled/react/providers/I18n/withOnlyLocales"));
|
|
11
|
+
|
|
12
|
+
var en = {
|
|
13
|
+
themes: {
|
|
14
|
+
activity: "Activity",
|
|
15
|
+
family: "Family",
|
|
16
|
+
finance: "Finance",
|
|
17
|
+
health: "Health",
|
|
18
|
+
home: "Home",
|
|
19
|
+
identity: "Identity",
|
|
20
|
+
invoice: "Invoice",
|
|
21
|
+
others: "Others",
|
|
22
|
+
transport: "Transport",
|
|
23
|
+
undefined: "Undefined",
|
|
24
|
+
work_study: "Work"
|
|
25
|
+
}
|
|
26
|
+
};
|
|
27
|
+
var fr = {
|
|
28
|
+
themes: {
|
|
29
|
+
activity: "Loisirs",
|
|
30
|
+
family: "Famille",
|
|
31
|
+
finance: "Finances",
|
|
32
|
+
health: "Sant\xE9",
|
|
33
|
+
home: "Logement",
|
|
34
|
+
identity: "Identit\xE9",
|
|
35
|
+
invoice: "Factures",
|
|
36
|
+
others: "Autres",
|
|
37
|
+
transport: "Transport",
|
|
38
|
+
undefined: "Ind\xE9fini",
|
|
39
|
+
work_study: "Travail"
|
|
40
|
+
}
|
|
41
|
+
};
|
|
42
|
+
var ru = {
|
|
43
|
+
themes: {
|
|
44
|
+
activity: "\u0414\u0435\u044F\u0442\u0435\u043B\u044C\u043D\u043E\u0441\u0442\u044C",
|
|
45
|
+
family: "\u0421\u0435\u043C\u044C\u044F",
|
|
46
|
+
finance: "\u0424\u0438\u043D\u0430\u043D\u0441\u044B",
|
|
47
|
+
health: "\u0417\u0434\u043E\u0440\u043E\u0432\u044C\u0435",
|
|
48
|
+
home: "\u0414\u043E\u043C",
|
|
49
|
+
identity: "\u041B\u0438\u0447\u043D\u043E\u0441\u0442\u044C",
|
|
50
|
+
invoice: "\u0421\u0447\u0435\u0442",
|
|
51
|
+
others: "\u041F\u0440\u043E\u0447\u0435\u0435",
|
|
52
|
+
transport: "\u0422\u0440\u0430\u043D\u0441\u043F\u043E\u0440\u0442",
|
|
53
|
+
undefined: "\u041D\u0435 \u043E\u043F\u0440\u0435\u0434\u0435\u043B\u0435\u043D\u043E",
|
|
54
|
+
work_study: "\u0420\u0430\u0431\u043E\u0442\u0430"
|
|
55
|
+
}
|
|
56
|
+
};
|
|
57
|
+
var vi = {
|
|
58
|
+
themes: {
|
|
59
|
+
activity: "Ho\u1EA1t \u0111\u1ED9ng",
|
|
60
|
+
family: "Gia \u0111\xECnh",
|
|
61
|
+
finance: "T\xE0i ch\xEDnh",
|
|
62
|
+
health: "S\u1EE9c kh\u1ECFe",
|
|
63
|
+
home: "Nh\xE0",
|
|
64
|
+
identity: "Danh t\xEDnh",
|
|
65
|
+
invoice: "H\xF3a \u0111\u01A1n",
|
|
66
|
+
others: "Kh\xE1c",
|
|
67
|
+
transport: "Giao th\xF4ng",
|
|
68
|
+
undefined: "Ch\u01B0a x\xE1c \u0111\u1ECBnh",
|
|
69
|
+
work_study: "C\xF4ng vi\u1EC7c"
|
|
70
|
+
}
|
|
71
|
+
};
|
|
72
|
+
var locales = {
|
|
73
|
+
en: en,
|
|
74
|
+
fr: fr,
|
|
75
|
+
ru: ru,
|
|
76
|
+
vi: vi
|
|
77
|
+
};
|
|
78
|
+
exports.locales = locales;
|
|
79
|
+
|
|
80
|
+
var _default = (0, _withOnlyLocales.default)(locales);
|
|
81
|
+
|
|
82
|
+
exports.default = _default;
|