diff --git a/src/legacy/core_plugins/kibana/public/home/components/tutorial/__snapshots__/introduction.test.js.snap b/src/legacy/core_plugins/kibana/public/home/components/tutorial/__snapshots__/introduction.test.js.snap index 1e2361844d644..74988a9c3d14d 100644 --- a/src/legacy/core_plugins/kibana/public/home/components/tutorial/__snapshots__/introduction.test.js.snap +++ b/src/legacy/core_plugins/kibana/public/home/components/tutorial/__snapshots__/introduction.test.js.snap @@ -50,7 +50,7 @@ exports[`props exportedFieldsUrl 1`] = ` fill={false} href="exported_fields_url" iconSide="left" - rel="noopener noreferrer" + rel="noopener" target="_blank" type="button" > diff --git a/src/legacy/core_plugins/kibana/public/home/components/tutorial/introduction.js b/src/legacy/core_plugins/kibana/public/home/components/tutorial/introduction.js index 1ff91a55b6196..60cf56a51698e 100644 --- a/src/legacy/core_plugins/kibana/public/home/components/tutorial/introduction.js +++ b/src/legacy/core_plugins/kibana/public/home/components/tutorial/introduction.js @@ -58,7 +58,7 @@ function IntroductionUI({ description, previewUrl, title, exportedFieldsUrl, ico diff --git a/src/legacy/core_plugins/kibana/ui_setting_defaults.js b/src/legacy/core_plugins/kibana/ui_setting_defaults.js index 4583444e7b193..565a2e6f31a65 100644 --- a/src/legacy/core_plugins/kibana/ui_setting_defaults.js +++ b/src/legacy/core_plugins/kibana/ui_setting_defaults.js @@ -47,7 +47,7 @@ export function getUiSettingDefaults() { 'kbn.advancedSettings.query.queryStringOptionsText', values: { optionsLink: - '' + + '' + i18n.translate('kbn.advancedSettings.query.queryStringOptions.optionsLinkText', { defaultMessage: 'Options', }) + @@ -94,7 +94,7 @@ export function getUiSettingDefaults() { 'kbn.advancedSettings.sortOptionsText', values: { optionsLink: - '' + + '' + i18n.translate('kbn.advancedSettings.sortOptions.optionsLinkText', { defaultMessage: 'Options', }) + @@ -332,7 +332,7 @@ export function getUiSettingDefaults() { setRequestReferenceSetting: 'courier:setRequestPreference', customSettingValue: '"custom"', requestPreferenceLink: - '' + + '' + i18n.translate('kbn.advancedSettings.courier.customRequestPreference.requestPreferenceLinkText', { defaultMessage: 'Request Preference', }) + @@ -354,7 +354,7 @@ export function getUiSettingDefaults() { values: { maxRequestsLink: `max_concurrent_shard_requests` + target="_blank" rel="noopener" >max_concurrent_shard_requests` }, }), category: ['search'], @@ -362,7 +362,7 @@ export function getUiSettingDefaults() { 'search:includeFrozen': { name: 'Search in frozen indices', description: `Will include frozen indices in results if enabled. Searching through frozen indices + target="_blank" rel="noopener">frozen indices in results if enabled. Searching through frozen indices might increase the search time.`, value: false, category: ['search'], @@ -422,7 +422,7 @@ export function getUiSettingDefaults() { values: { cellDimensionsLink: `` + + target="_blank" rel="noopener">` + i18n.translate('kbn.advancedSettings.visualization.tileMap.maxPrecision.cellDimensionsLinkText', { defaultMessage: 'Explanation of cell dimensions', }) + @@ -819,7 +819,7 @@ export function getUiSettingDefaults() { values: { acceptedFormatsLink: `` + + target="_blank" rel="noopener">` + i18n.translate('kbn.advancedSettings.timepicker.quickRanges.acceptedFormatsLinkText', { defaultMessage: 'accepted formats', }) + @@ -869,7 +869,7 @@ export function getUiSettingDefaults() { values: { markdownLink: `` + + target="_blank" rel="noopener">` + i18n.translate('kbn.advancedSettings.notifications.banner.markdownLinkText', { defaultMessage: 'Markdown supported', }) + diff --git a/src/legacy/core_plugins/region_map/public/region_map_vis_params.html b/src/legacy/core_plugins/region_map/public/region_map_vis_params.html index 6de8c8565f07d..e24787be1e330 100644 --- a/src/legacy/core_plugins/region_map/public/region_map_vis_params.html +++ b/src/legacy/core_plugins/region_map/public/region_map_vis_params.html @@ -29,7 +29,7 @@ diff --git a/src/legacy/ui/public/vis/editors/default/agg_select.html b/src/legacy/ui/public/vis/editors/default/agg_select.html index 0aaa5bf47f9da..d899fb0e72026 100644 --- a/src/legacy/ui/public/vis/editors/default/agg_select.html +++ b/src/legacy/ui/public/vis/editors/default/agg_select.html @@ -19,7 +19,7 @@ href="{{aggHelpLink}}" class="pull-right visEditorAggSelect__helpLink" target="_blank" - rel="noopener noreferrer" + rel="noopener" i18n-id="common.ui.vis.editors.aggSelect.helpLinkLabel" i18n-default-message="{aggTitle} help" i18n-values="{ aggTitle: agg.type.title }" diff --git a/x-pack/plugins/apm/public/components/shared/PropertiesTable/__test__/__snapshots__/PropertiesTable.test.tsx.snap b/x-pack/plugins/apm/public/components/shared/PropertiesTable/__test__/__snapshots__/PropertiesTable.test.tsx.snap index b3294b386257f..535f46089c3a5 100644 --- a/x-pack/plugins/apm/public/components/shared/PropertiesTable/__test__/__snapshots__/PropertiesTable.test.tsx.snap +++ b/x-pack/plugins/apm/public/components/shared/PropertiesTable/__test__/__snapshots__/PropertiesTable.test.tsx.snap @@ -12,7 +12,7 @@ exports[`PropertiesTable AgentFeatureTipMessage component should render when doc diff --git a/x-pack/plugins/apm/public/components/shared/PropertiesTable/index.tsx b/x-pack/plugins/apm/public/components/shared/PropertiesTable/index.tsx index a8bcfd11ad629..0bae9e8867a74 100644 --- a/x-pack/plugins/apm/public/components/shared/PropertiesTable/index.tsx +++ b/x-pack/plugins/apm/public/components/shared/PropertiesTable/index.tsx @@ -91,7 +91,7 @@ export function AgentFeatureTipMessage({ {getAgentFeatureText(featureName)}{' '} - + {i18n.translate( 'xpack.apm.propertiesTable.agentFeature.learnMoreLinkLabel', { defaultMessage: 'Learn more in the documentation.' } diff --git a/x-pack/plugins/index_management/public/sections/index_list/components/detail_panel/edit_settings_json/edit_settings_json.js b/x-pack/plugins/index_management/public/sections/index_list/components/detail_panel/edit_settings_json/edit_settings_json.js index b6c7a71862864..2bd4319fcc616 100644 --- a/x-pack/plugins/index_management/public/sections/index_list/components/detail_panel/edit_settings_json/edit_settings_json.js +++ b/x-pack/plugins/index_management/public/sections/index_list/components/detail_panel/edit_settings_json/edit_settings_json.js @@ -145,7 +145,7 @@ export class EditSettingsJson extends React.PureComponent { = ({ url }) => ( - + Label Text diff --git a/x-pack/plugins/ml/public/components/documentation_help_link/documentation_help_link_view.js b/x-pack/plugins/ml/public/components/documentation_help_link/documentation_help_link_view.js index bd86b7f6b8e36..8c02b19fce7ef 100644 --- a/x-pack/plugins/ml/public/components/documentation_help_link/documentation_help_link_view.js +++ b/x-pack/plugins/ml/public/components/documentation_help_link/documentation_help_link_view.js @@ -12,7 +12,7 @@ export function DocumentationHelpLink({ fullUrl, label }) { return ( diff --git a/x-pack/plugins/searchprofiler/public/templates/index.html b/x-pack/plugins/searchprofiler/public/templates/index.html index fb4349dfdb9f0..9ddac34a3d073 100644 --- a/x-pack/plugins/searchprofiler/public/templates/index.html +++ b/x-pack/plugins/searchprofiler/public/templates/index.html @@ -41,7 +41,7 @@ i18n-id="xpack.searchProfiler.registerLicenseDescription" i18n-default-message="Please {registerLicenseLink} to continue using the Search Profiler" i18n-values="{ - html_registerLicenseLink: '' + registerLicenseLinkLabel + '', + html_registerLicenseLink: '' + registerLicenseLinkLabel + '', }" >

diff --git a/x-pack/plugins/watcher/public/sections/watch_edit/components/watch_edit_detail/watch_edit_detail.html b/x-pack/plugins/watcher/public/sections/watch_edit/components/watch_edit_detail/watch_edit_detail.html index 9e114ef004ba4..2b03a5f91930f 100644 --- a/x-pack/plugins/watcher/public/sections/watch_edit/components/watch_edit_detail/watch_edit_detail.html +++ b/x-pack/plugins/watcher/public/sections/watch_edit/components/watch_edit_detail/watch_edit_detail.html @@ -59,7 +59,7 @@