kibana/.i18nrc.json

62 lines
2.9 KiB
JSON
Raw Normal View History

{
"paths": {
"common.ui": "src/legacy/ui",
"data": "src/legacy/core_plugins/data",
"server": "src/legacy/server",
2018-11-29 14:14:40 +01:00
"console": "src/legacy/core_plugins/console",
"core": "src/core",
2018-11-29 14:14:40 +01:00
"inputControl": "src/legacy/core_plugins/input_control_vis",
"inspectorViews": "src/legacy/core_plugins/inspector_views",
"interpreter": "src/legacy/core_plugins/interpreter",
2018-11-29 14:14:40 +01:00
"kbn": "src/legacy/core_plugins/kibana",
"kbnDocViews": "src/legacy/core_plugins/kbn_doc_views",
2018-11-29 14:14:40 +01:00
"kbnVislibVisTypes": "src/legacy/core_plugins/kbn_vislib_vis_types",
"markdownVis": "src/legacy/core_plugins/markdown_vis",
"metricVis": "src/legacy/core_plugins/metric_vis",
"vega": "src/legacy/core_plugins/vega",
"tableVis": "src/legacy/core_plugins/table_vis",
"regionMap": "src/legacy/core_plugins/region_map",
"statusPage": "src/legacy/core_plugins/status_page",
"tileMap": "src/legacy/core_plugins/tile_map",
"timelion": "src/legacy/core_plugins/timelion",
"tagCloud": "src/legacy/core_plugins/tagcloud",
"tsvb": "src/legacy/core_plugins/metrics",
Improve KQL error messages (#34900) Attempts to make KQL syntax errors more sensical to the average user. I initially tried to use a similar solution to the one we used for detecting usage of old lucene syntax. In other words, I tried to create rules in the grammar that would match strings containing common mistakes the user might make and throw custom error messages for each situation. This proved to be more difficult for detecting errors in the regular language. While the Lucene rules could be completely separated from the main grammar, the KQL error rules had to be mixed into the main grammar which made it much more complex and had a lot of unintended side effects. So instead I decided to lean more heavily on PEG's built in error reporting. Giving certain rules human readable names allows the parser to use those names in the error reporting instead of auto generating a long list of possible characters that might be expected based on the matching rules. Since the PEG errors contain location information I was also able to add ascii art that points the user to exactly where the error occurred in their query string. While this approach is not quite as nice as bespoke error messages that tell the user exactly what is wrong in plain English, it's much more maintainable and I think it still results in much better error messages compared to what we have today. I've also removed the old original kuery grammar (for queries like is(response, 200)). We were only using it to display an error if I user was still using the old syntax. This version of kuery hasn't existed since 6.3 and we've had error messages telling users this since then. I think it's safe to remove the legacy parser at this point, which greatly reduces the complexity of our error reporting.
2019-04-24 22:40:38 +02:00
"kbnESQuery": "packages/kbn-es-query",
"xpack.apm": "x-pack/plugins/apm",
"xpack.beatsManagement": "x-pack/plugins/beats_management",
"xpack.canvas": "x-pack/plugins/canvas",
"xpack.crossClusterReplication": "x-pack/plugins/cross_cluster_replication",
"xpack.dashboardMode": "x-pack/plugins/dashboard_mode",
"xpack.graph": "x-pack/plugins/graph",
"xpack.grokDebugger": "x-pack/plugins/grokdebugger",
"xpack.idxMgmt": "x-pack/plugins/index_management",
"xpack.indexLifecycleMgmt": "x-pack/plugins/index_lifecycle_management",
"xpack.infra": "x-pack/plugins/infra",
"xpack.kueryAutocomplete": "x-pack/plugins/kuery_autocomplete",
"xpack.licenseMgmt": "x-pack/plugins/license_management",
"xpack.maps": "x-pack/plugins/maps",
"xpack.ml": "x-pack/plugins/ml",
"xpack.logstash": "x-pack/plugins/logstash",
"xpack.main": "x-pack/plugins/xpack_main",
"xpack.telemetry": "x-pack/plugins/telemetry",
"xpack.monitoring": "x-pack/plugins/monitoring",
"xpack.remoteClusters": "x-pack/plugins/remote_clusters",
"xpack.reporting": "x-pack/plugins/reporting",
"xpack.rollupJobs": "x-pack/plugins/rollup",
"xpack.searchProfiler": "x-pack/plugins/searchprofiler",
2019-04-02 20:47:15 +02:00
"xpack.siem": "x-pack/plugins/siem",
"xpack.security": "x-pack/plugins/security",
"xpack.server": "x-pack/server",
Snapshot Repositories UI (#34407) * [SR] Snapshot and restore plugin boilerplate (#32276) * Initial plugin set up * Set up client shell * Add initial repository list routes * Fix merge issues and some typings * Decouple server from plugin.ts files, tighten up typings * Use exported constant for required license * Translate plugin name, more typings * Fix more types, move list components under /home * Remove unused var * Change scss prefix * Uncouple unmount logic from routing shim, and some other PR feedback * [SR] Repository list and details UI (#33367) * Initial pass at repositories list UI * Add detail panel for file system repositories, and a generic detail panel with json settings view * Add detail components for other types * Add detail panel footer, rename `useStateValue` to `useAppState` * Fix detail panel footer * Fix unused vars * PR feedback * PR feedback * [SR] Refactor proposal (#33690) * Move app dependencies to its own context provider * Add index.ts barrel file for common types * Move Enums to constants.ts file * Refactor function component using `React.FunctionComponent<Props>` * Refactor service folder structure * Fix type import * Move REPOSITORY_DOC_PATHS from common to public constants * Move AppCore and AppPlugins interfaces back to shim and re-export them from app types * [SR] Create and edit repositories UI (#34020) * Add routing and placeholder form * Fix typings * Set up edit repository route, and basic form UI * Add typings for wrapCustomError, and copy extractCausedByChain from CCR wrapEsError * Throw errors that are already boomified * Create and edit for basic repository types (fs, url, source) * Add repository verification UI to table and details * Create and edit for plugin repository types (hdfs, azure, s3, gcs) * Fix linting * Fix test * Fix test * Remove unused import * Fix duplicate i18n key * Fix details opening on cancel edit, remove unnecessary Fragments, definition file for some EUI components to x-pack, rename saveError * Remove breaks * Adjust add and edit repo routes so they don't conflict with list route * Add repo plugin and types doc links to form * Bootstrap documentation service * Bootstrap text service and replace RepositoryTypeName component with it * Bootstrap breadcrumb service and replace usages * Bootstrap httpService, remove chrome and http from app dependencies(!) * Add request creator and replace all instances of useRequest and sendRequest with it * Fix typo * Simplify update repository and update repository setting methods * Adjust copy * Lint * Remove unused var * Remove unused import * [SR] Add API for retrieving snapshots. (#34598) * [SR] Single and multiple repository delete (#34593) * Add single/multi repository delete API and UI * Address PR feedback * [SR] Add SnapshotTable and SnapshotDetails. (#34837) * Remove associations between multiple repositories with a single snapshot. * Retrieve complete snapshot details in getAllHandler. * Fix cleanup function bug in useRequest hook. * Fix bug in useRequest which prevented old data from being cleared when subsequent requests returned errors. * Add initialValue config option to useRequest. * Add formatDate service to text module. * [SR] Fix linting and add (de)serialization for repositories (#35031) * Fix eslint issues and add (de)serialization for repositories * Add comment about flattening settings * [SR] Surface repository errors and index failures more prominently (#35042) * Add links to repositories from Snapshot Table and Snapshot Details. - Rename services/breadcrumbs to services/navigation and add linkToRepository function. - Refactor home component to update active tab when URL was changed. * Add warning callout to let user know when their repositories contain errors. * Sort failures by shard and add test for snapshot serialization. * Sort failures and indices. * Add filter for filtering snapshots by their repository. * Surface states with humanized text, icons, and tooltips where necessary. * Fix pluralization of seconds. * Surface failures tab even if there are none. - Display a '-' for missing times and durations. - Create DataPlaceholder component. * [SR] Polish repositories UX (#35123) * Refactor repository detail panel to load repository based directly on route param. * Display repository detail panel while table is loading. * Make 'Edit repository' table action a link instead of a button. * Render disabled EuiSelect as a readonly EuiFieldText. * Prepend HDFS URI with hdfs:// protocol. * Present scheme options for Read-Only URL repository as a select. * [SR] Add client-side validation to repository form and link to snapshots from details (#35238) * Add client side repository form validation, extract `flatten` into common lib * Add snapshot count to repository details and link to snapshot list * Reset validation when changing repository type * Fix snapshot list filter deep linking for repository names with slashes and spaces * Fix imports * PR feedback * [SR] Design and copywriting fixes (#35591) * Split repository form into two steps; move `clean_settings.ts` to server * Default to snapshots tab, adjust snapshot empty prompt, add app description * Add minimum timeout to list view requests to avoid flicker, use EuiEmptyPrompt for loading screen, add doc link to settings step * Add information about snapshots to delete repository behavior, add doc link for source only toggle, add size notation help text * Add main doc link * Copywriting and i18n fixes, and add some common settings to third party repo types * Add fields to third party repo detail panel * More copywriting fixes * Use spinner for duration and end time if snapshotting is still in progress * Show all repository type options, mark missing plugins * Revert "Show all repository type options, mark missing plugins" This reverts commit e34ee47cece372de05cabcc77a0ee0d867c32f66. * Fix space * [SR] Add permissions UI and Cloud-specific repository type UI branch (#35833) * Add missing permissions UI and cloud-specific repository type UI branch * Add ES UI as owners of /snapshot_restore directory * Add no repository types callout for Cloud edge case * Redirect invalid section param to repositories * Add warning empty prompt if all repositories have errrors * Replace repository cards with EuiCard * Add snapshot doc link to repository error empty prompt * Remove auto-verification from list and get routes, add separate verification route, add manual verification to repository detail panel * Update copy and remove obsolete test * Remove unused scss files * Final changes to repository cards
2019-05-13 16:03:37 +02:00
"xpack.snapshotRestore": "x-pack/plugins/snapshot_restore",
"xpack.spaces": "x-pack/plugins/spaces",
Upgrade assistant - Phase 1 (#25168) * Get basic scaffolding working * Wire up cluster checkup data * Add types for elasticsearch plugin * Implement basics of checkup tab * Update style of deprecations * Add copy and reload button to checkup * Add filtering by warning level * Add deprecation logging tab * Copy updates and cleanup * Type cleanup * Move deprecation logging to overview tab * Make filters togglable * Move sections into tabs and add support for grouping * Cleanup and add clearer labels * Use tables for message grouping * Cleanup and small fixes * Allow console to load relative URLs * Add reindex in console button to reindex tasks * Merge documentation UI and uiButtons * Fix tests * Filter bar tweaks * Filter out index settings that can't be set * Fix types * Add tests for deprecation_logging * Add tests for reindex templates * Make KibanaConfig generic * Simplify integration test * Finish backend unit tests * Fixup types * Fix uiButton updating for reindex items * Fixed background color stretching * Pulling tabs out and re-ordering filter buttons * Making accordions more item-list like * Turned Healths into Badges - Couldn’t do the conversion within the cell because it only passed color * Fix overflow issue * Optional filter and expand/collapse controls * Reorganizing - Added placeholder for moving action button up into accordion header - Removed repetitive message name outputs - Slightly better listing of each message when sorting by index - Only showing number of severity when sorting by index - Still need to allow showing all severity levels - Added indice count when sorting by issue * Putting `Deprecation logging` in a `EuiDescribedFormGroup` * Added some stats, empty prompts, and all clear prompt * Added docs link * Cleaned up sass files * Revert changes to fake_deprecations * Update blacklisted settings * wip * Move data fetching and tab control * Wire up overview summary * Cleanup docs/uiButtons + move actions to index table * Add expand/collapse all functionality * Wire up search box * Wire up severity indicators * Fix types * Round out functional tests * Fix fake data * Remove info deprecation level * Fix extra space on cluster tab control bar * Cleanup code and localize majority of UI controls * Change overview tab to steps layout * Update copy * Localize overview tab * Complete localization of checkup tabs * Make ES version dynamic based on branch * Add pagination to checkup tabs * Rename checkup -> assistant * Cleanup filter and group by bars * WIP UI unit tests * Copy tweaks * Fix i18n formatting issues * Update tests for copy * Add tests for remaining UI * Fix pagination w/ filter changes + table button color * Small cleanup * Add reindex button to old index deprecations * Add shrunken indices setting to copy settings blacklist for #18469 * Add next steps to overview tab + update copy * Remove usage of migration assistance API * Use all/critical toggle for filter buttons * Cloud upgrade copy * Translate reindex button * Remove hacked EUI type * Show incomplete banner on all tabs * Update copy for waiting for next version * Review comments * Update deprecation level type * Update checkup tab snapshots * Remove dependencies on types from #25168 * Use types from new global type defs * Remove 'Reindex in Console' button * Remove unused variable
2018-12-19 00:08:06 +01:00
"xpack.upgradeAssistant": "x-pack/plugins/upgrade_assistant",
[Uptime] Localization (#28183) * Add localization tokens. * Fix import errors. * Rename a translation key/message. Fix copy/paste mistake. * Make i18n provider root element of application. * Add xpack.uptime to .i18nrc.json. * Remove icon. * Update x-pack/plugins/uptime/public/components/functional/snapshot_histogram.tsx Co-Authored-By: justinkambic <justin.kambic@elastic.co> * Update x-pack/plugins/uptime/public/components/functional/snapshot_histogram.tsx Co-Authored-By: justinkambic <justin.kambic@elastic.co> * Update x-pack/plugins/uptime/public/components/queries/empty_state/empty_state.tsx Co-Authored-By: justinkambic <justin.kambic@elastic.co> * Replace ... with …. * Update x-pack/plugins/uptime/public/components/queries/empty_state/empty_state.tsx Co-Authored-By: justinkambic <justin.kambic@elastic.co> * Update x-pack/plugins/uptime/public/components/queries/empty_state/empty_state.tsx Co-Authored-By: justinkambic <justin.kambic@elastic.co> * Update x-pack/plugins/uptime/public/components/queries/empty_state/empty_state.tsx Co-Authored-By: justinkambic <justin.kambic@elastic.co> * Move a link to formatted message value prop. * Update x-pack/plugins/uptime/public/components/queries/error_list/error_list.tsx Reformat naming of column localization keys. Co-Authored-By: justinkambic <justin.kambic@elastic.co> * Update error list table column localization keys. * Update x-pack/plugins/uptime/public/components/queries/filter_bar/filter_bar.tsx Update label key. Co-Authored-By: justinkambic <justin.kambic@elastic.co> * Update label localization keys for filter bar. * Update x-pack/plugins/uptime/public/components/queries/filter_bar/filter_bar.tsx Update localization key for filter bar tooltip title. Co-Authored-By: justinkambic <justin.kambic@elastic.co> * Update x-pack/plugins/uptime/public/components/queries/filter_bar/filter_bar.tsx Update localization key for filter bar tooltip text. Co-Authored-By: justinkambic <justin.kambic@elastic.co> * Update x-pack/plugins/uptime/public/components/queries/monitor_charts/monitor_charts.tsx Improve RTT Breakdown title localization key. Co-Authored-By: justinkambic <justin.kambic@elastic.co> * Add description and update a localization key. * Update x-pack/plugins/uptime/public/components/queries/monitor_charts/monitor_charts.tsx Co-Authored-By: justinkambic <justin.kambic@elastic.co> * Update x-pack/plugins/uptime/public/components/queries/monitor_list/monitor_list.tsx Co-Authored-By: justinkambic <justin.kambic@elastic.co> * Update monitor charts localization keys. * Extract conditional message values into separate translate calls. * Update x-pack/plugins/uptime/public/components/queries/monitor_list/monitor_list.tsx Co-Authored-By: justinkambic <justin.kambic@elastic.co> * Update monitor list column header localization keys. * Update x-pack/plugins/uptime/public/components/queries/monitor_list/monitor_list.tsx Co-Authored-By: justinkambic <justin.kambic@elastic.co> * Monitor list update localization key of series label. * Update x-pack/plugins/uptime/public/components/queries/monitor_list/monitor_list.tsx Co-Authored-By: justinkambic <justin.kambic@elastic.co> * Update x-pack/plugins/uptime/public/components/queries/monitor_status_bar/monitor_status_bar.tsx Co-Authored-By: justinkambic <justin.kambic@elastic.co> * Improve destructuring in monitor status bar, extract conditional values to separate translations. * Update x-pack/plugins/uptime/public/components/queries/monitor_status_bar/monitor_status_bar.tsx Co-Authored-By: justinkambic <justin.kambic@elastic.co> * Update x-pack/plugins/uptime/public/components/queries/monitor_status_bar/monitor_status_bar.tsx Co-Authored-By: justinkambic <justin.kambic@elastic.co> * Apply suggestions from code review Co-Authored-By: justinkambic <justin.kambic@elastic.co> * Update localization keys for ping list. * Apply suggestions from code review Implement PR suggestions for PingList component. Co-Authored-By: justinkambic <justin.kambic@elastic.co> * Apply suggestions from code review Add PR suggestions for Snapshot component. Co-Authored-By: justinkambic <justin.kambic@elastic.co> * Update localization keys for Snapshot component. * Remove unneeded translation. * Update x-pack/plugins/uptime/public/register_feature.ts Implement PR suggestion for register_feature.ts Co-Authored-By: justinkambic <justin.kambic@elastic.co> * Apply suggestions from code review Implement PR suggestions for uptime app. Co-Authored-By: justinkambic <justin.kambic@elastic.co> * Update localization, add translations for UptimeApp. * Run prettier to fix style problem. * Fix duplicate localization keys. * Update x-pack/plugins/uptime/public/uptime_app.tsx Implement PR feedback. Co-Authored-By: justinkambic <justin.kambic@elastic.co> * Update x-pack/plugins/uptime/public/components/queries/snapshot/snapshot.tsx Implement a PR suggestion. Co-Authored-By: justinkambic <justin.kambic@elastic.co> * Update x-pack/plugins/uptime/public/components/queries/snapshot/snapshot.tsx Implement a PR change. Co-Authored-By: justinkambic <justin.kambic@elastic.co> * Implement PR feedback.
2019-01-16 23:03:16 +01:00
"xpack.uptime": "x-pack/plugins/uptime",
"xpack.watcher": "x-pack/plugins/watcher"
},
"exclude": ["src/legacy/ui/ui_render/ui_render_mixin.js"],
"translations": [
2019-05-23 02:15:57 +02:00
"x-pack/plugins/translations/translations/zh-CN.json",
"x-pack/plugins/translations/translations/ja-JP.json"
]
}