UNPKG

@finos/perspective-viewer

Version:

The `<perspective-viewer>` Custom Element, frontend for Perspective.js

102 lines (95 loc) 5.67 kB
// ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ // ┃ ██████ ██████ ██████ █ █ █ █ █ █▄ ▀███ █ ┃ // ┃ ▄▄▄▄▄█ █▄▄▄▄▄ ▄▄▄▄▄█ ▀▀▀▀▀█▀▀▀▀▀ █ ▀▀▀▀▀█ ████████▌▐███ ███▄ ▀█ █ ▀▀▀▀▀ ┃ // ┃ █▀▀▀▀▀ █▀▀▀▀▀ █▀██▀▀ ▄▄▄▄▄ █ ▄▄▄▄▄█ ▄▄▄▄▄█ ████████▌▐███ █████▄ █ ▄▄▄▄▄ ┃ // ┃ █ ██████ █ ▀█▄ █ ██████ █ ███▌▐███ ███████▄ █ ┃ // ┣━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┫ // ┃ Copyright (c) 2017, the Perspective Authors. ┃ // ┃ ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌ ┃ // ┃ This file is part of the Perspective library, distributed under the terms ┃ // ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃ // ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛ perspective-viewer, perspective-dropdown { // Config --group-by-label--content: "Group By"; --split-by-label--content: "Split By"; --sort-label--content: "Order By"; --filter-label--content: "Where"; --transpose-button--content: "Swap"; --config-button-icon--content: "configure"; --all-columns-label--content: "All Columns"; --untitled--content: "untitled"; // Plugin names --plugin-name-datagrid--content: "Datagrid"; --plugin-name-treemap--content: "Treemap"; --plugin-name-sunburst--content: "Sunburst"; --plugin-name-heatmap--content: "Heatmap"; --plugin-name-x-bar--content: "X Bar"; --plugin-name-y-bar--content: "Y Bar"; --plugin-name-y-line--content: "Y Line"; --plugin-name-x-y-line--content: "X/Y Line"; --plugin-name-x-y-scatter--content: "X/Y Scatter"; --plugin-name-y-scatter--content: "Y Scatter"; --plugin-name-y-area--content: "Y Area"; --plugin-name-ohlc--content: "OHLC"; --plugin-name-candlestick--content: "Candlestick"; // Column Selector names --column-selector-column-columns--content: "Columns"; --column-selector-column-x-axis--content: "X Axis"; --column-selector-column-y-axis--content: "Y Axis"; --column-selector-column-color--content: "Color"; --column-selector-column-size--content: "Size"; --column-selector-column-symbol--content: "Symbol"; --column-selector-column-label--content: "Label"; --column-selector-column-tooltip--content: "Tooltip"; --add-expression-button--content: "New Column"; // Toolbar --no-results--content: "Invalid Column"; --datagrid-column-edit-button--content: "Edit"; --copy-button--content: "Copy"; --export-button--content: "Export"; --reset-button--content: "Reset"; --edit-mode--read-only--content: "Read Only"; --edit-mode--edit--content: "Text Edit"; --edit-mode--select-row--content: "Select Row"; --edit-mode--select-column--content: "Select Column"; --edit-mode--select-region--content: "Select Region"; --scroll-lock-toggle--content: "Free Scroll"; --scroll-lock-alt-toggle--content: "Align Scroll"; // Column Settings --color-label--content: "Color"; --format-label--content: "Format"; --timezone-label--content: "Timezone"; --date-style-label--content: "Date Style"; --time-style-label--content: "Time Style"; --foreground-label--content: "Foreground"; --background-label--content: "Background"; --series-label--content: "Series"; --color-range-label--content: "Color Range"; --style-label--content: "Style"; --minimum-integer-digits-label--content: "Minimum Integer Digits"; --rounding-increment-label--content: "Rounding Increment"; --notation-label--content: "Notation"; --use-grouping-label--content: "Use Grouping"; --sign-display-label--content: "Sign Display"; --max-value-label--content: "Max Value"; --rounding-priority-label--content: "Rounding Priority"; --rounding-mode-label--content: "Rounding Mode"; --trailing-zero-display-label--content: "Trailing Zero Display"; --fractional-digits-label--content: "Fractional Digits"; --significant-digits-label--content: "Significant Digits"; --year-label--content: "Year"; --month-label--content: "Month"; --day-label--content: "Day"; --weekday-label--content: "Weekday"; --hour-label--content: "Hour"; --minute-label--content: "Minute"; --second-label--content: "Second"; --fractional-seconds-label--content: "Fractional Seconds"; --hours-label--content: "12/24 Hours"; // Tabs --style-tab-label--content: "Style"; --attributes-tab-label--content: "Attributes"; --debug-tab-label--content: "Debug JSON"; }