diff --git a/src/module-elasticsuite-core/Model/Healthcheck/GhostIndicesCheck.php b/src/module-elasticsuite-core/Model/Healthcheck/GhostIndicesCheck.php index deea5db57..3f8268229 100644 --- a/src/module-elasticsuite-core/Model/Healthcheck/GhostIndicesCheck.php +++ b/src/module-elasticsuite-core/Model/Healthcheck/GhostIndicesCheck.php @@ -80,18 +80,25 @@ public function getDescription(): string if ($ghostCount > 0) { // Description when ghost indices are found. // @codingStandardsIgnoreStart - return __( - 'You have <strong>%1 ghost indices</strong>. Ghost indices have a footprint on your Elasticsearch cluster health. ' - . 'You should consider removing them.<br/>' - . 'Click <a href="%2"><strong>here</strong></a> to go to the <strong>Elasticsuite Indices</strong> page to take appropriate actions.', - $ghostCount, - $this->getElasticsuiteIndicesUrl() + return implode( + '<br />', + [ + __( + 'You have <strong>%1 ghost indices</strong>. Ghost indices have a footprint on your Elasticsearch cluster health. ' + . 'You should consider removing them.', + $ghostCount + ), + __( + 'Click <a href="%1"><strong>here</strong></a> to go to the <strong>Elasticsuite Indices</strong> page to take appropriate actions.', + $this->getElasticsuiteIndicesUrl() + ) + ] ); // @codingStandardsIgnoreEnd } // Description when no ghost indices are found. - return __('There are no ghost indexes in your Elasticsearch cluster. No action is required at this time.'); + return __('There are no ghost indices in your Elasticsearch cluster. No action is required at this time.'); } /** diff --git a/src/module-elasticsuite-core/Model/Healthcheck/PrimaryShardsConfigCheck.php b/src/module-elasticsuite-core/Model/Healthcheck/PrimaryShardsConfigCheck.php index 5f7f3c6e1..c33cf3ad3 100644 --- a/src/module-elasticsuite-core/Model/Healthcheck/PrimaryShardsConfigCheck.php +++ b/src/module-elasticsuite-core/Model/Healthcheck/PrimaryShardsConfigCheck.php @@ -101,14 +101,23 @@ public function getDescription(): string if ($status === CheckInterface::WARNING_STATUS) { // Description when the shard's configuration is incorrect. // @codingStandardsIgnoreStart - return __( - 'The number of shards configured for Elasticsuite <strong>is incorrect.</strong> ' - . 'You don\'t need to use <strong>%1 shards</strong> since your biggest Elasticsuite index is only <strong>%2</strong>.<br/>' - . 'Click <a href="%3"><strong>here</strong></a> to go to the <strong>Elasticsuite Basic Settings</strong> page and change your <strong>Number of Shards per Index</strong> parameter according to our <a href="%4" target="_blank"><strong>Wiki page</strong></a>.', - $numberOfShards, - $maxIndexSize['human_size'], - $this->getElasticsuiteConfigUrl(), - self::ES_INDICES_SETTINGS_WIKI_PAGE + return implode( + '<br />', + [ + __( + 'The <strong>number of shards</strong> configured for Elasticsuite is <strong>incorrect</strong>.' + ), + __( + 'You do not need to use <strong>%1 shards</strong> since your biggest Elasticsuite index is only <strong>%2</strong>.', + $numberOfShards, + $maxIndexSize['human_size'] + ), + __( + 'Click <a href="%1"><strong>here</strong></a> to go to the <strong>Elasticsuite Config</strong> page and change your <strong>Number of Shards per Index</strong> parameter according to our <a href="%2" target="_blank"><strong>Wiki page</strong></a>.', + $this->getElasticsuiteConfigUrl(), + self::ES_INDICES_SETTINGS_WIKI_PAGE + ) + ] ); // @codingStandardsIgnoreEnd } diff --git a/src/module-elasticsuite-core/Model/Healthcheck/ReplicasConfigCheck.php b/src/module-elasticsuite-core/Model/Healthcheck/ReplicasConfigCheck.php index aa129c205..520dee820 100644 --- a/src/module-elasticsuite-core/Model/Healthcheck/ReplicasConfigCheck.php +++ b/src/module-elasticsuite-core/Model/Healthcheck/ReplicasConfigCheck.php @@ -95,14 +95,20 @@ public function getDescription(): string if ($status === CheckInterface::WARNING_STATUS) { // Description when the replicas configuration is incorrect. // @codingStandardsIgnoreStart - return __( - 'The number of replicas configured for Elasticsuite <strong>is incorrect.</strong> ' - . 'You can\'t use <strong>%1 replicas</strong> since there is only <strong>%2 nodes</strong> in your Elasticsearch cluster.<br/>' - . 'Click <a href="%3"><strong>here</strong></a> to go to the <strong>Elasticsuite Basic Settings</strong> page and change your <strong>Number of Replicas per Index</strong> parameter according to our <a href="%4" target="_blank"><strong>Wiki page</strong></a>.', - $this->helper->getNumberOfReplicas(), - $this->getNumberOfNodes(), - $this->getElasticsuiteConfigUrl(), - self::ES_INDICES_SETTINGS_WIKI_PAGE + return implode( + '<br />', + [ + __( + 'The <strong>number of replicas</strong> configured for Elasticsuite is <strong>incorrect</strong>. You cannot use <strong>%1 replicas</strong> since there is only <strong>%2 nodes</strong> in your Elasticsearch cluster.', + $this->helper->getNumberOfReplicas(), + $this->getNumberOfNodes() + ), + __( + 'Click <a href="%1"><strong>here</strong></a> to go to the <strong>Elasticsuite Config</strong> page and change your <strong>Number of Replicas per Index</strong> parameter according to our <a href="%2" target="_blank"><strong>Wiki page</strong></a>.', + $this->getElasticsuiteConfigUrl(), + self::ES_INDICES_SETTINGS_WIKI_PAGE + ), + ] ); // @codingStandardsIgnoreEnd } diff --git a/src/module-elasticsuite-core/i18n/de_DE.csv b/src/module-elasticsuite-core/i18n/de_DE.csv index 68a6015c1..2aa35d949 100644 --- a/src/module-elasticsuite-core/i18n/de_DE.csv +++ b/src/module-elasticsuite-core/i18n/de_DE.csv @@ -74,8 +74,6 @@ "Search engine powered by %1","Suchmaschine unterstützt von %1" "Miscellaneous","Sonstiges" "The value should be different to zero.","Der Wert sollte sich von Null unterscheiden." -"The number of replicas configured for Elasticsuite is incorrect. You cannot use <strong>%1 replicas</strong> since there is only <strong>%2 nodes</strong> in your Elasticsearch cluster.","Die Anzahl der Repliken, die für Elasticsuite konfiguriert wurden, ist falsch. Sie können <strong>%1 Repliken</strong> nicht verwenden, da es nur <strong>%2 Knoten</strong> in Ihrem Elasticsearch Cluster gibt." -"Click here to go to the <a href=""%1""><strong>Elasticsuite Config</strong></a> page and change your <strong>Number of Replicas per Index</strong> parameter according to our <a href=""%2"" target=""_blank""><strong>wiki page</strong></a>.","Klicken Sie hier, um zur <a href=""%1""><strong>Elasticsuite Konfiguration</strong></a> Seite zu wechseln und Ihre <strong>Anzahl der Replikas pro Index</strong> Parameter entsprechend unserer <a href=""%2"" target=""_blank""><strong>Wiki-Seite</strong></a> zu ändern." "Span Match Configuration","Span Match Konfiguration" "Enable Boost on Span Match","Boost bei Span Match aktivieren" "Span Match Boost Value","Span Match Boost Wert" @@ -120,3 +118,14 @@ "If enabled, when indexing a reference like ""DC3000"", it will be as if ""DC3"" was indexed instead (leading to independant elements ""DC"", ""3"" and ""DC3"" in the search index). This will allow someone searching for ""dc3"" or ""dc 3"" to find the product with the exact ""DC3000"" sku.","Wenn aktiviert, wenn eine Referenz wie ""DC3000"" indiziert wird wird es sein, als ob ""DC3"" stattdessen indiziert wurde (was zu unabhängigen Elementen ""DC"", ""3"" und ""DC3"" im Suchindex). Dadurch kann jemand, der nach ""dc3"" oder ""dc 3"" sucht, das Produkt mit dem genauen ""DC3000"" sku finden." "Reduce series of contiguous zeroes in numeric parts","Reduziert die Serie der angrenzenden Nullen in numerischen Teilen" "If enabled, when indexing a reference like ""PL20004"", it will be as if ""PL204"" was indexed instead (leading to independant elements ""PL"", ""204"" and ""PL204"" in the search index). This will allow someone searching for ""pl204"", ""pl 204"", ""pl2004"" or ""pl 2004"" to find the product with the exact ""PL2004"" sku.","Wenn aktiviert, wenn eine Referenz wie ""PL20004"" indiziert wird wird es sein, als ob ""PL204"" stattdessen indiziert wurde (was zu unabhängigen Elementen ""PL"", ""204"" und ""PL204"" im Suchindex führt). Dadurch kann jemand, der nach ""pl204"", ""pl 204"", ""pl2004"" oder ""pl 2004"" sucht, das Produkt mit dem genauen ""PL2004"" sku finden." +"The number of shards is properly configured for the Elasticsearch cluster. No action is required at this time.","Die Anzahl der Shards ist für den Elasticsearch-Cluster ordnungsgemäß konfiguriert. Derzeit sind keine Maßnahmen erforderlich." +"The <strong>number of shards</strong> configured for Elasticsuite is <strong>incorrect</strong>.","Die <strong>Anzahl der Scherben</strong> für Elasticsuite konfigurierten ist <strong>falsch</strong>." +"You do not need to use <strong>%1 shards</strong> since your biggest Elasticsuite index is only <strong>%2</strong>.","Sie müssen keine <strong>%1 Scherben</strong> verwenden, da Ihr größter Elasticsuite-Index nur <strong>%2</strong> ist." +"Click <a href=""%1""><strong>here</strong></a> to go to the <strong>Elasticsuite Config</strong> page and change your <strong>Number of Shards per Index</strong> parameter according to our <a href=""%2"" target=""_blank""><strong>Wiki page</strong></a>.","Klicken Sie <a href=""%1""><strong>hier</strong></a>, um zur <strong>Elasticsuite Konfiguration</strong> Seite zu wechseln und Ihre <strong>Anzahl der Scherben pro Index</strong> Parameter entsprechend unserer <a href=""%2"" target=""_blank""><strong>Wiki-Seite</strong></a> zu ändern." +"The number of replicas is properly configured for the Elasticsearch cluster. No action is required at this time.","Die Anzahl der Replikate ist für den Elasticsearch-Cluster ordnungsgemäß konfiguriert. Derzeit sind keine Maßnahmen erforderlich." +"The <strong>number of replicas</strong> configured for Elasticsuite is <strong>incorrect</strong>. You cannot use <strong>%1 replicas</strong> since there is only <strong>%2 nodes</strong> in your Elasticsearch cluster.","Die <strong>Anzahl der Repliken</strong>, die für Elasticsuite konfiguriert wurden, ist <strong>falsch</strong>. Sie können <strong>%1 Repliken</strong> nicht verwenden, da es nur <strong>%2 Knoten</strong> in Ihrem Elasticsearch Cluster gibt." +"Click <a href=""%1""><strong>here</strong></a> to go to the <strong>Elasticsuite Config</strong> page and change your <strong>Number of Replicas per Index</strong> parameter according to our <a href=""%2"" target=""_blank""><strong>Wiki page</strong></a>.","Klicken Sie <a href=""%1""><strong>hier</strong></a>, um zur <strong>Elasticsuite Konfiguration</strong> Seite zu wechseln und Ihre <strong>Anzahl der Replikas pro Index</strong> Parameter entsprechend unserer <a href=""%2"" target=""_blank""><strong>Wiki-Seite</strong></a> zu ändern." +"There are no ghost indices in your Elasticsearch cluster. No action is required at this time.","In Ihrem Elasticsearch-Cluster gibt es keine Geisterindizes. Derzeit sind keine Maßnahmen erforderlich." +"You have <strong>%1 ghost indices</strong>. Ghost indices have a footprint on your Elasticsearch cluster health. You should consider removing them.","Sie haben <strong>%1 Geister-Indizes</strong>. Geister-Indizes haben einen Fußabdruck auf Ihrer Elasticsearch Cluster-Gesundheit. Sie sollten in Erwägung ziehen, sie zu entfernen." +"Click here to go to the <a href=""%1""><strong>Elasticsuite Indices</strong></a> page to take appropriate actions.","Klicken Sie hier, um zu den <a href=""%1""><strong>Elasticsuite Indizes</strong></a> Seite zu gelangen, um entsprechende Aktionen durchzuführen." +"Click <a href=""%1""><strong>here</strong></a> to go to the <strong>Elasticsuite Indices</strong> page to take appropriate actions.","Klicken Sie <a href=""%1""><strong>hier</<strong></a>, um zu den <strong>Elasticsuite Indizes</strong> Seite zu gelangen, um entsprechende Aktionen durchzuführen." diff --git a/src/module-elasticsuite-core/i18n/en_US.csv b/src/module-elasticsuite-core/i18n/en_US.csv index 3b249391f..5774b6958 100644 --- a/src/module-elasticsuite-core/i18n/en_US.csv +++ b/src/module-elasticsuite-core/i18n/en_US.csv @@ -74,8 +74,6 @@ Autocomplete,Autocomplete "Search engine powered by %1","Search engine powered by %1" "Miscellaneous","Miscellaneous" "The value should be different to zero.","The value should be different to zero." -"The number of replicas configured for Elasticsuite is incorrect. You cannot use <strong>%1 replicas</strong> since there is only <strong>%2 nodes</strong> in your Elasticsearch cluster.","The number of replicas configured for Elasticsuite is incorrect. You cannot use <strong>%1 replicas</strong> since there is only <strong>%2 nodes</strong> in your Elasticsearch cluster." -"Click here to go to the <a href=""%1""><strong>Elasticsuite Config</strong></a> page and change your <strong>Number of Replicas per Index</strong> parameter according to our <a href=""%2"" target=""_blank""><strong>wiki page</strong></a>.","Click here to go to the <a href=""%1""><strong>Elasticsuite Config</strong></a> page and change your <strong>Number of Replicas per Index</strong> parameter according to our <a href=""%2"" target=""_blank""><strong>wiki page</strong></a>." "Span Match Configuration","Span Match Configuration" "Enable Boost on Span Match","Enable Boost on Span Match" "Span Match Boost Value","Span Match Boost Value" @@ -130,3 +128,15 @@ Autocomplete,Autocomplete "Please select a stemmer for the store","Please select a stemmer for the store" "Time for an index to be considered Ghost (in seconds)","Time for an index to be considered Ghost (in seconds)" "Elasticsuite derelict indices resulting from a failed full reindex are considered ghost after this amount of time (in seconds) has elapsed since their creation. You can reduce this amount of time to speed up ghost indices cleanup, but take care to add a safety on top of the maximum reindexing duration of the more complex index of your platform (usually a catalog_product/product search index). Defaults to 172,800 seconds (2 days), minimum value: 3600 (1 hour).","Elasticsuite derelict indices resulting from a failed full reindex are considered ghost after this amount of time (in seconds) has elapsed since their creation. You can reduce this amount of time to speed up ghost indices cleanup, but take care to add a safety on top of the maximum reindexing duration of the more complex index of your platform (usually a catalog_product/product search index). Defaults to 172,800 seconds (2 days), minimum value: 3600 (1 hour)." +"You have <strong>%1 health checks</strong> in a <strong>warning</strong> state. Please head to the <a href=""%2""><strong>Elasticsuite Healthcheck</strong></a> page to get more details and see how to fix them.","You have <strong>%1 health checks</strong> in a <strong>warning</strong> state. Please head to the <a href=""%2""><strong>Elasticsuite Healthcheck</strong></a> page to get more details and see how to fix them." +"The number of shards is properly configured for the Elasticsearch cluster. No action is required at this time.","The number of shards is properly configured for the Elasticsearch cluster. No action is required at this time." +"The <strong>number of shards</strong> configured for Elasticsuite is <strong>incorrect</strong>.","The <strong>number of shards</strong> configured for Elasticsuite is <strong>incorrect</strong>." +"You do not need to use <strong>%1 shards</strong> since your biggest Elasticsuite index is only <strong>%2</strong>.","You do not need to use <strong>%1 shards</strong> since your biggest Elasticsuite index is only <strong>%2</strong>." +"Click <a href=""%1""><strong>here</strong></a> to go to the <strong>Elasticsuite Config</strong> page and change your <strong>Number of Shards per Index</strong> parameter according to our <a href=""%2"" target=""_blank""><strong>Wiki page</strong></a>.","Click <a href=""%1""><strong>here</strong></a> to go to the <strong>Elasticsuite Config</strong> page and change your <strong>Number of Shards per Index</strong> parameter according to our <a href=""%2"" target=""_blank""><strong>Wiki page</strong></a>." +"The number of replicas is properly configured for the Elasticsearch cluster. No action is required at this time.","The number of replicas is properly configured for the Elasticsearch cluster. No action is required at this time." +"The <strong>number of replicas</strong> configured for Elasticsuite is <strong>incorrect</strong>. You cannot use <strong>%1 replicas</strong> since there is only <strong>%2 nodes</strong> in your Elasticsearch cluster.","The <strong>number of replicas</strong> configured for Elasticsuite is <strong>incorrect</strong>. You cannot use <strong>%1 replicas</strong> since there is only <strong>%2 nodes</strong> in your Elasticsearch cluster." +"Click <a href=""%1""><strong>here</strong></a> to go to the <strong>Elasticsuite Config</strong> page and change your <strong>Number of Replicas per Index</strong> parameter according to our <a href=""%2"" target=""_blank""><strong>Wiki page</strong></a>.","Click <a href=""%1""><strong>here</strong></a> to go to the <strong>Elasticsuite Config</strong> page and change your <strong>Number of Replicas per Index</strong> parameter according to our <a href=""%2"" target=""_blank""><strong>Wiki page</strong></a>." +"There are no ghost indices in your Elasticsearch cluster. No action is required at this time.","There are no ghost indices in your Elasticsearch cluster. No action is required at this time." +"You have <strong>%1 ghost indices</strong>. Ghost indices have a footprint on your Elasticsearch cluster health. You should consider removing them.","You have <strong>%1 ghost indices</strong>. Ghost indices have a footprint on your Elasticsearch cluster health. You should consider removing them." +"Click here to go to the <a href=""%1""><strong>Elasticsuite Indices</strong></a> page to take appropriate actions.","Click here to go to the <a href=""%1""><strong>Elasticsuite Indices</strong></a> page to take appropriate actions." +"Click <a href=""%1""><strong>here</strong></a> to go to the <strong>Elasticsuite Indices</strong> page to take appropriate actions.","Click <a href=""%1""><strong>here</strong></a> to go to the <strong>Elasticsuite Indices</strong> page to take appropriate actions." diff --git a/src/module-elasticsuite-core/i18n/fr_FR.csv b/src/module-elasticsuite-core/i18n/fr_FR.csv index d5dde3dae..78f07626f 100644 --- a/src/module-elasticsuite-core/i18n/fr_FR.csv +++ b/src/module-elasticsuite-core/i18n/fr_FR.csv @@ -74,8 +74,6 @@ General,Général "Search engine powered by %1","Recherche propulsée par %1" "Miscellaneous","Divers" "The value should be different to zero.","La valeur doit être différente de zéro." -"The number of replicas configured for Elasticsuite is incorrect. You cannot use <strong>%1 replicas</strong> since there is only <strong>%2 nodes</strong> in your Elasticsearch cluster.","Le nombre de replicas configuré pour Elasticsuite est incorrect. Vous ne pouvez pas utiliser <strong>%1 replicas</strong> car il n'y a que <strong>%2 nodes</strong> dans votre cluster Elasticsearch." -"Click here to go to the <a href=""%1""><strong>Elasticsuite Config</strong></a> page and change your <strong>Number of Replicas per Index</strong> parameter according to our <a href=""%2"" target=""_blank""><strong>wiki page</strong></a>.","Cliquez ici pour accéder à la <a href=""%1""><strong>configuration Elasticsuite</strong></a> et changer le paramètre <strong>Nombre de replicas par Index</strong> conformément à notre <a href=""%2"" target=""_blank""><strong>page de wiki</strong></a>." "Span Match Configuration","Recherche sur le début des champs" "Enable Boost on Span Match","Activer le boost sur le début des champs" "Span Match Boost Value","Valeur du boost" @@ -130,3 +128,14 @@ General,Général "Please select a stemmer for the store","Veuillez sélectionner un stemmer pour le magasin" "Time for an index to be considered Ghost (in seconds)","Temps avant qu'un index soit considéré Fantôme (en secondes)" "Elasticsuite derelict indices resulting from a failed full reindex are considered ghost after this amount of time (in seconds) has elapsed since their creation. You can reduce this amount of time to speed up ghost indices cleanup, but take care to add a safety on top of the maximum reindexing duration of the more complex index of your platform (usually a catalog_product/product search index). Defaults to 172,800 seconds (2 days), minimum value: 3600 (1 hour).","Les index Elasticsuite résultant de l'échec d'une ré-indexation complète sont considérés comme fantômes après que cette période de temps (en secondes) s'est écoulée depuis leur création. Vous pouvez réduire cette période de temps pour accélérer la suppression des index fantômes, mais prenez soin d'ajouter une période de sécurité au temps de réindexation maximum de l'index le plus complexe de votre plateforme (généralement un index catalog_product/de recherche produits). Valeur par défaut: 172 800 secondes (2 jours), valeur minimum: 3600 (1 heure)." +"The number of shards is properly configured for the Elasticsearch cluster. No action is required at this time.","Le nombre de shards est correctement configuré pour le cluster Elasticsearch. Aucune action n’est requise pour le moment." +"The <strong>number of shards</strong> configured for Elasticsuite is <strong>incorrect</strong>.","Le <strong>nombre de shards</strong> configuré pour Elasticsuite est <strong>incorrect</strong>." +"You do not need to use <strong>%1 shards</strong> since your biggest Elasticsuite index is only <strong>%2</strong>.","Vous n'avez pas besoin d'utiliser <strong>%1 shards</strong> car votre index Elasticsuite le plus volumineux pèse <strong>%2</strong>." +"Click <a href=""%1""><strong>here</strong></a> to go to the <strong>Elasticsuite Config</strong> page and change your <strong>Number of Shards per Index</strong> parameter according to our <a href=""%2"" target=""_blank""><strong>Wiki page</strong></a>.","Cliquez <a href=""%1""><strong>ici</strong></a> pour accéder à la page de <strong>Configuration Elasticsuite</strong> et changer votre <strong>Nombre de shards par Index</strong> conformément à notre <a href=""%2"" target=""_blank""><strong>page wiki</strong></a>." +"The number of replicas is properly configured for the Elasticsearch cluster. No action is required at this time.","Le nombre de réplicas est correctement configuré pour le cluster Elasticsearch. Aucune action n’est requise pour le moment." +"The <strong>number of replicas</strong> configured for Elasticsuite is <strong>incorrect</strong>. You cannot use <strong>%1 replicas</strong> since there is only <strong>%2 nodes</strong> in your Elasticsearch cluster.","Le <strong>nombre de replicas</strong> configuré pour Elasticsuite est <strong>incorrect</strong>. Vous ne pouvez pas utiliser <strong>%1 replicas</strong> car il n'y a que <strong>%2 nodes</strong> dans votre cluster Elasticsearch." +"Click <a href=""%1""><strong>here</strong></a> to go to the <strong>Elasticsuite Config</strong> page and change your <strong>Number of Replicas per Index</strong> parameter according to our <a href=""%2"" target=""_blank""><strong>Wiki page</strong></a>.","Cliquez <a href=""%1""><strong>ici</strong></a> pour accéder à la <strong>configuration Elasticsuite</strong> et changer le paramètre <strong>Nombre de replicas par Index</strong> conformément à notre <a href=""%2"" target=""_blank""><strong>page wiki</strong></a>." +"There are no ghost indices in your Elasticsearch cluster. No action is required at this time.","Il n'y a aucun index fantôme dans votre cluster Elasticsearch. Aucune action n’est requise pour le moment." +"You have <strong>%1 ghost indices</strong>. Ghost indices have a footprint on your Elasticsearch cluster health. You should consider removing them.","Vous avez <strong>%1 index fantômes</strong>. Les indexs fantômes consomment inutilement des ressources de votre cluster Elasticsearch. Vous devriez envisager de les supprimer." +"Click here to go to the <a href=""%1""><strong>Elasticsuite Indices</strong></a> page to take appropriate actions.","Cliquez ici pour accéder à <a href=""%1""><strong>la liste des indexs Elasticsuite</strong></a> et prendre les actions appropriées." +"Click <a href=""%1""><strong>here</strong></a> to go to the <strong>Elasticsuite Indices</strong> page to take appropriate actions.","Cliquez <a href=""%1""><strong>ici</strong></a> pour accéder à <strong>la liste des indexs Elasticsuite</strong> et prendre les actions appropriées." diff --git a/src/module-elasticsuite-core/i18n/nl_NL.csv b/src/module-elasticsuite-core/i18n/nl_NL.csv index 748870293..fd9ab4bce 100644 --- a/src/module-elasticsuite-core/i18n/nl_NL.csv +++ b/src/module-elasticsuite-core/i18n/nl_NL.csv @@ -74,8 +74,6 @@ "Search engine powered by %1","Zoekmachine aangedreven door %1" "Miscellaneous","Diversen" "The value should be different to zero.","De waarde moet verschillen van nul." -"The number of replicas configured for Elasticsuite is incorrect. You cannot use <strong>%1 replicas</strong> since there is only <strong>%2 nodes</strong> in your Elasticsearch cluster.","Het aantal replica's geconfigureerd voor Elasticsuite is onjuist. Je kunt <strong>%1 replicas</strong> niet gebruiken, omdat er alleen <strong>%2 nodes</strong> is in je Elasticsearch cluster." -"Click here to go to the <a href=""%1""><strong>Elasticsuite Config</strong></a> page and change your <strong>Number of Replicas per Index</strong> parameter according to our <a href=""%2"" target=""_blank""><strong>wiki page</strong></a>.","Klik hier om naar de <a href=""%1""><strong>Elasticsuite Config</strong></a> pagina te gaan en uw <strong>Aantal Replicas per Index</strong> parameter te wijzigen volgens onze <a href=""%2"" target=""_blank""><strong>wikipagina</strong></a>." "Span Match Configuration","Span Match Configuratie" "Enable Boost on Span Match","Boost op Span Wedstrijd inschakelen" "Span Match Boost Value","Span overeenkomst Boost Waarde" @@ -120,3 +118,14 @@ "If enabled, when indexing a reference like ""DC3000"", it will be as if ""DC3"" was indexed instead (leading to independant elements ""DC"", ""3"" and ""DC3"" in the search index). This will allow someone searching for ""dc3"" or ""dc 3"" to find the product with the exact ""DC3000"" sku.","Indien ingeschakeld, bij het indexeren van een verwijzing zoals ""DC3000"", het zal zijn alsof in plaats daarvan ""DC3"" is geïndexeerd (wat leidt tot onafhankelijke elementen ""DC"", ""3"" en ""DC3"" in de zoekindex). Hierdoor kan iemand het product zoeken naar ""dc3"" of ""dc 3"" vinden met de exacte ""DC3000"" sku." "Reduce series of contiguous zeroes in numeric parts","Verminder serie van aangrenzende nullen in numerieke onderdelen" "If enabled, when indexing a reference like ""PL20004"", it will be as if ""PL204"" was indexed instead (leading to independant elements ""PL"", ""204"" and ""PL204"" in the search index). This will allow someone searching for ""pl204"", ""pl 204"", ""pl2004"" or ""pl 2004"" to find the product with the exact ""PL2004"" sku.","Indien ingeschakeld, bij het indexeren van een verwijzing zoals ""PL20004"", het zal zijn alsof in plaats daarvan ""PL204"" is geïndexeerd (wat leidt tot onafhankelijke elementen ""PL"", ""204"" en ""PL204"" in de zoekindex). Hierdoor kan iemand het product zoeken naar ""pl204"", ""pl 204"", ""pl2004"" of ""pl 2004"" om het te vinden met de exacte ""PL2004"" sku." +"The number of shards is properly configured for the Elasticsearch cluster. No action is required at this time.","Het aantal shards is correct geconfigureerd voor het Elasticsearch-cluster. Er is op dit moment geen actie vereist." +"The <strong>number of shards</strong> configured for Elasticsuite is <strong>incorrect</strong>.","Het <strong>aantal scherven</strong> geconfigureerd voor Elasticsuite is <strong>onjuist</strong>." +"You do not need to use <strong>%1 shards</strong> since your biggest Elasticsuite index is only <strong>%2</strong>.","Je hoeft geen <strong>%1 shards</strong> te gebruiken omdat je grootste Elasticsuite index slechts <strong>%2</strong> is." +"Click <a href=""%1""><strong>here</strong></a> to go to the <strong>Elasticsuite Config</strong> page and change your <strong>Number of Shards per Index</strong> parameter according to our <a href=""%2"" target=""_blank""><strong>Wiki page</strong></a>.","Klik <a href=""%1""><strong>hier</strong></a> om naar de <strong>Elasticsuite Config</strong> pagina te gaan en uw <strong>Aantal Scherven per Index</strong> parameter te wijzigen volgens onze <a href=""%2"" target=""_blank""><strong>wikipagina</strong></a>." +"The number of replicas is properly configured for the Elasticsearch cluster. No action is required at this time.","Het aantal replica's is correct geconfigureerd voor het Elasticsearch-cluster. Er is op dit moment geen actie vereist." +"The <strong>number of replicas</strong> configured for Elasticsuite is <strong>incorrect</strong>. You cannot use <strong>%1 replicas</strong> since there is only <strong>%2 nodes</strong> in your Elasticsearch cluster.","Het <strong>aantal replica's</strong> geconfigureerd voor Elasticsuite is <strong>onjuist</strong>. Je kunt <strong>%1 replicas</strong> niet gebruiken, omdat er alleen <strong>%2 nodes</strong> is in je Elasticsearch cluster." +"Click <a href=""%1""><strong>here</strong></a> to go to the <strong>Elasticsuite Config</strong> page and change your <strong>Number of Replicas per Index</strong> parameter according to our <a href=""%2"" target=""_blank""><strong>Wiki page</strong></a>.","Klik <a href=""%1""><strong>hier</strong></a> om naar de <strong>Elasticsuite Config</strong> pagina te gaan en uw <strong>Aantal Replicas per Index</strong> parameter te wijzigen volgens onze <a href=""%2"" target=""_blank""><strong>wikipagina</strong></a>." +"There are no ghost indices in your Elasticsearch cluster. No action is required at this time.","Er zijn geen spookindexen in uw Elasticsearch-cluster. Er is op dit moment geen actie vereist." +"You have <strong>%1 ghost indices</strong>. Ghost indices have a footprint on your Elasticsearch cluster health. You should consider removing them.","Je hebt <strong>%1 spookindexen</strong>. Spook indices hebben een voetafdruk op je Elasticsearch cluster gezondheid. Je zou moeten overwegen om ze te verwijderen." +"Click here to go to the <a href=""%1""><strong>Elasticsuite Indices</strong></a> page to take appropriate actions.","Klik hier om naar de <a href=""%1""><strong>Elasticsuite Indices</strong></a> pagina te gaan om de juiste acties te ondernemen." +"Click <a href=""%1""><strong>here</strong></a> to go to the <strong>Elasticsuite Indices</strong> page to take appropriate actions.","Klik <a href=""%1""><strong>hier</strong></a> om naar de <strong>Elasticsuite Indices</strong> pagina te gaan om de juiste acties te ondernemen." diff --git a/src/module-elasticsuite-indices/i18n/de_DE.csv b/src/module-elasticsuite-indices/i18n/de_DE.csv index 66f42e661..0fb852a8d 100644 --- a/src/module-elasticsuite-indices/i18n/de_DE.csv +++ b/src/module-elasticsuite-indices/i18n/de_DE.csv @@ -22,11 +22,6 @@ "Add mapping of index","Zuordnung des Index hinzufügen" "Indices Mapping","Indizes Mapping" "Mapping","Zuordnung" -"The number of shards configured for Elasticsuite is incorrect.","Die Anzahl der für Elasticsuite konfigurierten Scherben ist falsch." -"You do not need to use <strong>%1 shards</strong> since your biggest Elasticsuite index is only <strong>%2</strong>.","Sie müssen keine <strong>%1 Scherben</strong> verwenden, da Ihr größter Elasticsuite-Index nur <strong>%2</strong> ist." -"Click here to go to the <a href=""%1""><strong>Elasticsuite Config</strong></a> page and change your <strong>Number of Shards per Index</strong> parameter according to our <a href=""%2"" target=""_blank""><strong>wiki page</strong></a>.","Klicken Sie hier, um zur <a href=""%1""><strong>Elasticsuite Konfiguration</strong></a> Seite zu wechseln und Ihre <strong>Anzahl der Scherben pro Index</strong> Parameter entsprechend unserer <a href=""%2"" target=""_blank""><strong>Wiki-Seite</strong></a> zu ändern." -"You have <strong>%1 ghost indices</strong>. Ghost indices have a footprint on your Elasticsearch cluster health. You should consider removing them.","Sie haben <strong>%1 Geister-Indizes</strong>. Geister-Indizes haben einen Fußabdruck auf Ihrer Elasticsearch Cluster-Gesundheit. Sie sollten in Erwägung ziehen, sie zu entfernen." -"Click here to go to the <a href=""%1""><strong>Elasticsuite Indices</strong></a> page to take appropriate actions.","Klicken Sie hier, um zu den <a href=""%1""><strong>Elasticsuite Indizes</strong></a> Seite zu gelangen, um entsprechende Aktionen durchzuführen." "Analysis","Analyse" "Analyze by Analyzer","Analysieren durch Analyzer" "Index name:","Indexname:" diff --git a/src/module-elasticsuite-indices/i18n/en_US.csv b/src/module-elasticsuite-indices/i18n/en_US.csv index 57eeecc78..779e1695b 100644 --- a/src/module-elasticsuite-indices/i18n/en_US.csv +++ b/src/module-elasticsuite-indices/i18n/en_US.csv @@ -22,11 +22,6 @@ "Add mapping of index", "Add mapping of index" "Indices Mapping", "Indices Mapping" "Mapping", "Mapping" -"The number of shards configured for Elasticsuite is incorrect.","The number of shards configured for Elasticsuite is incorrect." -"You do not need to use <strong>%1 shards</strong> since your biggest Elasticsuite index is only <strong>%2</strong>.","You do not need to use <strong>%1 shards</strong> since your biggest Elasticsuite index is only <strong>%2</strong>." -"Click here to go to the <a href=""%1""><strong>Elasticsuite Config</strong></a> page and change your <strong>Number of Shards per Index</strong> parameter according to our <a href=""%2"" target=""_blank""><strong>wiki page</strong></a>.","Click here to go to the <a href=""%1""><strong>Elasticsuite Config</strong></a> page and change your <strong>Number of Shards per Index</strong> parameter according to our <a href=""%2"" target=""_blank""><strong>wiki page</strong></a>." -"You have <strong>%1 ghost indices</strong>. Ghost indices have a footprint on your Elasticsearch cluster health. You should consider removing them.","You have <strong>%1 ghost indices</strong>. Ghost indices have a footprint on your Elasticsearch cluster health. You should consider removing them." -"Click here to go to the <a href=""%1""><strong>Elasticsuite Indices</strong></a> page to take appropriate actions.","Click here to go to the <a href=""%1""><strong>Elasticsuite Indices</strong></a> page to take appropriate actions." "Analysis","Analysis" "Analyze by Analyzer","Analyze by Analyzer" "Index name:","Index name:" diff --git a/src/module-elasticsuite-indices/i18n/fr_FR.csv b/src/module-elasticsuite-indices/i18n/fr_FR.csv index 5e62019b6..73762adc9 100644 --- a/src/module-elasticsuite-indices/i18n/fr_FR.csv +++ b/src/module-elasticsuite-indices/i18n/fr_FR.csv @@ -22,11 +22,6 @@ "Add mapping of index", "Ajouter un mappage d'index" "Indices Mapping", "Mapping des index" "Mapping", "Mapping" -"The number of shards configured for Elasticsuite is incorrect.","Le nombre de shards configuré pour Elasticsuite est incorrect." -"You do not need to use <strong>%1 shards</strong> since your biggest Elasticsuite index is only <strong>%2</strong>.","Vous n'avez pas besoin d'utiliser <strong>%1 shards</strong> car votre index Elasticsuite le plus volumineux pèse <strong>%2</strong>." -"Click here to go to the <a href=""%1""><strong>Elasticsuite Config</strong></a> page and change your <strong>Number of Shards per Index</strong> parameter according to our <a href=""%2"" target=""_blank""><strong>wiki page</strong></a>.","Cliquez ici pour accéder à la page de <a href=""%1""><strong>Configuration Elasticsuite</strong></a> et changer votre <strong>Nombre de shards par Index</strong> conformément à notre <a href=""%2"" target=""_blank""><strong>page du wiki</strong></a>." -"You have <strong>%1 ghost indices</strong>. Ghost indices have a footprint on your Elasticsearch cluster health. You should consider removing them.","Vous avez <strong>%1 index fantômes</strong>. Les indexs fantômes consomment inutilement des ressources de votre cluster Elasticsearch. Vous devriez envisager de les supprimer." -"Click here to go to the <a href=""%1""><strong>Elasticsuite Indices</strong></a> page to take appropriate actions.","Cliquez ici pour accéder à <a href=""%1""><strong>la liste des indexs Elasticsuite</strong></a> et prendre les actions appropriées." "Analysis","Analyse textuelle" "Analyze by Analyzer","Analyser par Analyzer" "Index name:","Nom de l'index:" diff --git a/src/module-elasticsuite-indices/i18n/nl_NL.csv b/src/module-elasticsuite-indices/i18n/nl_NL.csv index 9e31b7dad..9f1c9d4b7 100644 --- a/src/module-elasticsuite-indices/i18n/nl_NL.csv +++ b/src/module-elasticsuite-indices/i18n/nl_NL.csv @@ -22,11 +22,6 @@ "Add mapping of index","Toewijzing van index toevoegen" "Indices Mapping","Indices mapping" "Mapping","Toewijzing" -"The number of shards configured for Elasticsuite is incorrect.","Het aantal scherven geconfigureerd voor Elasticsuite is onjuist." -"You do not need to use <strong>%1 shards</strong> since your biggest Elasticsuite index is only <strong>%2</strong>.","Je hoeft geen <strong>%1 shards</strong> te gebruiken omdat je grootste Elasticsuite index slechts <strong>%2</strong> is." -"Click here to go to the <a href=""%1""><strong>Elasticsuite Config</strong></a> page and change your <strong>Number of Shards per Index</strong> parameter according to our <a href=""%2"" target=""_blank""><strong>wiki page</strong></a>.","Klik hier om naar de <a href=""%1""><strong>Elasticsuite Config</strong></a> pagina te gaan en uw <strong>Aantal Scherven per Index</strong> parameter te wijzigen volgens onze <a href=""%2"" target=""_blank""><strong>wikipagina</strong></a>." -"You have <strong>%1 ghost indices</strong>. Ghost indices have a footprint on your Elasticsearch cluster health. You should consider removing them.","Je hebt <strong>%1 spookindexen</strong>. Spook indices hebben een voetafdruk op je Elasticsearch cluster gezondheid. Je zou moeten overwegen om ze te verwijderen." -"Click here to go to the <a href=""%1""><strong>Elasticsuite Indices</strong></a> page to take appropriate actions.","Klik hier om naar de <a href=""%1""><strong>Elasticsuite Indices</strong></a> pagina te gaan om de juiste acties te ondernemen." "Analysis","Analyse" "Analyze by Analyzer","Analyseer door Analyzer" "Index name:","Index naam:"