mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
Remove prefix from translations keys
This commit is contained in:
@@ -10,7 +10,7 @@ import {BindableValue, Computed, Disposable, dom, Observable, onKeyDown, styled}
|
||||
import {defaultMenuOptions, IOpenController, setPopupToCreateDom} from 'popweasel';
|
||||
import {makeT} from 'app/client/lib/localization';
|
||||
|
||||
const t = makeT('ui2018.ColorSelect');
|
||||
const t = makeT('ColorSelect');
|
||||
|
||||
export interface StyleOptions {
|
||||
textColor: ColorOption,
|
||||
|
||||
@@ -14,7 +14,7 @@ import { cssLink } from 'app/client/ui2018/links';
|
||||
import { BindableValue, dom, Observable, styled } from 'grainjs';
|
||||
import { tooltip } from 'popweasel';
|
||||
|
||||
const t = makeT('ui2018.breadcrumbs');
|
||||
const t = makeT('breadcrumbs');
|
||||
|
||||
export const cssBreadcrumbs = styled('div', `
|
||||
color: ${theme.lightText};
|
||||
|
||||
@@ -11,7 +11,7 @@ import { BindableValue, Computed, dom, DomElementArg, DomElementMethod, IDomArgs
|
||||
MaybeObsArray, MutableObsArray, Observable, styled } from 'grainjs';
|
||||
import * as weasel from 'popweasel';
|
||||
|
||||
const t = makeT('ui2018.menus');
|
||||
const t = makeT('menus');
|
||||
|
||||
export interface IOptionFull<T> {
|
||||
value: T;
|
||||
|
||||
@@ -12,7 +12,7 @@ import {Computed, Disposable, dom, DomContents, DomElementArg, input, keyframes,
|
||||
MultiHolder, Observable, styled} from 'grainjs';
|
||||
import {cssMenuElem} from 'app/client/ui2018/menus';
|
||||
|
||||
const t = makeT('ui2018.modals');
|
||||
const t = makeT('modals');
|
||||
|
||||
// IModalControl is passed into the function creating the body of the modal.
|
||||
export interface IModalControl {
|
||||
|
||||
@@ -8,7 +8,7 @@ import { hoverTooltip } from 'app/client/ui/tooltips';
|
||||
import { menu, menuItem, menuText } from "app/client/ui2018/menus";
|
||||
import { dom, domComputed, DomElementArg, makeTestId, observable, Observable, styled } from "grainjs";
|
||||
|
||||
const t = makeT('ui2018.pages');
|
||||
const t = makeT('pages');
|
||||
|
||||
const testId = makeTestId('test-docpage-');
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@ import debounce = require('lodash/debounce');
|
||||
|
||||
export * from 'app/client/models/SearchModel';
|
||||
|
||||
const t = makeT('ui2018.search');
|
||||
const t = makeT('search');
|
||||
|
||||
const EXPAND_TIME = .5;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user