-
+ Time Filter field name
-
+
+ >refresh fields
diff --git a/src/core_plugins/kibana/public/management/sections/indices/create_index_pattern/create_index_pattern.js b/src/core_plugins/kibana/public/management/sections/indices/create_index_pattern/create_index_pattern.js
index 6ef9fe98014da..dba0550e04367 100644
--- a/src/core_plugins/kibana/public/management/sections/indices/create_index_pattern/create_index_pattern.js
+++ b/src/core_plugins/kibana/public/management/sections/indices/create_index_pattern/create_index_pattern.js
@@ -57,7 +57,7 @@ uiModules.get('apps/management')
return {
options: [
{
- display: $translate.instant('KIBANA-INDICES_DONT_CONTAIN_TIME_FIELDS')
+ display: `The indices which match this index pattern don't contain any time fields.`
}
]
};
@@ -66,7 +66,7 @@ uiModules.get('apps/management')
return {
options: [
{
- display: $translate.instant('KIBANA-NO_DATE_FIELD_DESIRED')
+ display: `I don't want to use the Time Filter`
},
...dateFields.map(field => ({
display: field.name,
@@ -78,7 +78,7 @@ uiModules.get('apps/management')
.catch(err => {
if (err instanceof IndexPatternMissingIndices) {
return {
- error: $translate.instant('KIBANA-INDICES_MATCH_PATTERN')
+ error: 'Unable to fetch mapping. Do you have indices matching the pattern?'
};
}
@@ -221,7 +221,7 @@ uiModules.get('apps/management')
loadingCount = Infinity;
}).catch(err => {
if (err instanceof IndexPatternMissingIndices) {
- return notify.error($translate.instant('KIBANA-NO_INDICES_MATCHING_PATTERN'));
+ return notify.error('Could not locate any indices matching that pattern. Please add the index to Elasticsearch');
}
notify.fatal(err);
diff --git a/src/core_plugins/kibana/public/management/sections/indices/create_index_pattern/pick_create_button_text.js b/src/core_plugins/kibana/public/management/sections/indices/create_index_pattern/pick_create_button_text.js
index 44c5462ac0441..03416502efbab 100644
--- a/src/core_plugins/kibana/public/management/sections/indices/create_index_pattern/pick_create_button_text.js
+++ b/src/core_plugins/kibana/public/management/sections/indices/create_index_pattern/pick_create_button_text.js
@@ -6,18 +6,16 @@ export function pickCreateButtonText($translate, state) {
} = state;
if (loading) {
- return $translate.instant('KIBANA-LOADING');
+ return 'Loading';
}
if (invalidIndexName) {
- return $translate.instant('KIBANA-INVALID_INDEX_PATTERN');
+ return 'Invalid index name pattern.';
}
if (!timeFieldOption) {
- return $translate.instant('KIBANA-FIELD_IS_REQUIRED', {
- fieldName: $translate.instant('KIBANA-TIME_FILTER_FIELD_NAME')
- });
+ return 'Time Filter field name is required';
}
- return $translate.instant('KIBANA-CREATE');
+ return 'Create';
}
diff --git a/src/core_plugins/kibana/public/management/sections/indices/edit_index_pattern/edit_index_pattern.html b/src/core_plugins/kibana/public/management/sections/indices/edit_index_pattern/edit_index_pattern.html
index e54b7a4f5158c..94a12aa777b0b 100644
--- a/src/core_plugins/kibana/public/management/sections/indices/edit_index_pattern/edit_index_pattern.html
+++ b/src/core_plugins/kibana/public/management/sections/indices/edit_index_pattern/edit_index_pattern.html
@@ -15,7 +15,7 @@
- : {{indexPattern.timeFieldName}}
+ Time Filter field name : {{indexPattern.timeFieldName}}
diff --git a/src/core_plugins/kibana/public/management/sections/indices/index.html b/src/core_plugins/kibana/public/management/sections/indices/index.html
index 03f2b974ad84a..71fac6935ae14 100644
--- a/src/core_plugins/kibana/public/management/sections/indices/index.html
+++ b/src/core_plugins/kibana/public/management/sections/indices/index.html
@@ -6,10 +6,10 @@
ng-if="editingId"
href="#/management/kibana/index"
class="kuiButton kuiButton--primary kuiButton--small"
- aria-label="{{ 'KIBANA-ADD_NEW' | translate }}"
+ aria-label="Create Index Pattern"
>
-
+ Create Index Pattern
@@ -19,8 +19,8 @@