@atlaskit/smart-card 32.7.0 → 32.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/analytics.spec.yaml +63 -9
- package/dist/cjs/classNames.js +14 -82
- package/dist/cjs/extractors/action/extract-invoke-copy-link-action.js +53 -0
- package/dist/cjs/extractors/action/extract-invoke-download-action.js +57 -0
- package/dist/cjs/extractors/action/extract-invoke-preview-action.js +78 -0
- package/dist/cjs/extractors/action/extract-invoke-view-action.js +60 -0
- package/dist/cjs/extractors/action/extractDownloadActionProps.js +4 -0
- package/dist/cjs/extractors/action/extractPreviewActionProps.js +4 -0
- package/dist/cjs/extractors/action/extractViewActionProps.js +4 -0
- package/dist/cjs/extractors/common/actions/extractActions.js +1 -67
- package/dist/cjs/extractors/flexible/actions/extract-copy-link-action.js +12 -1
- package/dist/cjs/extractors/flexible/actions/extract-download-action.js +12 -1
- package/dist/cjs/extractors/flexible/actions/extract-preview-action.js +12 -1
- package/dist/cjs/extractors/flexible/actions/extract-view-action.js +3 -0
- package/dist/cjs/extractors/flexible/actions/index.js +40 -3
- package/dist/cjs/extractors/flexible/extract-state.js +19 -5
- package/dist/cjs/extractors/flexible/index.js +22 -8
- package/dist/cjs/i18n/cs.js +2 -4
- package/dist/cjs/i18n/da.js +2 -4
- package/dist/cjs/i18n/de.js +2 -4
- package/dist/cjs/i18n/en.js +2 -4
- package/dist/cjs/i18n/en_GB.js +2 -4
- package/dist/cjs/i18n/en_ZZ.js +2 -4
- package/dist/cjs/i18n/es.js +8 -10
- package/dist/cjs/i18n/fi.js +5 -7
- package/dist/cjs/i18n/fr.js +2 -4
- package/dist/cjs/i18n/hu.js +2 -4
- package/dist/cjs/i18n/it.js +2 -4
- package/dist/cjs/i18n/ja.js +8 -10
- package/dist/cjs/i18n/ko.js +2 -4
- package/dist/cjs/i18n/nb.js +2 -4
- package/dist/cjs/i18n/nl.js +2 -4
- package/dist/cjs/i18n/pl.js +2 -4
- package/dist/cjs/i18n/pt_BR.js +2 -4
- package/dist/cjs/i18n/ru.js +2 -4
- package/dist/cjs/i18n/sv.js +2 -4
- package/dist/cjs/i18n/th.js +2 -4
- package/dist/cjs/i18n/tr.js +8 -10
- package/dist/cjs/i18n/uk.js +2 -4
- package/dist/cjs/i18n/vi.js +2 -4
- package/dist/cjs/i18n/zh.js +2 -4
- package/dist/cjs/i18n/zh_TW.js +2 -4
- package/dist/cjs/state/hooks/use-invoke-client-action/index.js +56 -17
- package/dist/cjs/state/hooks-external/useSmartLinkActions.js +22 -3
- package/dist/cjs/utils/analytics/LinkAnalyticsContext.js +7 -2
- package/dist/cjs/utils/analytics/analytics.js +1 -1
- package/dist/cjs/utils/mocks.js +4 -1
- package/dist/cjs/view/BlockCard/components/Action.js +1 -58
- package/dist/cjs/view/BlockCard/index.js +29 -218
- package/dist/cjs/view/BlockCard/views/flexible/FlexibleResolvedView.js +1 -0
- package/dist/cjs/view/BlockCard/views/flexible/unresolved-view/index.js +1 -0
- package/dist/cjs/view/CardWithUrl/component.js +2 -5
- package/dist/cjs/view/EmbedModal/index.js +72 -51
- package/dist/cjs/view/FlexibleCard/components/actions/copy-link-action/index.js +65 -32
- package/dist/cjs/view/FlexibleCard/components/actions/download-action/index.js +36 -28
- package/dist/cjs/view/FlexibleCard/components/actions/preview-action/index.js +40 -32
- package/dist/cjs/view/FlexibleCard/components/elements/lozenge/lozenge-action/lozenge-action-error/index.js +13 -6
- package/dist/cjs/view/FlexibleCard/components/utils.js +4 -0
- package/dist/cjs/view/FlexibleCard/index.js +11 -1
- package/dist/cjs/view/HoverCard/components/HoverCardContent.js +1 -0
- package/dist/cjs/view/LinkUrl/index.js +1 -1
- package/dist/es2019/classNames.js +12 -10
- package/dist/es2019/extractors/action/extract-invoke-copy-link-action.js +29 -0
- package/dist/es2019/extractors/action/extract-invoke-download-action.js +31 -0
- package/dist/es2019/extractors/action/extract-invoke-preview-action.js +57 -0
- package/dist/es2019/extractors/action/extract-invoke-view-action.js +34 -0
- package/dist/es2019/extractors/action/extractDownloadActionProps.js +5 -0
- package/dist/es2019/extractors/action/extractPreviewActionProps.js +5 -0
- package/dist/es2019/extractors/action/extractViewActionProps.js +5 -0
- package/dist/es2019/extractors/common/actions/extractActions.js +1 -55
- package/dist/es2019/extractors/flexible/actions/extract-copy-link-action.js +11 -0
- package/dist/es2019/extractors/flexible/actions/extract-download-action.js +12 -0
- package/dist/es2019/extractors/flexible/actions/extract-preview-action.js +12 -0
- package/dist/es2019/extractors/flexible/actions/extract-view-action.js +4 -0
- package/dist/es2019/extractors/flexible/actions/index.js +48 -3
- package/dist/es2019/extractors/flexible/extract-state.js +17 -5
- package/dist/es2019/extractors/flexible/index.js +17 -6
- package/dist/es2019/i18n/cs.js +2 -4
- package/dist/es2019/i18n/da.js +2 -4
- package/dist/es2019/i18n/de.js +2 -4
- package/dist/es2019/i18n/en.js +2 -4
- package/dist/es2019/i18n/en_GB.js +2 -4
- package/dist/es2019/i18n/en_ZZ.js +2 -4
- package/dist/es2019/i18n/es.js +8 -10
- package/dist/es2019/i18n/fi.js +5 -7
- package/dist/es2019/i18n/fr.js +2 -4
- package/dist/es2019/i18n/hu.js +2 -4
- package/dist/es2019/i18n/it.js +2 -4
- package/dist/es2019/i18n/ja.js +8 -10
- package/dist/es2019/i18n/ko.js +2 -4
- package/dist/es2019/i18n/nb.js +2 -4
- package/dist/es2019/i18n/nl.js +2 -4
- package/dist/es2019/i18n/pl.js +2 -4
- package/dist/es2019/i18n/pt_BR.js +2 -4
- package/dist/es2019/i18n/ru.js +2 -4
- package/dist/es2019/i18n/sv.js +2 -4
- package/dist/es2019/i18n/th.js +2 -4
- package/dist/es2019/i18n/tr.js +8 -10
- package/dist/es2019/i18n/uk.js +2 -4
- package/dist/es2019/i18n/vi.js +2 -4
- package/dist/es2019/i18n/zh.js +2 -4
- package/dist/es2019/i18n/zh_TW.js +2 -4
- package/dist/es2019/state/hooks/use-invoke-client-action/index.js +91 -43
- package/dist/es2019/state/hooks-external/useSmartLinkActions.js +21 -3
- package/dist/es2019/utils/analytics/LinkAnalyticsContext.js +3 -0
- package/dist/es2019/utils/analytics/analytics.js +1 -1
- package/dist/es2019/utils/mocks.js +4 -1
- package/dist/es2019/view/BlockCard/components/Action.js +1 -48
- package/dist/es2019/view/BlockCard/index.js +27 -163
- package/dist/es2019/view/BlockCard/views/flexible/FlexibleResolvedView.js +1 -0
- package/dist/es2019/view/BlockCard/views/flexible/unresolved-view/index.js +1 -0
- package/dist/es2019/view/CardWithUrl/component.js +2 -5
- package/dist/es2019/view/EmbedModal/index.js +41 -20
- package/dist/es2019/view/FlexibleCard/components/actions/copy-link-action/index.js +31 -16
- package/dist/es2019/view/FlexibleCard/components/actions/download-action/index.js +20 -12
- package/dist/es2019/view/FlexibleCard/components/actions/preview-action/index.js +25 -17
- package/dist/es2019/view/FlexibleCard/components/elements/lozenge/lozenge-action/lozenge-action-error/index.js +14 -7
- package/dist/es2019/view/FlexibleCard/components/utils.js +4 -0
- package/dist/es2019/view/FlexibleCard/index.js +12 -1
- package/dist/es2019/view/HoverCard/components/HoverCardContent.js +1 -0
- package/dist/es2019/view/LinkUrl/index.js +1 -1
- package/dist/esm/classNames.js +12 -10
- package/dist/esm/extractors/action/extract-invoke-copy-link-action.js +46 -0
- package/dist/esm/extractors/action/extract-invoke-download-action.js +50 -0
- package/dist/esm/extractors/action/extract-invoke-preview-action.js +71 -0
- package/dist/esm/extractors/action/extract-invoke-view-action.js +53 -0
- package/dist/esm/extractors/action/extractDownloadActionProps.js +5 -0
- package/dist/esm/extractors/action/extractPreviewActionProps.js +5 -0
- package/dist/esm/extractors/action/extractViewActionProps.js +5 -0
- package/dist/esm/extractors/common/actions/extractActions.js +1 -65
- package/dist/esm/extractors/flexible/actions/extract-copy-link-action.js +11 -0
- package/dist/esm/extractors/flexible/actions/extract-download-action.js +12 -0
- package/dist/esm/extractors/flexible/actions/extract-preview-action.js +12 -0
- package/dist/esm/extractors/flexible/actions/extract-view-action.js +4 -0
- package/dist/esm/extractors/flexible/actions/index.js +42 -5
- package/dist/esm/extractors/flexible/extract-state.js +19 -5
- package/dist/esm/extractors/flexible/index.js +19 -8
- package/dist/esm/i18n/cs.js +2 -4
- package/dist/esm/i18n/da.js +2 -4
- package/dist/esm/i18n/de.js +2 -4
- package/dist/esm/i18n/en.js +2 -4
- package/dist/esm/i18n/en_GB.js +2 -4
- package/dist/esm/i18n/en_ZZ.js +2 -4
- package/dist/esm/i18n/es.js +8 -10
- package/dist/esm/i18n/fi.js +5 -7
- package/dist/esm/i18n/fr.js +2 -4
- package/dist/esm/i18n/hu.js +2 -4
- package/dist/esm/i18n/it.js +2 -4
- package/dist/esm/i18n/ja.js +8 -10
- package/dist/esm/i18n/ko.js +2 -4
- package/dist/esm/i18n/nb.js +2 -4
- package/dist/esm/i18n/nl.js +2 -4
- package/dist/esm/i18n/pl.js +2 -4
- package/dist/esm/i18n/pt_BR.js +2 -4
- package/dist/esm/i18n/ru.js +2 -4
- package/dist/esm/i18n/sv.js +2 -4
- package/dist/esm/i18n/th.js +2 -4
- package/dist/esm/i18n/tr.js +8 -10
- package/dist/esm/i18n/uk.js +2 -4
- package/dist/esm/i18n/vi.js +2 -4
- package/dist/esm/i18n/zh.js +2 -4
- package/dist/esm/i18n/zh_TW.js +2 -4
- package/dist/esm/state/hooks/use-invoke-client-action/index.js +56 -17
- package/dist/esm/state/hooks-external/useSmartLinkActions.js +22 -3
- package/dist/esm/utils/analytics/LinkAnalyticsContext.js +7 -2
- package/dist/esm/utils/analytics/analytics.js +1 -1
- package/dist/esm/utils/mocks.js +4 -1
- package/dist/esm/view/BlockCard/components/Action.js +1 -54
- package/dist/esm/view/BlockCard/index.js +29 -164
- package/dist/esm/view/BlockCard/views/flexible/FlexibleResolvedView.js +1 -0
- package/dist/esm/view/BlockCard/views/flexible/unresolved-view/index.js +1 -0
- package/dist/esm/view/CardWithUrl/component.js +2 -5
- package/dist/esm/view/EmbedModal/index.js +73 -52
- package/dist/esm/view/FlexibleCard/components/actions/copy-link-action/index.js +65 -32
- package/dist/esm/view/FlexibleCard/components/actions/download-action/index.js +36 -28
- package/dist/esm/view/FlexibleCard/components/actions/preview-action/index.js +40 -32
- package/dist/esm/view/FlexibleCard/components/elements/lozenge/lozenge-action/lozenge-action-error/index.js +13 -6
- package/dist/esm/view/FlexibleCard/components/utils.js +4 -0
- package/dist/esm/view/FlexibleCard/index.js +11 -1
- package/dist/esm/view/HoverCard/components/HoverCardContent.js +1 -0
- package/dist/esm/view/LinkUrl/index.js +1 -1
- package/dist/types/classNames.d.ts +12 -10
- package/dist/types/common/analytics/generated/analytics.types.d.ts +63 -2
- package/dist/types/common/analytics/types.d.ts +2 -0
- package/dist/types/extractors/action/extract-invoke-copy-link-action.d.ts +3 -0
- package/dist/types/extractors/action/extract-invoke-download-action.d.ts +3 -0
- package/dist/types/extractors/action/extract-invoke-preview-action.d.ts +11 -0
- package/dist/types/extractors/action/extract-invoke-view-action.d.ts +3 -0
- package/dist/types/extractors/action/extractDownloadActionProps.d.ts +4 -0
- package/dist/types/extractors/action/extractPreviewActionProps.d.ts +5 -1
- package/dist/types/extractors/action/extractViewActionProps.d.ts +4 -0
- package/dist/types/extractors/action/types.d.ts +9 -0
- package/dist/types/extractors/common/actions/extractActions.d.ts +0 -8
- package/dist/types/extractors/common/actions/types.d.ts +0 -9
- package/dist/types/extractors/flexible/actions/extract-copy-link-action.d.ts +6 -0
- package/dist/types/extractors/flexible/actions/extract-download-action.d.ts +6 -0
- package/dist/types/extractors/flexible/actions/extract-preview-action.d.ts +6 -0
- package/dist/types/extractors/flexible/actions/extract-view-action.d.ts +3 -0
- package/dist/types/extractors/flexible/actions/index.d.ts +21 -4
- package/dist/types/extractors/flexible/extract-state.d.ts +5 -2
- package/dist/types/extractors/flexible/index.d.ts +1 -1
- package/dist/types/i18n/cs.d.ts +1 -3
- package/dist/types/i18n/da.d.ts +1 -3
- package/dist/types/i18n/de.d.ts +1 -3
- package/dist/types/i18n/en.d.ts +1 -3
- package/dist/types/i18n/en_GB.d.ts +1 -3
- package/dist/types/i18n/en_ZZ.d.ts +1 -3
- package/dist/types/i18n/es.d.ts +1 -3
- package/dist/types/i18n/fi.d.ts +1 -3
- package/dist/types/i18n/fr.d.ts +1 -3
- package/dist/types/i18n/hu.d.ts +1 -3
- package/dist/types/i18n/it.d.ts +1 -3
- package/dist/types/i18n/ja.d.ts +1 -3
- package/dist/types/i18n/ko.d.ts +1 -3
- package/dist/types/i18n/nb.d.ts +1 -3
- package/dist/types/i18n/nl.d.ts +1 -3
- package/dist/types/i18n/pl.d.ts +1 -3
- package/dist/types/i18n/pt_BR.d.ts +1 -3
- package/dist/types/i18n/ru.d.ts +1 -3
- package/dist/types/i18n/sv.d.ts +1 -3
- package/dist/types/i18n/th.d.ts +1 -3
- package/dist/types/i18n/tr.d.ts +1 -3
- package/dist/types/i18n/uk.d.ts +1 -3
- package/dist/types/i18n/vi.d.ts +1 -3
- package/dist/types/i18n/zh.d.ts +1 -3
- package/dist/types/i18n/zh_TW.d.ts +1 -3
- package/dist/types/state/flexible-ui-context/types.d.ts +9 -3
- package/dist/types/state/hooks/use-invoke/types.d.ts +7 -1
- package/dist/types/state/hooks/use-invoke-client-action/index.d.ts +2 -2
- package/dist/types/state/hooks/use-invoke-client-action/types.d.ts +24 -2
- package/dist/types/state/hooks/use-resolve/index.d.ts +1 -0
- package/dist/types/utils/analytics/click.d.ts +1 -1
- package/dist/types/view/BlockCard/components/Action.d.ts +0 -4
- package/dist/types/view/BlockCard/index.d.ts +2 -17
- package/dist/types/view/BlockCard/types.d.ts +1 -6
- package/dist/types/view/Card/index.d.ts +1 -1
- package/dist/types/view/EmbedModal/index.d.ts +4 -0
- package/dist/types/view/EmbedModal/types.d.ts +7 -0
- package/dist/types/view/FlexibleCard/components/actions/action/action-stack-item/action-button.d.ts +1 -1
- package/dist/types/view/FlexibleCard/components/elements/lozenge/lozenge-action/lozenge-action-error/index.d.ts +1 -1
- package/dist/types/view/FlexibleCard/components/elements/lozenge/lozenge-action/lozenge-action-error/types.d.ts +6 -0
- package/dist/types/view/FlexibleCard/components/utils.d.ts +4 -1
- package/dist/types/view/FlexibleCard/index.d.ts +1 -1
- package/dist/types/view/FlexibleCard/types.d.ts +12 -3
- package/dist/types/view/HoverCard/components/CustomPopupContainer.d.ts +1 -1
- package/dist/types-ts4.5/classNames.d.ts +12 -10
- package/dist/types-ts4.5/common/analytics/generated/analytics.types.d.ts +63 -2
- package/dist/types-ts4.5/common/analytics/types.d.ts +2 -0
- package/dist/types-ts4.5/extractors/action/extract-invoke-copy-link-action.d.ts +3 -0
- package/dist/types-ts4.5/extractors/action/extract-invoke-download-action.d.ts +3 -0
- package/dist/types-ts4.5/extractors/action/extract-invoke-preview-action.d.ts +11 -0
- package/dist/types-ts4.5/extractors/action/extract-invoke-view-action.d.ts +3 -0
- package/dist/types-ts4.5/extractors/action/extractDownloadActionProps.d.ts +4 -0
- package/dist/types-ts4.5/extractors/action/extractPreviewActionProps.d.ts +5 -1
- package/dist/types-ts4.5/extractors/action/extractViewActionProps.d.ts +4 -0
- package/dist/types-ts4.5/extractors/action/types.d.ts +9 -0
- package/dist/types-ts4.5/extractors/common/actions/extractActions.d.ts +0 -8
- package/dist/types-ts4.5/extractors/common/actions/types.d.ts +0 -9
- package/dist/types-ts4.5/extractors/flexible/actions/extract-copy-link-action.d.ts +6 -0
- package/dist/types-ts4.5/extractors/flexible/actions/extract-download-action.d.ts +6 -0
- package/dist/types-ts4.5/extractors/flexible/actions/extract-preview-action.d.ts +6 -0
- package/dist/types-ts4.5/extractors/flexible/actions/extract-view-action.d.ts +3 -0
- package/dist/types-ts4.5/extractors/flexible/actions/index.d.ts +21 -4
- package/dist/types-ts4.5/extractors/flexible/extract-state.d.ts +5 -2
- package/dist/types-ts4.5/extractors/flexible/index.d.ts +1 -1
- package/dist/types-ts4.5/i18n/cs.d.ts +1 -3
- package/dist/types-ts4.5/i18n/da.d.ts +1 -3
- package/dist/types-ts4.5/i18n/de.d.ts +1 -3
- package/dist/types-ts4.5/i18n/en.d.ts +1 -3
- package/dist/types-ts4.5/i18n/en_GB.d.ts +1 -3
- package/dist/types-ts4.5/i18n/en_ZZ.d.ts +1 -3
- package/dist/types-ts4.5/i18n/es.d.ts +1 -3
- package/dist/types-ts4.5/i18n/fi.d.ts +1 -3
- package/dist/types-ts4.5/i18n/fr.d.ts +1 -3
- package/dist/types-ts4.5/i18n/hu.d.ts +1 -3
- package/dist/types-ts4.5/i18n/it.d.ts +1 -3
- package/dist/types-ts4.5/i18n/ja.d.ts +1 -3
- package/dist/types-ts4.5/i18n/ko.d.ts +1 -3
- package/dist/types-ts4.5/i18n/nb.d.ts +1 -3
- package/dist/types-ts4.5/i18n/nl.d.ts +1 -3
- package/dist/types-ts4.5/i18n/pl.d.ts +1 -3
- package/dist/types-ts4.5/i18n/pt_BR.d.ts +1 -3
- package/dist/types-ts4.5/i18n/ru.d.ts +1 -3
- package/dist/types-ts4.5/i18n/sv.d.ts +1 -3
- package/dist/types-ts4.5/i18n/th.d.ts +1 -3
- package/dist/types-ts4.5/i18n/tr.d.ts +1 -3
- package/dist/types-ts4.5/i18n/uk.d.ts +1 -3
- package/dist/types-ts4.5/i18n/vi.d.ts +1 -3
- package/dist/types-ts4.5/i18n/zh.d.ts +1 -3
- package/dist/types-ts4.5/i18n/zh_TW.d.ts +1 -3
- package/dist/types-ts4.5/state/flexible-ui-context/types.d.ts +9 -3
- package/dist/types-ts4.5/state/hooks/use-invoke/types.d.ts +7 -1
- package/dist/types-ts4.5/state/hooks/use-invoke-client-action/index.d.ts +2 -2
- package/dist/types-ts4.5/state/hooks/use-invoke-client-action/types.d.ts +24 -2
- package/dist/types-ts4.5/state/hooks/use-resolve/index.d.ts +1 -0
- package/dist/types-ts4.5/utils/analytics/click.d.ts +1 -1
- package/dist/types-ts4.5/view/BlockCard/components/Action.d.ts +0 -4
- package/dist/types-ts4.5/view/BlockCard/index.d.ts +2 -17
- package/dist/types-ts4.5/view/BlockCard/types.d.ts +1 -6
- package/dist/types-ts4.5/view/Card/index.d.ts +1 -1
- package/dist/types-ts4.5/view/EmbedModal/index.d.ts +8 -0
- package/dist/types-ts4.5/view/EmbedModal/types.d.ts +7 -0
- package/dist/types-ts4.5/view/FlexibleCard/components/actions/action/action-stack-item/action-button.d.ts +1 -1
- package/dist/types-ts4.5/view/FlexibleCard/components/elements/lozenge/lozenge-action/lozenge-action-error/index.d.ts +1 -1
- package/dist/types-ts4.5/view/FlexibleCard/components/elements/lozenge/lozenge-action/lozenge-action-error/types.d.ts +6 -0
- package/dist/types-ts4.5/view/FlexibleCard/components/utils.d.ts +4 -1
- package/dist/types-ts4.5/view/FlexibleCard/index.d.ts +1 -1
- package/dist/types-ts4.5/view/FlexibleCard/types.d.ts +12 -3
- package/dist/types-ts4.5/view/HoverCard/components/CustomPopupContainer.d.ts +1 -1
- package/package.json +4 -1
- package/dist/cjs/extractors/block/index.js +0 -96
- package/dist/cjs/extractors/common/actions/extractPreviewAction.js +0 -106
- package/dist/cjs/view/BlockCard/actions/AuthorizeAction.js +0 -22
- package/dist/cjs/view/BlockCard/actions/DownloadAction.js +0 -21
- package/dist/cjs/view/BlockCard/actions/PreviewAction.js +0 -35
- package/dist/cjs/view/BlockCard/actions/RetryAction.js +0 -35
- package/dist/cjs/view/BlockCard/actions/ViewAction.js +0 -21
- package/dist/cjs/view/BlockCard/components/ActionIcon.js +0 -57
- package/dist/cjs/view/BlockCard/components/ActionList.js +0 -78
- package/dist/cjs/view/BlockCard/components/CollaboratorList.js +0 -52
- package/dist/cjs/view/BlockCard/components/Content.js +0 -45
- package/dist/cjs/view/BlockCard/components/ContentFooter.js +0 -41
- package/dist/cjs/view/BlockCard/components/ContentHeader.js +0 -45
- package/dist/cjs/view/BlockCard/components/Emoji.js +0 -33
- package/dist/cjs/view/BlockCard/components/Link.js +0 -31
- package/dist/cjs/view/BlockCard/components/Name.js +0 -61
- package/dist/cjs/view/BlockCard/components/Provider.js +0 -57
- package/dist/cjs/view/BlockCard/components/Thumbnail.js +0 -62
- package/dist/cjs/view/BlockCard/components/UnresolvedText.js +0 -24
- package/dist/cjs/view/BlockCard/views/ErroredView.js +0 -91
- package/dist/cjs/view/BlockCard/views/ForbiddenView.js +0 -121
- package/dist/cjs/view/BlockCard/views/NotFoundView.js +0 -82
- package/dist/cjs/view/BlockCard/views/ResolvedView.js +0 -143
- package/dist/cjs/view/BlockCard/views/ResolvingView.js +0 -57
- package/dist/cjs/view/BlockCard/views/UnauthorizedView.js +0 -72
- package/dist/cjs/view/BlockCard/views/styled.js +0 -18
- package/dist/cjs/view/CardWithData/component.js +0 -66
- package/dist/cjs/view/CardWithData/types.js +0 -5
- package/dist/cjs/view/common/Byline.js +0 -52
- package/dist/cjs/view/common/Metadata.js +0 -56
- package/dist/cjs/view/common/MetadataList.js +0 -43
- package/dist/es2019/extractors/block/index.js +0 -86
- package/dist/es2019/extractors/common/actions/extractPreviewAction.js +0 -91
- package/dist/es2019/view/BlockCard/actions/AuthorizeAction.js +0 -9
- package/dist/es2019/view/BlockCard/actions/DownloadAction.js +0 -11
- package/dist/es2019/view/BlockCard/actions/PreviewAction.js +0 -23
- package/dist/es2019/view/BlockCard/actions/RetryAction.js +0 -8
- package/dist/es2019/view/BlockCard/actions/ViewAction.js +0 -11
- package/dist/es2019/view/BlockCard/components/ActionIcon.js +0 -51
- package/dist/es2019/view/BlockCard/components/ActionList.js +0 -63
- package/dist/es2019/view/BlockCard/components/CollaboratorList.js +0 -42
- package/dist/es2019/view/BlockCard/components/Content.js +0 -36
- package/dist/es2019/view/BlockCard/components/ContentFooter.js +0 -32
- package/dist/es2019/view/BlockCard/components/ContentHeader.js +0 -39
- package/dist/es2019/view/BlockCard/components/Emoji.js +0 -26
- package/dist/es2019/view/BlockCard/components/Link.js +0 -24
- package/dist/es2019/view/BlockCard/components/Name.js +0 -54
- package/dist/es2019/view/BlockCard/components/Provider.js +0 -51
- package/dist/es2019/view/BlockCard/components/Thumbnail.js +0 -58
- package/dist/es2019/view/BlockCard/components/UnresolvedText.js +0 -18
- package/dist/es2019/view/BlockCard/views/ErroredView.js +0 -78
- package/dist/es2019/view/BlockCard/views/ForbiddenView.js +0 -104
- package/dist/es2019/view/BlockCard/views/NotFoundView.js +0 -71
- package/dist/es2019/view/BlockCard/views/ResolvedView.js +0 -121
- package/dist/es2019/view/BlockCard/views/ResolvingView.js +0 -46
- package/dist/es2019/view/BlockCard/views/UnauthorizedView.js +0 -60
- package/dist/es2019/view/BlockCard/views/styled.js +0 -10
- package/dist/es2019/view/CardWithData/component.js +0 -43
- package/dist/es2019/view/common/Byline.js +0 -44
- package/dist/es2019/view/common/Metadata.js +0 -49
- package/dist/es2019/view/common/MetadataList.js +0 -34
- package/dist/esm/extractors/block/index.js +0 -89
- package/dist/esm/extractors/common/actions/extractPreviewAction.js +0 -99
- package/dist/esm/state/reducers/types.js +0 -1
- package/dist/esm/view/BlockCard/actions/AuthorizeAction.js +0 -15
- package/dist/esm/view/BlockCard/actions/DownloadAction.js +0 -14
- package/dist/esm/view/BlockCard/actions/PreviewAction.js +0 -30
- package/dist/esm/view/BlockCard/actions/RetryAction.js +0 -28
- package/dist/esm/view/BlockCard/actions/ViewAction.js +0 -14
- package/dist/esm/view/BlockCard/components/ActionIcon.js +0 -50
- package/dist/esm/view/BlockCard/components/ActionList.js +0 -69
- package/dist/esm/view/BlockCard/components/CollaboratorList.js +0 -44
- package/dist/esm/view/BlockCard/components/Content.js +0 -38
- package/dist/esm/view/BlockCard/components/ContentFooter.js +0 -34
- package/dist/esm/view/BlockCard/components/ContentHeader.js +0 -38
- package/dist/esm/view/BlockCard/components/Emoji.js +0 -25
- package/dist/esm/view/BlockCard/components/Link.js +0 -24
- package/dist/esm/view/BlockCard/components/Name.js +0 -54
- package/dist/esm/view/BlockCard/components/Provider.js +0 -50
- package/dist/esm/view/BlockCard/components/Thumbnail.js +0 -57
- package/dist/esm/view/BlockCard/components/UnresolvedText.js +0 -17
- package/dist/esm/view/BlockCard/views/ErroredView.js +0 -87
- package/dist/esm/view/BlockCard/views/ForbiddenView.js +0 -113
- package/dist/esm/view/BlockCard/views/NotFoundView.js +0 -78
- package/dist/esm/view/BlockCard/views/ResolvedView.js +0 -135
- package/dist/esm/view/BlockCard/views/ResolvingView.js +0 -49
- package/dist/esm/view/BlockCard/views/UnauthorizedView.js +0 -68
- package/dist/esm/view/BlockCard/views/styled.js +0 -10
- package/dist/esm/view/CardWithData/component.js +0 -59
- package/dist/esm/view/CardWithData/types.js +0 -1
- package/dist/esm/view/common/Byline.js +0 -45
- package/dist/esm/view/common/Metadata.js +0 -48
- package/dist/esm/view/common/MetadataList.js +0 -35
- package/dist/types/extractors/block/index.d.ts +0 -10
- package/dist/types/extractors/block/types.d.ts +0 -13
- package/dist/types/extractors/common/actions/extractPreviewAction.d.ts +0 -14
- package/dist/types/state/reducers/types.d.ts +0 -4
- package/dist/types/view/BlockCard/actions/AuthorizeAction.d.ts +0 -2
- package/dist/types/view/BlockCard/actions/DownloadAction.d.ts +0 -4
- package/dist/types/view/BlockCard/actions/PreviewAction.d.ts +0 -27
- package/dist/types/view/BlockCard/actions/RetryAction.d.ts +0 -2
- package/dist/types/view/BlockCard/actions/ViewAction.d.ts +0 -4
- package/dist/types/view/BlockCard/components/ActionIcon.d.ts +0 -12
- package/dist/types/view/BlockCard/components/ActionList.d.ts +0 -10
- package/dist/types/view/BlockCard/components/CollaboratorList.d.ts +0 -18
- package/dist/types/view/BlockCard/components/Content.d.ts +0 -18
- package/dist/types/view/BlockCard/components/ContentFooter.d.ts +0 -12
- package/dist/types/view/BlockCard/components/ContentHeader.d.ts +0 -19
- package/dist/types/view/BlockCard/components/Emoji.d.ts +0 -10
- package/dist/types/view/BlockCard/components/Link.d.ts +0 -11
- package/dist/types/view/BlockCard/components/Name.d.ts +0 -21
- package/dist/types/view/BlockCard/components/Provider.d.ts +0 -11
- package/dist/types/view/BlockCard/components/Thumbnail.d.ts +0 -13
- package/dist/types/view/BlockCard/components/UnresolvedText.d.ts +0 -11
- package/dist/types/view/BlockCard/views/ErroredView.d.ts +0 -19
- package/dist/types/view/BlockCard/views/ForbiddenView.d.ts +0 -35
- package/dist/types/view/BlockCard/views/NotFoundView.d.ts +0 -26
- package/dist/types/view/BlockCard/views/ResolvedView.d.ts +0 -46
- package/dist/types/view/BlockCard/views/ResolvingView.d.ts +0 -18
- package/dist/types/view/BlockCard/views/UnauthorizedView.d.ts +0 -19
- package/dist/types/view/BlockCard/views/styled.d.ts +0 -5
- package/dist/types/view/CardWithData/component.d.ts +0 -5
- package/dist/types/view/CardWithData/types.d.ts +0 -15
- package/dist/types/view/common/Byline.d.ts +0 -13
- package/dist/types/view/common/Metadata.d.ts +0 -13
- package/dist/types/view/common/MetadataList.d.ts +0 -12
- package/dist/types-ts4.5/extractors/block/index.d.ts +0 -10
- package/dist/types-ts4.5/extractors/block/types.d.ts +0 -13
- package/dist/types-ts4.5/extractors/common/actions/extractPreviewAction.d.ts +0 -14
- package/dist/types-ts4.5/state/reducers/types.d.ts +0 -4
- package/dist/types-ts4.5/view/BlockCard/actions/AuthorizeAction.d.ts +0 -2
- package/dist/types-ts4.5/view/BlockCard/actions/DownloadAction.d.ts +0 -4
- package/dist/types-ts4.5/view/BlockCard/actions/PreviewAction.d.ts +0 -27
- package/dist/types-ts4.5/view/BlockCard/actions/RetryAction.d.ts +0 -2
- package/dist/types-ts4.5/view/BlockCard/actions/ViewAction.d.ts +0 -4
- package/dist/types-ts4.5/view/BlockCard/components/ActionIcon.d.ts +0 -12
- package/dist/types-ts4.5/view/BlockCard/components/ActionList.d.ts +0 -10
- package/dist/types-ts4.5/view/BlockCard/components/CollaboratorList.d.ts +0 -18
- package/dist/types-ts4.5/view/BlockCard/components/Content.d.ts +0 -18
- package/dist/types-ts4.5/view/BlockCard/components/ContentFooter.d.ts +0 -12
- package/dist/types-ts4.5/view/BlockCard/components/ContentHeader.d.ts +0 -19
- package/dist/types-ts4.5/view/BlockCard/components/Emoji.d.ts +0 -10
- package/dist/types-ts4.5/view/BlockCard/components/Link.d.ts +0 -11
- package/dist/types-ts4.5/view/BlockCard/components/Name.d.ts +0 -21
- package/dist/types-ts4.5/view/BlockCard/components/Provider.d.ts +0 -11
- package/dist/types-ts4.5/view/BlockCard/components/Thumbnail.d.ts +0 -13
- package/dist/types-ts4.5/view/BlockCard/components/UnresolvedText.d.ts +0 -11
- package/dist/types-ts4.5/view/BlockCard/views/ErroredView.d.ts +0 -19
- package/dist/types-ts4.5/view/BlockCard/views/ForbiddenView.d.ts +0 -35
- package/dist/types-ts4.5/view/BlockCard/views/NotFoundView.d.ts +0 -26
- package/dist/types-ts4.5/view/BlockCard/views/ResolvedView.d.ts +0 -46
- package/dist/types-ts4.5/view/BlockCard/views/ResolvingView.d.ts +0 -18
- package/dist/types-ts4.5/view/BlockCard/views/UnauthorizedView.d.ts +0 -19
- package/dist/types-ts4.5/view/BlockCard/views/styled.d.ts +0 -5
- package/dist/types-ts4.5/view/CardWithData/component.d.ts +0 -5
- package/dist/types-ts4.5/view/CardWithData/types.d.ts +0 -15
- package/dist/types-ts4.5/view/common/Byline.d.ts +0 -13
- package/dist/types-ts4.5/view/common/Metadata.d.ts +0 -13
- package/dist/types-ts4.5/view/common/MetadataList.d.ts +0 -12
- /package/dist/cjs/{extractors/block → common/analytics}/types.js +0 -0
- /package/dist/cjs/{state/reducers → extractors/action}/types.js +0 -0
- /package/dist/es2019/{extractors/block → common/analytics}/types.js +0 -0
- /package/dist/es2019/{state/reducers → extractors/action}/types.js +0 -0
- /package/dist/{es2019/view/CardWithData → esm/common/analytics}/types.js +0 -0
- /package/dist/esm/extractors/{block → action}/types.js +0 -0
|
@@ -38,7 +38,7 @@ export default {
|
|
|
38
38
|
'fabric.linking.automation-action.confluence.page.modal.description': 'Apply an automation to <b>{name}</b>.{br}The available selections are controlled by Confluence and space administrators.',
|
|
39
39
|
'fabric.linking.automation-action.confluence.page.modal.title': 'Page automations',
|
|
40
40
|
'fabric.linking.automation-action.icon.label': 'Automation icon',
|
|
41
|
-
'fabric.linking.automation-action.title': 'View automation rules
|
|
41
|
+
'fabric.linking.automation-action.title': 'View automation rules',
|
|
42
42
|
'fabric.linking.automation-action.tooltip': 'Select an automation rule to run',
|
|
43
43
|
'fabric.linking.beta': 'Beta',
|
|
44
44
|
'fabric.linking.cancel': 'Cancel',
|
|
@@ -90,7 +90,6 @@ export default {
|
|
|
90
90
|
'fabric.linking.invalid_permissions': 'Restricted content',
|
|
91
91
|
'fabric.linking.invalid_permissions_description': "You'll need to request access or try a different account to view this preview.",
|
|
92
92
|
'fabric.linking.join_to_view': 'Join {context} to view this issue',
|
|
93
|
-
'fabric.linking.last_mentioned_in': 'Last mentioned in',
|
|
94
93
|
'fabric.linking.learn_more_about_connecting_account': 'Learn more about connecting your account to Atlassian products.',
|
|
95
94
|
'fabric.linking.learn_more_about_smart_links': 'Learn more about Smart Links.',
|
|
96
95
|
'fabric.linking.link_safety_warning_message': 'The link {unsafeLinkText} is taking you to a different site, <a>actual link here</a>',
|
|
@@ -131,8 +130,7 @@ export default {
|
|
|
131
130
|
'fabric.linking.related_links_modal_unavailable_header': 'No recent links',
|
|
132
131
|
'fabric.linking.related_links_modal_unavailable_message': "We didn't find any links to show here. We continuously review and add recent links for updated pages or other content types.",
|
|
133
132
|
'fabric.linking.related_links_not_found': "We didn't find any links to show here.",
|
|
134
|
-
'fabric.linking.related_links_view_related_urls
|
|
135
|
-
'fabric.linking.related_work_items_not_found': 'This link is not mentioned anywhere else.',
|
|
133
|
+
'fabric.linking.related_links_view_related_urls': 'View recent links',
|
|
136
134
|
'fabric.linking.request_access': 'Request access',
|
|
137
135
|
'fabric.linking.request_access_description': 'Your team uses {product} to collaborate. Send your admin a request for access.',
|
|
138
136
|
'fabric.linking.request_access_pending': 'Pending approval',
|
|
@@ -38,7 +38,7 @@ export default {
|
|
|
38
38
|
'fabric.linking.automation-action.confluence.page.modal.description': 'Apply an automation to <b>{name}</b>.{br}The available selections are controlled by Confluence and space administrators.',
|
|
39
39
|
'fabric.linking.automation-action.confluence.page.modal.title': 'Page automations',
|
|
40
40
|
'fabric.linking.automation-action.icon.label': 'Automation icon',
|
|
41
|
-
'fabric.linking.automation-action.title': 'View automation rules
|
|
41
|
+
'fabric.linking.automation-action.title': 'View automation rules',
|
|
42
42
|
'fabric.linking.automation-action.tooltip': 'Select an automation rule to run',
|
|
43
43
|
'fabric.linking.beta': 'Beta',
|
|
44
44
|
'fabric.linking.cancel': 'Cancel',
|
|
@@ -90,7 +90,6 @@ export default {
|
|
|
90
90
|
'fabric.linking.invalid_permissions': 'Restricted content',
|
|
91
91
|
'fabric.linking.invalid_permissions_description': "You'll need to request access or try a different account to view this preview.",
|
|
92
92
|
'fabric.linking.join_to_view': 'Join {context} to view this issue',
|
|
93
|
-
'fabric.linking.last_mentioned_in': 'Last mentioned in',
|
|
94
93
|
'fabric.linking.learn_more_about_connecting_account': 'Learn more about connecting your account to Atlassian products.',
|
|
95
94
|
'fabric.linking.learn_more_about_smart_links': 'Learn more about Smart Links.',
|
|
96
95
|
'fabric.linking.link_safety_warning_message': 'The link {unsafeLinkText} is taking you to a different site, <a>actual link here</a>',
|
|
@@ -131,8 +130,7 @@ export default {
|
|
|
131
130
|
'fabric.linking.related_links_modal_unavailable_header': 'No recent links',
|
|
132
131
|
'fabric.linking.related_links_modal_unavailable_message': "We didn't find any links to show here. We continuously review and add recent links for updated pages or other content types.",
|
|
133
132
|
'fabric.linking.related_links_not_found': "We didn't find any links to show here.",
|
|
134
|
-
'fabric.linking.related_links_view_related_urls
|
|
135
|
-
'fabric.linking.related_work_items_not_found': 'This link is not mentioned anywhere else.',
|
|
133
|
+
'fabric.linking.related_links_view_related_urls': 'View recent links',
|
|
136
134
|
'fabric.linking.request_access': 'Request access',
|
|
137
135
|
'fabric.linking.request_access_description': 'Your team uses {product} to collaborate. Send your admin a request for access.',
|
|
138
136
|
'fabric.linking.request_access_pending': 'Pending approval',
|
package/dist/es2019/i18n/es.js
CHANGED
|
@@ -38,7 +38,7 @@ export default {
|
|
|
38
38
|
'fabric.linking.automation-action.confluence.page.modal.description': 'Aplica una automatización a <b>{name}</b>.{br}Las selecciones disponibles están controladas por Confluence y los administradores del espacio.',
|
|
39
39
|
'fabric.linking.automation-action.confluence.page.modal.title': 'Automatizaciones de páginas',
|
|
40
40
|
'fabric.linking.automation-action.icon.label': 'Icono de automatización',
|
|
41
|
-
'fabric.linking.automation-action.title': 'Ver reglas de automatización
|
|
41
|
+
'fabric.linking.automation-action.title': 'Ver reglas de automatización',
|
|
42
42
|
'fabric.linking.automation-action.tooltip': 'Selecciona una regla de automatización que ejecutar',
|
|
43
43
|
'fabric.linking.beta': 'Beta',
|
|
44
44
|
'fabric.linking.cancel': 'Cancelar',
|
|
@@ -76,9 +76,9 @@ export default {
|
|
|
76
76
|
'fabric.linking.download_file': 'Descargar archivo',
|
|
77
77
|
'fabric.linking.edit': 'Editar',
|
|
78
78
|
'fabric.linking.follow': 'Seguir',
|
|
79
|
-
'fabric.linking.follow_goal': 'Seguir
|
|
80
|
-
'fabric.linking.follow_goal_description': 'Sigue este
|
|
81
|
-
'fabric.linking.follow_goal_error': 'Se ha producido un error al intentar seguir el
|
|
79
|
+
'fabric.linking.follow_goal': 'Seguir fin',
|
|
80
|
+
'fabric.linking.follow_goal_description': 'Sigue este fin para recibir notificaciones de las actualizaciones',
|
|
81
|
+
'fabric.linking.follow_goal_error': 'Se ha producido un error al intentar seguir el fin. Comprueba tu conexión o actualiza la página y vuelve a intentarlo.',
|
|
82
82
|
'fabric.linking.follow_project': 'Seguir proyecto',
|
|
83
83
|
'fabric.linking.follow_project_description': 'Sigue para recibir notificaciones de este proyecto',
|
|
84
84
|
'fabric.linking.follow_project_error': 'Se ha producido un error al intentar seguir el proyecto. Comprueba tu conexión o actualiza la página y vuelve a intentarlo.',
|
|
@@ -90,7 +90,6 @@ export default {
|
|
|
90
90
|
'fabric.linking.invalid_permissions': 'Contenido restringido',
|
|
91
91
|
'fabric.linking.invalid_permissions_description': 'Deberás solicitar el acceso o probar con otra cuenta para obtener esta vista previa.',
|
|
92
92
|
'fabric.linking.join_to_view': 'Únete a {context} para ver esta incidencia',
|
|
93
|
-
'fabric.linking.last_mentioned_in': 'Última mención en',
|
|
94
93
|
'fabric.linking.learn_more_about_connecting_account': 'Obtén más información sobre cómo conectar tu cuenta a los productos de Atlassian.',
|
|
95
94
|
'fabric.linking.learn_more_about_smart_links': 'Más información sobre los enlaces inteligentes.',
|
|
96
95
|
'fabric.linking.link_safety_warning_message': 'El enlace {unsafeLinkText} te redirige a un sitio diferente, <a>actual link here</a>.',
|
|
@@ -131,8 +130,7 @@ export default {
|
|
|
131
130
|
'fabric.linking.related_links_modal_unavailable_header': 'Sin enlaces recientes',
|
|
132
131
|
'fabric.linking.related_links_modal_unavailable_message': 'No hemos encontrado ningún enlace para mostrar aquí. Revisamos y añadimos continuamente enlaces recientes de las páginas actualizadas u otros tipos de contenido.',
|
|
133
132
|
'fabric.linking.related_links_not_found': 'No hemos encontrado ningún enlace que mostrar aquí.',
|
|
134
|
-
'fabric.linking.related_links_view_related_urls
|
|
135
|
-
'fabric.linking.related_work_items_not_found': 'Este enlace no se menciona en ningún otro sitio.',
|
|
133
|
+
'fabric.linking.related_links_view_related_urls': 'Consultar enlaces recientes',
|
|
136
134
|
'fabric.linking.request_access': 'Solicitar acceso',
|
|
137
135
|
'fabric.linking.request_access_description': 'Tu equipo utiliza {product} para colaborar. Envía al administrador una solicitud para poder acceder.',
|
|
138
136
|
'fabric.linking.request_access_pending': 'Aprobación pendiente',
|
|
@@ -159,9 +157,9 @@ export default {
|
|
|
159
157
|
'fabric.linking.unauthorised_account_name': 'No podemos mostrar las páginas privadas de {context}',
|
|
160
158
|
'fabric.linking.unauthorised_account_name_no_provider': 'No podemos mostrar páginas privadas',
|
|
161
159
|
'fabric.linking.unfollow': 'Dejar de seguir',
|
|
162
|
-
'fabric.linking.unfollow_goal': 'Dejar de seguir
|
|
163
|
-
'fabric.linking.unfollow_goal_description': 'Deja de seguir para no recibir más notificaciones de este
|
|
164
|
-
'fabric.linking.unfollow_goal_error': 'Se ha producido un error al intentar dejar de seguir el
|
|
160
|
+
'fabric.linking.unfollow_goal': 'Dejar de seguir fin',
|
|
161
|
+
'fabric.linking.unfollow_goal_description': 'Deja de seguir para no recibir más notificaciones de este fin',
|
|
162
|
+
'fabric.linking.unfollow_goal_error': 'Se ha producido un error al intentar dejar de seguir el fin. Comprueba tu conexión o actualiza la página y vuelve a intentarlo.',
|
|
165
163
|
'fabric.linking.unfollow_project': 'Dejar de seguir proyecto',
|
|
166
164
|
'fabric.linking.unfollow_project_description': 'Deja de seguir para no recibir más notificaciones del proyecto',
|
|
167
165
|
'fabric.linking.unfollow_project_error': 'Se ha producido un error al intentar dejar de seguir el proyecto. Comprueba tu conexión o actualiza la página y vuelve a intentarlo.',
|
package/dist/es2019/i18n/fi.js
CHANGED
|
@@ -38,7 +38,7 @@ export default {
|
|
|
38
38
|
'fabric.linking.automation-action.confluence.page.modal.description': 'Käytä automaatiota sivulla <b>{name}</b>.{br}Confluencen ja työtilan ylläpitäjät hallitsevat käytettävissä olevia valintoja.',
|
|
39
39
|
'fabric.linking.automation-action.confluence.page.modal.title': 'Sivun automaatiot',
|
|
40
40
|
'fabric.linking.automation-action.icon.label': 'Automaatiokuvake',
|
|
41
|
-
'fabric.linking.automation-action.title': 'Näytä automaatiosäännöt
|
|
41
|
+
'fabric.linking.automation-action.title': 'Näytä automaatiosäännöt',
|
|
42
42
|
'fabric.linking.automation-action.tooltip': 'Valitse suoritettava automaatiosääntö',
|
|
43
43
|
'fabric.linking.beta': 'Beeta',
|
|
44
44
|
'fabric.linking.cancel': 'Peruuta',
|
|
@@ -76,9 +76,9 @@ export default {
|
|
|
76
76
|
'fabric.linking.download_file': 'Lataa tiedosto',
|
|
77
77
|
'fabric.linking.edit': 'Muokkaa',
|
|
78
78
|
'fabric.linking.follow': 'Seuraa',
|
|
79
|
-
'fabric.linking.follow_goal': 'Seuraa
|
|
80
|
-
'fabric.linking.follow_goal_description': 'Seuraamalla tätä
|
|
81
|
-
'fabric.linking.follow_goal_error': 'Kohtasimme virheen yrittäessämme seurata
|
|
79
|
+
'fabric.linking.follow_goal': 'Seuraa päämäärää',
|
|
80
|
+
'fabric.linking.follow_goal_description': 'Seuraamalla tätä päämäärää saat ilmoituksia päivityksistä',
|
|
81
|
+
'fabric.linking.follow_goal_error': 'Kohtasimme virheen yrittäessämme seurata päämäärää. Tarkista verkkoyhteytesi tai päivitä sivu ja yritä uudelleen.',
|
|
82
82
|
'fabric.linking.follow_project': 'Seuraa projektia',
|
|
83
83
|
'fabric.linking.follow_project_description': 'Seuraamalla saat ilmoituksia tästä projektista',
|
|
84
84
|
'fabric.linking.follow_project_error': 'Kohtasimme virheen yrittäessämme seurata projektia. Tarkista verkkoyhteytesi tai päivitä sivu ja yritä uudelleen.',
|
|
@@ -90,7 +90,6 @@ export default {
|
|
|
90
90
|
'fabric.linking.invalid_permissions': 'Rajoitettu sisältö',
|
|
91
91
|
'fabric.linking.invalid_permissions_description': 'Pyydä käyttöoikeus tai käytä toista tiliä, jos haluat nähdä tämän esikatselun.',
|
|
92
92
|
'fabric.linking.join_to_view': 'Liity palveluun {context} niin voit tarkastella asiaa',
|
|
93
|
-
'fabric.linking.last_mentioned_in': 'Viimeksi mainittu kohteessa',
|
|
94
93
|
'fabric.linking.learn_more_about_connecting_account': 'Lisätietoja tilisi yhdistämisestä Atlassian-tuotteisiin.',
|
|
95
94
|
'fabric.linking.learn_more_about_smart_links': 'Lue lisää Smart Link -linkeistä.',
|
|
96
95
|
'fabric.linking.link_safety_warning_message': 'Linkki {unsafeLinkText} vie sinut toiseen sivustoon: <a>actual link here</a>',
|
|
@@ -131,8 +130,7 @@ export default {
|
|
|
131
130
|
'fabric.linking.related_links_modal_unavailable_header': 'Ei viimeaikaisia linkkejä',
|
|
132
131
|
'fabric.linking.related_links_modal_unavailable_message': 'Täältä ei löytynyt näytettäviä linkkejä. Päivitettyjen sivujen tai muiden sisältötyyppien viimeaikaisia linkkejä tarkistetaan ja lisätään jatkuvasti.',
|
|
133
132
|
'fabric.linking.related_links_not_found': 'Täältä ei löytynyt näytettäviä linkkejä.',
|
|
134
|
-
'fabric.linking.related_links_view_related_urls
|
|
135
|
-
'fabric.linking.related_work_items_not_found': 'Tätä linkkiä ei ole mainittu missään muualla.',
|
|
133
|
+
'fabric.linking.related_links_view_related_urls': 'Näytä viimeisimmät linkit',
|
|
136
134
|
'fabric.linking.request_access': 'Pyydä pääsyä',
|
|
137
135
|
'fabric.linking.request_access_description': '{product} on tiimisi käytössä yhteistyön tukena. Pyydä käyttöoikeutta ylläpitäjältäsi.',
|
|
138
136
|
'fabric.linking.request_access_pending': 'Odottaa hyväksyntää',
|
package/dist/es2019/i18n/fr.js
CHANGED
|
@@ -38,7 +38,7 @@ export default {
|
|
|
38
38
|
'fabric.linking.automation-action.confluence.page.modal.description': "Appliquez une automatisation à <b>{name}</b>.{br}Les sélections disponibles sont contrôlées par Confluence et les administrateurs d'espace.",
|
|
39
39
|
'fabric.linking.automation-action.confluence.page.modal.title': 'Automatisations de page',
|
|
40
40
|
'fabric.linking.automation-action.icon.label': "Icône d'automatisation",
|
|
41
|
-
'fabric.linking.automation-action.title': "Afficher les règles d'automatisation
|
|
41
|
+
'fabric.linking.automation-action.title': "Afficher les règles d'automatisation",
|
|
42
42
|
'fabric.linking.automation-action.tooltip': "Sélectionner une règle d'automatisation à exécuter",
|
|
43
43
|
'fabric.linking.beta': 'Bêta',
|
|
44
44
|
'fabric.linking.cancel': 'Annuler',
|
|
@@ -90,7 +90,6 @@ export default {
|
|
|
90
90
|
'fabric.linking.invalid_permissions': 'Contenu restreint',
|
|
91
91
|
'fabric.linking.invalid_permissions_description': "Vous devrez demander l'accès ou essayer un autre compte pour afficher cet aperçu.",
|
|
92
92
|
'fabric.linking.join_to_view': 'Rejoignez {context} pour consulter ce ticket',
|
|
93
|
-
'fabric.linking.last_mentioned_in': 'Dernière mention dans',
|
|
94
93
|
'fabric.linking.learn_more_about_connecting_account': 'En savoir plus sur la connexion de votre compte aux produits Atlassian.',
|
|
95
94
|
'fabric.linking.learn_more_about_smart_links': 'En savoir plus sur les liens intelligents.',
|
|
96
95
|
'fabric.linking.link_safety_warning_message': 'Le lien {unsafeLinkText} essaie de vous rediriger vers un autre site, <a>actual link here</a>',
|
|
@@ -131,8 +130,7 @@ export default {
|
|
|
131
130
|
'fabric.linking.related_links_modal_unavailable_header': 'Aucun lien récent',
|
|
132
131
|
'fabric.linking.related_links_modal_unavailable_message': "Nous n'avons trouvé aucun lien à afficher ici. Nous vérifions et ajoutons en permanence des liens récents pour les pages mises à jour ou d'autres types de contenu.",
|
|
133
132
|
'fabric.linking.related_links_not_found': "Nous n'avons trouvé aucun lien à afficher ici.",
|
|
134
|
-
'fabric.linking.related_links_view_related_urls
|
|
135
|
-
'fabric.linking.related_work_items_not_found': "Ce lien n'est mentionné nulle part ailleurs.",
|
|
133
|
+
'fabric.linking.related_links_view_related_urls': 'Afficher les liens récents',
|
|
136
134
|
'fabric.linking.request_access': "Demander l'accès",
|
|
137
135
|
'fabric.linking.request_access_description': "Votre équipe utilise {product} pour collaborer. Envoyez une demande d'accès à votre administrateur.",
|
|
138
136
|
'fabric.linking.request_access_pending': 'Approbation en attente',
|
package/dist/es2019/i18n/hu.js
CHANGED
|
@@ -38,7 +38,7 @@ export default {
|
|
|
38
38
|
'fabric.linking.automation-action.confluence.page.modal.description': 'Automatizálás alkalmazása a következőhöz: <b>{name}</b>.{br}Az elérhető kiválasztásokat a Confluence és a munkatér-adminisztrátorok szabályozzák.',
|
|
39
39
|
'fabric.linking.automation-action.confluence.page.modal.title': 'Oldal automatizálása',
|
|
40
40
|
'fabric.linking.automation-action.icon.label': 'Automatizálás ikon',
|
|
41
|
-
'fabric.linking.automation-action.title': 'Automatizálási szabályok megtekintése
|
|
41
|
+
'fabric.linking.automation-action.title': 'Automatizálási szabályok megtekintése',
|
|
42
42
|
'fabric.linking.automation-action.tooltip': 'Futtatandó automatizálási szabály kiválasztása',
|
|
43
43
|
'fabric.linking.beta': 'Béta',
|
|
44
44
|
'fabric.linking.cancel': 'Mégse',
|
|
@@ -90,7 +90,6 @@ export default {
|
|
|
90
90
|
'fabric.linking.invalid_permissions': 'Korlátozott tartalom',
|
|
91
91
|
'fabric.linking.invalid_permissions_description': 'Az előnézet megtekintéséhez hozzáférést kell kérned, vagy másik fiókba kell belépned.',
|
|
92
92
|
'fabric.linking.join_to_view': 'Az ügy megtekintése érdekében csatlakozz ehhez: {context}',
|
|
93
|
-
'fabric.linking.last_mentioned_in': 'Legutóbb megemlítve itt:',
|
|
94
93
|
'fabric.linking.learn_more_about_connecting_account': 'További információ a fiók csatlakoztatásáról az Atlassian-termékekhez.',
|
|
95
94
|
'fabric.linking.learn_more_about_smart_links': 'További információ az okoslinkekről.',
|
|
96
95
|
'fabric.linking.link_safety_warning_message': 'A(z) {unsafeLinkText} link egy másik webhelyre visz: <a>actual link here</a>',
|
|
@@ -131,8 +130,7 @@ export default {
|
|
|
131
130
|
'fabric.linking.related_links_modal_unavailable_header': 'Nincsenek nemrégiben megtekintett linkek',
|
|
132
131
|
'fabric.linking.related_links_modal_unavailable_message': 'Nem találtunk itt megjeleníthető linkeket. Folyamatosan ellenőrizzük és hozzáadjuk a legutóbbi linkeket, hogy frissített oldalakat és más tartalomtípusokat kapj.',
|
|
133
132
|
'fabric.linking.related_links_not_found': 'Nem találtunk itt megjeleníthető linkeket.',
|
|
134
|
-
'fabric.linking.related_links_view_related_urls
|
|
135
|
-
'fabric.linking.related_work_items_not_found': 'Ez a link sehol máshol nincs megemlítve.',
|
|
133
|
+
'fabric.linking.related_links_view_related_urls': 'Legutóbbi linkek megtekintése',
|
|
136
134
|
'fabric.linking.request_access': 'Hozzáférés kérése',
|
|
137
135
|
'fabric.linking.request_access_description': 'A csapatod a(z) {product} terméket használja az együttműködésre. Ha hozzáférést szeretnél kapni, küldj egy kérelmet az adminisztrátorodnak.',
|
|
138
136
|
'fabric.linking.request_access_pending': 'Függőben levő jóváhagyás',
|
package/dist/es2019/i18n/it.js
CHANGED
|
@@ -38,7 +38,7 @@ export default {
|
|
|
38
38
|
'fabric.linking.automation-action.confluence.page.modal.description': "Applica un'automazione a <b>{name}</b>.{br}Le selezioni disponibili sono controllate da Confluence e dagli amministratori dello spazio.",
|
|
39
39
|
'fabric.linking.automation-action.confluence.page.modal.title': 'Automazioni di pagina',
|
|
40
40
|
'fabric.linking.automation-action.icon.label': 'Icona di automazione',
|
|
41
|
-
'fabric.linking.automation-action.title': 'Visualizza
|
|
41
|
+
'fabric.linking.automation-action.title': 'Visualizza regole di automazione',
|
|
42
42
|
'fabric.linking.automation-action.tooltip': 'Seleziona una regola di automazione da eseguire',
|
|
43
43
|
'fabric.linking.beta': 'Beta',
|
|
44
44
|
'fabric.linking.cancel': 'Annulla',
|
|
@@ -90,7 +90,6 @@ export default {
|
|
|
90
90
|
'fabric.linking.invalid_permissions': 'Contenuto soggetto a restrizioni',
|
|
91
91
|
'fabric.linking.invalid_permissions_description': "Per visualizzare quest'anteprima devi richiedere l'accesso o provare con un altro account.",
|
|
92
92
|
'fabric.linking.join_to_view': 'Unisciti a {context} per visualizzare questo ticket',
|
|
93
|
-
'fabric.linking.last_mentioned_in': 'Ultima menzione in',
|
|
94
93
|
'fabric.linking.learn_more_about_connecting_account': 'Scopri di più sulla connessione del tuo account ai prodotti Atlassian.',
|
|
95
94
|
'fabric.linking.learn_more_about_smart_links': 'Scopri di più sui Link intelligenti.',
|
|
96
95
|
'fabric.linking.link_safety_warning_message': 'Il link {unsafeLinkText} porta a un altro sito, <a>actual link here</a>',
|
|
@@ -131,8 +130,7 @@ export default {
|
|
|
131
130
|
'fabric.linking.related_links_modal_unavailable_header': 'Nessun link recente',
|
|
132
131
|
'fabric.linking.related_links_modal_unavailable_message': 'Non sono stati trovati link da mostrare qui. Esaminiamo e aggiungiamo continuamente i link recenti per le pagine aggiornate o altri tipi di contenuti.',
|
|
133
132
|
'fabric.linking.related_links_not_found': 'Non sono stati trovati link da mostrare qui.',
|
|
134
|
-
'fabric.linking.related_links_view_related_urls
|
|
135
|
-
'fabric.linking.related_work_items_not_found': "Questo link non è menzionato da nessun'altra parte.",
|
|
133
|
+
'fabric.linking.related_links_view_related_urls': 'Visualizza link recenti',
|
|
136
134
|
'fabric.linking.request_access': 'Richiedi accesso',
|
|
137
135
|
'fabric.linking.request_access_description': "Il tuo team usa {product} per collaborare. Invia all'amministratore una richiesta di accesso.",
|
|
138
136
|
'fabric.linking.request_access_pending': 'In attesa di approvazione',
|
package/dist/es2019/i18n/ja.js
CHANGED
|
@@ -38,7 +38,7 @@ export default {
|
|
|
38
38
|
'fabric.linking.automation-action.confluence.page.modal.description': '<b>{name}</b> に自動化を適用します。{br}選択可能な項目は、Confluence とスペース管理者によって管理されます。',
|
|
39
39
|
'fabric.linking.automation-action.confluence.page.modal.title': 'ページ自動化',
|
|
40
40
|
'fabric.linking.automation-action.icon.label': '自動化アイコン',
|
|
41
|
-
'fabric.linking.automation-action.title': '
|
|
41
|
+
'fabric.linking.automation-action.title': '自動化ルールを表示',
|
|
42
42
|
'fabric.linking.automation-action.tooltip': '実行する自動化ルールを選択',
|
|
43
43
|
'fabric.linking.beta': 'ベータ版',
|
|
44
44
|
'fabric.linking.cancel': 'キャンセル',
|
|
@@ -76,9 +76,9 @@ export default {
|
|
|
76
76
|
'fabric.linking.download_file': 'ファイルをダウンロード',
|
|
77
77
|
'fabric.linking.edit': '編集',
|
|
78
78
|
'fabric.linking.follow': 'フォロー',
|
|
79
|
-
'fabric.linking.follow_goal': '
|
|
80
|
-
'fabric.linking.follow_goal_description': '
|
|
81
|
-
'fabric.linking.follow_goal_error': '
|
|
79
|
+
'fabric.linking.follow_goal': '目的をフォロー',
|
|
80
|
+
'fabric.linking.follow_goal_description': 'この目的をフォローすると、最新情報の通知が届きます',
|
|
81
|
+
'fabric.linking.follow_goal_error': '目的をフォローする際にエラーが発生しました。接続を確認するか、ページを更新してもう一度お試しください。',
|
|
82
82
|
'fabric.linking.follow_project': 'プロジェクトをフォロー',
|
|
83
83
|
'fabric.linking.follow_project_description': 'フォローすると、このプロジェクトの通知が届きます',
|
|
84
84
|
'fabric.linking.follow_project_error': 'プロジェクトをフォローする際にエラーが発生しました。接続を確認するか、ページを更新してもう一度お試しください。',
|
|
@@ -90,7 +90,6 @@ export default {
|
|
|
90
90
|
'fabric.linking.invalid_permissions': '制限付きコンテンツ',
|
|
91
91
|
'fabric.linking.invalid_permissions_description': 'このプレビューを表示するには、アクセスをリクエストするか別のアカウントで試してください。',
|
|
92
92
|
'fabric.linking.join_to_view': '{context}に参加してこの課題を見る',
|
|
93
|
-
'fabric.linking.last_mentioned_in': '最近言及された場所',
|
|
94
93
|
'fabric.linking.learn_more_about_connecting_account': 'アカウントをアトラシアン製品に接続する方法をご確認ください。',
|
|
95
94
|
'fabric.linking.learn_more_about_smart_links': 'スマート リンクの詳細',
|
|
96
95
|
'fabric.linking.link_safety_warning_message': 'リンク {unsafeLinkText} をクリックすると別のサイトが開きます。<a>実際のリンク先</a>',
|
|
@@ -131,8 +130,7 @@ export default {
|
|
|
131
130
|
'fabric.linking.related_links_modal_unavailable_header': '最近のリンクはありません',
|
|
132
131
|
'fabric.linking.related_links_modal_unavailable_message': 'ここに表示するリンクが見つかりませんでした。更新されたページやその他のコンテンツ タイプについて継続的に確認し、最近のリンクを追加していきます。',
|
|
133
132
|
'fabric.linking.related_links_not_found': 'ここに表示するリンクが見つかりませんでした。',
|
|
134
|
-
'fabric.linking.related_links_view_related_urls
|
|
135
|
-
'fabric.linking.related_work_items_not_found': 'このリンクは他のどこでも言及されていません。',
|
|
133
|
+
'fabric.linking.related_links_view_related_urls': '最近のリンクを表示',
|
|
136
134
|
'fabric.linking.request_access': 'アクセスをリクエスト',
|
|
137
135
|
'fabric.linking.request_access_description': 'あなたのチームは {product} を使用してコラボレーションしています。管理者にアクセス権をリクエストしてください。',
|
|
138
136
|
'fabric.linking.request_access_pending': '承認待ち',
|
|
@@ -159,9 +157,9 @@ export default {
|
|
|
159
157
|
'fabric.linking.unauthorised_account_name': '{context} の非公開ページは表示できません',
|
|
160
158
|
'fabric.linking.unauthorised_account_name_no_provider': '非公開ページは表示できません',
|
|
161
159
|
'fabric.linking.unfollow': 'フォローを解除',
|
|
162
|
-
'fabric.linking.unfollow_goal': '
|
|
163
|
-
'fabric.linking.unfollow_goal_description': '
|
|
164
|
-
'fabric.linking.unfollow_goal_error': '
|
|
160
|
+
'fabric.linking.unfollow_goal': '目的をフォロー解除',
|
|
161
|
+
'fabric.linking.unfollow_goal_description': 'フォロー解除すると、この目的の通知が届かなくなります',
|
|
162
|
+
'fabric.linking.unfollow_goal_error': '目的をフォロー解除する際にエラーが発生しました。接続を確認するか、ページを更新してもう一度お試しください。',
|
|
165
163
|
'fabric.linking.unfollow_project': 'プロジェクトをフォロー解除',
|
|
166
164
|
'fabric.linking.unfollow_project_description': 'フォロー解除すると、プロジェクトの通知が届かなくなります',
|
|
167
165
|
'fabric.linking.unfollow_project_error': 'プロジェクトをフォロー解除する際にエラーが発生しました。接続を確認するか、ページを更新してもう一度お試しください。',
|
package/dist/es2019/i18n/ko.js
CHANGED
|
@@ -38,7 +38,7 @@ export default {
|
|
|
38
38
|
'fabric.linking.automation-action.confluence.page.modal.description': '<b>{name}</b>에 자동화를 적용합니다.{br}사용 가능한 선택 항목은 Confluence 및 스페이스 관리자가 제어합니다.',
|
|
39
39
|
'fabric.linking.automation-action.confluence.page.modal.title': '페이지 자동화',
|
|
40
40
|
'fabric.linking.automation-action.icon.label': '자동화 아이콘',
|
|
41
|
-
'fabric.linking.automation-action.title': '자동화 규칙
|
|
41
|
+
'fabric.linking.automation-action.title': '자동화 규칙 보기',
|
|
42
42
|
'fabric.linking.automation-action.tooltip': '실행할 자동화 규칙을 선택합니다',
|
|
43
43
|
'fabric.linking.beta': '베타',
|
|
44
44
|
'fabric.linking.cancel': '취소',
|
|
@@ -90,7 +90,6 @@ export default {
|
|
|
90
90
|
'fabric.linking.invalid_permissions': '제한된 콘텐츠',
|
|
91
91
|
'fabric.linking.invalid_permissions_description': '이 미리 보기를 확인하려면 액세스를 요청하거나 다른 계정으로 시도해야 합니다.',
|
|
92
92
|
'fabric.linking.join_to_view': '{context}에 참여하여 이 이슈 보기',
|
|
93
|
-
'fabric.linking.last_mentioned_in': '마지막으로 멘션',
|
|
94
93
|
'fabric.linking.learn_more_about_connecting_account': '계정을 Atlassian 제품에 연결하는 방법에 대해 자세히 알아보세요.',
|
|
95
94
|
'fabric.linking.learn_more_about_smart_links': '스마트 링크에 대해 자세히 알아보세요.',
|
|
96
95
|
'fabric.linking.link_safety_warning_message': '{unsafeLinkText} 링크를 클릭하면 다음과 같은 다른 사이트로 이동합니다: <a>actual link here</a>',
|
|
@@ -131,8 +130,7 @@ export default {
|
|
|
131
130
|
'fabric.linking.related_links_modal_unavailable_header': '최근 링크 없음',
|
|
132
131
|
'fabric.linking.related_links_modal_unavailable_message': '여기에 표시할 링크를 찾지 못했습니다. Atlassian은 업데이트된 페이지 또는 기타 콘텐츠 유형의 최근 링크를 지속적으로 검토 및 추가합니다.',
|
|
133
132
|
'fabric.linking.related_links_not_found': '여기에 표시할 링크를 찾지 못했습니다.',
|
|
134
|
-
'fabric.linking.related_links_view_related_urls
|
|
135
|
-
'fabric.linking.related_work_items_not_found': '이 링크는 다른 곳에서는 멘션되지 않았습니다.',
|
|
133
|
+
'fabric.linking.related_links_view_related_urls': '최근 링크 보기',
|
|
136
134
|
'fabric.linking.request_access': '액세스 요청',
|
|
137
135
|
'fabric.linking.request_access_description': '팀이 공동 작업하는 데 {product}을(를) 사용합니다. 관리자에게 액세스 요청을 보내세요.',
|
|
138
136
|
'fabric.linking.request_access_pending': '승인 대기 중',
|
package/dist/es2019/i18n/nb.js
CHANGED
|
@@ -38,7 +38,7 @@ export default {
|
|
|
38
38
|
'fabric.linking.automation-action.confluence.page.modal.description': 'Bruk en automatisering på <b>{name}</b>.{br}De tilgjengelige valgene styres av Confluence- og områdeadministratorer.',
|
|
39
39
|
'fabric.linking.automation-action.confluence.page.modal.title': 'Sideautomatiseringer',
|
|
40
40
|
'fabric.linking.automation-action.icon.label': 'Automatiseringsikon',
|
|
41
|
-
'fabric.linking.automation-action.title': 'Vis automatiseringsregler
|
|
41
|
+
'fabric.linking.automation-action.title': 'Vis automatiseringsregler',
|
|
42
42
|
'fabric.linking.automation-action.tooltip': 'Velg automatiseringsregelen du vil kjøre',
|
|
43
43
|
'fabric.linking.beta': 'Beta',
|
|
44
44
|
'fabric.linking.cancel': 'Avbryt',
|
|
@@ -90,7 +90,6 @@ export default {
|
|
|
90
90
|
'fabric.linking.invalid_permissions': 'Begrenset innhold',
|
|
91
91
|
'fabric.linking.invalid_permissions_description': 'Du må be om tilgang eller prøve en annen konto for kunne se denne forhåndsvisningen.',
|
|
92
92
|
'fabric.linking.join_to_view': 'Bli med {context} for å se denne saken',
|
|
93
|
-
'fabric.linking.last_mentioned_in': 'Sist omtalt i',
|
|
94
93
|
'fabric.linking.learn_more_about_connecting_account': 'Finn ut mer om å koble kontoen din til Atlassian-produkter.',
|
|
95
94
|
'fabric.linking.learn_more_about_smart_links': 'Finn ut mer om smartkoblinger.',
|
|
96
95
|
'fabric.linking.link_safety_warning_message': '{unsafeLinkText}-koblingen tar deg til et annet nettsted, <a>actual link here</a>',
|
|
@@ -131,8 +130,7 @@ export default {
|
|
|
131
130
|
'fabric.linking.related_links_modal_unavailable_header': 'Ingen nylige koblinger',
|
|
132
131
|
'fabric.linking.related_links_modal_unavailable_message': 'Vi finner ingen koblinger å vise her. Vi gjennomgår og legger stadig til nylige koblinger for oppdaterte sider eller andre innholdstyper.',
|
|
133
132
|
'fabric.linking.related_links_not_found': 'Vi finner ingen koblinger å vise her.',
|
|
134
|
-
'fabric.linking.related_links_view_related_urls
|
|
135
|
-
'fabric.linking.related_work_items_not_found': 'Denne koblingen er ikke omtalt andre steder.',
|
|
133
|
+
'fabric.linking.related_links_view_related_urls': 'Vis nylige koblinger',
|
|
136
134
|
'fabric.linking.request_access': 'Be om tilgang',
|
|
137
135
|
'fabric.linking.request_access_description': 'Teamet ditt bruker {product} til å samarbeide. Be administratoren din om tilgang.',
|
|
138
136
|
'fabric.linking.request_access_pending': 'Venter på godkjenning',
|
package/dist/es2019/i18n/nl.js
CHANGED
|
@@ -38,7 +38,7 @@ export default {
|
|
|
38
38
|
'fabric.linking.automation-action.confluence.page.modal.description': 'Een automatisering toepassen op <b>{name}</b>.{br}De beschikbare selecties worden beheerd door Confluence en spacebeheerders.',
|
|
39
39
|
'fabric.linking.automation-action.confluence.page.modal.title': 'Pagina-automatiseringen',
|
|
40
40
|
'fabric.linking.automation-action.icon.label': 'Pictogram automatisering',
|
|
41
|
-
'fabric.linking.automation-action.title': 'Automatiseringsregels
|
|
41
|
+
'fabric.linking.automation-action.title': 'Automatiseringsregels bekijken',
|
|
42
42
|
'fabric.linking.automation-action.tooltip': 'Selecteer een automatiseringsregel om uit te voeren',
|
|
43
43
|
'fabric.linking.beta': 'Bèta',
|
|
44
44
|
'fabric.linking.cancel': 'Annuleren',
|
|
@@ -90,7 +90,6 @@ export default {
|
|
|
90
90
|
'fabric.linking.invalid_permissions': 'Beperkte toegang',
|
|
91
91
|
'fabric.linking.invalid_permissions_description': 'Je moet om toegang vragen of een ander account proberen om deze voorvertoning te bekijken.',
|
|
92
92
|
'fabric.linking.join_to_view': 'Word lid van {context} om deze issue te bekijken',
|
|
93
|
-
'fabric.linking.last_mentioned_in': 'Laatst vermeld in',
|
|
94
93
|
'fabric.linking.learn_more_about_connecting_account': 'Meer informatie over het koppelen van je account aan Atlassian-producten.',
|
|
95
94
|
'fabric.linking.learn_more_about_smart_links': 'Meer informatie over Smart Links.',
|
|
96
95
|
'fabric.linking.link_safety_warning_message': 'De link {unsafeLinkText} is gekoppeld aan een andere site, gebruik <a>actual link here</a>',
|
|
@@ -131,8 +130,7 @@ export default {
|
|
|
131
130
|
'fabric.linking.related_links_modal_unavailable_header': 'Geen recente links',
|
|
132
131
|
'fabric.linking.related_links_modal_unavailable_message': "We konden geen links vinden om hier weer te geven. We beoordelen links voortdurend en voegen regelmatig recente links toe voor bijgewerkte pagina's of andere inhoudstypes.",
|
|
133
132
|
'fabric.linking.related_links_not_found': 'We konden geen links vinden om hier weer te geven.',
|
|
134
|
-
'fabric.linking.related_links_view_related_urls
|
|
135
|
-
'fabric.linking.related_work_items_not_found': 'Deze link wordt nergens anders vermeld.',
|
|
133
|
+
'fabric.linking.related_links_view_related_urls': 'Recente links bekijken',
|
|
136
134
|
'fabric.linking.request_access': 'Toegang aanvragen',
|
|
137
135
|
'fabric.linking.request_access_description': 'Je team gebruikt {product} om samen te werken. Vraag je beheerder om toestemming.',
|
|
138
136
|
'fabric.linking.request_access_pending': 'Wachten op goedkeuring',
|
package/dist/es2019/i18n/pl.js
CHANGED
|
@@ -38,7 +38,7 @@ export default {
|
|
|
38
38
|
'fabric.linking.automation-action.confluence.page.modal.description': 'Zastosuj automatyzacje do <b>{name}</b>.{br}Opcje dostępne do wyboru są kontrolowane przez administratorów Confluence i przestrzeni.',
|
|
39
39
|
'fabric.linking.automation-action.confluence.page.modal.title': 'Automatyzacje stron',
|
|
40
40
|
'fabric.linking.automation-action.icon.label': 'Ikona automatyzacji',
|
|
41
|
-
'fabric.linking.automation-action.title': 'Wyświetl reguły automatyzacji
|
|
41
|
+
'fabric.linking.automation-action.title': 'Wyświetl reguły automatyzacji',
|
|
42
42
|
'fabric.linking.automation-action.tooltip': 'Wybierz regułę automatyzacja do uruchomienia',
|
|
43
43
|
'fabric.linking.beta': 'Wersja beta',
|
|
44
44
|
'fabric.linking.cancel': 'Anuluj',
|
|
@@ -90,7 +90,6 @@ export default {
|
|
|
90
90
|
'fabric.linking.invalid_permissions': 'Treść objęta ograniczeniami',
|
|
91
91
|
'fabric.linking.invalid_permissions_description': 'Musisz poprosić o dostęp lub spróbować innego konta, aby zobaczyć ten podgląd.',
|
|
92
92
|
'fabric.linking.join_to_view': 'Dołącz do {context}, aby wyświetlić to zgłoszenie',
|
|
93
|
-
'fabric.linking.last_mentioned_in': 'Ostatnio wspomniano w',
|
|
94
93
|
'fabric.linking.learn_more_about_connecting_account': 'Dowiedz się więcej o łączeniu konta z produktami Atlassian.',
|
|
95
94
|
'fabric.linking.learn_more_about_smart_links': 'Dowiedz się więcej o inteligentnych łączach.',
|
|
96
95
|
'fabric.linking.link_safety_warning_message': 'Łącze {unsafeLinkText} przeniesie Cię do innej witryny, <a>actual link here</a>',
|
|
@@ -131,8 +130,7 @@ export default {
|
|
|
131
130
|
'fabric.linking.related_links_modal_unavailable_header': 'Brak ostatnio używanych łączy',
|
|
132
131
|
'fabric.linking.related_links_modal_unavailable_message': 'Nie znaleziono żadnych łączy do wyświetlenia tutaj. Stale sprawdzamy i dodajemy najnowsze łącza do zaktualizowanych stron lub innych typów treści.',
|
|
133
132
|
'fabric.linking.related_links_not_found': 'Nie znaleziono żadnych łączy do wyświetlenia tutaj.',
|
|
134
|
-
'fabric.linking.related_links_view_related_urls
|
|
135
|
-
'fabric.linking.related_work_items_not_found': 'To łącze nie jest wspomniane nigdzie indziej.',
|
|
133
|
+
'fabric.linking.related_links_view_related_urls': 'Wyświetl ostatnio używane łącza',
|
|
136
134
|
'fabric.linking.request_access': 'Poproś o dostęp',
|
|
137
135
|
'fabric.linking.request_access_description': 'Twój zespół używa {product} do współpracy. Poproś administratora o dostęp.',
|
|
138
136
|
'fabric.linking.request_access_pending': 'Oczekiwanie na zatwierdzenie',
|
|
@@ -38,7 +38,7 @@ export default {
|
|
|
38
38
|
'fabric.linking.automation-action.confluence.page.modal.description': 'Aplique uma automação para <b>{name}</b>.{br}As seleções disponíveis são controladas pelos administradores do Confluence e do espaço.',
|
|
39
39
|
'fabric.linking.automation-action.confluence.page.modal.title': 'Automações de página',
|
|
40
40
|
'fabric.linking.automation-action.icon.label': 'Ícone de automação',
|
|
41
|
-
'fabric.linking.automation-action.title': '
|
|
41
|
+
'fabric.linking.automation-action.title': 'Ver regras de automação',
|
|
42
42
|
'fabric.linking.automation-action.tooltip': 'Selecione uma regra de automação para ser executada',
|
|
43
43
|
'fabric.linking.beta': 'Beta',
|
|
44
44
|
'fabric.linking.cancel': 'Cancelar',
|
|
@@ -90,7 +90,6 @@ export default {
|
|
|
90
90
|
'fabric.linking.invalid_permissions': 'Conteúdo restrito',
|
|
91
91
|
'fabric.linking.invalid_permissions_description': 'Você precisa solicitar o acesso ou tentar usar outra conta para poder visualizar.',
|
|
92
92
|
'fabric.linking.join_to_view': 'Entre em {context} para ver esse item',
|
|
93
|
-
'fabric.linking.last_mentioned_in': 'Mencionado pela última vez em',
|
|
94
93
|
'fabric.linking.learn_more_about_connecting_account': 'Saiba mais sobre como conectar a conta aos produtos Atlassian.',
|
|
95
94
|
'fabric.linking.learn_more_about_smart_links': 'Saiba mais sobre os links inteligentes.',
|
|
96
95
|
'fabric.linking.link_safety_warning_message': 'O link {unsafeLinkText} acessa um site diferente, <a>link real está aqui</a>',
|
|
@@ -131,8 +130,7 @@ export default {
|
|
|
131
130
|
'fabric.linking.related_links_modal_unavailable_header': 'Sem links recentes',
|
|
132
131
|
'fabric.linking.related_links_modal_unavailable_message': 'A gente não encontrou nenhum link para mostrar aqui. A gente está sempre analisando e adicionando links recentes para páginas atualizadas ou outros tipos de conteúdo.',
|
|
133
132
|
'fabric.linking.related_links_not_found': 'A gente não encontrou nenhum link para mostrar aqui.',
|
|
134
|
-
'fabric.linking.related_links_view_related_urls
|
|
135
|
-
'fabric.linking.related_work_items_not_found': 'Este link não está mencionado em nenhum outro lugar.',
|
|
133
|
+
'fabric.linking.related_links_view_related_urls': 'Ver links recentes',
|
|
136
134
|
'fabric.linking.request_access': 'Solicitar acesso',
|
|
137
135
|
'fabric.linking.request_access_description': 'A equipe já usa o {product} para colaborar. Envie ao administrador uma solicitação de acesso.',
|
|
138
136
|
'fabric.linking.request_access_pending': 'Aprovação pendente',
|
package/dist/es2019/i18n/ru.js
CHANGED
|
@@ -38,7 +38,7 @@ export default {
|
|
|
38
38
|
'fabric.linking.automation-action.confluence.page.modal.description': 'Примените автоматизацию к странице <b>{name}</b>.{br}Доступные варианты контролируются администраторами Confluence и администраторами раздела.',
|
|
39
39
|
'fabric.linking.automation-action.confluence.page.modal.title': 'Автоматизации для страниц',
|
|
40
40
|
'fabric.linking.automation-action.icon.label': 'Значок автоматизации',
|
|
41
|
-
'fabric.linking.automation-action.title': 'Просмотреть правила
|
|
41
|
+
'fabric.linking.automation-action.title': 'Просмотреть правила автоматизации',
|
|
42
42
|
'fabric.linking.automation-action.tooltip': 'Выбрать правило автоматизации для запуска',
|
|
43
43
|
'fabric.linking.beta': 'Бета-версия',
|
|
44
44
|
'fabric.linking.cancel': 'Отмена',
|
|
@@ -90,7 +90,6 @@ export default {
|
|
|
90
90
|
'fabric.linking.invalid_permissions': 'Контент с ограниченным доступом',
|
|
91
91
|
'fabric.linking.invalid_permissions_description': 'Для предварительного просмотра этого элемента запросите право доступа или попробуйте воспользоваться другим аккаунтом.',
|
|
92
92
|
'fabric.linking.join_to_view': 'Для просмотра этой задачи выполните подключение к {context}',
|
|
93
|
-
'fabric.linking.last_mentioned_in': 'Последнее упоминание',
|
|
94
93
|
'fabric.linking.learn_more_about_connecting_account': 'Подробнее о подключении аккаунта к продуктам Atlassian.',
|
|
95
94
|
'fabric.linking.learn_more_about_smart_links': 'Подробнее об интеллектуальных ссылках.',
|
|
96
95
|
'fabric.linking.link_safety_warning_message': 'При переходе по ссылке {unsafeLinkText} вы попадете на другой сайт, <a>actual link here</a>',
|
|
@@ -131,8 +130,7 @@ export default {
|
|
|
131
130
|
'fabric.linking.related_links_modal_unavailable_header': 'Недавних ссылок нет',
|
|
132
131
|
'fabric.linking.related_links_modal_unavailable_message': 'Ссылки для отображения не найдены. Мы постоянно проверяем и добавляем недавние ссылки на обновленные страницы и другие типы контента.',
|
|
133
132
|
'fabric.linking.related_links_not_found': 'Ссылки для отображения не найдены.',
|
|
134
|
-
'fabric.linking.related_links_view_related_urls
|
|
135
|
-
'fabric.linking.related_work_items_not_found': 'Эта ссылка больше нигде не упоминается.',
|
|
133
|
+
'fabric.linking.related_links_view_related_urls': 'Просмотреть недавние ссылки',
|
|
136
134
|
'fabric.linking.request_access': 'Запросить доступ',
|
|
137
135
|
'fabric.linking.request_access_description': 'Ваша команда использует {product} для совместной работы. Запросите у администратора доступ.',
|
|
138
136
|
'fabric.linking.request_access_pending': 'В ожидании подтверждения',
|
package/dist/es2019/i18n/sv.js
CHANGED
|
@@ -38,7 +38,7 @@ export default {
|
|
|
38
38
|
'fabric.linking.automation-action.confluence.page.modal.description': 'Tillämpa en automatisering för <b>{name}</b>.{br}Tillgängliga val styrs av Confluence- och utrymmesadministratörer.',
|
|
39
39
|
'fabric.linking.automation-action.confluence.page.modal.title': 'Sidautomatiseringar',
|
|
40
40
|
'fabric.linking.automation-action.icon.label': 'Automatiseringssymbol',
|
|
41
|
-
'fabric.linking.automation-action.title': 'Visa automatiseringsregler
|
|
41
|
+
'fabric.linking.automation-action.title': 'Visa automatiseringsregler',
|
|
42
42
|
'fabric.linking.automation-action.tooltip': 'Välj en automatiseringsregel att köra',
|
|
43
43
|
'fabric.linking.beta': 'Beta',
|
|
44
44
|
'fabric.linking.cancel': 'Avbryt',
|
|
@@ -90,7 +90,6 @@ export default {
|
|
|
90
90
|
'fabric.linking.invalid_permissions': 'Begränsat innehåll',
|
|
91
91
|
'fabric.linking.invalid_permissions_description': 'Du måste begära åtkomst eller försöka med ett annat konto för att visa förhandsgranskningen.',
|
|
92
92
|
'fabric.linking.join_to_view': 'Anslut till {context} för att visa ärendet',
|
|
93
|
-
'fabric.linking.last_mentioned_in': 'Senast omnämnd i',
|
|
94
93
|
'fabric.linking.learn_more_about_connecting_account': 'Läs mer om att ansluta ditt konto till Atlassian-produkter.',
|
|
95
94
|
'fabric.linking.learn_more_about_smart_links': 'Läs mer om smarta länkar.',
|
|
96
95
|
'fabric.linking.link_safety_warning_message': 'Länken {unsafeLinkText} tar dig till en annan webbplats, <a>actual link here</a>',
|
|
@@ -131,8 +130,7 @@ export default {
|
|
|
131
130
|
'fabric.linking.related_links_modal_unavailable_header': 'Inga senaste länkar',
|
|
132
131
|
'fabric.linking.related_links_modal_unavailable_message': 'Vi hittade inga länkar att visa här. Vi granskar kontinuerligt och lägger till de senaste länkarna för uppdaterade sidor eller andra innehållstyper.',
|
|
133
132
|
'fabric.linking.related_links_not_found': 'Vi hittade inga länkar att visa här.',
|
|
134
|
-
'fabric.linking.related_links_view_related_urls
|
|
135
|
-
'fabric.linking.related_work_items_not_found': 'Länken nämns inte någon annanstans.',
|
|
133
|
+
'fabric.linking.related_links_view_related_urls': 'Visa senaste länkar',
|
|
136
134
|
'fabric.linking.request_access': 'Begär åtkomst',
|
|
137
135
|
'fabric.linking.request_access_description': 'Ditt team använder {product} för att samarbeta. Skicka en åtkomstförfrågan till din administratör.',
|
|
138
136
|
'fabric.linking.request_access_pending': 'Väntar på godkännande',
|
package/dist/es2019/i18n/th.js
CHANGED
|
@@ -38,7 +38,7 @@ export default {
|
|
|
38
38
|
'fabric.linking.automation-action.confluence.page.modal.description': 'ใช้ระบบอัตโนมัติกับ <b>{name}</b>{br}ตัวเลือกที่มีอยู่จะได้รับการควบคุมโดย Confluence และผู้ดูแลระบบพื้นที่',
|
|
39
39
|
'fabric.linking.automation-action.confluence.page.modal.title': 'ระบบอัตโนมัติของหน้าข้อมูล',
|
|
40
40
|
'fabric.linking.automation-action.icon.label': 'ไอคอนระบบอัตโนมัติ',
|
|
41
|
-
'fabric.linking.automation-action.title': '
|
|
41
|
+
'fabric.linking.automation-action.title': 'ดูกกฎอัตโนมัติ',
|
|
42
42
|
'fabric.linking.automation-action.tooltip': 'เลือกกฎอัตโนมัติที่จะเรียกใช้',
|
|
43
43
|
'fabric.linking.beta': 'เบต้า',
|
|
44
44
|
'fabric.linking.cancel': 'ยกเลิก',
|
|
@@ -90,7 +90,6 @@ export default {
|
|
|
90
90
|
'fabric.linking.invalid_permissions': 'เนื้อหาถูกจำกัด',
|
|
91
91
|
'fabric.linking.invalid_permissions_description': 'คุณอาจจำเป็นต้องร้องขอสิทธิ์การเข้าถึงหรือลองบัญชีอื่นเพื่อดูการแสดงตัวอย่างนี้',
|
|
92
92
|
'fabric.linking.join_to_view': 'เข้าร่วม {context} เพื่อดูปัญหานี้',
|
|
93
|
-
'fabric.linking.last_mentioned_in': 'กล่าวถึงล่าสุดใน',
|
|
94
93
|
'fabric.linking.learn_more_about_connecting_account': 'เรียนรู้เพิ่มเติมเกี่ยวกับการเชื่อมต่อบัญชีของคุณกับผลิตภัณฑ์ของ Atlassian',
|
|
95
94
|
'fabric.linking.learn_more_about_smart_links': 'เรียนรู้เพิ่มเติมเกี่ยวกับสมาร์ทลิงก์ (ลิงก์อัจฉริยะ)',
|
|
96
95
|
'fabric.linking.link_safety_warning_message': 'ลิงก์ {unsafeLinkText} จะนำคุณไปยังเว็บไซต์อื่น <a>ลิงก์จริงอยู่ที่นี่</a>',
|
|
@@ -131,8 +130,7 @@ export default {
|
|
|
131
130
|
'fabric.linking.related_links_modal_unavailable_header': 'ไม่มีลิงก์ล่าสุด',
|
|
132
131
|
'fabric.linking.related_links_modal_unavailable_message': 'เราไม่พบลิงก์ที่จะแสดงที่นี่ เราตรวจสอบอย่างต่อเนื่องและเพิ่มลิงก์ล่าสุดสำหรับหน้าข้อมูลที่อัปเดตหรือประเภทเนื้อหาอื่น ๆ',
|
|
133
132
|
'fabric.linking.related_links_not_found': 'เราไม่พบลิงก์ที่จะแสดงที่นี่',
|
|
134
|
-
'fabric.linking.related_links_view_related_urls
|
|
135
|
-
'fabric.linking.related_work_items_not_found': 'ลิงก์นี้ไม่ได้ถูกกล่าวถึงในที่อื่น',
|
|
133
|
+
'fabric.linking.related_links_view_related_urls': 'ดูลิงก์ล่าสุด',
|
|
136
134
|
'fabric.linking.request_access': 'ส่งคำขอเพื่อเข้าถึง',
|
|
137
135
|
'fabric.linking.request_access_description': 'ทีมของคุณใช้ {product} ในการทำงานร่วมกัน ส่งคำขอการเข้าถึงไปยังผู้ดูแลระบบของคุณ',
|
|
138
136
|
'fabric.linking.request_access_pending': 'รอการอนุมัติ',
|
package/dist/es2019/i18n/tr.js
CHANGED
|
@@ -38,7 +38,7 @@ export default {
|
|
|
38
38
|
'fabric.linking.automation-action.confluence.page.modal.description': '<b>{name}</b> sayfasına bir otomasyon uygulayın.{br}Kullanılabilir seçimler Confluence ve alan yöneticileri tarafından kontrol edilir.',
|
|
39
39
|
'fabric.linking.automation-action.confluence.page.modal.title': 'Sayfa otomasyonları',
|
|
40
40
|
'fabric.linking.automation-action.icon.label': 'Otomasyon simgesi',
|
|
41
|
-
'fabric.linking.automation-action.title': 'Otomasyon kurallarını
|
|
41
|
+
'fabric.linking.automation-action.title': 'Otomasyon kurallarını görüntü',
|
|
42
42
|
'fabric.linking.automation-action.tooltip': 'Çalıştırılacak otomasyon kuralını seçin',
|
|
43
43
|
'fabric.linking.beta': 'Beta',
|
|
44
44
|
'fabric.linking.cancel': 'İptal',
|
|
@@ -76,9 +76,9 @@ export default {
|
|
|
76
76
|
'fabric.linking.download_file': 'Dosyayı indir',
|
|
77
77
|
'fabric.linking.edit': 'Düzenle',
|
|
78
78
|
'fabric.linking.follow': 'Takip Et',
|
|
79
|
-
'fabric.linking.follow_goal': '
|
|
80
|
-
'fabric.linking.follow_goal_description': 'Güncellemelerle ilgili bildirimler almak için bu
|
|
81
|
-
'fabric.linking.follow_goal_error': '
|
|
79
|
+
'fabric.linking.follow_goal': 'Amacı takip et',
|
|
80
|
+
'fabric.linking.follow_goal_description': 'Güncellemelerle ilgili bildirimler almak için bu amacı takip edin',
|
|
81
|
+
'fabric.linking.follow_goal_error': 'Amacı takip etmeye çalışırken bir sorunla karşılaşıldı. Bağlantınızı kontrol edin, sayfayı yenileyin ve tekrar deneyin.',
|
|
82
82
|
'fabric.linking.follow_project': 'Projeyi takip et',
|
|
83
83
|
'fabric.linking.follow_project_description': 'Bu projeyle ilgili bildirimler almak için takip edin',
|
|
84
84
|
'fabric.linking.follow_project_error': 'Projeyi takip etmeye çalışırken bir sorunla karşılaşıldı. Bağlantınızı kontrol edin, sayfayı yenileyin ve tekrar deneyin.',
|
|
@@ -90,7 +90,6 @@ export default {
|
|
|
90
90
|
'fabric.linking.invalid_permissions': 'Kısıtlanmış içerik',
|
|
91
91
|
'fabric.linking.invalid_permissions_description': 'Bu önizlemeyi görüntülemek için erişim izni talep etmeniz veya farklı bir hesap kullanmanız gerekir.',
|
|
92
92
|
'fabric.linking.join_to_view': 'Bu konuyu görüntülemek için {context} ürününe katılın',
|
|
93
|
-
'fabric.linking.last_mentioned_in': 'En son şurada bahsedildi:',
|
|
94
93
|
'fabric.linking.learn_more_about_connecting_account': 'Hesabınızı Atlassian ürünlerine bağlamak hakkında daha fazla bilgi edinin.',
|
|
95
94
|
'fabric.linking.learn_more_about_smart_links': 'Akıllı Bağlantılar hakkında daha fazla bilgi edinin.',
|
|
96
95
|
'fabric.linking.link_safety_warning_message': '{unsafeLinkText} bağlantısı sizi farklı bir siteye (<a>actual link here</a>) yönlendiriyor',
|
|
@@ -131,8 +130,7 @@ export default {
|
|
|
131
130
|
'fabric.linking.related_links_modal_unavailable_header': 'En son bağlantı yok',
|
|
132
131
|
'fabric.linking.related_links_modal_unavailable_message': 'Burada gösterecek herhangi bir bağlantı bulunamadı. Güncellenen sayfalar veya diğer içerik türleri için en son bağlantıları sürekli olarak ekliyor ve bunları inceliyoruz.',
|
|
133
132
|
'fabric.linking.related_links_not_found': 'Burada gösterecek herhangi bir bağlantı bulunamadı.',
|
|
134
|
-
'fabric.linking.related_links_view_related_urls
|
|
135
|
-
'fabric.linking.related_work_items_not_found': 'Bu bağlantıdan başka hiçbir yerde bahsedilmedi.',
|
|
133
|
+
'fabric.linking.related_links_view_related_urls': 'En son bağlantıları görüntüle',
|
|
136
134
|
'fabric.linking.request_access': 'Erişim talep edin',
|
|
137
135
|
'fabric.linking.request_access_description': 'Takımınız iş birliği yapmak için {product} kullanıyor. Yöneticinize bir erişim talebi gönderin.',
|
|
138
136
|
'fabric.linking.request_access_pending': 'Onay bekleniyor',
|
|
@@ -159,9 +157,9 @@ export default {
|
|
|
159
157
|
'fabric.linking.unauthorised_account_name': '{context} üzerindeki özel sayfalar görüntülenemiyor',
|
|
160
158
|
'fabric.linking.unauthorised_account_name_no_provider': 'Özel sayfalar görüntülenemiyor',
|
|
161
159
|
'fabric.linking.unfollow': 'Takibi bırak',
|
|
162
|
-
'fabric.linking.unfollow_goal': '
|
|
163
|
-
'fabric.linking.unfollow_goal_description': 'Bu
|
|
164
|
-
'fabric.linking.unfollow_goal_error': '
|
|
160
|
+
'fabric.linking.unfollow_goal': 'Amacı takip etmeyi bırak',
|
|
161
|
+
'fabric.linking.unfollow_goal_description': 'Bu amaçla ilgili bildirim almayı durdurmak için takip etmeyi bırakın',
|
|
162
|
+
'fabric.linking.unfollow_goal_error': 'Amacı takip etmeyi bırakmaya çalışırken bir sorunla karşılaşıldı. Bağlantınızı kontrol edin, sayfayı yenileyin ve tekrar deneyin.',
|
|
165
163
|
'fabric.linking.unfollow_project': 'Projeyi takip etmeyi bırak',
|
|
166
164
|
'fabric.linking.unfollow_project_description': 'Proje bildirimi almayı durdurmak için takip etmeyi bırakın',
|
|
167
165
|
'fabric.linking.unfollow_project_error': 'Projeyi takip etmeyi bırakmaya çalışırken bir sorunla karşılaşıldı. Bağlantınızı kontrol edin, sayfayı yenileyin ve tekrar deneyin.',
|