@plurid/plurid-data
Version:
Plurid Constants, Interfaces, Enumerations
1,096 lines (1,020 loc) • 81.1 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
const compareTypes = {
equal: "==",
equalLessThan: "<=",
lessThan: "<",
equalGreaterThan: ">=",
greaterThan: ">"
};
exports.SHORTCUTS = void 0;
(function(SHORTCUTS) {
SHORTCUTS["TOGGLE_FIRST_PERSON"] = "TOGGLE_FIRST_PERSON";
SHORTCUTS["MOVE_FORWARD"] = "MOVE_FORWARD";
SHORTCUTS["MOVE_BACKWARD"] = "MOVE_BACKWARD";
SHORTCUTS["MOVE_LEFT"] = "MOVE_LEFT";
SHORTCUTS["MOVE_RIGHT"] = "MOVE_RIGHT";
SHORTCUTS["MOVE_UP"] = "MOVE_UP";
SHORTCUTS["MOVE_DOWN"] = "MOVE_DOWN";
SHORTCUTS["TURN_LEFT"] = "TURN_LEFT";
SHORTCUTS["TURN_RIGHT"] = "TURN_RIGHT";
SHORTCUTS["TURN_UP"] = "TURN_UP";
SHORTCUTS["TURN_DOWN"] = "TURN_DOWN";
SHORTCUTS["ROTATE_UP"] = "ROTATE_UP";
SHORTCUTS["ROTATE_DOWN"] = "ROTATE_DOWN";
SHORTCUTS["ROTATE_LEFT"] = "ROTATE_LEFT";
SHORTCUTS["ROTATE_RIGHT"] = "ROTATE_RIGHT";
SHORTCUTS["TOGGLE_ROTATE"] = "TOGGLE_ROTATE";
SHORTCUTS["TRANSLATE_UP"] = "TRANSLATE_UP";
SHORTCUTS["TRANSLATE_DOWN"] = "TRANSLATE_DOWN";
SHORTCUTS["TRANSLATE_LEFT"] = "TRANSLATE_LEFT";
SHORTCUTS["TRANSLATE_RIGHT"] = "TRANSLATE_RIGHT";
SHORTCUTS["TRANSLATE_IN"] = "TRANSLATE_IN";
SHORTCUTS["TRANSLATE_OUT"] = "TRANSLATE_OUT";
SHORTCUTS["TOGGLE_TRANSLATE"] = "TOGGLE_TRANSLATE";
SHORTCUTS["SCALE_UP"] = "SCALE_UP";
SHORTCUTS["SCALE_DOWN"] = "SCALE_DOWN";
SHORTCUTS["TOGGLE_SCALE"] = "TOGGLE_SCALE";
SHORTCUTS["FOCUS_PLANE"] = "FOCUS_PLANE";
SHORTCUTS["FOCUS_PARENT"] = "FOCUS_PARENT";
SHORTCUTS["REFRESH_PLANE"] = "REFRESH_PLANE";
SHORTCUTS["ISOLATE_PLANE"] = "ISOLATE_PLANE";
SHORTCUTS["OPEN_CLOSED_PLANE"] = "OPEN_CLOSED_PLANE";
SHORTCUTS["CLOSE_PLANE"] = "CLOSE_PLANE";
SHORTCUTS["PREVIOUS_ROOT"] = "PREVIOUS_ROOT";
SHORTCUTS["NEXT_ROOT"] = "NEXT_ROOT";
SHORTCUTS["FOCUS_ROOT"] = "FOCUS_ROOT";
})(exports.SHORTCUTS || (exports.SHORTCUTS = {}));
exports.KEY_MODIFIERS = void 0;
(function(KEY_MODIFIERS) {
KEY_MODIFIERS["SHIFT"] = "SHIFT";
KEY_MODIFIERS["ALT"] = "ALT";
KEY_MODIFIERS["CTRL"] = "CTRL";
KEY_MODIFIERS["META"] = "META";
KEY_MODIFIERS["METACTRL"] = "METACTRL";
})(exports.KEY_MODIFIERS || (exports.KEY_MODIFIERS = {}));
exports.LAYOUT_TYPES = void 0;
(function(LAYOUT_TYPES) {
LAYOUT_TYPES["COLUMNS"] = "COLUMNS";
LAYOUT_TYPES["ROWS"] = "ROWS";
LAYOUT_TYPES["FACE_TO_FACE"] = "FACE_TO_FACE";
LAYOUT_TYPES["ZIG_ZAG"] = "ZIG_ZAG";
LAYOUT_TYPES["SHEAVES"] = "SHEAVES";
LAYOUT_TYPES["META"] = "META";
})(exports.LAYOUT_TYPES || (exports.LAYOUT_TYPES = {}));
exports.SIZES = void 0;
(function(SIZES) {
SIZES["SMALL"] = "SMALL";
SIZES["NORMAL"] = "NORMAL";
SIZES["LARGE"] = "LARGE";
})(exports.SIZES || (exports.SIZES = {}));
exports.TRANSFORM_MODES = void 0;
(function(TRANSFORM_MODES) {
TRANSFORM_MODES["ROTATION"] = "ROTATION";
TRANSFORM_MODES["SCALE"] = "SCALE";
TRANSFORM_MODES["TRANSLATION"] = "TRANSLATION";
TRANSFORM_MODES["ALL"] = "ALL";
})(exports.TRANSFORM_MODES || (exports.TRANSFORM_MODES = {}));
exports.TRANSFORM_TOUCHES = void 0;
(function(TRANSFORM_TOUCHES) {
TRANSFORM_TOUCHES["SWIPE"] = "SWIPE";
TRANSFORM_TOUCHES["PAN"] = "PAN";
})(exports.TRANSFORM_TOUCHES || (exports.TRANSFORM_TOUCHES = {}));
exports.TOOLBAR_DRAWERS = void 0;
(function(TOOLBAR_DRAWERS) {
TOOLBAR_DRAWERS["ALL"] = "ALL";
TOOLBAR_DRAWERS["GLOBAL"] = "GLOBAL";
TOOLBAR_DRAWERS["TRANSFORM"] = "TRANSFORM";
TOOLBAR_DRAWERS["SPACE"] = "SPACE";
TOOLBAR_DRAWERS["TOOLBAR"] = "TOOLBAR";
TOOLBAR_DRAWERS["VIEWCUBE"] = "VIEWCUBE";
TOOLBAR_DRAWERS["TECHNICAL"] = "TECHNICAL";
TOOLBAR_DRAWERS["SHORTCUTS"] = "SHORTCUTS";
})(exports.TOOLBAR_DRAWERS || (exports.TOOLBAR_DRAWERS = {}));
const PLURID_DEFAULT_CONFIGURATION_SPACE_CULLING_DISTANCE = 1500;
const PLURID_DEFAULT_CONFIGURATION_LINK_SUFFIX = "'";
const PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_SHOW = true;
const PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_FADE_IN = 800;
const PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_FADE_OUT = 400;
const PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_OFFSET_X = 5;
const PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_OFFSET_Y = 0;
const PLURID_ROUTE_SEPARATOR = "://";
const PLURID_ROUTE_DEFAULT = "default";
const PLURID_ROUTE_DEFAULT_PATH_VALUE = "/";
const PLURID_ROUTE_DEFAULT_PATH = "p";
const PLURID_ROUTE_DEFAULT_SPACE_VALUE = "default";
const PLURID_ROUTE_DEFAULT_SPACE = "s";
const PLURID_ROUTE_DEFAULT_UNIVERSE_VALUE = "default";
const PLURID_ROUTE_DEFAULT_UNIVERSE = "u";
const PLURID_ROUTE_DEFAULT_CLUSTER_VALUE = "default";
const PLURID_ROUTE_DEFAULT_CLUSTER = "c";
const PLURID_DEFAULT_CONFIGURATION_NETWORK_HOST = "originhost";
const PLURID_ROUTER_STORAGE = "__PLURID_ROUTER__";
const PLURID_DEFAULT_RESIZE_DEBOUNCE_TIME = 50;
const PLURID_DEFAULT_PREVENT_OVERSCROLL_TIMEOUT = 250;
const PLURID_DEFAULT_ANIMATED_TRANSFORM_TIMEOUT = 500;
const defaultConfigurationGlobal = {
micro: false,
theme: {
general: "plurid",
interaction: "plurid"
},
language: "english",
transparentUI: false,
render: "plurid"
};
const defaultConfigurationElements = {
toolbar: {
show: true,
opaque: true,
conceal: false,
transformIcons: false,
transformButtons: false,
drawers: [],
toggledDrawers: []
},
viewcube: {
show: true,
opaque: true,
conceal: false,
buttons: true
},
plane: {
width: 1,
opacity: 1,
controls: {
show: true,
title: true,
pathbar: {
domainURL: true
}
}
},
link: {
suffix: PLURID_DEFAULT_CONFIGURATION_LINK_SUFFIX,
preview: {
show: PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_SHOW,
fadeIn: PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_FADE_IN,
fadeOut: PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_FADE_OUT,
offsetX: PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_OFFSET_X,
offsetY: PLURID_DEFAULT_CONFIGURATION_LINK_PREVIEW_OFFSET_Y
}
},
switch: {
show: false
}
};
const defaultConfigurationSpace = {
layout: {
type: exports.LAYOUT_TYPES.COLUMNS,
columns: 2
},
perspective: 2e3,
opaque: true,
fadeInTime: 1500,
center: false,
transformOrigin: {
show: true,
size: exports.SIZES.NORMAL
},
transformLocks: {
rotationX: true,
rotationY: true,
translationY: true,
translationX: true,
translationZ: true,
scale: true
},
transformMode: exports.TRANSFORM_MODES.ALL,
transformMultimode: false,
transformTouch: exports.TRANSFORM_TOUCHES.PAN,
firstPerson: false,
cullingDistance: PLURID_DEFAULT_CONFIGURATION_SPACE_CULLING_DISTANCE
};
const defaultConfigurationNetwork = {
protocol: "https",
host: PLURID_DEFAULT_CONFIGURATION_NETWORK_HOST
};
const defaultConfigurationDevelopment = {
planeDebugger: false,
spaceDebugger: false
};
const defaultConfiguration = {
global: Object.assign({}, defaultConfigurationGlobal),
elements: Object.assign({}, defaultConfigurationElements),
space: Object.assign({}, defaultConfigurationSpace),
network: Object.assign({}, defaultConfigurationNetwork),
development: Object.assign({}, defaultConfigurationDevelopment)
};
const layoutNames = {
COLUMNS: "columns",
ROWS: "rows",
FACE_TO_FACE: "face to face",
ZIG_ZAG: "zig zag",
SHEAVES: "sheaves",
META: "meta"
};
const PLURID_ENTITY_VIEW = "PluridView";
const PLURID_ENTITY_APPLICATION_CONFIGURATOR = "PluridApplicationConfigurator";
const PLURID_ENTITY_TRANSFORM_ORIGIN = "PluridTransformOrigin";
const PLURID_ENTITY_PLANE = "PluridPlane";
const PLURID_ENTITY_PLANE_BRIDGE = "PluridPlaneBridge";
const PLURID_ENTITY_PLANE_CONTROLS = "PluridPlaneControls";
const PLURID_ENTITY_PLANE_CONTENT = "PluridPlaneContent";
const PLURID_ENTITY_PLANE_CONFIGURATOR = "PluridPlaneConfigurator";
const PLURID_ENTITY_PLANE_DEBUGGER = "PluridPlaneDebugger";
const PLURID_ENTITY_LINK = "PluridLink";
const PLURID_ENTITY_ROOT = "PluridRoot";
const PLURID_ENTITY_ROOTS = "PluridRoots";
const PLURID_ENTITY_SPACE = "PluridSpace";
const PLURID_ENTITY_SPACE_DEBUGGER = "PluridSpaceDebugger";
const PLURID_ENTITY_MULTISPACE = "PluridMultispace";
const PLURID_ENTITY_TOOLBAR = "PluridToolbar";
const PLURID_ENTITY_VIEWCUBE = "PluridViewcube";
const PLURID_ENTITY_UNIVERSE_EXPLORER = "PluridUniverseExplorer";
const PLURID_ROUTER_LOCATION_CHANGED = "pluridrouterlocationchanged";
const PLURID_ROUTER_LOCATION_STORED = "pluridrouterlocationstored";
const directions = {
left: "left",
right: "right",
up: "up",
down: "down"
};
const chinese = {
viewcubeFront: "面前",
viewcubeBack: "背部",
viewcubeLeft: "剩下",
viewcubeRight: "剩下",
viewcubeTop: "最佳",
viewcubeBase: "基础",
toolbarTransformRotate: "旋转",
toolbarTransformScale: "规模",
toolbarTransformTranslate: "翻译",
toolbarDrawerGlobalTitle: "全球",
toolbarDrawerGlobalGeneralTheme: "一般主题",
toolbarDrawerGlobalInteractionTheme: "互动主题",
toolbarDrawerGlobalLanguage: "语言",
toolbarDrawerTransformTitle: "转变",
toolbarDrawerTransformMultiModeTransform: "多模变换",
toolbarDrawerTransformAllowRotationX: "允许旋转x",
toolbarDrawerTransformAllowRotationY: "允许旋转y",
toolbarDrawerTransformAllowTranslationX: "允许翻译x",
toolbarDrawerTransformAllowTranslationY: "允许翻译y",
toolbarDrawerTransformAllowTranslationZ: "允许翻译z",
toolbarDrawerTransformAllowScale: "允许规模",
toolbarDrawerTransformTouchTransform: "触摸变换",
toolbarDrawerSpaceTitle: "空间",
toolbarDrawerSpaceTransparentUserInterface: "透明的用户界面",
toolbarDrawerSpaceShowTransformOrigin: "显示变换原点",
toolbarDrawerSpaceTransformOriginSize: "转换原点大小",
toolbarDrawerSpacePlaneOpacity: "平面不透明度",
toolbarDrawerSpaceLayoutType: "布局类型",
toolbarDrawerToolbarTitle: "工具栏",
toolbarDrawerToolbarAlwaysOpaque: "总是不透明",
toolbarDrawerToolbarShowTransformIcons: "显示转换图标",
toolbarDrawerToolbarShowTransformArrows: "显示变换箭头",
toolbarDrawerToolbarConcealToolbar: "隐藏工具栏",
toolbarDrawerViewcubeTitle: "查看立方体",
toolbarDrawerViewcubeShowViewcube: "显示视图立方体",
toolbarDrawerViewcubeShowTransformButtons: "显示转换按钮",
toolbarDrawerViewcubeAlwaysOpaque: "总是不透明",
toolbarDrawerViewcubeConcealViewcube: "隐藏视点",
toolbarDrawerTechnicalTitle: "技术",
toolbarDrawerTechnicalCullingDistance: "剔除距离",
toolbarDrawerShortcutsTitle: "捷径",
toolbarDrawerShortcutsToggleFirstPerson: "切换第一人称",
toolbarDrawerShortcutsMoveForward: "前进",
toolbarDrawerShortcutsMoveBackward: "往后退",
toolbarDrawerShortcutsMoveLeft: "向左移动",
toolbarDrawerShortcutsMoveRight: "向右移",
toolbarDrawerShortcutsMoveUp: "提升",
toolbarDrawerShortcutsMoveDown: "下移",
toolbarDrawerShortcutsTurnLeft: "转左",
toolbarDrawerShortcutsTurnRight: "右转",
toolbarDrawerShortcutsTurnUp: "到场",
toolbarDrawerShortcutsTurnDown: "驳回",
toolbarDrawerShortcutsRotateUp: "向上旋转",
toolbarDrawerShortcutsRotateDown: "向下旋转",
toolbarDrawerShortcutsRotateLeft: "向左旋转",
toolbarDrawerShortcutsRotateRight: "右旋",
toolbarDrawerShortcutsToggleRotate: "拨动旋转",
toolbarDrawerShortcutsTranslateUp: "向上翻译",
toolbarDrawerShortcutsTranslateDown: "向下翻译",
toolbarDrawerShortcutsTranslateLeft: "向左翻译",
toolbarDrawerShortcutsTranslateRight: "正确翻译",
toolbarDrawerShortcutsTranslateIn: "翻译成",
toolbarDrawerShortcutsTranslateOut: "翻译出来",
toolbarDrawerShortcutsToggleTranslate: "切换翻译",
toolbarDrawerShortcutsScaleUp: "放大",
toolbarDrawerShortcutsScaleDown: "缩小",
toolbarDrawerShortcutsToggleScale: "切换刻度",
toolbarDrawerShortcutsFocusPlane: "焦平面",
toolbarDrawerShortcutsFocusParent: "焦點父母",
toolbarDrawerShortcutsRefreshPlane: "刷新平面",
toolbarDrawerShortcutsIsolatePlane: "隔離平面",
toolbarDrawerShortcutsOpenClosedPlane: "開閉平面",
toolbarDrawerShortcutsClosePlane: "關閉平面",
toolbarDrawerShortcutsPreviousRoot: "前根",
toolbarDrawerShortcutsNextRoot: "下一個根",
toolbarDrawerShortcutsFocusRoot: "焦點根",
toolbarDrawerShortcutsArrowOrScrollUp: "↑ 或向上滚动",
toolbarDrawerShortcutsArrowOrScrollDown: "↓ 或向下滚动",
toolbarDrawerShortcutsArrowOrScrollLeft: "← 或向左滚动",
toolbarDrawerShortcutsArrowOrScrollRight: "→ 或向右滚动"
};
const english = {
viewcubeFront: "front",
viewcubeBack: "back",
viewcubeLeft: "left",
viewcubeRight: "right",
viewcubeTop: "top",
viewcubeBase: "base",
toolbarTransformRotate: "rotate",
toolbarTransformScale: "scale",
toolbarTransformTranslate: "translate",
toolbarDrawerGlobalTitle: "global",
toolbarDrawerGlobalGeneralTheme: "general theme",
toolbarDrawerGlobalInteractionTheme: "interaction theme",
toolbarDrawerGlobalLanguage: "language",
toolbarDrawerTransformTitle: "transform",
toolbarDrawerTransformMultiModeTransform: "multi-mode transform",
toolbarDrawerTransformAllowRotationX: "allow rotation x",
toolbarDrawerTransformAllowRotationY: "allow rotation y",
toolbarDrawerTransformAllowTranslationX: "allow translation x",
toolbarDrawerTransformAllowTranslationY: "allow translation y",
toolbarDrawerTransformAllowTranslationZ: "allow translation z",
toolbarDrawerTransformAllowScale: "allow scale",
toolbarDrawerTransformTouchTransform: "touch transform",
toolbarDrawerSpaceTitle: "space",
toolbarDrawerSpaceTransparentUserInterface: "transparent user interface",
toolbarDrawerSpaceShowTransformOrigin: "show transform origin",
toolbarDrawerSpaceTransformOriginSize: "transform origin size",
toolbarDrawerSpacePlaneOpacity: "plane opacity",
toolbarDrawerSpaceLayoutType: "layout type",
toolbarDrawerToolbarTitle: "toolbar",
toolbarDrawerToolbarAlwaysOpaque: "always opaque",
toolbarDrawerToolbarShowTransformIcons: "show transform icons",
toolbarDrawerToolbarShowTransformArrows: "show transform arrows",
toolbarDrawerToolbarConcealToolbar: "conceal toolbar",
toolbarDrawerViewcubeTitle: "viewcube",
toolbarDrawerViewcubeShowViewcube: "show viewcube",
toolbarDrawerViewcubeShowTransformButtons: "show transform buttons",
toolbarDrawerViewcubeAlwaysOpaque: "always opaque",
toolbarDrawerViewcubeConcealViewcube: "conceal viewcube",
toolbarDrawerTechnicalTitle: "technical",
toolbarDrawerTechnicalCullingDistance: "culling distance",
toolbarDrawerShortcutsTitle: "shortcuts",
toolbarDrawerShortcutsToggleFirstPerson: "toggle first person",
toolbarDrawerShortcutsMoveForward: "move forward",
toolbarDrawerShortcutsMoveBackward: "move backward",
toolbarDrawerShortcutsMoveLeft: "move left",
toolbarDrawerShortcutsMoveRight: "move right",
toolbarDrawerShortcutsMoveUp: "move up",
toolbarDrawerShortcutsMoveDown: "move down",
toolbarDrawerShortcutsTurnLeft: "turn left",
toolbarDrawerShortcutsTurnRight: "turn right",
toolbarDrawerShortcutsTurnUp: "turn up",
toolbarDrawerShortcutsTurnDown: "turn down",
toolbarDrawerShortcutsRotateUp: "rotate up",
toolbarDrawerShortcutsRotateDown: "rotate down",
toolbarDrawerShortcutsRotateLeft: "rotate left",
toolbarDrawerShortcutsRotateRight: "rotate right",
toolbarDrawerShortcutsToggleRotate: "toggle rotate",
toolbarDrawerShortcutsTranslateUp: "translate up",
toolbarDrawerShortcutsTranslateDown: "translate down",
toolbarDrawerShortcutsTranslateLeft: "translate left",
toolbarDrawerShortcutsTranslateRight: "translate right",
toolbarDrawerShortcutsTranslateIn: "translate in",
toolbarDrawerShortcutsTranslateOut: "translate out",
toolbarDrawerShortcutsToggleTranslate: "toggle translate",
toolbarDrawerShortcutsScaleUp: "scale up",
toolbarDrawerShortcutsScaleDown: "scale down",
toolbarDrawerShortcutsToggleScale: "toggle scale",
toolbarDrawerShortcutsFocusPlane: "focus plane",
toolbarDrawerShortcutsFocusParent: "focus parent",
toolbarDrawerShortcutsRefreshPlane: "refresh plane",
toolbarDrawerShortcutsIsolatePlane: "isolate plane",
toolbarDrawerShortcutsOpenClosedPlane: "open closed plane",
toolbarDrawerShortcutsClosePlane: "close plane",
toolbarDrawerShortcutsPreviousRoot: "previous root",
toolbarDrawerShortcutsNextRoot: "next root",
toolbarDrawerShortcutsFocusRoot: "focus root",
toolbarDrawerShortcutsArrowOrScrollUp: "↑ or scroll up",
toolbarDrawerShortcutsArrowOrScrollDown: "↓ or scroll down",
toolbarDrawerShortcutsArrowOrScrollLeft: "← or scroll left",
toolbarDrawerShortcutsArrowOrScrollRight: "→ or scroll right"
};
const french = {
viewcubeFront: "avant",
viewcubeBack: "arrière",
viewcubeLeft: "gauche",
viewcubeRight: "droite",
viewcubeTop: "haut",
viewcubeBase: "base",
toolbarTransformRotate: "tourner",
toolbarTransformScale: "échelle",
toolbarTransformTranslate: "transpose",
toolbarDrawerGlobalTitle: "global",
toolbarDrawerGlobalGeneralTheme: "thème général",
toolbarDrawerGlobalInteractionTheme: "thème d'interaction",
toolbarDrawerGlobalLanguage: "langue",
toolbarDrawerTransformTitle: "transformer",
toolbarDrawerTransformMultiModeTransform: "transformation multimode",
toolbarDrawerTransformAllowRotationX: "autoriser la rotation x",
toolbarDrawerTransformAllowRotationY: "autoriser la rotation y",
toolbarDrawerTransformAllowTranslationX: "autoriser transposer x",
toolbarDrawerTransformAllowTranslationY: "autoriser transposer y",
toolbarDrawerTransformAllowTranslationZ: "autoriser transposer z",
toolbarDrawerTransformAllowScale: "autoriser l'échelle",
toolbarDrawerTransformTouchTransform: "transformation tactile",
toolbarDrawerSpaceTitle: "espace",
toolbarDrawerSpaceTransparentUserInterface: "interface utilisateur transparente",
toolbarDrawerSpaceShowTransformOrigin: "montrer l'origine de la transformation",
toolbarDrawerSpaceTransformOriginSize: "transformer la taille d'origine",
toolbarDrawerSpacePlaneOpacity: "opacité du plan",
toolbarDrawerSpaceLayoutType: "type de mise en page",
toolbarDrawerToolbarTitle: "barre d'outils",
toolbarDrawerToolbarAlwaysOpaque: "toujours opaque",
toolbarDrawerToolbarShowTransformIcons: "afficher les icônes de transformation",
toolbarDrawerToolbarShowTransformArrows: "afficher les flèches de transformation",
toolbarDrawerToolbarConcealToolbar: "masquer la barre d'outils",
toolbarDrawerViewcubeTitle: "cube",
toolbarDrawerViewcubeShowViewcube: "montrer le cube",
toolbarDrawerViewcubeShowTransformButtons: "afficher les boutons de transformation",
toolbarDrawerViewcubeAlwaysOpaque: "toujours opaque",
toolbarDrawerViewcubeConcealViewcube: "cacher le cube",
toolbarDrawerTechnicalTitle: "technique",
toolbarDrawerTechnicalCullingDistance: "distance d'abattage",
toolbarDrawerShortcutsTitle: "raccourcis",
toolbarDrawerShortcutsToggleFirstPerson: "basculer à la première personne",
toolbarDrawerShortcutsMoveForward: "avancer",
toolbarDrawerShortcutsMoveBackward: "recule",
toolbarDrawerShortcutsMoveLeft: "à gauche",
toolbarDrawerShortcutsMoveRight: "à droite",
toolbarDrawerShortcutsMoveUp: "en haut",
toolbarDrawerShortcutsMoveDown: "descendre",
toolbarDrawerShortcutsTurnLeft: "tournez à gauche",
toolbarDrawerShortcutsTurnRight: "tournez à droite",
toolbarDrawerShortcutsTurnUp: "relever",
toolbarDrawerShortcutsTurnDown: "rabattre",
toolbarDrawerShortcutsRotateUp: "tourner vers le haut",
toolbarDrawerShortcutsRotateDown: "tourner vers le bas",
toolbarDrawerShortcutsRotateLeft: "tourne à gauche",
toolbarDrawerShortcutsRotateRight: "tourner à droite",
toolbarDrawerShortcutsToggleRotate: "basculer tourner",
toolbarDrawerShortcutsTranslateUp: "transpose vers le haut",
toolbarDrawerShortcutsTranslateDown: "transpose vers le bas",
toolbarDrawerShortcutsTranslateLeft: "transposez à gauche",
toolbarDrawerShortcutsTranslateRight: "transposez à droite",
toolbarDrawerShortcutsTranslateIn: "transposez en",
toolbarDrawerShortcutsTranslateOut: "transposez dehors",
toolbarDrawerShortcutsToggleTranslate: "basculer transposez",
toolbarDrawerShortcutsScaleUp: "augmenter",
toolbarDrawerShortcutsScaleDown: "réduire",
toolbarDrawerShortcutsToggleScale: "basculer l'échelle",
toolbarDrawerShortcutsFocusPlane: "plan actif",
toolbarDrawerShortcutsFocusParent: "plan parente",
toolbarDrawerShortcutsRefreshPlane: "plan rafraîchir",
toolbarDrawerShortcutsIsolatePlane: "isoler le plan",
toolbarDrawerShortcutsOpenClosedPlane: "ouvert fermé plan",
toolbarDrawerShortcutsClosePlane: "plan proche",
toolbarDrawerShortcutsPreviousRoot: "racine précédente",
toolbarDrawerShortcutsNextRoot: "racine suivante",
toolbarDrawerShortcutsFocusRoot: "focus racine",
toolbarDrawerShortcutsArrowOrScrollUp: "↑ ou scroll vers le haut",
toolbarDrawerShortcutsArrowOrScrollDown: "↓ ou scroll vers le bas",
toolbarDrawerShortcutsArrowOrScrollLeft: "← ou scroll vers la gauche",
toolbarDrawerShortcutsArrowOrScrollRight: "→ ou scroll vers la droite"
};
const german = {
viewcubeFront: "front",
viewcubeBack: "zurück",
viewcubeLeft: "links",
viewcubeRight: "rechts",
viewcubeTop: "top",
viewcubeBase: "base",
toolbarTransformRotate: "rotieren",
toolbarTransformScale: "skala",
toolbarTransformTranslate: "umsetzen",
toolbarDrawerGlobalTitle: "global",
toolbarDrawerGlobalGeneralTheme: "allgemeines thema",
toolbarDrawerGlobalInteractionTheme: "interaktionsthema",
toolbarDrawerGlobalLanguage: "sprache",
toolbarDrawerTransformTitle: "verwandeln",
toolbarDrawerTransformMultiModeTransform: "multimode-transformation",
toolbarDrawerTransformAllowRotationX: "drehung zulassen x",
toolbarDrawerTransformAllowRotationY: "drehung zulassen y",
toolbarDrawerTransformAllowTranslationX: "umsetzen zulassen x",
toolbarDrawerTransformAllowTranslationY: "umsetzen zulassen y",
toolbarDrawerTransformAllowTranslationZ: "umsetzen zulassen z",
toolbarDrawerTransformAllowScale: "skalierung zulassen",
toolbarDrawerTransformTouchTransform: "touch-transformation",
toolbarDrawerSpaceTitle: "raum",
toolbarDrawerSpaceTransparentUserInterface: "transparente benutzeroberfläche",
toolbarDrawerSpaceShowTransformOrigin: "zeige transformationsursprung",
toolbarDrawerSpaceTransformOriginSize: "ursprungsgröße transformieren",
toolbarDrawerSpacePlaneOpacity: "ebenenopazität",
toolbarDrawerSpaceLayoutType: "layouttyp",
toolbarDrawerToolbarTitle: "symbolleiste",
toolbarDrawerToolbarAlwaysOpaque: "immer undurchsichtig",
toolbarDrawerToolbarShowTransformIcons: "transformationssymbole anzeigen",
toolbarDrawerToolbarShowTransformArrows: "transformationspfeile anzeigen",
toolbarDrawerToolbarConcealToolbar: "symbolleiste verbergen",
toolbarDrawerViewcubeTitle: "würfel",
toolbarDrawerViewcubeShowViewcube: "würfel anzeigen",
toolbarDrawerViewcubeShowTransformButtons: "transformationsschaltflächen anzeigen",
toolbarDrawerViewcubeAlwaysOpaque: "immer undurchsichtig",
toolbarDrawerViewcubeConcealViewcube: "würfel verbergen",
toolbarDrawerTechnicalTitle: "technisch",
toolbarDrawerTechnicalCullingDistance: "keulungsentfernung",
toolbarDrawerShortcutsTitle: "verknüpfungen",
toolbarDrawerShortcutsToggleFirstPerson: "erste person umschalten",
toolbarDrawerShortcutsMoveForward: "vorwärts bewegen",
toolbarDrawerShortcutsMoveBackward: "rückwärts bewegen",
toolbarDrawerShortcutsMoveLeft: "nach links bewegen",
toolbarDrawerShortcutsMoveRight: "nach rechts bewegen",
toolbarDrawerShortcutsMoveUp: "nach oben bewegen",
toolbarDrawerShortcutsMoveDown: "sich abwärts bewegen",
toolbarDrawerShortcutsTurnLeft: "biegen sie links ab",
toolbarDrawerShortcutsTurnRight: "biegen sie rechts ab",
toolbarDrawerShortcutsTurnUp: "höher drehen",
toolbarDrawerShortcutsTurnDown: "umlegen",
toolbarDrawerShortcutsRotateUp: "nach oben drehen",
toolbarDrawerShortcutsRotateDown: "nach unten drehen",
toolbarDrawerShortcutsRotateLeft: "nach links drehen",
toolbarDrawerShortcutsRotateRight: "nach rechts drehen",
toolbarDrawerShortcutsToggleRotate: "umschalten drehen",
toolbarDrawerShortcutsTranslateUp: "nach oben umsetzen",
toolbarDrawerShortcutsTranslateDown: "nach unten umsetzen",
toolbarDrawerShortcutsTranslateLeft: "nach links umsetzen",
toolbarDrawerShortcutsTranslateRight: "nach rechts umsetzen",
toolbarDrawerShortcutsTranslateIn: "nach im umsetzen",
toolbarDrawerShortcutsTranslateOut: "nach aus umsetzen",
toolbarDrawerShortcutsToggleTranslate: "umschalten umsetzen",
toolbarDrawerShortcutsScaleUp: "vergrößern",
toolbarDrawerShortcutsScaleDown: "verkleinern",
toolbarDrawerShortcutsToggleScale: "skala umschalten",
toolbarDrawerShortcutsFocusPlane: "fokusebene",
toolbarDrawerShortcutsFocusParent: "fokus elternteil",
toolbarDrawerShortcutsRefreshPlane: "ebene auffrischen",
toolbarDrawerShortcutsIsolatePlane: "ebene isolieren",
toolbarDrawerShortcutsOpenClosedPlane: "offen geschlossen ebene",
toolbarDrawerShortcutsClosePlane: "ebene schließen",
toolbarDrawerShortcutsPreviousRoot: "vorherige wurzel",
toolbarDrawerShortcutsNextRoot: "nächste wurzel",
toolbarDrawerShortcutsFocusRoot: "fokus wurzel",
toolbarDrawerShortcutsArrowOrScrollUp: "↑ oder nach oben scrollen",
toolbarDrawerShortcutsArrowOrScrollDown: "↓ oder nach unten scrollen",
toolbarDrawerShortcutsArrowOrScrollLeft: "← oder nach links scrollen",
toolbarDrawerShortcutsArrowOrScrollRight: "→ oder nach rechts scrollen"
};
const hindi = {
viewcubeFront: "सामने",
viewcubeBack: "वापस",
viewcubeLeft: "बाएं",
viewcubeRight: "सही",
viewcubeTop: "ऊपर",
viewcubeBase: "आधार",
toolbarTransformRotate: "घुमाएँ",
toolbarTransformScale: "स्केल",
toolbarTransformTranslate: "अनुवाद करना",
toolbarDrawerGlobalTitle: "वैश्विक",
toolbarDrawerGlobalGeneralTheme: "सामान्य विषय",
toolbarDrawerGlobalInteractionTheme: "बातचीत का विषय",
toolbarDrawerGlobalLanguage: "भाषा",
toolbarDrawerTransformTitle: "परिवर्तन",
toolbarDrawerTransformMultiModeTransform: "बहु मोड परिवर्तन",
toolbarDrawerTransformAllowRotationX: "रोटेशन एक्स की अनुमति दें",
toolbarDrawerTransformAllowRotationY: "रोटेशन की अनुमति दें",
toolbarDrawerTransformAllowTranslationX: "अनुवाद x की अनुमति दें",
toolbarDrawerTransformAllowTranslationY: "अनुवाद की अनुमति दें",
toolbarDrawerTransformAllowTranslationZ: "अनुवाद की अनुमति दें z",
toolbarDrawerTransformAllowScale: "पैमाने की अनुमति दें",
toolbarDrawerTransformTouchTransform: "स्पर्श परिवर्तन",
toolbarDrawerSpaceTitle: "अंतरिक्ष",
toolbarDrawerSpaceTransparentUserInterface: "पारदर्शी यूजर इंटरफेस",
toolbarDrawerSpaceShowTransformOrigin: "परिवर्तन मूल दिखाएँ",
toolbarDrawerSpaceTransformOriginSize: "मूल आकार बदलना",
toolbarDrawerSpacePlaneOpacity: "विमान की अस्पष्टता",
toolbarDrawerSpaceLayoutType: "लेआउट प्रकार",
toolbarDrawerToolbarTitle: "उपकरण पट्टी",
toolbarDrawerToolbarAlwaysOpaque: "हमेशा अपारदर्शी",
toolbarDrawerToolbarShowTransformIcons: "तब्दील प्रतीक दिखाओ",
toolbarDrawerToolbarShowTransformArrows: "दिखाएँ तीर",
toolbarDrawerToolbarConcealToolbar: "छिपाना टूलबार",
toolbarDrawerViewcubeTitle: "घनक्षेत्र",
toolbarDrawerViewcubeShowViewcube: "घन दिखाना",
toolbarDrawerViewcubeShowTransformButtons: "शो ट्रांसफॉर्म बटन",
toolbarDrawerViewcubeAlwaysOpaque: "हमेशा अपारदर्शी",
toolbarDrawerViewcubeConcealViewcube: "घन छिपाना",
toolbarDrawerTechnicalTitle: "तकनीकी",
toolbarDrawerTechnicalCullingDistance: "कलिंग दूरी",
toolbarDrawerShortcutsTitle: "शॉर्टकट",
toolbarDrawerShortcutsToggleFirstPerson: "पहले व्यक्ति को टॉगल करें",
toolbarDrawerShortcutsMoveForward: "आगे बढ़ो",
toolbarDrawerShortcutsMoveBackward: "पीछे की ओर जाएं",
toolbarDrawerShortcutsMoveLeft: "बाएं खिसको",
toolbarDrawerShortcutsMoveRight: "दाएँ चले",
toolbarDrawerShortcutsMoveUp: "बढ़ाना",
toolbarDrawerShortcutsMoveDown: "नीचे की ओर",
toolbarDrawerShortcutsTurnLeft: "बांए मुड़िए",
toolbarDrawerShortcutsTurnRight: "दायें मुड़ो",
toolbarDrawerShortcutsTurnUp: "ऊपर करो",
toolbarDrawerShortcutsTurnDown: "मना करना",
toolbarDrawerShortcutsRotateUp: "बारी बारी से",
toolbarDrawerShortcutsRotateDown: "नीचे घुमाओ",
toolbarDrawerShortcutsRotateLeft: "बायीं ओर घुमाओ",
toolbarDrawerShortcutsRotateRight: "दाएं घुमाएं",
toolbarDrawerShortcutsToggleRotate: "घुमाना",
toolbarDrawerShortcutsTranslateUp: "अनुवाद करना",
toolbarDrawerShortcutsTranslateDown: "नीचे अनुवाद करें",
toolbarDrawerShortcutsTranslateLeft: "अनुवाद छोड़ दिया",
toolbarDrawerShortcutsTranslateRight: "सही अनुवाद करें",
toolbarDrawerShortcutsTranslateIn: "में अनुवाद करें",
toolbarDrawerShortcutsTranslateOut: "अनुवाद करें",
toolbarDrawerShortcutsToggleTranslate: "अनुवाद टॉगल करें",
toolbarDrawerShortcutsScaleUp: "स्केल अप",
toolbarDrawerShortcutsScaleDown: "घटाना",
toolbarDrawerShortcutsToggleScale: "टॉगल स्केल",
toolbarDrawerShortcutsFocusPlane: "फोकस प्लेन",
toolbarDrawerShortcutsFocusParent: "ध्यान माता-पिता",
toolbarDrawerShortcutsRefreshPlane: "ताज़ा विमान",
toolbarDrawerShortcutsIsolatePlane: "अलग विमान",
toolbarDrawerShortcutsOpenClosedPlane: "खुला बंद विमान",
toolbarDrawerShortcutsClosePlane: "बंद विमान",
toolbarDrawerShortcutsPreviousRoot: "पिछली जड़",
toolbarDrawerShortcutsNextRoot: "अगली जड़",
toolbarDrawerShortcutsFocusRoot: "फोकस रूट",
toolbarDrawerShortcutsArrowOrScrollUp: "↑ या स्क्रॉल करें",
toolbarDrawerShortcutsArrowOrScrollDown: "↓ या नीचे स्क्रॉल करें",
toolbarDrawerShortcutsArrowOrScrollLeft: "← या बाईं ओर स्क्रॉल करें",
toolbarDrawerShortcutsArrowOrScrollRight: "→ या दाईं ओर स्क्रॉल करें"
};
const italian = {
viewcubeFront: "davanti",
viewcubeBack: "indietro",
viewcubeLeft: "sinistra",
viewcubeRight: "destra",
viewcubeTop: "top",
viewcubeBase: "base",
toolbarTransformRotate: "ruotare",
toolbarTransformScale: "scalare",
toolbarTransformTranslate: "trasferire",
toolbarDrawerGlobalTitle: "globale",
toolbarDrawerGlobalGeneralTheme: "tema generale",
toolbarDrawerGlobalInteractionTheme: "tema di interazione",
toolbarDrawerGlobalLanguage: "linguaggio",
toolbarDrawerTransformTitle: "trasformare",
toolbarDrawerTransformMultiModeTransform: "trasformazione multimodale",
toolbarDrawerTransformAllowRotationX: "consentire la rotazione x",
toolbarDrawerTransformAllowRotationY: "consentire la rotazione y",
toolbarDrawerTransformAllowTranslationX: "consenti trasferire x",
toolbarDrawerTransformAllowTranslationY: "consenti trasferire y",
toolbarDrawerTransformAllowTranslationZ: "consenti trasferire z",
toolbarDrawerTransformAllowScale: "consentire la scala",
toolbarDrawerTransformTouchTransform: "tocco trasforma",
toolbarDrawerSpaceTitle: "spazio",
toolbarDrawerSpaceTransparentUserInterface: "interfaccia utente trasparente",
toolbarDrawerSpaceShowTransformOrigin: "mostra origine trasformazione",
toolbarDrawerSpaceTransformOriginSize: "trasforma la dimensione dell'origine",
toolbarDrawerSpacePlaneOpacity: "opacità del piano",
toolbarDrawerSpaceLayoutType: "tipo di layout",
toolbarDrawerToolbarTitle: "barra degli strumenti",
toolbarDrawerToolbarAlwaysOpaque: "sempre opaco",
toolbarDrawerToolbarShowTransformIcons: "mostra le icone di trasformazione",
toolbarDrawerToolbarShowTransformArrows: "mostra le frecce di trasformazione",
toolbarDrawerToolbarConcealToolbar: "nascondere la barra degli strumenti",
toolbarDrawerViewcubeTitle: "cubo",
toolbarDrawerViewcubeShowViewcube: "mostra cubo",
toolbarDrawerViewcubeShowTransformButtons: "mostra i pulsanti di trasformazione",
toolbarDrawerViewcubeAlwaysOpaque: "sempre opaco",
toolbarDrawerViewcubeConcealViewcube: "nascondere il cubo",
toolbarDrawerTechnicalTitle: "tecnico",
toolbarDrawerTechnicalCullingDistance: "distanza di abbattimento",
toolbarDrawerShortcutsTitle: "scorciatoie",
toolbarDrawerShortcutsToggleFirstPerson: "attiva la prima persona",
toolbarDrawerShortcutsMoveForward: "andare avanti",
toolbarDrawerShortcutsMoveBackward: "tornare indietro",
toolbarDrawerShortcutsMoveLeft: "muovere a sinistra",
toolbarDrawerShortcutsMoveRight: "muovere a destra",
toolbarDrawerShortcutsMoveUp: "muovere avanti",
toolbarDrawerShortcutsMoveDown: "muovere a giù",
toolbarDrawerShortcutsTurnLeft: "gira a sinistra",
toolbarDrawerShortcutsTurnRight: "gira a destra",
toolbarDrawerShortcutsTurnUp: "gira a su",
toolbarDrawerShortcutsTurnDown: "gira a giù",
toolbarDrawerShortcutsRotateUp: "ruotare a su",
toolbarDrawerShortcutsRotateDown: "ruotare a giù",
toolbarDrawerShortcutsRotateLeft: "ruotare a sinistra",
toolbarDrawerShortcutsRotateRight: "ruotare a destra",
toolbarDrawerShortcutsToggleRotate: "attiva / disattiva la rotazione",
toolbarDrawerShortcutsTranslateUp: "trasferire a su",
toolbarDrawerShortcutsTranslateDown: "trasferire a giù",
toolbarDrawerShortcutsTranslateLeft: "trasferire a sinistra",
toolbarDrawerShortcutsTranslateRight: "trasferire a destra",
toolbarDrawerShortcutsTranslateIn: "trasferire a nella",
toolbarDrawerShortcutsTranslateOut: "trasferire a fuori",
toolbarDrawerShortcutsToggleTranslate: "attiva / disattiva trasferire",
toolbarDrawerShortcutsScaleUp: "scalare a su",
toolbarDrawerShortcutsScaleDown: "scalare a giù",
toolbarDrawerShortcutsToggleScale: "attiva / disattiva la scala",
toolbarDrawerShortcutsFocusPlane: "piano attivo",
toolbarDrawerShortcutsFocusParent: "piano genitore",
toolbarDrawerShortcutsRefreshPlane: "ristorare piano",
toolbarDrawerShortcutsIsolatePlane: "isolare il piano",
toolbarDrawerShortcutsOpenClosedPlane: "piano chiuso aperto",
toolbarDrawerShortcutsClosePlane: "vicino piano",
toolbarDrawerShortcutsPreviousRoot: "radice precedente",
toolbarDrawerShortcutsNextRoot: "radice successiva",
toolbarDrawerShortcutsFocusRoot: "radice di messa a fuoco",
toolbarDrawerShortcutsArrowOrScrollUp: "↑ o scorrere verso l'alto",
toolbarDrawerShortcutsArrowOrScrollDown: "↓ o scorrere verso il basso",
toolbarDrawerShortcutsArrowOrScrollLeft: "← o scorrere verso sinistra",
toolbarDrawerShortcutsArrowOrScrollRight: "→ o scorrere verso destra"
};
const japanese = {
viewcubeFront: "フロント",
viewcubeBack: "バック",
viewcubeLeft: "左",
viewcubeRight: "正しい",
viewcubeTop: "上",
viewcubeBase: "ベース",
toolbarTransformRotate: "回転させる",
toolbarTransformScale: "規模",
toolbarTransformTranslate: "翻訳する",
toolbarDrawerGlobalTitle: "グローバル",
toolbarDrawerGlobalGeneralTheme: "一般的なテーマ",
toolbarDrawerGlobalInteractionTheme: "相互作用のテーマ",
toolbarDrawerGlobalLanguage: "言語",
toolbarDrawerTransformTitle: "変換する",
toolbarDrawerTransformMultiModeTransform: "マルチモード変換",
toolbarDrawerTransformAllowRotationX: "回転を許可x",
toolbarDrawerTransformAllowRotationY: "回転を許可するy",
toolbarDrawerTransformAllowTranslationX: "翻訳を許可するx",
toolbarDrawerTransformAllowTranslationY: "翻訳を許可するy",
toolbarDrawerTransformAllowTranslationZ: "翻訳を許可するz",
toolbarDrawerTransformAllowScale: "スケールを許可する",
toolbarDrawerTransformTouchTransform: "タッチ変換",
toolbarDrawerSpaceTitle: "スペース",
toolbarDrawerSpaceTransparentUserInterface: "透過的なユーザーインターフェイス",
toolbarDrawerSpaceShowTransformOrigin: "変換の起点を表示",
toolbarDrawerSpaceTransformOriginSize: "変換元サイズ",
toolbarDrawerSpacePlaneOpacity: "平面の不透明度",
toolbarDrawerSpaceLayoutType: "レイアウトタイプ",
toolbarDrawerToolbarTitle: "ツールバー",
toolbarDrawerToolbarAlwaysOpaque: "常に不透明",
toolbarDrawerToolbarShowTransformIcons: "変換アイコンを表示",
toolbarDrawerToolbarShowTransformArrows: "変換矢印を表示",
toolbarDrawerToolbarConcealToolbar: "ツールバーを隠す",
toolbarDrawerViewcubeTitle: "ビューキューブ",
toolbarDrawerViewcubeShowViewcube: "ビューキューブを表示",
toolbarDrawerViewcubeShowTransformButtons: "変換ボタンを表示する",
toolbarDrawerViewcubeAlwaysOpaque: "常に不透明",
toolbarDrawerViewcubeConcealViewcube: "ビューキューブを隠す",
toolbarDrawerTechnicalTitle: "テクニカル",
toolbarDrawerTechnicalCullingDistance: "カリング距離",
toolbarDrawerShortcutsTitle: "ショートカット",
toolbarDrawerShortcutsToggleFirstPerson: "一人称を切り替える",
toolbarDrawerShortcutsMoveForward: "前進する",
toolbarDrawerShortcutsMoveBackward: "後退する",
toolbarDrawerShortcutsMoveLeft: "左に移動",
toolbarDrawerShortcutsMoveRight: "右に動く",
toolbarDrawerShortcutsMoveUp: "上に移動する",
toolbarDrawerShortcutsMoveDown: "下に移動",
toolbarDrawerShortcutsTurnLeft: "左折してください",
toolbarDrawerShortcutsTurnRight: "右に曲がる",
toolbarDrawerShortcutsTurnUp: "現れる",
toolbarDrawerShortcutsTurnDown: "断る",
toolbarDrawerShortcutsRotateUp: "上に回転する",
toolbarDrawerShortcutsRotateDown: "下に回転",
toolbarDrawerShortcutsRotateLeft: "左に回転",
toolbarDrawerShortcutsRotateRight: "右に回る",
toolbarDrawerShortcutsToggleRotate: "トグル回転",
toolbarDrawerShortcutsTranslateUp: "翻訳する",
toolbarDrawerShortcutsTranslateDown: "翻訳する",
toolbarDrawerShortcutsTranslateLeft: "左に翻訳",
toolbarDrawerShortcutsTranslateRight: "正しく翻訳する",
toolbarDrawerShortcutsTranslateIn: "翻訳する",
toolbarDrawerShortcutsTranslateOut: "翻訳する",
toolbarDrawerShortcutsToggleTranslate: "トグル翻訳",
toolbarDrawerShortcutsScaleUp: "拡大する",
toolbarDrawerShortcutsScaleDown: "縮小する",
toolbarDrawerShortcutsToggleScale: "トグルスケール",
toolbarDrawerShortcutsFocusPlane: "フォーカス プレーン",
toolbarDrawerShortcutsFocusParent: "フォーカスの親",
toolbarDrawerShortcutsRefreshPlane: "飛行機をリフレッシュ",
toolbarDrawerShortcutsIsolatePlane: "分離平面",
toolbarDrawerShortcutsOpenClosedPlane: "閉じた平面を開く",
toolbarDrawerShortcutsClosePlane: "平面を閉じる",
toolbarDrawerShortcutsPreviousRoot: "前のルート",
toolbarDrawerShortcutsNextRoot: "次のルート",
toolbarDrawerShortcutsFocusRoot: "フォーカス ルート",
toolbarDrawerShortcutsArrowOrScrollUp: "↑ または上にスクロールします",
toolbarDrawerShortcutsArrowOrScrollDown: "↓ または下にスクロールします",
toolbarDrawerShortcutsArrowOrScrollLeft: "← または左にスクロール",
toolbarDrawerShortcutsArrowOrScrollRight: "→ または右にスクロール"
};
const romanian = {
viewcubeFront: "față",
viewcubeBack: "spate",
viewcubeLeft: "stânga",
viewcubeRight: "dreapta",
viewcubeTop: "sus",
viewcubeBase: "jos",
toolbarTransformRotate: "rotire",
toolbarTransformScale: "scalare",
toolbarTransformTranslate: "translație",
toolbarDrawerGlobalTitle: "global",
toolbarDrawerGlobalGeneralTheme: "temă generală",
toolbarDrawerGlobalInteractionTheme: "temă interacțiune",
toolbarDrawerGlobalLanguage: "limbă",
toolbarDrawerTransformTitle: "transformare",
toolbarDrawerTransformMultiModeTransform: "transformare multi-modală",
toolbarDrawerTransformAllowRotationX: "permite rotație x",
toolbarDrawerTransformAllowRotationY: "permite rotație x",
toolbarDrawerTransformAllowTranslationX: "permite translație x",
toolbarDrawerTransformAllowTranslationY: "permite translație y",
toolbarDrawerTransformAllowTranslationZ: "permite translație z",
toolbarDrawerTransformAllowScale: "permite scalare",
toolbarDrawerTransformTouchTransform: "transformare atingere",
toolbarDrawerSpaceTitle: "spațiu",
toolbarDrawerSpaceTransparentUserInterface: "interfață utilizator transparentă",
toolbarDrawerSpaceShowTransformOrigin: "arăta originea transformării",
toolbarDrawerSpaceTransformOriginSize: "mărimea originii transformării",
toolbarDrawerSpacePlaneOpacity: "opacitate plan",
toolbarDrawerSpaceLayoutType: "tip amplasare",
toolbarDrawerToolbarTitle: "bară de unelte",
toolbarDrawerToolbarAlwaysOpaque: "mereu opac",
toolbarDrawerToolbarShowTransformIcons: "arată icoane transformare",
toolbarDrawerToolbarShowTransformArrows: "arată săgeți transformare",
toolbarDrawerToolbarConcealToolbar: "ascunde bara de unelte",
toolbarDrawerViewcubeTitle: "cub",
toolbarDrawerViewcubeShowViewcube: "arată cub",
toolbarDrawerViewcubeShowTransformButtons: "arată butoane transformare",
toolbarDrawerViewcubeAlwaysOpaque: "mereu opac",
toolbarDrawerViewcubeConcealViewcube: "ascunde cub",
toolbarDrawerTechnicalTitle: "tehnic",
toolbarDrawerTechnicalCullingDistance: "distanță ascundere",
toolbarDrawerShortcutsTitle: "scurtături",
toolbarDrawerShortcutsToggleFirstPerson: "comutare persoana întâi",
toolbarDrawerShortcutsMoveForward: "mutare înainte",
toolbarDrawerShortcutsMoveBackward: "mutare înapoi",
toolbarDrawerShortcutsMoveLeft: "mutare stânga",
toolbarDrawerShortcutsMoveRight: "mutare dreapta",
toolbarDrawerShortcutsMoveUp: "mutare sus",
toolbarDrawerShortcutsMoveDown: "mutare jos",
toolbarDrawerShortcutsTurnLeft: "întoarcere stânga",
toolbarDrawerShortcutsTurnRight: "întoarcere dreapta",
toolbarDrawerShortcutsTurnUp: "întoarcere sus",
toolbarDrawerShortcutsTurnDown: "întoarcere jos",
toolbarDrawerShortcutsRotateUp: "rotire sus",
toolbarDrawerShortcutsRotateDown: "rotire jos",
toolbarDrawerShortcutsRotateLeft: "rotire stânga",
toolbarDrawerShortcutsRotateRight: "rotire dreapta",
toolbarDrawerShortcutsToggleRotate: "comutare rotire",
toolbarDrawerShortcutsTranslateUp: "translație sus",
toolbarDrawerShortcutsTranslateDown: "translație jos",
toolbarDrawerShortcutsTranslateLeft: "translație stânga",
toolbarDrawerShortcutsTranslateRight: "translație dreapta",
toolbarDrawerShortcutsTranslateIn: "translație înăuntru",
toolbarDrawerShortcutsTranslateOut: "translație în afară",
toolbarDrawerShortcutsToggleTranslate: "comutare translație",
toolbarDrawerShortcutsScaleUp: "scalare în sus",
toolbarDrawerShortcutsScaleDown: "scalare în jos",
toolbarDrawerShortcutsToggleScale: "comutare scalare",
toolbarDrawerShortcutsFocusPlane: "focus plan",
toolbarDrawerShortcutsFocusParent: "focus părinte",
toolbarDrawerShortcutsRefreshPlane: "restaurare plan",
toolbarDrawerShortcutsIsolatePlane: "izolare plane",
toolbarDrawerShortcutsOpenClosedPlane: "deschidere plan închis",
toolbarDrawerShortcutsClosePlane: "închidere plan",
toolbarDrawerShortcutsPreviousRoot: "rădăcina anterioară",
toolbarDrawerShortcutsNextRoot: "rădăcina următoare",
toolbarDrawerShortcutsFocusRoot: "focus rădăcină",
toolbarDrawerShortcutsArrowOrScrollUp: "↑ sau scroll sus",
toolbarDrawerShortcutsArrowOrScrollDown: "↓ sau scroll jos",
toolbarDrawerShortcutsArrowOrScrollLeft: "← sau scroll stânga",
toolbarDrawerShortcutsArrowOrScrollRight: "→ sau scroll dreapta"
};
const russian = {
viewcubeFront: "лицо",
viewcubeBack: "назад",
viewcubeLeft: "осталось",
viewcubeRight: "право",
viewcubeTop: "верх",
viewcubeBase: "база",
toolbarTransformRotate: "поворот",
toolbarTransformScale: "масштаб",
toolbarTransformTranslate: "перевести",
toolbarDrawerGlobalTitle: "Глобальный",
toolbarDrawerGlobalGeneralTheme: "общая тема",
toolbarDrawerGlobalInteractionTheme: "тема взаимодействия",
toolbarDrawerGlobalLanguage: "язык",
toolbarDrawerTransformTitle: "преобразование",
toolbarDrawerTransformMultiModeTransform: "многорежимное преобразование",
toolbarDrawerTransformAllowRotationX: "разрешить вращение х",
toolbarDrawerTransformAllowRotationY: "разрешить вращение у",
toolbarDrawerTransformAllowTranslationX: "разрешить перевод х",
toolbarDrawerTransformAllowTranslationY: "разрешить перевод y",
toolbarDrawerTransformAllowTranslationZ: "разрешить перевод z",
toolbarDrawerTransformAllowScale: "разрешить масштаб",
toolbarDrawerTransformTouchTransform: "сенсорное преобразование",
toolbarDrawerSpaceTitle: "kосмос",
toolbarDrawerSpaceTransparentUserInterface: "прозрачный пользовательский интерфейс",
toolbarDrawerSpaceShowTransformOrigin: "показать источник преобразования",
toolbarDrawerSpaceTransformOriginSize: "преобразовать размер источника",
toolbarDrawerSpacePlaneOpacity: "непрозрачность плоскости",
toolbarDrawerSpaceLayoutType: "тип макета",
toolbarDrawerToolbarTitle: "панель инструментов",
toolbarDrawerToolbarAlwaysOpaque: "всегда непрозрачный",
toolbarDrawerToolbarShowTransformIcons: "показать значки трансформации",
toolbarDrawerToolbarShowTransformArrows: "показать стрелки трансформации",
toolbarDrawerToolbarConcealToolbar: "скрыть панель инструментов",
toolbarDrawerViewcubeTitle: "куб",
toolbarDrawerViewcubeShowViewcube: "показать куб",
toolbarDrawerViewcubeShowTransformButtons: "показать кнопки преобразования",
toolbarDrawerViewcubeAlwaysOpaque: "всегда непрозрачный",
toolbarDrawerViewcubeConcealViewcube: "скрыть куб",
toolbarDrawerTechnicalTitle: "технический",
toolbarDrawerTechnicalCullingDistance: "расстояние выбраковки",
toolbarDrawerShortcutsTitle: "сочетания",
toolbarDrawerShortcutsToggleFirstPerson: "переключить от первого лица",
toolbarDrawerShortcutsMoveForward: "двигаться вперед",
toolbarDrawerShortcutsMoveBackward: "двигаться назад",
toolbarDrawerShortcutsMoveLeft: "двигай влево",
toolbarDrawerShortcutsMoveRight: "переместить вправо",
toolbarDrawerShortcutsMoveUp: "двигаться вверх",
toolbarDrawerShortcutsMoveDown: "двигаться вниз",
toolbarDrawerShortcutsTurnLeft: "повернуть налево",
toolbarDrawerShortcutsTurnRight: "поверни направо",
toolbarDrawerShortcutsTurnUp: "включи",
toolbarDrawerShortcutsTurnDown: "выключить",
toolbarDrawerShortcutsRotateUp: "повернуть вверх",
toolbarDrawerShortcutsRotateDown: "повернуть вниз",
toolbarDrawerShortcutsRotateLeft: "поверните влево",
toolbarDrawerShortcutsRotateRight: "повернуть вправо",
toolbarDrawerShortcutsToggleRotate: "тумблер вращать",
toolbarDrawerShortcutsTranslateUp: "перевести вверх",
toolbarDrawerShortcutsTranslateDown: "перевести вниз",
toolbarDrawerShortcutsTranslateLeft: "перевести влево",
toolbarDrawerShortcutsTranslateRight: "перевести право",
toolbarDrawerShortcutsTranslateIn: "перевести на",
toolbarDrawerShortcutsTranslateOut: "перевести",
toolbarDrawerShortcutsToggleTranslate: "переключить перевод",
toolbarDrawerShortcutsScaleUp: "увеличить масштаб",
toolbarDrawerShortcutsScaleDown: "уменьшать",
toolbarDrawerShortcutsToggleScale: "шкала переключения",
toolbarDrawerShortcutsFocusPlane: "плоскость фокусировки",
toolbarDrawerShortcutsFocusParent: "фокус родитель",
toolbarDrawerShortcutsRefreshPlane: "обновить самолет",
toolbarDrawerShortcutsIsolatePlane: "изолировать самолет",
toolbarDrawerShortcutsOpenClosedPlane: "открытая закрытая плоскость",
toolbarDrawerShortcutsClosePlane: "близкий самолет",
toolbarDrawerShortcutsPreviousRoot: "предыдущий корень",
toolbarDrawerShortcutsNextRoot: "следующий корень",
toolbarDrawerShortcutsFocusRoot: "корень фокуса",
toolbarDrawerShortcutsArrowOrScrollUp: "↑ или прокрутите вверх",
toolbarDrawerShortcutsArrowOrScrollDown: "↓ или прокрутите вниз",
toolbarDrawerShortcutsArrowOrScrollLeft: "← или прокрутите влево",
toolbarDrawerShortcutsArrowOrScrollRight: "→ или прокрутите вправо"
};
const spanish = {
viewcubeFront: "frente",
viewcubeBack: "espalda",
viewcubeLeft: "izquierda",
viewcubeRight: "derecha",
viewcubeTop: "top",
viewcubeBase: "base",
toolbarTransformRotate: "rotar",
toolbarTransformScale: "escala",
toolbarTransformTranslate: "trasladar",
toolbarDrawerGlobalTitle: "global",
toolbarDrawerGlobalGeneralTheme: "tema general",
toolbarDrawerGlobalInteractionTheme: "tema de interacción",
toolbarDrawerGlobalLanguage: "lengua",
toolbarDrawerTransformTitle: "transformar",
toolbarDrawerTransformMultiModeTransform: "transformación multimodo",
toolbarDrawerTransformAllowRotationX: "permitir rotación x",
toolbarDrawerTransformAllowRotationY: "permitir rotación y",
toolbarDrawerTransformAllowTranslationX: "permitir trasladar x",
toolbarDrawerTransformAllowTranslationY: "permitir trasladar y",
toolbarDrawerTransformAllowTranslationZ: "permitir trasladar z",
toolbarDrawerTransformAllowScale: "permitir escala",
toolbarDrawerTransformTouchTransform: "toque transformar",
toolbarDrawerSpaceTitle: "espacio",
toolbarDrawerSpaceTransparentUserInterface: "interfaz de usuario transparente",
toolbarDrawerSpaceShowTransformOrigin: "mostrar origen de transformación",
toolbarDrawerSpaceTransformOriginSize: "transformar el tamaño del origen",
toolbarDrawerSpacePlaneOpacity: "opacidad plana",
toolbarDrawerSpaceLayoutType: "tipo de diseño",
toolbarDrawerToolbarTitle: "barra de herramientas",
toolbarDrawerToolbarAlwaysOpaque: "siempre opaca",
toolbarDrawerToolbarShowTransformIcons: "mostrar iconos de transformación",
toolbarDrawerToolbarShowTransformArrows: "mostrar flechas de transformación",
toolbarDrawerToolbarConcealToolbar: "ocultar barra de herramientas",
toolbarDrawerViewcubeTitle: "cubo",
toolbarDrawerViewcubeShowViewcube: "mostrar cubo",
toolbarDrawerViewcubeShowTransformButtons: "mostrar botones de transformación",
toolbarDrawerViewcubeAlwaysOpaque: "siempre opa