mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[Enterprise Search] Replace connectors ruby references with python (#155374)
## Summary This replaces all references to the Ruby repository with references to the Python repository for connectors. --------- Co-authored-by: Navarone Feekery <13634519+navarone-feekery@users.noreply.github.com> Co-authored-by: Liam Thompson <32779855+leemthompo@users.noreply.github.com>
This commit is contained in:
parent
134af87114
commit
9e712bb6fe
2 changed files with 8 additions and 8 deletions
|
@ -124,7 +124,7 @@ export const ConnectorConfiguration: React.FC = () => {
|
|||
values={{
|
||||
link: (
|
||||
<EuiLink
|
||||
href="https://github.com/elastic/connectors-ruby/tree/main/lib/connectors"
|
||||
href="https://github.com/elastic/connectors-python/tree/main/connectors"
|
||||
target="_blank"
|
||||
external
|
||||
>
|
||||
|
@ -145,7 +145,7 @@ export const ConnectorConfiguration: React.FC = () => {
|
|||
values={{
|
||||
link: (
|
||||
<EuiLink
|
||||
href="https://github.com/elastic/connectors-ruby/tree/main/config"
|
||||
href="https://github.com/elastic/connectors-python/blob/main/config.yml"
|
||||
target="_blank"
|
||||
external
|
||||
>
|
||||
|
@ -356,7 +356,7 @@ export const ConnectorConfiguration: React.FC = () => {
|
|||
</EuiFlexItem>
|
||||
<EuiFlexItem>
|
||||
<EuiLink
|
||||
href="https://github.com/elastic/connectors-ruby#readme"
|
||||
href="https://github.com/elastic/connectors-python/blob/main/README.md"
|
||||
target="_blank"
|
||||
>
|
||||
{i18n.translate(
|
||||
|
@ -382,7 +382,7 @@ export const ConnectorConfiguration: React.FC = () => {
|
|||
</EuiFlexItem>
|
||||
<EuiFlexItem>
|
||||
<EuiLink
|
||||
href="https://github.com/elastic/connectors-ruby/issues"
|
||||
href="https://github.com/elastic/connectors-python/issues"
|
||||
target="_blank"
|
||||
>
|
||||
{i18n.translate(
|
||||
|
|
|
@ -18,16 +18,16 @@ export const ConnectorConfigurationConfig: React.FC = () => {
|
|||
<EuiText size="s">
|
||||
<FormattedMessage
|
||||
id="xpack.enterpriseSearch.content.indices.configurationConnector.config.description.firstParagraph"
|
||||
defaultMessage="Now that your connector is deployed, enhance the deployed connector client for your custom data source. There’s an {link} for you to start adding your data source specific implementation logic."
|
||||
defaultMessage="Now that your connector is deployed, enhance the connector client for your custom data source. There are several {link} you can customize with your own additional implementation logic."
|
||||
values={{
|
||||
link: (
|
||||
<EuiLink
|
||||
href="https://github.com/elastic/connectors-ruby/tree/main/lib/connectors/example"
|
||||
href="https://github.com/elastic/connectors-python/tree/main/connectors/sources"
|
||||
target="_blank"
|
||||
>
|
||||
{i18n.translate(
|
||||
'xpack.enterpriseSearch.content.indices.configurationConnector.config.connectorClientLink',
|
||||
{ defaultMessage: 'example connector client' }
|
||||
{ defaultMessage: 'connectors' }
|
||||
)}
|
||||
</EuiLink>
|
||||
),
|
||||
|
@ -56,7 +56,7 @@ export const ConnectorConfigurationConfig: React.FC = () => {
|
|||
</EuiLink>
|
||||
),
|
||||
issuesLink: (
|
||||
<EuiLink href="https://github.com/elastic/connectors-ruby/issues" target="_blank">
|
||||
<EuiLink href="https://github.com/elastic/connectors-python/issues" target="_blank">
|
||||
{i18n.translate(
|
||||
'xpack.enterpriseSearch.content.indices.configurationConnector.config.issuesLink',
|
||||
{ defaultMessage: 'issue' }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue