summaryrefslogtreecommitdiffstats
path: root/i18n
diff options
context:
space:
mode:
authorGeorge Goldberg <george@gberg.me>2017-05-18 16:26:52 +0100
committerHarrison Healey <harrisonmhealey@gmail.com>2017-05-18 11:26:52 -0400
commit0db5e3922fd5045b3f7f518ad65e42138f0325c4 (patch)
treee225a7191de7915a3da3716601ddb415c4f26979 /i18n
parent2bbedd9def2a782f370fb5280994ea0ecbf8a7c7 (diff)
downloadchat-0db5e3922fd5045b3f7f518ad65e42138f0325c4.tar.gz
chat-0db5e3922fd5045b3f7f518ad65e42138f0325c4.tar.bz2
chat-0db5e3922fd5045b3f7f518ad65e42138f0325c4.zip
PLT-6472: Basic Elastic Search implementation. (#6382)
* PLT-6472: Basic Elastic Search implementation. This currently supports indexing of posts at create/update/delete time. It does not support batch indexing or reindexing, and does not support any entities other than posts yet. The purpose is to more-or-less replicate the existing full-text search feature but with some of the immediate benefits of using elastic search. * Alter settings for AWS compatability. * Remove unneeded i18n strings.
Diffstat (limited to 'i18n')
-rw-r--r--i18n/en.json52
1 files changed, 52 insertions, 0 deletions
diff --git a/i18n/en.json b/i18n/en.json
index 3974243f1..214e91837 100644
--- a/i18n/en.json
+++ b/i18n/en.json
@@ -3308,6 +3308,38 @@
"translation": "Compliance export started for job '{{.JobName}}' at '{{.FilePath}}'"
},
{
+ "id": "ent.elasticsearch.start.connect_failed",
+ "translation": "Setting up ElasticSearch Client Failed"
+ },
+ {
+ "id": "ent.elasticsearch.start.index_exists_failed",
+ "translation": "Failed to establish whether ElasticSearch index exists"
+ },
+ {
+ "id": "ent.elasticsearch.start.index_create_failed",
+ "translation": "Failed to create ElasticSearch index"
+ },
+ {
+ "id": "ent.elasticsearch.start.index_settings_failed",
+ "translation": "Failed to set ElasticSearch index settings"
+ },
+ {
+ "id": "ent.elasticsearch.start.index_mapping_failed",
+ "translation": "Failed to setup ElasticSearch index mapping"
+ },
+ {
+ "id": "ent.elasticsearch.search_posts.disabled",
+ "translation": "ElasticSearch searching is disabled on this server"
+ },
+ {
+ "id": "ent.elasticsearch.search_posts.search_failed",
+ "translation": "Search failed to complete"
+ },
+ {
+ "id": "ent.elasticsearch.search_posts.unmarshall_post_failed",
+ "translation": "Failed to decode search results"
+ },
+ {
"id": "ent.emoji.licence_disable.app_error",
"translation": "Custom emoji restrictions disabled by current license. Please contact your system administrator about upgrading your enterprise license."
},
@@ -3860,6 +3892,22 @@
"translation": "To must be greater than From"
},
{
+ "id": "model.config.is_valid.elastic_search.connection_url.app_error",
+ "translation": "Elastic Search ConnectionUrl setting must be provided when Elastic Search indexing is enabled."
+ },
+ {
+ "id": "model.config.is_valid.elastic_search.username.app_error",
+ "translation": "Elastic Search Username setting must be provided when Elastic Search indexing is enabled."
+ },
+ {
+ "id": "model.config.is_valid.elastic_search.password.app_error",
+ "translation": "Elastic Search Password setting must be provided when Elastic Search indexing is enabled."
+ },
+ {
+ "id": "model.config.is_valid.elastic_search.enable_searching.app_error",
+ "translation": "Elastic Search IndexingEnabled setting must be set to true when Elastic Search SearchEnabled is set to true."
+ },
+ {
"id": "model.config.is_valid.cluster_email_batching.app_error",
"translation": "Unable to enable email batching when clustering is enabled."
},
@@ -5180,6 +5228,10 @@
"translation": "We couldn't get the post"
},
{
+ "id": "store.sql_post.get_posts_by_ids.app_error",
+ "translation": "We couldn't get the posts"
+ },
+ {
"id": "store.sql_post.get_parents_posts.app_error",
"translation": "We couldn't get the parent post for the channel"
},