mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b8cb10248e | |||
| 762a0c78c7 | |||
| 1b88189f9c | |||
| ace351035a | |||
| 3222a77cc3 | |||
| d8b0e731ef | |||
| 80c1e5a10b | |||
| 5b89882e5e | |||
| f85ad1a7e1 | |||
| 38a3e651a7 |
@@ -22,6 +22,7 @@ import StarButton, { AnimatedStar } from "~/components/Star";
|
||||
import Tooltip from "~/components/Tooltip";
|
||||
import useBoolean from "~/hooks/useBoolean";
|
||||
import useCurrentUser from "~/hooks/useCurrentUser";
|
||||
import useMobile from "~/hooks/useMobile";
|
||||
import { useLocationSidebarContext } from "~/hooks/useLocationSidebarContext";
|
||||
import DocumentMenu from "~/menus/DocumentMenu";
|
||||
import { documentPath } from "~/utils/routeHelpers";
|
||||
@@ -58,6 +59,7 @@ function DocumentListItem(
|
||||
const { userMemberships, groupMemberships } = useStores();
|
||||
const locationSidebarContext = useLocationSidebarContext();
|
||||
const [menuOpen, handleMenuOpen, handleMenuClose] = useBoolean();
|
||||
const isMobile = useMobile();
|
||||
|
||||
let itemRef: React.Ref<HTMLAnchorElement> =
|
||||
React.useRef<HTMLAnchorElement>(null);
|
||||
@@ -159,7 +161,7 @@ function DocumentListItem(
|
||||
<Badge>{t("Draft")}</Badge>
|
||||
</Tooltip>
|
||||
)}
|
||||
{canStar && <StarButton document={document} />}
|
||||
{canStar && !isMobile && <StarButton document={document} />}
|
||||
</Heading>
|
||||
|
||||
{!queryIsInTitle && (
|
||||
|
||||
@@ -3,6 +3,7 @@ import { actionToMenuItem } from "~/actions";
|
||||
import useActionContext from "~/hooks/useActionContext";
|
||||
import useMobile from "~/hooks/useMobile";
|
||||
import type { ActionVariant, ActionWithChildren } from "~/types";
|
||||
import { preventDefault } from "~/utils/events";
|
||||
import { toMenuItems } from "./transformer";
|
||||
import { observer } from "mobx-react";
|
||||
import { useComputed } from "~/hooks/useComputed";
|
||||
@@ -61,11 +62,6 @@ export const ContextMenu = observer(
|
||||
}
|
||||
}, []);
|
||||
|
||||
const handleCloseAutoFocus = React.useCallback(
|
||||
(e: Event) => e.preventDefault(),
|
||||
[]
|
||||
);
|
||||
|
||||
if (isMobile || !action || menuItems.length === 0) {
|
||||
return <>{children}</>;
|
||||
}
|
||||
@@ -80,7 +76,7 @@ export const ContextMenu = observer(
|
||||
aria-label={ariaLabel}
|
||||
onAnimationStart={disablePointerEvents}
|
||||
onAnimationEnd={enablePointerEvents}
|
||||
onCloseAutoFocus={handleCloseAutoFocus}
|
||||
onCloseAutoFocus={preventDefault}
|
||||
>
|
||||
{content}
|
||||
</MenuContent>
|
||||
|
||||
@@ -13,6 +13,7 @@ import { MenuProvider } from "~/components/primitives/Menu/MenuContext";
|
||||
import { actionToMenuItem } from "~/actions";
|
||||
import useActionContext from "~/hooks/useActionContext";
|
||||
import useMobile from "~/hooks/useMobile";
|
||||
import { preventDefault } from "~/utils/events";
|
||||
import type {
|
||||
ActionVariant,
|
||||
ActionWithChildren,
|
||||
@@ -98,11 +99,6 @@ export const DropdownMenu = observer(
|
||||
}
|
||||
}, []);
|
||||
|
||||
const handleCloseAutoFocus = React.useCallback(
|
||||
(e: Event) => e.preventDefault(),
|
||||
[]
|
||||
);
|
||||
|
||||
if (isMobile) {
|
||||
return (
|
||||
<MobileDropdown
|
||||
@@ -129,7 +125,7 @@ export const DropdownMenu = observer(
|
||||
aria-label={ariaLabel}
|
||||
onAnimationStart={disablePointerEvents}
|
||||
onAnimationEnd={enablePointerEvents}
|
||||
onCloseAutoFocus={handleCloseAutoFocus}
|
||||
onCloseAutoFocus={preventDefault}
|
||||
>
|
||||
{content}
|
||||
{append}
|
||||
|
||||
@@ -16,6 +16,7 @@ import {
|
||||
import { id as bodyContentId } from "~/components/SkipNavContent";
|
||||
import useKeyDown from "~/hooks/useKeyDown";
|
||||
import useStores from "~/hooks/useStores";
|
||||
import { preventDefault } from "~/utils/events";
|
||||
import type { SearchResult } from "~/types";
|
||||
import SearchListItem from "./SearchListItem";
|
||||
|
||||
@@ -230,7 +231,7 @@ function SearchPopover({ shareId, className }: Props) {
|
||||
align="start"
|
||||
shrink
|
||||
onEscapeKeyDown={handleEscapeList}
|
||||
onOpenAutoFocus={(e) => e.preventDefault()}
|
||||
onOpenAutoFocus={preventDefault}
|
||||
onInteractOutside={(event) => {
|
||||
const target = event.target as Element | null;
|
||||
if (target === searchInputRef.current) {
|
||||
|
||||
@@ -89,7 +89,11 @@ function DocumentMemberList({ document, invitedInSession }: Props) {
|
||||
const members = React.useMemo(
|
||||
() =>
|
||||
orderBy(
|
||||
document.members,
|
||||
Array.from(
|
||||
new Map(
|
||||
document.members.map((memberUser) => [memberUser.id, memberUser])
|
||||
).values()
|
||||
),
|
||||
(memberUser) =>
|
||||
(invitedInSession.includes(memberUser.id) ? "_" : "") +
|
||||
memberUser.name.toLocaleLowerCase(),
|
||||
@@ -124,12 +128,19 @@ function DocumentMemberList({ document, invitedInSession }: Props) {
|
||||
|
||||
return (
|
||||
<>
|
||||
{groupMemberships
|
||||
.inDocument(document.id)
|
||||
{Array.from(
|
||||
new Map(
|
||||
groupMemberships
|
||||
.inDocument(document.id)
|
||||
.map((membership) => [membership.group.id, membership])
|
||||
).values()
|
||||
)
|
||||
.sort((a, b) =>
|
||||
(
|
||||
(invitedInSession.includes(a.group.id) ? "_" : "") + a.group.name
|
||||
).localeCompare(b.group.name)
|
||||
).localeCompare(
|
||||
(invitedInSession.includes(b.group.id) ? "_" : "") + b.group.name
|
||||
)
|
||||
)
|
||||
.map((membership) => {
|
||||
const MaybeLink = membership?.source ? StyledLink : React.Fragment;
|
||||
|
||||
@@ -129,7 +129,7 @@ const StyledContent = styled(PopoverPrimitive.Content)<StyledContentProps>`
|
||||
`}
|
||||
|
||||
&[data-state="open"] {
|
||||
animation: ${fadeAndScaleIn} 150ms cubic-bezier(0.08, 0.82, 0.17, 1); // ease-out-circ
|
||||
animation: ${fadeAndScaleIn} 150ms cubic-bezier(0.08, 0.82, 0.17, 1);
|
||||
}
|
||||
`;
|
||||
|
||||
|
||||
@@ -67,6 +67,7 @@ const BaseMenuItemCSS = css<BaseMenuItemProps>`
|
||||
!props.disabled &&
|
||||
`
|
||||
&[data-highlighted],
|
||||
&[data-state="open"],
|
||||
&:focus-visible {
|
||||
color: ${props.theme.accentText};
|
||||
background: ${props.$dangerous ? props.theme.danger : props.theme.accent};
|
||||
|
||||
@@ -20,6 +20,7 @@ function BlockMenu(props: Props) {
|
||||
icon={item.icon}
|
||||
title={item.title}
|
||||
shortcut={item.shortcut}
|
||||
disclosure={options.disclosure}
|
||||
/>
|
||||
),
|
||||
[]
|
||||
|
||||
@@ -6,21 +6,26 @@ import { TextSelection } from "prosemirror-state";
|
||||
import * as React from "react";
|
||||
import { Trans, useTranslation } from "react-i18next";
|
||||
import { toast } from "sonner";
|
||||
import styled from "styled-components";
|
||||
import styled, { keyframes } from "styled-components";
|
||||
import insertFiles from "@shared/editor/commands/insertFiles";
|
||||
import { EmbedDescriptor } from "@shared/editor/embeds";
|
||||
import filterExcessSeparators from "@shared/editor/lib/filterExcessSeparators";
|
||||
import { findParentNode } from "@shared/editor/queries/findParentNode";
|
||||
import type { MenuItem } from "@shared/editor/types";
|
||||
import { depths, s } from "@shared/styles";
|
||||
import { s } from "@shared/styles";
|
||||
import { getEventFiles } from "@shared/utils/files";
|
||||
import { AttachmentValidation } from "@shared/validations";
|
||||
import { Portal } from "~/components/Portal";
|
||||
import {
|
||||
Drawer,
|
||||
DrawerContent,
|
||||
DrawerTitle,
|
||||
} from "~/components/primitives/Drawer";
|
||||
import {
|
||||
Popover,
|
||||
PopoverAnchor,
|
||||
PopoverContent,
|
||||
} from "~/components/primitives/Popover";
|
||||
import { MouseSafeArea } from "~/components/MouseSafeArea";
|
||||
import Scrollable from "~/components/Scrollable";
|
||||
import useDictionary from "~/hooks/useDictionary";
|
||||
import useMobile from "~/hooks/useMobile";
|
||||
@@ -29,38 +34,6 @@ import { useEditor } from "./EditorContext";
|
||||
import Input from "./Input";
|
||||
import { MenuHeader } from "~/components/primitives/components/Menu";
|
||||
|
||||
type TopAnchor = {
|
||||
top: number;
|
||||
bottom: undefined;
|
||||
};
|
||||
|
||||
type BottomAnchor = {
|
||||
top: undefined;
|
||||
bottom: number;
|
||||
};
|
||||
|
||||
type LeftAnchor = {
|
||||
left: number;
|
||||
right: undefined;
|
||||
};
|
||||
|
||||
type RightAnchor = {
|
||||
left: undefined;
|
||||
right: number;
|
||||
};
|
||||
|
||||
type Position = ((TopAnchor | BottomAnchor) & (LeftAnchor | RightAnchor)) & {
|
||||
isAbove: boolean;
|
||||
};
|
||||
|
||||
const defaultPosition: Position = {
|
||||
top: 0,
|
||||
bottom: undefined,
|
||||
left: -10000,
|
||||
right: undefined,
|
||||
isAbove: false,
|
||||
};
|
||||
|
||||
export type Props<T extends MenuItem = MenuItem> = {
|
||||
rtl: boolean;
|
||||
isActive: boolean;
|
||||
@@ -80,6 +53,7 @@ export type Props<T extends MenuItem = MenuItem> = {
|
||||
index: number,
|
||||
options: {
|
||||
selected: boolean;
|
||||
disclosure?: boolean;
|
||||
onClick: (event: React.SyntheticEvent) => void;
|
||||
}
|
||||
) => React.ReactNode;
|
||||
@@ -92,23 +66,65 @@ function SuggestionsMenu<T extends MenuItem>(props: Props<T>) {
|
||||
const dictionary = useDictionary();
|
||||
const { t } = useTranslation();
|
||||
const isMobile = useMobile();
|
||||
const hasActivated = React.useRef(false);
|
||||
const pointerRef = React.useRef<{ clientX: number; clientY: number }>({
|
||||
clientX: 0,
|
||||
clientY: 0,
|
||||
});
|
||||
const menuRef = React.useRef<HTMLDivElement>(null);
|
||||
const inputRef = React.useRef<HTMLInputElement>(null);
|
||||
const selectionRef = React.useRef<{ from: number; to: number } | null>(null);
|
||||
const [position, setPosition] = React.useState<Position>(defaultPosition);
|
||||
const [insertItem, setInsertItem] = React.useState<
|
||||
MenuItem | EmbedDescriptor
|
||||
>();
|
||||
const [selectedIndex, setSelectedIndex] = React.useState(0);
|
||||
const [submenu, setSubmenu] = React.useState<{
|
||||
index: number;
|
||||
items: MenuItem[];
|
||||
selectedIndex: number;
|
||||
} | null>(null);
|
||||
const itemRefs = React.useRef<Map<number, HTMLElement>>(new Map());
|
||||
const submenuContentRef = React.useRef<HTMLDivElement>(null);
|
||||
const hoverTimerRef = React.useRef<ReturnType<typeof setTimeout>>();
|
||||
|
||||
// Stores the caret bounding rect, snapshotted when the menu opens
|
||||
const caretRectRef = React.useRef(new DOMRect());
|
||||
|
||||
// Stable virtual element for Radix PopoverAnchor – never replaced so the
|
||||
// popper does not trigger unnecessary anchor-change cycles.
|
||||
const caretRef = React.useRef({
|
||||
getBoundingClientRect: () => caretRectRef.current,
|
||||
});
|
||||
|
||||
// Compute and store the caret rect during render so it is available before
|
||||
// the Radix popper effect runs for the first time.
|
||||
const caretRect = React.useMemo(() => {
|
||||
if (!props.isActive) {
|
||||
return new DOMRect();
|
||||
}
|
||||
|
||||
try {
|
||||
const { selection } = view.state;
|
||||
const fromPos = view.coordsAtPos(selection.from);
|
||||
const toPos = view.coordsAtPos(selection.to, -1);
|
||||
const top = Math.min(fromPos.top, toPos.top);
|
||||
const bottom = Math.max(fromPos.bottom, toPos.bottom);
|
||||
const left = Math.min(fromPos.left, toPos.left);
|
||||
const right = Math.max(fromPos.right, toPos.right);
|
||||
return new DOMRect(left, top, right - left, bottom - top);
|
||||
} catch (err) {
|
||||
Logger.warn("Unable to calculate caret position", err);
|
||||
return new DOMRect();
|
||||
}
|
||||
}, [props.isActive, view]);
|
||||
|
||||
caretRectRef.current = caretRect;
|
||||
|
||||
const resolveChildren = (
|
||||
children: MenuItem["children"]
|
||||
): MenuItem[] | undefined =>
|
||||
typeof children === "function" ? children() : children;
|
||||
|
||||
React.useEffect(() => {
|
||||
if (props.isActive) {
|
||||
hasActivated.current = true;
|
||||
// Save the selection position when the menu opens. On mobile, the editor
|
||||
// may lose focus/selection when tapping on menu items, so we restore it.
|
||||
requestAnimationFrame(() => {
|
||||
@@ -121,81 +137,21 @@ function SuggestionsMenu<T extends MenuItem>(props: Props<T>) {
|
||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||
}, [props.isActive]);
|
||||
|
||||
const calculatePosition = React.useCallback(
|
||||
(props: Props) => {
|
||||
if (!props.isActive) {
|
||||
return defaultPosition;
|
||||
}
|
||||
React.useEffect(() => {
|
||||
setSubmenu(null);
|
||||
|
||||
const caretPosition = () => {
|
||||
let fromPos;
|
||||
let toPos;
|
||||
try {
|
||||
fromPos = view.coordsAtPos(selection.from);
|
||||
toPos = view.coordsAtPos(selection.to, -1);
|
||||
} catch (err) {
|
||||
Logger.warn("Unable to calculate caret position", err);
|
||||
return {
|
||||
top: 0,
|
||||
bottom: 0,
|
||||
left: 0,
|
||||
right: 0,
|
||||
};
|
||||
}
|
||||
if (!props.isActive) {
|
||||
return;
|
||||
}
|
||||
|
||||
// ensure that start < end for the menu to be positioned correctly
|
||||
return {
|
||||
top: Math.min(fromPos.top, toPos.top),
|
||||
bottom: Math.max(fromPos.bottom, toPos.bottom),
|
||||
left: Math.min(fromPos.left, toPos.left),
|
||||
right: Math.max(fromPos.right, toPos.right),
|
||||
};
|
||||
};
|
||||
setSelectedIndex(0);
|
||||
setInsertItem(undefined);
|
||||
}, [props.isActive]);
|
||||
|
||||
const { selection } = view.state;
|
||||
const ref = menuRef.current;
|
||||
const offsetWidth = ref ? ref.offsetWidth : 0;
|
||||
const offsetHeight = ref ? ref.offsetHeight : 0;
|
||||
const { top, bottom, right, left } = caretPosition();
|
||||
const margin = 12;
|
||||
|
||||
const offsetParent = ref?.offsetParent
|
||||
? ref.offsetParent.getBoundingClientRect()
|
||||
: ({
|
||||
width: 0,
|
||||
height: 0,
|
||||
top: 0,
|
||||
left: 0,
|
||||
} as DOMRect);
|
||||
|
||||
let leftPos = Math.min(
|
||||
left - offsetParent.left,
|
||||
window.innerWidth - offsetParent.left - offsetWidth - margin
|
||||
);
|
||||
if (props.rtl) {
|
||||
leftPos = right - offsetWidth;
|
||||
}
|
||||
|
||||
if (top - offsetHeight > margin) {
|
||||
return {
|
||||
left: leftPos,
|
||||
top: undefined,
|
||||
bottom: offsetParent.bottom - top,
|
||||
right: undefined,
|
||||
isAbove: false,
|
||||
};
|
||||
} else {
|
||||
return {
|
||||
left: leftPos,
|
||||
top: bottom - offsetParent.top,
|
||||
bottom: undefined,
|
||||
right: undefined,
|
||||
isAbove: true,
|
||||
};
|
||||
}
|
||||
},
|
||||
[view]
|
||||
);
|
||||
React.useEffect(() => {
|
||||
setSelectedIndex(0);
|
||||
setSubmenu(null);
|
||||
}, [props.search]);
|
||||
|
||||
const handleClearSearch = React.useCallback(() => {
|
||||
const { state, dispatch } = view;
|
||||
@@ -226,26 +182,6 @@ function SuggestionsMenu<T extends MenuItem>(props: Props<T>) {
|
||||
);
|
||||
}, [props.search, props.trigger, view]);
|
||||
|
||||
React.useEffect(() => {
|
||||
if (!props.isActive) {
|
||||
return;
|
||||
}
|
||||
|
||||
// reset scroll position to top when opening menu as the contents are
|
||||
// hidden, not unrendered
|
||||
if (menuRef.current) {
|
||||
menuRef.current.scroll({ top: 0 });
|
||||
}
|
||||
|
||||
setPosition(calculatePosition(props));
|
||||
setSelectedIndex(0);
|
||||
setInsertItem(undefined);
|
||||
}, [calculatePosition, props.isActive]);
|
||||
|
||||
React.useEffect(() => {
|
||||
setSelectedIndex(0);
|
||||
}, [props.search]);
|
||||
|
||||
const restoreSelection = React.useCallback(() => {
|
||||
if (!isMobile) {
|
||||
return;
|
||||
@@ -481,11 +417,47 @@ function SuggestionsMenu<T extends MenuItem>(props: Props<T>) {
|
||||
}
|
||||
|
||||
const searchInput = search.toLowerCase();
|
||||
|
||||
const matchesSearch = (item: MenuItem | EmbedDescriptor) =>
|
||||
(item.name || "").toLocaleLowerCase().includes(searchInput) ||
|
||||
(item.title || "").toLocaleLowerCase().includes(searchInput) ||
|
||||
(item.keywords || "").toLocaleLowerCase().includes(searchInput);
|
||||
|
||||
// When searching, flatten matching children into the top-level list so
|
||||
// they are directly navigable with the keyboard. If all children match,
|
||||
// exclude the parent item since it would be redundant.
|
||||
const fullyFlattenedParents = new Set<MenuItem | EmbedDescriptor>();
|
||||
if (search && filterable) {
|
||||
const flattened: (EmbedDescriptor | MenuItem)[] = [];
|
||||
for (const item of items) {
|
||||
if ("children" in item && item.children) {
|
||||
const children = resolveChildren(item.children);
|
||||
if (children) {
|
||||
const matching = children.filter(matchesSearch);
|
||||
if (matching.length > 0) {
|
||||
for (const child of matching) {
|
||||
const { children: _, ...flat } = child;
|
||||
flattened.push(flat);
|
||||
}
|
||||
if (matching.length === children.length) {
|
||||
fullyFlattenedParents.add(item);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
items = items.concat(flattened);
|
||||
}
|
||||
|
||||
const filtered = items.filter((item) => {
|
||||
if (item.name === "separator") {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (fullyFlattenedParents.has(item)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (item.visible === false) {
|
||||
return false;
|
||||
}
|
||||
@@ -514,11 +486,7 @@ function SuggestionsMenu<T extends MenuItem>(props: Props<T>) {
|
||||
return item;
|
||||
}
|
||||
|
||||
return (
|
||||
(item.name || "").toLocaleLowerCase().includes(searchInput) ||
|
||||
(item.title || "").toLocaleLowerCase().includes(searchInput) ||
|
||||
(item.keywords || "").toLocaleLowerCase().includes(searchInput)
|
||||
);
|
||||
return matchesSearch(item);
|
||||
});
|
||||
|
||||
return filterExcessSeparators(
|
||||
@@ -541,18 +509,40 @@ function SuggestionsMenu<T extends MenuItem>(props: Props<T>) {
|
||||
);
|
||||
}, [commands, props]);
|
||||
|
||||
React.useEffect(() => {
|
||||
const handleMouseDown = (event: MouseEvent) => {
|
||||
if (
|
||||
!menuRef.current ||
|
||||
menuRef.current.contains(event.target as Element)
|
||||
) {
|
||||
const openSubmenu = React.useCallback(
|
||||
(index: number) => {
|
||||
const item = filtered[index];
|
||||
if (!item) {
|
||||
return;
|
||||
}
|
||||
const children = resolveChildren(
|
||||
"children" in item ? item.children : undefined
|
||||
);
|
||||
if (!children?.length) {
|
||||
return;
|
||||
}
|
||||
|
||||
props.onClose();
|
||||
};
|
||||
const normalized = filterExcessSeparators(
|
||||
children.filter((child) => child.visible !== false)
|
||||
);
|
||||
const firstSelectable = normalized.findIndex(
|
||||
(child) =>
|
||||
child.name !== "separator" && !("disabled" in child && child.disabled)
|
||||
);
|
||||
if (firstSelectable === -1) {
|
||||
return;
|
||||
}
|
||||
|
||||
setSubmenu({
|
||||
index,
|
||||
items: normalized,
|
||||
selectedIndex: firstSelectable,
|
||||
});
|
||||
},
|
||||
[filtered]
|
||||
);
|
||||
|
||||
React.useEffect(() => {
|
||||
const handleKeyDown = (event: KeyboardEvent) => {
|
||||
if (event.isComposing) {
|
||||
return;
|
||||
@@ -561,18 +551,109 @@ function SuggestionsMenu<T extends MenuItem>(props: Props<T>) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Let the link input's own handlers manage navigation keys
|
||||
if (insertItem) {
|
||||
return;
|
||||
}
|
||||
|
||||
// --- Submenu open: route keys into it ---
|
||||
if (submenu) {
|
||||
if (event.key === "ArrowDown" || (event.ctrlKey && event.key === "n")) {
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
const total = submenu.items.length - 1;
|
||||
let next = submenu.selectedIndex + 1;
|
||||
while (next <= total) {
|
||||
const child = submenu.items[next];
|
||||
if (
|
||||
child?.name !== "separator" &&
|
||||
!("disabled" in child && child.disabled)
|
||||
) {
|
||||
break;
|
||||
}
|
||||
next++;
|
||||
}
|
||||
if (next <= total) {
|
||||
setSubmenu((s) => (s ? { ...s, selectedIndex: next } : s));
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
if (event.key === "ArrowUp" || (event.ctrlKey && event.key === "p")) {
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
let prev = submenu.selectedIndex - 1;
|
||||
while (prev >= 0) {
|
||||
const child = submenu.items[prev];
|
||||
if (
|
||||
child?.name !== "separator" &&
|
||||
!("disabled" in child && child.disabled)
|
||||
) {
|
||||
break;
|
||||
}
|
||||
prev--;
|
||||
}
|
||||
if (prev >= 0) {
|
||||
setSubmenu((s) => (s ? { ...s, selectedIndex: prev } : s));
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
if (event.key === "ArrowLeft" || event.key === "Escape") {
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
setSubmenu(null);
|
||||
return;
|
||||
}
|
||||
|
||||
if (event.key === "Enter") {
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
const child = submenu.items[submenu.selectedIndex];
|
||||
if (child) {
|
||||
handleClickItem(child);
|
||||
setSubmenu(null);
|
||||
}
|
||||
return;
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
// --- Normal (no submenu) ---
|
||||
if (event.key === "Enter") {
|
||||
event.preventDefault();
|
||||
|
||||
const item = filtered[selectedIndex];
|
||||
|
||||
if (item) {
|
||||
handleClickItem(item);
|
||||
const children = resolveChildren(
|
||||
"children" in item ? item.children : undefined
|
||||
);
|
||||
if (children?.length) {
|
||||
openSubmenu(selectedIndex);
|
||||
} else {
|
||||
handleClickItem(item);
|
||||
}
|
||||
} else {
|
||||
props.onClose(true);
|
||||
}
|
||||
}
|
||||
|
||||
if (event.key === "ArrowRight") {
|
||||
const item = filtered[selectedIndex];
|
||||
if (item) {
|
||||
const children = resolveChildren(
|
||||
"children" in item ? item.children : undefined
|
||||
);
|
||||
if (children?.length) {
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
openSubmenu(selectedIndex);
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (
|
||||
event.key === "ArrowUp" ||
|
||||
(event.key === "Tab" && event.shiftKey) ||
|
||||
@@ -636,18 +717,16 @@ function SuggestionsMenu<T extends MenuItem>(props: Props<T>) {
|
||||
}
|
||||
};
|
||||
|
||||
window.addEventListener("mousedown", handleMouseDown);
|
||||
window.addEventListener("keydown", handleKeyDown, {
|
||||
capture: true,
|
||||
});
|
||||
|
||||
return () => {
|
||||
window.removeEventListener("mousedown", handleMouseDown);
|
||||
window.removeEventListener("keydown", handleKeyDown, {
|
||||
capture: true,
|
||||
});
|
||||
};
|
||||
}, [close, filtered, handleClickItem, props, selectedIndex]);
|
||||
}, [close, filtered, handleClickItem, insertItem, openSubmenu, props, selectedIndex, submenu]);
|
||||
|
||||
const { isActive, uploadFile } = props;
|
||||
const items = filtered;
|
||||
@@ -675,6 +754,23 @@ function SuggestionsMenu<T extends MenuItem>(props: Props<T>) {
|
||||
</VisuallyHidden.Root>
|
||||
);
|
||||
|
||||
// Close submenu when parent selection moves away from the trigger
|
||||
React.useEffect(() => {
|
||||
if (submenu && submenu.index !== selectedIndex) {
|
||||
setSubmenu(null);
|
||||
}
|
||||
}, [selectedIndex, submenu]);
|
||||
|
||||
// Cleanup hover timer on unmount
|
||||
React.useEffect(
|
||||
() => () => {
|
||||
if (hoverTimerRef.current) {
|
||||
clearTimeout(hoverTimerRef.current);
|
||||
}
|
||||
},
|
||||
[]
|
||||
);
|
||||
|
||||
const renderItems = () => {
|
||||
let prevHeading: string | undefined;
|
||||
|
||||
@@ -693,6 +789,10 @@ function SuggestionsMenu<T extends MenuItem>(props: Props<T>) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const hasChildren = !!(
|
||||
"children" in item && resolveChildren(item.children)?.length
|
||||
);
|
||||
|
||||
const handlePointerMove = (ev: React.PointerEvent) => {
|
||||
if (
|
||||
!("disabled" in item && item.disabled) &&
|
||||
@@ -708,6 +808,22 @@ function SuggestionsMenu<T extends MenuItem>(props: Props<T>) {
|
||||
clientX: ev.clientX,
|
||||
clientY: ev.clientY,
|
||||
};
|
||||
|
||||
// Hover to open submenu with delay
|
||||
if (hasChildren) {
|
||||
if (hoverTimerRef.current) {
|
||||
clearTimeout(hoverTimerRef.current);
|
||||
}
|
||||
hoverTimerRef.current = setTimeout(() => {
|
||||
openSubmenu(index);
|
||||
}, 150);
|
||||
} else {
|
||||
// Close submenu when hovering a regular item
|
||||
if (hoverTimerRef.current) {
|
||||
clearTimeout(hoverTimerRef.current);
|
||||
}
|
||||
setSubmenu(null);
|
||||
}
|
||||
};
|
||||
|
||||
const handlePointerDown = () => {
|
||||
@@ -722,23 +838,37 @@ function SuggestionsMenu<T extends MenuItem>(props: Props<T>) {
|
||||
const handleOnClick = (ev: React.MouseEvent) => {
|
||||
ev.preventDefault();
|
||||
ev.stopPropagation();
|
||||
handleClickItem(item);
|
||||
if (hasChildren) {
|
||||
openSubmenu(index);
|
||||
} else {
|
||||
handleClickItem(item);
|
||||
}
|
||||
};
|
||||
|
||||
const currentHeading =
|
||||
"section" in item ? item.section?.({ t }) : undefined;
|
||||
|
||||
const itemRef = (node: HTMLElement | null) => {
|
||||
if (node) {
|
||||
itemRefs.current.set(index, node);
|
||||
} else {
|
||||
itemRefs.current.delete(index);
|
||||
}
|
||||
};
|
||||
|
||||
const response = (
|
||||
<React.Fragment key={`${index}-${item.name}`}>
|
||||
{currentHeading !== prevHeading && (
|
||||
<MenuHeader key={currentHeading}>{currentHeading}</MenuHeader>
|
||||
)}
|
||||
<ListItem
|
||||
ref={itemRef}
|
||||
onPointerMove={handlePointerMove}
|
||||
onPointerDown={handlePointerDown}
|
||||
>
|
||||
{props.renderMenuItem(item as any, index, {
|
||||
selected: index === selectedIndex,
|
||||
disclosure: hasChildren,
|
||||
onClick: handleOnClick,
|
||||
})}
|
||||
</ListItem>
|
||||
@@ -792,37 +922,152 @@ function SuggestionsMenu<T extends MenuItem>(props: Props<T>) {
|
||||
}
|
||||
|
||||
return (
|
||||
<Portal>
|
||||
<Wrapper active={isActive} ref={menuRef} hiddenScrollbars {...position}>
|
||||
{(isActive || hasActivated.current) && (
|
||||
<>
|
||||
{insertItem ? (
|
||||
<LinkInputWrapper>
|
||||
<LinkInput
|
||||
type="text"
|
||||
placeholder={
|
||||
"placeholder" in insertItem && !!insertItem.placeholder
|
||||
? insertItem.placeholder
|
||||
: insertItem.title
|
||||
? dictionary.pasteLinkWithTitle(insertItem.title)
|
||||
: dictionary.pasteLink
|
||||
<>
|
||||
<Popover open={isActive} onOpenChange={handleOpenChange} modal={false}>
|
||||
<PopoverAnchor virtualRef={caretRef} />
|
||||
<BouncyPopoverContent
|
||||
side="bottom"
|
||||
align="start"
|
||||
width={280}
|
||||
shrink
|
||||
style={{
|
||||
padding: 0,
|
||||
maxHeight:
|
||||
"min(324px, var(--radix-popover-content-available-height))",
|
||||
}}
|
||||
onOpenAutoFocus={(e) => e.preventDefault()}
|
||||
onCloseAutoFocus={(e) => e.preventDefault()}
|
||||
onEscapeKeyDown={(e) => e.preventDefault()}
|
||||
onInteractOutside={(e) => {
|
||||
if (
|
||||
submenuContentRef.current?.contains(
|
||||
e.target as Node
|
||||
)
|
||||
) {
|
||||
e.preventDefault();
|
||||
}
|
||||
}}
|
||||
>
|
||||
{insertItem ? (
|
||||
<LinkInputWrapper>
|
||||
<LinkInput
|
||||
type="text"
|
||||
placeholder={
|
||||
"placeholder" in insertItem && !!insertItem.placeholder
|
||||
? insertItem.placeholder
|
||||
: insertItem.title
|
||||
? dictionary.pasteLinkWithTitle(insertItem.title)
|
||||
: dictionary.pasteLink
|
||||
}
|
||||
onKeyDown={handleLinkInputKeydown}
|
||||
onPaste={handleLinkInputPaste}
|
||||
autoFocus
|
||||
/>
|
||||
</LinkInputWrapper>
|
||||
) : (
|
||||
<List>{renderItems()}</List>
|
||||
)}
|
||||
{fileInput}
|
||||
</BouncyPopoverContent>
|
||||
</Popover>
|
||||
{submenu && itemRefs.current.get(submenu.index) && (
|
||||
<Popover open modal={false}>
|
||||
<PopoverAnchor
|
||||
virtualRef={{
|
||||
current: {
|
||||
getBoundingClientRect: () =>
|
||||
itemRefs.current
|
||||
.get(submenu.index)!
|
||||
.getBoundingClientRect(),
|
||||
},
|
||||
}}
|
||||
/>
|
||||
<SubmenuPopoverContent
|
||||
ref={submenuContentRef}
|
||||
side="right"
|
||||
align="start"
|
||||
sideOffset={0}
|
||||
width={220}
|
||||
shrink
|
||||
style={{ padding: 0 }}
|
||||
onOpenAutoFocus={(e) => e.preventDefault()}
|
||||
onCloseAutoFocus={(e) => e.preventDefault()}
|
||||
onPointerLeave={() => setSubmenu(null)}
|
||||
>
|
||||
<MouseSafeArea parentRef={submenuContentRef} />
|
||||
<List>
|
||||
{submenu.items.map((child, childIndex) => {
|
||||
if (child.name === "separator") {
|
||||
return (
|
||||
<ListItem key={childIndex}>
|
||||
<hr />
|
||||
</ListItem>
|
||||
);
|
||||
}
|
||||
if (!child.title) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const handleChildPointerMove = (ev: React.PointerEvent) => {
|
||||
if (
|
||||
submenu.selectedIndex !== childIndex &&
|
||||
(pointerRef.current.clientX !== ev.clientX ||
|
||||
pointerRef.current.clientY !== ev.clientY)
|
||||
) {
|
||||
setSubmenu((s) =>
|
||||
s ? { ...s, selectedIndex: childIndex } : s
|
||||
);
|
||||
}
|
||||
onKeyDown={handleLinkInputKeydown}
|
||||
onPaste={handleLinkInputPaste}
|
||||
autoFocus
|
||||
/>
|
||||
</LinkInputWrapper>
|
||||
) : (
|
||||
<List>{renderItems()}</List>
|
||||
)}
|
||||
{fileInput}
|
||||
</>
|
||||
)}
|
||||
</Wrapper>
|
||||
</Portal>
|
||||
pointerRef.current = {
|
||||
clientX: ev.clientX,
|
||||
clientY: ev.clientY,
|
||||
};
|
||||
};
|
||||
|
||||
const handleChildClick = (ev: React.MouseEvent) => {
|
||||
ev.preventDefault();
|
||||
ev.stopPropagation();
|
||||
handleClickItem(child);
|
||||
setSubmenu(null);
|
||||
};
|
||||
|
||||
return (
|
||||
<ListItem
|
||||
key={`sub-${childIndex}-${child.name}`}
|
||||
onPointerMove={handleChildPointerMove}
|
||||
>
|
||||
{props.renderMenuItem(child as any, childIndex, {
|
||||
selected: childIndex === submenu.selectedIndex,
|
||||
onClick: handleChildClick,
|
||||
})}
|
||||
</ListItem>
|
||||
);
|
||||
})}
|
||||
</List>
|
||||
</SubmenuPopoverContent>
|
||||
</Popover>
|
||||
)}
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
const bouncyFadeIn = keyframes`
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: scale(0.95);
|
||||
}
|
||||
`;
|
||||
|
||||
const BouncyPopoverContent = styled(PopoverContent)`
|
||||
&[data-state="open"] {
|
||||
animation: ${bouncyFadeIn} 150ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
|
||||
}
|
||||
`;
|
||||
|
||||
const SubmenuPopoverContent = styled(PopoverContent)`
|
||||
max-height: min(324px, var(--radix-popover-content-available-height));
|
||||
`;
|
||||
|
||||
const LinkInputWrapper = styled.div`
|
||||
margin: 8px;
|
||||
`;
|
||||
@@ -839,6 +1084,13 @@ const List = styled.ol`
|
||||
height: 100%;
|
||||
padding: 6px;
|
||||
margin: 0;
|
||||
white-space: nowrap;
|
||||
|
||||
hr {
|
||||
border: 0;
|
||||
height: 0;
|
||||
border-top: 1px solid ${s("divider")};
|
||||
}
|
||||
`;
|
||||
|
||||
const ListItem = styled.li`
|
||||
@@ -860,61 +1112,4 @@ const MobileScrollable = styled(Scrollable)`
|
||||
max-height: 75vh;
|
||||
`;
|
||||
|
||||
export const Wrapper = styled(Scrollable)<{
|
||||
active: boolean;
|
||||
top?: number;
|
||||
bottom?: number;
|
||||
left?: number;
|
||||
isAbove: boolean;
|
||||
}>`
|
||||
color: ${s("textSecondary")};
|
||||
font-family: ${s("fontFamily")};
|
||||
position: absolute;
|
||||
z-index: ${depths.editorToolbar};
|
||||
${(props) => props.top !== undefined && `top: ${props.top}px`};
|
||||
${(props) => props.bottom !== undefined && `bottom: ${props.bottom}px`};
|
||||
left: ${(props) => props.left}px;
|
||||
background: ${s("menuBackground")};
|
||||
border-radius: 6px;
|
||||
box-shadow:
|
||||
rgba(0, 0, 0, 0.05) 0px 0px 0px 1px,
|
||||
rgba(0, 0, 0, 0.08) 0px 4px 8px,
|
||||
rgba(0, 0, 0, 0.08) 0px 2px 4px;
|
||||
opacity: 0;
|
||||
transform: scale(0.95);
|
||||
transition:
|
||||
opacity 150ms cubic-bezier(0.175, 0.885, 0.32, 1.275),
|
||||
transform 150ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
|
||||
transition-delay: 150ms;
|
||||
line-height: 0;
|
||||
box-sizing: border-box;
|
||||
pointer-events: none;
|
||||
white-space: nowrap;
|
||||
width: 280px;
|
||||
height: auto;
|
||||
max-height: 324px;
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
hr {
|
||||
border: 0;
|
||||
height: 0;
|
||||
border-top: 1px solid ${s("divider")};
|
||||
}
|
||||
|
||||
${({ active, isAbove }) =>
|
||||
active &&
|
||||
`
|
||||
transform: translateY(${isAbove ? "6px" : "-6px"}) scale(1);
|
||||
pointer-events: all;
|
||||
opacity: 1;
|
||||
`};
|
||||
|
||||
@media print {
|
||||
display: none;
|
||||
}
|
||||
`;
|
||||
|
||||
export default SuggestionsMenu;
|
||||
|
||||
@@ -5,6 +5,7 @@ import styled from "styled-components";
|
||||
import { usePortalContext } from "~/components/Portal";
|
||||
import {
|
||||
MenuButton,
|
||||
MenuDisclosure,
|
||||
MenuIconWrapper,
|
||||
MenuLabel,
|
||||
} from "~/components/primitives/components/Menu";
|
||||
@@ -26,6 +27,8 @@ export type Props = {
|
||||
subtitle?: React.ReactNode;
|
||||
/** A string representing the keyboard shortcut for the item */
|
||||
shortcut?: string;
|
||||
/** Whether to show a disclosure arrow indicating a submenu */
|
||||
disclosure?: boolean;
|
||||
};
|
||||
|
||||
function SuggestionsMenuItem({
|
||||
@@ -37,6 +40,7 @@ function SuggestionsMenuItem({
|
||||
subtitle,
|
||||
shortcut,
|
||||
icon,
|
||||
disclosure,
|
||||
}: Props) {
|
||||
const portal = usePortalContext();
|
||||
const ref = React.useCallback(
|
||||
@@ -75,6 +79,7 @@ function SuggestionsMenuItem({
|
||||
)}
|
||||
{shortcut && <Shortcut $active={selected}>{shortcut}</Shortcut>}
|
||||
</MenuLabel>
|
||||
{disclosure && <MenuDisclosure />}
|
||||
</MenuButton>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -55,12 +55,10 @@ export default class BlockMenuExtension extends Suggestion {
|
||||
Decoration.widget(
|
||||
parent.pos,
|
||||
() => {
|
||||
button.addEventListener(
|
||||
"click",
|
||||
action(() => {
|
||||
this.state.open = true;
|
||||
})
|
||||
);
|
||||
button.onclick = action(() => {
|
||||
this.state.query = "";
|
||||
this.state.open = true;
|
||||
});
|
||||
return button;
|
||||
},
|
||||
{
|
||||
|
||||
@@ -63,9 +63,14 @@ window.addEventListener("keydown", (event) => {
|
||||
return;
|
||||
}
|
||||
|
||||
// Track whether defaultPrevented was already set by an external handler (e.g.
|
||||
// Radix UI's DismissableLayer) so we only break on preventDefault calls made
|
||||
// by our own callbacks.
|
||||
const wasDefaultPrevented = event.defaultPrevented;
|
||||
|
||||
// reverse so that the last registered callbacks get executed first
|
||||
for (const registered of callbacks.reverse()) {
|
||||
if (event.defaultPrevented === true) {
|
||||
for (const registered of [...callbacks].reverse()) {
|
||||
if (!wasDefaultPrevented && event.defaultPrevented) {
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
@@ -12,6 +12,7 @@ import {
|
||||
import useCurrentTeam from "~/hooks/useCurrentTeam";
|
||||
import useMobile from "~/hooks/useMobile";
|
||||
import useStores from "~/hooks/useStores";
|
||||
import { preventDefault } from "~/utils/events";
|
||||
import lazyWithRetry from "~/utils/lazyWithRetry";
|
||||
|
||||
const SharePopover = lazyWithRetry(
|
||||
@@ -64,6 +65,7 @@ function ShareButton({ collection }: Props) {
|
||||
minHeight={175}
|
||||
side="bottom"
|
||||
align="end"
|
||||
onEscapeKeyDown={preventDefault}
|
||||
>
|
||||
<Suspense fallback={null}>
|
||||
<SharePopover
|
||||
|
||||
@@ -31,7 +31,8 @@ import useMobile from "~/hooks/useMobile";
|
||||
function Comments() {
|
||||
const { ui, comments, documents } = useStores();
|
||||
const user = useCurrentUser();
|
||||
const { editor, isEditorInitialized } = useDocumentContext();
|
||||
const { editor, isEditorInitialized, setFocusedCommentId } =
|
||||
useDocumentContext();
|
||||
const { t } = useTranslation();
|
||||
const match = useRouteMatch<{ documentSlug: string }>();
|
||||
const document = documents.get(match.params.documentSlug);
|
||||
@@ -203,7 +204,10 @@ function Comments() {
|
||||
/>
|
||||
</Flex>
|
||||
}
|
||||
onClose={() => ui.set({ rightSidebar: null })}
|
||||
onClose={() => {
|
||||
ui.set({ rightSidebar: null });
|
||||
setFocusedCommentId(null);
|
||||
}}
|
||||
scrollable={false}
|
||||
>
|
||||
{content}
|
||||
|
||||
@@ -11,6 +11,7 @@ import {
|
||||
} from "~/components/primitives/Popover";
|
||||
import useMobile from "~/hooks/useMobile";
|
||||
import useStores from "~/hooks/useStores";
|
||||
import { preventDefault } from "~/utils/events";
|
||||
import lazyWithRetry from "~/utils/lazyWithRetry";
|
||||
|
||||
const SharePopover = lazyWithRetry(
|
||||
@@ -58,6 +59,7 @@ function ShareButton({ document }: Props) {
|
||||
minHeight={175}
|
||||
side="bottom"
|
||||
align="end"
|
||||
onEscapeKeyDown={preventDefault}
|
||||
>
|
||||
<Suspense fallback={null}>
|
||||
<SharePopover
|
||||
|
||||
@@ -28,6 +28,7 @@ import usePaginatedRequest from "~/hooks/usePaginatedRequest";
|
||||
import useQuery from "~/hooks/useQuery";
|
||||
import useStores from "~/hooks/useStores";
|
||||
import type { PaginationParams, SearchResult } from "~/types";
|
||||
import { preventDefault } from "~/utils/events";
|
||||
import { searchPath } from "~/utils/routeHelpers";
|
||||
import { decodeURIComponentSafe } from "~/utils/urls";
|
||||
import CollectionFilter from "./components/CollectionFilter";
|
||||
@@ -251,11 +252,7 @@ function Search() {
|
||||
<RegisterKeyDown trigger="Escape" handler={history.goBack} />
|
||||
{loading && <LoadingIndicator />}
|
||||
<ResultsWrapper column auto>
|
||||
<form
|
||||
method="GET"
|
||||
action={searchPath()}
|
||||
onSubmit={(ev) => ev.preventDefault()}
|
||||
>
|
||||
<form method="GET" action={searchPath()} onSubmit={preventDefault}>
|
||||
<SearchInput
|
||||
name="query"
|
||||
key={query ? "search" : "recent"}
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* Calls preventDefault on the event. Useful as a stable callback reference.
|
||||
*
|
||||
* @param event the event to prevent default on.
|
||||
*/
|
||||
export const preventDefault = (event: { preventDefault: () => void }) => {
|
||||
event.preventDefault();
|
||||
};
|
||||
@@ -118,10 +118,10 @@ export const createSubscriptionsForDocument = async (
|
||||
document: Document,
|
||||
event: DocumentEvent | RevisionEvent
|
||||
): Promise<void> => {
|
||||
await sequelize.transaction(async (transaction) => {
|
||||
const users = await document.collaborators({ transaction });
|
||||
const users = await document.collaborators();
|
||||
|
||||
for (const user of users) {
|
||||
for (const user of users) {
|
||||
await sequelize.transaction(async (transaction) => {
|
||||
await subscriptionCreator({
|
||||
ctx: createContext({
|
||||
user,
|
||||
@@ -133,6 +133,6 @@ export const createSubscriptionsForDocument = async (
|
||||
event: SubscriptionType.Document,
|
||||
resubscribe: false,
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
@@ -204,7 +204,7 @@ class GroupMembership extends ParanoidModel<
|
||||
@AfterCreate
|
||||
static async createSourcedMemberships(
|
||||
model: GroupMembership,
|
||||
options: SaveOptions<GroupMembership>
|
||||
options: SaveOptions<GroupMembership> & { documentId?: string }
|
||||
) {
|
||||
if (model.sourceId || !model.documentId) {
|
||||
return;
|
||||
@@ -326,27 +326,19 @@ class GroupMembership extends ParanoidModel<
|
||||
*/
|
||||
static async recreateSourcedMemberships(
|
||||
model: GroupMembership,
|
||||
options: SaveOptions<GroupMembership>
|
||||
options: SaveOptions<GroupMembership> & { documentId?: string }
|
||||
) {
|
||||
if (!model.documentId) {
|
||||
return;
|
||||
}
|
||||
const { transaction } = options;
|
||||
|
||||
await this.destroy({
|
||||
where: {
|
||||
groupId: model.groupId,
|
||||
sourceId: model.id,
|
||||
},
|
||||
transaction,
|
||||
});
|
||||
const { transaction, documentId } = options;
|
||||
|
||||
const document = await Document.unscoped()
|
||||
.scope("withoutState")
|
||||
.findOne({
|
||||
attributes: ["id"],
|
||||
where: {
|
||||
id: model.documentId,
|
||||
id: documentId ?? model.documentId,
|
||||
},
|
||||
transaction,
|
||||
});
|
||||
@@ -354,16 +346,32 @@ class GroupMembership extends ParanoidModel<
|
||||
return;
|
||||
}
|
||||
|
||||
const childDocumentIds = await document.findAllChildDocumentIds(
|
||||
{
|
||||
publishedAt: {
|
||||
[Op.ne]: null,
|
||||
const childDocumentIds = [
|
||||
...(documentId ? [documentId] : []),
|
||||
...(await document.findAllChildDocumentIds(
|
||||
{
|
||||
publishedAt: {
|
||||
[Op.ne]: null,
|
||||
},
|
||||
},
|
||||
{
|
||||
transaction,
|
||||
}
|
||||
)),
|
||||
];
|
||||
|
||||
if (childDocumentIds.length) {
|
||||
await this.destroy({
|
||||
where: {
|
||||
groupId: model.groupId,
|
||||
sourceId: model.id,
|
||||
documentId: {
|
||||
[Op.in]: childDocumentIds,
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
transaction,
|
||||
}
|
||||
);
|
||||
});
|
||||
}
|
||||
|
||||
for (const childDocumentId of childDocumentIds) {
|
||||
await this.create(
|
||||
|
||||
@@ -205,7 +205,7 @@ class UserMembership extends IdModel<
|
||||
@AfterCreate
|
||||
static async createSourcedMemberships(
|
||||
model: UserMembership,
|
||||
options: SaveOptions<UserMembership>
|
||||
options: SaveOptions<UserMembership> & { documentId?: string }
|
||||
) {
|
||||
if (model.sourceId || !model.documentId) {
|
||||
return;
|
||||
@@ -322,44 +322,53 @@ class UserMembership extends IdModel<
|
||||
*/
|
||||
static async recreateSourcedMemberships(
|
||||
model: UserMembership,
|
||||
options: SaveOptions<UserMembership>
|
||||
options: SaveOptions<UserMembership> & { documentId?: string }
|
||||
) {
|
||||
if (!model.documentId) {
|
||||
return;
|
||||
}
|
||||
const { transaction } = options;
|
||||
|
||||
await this.destroy({
|
||||
where: {
|
||||
userId: model.userId,
|
||||
sourceId: model.id,
|
||||
},
|
||||
transaction,
|
||||
});
|
||||
const { transaction, documentId } = options;
|
||||
|
||||
const document = await Document.unscoped()
|
||||
.scope("withoutState")
|
||||
.findOne({
|
||||
attributes: ["id"],
|
||||
where: {
|
||||
id: model.documentId,
|
||||
id: documentId ?? model.documentId,
|
||||
},
|
||||
transaction,
|
||||
});
|
||||
|
||||
if (!document) {
|
||||
return;
|
||||
}
|
||||
|
||||
const childDocumentIds = await document.findAllChildDocumentIds(
|
||||
{
|
||||
publishedAt: {
|
||||
[Op.ne]: null,
|
||||
const childDocumentIds = [
|
||||
...(documentId ? [documentId] : []),
|
||||
...(await document.findAllChildDocumentIds(
|
||||
{
|
||||
publishedAt: {
|
||||
[Op.ne]: null,
|
||||
},
|
||||
},
|
||||
{
|
||||
transaction,
|
||||
}
|
||||
)),
|
||||
];
|
||||
|
||||
if (childDocumentIds.length) {
|
||||
await this.destroy({
|
||||
where: {
|
||||
userId: model.userId,
|
||||
sourceId: model.id,
|
||||
documentId: {
|
||||
[Op.in]: childDocumentIds,
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
transaction,
|
||||
}
|
||||
);
|
||||
});
|
||||
}
|
||||
|
||||
for (const childDocumentId of childDocumentIds) {
|
||||
await this.create(
|
||||
|
||||
@@ -0,0 +1,642 @@
|
||||
import { UserMembership, GroupMembership } from "@server/models";
|
||||
import {
|
||||
buildDocument,
|
||||
buildCollection,
|
||||
buildUser,
|
||||
buildTeam,
|
||||
buildAdmin,
|
||||
buildGroup,
|
||||
} from "@server/test/factories";
|
||||
import DocumentMovedProcessor from "./DocumentMovedProcessor";
|
||||
|
||||
const ip = "127.0.0.1";
|
||||
|
||||
describe("DocumentMovedProcessor", () => {
|
||||
it("should add sourced permissions from the top document when a document is moved into a new parent", async () => {
|
||||
const team = await buildTeam();
|
||||
const user = await buildAdmin({ teamId: team.id });
|
||||
const user2 = await buildUser({ teamId: team.id });
|
||||
const group = await buildGroup({ teamId: team.id });
|
||||
const collection = await buildCollection({
|
||||
userId: user.id,
|
||||
teamId: team.id,
|
||||
});
|
||||
|
||||
const topDocument = await buildDocument({
|
||||
collectionId: collection.id,
|
||||
teamId: team.id,
|
||||
});
|
||||
const childDocument = await buildDocument({
|
||||
teamId: team.id,
|
||||
parentDocumentId: topDocument.id,
|
||||
});
|
||||
|
||||
const sourceUserMembership = await UserMembership.create({
|
||||
userId: user2.id,
|
||||
documentId: topDocument.id,
|
||||
createdById: user.id,
|
||||
});
|
||||
const sourceGroupMembership = await GroupMembership.create({
|
||||
groupId: group.id,
|
||||
documentId: topDocument.id,
|
||||
createdById: user.id,
|
||||
});
|
||||
|
||||
// remove sourced permissions from childDocument
|
||||
await UserMembership.destroy({
|
||||
where: { documentId: childDocument.id, userId: user2.id },
|
||||
});
|
||||
await GroupMembership.destroy({
|
||||
where: { documentId: childDocument.id, groupId: group.id },
|
||||
});
|
||||
|
||||
// trigger move event on childDocument
|
||||
const processor = new DocumentMovedProcessor();
|
||||
await processor.perform({
|
||||
name: "documents.move",
|
||||
documentId: childDocument.id,
|
||||
collectionId: collection.id,
|
||||
teamId: team.id,
|
||||
actorId: user.id,
|
||||
ip,
|
||||
data: {
|
||||
collectionIds: [],
|
||||
documentIds: [],
|
||||
},
|
||||
});
|
||||
|
||||
// doc2 should have sourced permissions from topDocument
|
||||
const memberships = await UserMembership.findAll({
|
||||
where: { documentId: childDocument.id, userId: user2.id },
|
||||
});
|
||||
const groupMemberships = await GroupMembership.findAll({
|
||||
where: { documentId: childDocument.id, groupId: group.id },
|
||||
});
|
||||
expect(memberships.length).toBe(1);
|
||||
expect(groupMemberships.length).toBe(1);
|
||||
|
||||
expect(memberships[0].sourceId).toBe(sourceUserMembership.id);
|
||||
expect(groupMemberships[0].sourceId).toBe(sourceGroupMembership.id);
|
||||
});
|
||||
|
||||
it("should not reapply sourced permissions to sibling documents when a document is moved into a new parent", async () => {
|
||||
const team = await buildTeam();
|
||||
const user = await buildAdmin({ teamId: team.id });
|
||||
const user2 = await buildUser({ teamId: team.id });
|
||||
const group = await buildGroup({ teamId: team.id });
|
||||
const collection = await buildCollection({
|
||||
userId: user.id,
|
||||
teamId: team.id,
|
||||
});
|
||||
|
||||
const topDocument = await buildDocument({
|
||||
collectionId: collection.id,
|
||||
teamId: team.id,
|
||||
});
|
||||
const doc1 = await buildDocument({
|
||||
teamId: team.id,
|
||||
parentDocumentId: topDocument.id,
|
||||
});
|
||||
const doc2 = await buildDocument({
|
||||
teamId: team.id,
|
||||
parentDocumentId: topDocument.id,
|
||||
});
|
||||
|
||||
await UserMembership.create({
|
||||
userId: user2.id,
|
||||
documentId: topDocument.id,
|
||||
createdById: user.id,
|
||||
});
|
||||
await GroupMembership.create({
|
||||
groupId: group.id,
|
||||
documentId: topDocument.id,
|
||||
createdById: user.id,
|
||||
});
|
||||
|
||||
// Remove source permissions from doc2
|
||||
await UserMembership.destroy({
|
||||
where: { documentId: doc2.id, userId: user2.id },
|
||||
});
|
||||
await GroupMembership.destroy({
|
||||
where: { documentId: doc2.id, groupId: group.id },
|
||||
});
|
||||
|
||||
// trigger move event on doc1
|
||||
const processor = new DocumentMovedProcessor();
|
||||
await processor.perform({
|
||||
name: "documents.move",
|
||||
documentId: doc1.id,
|
||||
collectionId: collection.id,
|
||||
teamId: team.id,
|
||||
actorId: user.id,
|
||||
ip,
|
||||
data: {
|
||||
collectionIds: [],
|
||||
documentIds: [],
|
||||
},
|
||||
});
|
||||
|
||||
// sourced permission from user2 remains removed
|
||||
const userMemberships = await UserMembership.findAll({
|
||||
where: { documentId: doc2.id, userId: user2.id },
|
||||
});
|
||||
const groupMemberships = await GroupMembership.findAll({
|
||||
where: { documentId: doc2.id, groupId: group.id },
|
||||
});
|
||||
|
||||
expect(userMemberships.length).toBe(0);
|
||||
expect(groupMemberships.length).toBe(0);
|
||||
});
|
||||
|
||||
it("should not create duplicate sourced permissions when a document is moved", async () => {
|
||||
const team = await buildTeam();
|
||||
const user = await buildAdmin({ teamId: team.id });
|
||||
const user2 = await buildUser({ teamId: team.id });
|
||||
const group = await buildGroup({ teamId: team.id });
|
||||
const collection = await buildCollection({
|
||||
userId: user.id,
|
||||
teamId: team.id,
|
||||
});
|
||||
|
||||
const topDocument = await buildDocument({
|
||||
collectionId: collection.id,
|
||||
teamId: team.id,
|
||||
});
|
||||
const doc1 = await buildDocument({
|
||||
teamId: team.id,
|
||||
parentDocumentId: topDocument.id,
|
||||
});
|
||||
const doc2 = await buildDocument({
|
||||
teamId: team.id,
|
||||
parentDocumentId: topDocument.id,
|
||||
});
|
||||
|
||||
await UserMembership.create({
|
||||
userId: user2.id,
|
||||
documentId: topDocument.id,
|
||||
createdById: user.id,
|
||||
});
|
||||
await GroupMembership.create({
|
||||
groupId: group.id,
|
||||
documentId: topDocument.id,
|
||||
createdById: user.id,
|
||||
});
|
||||
|
||||
// Trigger move event on doc1
|
||||
const processor = new DocumentMovedProcessor();
|
||||
await processor.perform({
|
||||
name: "documents.move",
|
||||
documentId: doc1.id,
|
||||
collectionId: collection.id,
|
||||
teamId: team.id,
|
||||
actorId: user.id,
|
||||
ip,
|
||||
data: {
|
||||
collectionIds: [],
|
||||
documentIds: [],
|
||||
},
|
||||
});
|
||||
|
||||
// there should be no duplicate permissions are created for doc1 and doc2
|
||||
const doc1UserMemberships = await UserMembership.findAll({
|
||||
where: { documentId: doc1.id, userId: user2.id },
|
||||
});
|
||||
const doc2UserMemberships = await UserMembership.findAll({
|
||||
where: { documentId: doc2.id, userId: user2.id },
|
||||
});
|
||||
const doc1GroupMemberships = await GroupMembership.findAll({
|
||||
where: { documentId: doc1.id, groupId: group.id },
|
||||
});
|
||||
const doc2GroupMemberships = await GroupMembership.findAll({
|
||||
where: { documentId: doc2.id, groupId: group.id },
|
||||
});
|
||||
|
||||
expect(doc1UserMemberships.length).toBe(1);
|
||||
expect(doc2UserMemberships.length).toBe(1);
|
||||
expect(doc1GroupMemberships.length).toBe(1);
|
||||
expect(doc2GroupMemberships.length).toBe(1);
|
||||
});
|
||||
|
||||
it("should propagate sourced permissions to direct child documents of the moved document", async () => {
|
||||
const team = await buildTeam();
|
||||
const user = await buildAdmin({ teamId: team.id });
|
||||
const user2 = await buildUser({ teamId: team.id });
|
||||
const group = await buildGroup({ teamId: team.id });
|
||||
const collection = await buildCollection({
|
||||
userId: user.id,
|
||||
teamId: team.id,
|
||||
});
|
||||
|
||||
const topDocument = await buildDocument({
|
||||
collectionId: collection.id,
|
||||
teamId: team.id,
|
||||
});
|
||||
const childDocument = await buildDocument({
|
||||
teamId: team.id,
|
||||
parentDocumentId: topDocument.id,
|
||||
});
|
||||
|
||||
const sourceUserMembership = await UserMembership.create({
|
||||
userId: user2.id,
|
||||
documentId: topDocument.id,
|
||||
createdById: user.id,
|
||||
});
|
||||
const sourceGroupMembership = await GroupMembership.create({
|
||||
groupId: group.id,
|
||||
documentId: topDocument.id,
|
||||
createdById: user.id,
|
||||
});
|
||||
|
||||
// Remove sourced permissions from childDocument
|
||||
await UserMembership.destroy({
|
||||
where: { documentId: childDocument.id, userId: user2.id },
|
||||
});
|
||||
await GroupMembership.destroy({
|
||||
where: { documentId: childDocument.id, groupId: group.id },
|
||||
});
|
||||
|
||||
// Trigger move event on childDocument
|
||||
const processor = new DocumentMovedProcessor();
|
||||
await processor.perform({
|
||||
name: "documents.move",
|
||||
documentId: childDocument.id,
|
||||
collectionId: collection.id,
|
||||
teamId: team.id,
|
||||
actorId: user.id,
|
||||
ip,
|
||||
data: {
|
||||
collectionIds: [],
|
||||
documentIds: [],
|
||||
},
|
||||
});
|
||||
|
||||
// Verify permissions for childDocument
|
||||
const childUserMemberships = await UserMembership.findAll({
|
||||
where: { documentId: childDocument.id, userId: user2.id },
|
||||
});
|
||||
const childGroupMemberships = await GroupMembership.findAll({
|
||||
where: { documentId: childDocument.id, groupId: group.id },
|
||||
});
|
||||
expect(childUserMemberships.length).toBe(1);
|
||||
expect(childGroupMemberships.length).toBe(1);
|
||||
expect(childUserMemberships[0].sourceId).toBe(sourceUserMembership.id);
|
||||
expect(childGroupMemberships[0].sourceId).toBe(sourceGroupMembership.id);
|
||||
});
|
||||
|
||||
it("should propagate sourced permissions to all deep child documents of the moved document", async () => {
|
||||
const team = await buildTeam();
|
||||
const user = await buildAdmin({ teamId: team.id });
|
||||
const user2 = await buildUser({ teamId: team.id });
|
||||
const group = await buildGroup({ teamId: team.id });
|
||||
const collection = await buildCollection({
|
||||
userId: user.id,
|
||||
teamId: team.id,
|
||||
});
|
||||
|
||||
const topDocument = await buildDocument({
|
||||
collectionId: collection.id,
|
||||
teamId: team.id,
|
||||
});
|
||||
const childDocument = await buildDocument({
|
||||
teamId: team.id,
|
||||
parentDocumentId: topDocument.id,
|
||||
});
|
||||
const grandChildDocument = await buildDocument({
|
||||
teamId: team.id,
|
||||
parentDocumentId: childDocument.id,
|
||||
});
|
||||
const greatGrandChildDocument = await buildDocument({
|
||||
teamId: team.id,
|
||||
parentDocumentId: grandChildDocument.id,
|
||||
});
|
||||
|
||||
const sourceUserMembership = await UserMembership.create({
|
||||
userId: user2.id,
|
||||
documentId: topDocument.id,
|
||||
createdById: user.id,
|
||||
});
|
||||
const sourceGroupMembership = await GroupMembership.create({
|
||||
groupId: group.id,
|
||||
documentId: topDocument.id,
|
||||
createdById: user.id,
|
||||
});
|
||||
|
||||
// Remove sourced permissions from grandChildDocument and greatGrandChildDocument
|
||||
await UserMembership.destroy({
|
||||
where: { documentId: grandChildDocument.id, userId: user2.id },
|
||||
});
|
||||
await GroupMembership.destroy({
|
||||
where: { documentId: grandChildDocument.id, groupId: group.id },
|
||||
});
|
||||
await UserMembership.destroy({
|
||||
where: { documentId: greatGrandChildDocument.id, userId: user2.id },
|
||||
});
|
||||
await GroupMembership.destroy({
|
||||
where: { documentId: greatGrandChildDocument.id, groupId: group.id },
|
||||
});
|
||||
|
||||
// Trigger move event on childDocument
|
||||
const processor = new DocumentMovedProcessor();
|
||||
await processor.perform({
|
||||
name: "documents.move",
|
||||
documentId: childDocument.id,
|
||||
collectionId: collection.id,
|
||||
teamId: team.id,
|
||||
actorId: user.id,
|
||||
ip,
|
||||
data: {
|
||||
collectionIds: [],
|
||||
documentIds: [],
|
||||
},
|
||||
});
|
||||
|
||||
// Verify permissions for grandChildDocument
|
||||
const grandChildUserMemberships = await UserMembership.findAll({
|
||||
where: { documentId: grandChildDocument.id, userId: user2.id },
|
||||
});
|
||||
const grandChildGroupMemberships = await GroupMembership.findAll({
|
||||
where: { documentId: grandChildDocument.id, groupId: group.id },
|
||||
});
|
||||
expect(grandChildUserMemberships.length).toBe(1);
|
||||
expect(grandChildGroupMemberships.length).toBe(1);
|
||||
expect(grandChildUserMemberships[0].sourceId).toBe(sourceUserMembership.id);
|
||||
expect(grandChildGroupMemberships[0].sourceId).toBe(
|
||||
sourceGroupMembership.id
|
||||
);
|
||||
|
||||
// Verify permissions for greatGrandChildDocument
|
||||
const greatGrandChildUserMemberships = await UserMembership.findAll({
|
||||
where: { documentId: greatGrandChildDocument.id, userId: user2.id },
|
||||
});
|
||||
const greatGrandChildGroupMemberships = await GroupMembership.findAll({
|
||||
where: { documentId: greatGrandChildDocument.id, groupId: group.id },
|
||||
});
|
||||
expect(greatGrandChildUserMemberships.length).toBe(1);
|
||||
expect(greatGrandChildGroupMemberships.length).toBe(1);
|
||||
expect(greatGrandChildUserMemberships[0].sourceId).toBe(
|
||||
sourceUserMembership.id
|
||||
);
|
||||
expect(greatGrandChildGroupMemberships[0].sourceId).toBe(
|
||||
sourceGroupMembership.id
|
||||
);
|
||||
});
|
||||
|
||||
it("should not carry over sourced permissions from previous parent", async () => {
|
||||
const team = await buildTeam();
|
||||
const user = await buildAdmin({ teamId: team.id });
|
||||
const user2 = await buildUser({ teamId: team.id });
|
||||
const group = await buildGroup({ teamId: team.id });
|
||||
const collection = await buildCollection({
|
||||
userId: user.id,
|
||||
teamId: team.id,
|
||||
});
|
||||
|
||||
const parentDocument = await buildDocument({
|
||||
collectionId: collection.id,
|
||||
teamId: team.id,
|
||||
});
|
||||
const childDocument = await buildDocument({
|
||||
teamId: team.id,
|
||||
parentDocumentId: parentDocument.id,
|
||||
});
|
||||
|
||||
const newParentDocument = await buildDocument({
|
||||
collectionId: collection.id,
|
||||
teamId: team.id,
|
||||
});
|
||||
|
||||
// Add user and group to parent document
|
||||
await UserMembership.create({
|
||||
userId: user2.id,
|
||||
documentId: parentDocument.id,
|
||||
createdById: user.id,
|
||||
});
|
||||
await GroupMembership.create({
|
||||
groupId: group.id,
|
||||
documentId: parentDocument.id,
|
||||
createdById: user.id,
|
||||
});
|
||||
|
||||
// Add different permissions to the new parent document
|
||||
const user3 = await buildUser({ teamId: team.id });
|
||||
const group2 = await buildGroup({ teamId: team.id });
|
||||
await UserMembership.create({
|
||||
userId: user3.id,
|
||||
documentId: newParentDocument.id,
|
||||
createdById: user.id,
|
||||
});
|
||||
await GroupMembership.create({
|
||||
groupId: group2.id,
|
||||
documentId: newParentDocument.id,
|
||||
createdById: user.id,
|
||||
});
|
||||
|
||||
// Verify inherited permissions exist on child from the original parent
|
||||
let childUserMemberships = await UserMembership.findAll({
|
||||
where: { documentId: childDocument.id, userId: user2.id },
|
||||
});
|
||||
let childGroupMemberships = await GroupMembership.findAll({
|
||||
where: { documentId: childDocument.id, groupId: group.id },
|
||||
});
|
||||
expect(childUserMemberships.length).toBe(1);
|
||||
expect(childGroupMemberships.length).toBe(1);
|
||||
expect(childUserMemberships[0].sourceId).toBeTruthy();
|
||||
expect(childGroupMemberships[0].sourceId).toBeTruthy();
|
||||
|
||||
// Move child to a new parent document
|
||||
childDocument.parentDocumentId = newParentDocument.id;
|
||||
await childDocument.save();
|
||||
|
||||
// Trigger move event
|
||||
const processor = new DocumentMovedProcessor();
|
||||
await processor.perform({
|
||||
name: "documents.move",
|
||||
documentId: childDocument.id,
|
||||
collectionId: collection.id,
|
||||
teamId: team.id,
|
||||
actorId: user.id,
|
||||
ip,
|
||||
data: {
|
||||
collectionIds: [],
|
||||
documentIds: [],
|
||||
},
|
||||
});
|
||||
|
||||
// Verify inherited permissions from the original parent are removed
|
||||
childUserMemberships = await UserMembership.findAll({
|
||||
where: { documentId: childDocument.id, userId: user2.id },
|
||||
});
|
||||
childGroupMemberships = await GroupMembership.findAll({
|
||||
where: { documentId: childDocument.id, groupId: group.id },
|
||||
});
|
||||
expect(childUserMemberships.length).toBe(0);
|
||||
expect(childGroupMemberships.length).toBe(0);
|
||||
|
||||
// Verify inherited permissions from the new parent are applied
|
||||
const newChildUserMemberships = await UserMembership.findAll({
|
||||
where: { documentId: childDocument.id, userId: user3.id },
|
||||
});
|
||||
const newChildGroupMemberships = await GroupMembership.findAll({
|
||||
where: { documentId: childDocument.id, groupId: group2.id },
|
||||
});
|
||||
expect(newChildUserMemberships.length).toBe(1);
|
||||
expect(newChildGroupMemberships.length).toBe(1);
|
||||
expect(newChildUserMemberships[0].sourceId).toBeTruthy();
|
||||
expect(newChildGroupMemberships[0].sourceId).toBeTruthy();
|
||||
});
|
||||
|
||||
it("should remove all sourced permissions when a document is moved to root level", async () => {
|
||||
const team = await buildTeam();
|
||||
const user = await buildAdmin({ teamId: team.id });
|
||||
const user2 = await buildUser({ teamId: team.id });
|
||||
const group = await buildGroup({ teamId: team.id });
|
||||
const collection = await buildCollection({
|
||||
userId: user.id,
|
||||
teamId: team.id,
|
||||
});
|
||||
|
||||
const parentDocument = await buildDocument({
|
||||
collectionId: collection.id,
|
||||
teamId: team.id,
|
||||
});
|
||||
const childDocument = await buildDocument({
|
||||
teamId: team.id,
|
||||
parentDocumentId: parentDocument.id,
|
||||
});
|
||||
|
||||
await UserMembership.create({
|
||||
userId: user2.id,
|
||||
documentId: parentDocument.id,
|
||||
createdById: user.id,
|
||||
});
|
||||
await GroupMembership.create({
|
||||
groupId: group.id,
|
||||
documentId: parentDocument.id,
|
||||
createdById: user.id,
|
||||
});
|
||||
|
||||
// Verify sourced permissions exist on child
|
||||
let childUserMemberships = await UserMembership.findAll({
|
||||
where: { documentId: childDocument.id, userId: user2.id },
|
||||
});
|
||||
let childGroupMemberships = await GroupMembership.findAll({
|
||||
where: { documentId: childDocument.id, groupId: group.id },
|
||||
});
|
||||
expect(childUserMemberships.length).toBe(1);
|
||||
expect(childGroupMemberships.length).toBe(1);
|
||||
|
||||
// Move child to root level (no parent)
|
||||
childDocument.parentDocumentId = null;
|
||||
await childDocument.save();
|
||||
|
||||
const processor = new DocumentMovedProcessor();
|
||||
await processor.perform({
|
||||
name: "documents.move",
|
||||
documentId: childDocument.id,
|
||||
collectionId: collection.id,
|
||||
teamId: team.id,
|
||||
actorId: user.id,
|
||||
ip,
|
||||
data: {
|
||||
collectionIds: [],
|
||||
documentIds: [],
|
||||
},
|
||||
});
|
||||
|
||||
// Sourced permissions should be removed
|
||||
childUserMemberships = await UserMembership.findAll({
|
||||
where: { documentId: childDocument.id, userId: user2.id },
|
||||
});
|
||||
childGroupMemberships = await GroupMembership.findAll({
|
||||
where: { documentId: childDocument.id, groupId: group.id },
|
||||
});
|
||||
expect(childUserMemberships.length).toBe(0);
|
||||
expect(childGroupMemberships.length).toBe(0);
|
||||
});
|
||||
|
||||
it("should preserve direct (non-sourced) permissions when a document is moved", async () => {
|
||||
const team = await buildTeam();
|
||||
const user = await buildAdmin({ teamId: team.id });
|
||||
const user2 = await buildUser({ teamId: team.id });
|
||||
const user3 = await buildUser({ teamId: team.id });
|
||||
const group = await buildGroup({ teamId: team.id });
|
||||
const group2 = await buildGroup({ teamId: team.id });
|
||||
const collection = await buildCollection({
|
||||
userId: user.id,
|
||||
teamId: team.id,
|
||||
});
|
||||
|
||||
const parentDocument = await buildDocument({
|
||||
collectionId: collection.id,
|
||||
teamId: team.id,
|
||||
});
|
||||
const childDocument = await buildDocument({
|
||||
teamId: team.id,
|
||||
parentDocumentId: parentDocument.id,
|
||||
});
|
||||
|
||||
// Add sourced permissions via parent
|
||||
await UserMembership.create({
|
||||
userId: user2.id,
|
||||
documentId: parentDocument.id,
|
||||
createdById: user.id,
|
||||
});
|
||||
await GroupMembership.create({
|
||||
groupId: group.id,
|
||||
documentId: parentDocument.id,
|
||||
createdById: user.id,
|
||||
});
|
||||
|
||||
// Add direct permissions to the child document
|
||||
await UserMembership.create({
|
||||
userId: user3.id,
|
||||
documentId: childDocument.id,
|
||||
createdById: user.id,
|
||||
});
|
||||
await GroupMembership.create({
|
||||
groupId: group2.id,
|
||||
documentId: childDocument.id,
|
||||
createdById: user.id,
|
||||
});
|
||||
|
||||
// Move child to root level
|
||||
childDocument.parentDocumentId = null;
|
||||
await childDocument.save();
|
||||
|
||||
const processor = new DocumentMovedProcessor();
|
||||
await processor.perform({
|
||||
name: "documents.move",
|
||||
documentId: childDocument.id,
|
||||
collectionId: collection.id,
|
||||
teamId: team.id,
|
||||
actorId: user.id,
|
||||
ip,
|
||||
data: {
|
||||
collectionIds: [],
|
||||
documentIds: [],
|
||||
},
|
||||
});
|
||||
|
||||
// Sourced permissions should be removed
|
||||
const sourcedUserMemberships = await UserMembership.findAll({
|
||||
where: { documentId: childDocument.id, userId: user2.id },
|
||||
});
|
||||
const sourcedGroupMemberships = await GroupMembership.findAll({
|
||||
where: { documentId: childDocument.id, groupId: group.id },
|
||||
});
|
||||
expect(sourcedUserMemberships.length).toBe(0);
|
||||
expect(sourcedGroupMemberships.length).toBe(0);
|
||||
|
||||
// Direct permissions should be preserved
|
||||
const directUserMemberships = await UserMembership.findAll({
|
||||
where: { documentId: childDocument.id, userId: user3.id },
|
||||
});
|
||||
const directGroupMemberships = await GroupMembership.findAll({
|
||||
where: { documentId: childDocument.id, groupId: group2.id },
|
||||
});
|
||||
expect(directUserMemberships.length).toBe(1);
|
||||
expect(directGroupMemberships.length).toBe(1);
|
||||
expect(directUserMemberships[0].sourceId).toBeNull();
|
||||
expect(directGroupMemberships[0].sourceId).toBeNull();
|
||||
});
|
||||
});
|
||||
@@ -3,6 +3,7 @@ import { Document, GroupMembership, UserMembership } from "@server/models";
|
||||
import { sequelize } from "@server/storage/database";
|
||||
import type { DocumentMovedEvent, Event } from "@server/types";
|
||||
import BaseProcessor from "./BaseProcessor";
|
||||
import { Op } from "sequelize";
|
||||
|
||||
export default class DocumentMovedProcessor extends BaseProcessor {
|
||||
static applicableEvents: Event["name"][] = ["documents.move"];
|
||||
@@ -18,55 +19,75 @@ export default class DocumentMovedProcessor extends BaseProcessor {
|
||||
|
||||
// If there are any sourced memberships for this document, we need to go to the source
|
||||
// memberships and recalculate the membership for the user or group.
|
||||
const [
|
||||
userMemberships,
|
||||
parentDocumentUserMemberships,
|
||||
groupMemberships,
|
||||
parentDocumentGroupMemberships,
|
||||
] = await Promise.all([
|
||||
UserMembership.findRootMembershipsForDocument(document.id, undefined, {
|
||||
transaction,
|
||||
}),
|
||||
document.parentDocumentId
|
||||
? UserMembership.findRootMembershipsForDocument(
|
||||
document.parentDocumentId,
|
||||
undefined,
|
||||
{ transaction }
|
||||
)
|
||||
: [],
|
||||
GroupMembership.findRootMembershipsForDocument(document.id, undefined, {
|
||||
transaction,
|
||||
}),
|
||||
document.parentDocumentId
|
||||
? GroupMembership.findRootMembershipsForDocument(
|
||||
document.parentDocumentId,
|
||||
undefined,
|
||||
{ transaction }
|
||||
)
|
||||
: [],
|
||||
]);
|
||||
const [parentDocumentUserMemberships, parentDocumentGroupMemberships] =
|
||||
await Promise.all([
|
||||
document.parentDocumentId
|
||||
? UserMembership.findRootMembershipsForDocument(
|
||||
document.parentDocumentId,
|
||||
undefined,
|
||||
{ transaction }
|
||||
)
|
||||
: [],
|
||||
|
||||
document.parentDocumentId
|
||||
? GroupMembership.findRootMembershipsForDocument(
|
||||
document.parentDocumentId,
|
||||
undefined,
|
||||
{ transaction }
|
||||
)
|
||||
: [],
|
||||
]);
|
||||
|
||||
await this.destroyUserMemberships(document.id);
|
||||
await this.destroyGroupMemberships(document.id);
|
||||
|
||||
await this.recalculateUserMemberships(userMemberships, transaction);
|
||||
await this.recalculateUserMemberships(
|
||||
parentDocumentUserMemberships,
|
||||
transaction
|
||||
transaction,
|
||||
document.id
|
||||
);
|
||||
await this.recalculateGroupMemberships(groupMemberships, transaction);
|
||||
await this.recalculateGroupMemberships(
|
||||
parentDocumentGroupMemberships,
|
||||
transaction
|
||||
transaction,
|
||||
document.id
|
||||
);
|
||||
});
|
||||
}
|
||||
|
||||
private async destroyUserMemberships(documentId: string) {
|
||||
const document = await Document.findByPk(documentId);
|
||||
const childDocumentIds = await document.findAllChildDocumentIds();
|
||||
|
||||
await UserMembership.destroy({
|
||||
where: {
|
||||
sourceId: { [Op.ne]: null },
|
||||
documentId: [...childDocumentIds, documentId],
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
private async destroyGroupMemberships(documentId: string) {
|
||||
const document = await Document.findByPk(documentId);
|
||||
const childDocumentIds = await document.findAllChildDocumentIds();
|
||||
|
||||
await GroupMembership.destroy({
|
||||
where: {
|
||||
sourceId: { [Op.ne]: null },
|
||||
documentId: [...childDocumentIds, documentId],
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
private async recalculateUserMemberships(
|
||||
memberships: UserMembership[],
|
||||
transaction?: Transaction
|
||||
transaction?: Transaction,
|
||||
documentId?: string
|
||||
) {
|
||||
await Promise.all(
|
||||
memberships.map((membership) =>
|
||||
UserMembership.createSourcedMemberships(membership, {
|
||||
transaction,
|
||||
documentId,
|
||||
})
|
||||
)
|
||||
);
|
||||
@@ -74,12 +95,14 @@ export default class DocumentMovedProcessor extends BaseProcessor {
|
||||
|
||||
private async recalculateGroupMemberships(
|
||||
memberships: GroupMembership[],
|
||||
transaction?: Transaction
|
||||
transaction?: Transaction,
|
||||
documentId?: string
|
||||
) {
|
||||
await Promise.all(
|
||||
memberships.map((membership) =>
|
||||
GroupMembership.createSourcedMemberships(membership, {
|
||||
transaction,
|
||||
documentId,
|
||||
})
|
||||
)
|
||||
);
|
||||
|
||||
@@ -13,6 +13,7 @@ import type {
|
||||
ProsemirrorDoc,
|
||||
} from "@shared/types";
|
||||
import { AttachmentPreset, ImportState, ImportTaskState } from "@shared/types";
|
||||
import { Hour } from "@shared/utils/time";
|
||||
import { ProsemirrorHelper as SharedProseMirrorHelper } from "@shared/utils/ProsemirrorHelper";
|
||||
import { createContext } from "@server/context";
|
||||
import { schema } from "@server/editor";
|
||||
@@ -399,6 +400,7 @@ export default abstract class APIImportTask<
|
||||
type: "exponential",
|
||||
delay: 60 * 1000,
|
||||
},
|
||||
timeout: 24 * Hour.ms,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
@@ -33,6 +33,7 @@ export default class CleanupDeletedDocumentsTask extends CronTask {
|
||||
return {
|
||||
attempts: 1,
|
||||
priority: TaskPriority.Background,
|
||||
timeout: 30 * Minute.ms,
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
import { Hour } from "@shared/utils/time";
|
||||
import teamPermanentDeleter from "@server/commands/teamPermanentDeleter";
|
||||
import { Team } from "@server/models";
|
||||
import { BaseTask, TaskPriority } from "./base/BaseTask";
|
||||
@@ -20,6 +21,7 @@ export default class CleanupDeletedTeamTask extends BaseTask<Props> {
|
||||
return {
|
||||
attempts: 1,
|
||||
priority: TaskPriority.Background,
|
||||
timeout: Hour.ms,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,7 +5,7 @@ import { Event } from "@server/models";
|
||||
import { TaskPriority } from "./base/BaseTask";
|
||||
import type { Props } from "./base/CronTask";
|
||||
import { CronTask, TaskInterval } from "./base/CronTask";
|
||||
import { Minute } from "@shared/utils/time";
|
||||
import { Minute, Hour } from "@shared/utils/time";
|
||||
|
||||
export default class CleanupOldEventsTask extends CronTask {
|
||||
public async perform({ partition }: Props) {
|
||||
@@ -59,6 +59,7 @@ export default class CleanupOldEventsTask extends CronTask {
|
||||
return {
|
||||
attempts: 1,
|
||||
priority: TaskPriority.Background,
|
||||
timeout: Hour.ms,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
import { subDays } from "date-fns";
|
||||
import { Op } from "sequelize";
|
||||
import { ImportState } from "@shared/types";
|
||||
import { Hour } from "@shared/utils/time";
|
||||
import Logger from "@server/logging/Logger";
|
||||
import { Import, ImportTask } from "@server/models";
|
||||
import { TaskPriority } from "./base/BaseTask";
|
||||
@@ -83,6 +84,7 @@ export default class CleanupOldImportsTask extends CronTask {
|
||||
return {
|
||||
attempts: 1,
|
||||
priority: TaskPriority.Background,
|
||||
timeout: Hour.ms,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,6 +2,7 @@ import fs from "fs-extra";
|
||||
import truncate from "lodash/truncate";
|
||||
import type { NavigationNode } from "@shared/types";
|
||||
import { FileOperationState, NotificationEventType } from "@shared/types";
|
||||
import { Hour } from "@shared/utils/time";
|
||||
import { bytesToHumanReadable } from "@shared/utils/files";
|
||||
import ExportFailureEmail from "@server/emails/templates/ExportFailureEmail";
|
||||
import ExportSuccessEmail from "@server/emails/templates/ExportSuccessEmail";
|
||||
@@ -251,6 +252,7 @@ export default abstract class ExportTask extends BaseTask<Props> {
|
||||
return {
|
||||
priority: TaskPriority.Background,
|
||||
attempts: 1,
|
||||
timeout: 24 * Hour.ms,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@ import {
|
||||
CollectionPermission,
|
||||
FileOperationState,
|
||||
} from "@shared/types";
|
||||
import { Hour } from "@shared/utils/time";
|
||||
import { CollectionValidation } from "@shared/validations";
|
||||
import attachmentCreator from "@server/commands/attachmentCreator";
|
||||
import documentCreator from "@server/commands/documentCreator";
|
||||
@@ -532,6 +533,7 @@ export default abstract class ImportTask extends BaseTask<Props> {
|
||||
return {
|
||||
priority: TaskPriority.Low,
|
||||
attempts: 1,
|
||||
timeout: 24 * Hour.ms,
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ import crypto from "node:crypto";
|
||||
import { setTimeout } from "node:timers/promises";
|
||||
import { subWeeks } from "date-fns";
|
||||
import { QueryTypes } from "sequelize";
|
||||
import { Minute } from "@shared/utils/time";
|
||||
import { Hour, Minute } from "@shared/utils/time";
|
||||
import env from "@server/env";
|
||||
import Logger from "@server/logging/Logger";
|
||||
import { TaskPriority } from "./base/BaseTask";
|
||||
@@ -467,6 +467,7 @@ export default class UpdateDocumentsPopularityScoreTask extends CronTask {
|
||||
return {
|
||||
attempts: 1,
|
||||
priority: TaskPriority.Background,
|
||||
timeout: Hour.ms,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,6 +6,7 @@ import { sequelize } from "@server/storage/database";
|
||||
import { TaskPriority } from "./base/BaseTask";
|
||||
import { CronTask, TaskInterval } from "./base/CronTask";
|
||||
import UpdateTeamAttachmentsSizeTask from "./UpdateTeamAttachmentsSizeTask";
|
||||
import { Hour } from "@shared/utils/time";
|
||||
|
||||
type Props = {
|
||||
limit: number;
|
||||
@@ -53,6 +54,7 @@ export default class UpdateTeamsAttachmentsSizeTask extends CronTask {
|
||||
return {
|
||||
attempts: 1,
|
||||
priority: TaskPriority.Background,
|
||||
timeout: Hour.ms,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
import { Sema } from "async-sema";
|
||||
import { Hour } from "@shared/utils/time";
|
||||
import Logger from "@server/logging/Logger";
|
||||
import { Attachment } from "@server/models";
|
||||
import FileStorage from "@server/storage/files";
|
||||
@@ -68,6 +69,7 @@ export default class UploadAttachmentsForImportTask extends BaseTask<Item[]> {
|
||||
return {
|
||||
attempts: 3,
|
||||
priority: TaskPriority.Normal,
|
||||
timeout: 24 * Hour.ms,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
import type { Job, JobOptions } from "bull";
|
||||
import { Minute } from "@shared/utils/time";
|
||||
import { taskQueue } from "../../";
|
||||
|
||||
export enum TaskPriority {
|
||||
@@ -8,6 +9,13 @@ export enum TaskPriority {
|
||||
High = 10,
|
||||
}
|
||||
|
||||
/**
|
||||
* Default timeout for tasks. Tasks that do not explicitly set a timeout will
|
||||
* use this value. This prevents hung tasks (e.g. waiting on a downed external
|
||||
* service) from blocking the worker indefinitely.
|
||||
*/
|
||||
const DEFAULT_TASK_TIMEOUT = 5 * Minute.ms;
|
||||
|
||||
export abstract class BaseTask<T extends Record<string, any>> {
|
||||
/**
|
||||
* Schedule this task type to be processed asynchronously by a worker.
|
||||
@@ -22,7 +30,7 @@ export abstract class BaseTask<T extends Record<string, any>> {
|
||||
name: this.constructor.name,
|
||||
props,
|
||||
},
|
||||
{ ...options, ...this.options }
|
||||
{ timeout: DEFAULT_TASK_TIMEOUT, ...options, ...this.options }
|
||||
);
|
||||
}
|
||||
|
||||
@@ -56,6 +64,7 @@ export abstract class BaseTask<T extends Record<string, any>> {
|
||||
type: "exponential",
|
||||
delay: 60 * 1000,
|
||||
},
|
||||
timeout: DEFAULT_TASK_TIMEOUT,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
"Collection permissions": "Oprávnění kolekce",
|
||||
"Share this collection": "Sdílet kolekci",
|
||||
"Import document": "Importovat dokument",
|
||||
"Uploading": "Nahrávání...",
|
||||
"Sort in sidebar": "Seřadit v bočním panelu",
|
||||
"A-Z sort": "Seřadit A-Z",
|
||||
"Z-A sort": "Seřadit Z-A",
|
||||
@@ -53,8 +54,9 @@
|
||||
"Development": "Vývoj",
|
||||
"Open document": "Otevřít dokument",
|
||||
"New draft": "Nový koncept",
|
||||
"New from template": "Nový ze šablony",
|
||||
"New nested document": "Nový vnořený dokument",
|
||||
"Nested document": "Vnořený dokument",
|
||||
"Before": "Před",
|
||||
"After": "Po",
|
||||
"Publish": "Zveřejnit",
|
||||
"Published {{ documentName }}": "{{ documentName }} byl zveřejněn",
|
||||
"Publish document": "Zveřejnit dokument",
|
||||
@@ -64,7 +66,7 @@
|
||||
"Share this document": "Sdílet dokument",
|
||||
"Download": "Stáhnout",
|
||||
"Download document": "Stáhnout dokument",
|
||||
"Download as Markdown": "Download as Markdown",
|
||||
"Download as Markdown": "Stáhnout jako Markdown",
|
||||
"Download as HTML": "Stáhnout jako HTML",
|
||||
"Download as PDF": "Stáhnout jako PDF",
|
||||
"Copy as Markdown": "Kopírovat jako Markdown",
|
||||
@@ -91,9 +93,7 @@
|
||||
"Create template": "Vytvořit šablonu",
|
||||
"Open random document": "Otevřít náhodný dokument",
|
||||
"Search documents for \"{{searchQuery}}\"": "Hledat „{{searchQuery}}“ v dokumentech",
|
||||
"Move to workspace": "Přesunout do pracovního prostoru",
|
||||
"Move": "Přesunout",
|
||||
"Move to collection": "Přesunout do kolekce",
|
||||
"Move {{ documentType }}": "Přesunout {{ documentType }}",
|
||||
"Are you sure you want to archive this document?": "Chcete dokument archivovat?",
|
||||
"Document archived": "Dokument byl archivován",
|
||||
@@ -165,6 +165,15 @@
|
||||
"New workspace": "Nový pracovní prostor",
|
||||
"Create a workspace": "Vytvořit pracovní prostor",
|
||||
"Login to workspace": "Přihlásit se do pracovního prostoru",
|
||||
"Template deleted": "Šablona byla odstraněna",
|
||||
"Deleting": "Odstraňování...",
|
||||
"Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.": "Jste si jisti? Smazání šablony <em>{{ templateName }}</em> je trvalé.",
|
||||
"Move to workspace": "Přesunout do pracovního prostoru",
|
||||
"Template moved": "Šablona byla přesunuta",
|
||||
"Couldn't move the template, try again?": "Šablonu se nepodařilo přesunout. Zkusit znovu?",
|
||||
"Move to collection": "Přesunout do kolekce",
|
||||
"Move template": "Přesunout šablonu",
|
||||
"Print template": "Vytisknout šablonu",
|
||||
"Invite people": "Pozvat uživatele",
|
||||
"Invite to workspace": "Pozvat do pracovního prostoru",
|
||||
"Promote to {{ role }}": "Povýšit na {{ role }}",
|
||||
@@ -176,6 +185,7 @@
|
||||
"Debug": "Ladění",
|
||||
"Document": "Dokument",
|
||||
"Documents": "Dokumenty",
|
||||
"Template": "Šablona",
|
||||
"Recently viewed": "Nedávno zobrazené",
|
||||
"Revision": "Revize",
|
||||
"Navigation": "Navigace",
|
||||
@@ -195,6 +205,7 @@
|
||||
"Collections are used to group documents and choose permissions": "Kolekce slouží k seskupování dokumentů a správě oprávnění.",
|
||||
"Name": "Název",
|
||||
"The default access for workspace members, you can share with more users or groups later.": "Výchozí přístup pro členy pracovního prostoru. Později můžete dokument sdílet s dalšími uživateli či skupinami.",
|
||||
"Advanced options": "Rozšířené možnosti",
|
||||
"Public document sharing": "Veřejné sdílení dokumentů",
|
||||
"Allow documents within this collection to be shared publicly on the internet.": "Povolit veřejné sdílení dokumentů z této kolekce na internetu.",
|
||||
"Commenting": "Komentování",
|
||||
@@ -205,10 +216,10 @@
|
||||
"Create": "Vytvořit",
|
||||
"Collection deleted": "Kolekce byla odstraněna",
|
||||
"I’m sure – Delete": "Ano, odstranit",
|
||||
"Deleting": "Odstraňování...",
|
||||
"Are you sure about that? Deleting the <em>{{collectionName}}</em> collection is permanent and cannot be restored, however all published documents within will be moved to the trash.": "Opravdu chcete pokračovat? Odstranění kolekce <em>{{collectionName}}</em> je trvalé a nelze jej vrátit zpět. Všechny publikované dokumenty v ní obsažené budou přesunuty do koše.",
|
||||
"Also, <em>{{collectionName}}</em> is being used as the start view – deleting it will reset the start view to the Home page.": "Kolekce <em>{{collectionName}}</em> je nastavena jako úvodní zobrazení – jejím odstraněním se jako úvodní stránka nastaví Domů.",
|
||||
"Type a command or search": "Zadejte příkaz nebo hledejte...",
|
||||
"New from template": "Nový ze šablony",
|
||||
"Choose a template": "Vybrat šablonu",
|
||||
"Are you sure you want to permanently delete this entire comment thread?": "Opravdu chcete trvale odstranit celé vlákno komentářů?",
|
||||
"Are you sure you want to permanently delete this comment?": "Opravdu chcete trvale odstranit komentář?",
|
||||
@@ -227,12 +238,6 @@
|
||||
"Deleted Collection": "Odstraněná kolekce",
|
||||
"Untitled": "Bez názvu",
|
||||
"Unpin": "Zrušit připnutí",
|
||||
"Select a location to copy": "Vyberte cílové umístění",
|
||||
"Document copied": "Dokument byl zkopírován",
|
||||
"Couldn’t copy the document, try again?": "Dokument se nepodařilo zkopírovat. Zkusit znovu?",
|
||||
"Include nested documents": "Zahrnout vnořené dokumenty",
|
||||
"Copy to <em>{{ location }}</em>": "Kopírovat do <em>{{ location }}</em>",
|
||||
"Copying": "Kopírování...",
|
||||
"Export started": "Export byl zahájen",
|
||||
"A link to your file will be sent through email soon": "Odkaz na soubor bude brzy odeslán e-mailem.",
|
||||
"Preparing your download": "Připravuje se stahování...",
|
||||
@@ -242,13 +247,24 @@
|
||||
"Include child documents": "Zahrnout podřazené dokumenty",
|
||||
"When selected, exporting the document <em>{{documentName}}</em> may take some time.": "Export dokumentu <em>{{documentName}}</em> může chvíli trvat.",
|
||||
"You will receive an email when it's complete.": "Po dokončení obdržíte e-mail.",
|
||||
"Select a location to copy": "Vyberte cílové umístění",
|
||||
"Document copied": "Dokument byl zkopírován",
|
||||
"Couldn’t copy the document, try again?": "Dokument se nepodařilo zkopírovat. Zkusit znovu?",
|
||||
"Include nested documents": "Zahrnout vnořené dokumenty",
|
||||
"Copy to <em>{{ location }}</em>": "Kopírovat do <em>{{ location }}</em>",
|
||||
"Copying": "Kopírování...",
|
||||
"Search collections & documents": "Prohledat kolekce a dokumenty",
|
||||
"Search collections": "Prohledat kolekce",
|
||||
"No results found": "Nebyly nalezeny žádné výsledky",
|
||||
"Select a location to move": "Vyberte cílové umístění",
|
||||
"Document moved": "Dokument byl přesunut",
|
||||
"Couldn’t move the document, try again?": "Dokument se nepodařilo přesunout. Zkusit znovu?",
|
||||
"Move to <em>{{ location }}</em>": "Přesunout do <em>{{ location }}</em>",
|
||||
"Couldn’t move the template, try again?": "Dokument se nepodařilo přesunout. Zkusit znovu?",
|
||||
"Document options": "Možnosti dokumentů",
|
||||
"New": "Nový",
|
||||
"Only visible to you": "Viditelné pouze pro vás",
|
||||
"Draft": "Koncept",
|
||||
"Template": "Šablona",
|
||||
"You updated": "Aktualizoval jste",
|
||||
"{{ userName }} updated": "{{ userName }} aktualizoval",
|
||||
"You deleted": "Odstranil jste",
|
||||
@@ -278,7 +294,6 @@
|
||||
"Please enter a name for the emoji": "Zadejte název emoji",
|
||||
"Please select an image file": "Vyberte soubor obrázku",
|
||||
"Emoji created successfully": "Emoji bylo úspěšně vytvořeno",
|
||||
"Uploading": "Nahrávání...",
|
||||
"Add emoji": "Přidat emoji",
|
||||
"Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.": "Nejlépe fungují čtvercové obrázky s průhledným pozadím. Příliš velké obrázky se pokusíme automaticky zmenšit.",
|
||||
"Upload an image": "Nahrát obrázek",
|
||||
@@ -467,6 +482,7 @@
|
||||
"Collapse sidebar": "Sbalit boční panel",
|
||||
"Archived collections": "Archivované kolekce",
|
||||
"New doc": "Nový dokument",
|
||||
"New nested document": "Nový vnořený dokument",
|
||||
"Empty": "Prázdné",
|
||||
"No collections": "Žádné kolekce",
|
||||
"Collapse": "Sbalit",
|
||||
@@ -493,6 +509,8 @@
|
||||
"Unstar document": "Odebrat dokument z oblíbených",
|
||||
"Star document": "Přidat dokument k oblíbeným",
|
||||
"Select a color": "Vybrat barvu",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Zvýrazněte text a pomocí prvku <1></1> přidejte zástupné symboly, které lze vyplnit při vytváření nových dokumentů.",
|
||||
"You’re editing a template": "Upravujete šablonu",
|
||||
"Template created, go ahead and customize it": "Šablona byla vytvořena, nyní ji můžete upravit.",
|
||||
"Creating a template from <em>{{titleWithDefault}}</em> is a non-destructive action – we'll make a copy of the document and turn it into a template that can be used as a starting point for new documents.": "Vytvoření šablony z <em>{{titleWithDefault}}</em> je nedestruktivní akce – vytvoříme kopii dokumentu, kterou můžete použít jako výchozí bod pro nové dokumenty.",
|
||||
"Enable other members to use the template immediately": "Povolit ostatním členům okamžité použití šablony",
|
||||
@@ -534,7 +552,7 @@
|
||||
"Keep as link": "Ponechat jako odkaz",
|
||||
"Mention": "Zmínit",
|
||||
"Embed": "Vložit",
|
||||
"Not supported": "Not supported",
|
||||
"Not supported": "Nepodporováno",
|
||||
"More options": "Další možnosti",
|
||||
"Rename": "Přejmenovat",
|
||||
"Insert after": "Vložit za",
|
||||
@@ -550,9 +568,9 @@
|
||||
"Full width": "Plná šířka",
|
||||
"Bulleted list": "Odrážkový seznam",
|
||||
"Todo list": "Seznam úkolů",
|
||||
"Show {{ count }} completed": "Show {{ count }} completed",
|
||||
"Show {{ count }} completed_plural": "Show {{ count }} completed",
|
||||
"Hide completed": "Hide completed",
|
||||
"Show {{ count }} completed": "Zobrazit {{ count }} dokončené",
|
||||
"Show {{ count }} completed_plural": "Zobrazit {{ count }} dokončených",
|
||||
"Hide completed": "Skrýt dokončené",
|
||||
"Code block": "Blok kódu",
|
||||
"Copied to clipboard": "Zkopírováno do schránky",
|
||||
"Code": "Kód",
|
||||
@@ -587,7 +605,7 @@
|
||||
"Info notice": "Informační upozornění",
|
||||
"Link": "Odkaz",
|
||||
"Highlight": "Zvýraznění",
|
||||
"Background color": "Background color",
|
||||
"Background color": "Barva pozadí",
|
||||
"Type '/' to insert": "Pro vložení stiskněte „/“",
|
||||
"Keep typing to filter": "Psaním filtrujte...",
|
||||
"Open link": "Otevřít odkaz",
|
||||
@@ -626,15 +644,16 @@
|
||||
"Outdent": "Zmenšit odsazení",
|
||||
"Video": "Video",
|
||||
"None": "Žádné",
|
||||
"Toggle block": "Toggle block",
|
||||
"Add title": "Add title",
|
||||
"Add content": "Add content",
|
||||
"Toggle block": "Přepnout blok",
|
||||
"Add title": "Přidat titulek",
|
||||
"Add content": "Přidat obsah",
|
||||
"Delete embed": "Odstranit vložený prvek",
|
||||
"Formatting controls": "Prvky formátování",
|
||||
"Distribute columns": "Rozložit sloupce",
|
||||
"Wrap text": "Wrap text",
|
||||
"Delete Emoji": "Odstranit emoji",
|
||||
"Emoji deleted": "Emoji bylo odstraněno",
|
||||
"I'm sure – Delete": "I'm sure – Delete",
|
||||
"I'm sure – Delete": "Jsem si jistý - smazat",
|
||||
"Are you sure you want to delete the <em>{{emojiName}}</em> emoji? You will no longer be able to use it in your documents or collections.": "Opravdu chcete odstranit emoji <em>{{emojiName}}</em>? V dokumentech a kolekcích jej již nebude možné používat.",
|
||||
"Group members": "Členové skupiny",
|
||||
"Edit group": "Upravit skupinu",
|
||||
@@ -644,17 +663,19 @@
|
||||
"Unsubscribed from document": "Odběr upozornění na dokument byl zrušen",
|
||||
"Unsubscribed from collection": "Odběr upozornění na kolekci byl zrušen",
|
||||
"Account": "Účet",
|
||||
"API & Apps": "API a aplikace",
|
||||
"API & Access": "API & Access",
|
||||
"Details": "Podrobnosti",
|
||||
"Authentication": "Ověřování",
|
||||
"Security": "Zabezpečení",
|
||||
"Features": "Funkce",
|
||||
"AI": "AI",
|
||||
"API Keys": "API klíče",
|
||||
"Applications": "Aplikace",
|
||||
"Shared Links": "Sdílené odkazy",
|
||||
"Import": "Importovat",
|
||||
"Install": "Instalovat",
|
||||
"Embeds": "Embeds",
|
||||
"Configure which embed providers are available in the editor.": "Configure which embed providers are available in the editor.",
|
||||
"Integrations": "Integrace",
|
||||
"Install": "Instalovat",
|
||||
"Change name": "Změnit jméno",
|
||||
"Change email": "Změnit e-mail",
|
||||
"Suspend user": "Pozastavit uživatele",
|
||||
@@ -669,7 +690,7 @@
|
||||
"Comment options": "Možnosti komentáře",
|
||||
"Enable viewer insights": "Povolit analytiku zobrazení",
|
||||
"Enable embeds": "Povolit vkládání (embeds)",
|
||||
"Emoji options": "Emoji options",
|
||||
"Emoji options": "Nastavení emoji",
|
||||
"File": "Soubor",
|
||||
"Group options": "Nastavení skupin",
|
||||
"Cancel": "Zrušit",
|
||||
@@ -685,8 +706,8 @@
|
||||
"Headings you add to the document will appear here": "Zde se zobrazí nadpisy přidané do dokumentu",
|
||||
"Contents": "Obsah",
|
||||
"Table of contents": "Obsah",
|
||||
"Template options": "Nastavení šablony",
|
||||
"User options": "Možnosti uživatele",
|
||||
"template": "šablona",
|
||||
"document": "dokument",
|
||||
"Export complete": "Export byl dokončen",
|
||||
"Export failed": "Export se nezdařil",
|
||||
@@ -774,7 +795,7 @@
|
||||
"Images are still uploading.\nAre you sure you want to discard them?": "Obrázky se stále nahrávají. Opravdu chcete akci zrušit?",
|
||||
"{{ count }} comment": "{{ count }} komentář",
|
||||
"{{ count }} comment_plural": "{{ count }} komentářů",
|
||||
"Viewed by": "Zobrazeno uživateli",
|
||||
"Viewed by": "Zobrazeno",
|
||||
"only you": "pouze vámi",
|
||||
"person": "osoba",
|
||||
"people": "lidé",
|
||||
@@ -812,23 +833,15 @@
|
||||
"Sorry, the last change could not be persisted – please reload the page": "Poslední změnu se nepodařilo uložit. Obnovte prosím stránku.",
|
||||
"{{ count }} days": "{{count}} den",
|
||||
"{{ count }} days_plural": "{{count}} dní",
|
||||
"This template will be permanently deleted in <2></2> unless restored.": "Šablona bude trvale odstraněna za <2></2>, pokud nebude obnovena.",
|
||||
"This document will be permanently deleted in <2></2> unless restored.": "Dokument bude trvale odstraněn za <2></2>, pokud nebude obnoven.",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Zvýrazněte text a pomocí prvku <1></1> přidejte zástupné symboly, které lze vyplnit při vytváření nových dokumentů.",
|
||||
"You’re editing a template": "Upravujete šablonu",
|
||||
"Deleted by {{userName}}": "Odstranil {{userName}}",
|
||||
"Observing {{ userName }}": "Sledování uživatele {{ userName }}",
|
||||
"Backlinks": "Zpětné odkazy",
|
||||
"This document is large which may affect performance": "Dokument je rozsáhlý, což může ovlivnit výkon aplikace.",
|
||||
"Are you sure you want to delete the <em>{{ documentTitle }}</em> template?": "Opravdu chcete odstranit šablonu <em>{{ documentTitle }}</em>?",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history</em>.": "Opravdu chcete pokračovat? Odstraněním dokumentu <em>{{ documentTitle }}</em> smažete i celou jeho historii.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>.": "Opravdu chcete pokračovat? Odstraněním dokumentu <em>{{ documentTitle }}</em> smažete celou jeho historii i <em>{{ any }} vnořený dokument</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>._plural": "Opravdu chcete pokračovat? Odstraněním dokumentu <em>{{ documentTitle }}</em> smažete celou jeho historii i <em>{{ any }} vnořené dokumenty</em>.",
|
||||
"If you’d like the option of referencing or restoring the {{noun}} in the future, consider archiving it instead.": "Pokud chcete mít možnost se k {{noun}} v budoucnu vrátit, zvažte místo odstranění archivaci.",
|
||||
"Select a location to move": "Vyberte cílové umístění",
|
||||
"Document moved": "Dokument byl přesunut",
|
||||
"Couldn’t move the document, try again?": "Dokument se nepodařilo přesunout. Zkusit znovu?",
|
||||
"Move to <em>{{ location }}</em>": "Přesunout do <em>{{ location }}</em>",
|
||||
"Couldn’t create the document, try again?": "Dokument se nepodařilo vytvořit. Zkusit znovu?",
|
||||
"Document permanently deleted": "Dokument byl trvale odstraněn",
|
||||
"Are you sure you want to permanently delete the <em>{{ documentTitle }}</em> document? This action is immediate and cannot be undone.": "Opravdu chcete trvale odstranit dokument <em>{{ documentTitle }}</em>? Tuto akci nelze vzít zpět.",
|
||||
@@ -885,7 +898,6 @@
|
||||
"Open this guide": "Otevřít tohoto průvodce",
|
||||
"Enter": "Enter",
|
||||
"Publish document and exit": "Zveřejnit dokument a zavřít",
|
||||
"Save document": "Uložit dokument",
|
||||
"Cancel editing": "Zrušit úpravy",
|
||||
"Collaboration": "Spolupráce",
|
||||
"Formatting": "Formátování",
|
||||
@@ -905,10 +917,10 @@
|
||||
"Outdent list item": "Zmenšit odsazení položky seznamu",
|
||||
"Move list item up": "Posunout položku seznamu nahoru",
|
||||
"Move list item down": "Posunout položku seznamu dolů",
|
||||
"Toggle blocks": "Toggle blocks",
|
||||
"Open / close": "Open / close",
|
||||
"Indent item": "Indent item",
|
||||
"Outdent item": "Outdent item",
|
||||
"Toggle blocks": "Přepnout blok",
|
||||
"Open / close": "Otevřít / zavřít",
|
||||
"Indent item": "Odsadit položku",
|
||||
"Outdent item": "Zmenšit odsazení",
|
||||
"Tables": "Tabulky",
|
||||
"Insert row": "Vložit řádek",
|
||||
"Next cell": "Další buňka",
|
||||
@@ -978,11 +990,14 @@
|
||||
"An error occurred": "Došlo k chybě",
|
||||
"The OAuth client could not be found, please check the provided client ID": "OAuth klient nebyl nalezen, zkontrolujte ID klienta.",
|
||||
"The OAuth client could not be loaded, please check the redirect URI is valid": "OAuth klienta se nepodařilo načíst, zkontrolujte platnost URI pro přesměrování.",
|
||||
"The OAuth client could not be loaded, please check your workspace subdomain is correct": "Nepodařilo se načíst OAuth klienta. Zkontrolujte, zda je subdoména vašeho pracovního prostoru správná",
|
||||
"Required OAuth parameters are missing": "Chybí požadované parametry OAuth.",
|
||||
"Authorize": "Autorizovat",
|
||||
"{{ appName }} wants to access {{ teamName }}": "{{ appName }} žádá o přístup k {{ teamName }}",
|
||||
"By <em>{{ developerName }}</em>": "Od <em>{{ developerName }}</em>",
|
||||
"{{ appName }} will be able to access your account and perform the following actions": "{{ appName }} získá přístup k účtu a bude moci provádět tyto akce:",
|
||||
"You will be redirected to a local application after authorizing.": "Po autorizaci budete přesměrováni do místní aplikace.",
|
||||
"You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.": "Po autorizaci budete přesměrováni na <em>{{ redirectUri }}</em> . Ujistěte se, že důvěřujete této URL.",
|
||||
"read": "čtení",
|
||||
"write": "zápis",
|
||||
"read and write": "čtení a zápis",
|
||||
@@ -1013,9 +1028,9 @@
|
||||
"Remove document filter": "Odebrat filtr dokumentů",
|
||||
"Any status": "Jakýkoliv stav",
|
||||
"Remove search": "Zrušit vyhledávání",
|
||||
"Relevance": "Relevance",
|
||||
"Newest": "Newest",
|
||||
"Oldest": "Oldest",
|
||||
"Relevance": "Význam",
|
||||
"Newest": "Nejnovější",
|
||||
"Oldest": "Nejstarší",
|
||||
"A → Z": "A → Z",
|
||||
"Z → A": "Z → A",
|
||||
"Any author": "Jakýkoliv autor",
|
||||
@@ -1111,16 +1126,16 @@
|
||||
"Are you sure about that? Deleting the <em>{{groupName}}</em> group will cause its members to lose access to collections and documents that it is associated with.": "Opravdu chcete pokračovat? Odstraněním skupiny <em>{{groupName}}</em> ztratí její členové přístup ke kolekcím a dokumentům, se kterými je skupina spojena.",
|
||||
"Add people to {{groupName}}": "Přidat lidi do {{groupName}}",
|
||||
"{{userName}} was removed from the group": "Uživatel {{userName}} byl ze skupiny odebrán",
|
||||
"All permissions": "All permissions",
|
||||
"All permissions": "Všechna oprávnění",
|
||||
"Group admin": "Správce skupiny",
|
||||
"Member": "Člen",
|
||||
"Add and remove members to the <em>{{groupName}}</em> group. Members of the group will have access to any collections this group has been added to.": "Spravujte členy skupiny <em>{{groupName}}</em>. Členové skupiny budou mít přístup ke všem kolekcím, do kterých je skupina zařazena.",
|
||||
"Add people": "Přidat lidi",
|
||||
"Listing members of the <em>{{groupName}}</em> group.": "Seznam členů skupiny <em>{{groupName}}</em>.",
|
||||
"Search by name": "Hledat podle jména",
|
||||
"Search members": "Search members",
|
||||
"Filter by permissions": "Filter by permissions",
|
||||
"No members matching your filters": "No members matching your filters",
|
||||
"Search members": "Hledat členy",
|
||||
"Filter by permissions": "Filtrovat podle oprávnění",
|
||||
"No members matching your filters": "Žádní členové neodpovídají vašim filtrům",
|
||||
"This group has no members.": "Skupina nemá žádné členy.",
|
||||
"{{userName}} was added to the group": "Uživatel {{userName}} byl přidán do skupiny",
|
||||
"Could not add user": "Uživatele se nepodařilo přidat",
|
||||
@@ -1156,6 +1171,8 @@
|
||||
"Last accessed": "Poslední přístup",
|
||||
"Domain": "Doména",
|
||||
"Views": "Zobrazení",
|
||||
"Visibility": "Viditelnost",
|
||||
"Updated by": "Aktualizoval",
|
||||
"All roles": "Všechny role",
|
||||
"Admins": "Správci",
|
||||
"Editors": "Editoři",
|
||||
@@ -1188,15 +1205,26 @@
|
||||
"Your workspace will be accessible at": "Pracovní prostor bude přístupný na:",
|
||||
"Choose a subdomain to enable a login page just for your team.": "Zvolte subdoménu pro vytvoření přihlašovací stránky vyhrazené týmu.",
|
||||
"This is the screen that workspace members will first see when they sign in.": "Tuto obrazovku členové pracovního prostoru uvidí jako první po přihlášení.",
|
||||
"Danger": "Nebezpečí",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "Můžete odstranit celý pracovní prostor včetně všech kolekcí, dokumentů a uživatelů.",
|
||||
"Export data": "Exportovat data",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "Celkový export může chvíli trvat, zvažte export jednotlivých dokumentů nebo kolekcí. Po zahájení exportu můžete tuto stránku opustit – po dokončení zašleme odkaz na <em>{{ userEmail }}</em>.",
|
||||
"Recent exports": "Nedávné exporty",
|
||||
"Manage optional and beta features. Changing these settings will affect the experience for all members of the workspace.": "Správa volitelných a beta funkcí. Změna těchto nastavení ovlivní prostředí všech členů pracovního prostoru.",
|
||||
"Separate editing": "Oddělený režim úprav",
|
||||
"When enabled documents have a separate editing mode by default instead of being always editable. This setting can be overridden by user preferences.": "Pokud je funkce povolena, dokumenty mají samostatný režim úprav namísto přímé editace. Nastavení lze změnit v předvolbách uživatele.",
|
||||
"When enabled team members can add comments to documents.": "Pokud je funkce povolena, členové týmu mohou k dokumentům přidávat komentáře.",
|
||||
"Danger": "Nebezpečí",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "Můžete odstranit celý pracovní prostor včetně všech kolekcí, dokumentů a uživatelů.",
|
||||
"Enabled": "Enabled",
|
||||
"Allow supported providers to be inserted as interactive embeds in documents.": "Allow supported providers to be inserted as interactive embeds in documents.",
|
||||
"Providers": "Providers",
|
||||
"Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.": "Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.",
|
||||
"All providers": "All providers",
|
||||
"Export data": "Exportovat data",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "Celkový export může chvíli trvat, zvažte export jednotlivých dokumentů nebo kolekcí. Po zahájení exportu můžete tuto stránku opustit – po dokončení zašleme odkaz na <em>{{ userEmail }}</em>.",
|
||||
"Recent exports": "Nedávné exporty",
|
||||
"Manage AI and integration features for your workspace.": "Spravujte AI a integrační funkce pro váš pracovní prostor.",
|
||||
"MCP server": "MCP server",
|
||||
"Allow members to connect to this workspace with MCP to read and write data.": "Umožnit členům tohoto pracovnímu prostoru číst a zapisovat data pomocí MCP.",
|
||||
"Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.": "Použijte následující koncový bod pro připojení k MCP serveru z vaší aplikace. Zjistěte více o nastavení v <a>dokumentaci</a>.",
|
||||
"Copy URL": "Kopírovat URL",
|
||||
"AI answers": "AI odpovědi",
|
||||
"Use AI to get direct answers to questions in search. This feature requires a paid license.": "Používejte AI pro přímé odpovědi ve vyhledávání. Tato funkce vyžaduje placenou licenci.",
|
||||
"Create a group": "Vytvořit skupinu",
|
||||
"Could not load groups": "Skupiny se nepodařilo načíst",
|
||||
"New group": "Nová skupina",
|
||||
@@ -1243,8 +1271,8 @@
|
||||
"Manage when and where you receive email notifications.": "Správa e-mailových upozornění.",
|
||||
"The email integration is currently disabled. Please set the associated environment variables and restart the server to enable notifications.": "E-mailová integrace je deaktivována. Pro povolení upozornění nastavte proměnné prostředí a restartujte server.",
|
||||
"Preferences saved": "Předvolby byly uloženy",
|
||||
"Unread count": "Unread count",
|
||||
"Unread indicator": "Unread indicator",
|
||||
"Unread count": "Počet nepřečtených",
|
||||
"Unread indicator": "Indikátor nepřečtených zpráv",
|
||||
"Delete account": "Odstranit účet",
|
||||
"Manage settings that affect your personal experience.": "Spravujte osobní nastavení.",
|
||||
"Language": "Jazyk",
|
||||
@@ -1259,8 +1287,8 @@
|
||||
"Automatically return to the document you were last viewing when the app is re-opened.": "Při otevření aplikace se automaticky vrátit k naposledy zobrazenému dokumentu.",
|
||||
"Smart text replacements": "Chytré nahrazování textu",
|
||||
"Auto-format text by replacing shortcuts with symbols, dashes, smart quotes, and other typographical elements.": "Automatické formátování textu (nahrazování zkratek symboly, pomlčkami, chytrými uvozovkami atd.).",
|
||||
"Notification badge": "Notification badge",
|
||||
"Choose how unread notifications are indicated on the app icon.": "Choose how unread notifications are indicated on the app icon.",
|
||||
"Notification badge": "Značky oznámení",
|
||||
"Choose how unread notifications are indicated on the app icon.": "Vyberte si, jak se budou zobrazí nepřečtená oznámení v ikoně aplikace.",
|
||||
"You may delete your account at any time, note that this is unrecoverable": "Účet můžete kdykoli odstranit. Tuto akci nelze vrátit zpět.",
|
||||
"Profile saved": "Profil byl uložen",
|
||||
"Profile picture updated": "Profilový obrázek byl aktualizován",
|
||||
@@ -1288,8 +1316,6 @@
|
||||
"When enabled, viewers can see download options for documents": "Je-li povoleno, uvidí možnosti stažení dokumentu i prohlížející.",
|
||||
"Users can delete account": "Uživatelé mohou odstranit účet",
|
||||
"When enabled, users can delete their own account from the workspace": "Je-li povoleno, mohou uživatelé sami odstranit svůj účet z pracovního prostoru.",
|
||||
"Rich service embeds": "Rozšířené vkládání služeb",
|
||||
"Links to supported services are shown as rich embeds within your documents": "Odkazy na podporované služby se v dokumentech zobrazují jako rozšířené náhledy.",
|
||||
"Email address visibility": "Viditelnost e-mailové adresy",
|
||||
"Controls who can see user email addresses in the workspace": "Určuje, kdo uvidí e-mailové adresy uživatelů v pracovním prostoru.",
|
||||
"Collection creation": "Vytváření kolekcí",
|
||||
@@ -1300,9 +1326,10 @@
|
||||
"Sharing is currently disabled.": "Sdílení je momentálně zakázáno.",
|
||||
"You can globally enable and disable public document sharing in the <em>security settings</em>.": "Veřejné sdílení dokumentů můžete zapnout nebo vypnout v <em>nastavení zabezpečení</em>.",
|
||||
"Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.": "Níže je seznam sdílených dokumentů. Ke verzi pro čtení má přístup kdokoli s odkazem, dokud jej neodeberete.",
|
||||
"You can create templates to help your team create consistent and accurate documentation.": "Pomocí šablon zajistíte, že dokumentace týmu bude jednotná a přesná.",
|
||||
"Alphabetical": "Abecedně",
|
||||
"There are no templates just yet.": "Zatím nejsou k dispozici žádné šablony.",
|
||||
"A template must have content": "Šablona musí mít obsah",
|
||||
"Could not load templates": "Šablony se nepodařilo načíst",
|
||||
"Templates help your team create consistent and accurate documentation.": "Díky šablonám bude dokumentace vašeho týmu jednotná a přesná.",
|
||||
"No templates have been created yet": "Zatím nebyly vytvořeny žádné šablony",
|
||||
"{{ teamName }} is using {{ appName }} to share documents, please login to continue.": "Tým {{ teamName }} používá ke sdílení dokumentů aplikaci {{ appName }}. Pro pokračování se prosím přihlaste.",
|
||||
"A confirmation code has been sent to your email address, please enter the code below to permanently destroy this workspace.": "Na e-mail byl odeslán potvrzovací kód. Zadejte jej níže pro trvalé odstranění pracovního prostoru.",
|
||||
"Confirmation code": "Potvrzovací kód",
|
||||
@@ -1363,7 +1390,6 @@
|
||||
"New Attribute": "Nový atribut",
|
||||
"Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.": "Atributy umožňují ukládat u dokumentů doplňková data, jako jsou vlastní vlastnosti, metadata nebo jiné strukturované informace společné pro více dokumentů.",
|
||||
"Custom domain": "Vlastní doména",
|
||||
"AI answers": "AI odpovědi",
|
||||
"Use AI to directly answer searched questions using content in your workspace.": "Využívejte AI k přímému odpovídání na dotazy na základě obsahu v pracovním prostoru.",
|
||||
"API access": "Přístup k API",
|
||||
"Allow members to create API keys for programmatic access": "Povolit členům vytvářet API klíče pro programový přístup",
|
||||
@@ -1413,6 +1439,27 @@
|
||||
"Enabled by {{integrationCreatedBy}}": "Povolil {{integrationCreatedBy}}",
|
||||
"Disconnecting will prevent previewing GitHub links from this organization in documents. Are you sure?": "Odpojením přijdete o náhledy GitHub odkazů z této organizace v dokumentech. Opravdu?",
|
||||
"The GitHub integration is currently disabled. Please set the associated environment variables and restart the server to enable the integration.": "Integrace s GitHubem je deaktivována. Pro její aktivaci nastavte proměnné prostředí a restartujte server.",
|
||||
"Connect GitLab": "Connect GitLab",
|
||||
"Enter the details for your GitLab instance.": "Enter the details for your GitLab instance.",
|
||||
"GitLab URL": "GitLab URL",
|
||||
"URL must start with https": "URL must start with https",
|
||||
"Client ID": "Client ID",
|
||||
"OAuth application ID": "OAuth application ID",
|
||||
"Client Secret": "Client Secret",
|
||||
"OAuth application secret": "OAuth application secret",
|
||||
"Connecting": "Connecting",
|
||||
"Choose which GitLab instance to connect to.": "Choose which GitLab instance to connect to.",
|
||||
"GitLab Cloud": "GitLab Cloud",
|
||||
"Connect to your account on gitlab.com": "Connect to your account on gitlab.com",
|
||||
"GitLab Cloud credentials are not configured": "GitLab Cloud credentials are not configured",
|
||||
"Self-managed": "Self-managed",
|
||||
"Connect to a custom GitLab installation": "Connect to a custom GitLab installation",
|
||||
"You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?": "You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?",
|
||||
"The GitLab account is already connected to this workspace.": "The GitLab account is already connected to this workspace.",
|
||||
"Something went wrong while authenticating your request. Please try again.": "Something went wrong while authenticating your request. Please try again.",
|
||||
"The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.": "The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.",
|
||||
"Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.": "Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.",
|
||||
"Disconnecting will prevent previewing links from GitLab in documents. Are you sure?": "Disconnecting will prevent previewing links from GitLab in documents. Are you sure?",
|
||||
"Google Analytics": "Google Analytics",
|
||||
"Add a Google Analytics 4 measurement ID to send document views and analytics from the workspace to your own Google Analytics account.": "Přidejte ID měření Google Analytics 4 pro odesílání dat o zobrazení dokumentů do účtu Google Analytics.",
|
||||
"Measurement ID": "ID měření",
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
"Collection permissions": "Samlingstilladelser",
|
||||
"Share this collection": "Del denne samling",
|
||||
"Import document": "Importer dokument",
|
||||
"Uploading": "Uploader",
|
||||
"Sort in sidebar": "Sort in sidebar",
|
||||
"A-Z sort": "A-Z sortering",
|
||||
"Z-A sort": "Z-A sortering",
|
||||
@@ -53,8 +54,9 @@
|
||||
"Development": "Udvikling",
|
||||
"Open document": "Åben dokument",
|
||||
"New draft": "Ny kladde",
|
||||
"New from template": "Ny fra skabelon",
|
||||
"New nested document": "Nyt indlejret dokument",
|
||||
"Nested document": "Nested document",
|
||||
"Before": "Before",
|
||||
"After": "After",
|
||||
"Publish": "Udgive",
|
||||
"Published {{ documentName }}": "Publicerede {{ documentName }}",
|
||||
"Publish document": "Udgiv dokument",
|
||||
@@ -91,9 +93,7 @@
|
||||
"Create template": "Opret skabelon",
|
||||
"Open random document": "Åbn tilfældigt dokument",
|
||||
"Search documents for \"{{searchQuery}}\"": "Søg i dokumenter efter \"{{searchQuery}}\"",
|
||||
"Move to workspace": "Flyt til arbejdsområde",
|
||||
"Move": "Flyt",
|
||||
"Move to collection": "Flyt til samling",
|
||||
"Move {{ documentType }}": "Flyt {{ documentType }}",
|
||||
"Are you sure you want to archive this document?": "Er du sikker på, at du vil arkivere dette dokument?",
|
||||
"Document archived": "Dokument arkiveret",
|
||||
@@ -165,6 +165,15 @@
|
||||
"New workspace": "Nyt arbejdsområde",
|
||||
"Create a workspace": "Opret et arbejdsområde",
|
||||
"Login to workspace": "Log ind på arbejdsområdet",
|
||||
"Template deleted": "Template deleted",
|
||||
"Deleting": "Sletter",
|
||||
"Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.": "Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.",
|
||||
"Move to workspace": "Flyt til arbejdsområde",
|
||||
"Template moved": "Template moved",
|
||||
"Couldn't move the template, try again?": "Couldn't move the template, try again?",
|
||||
"Move to collection": "Flyt til samling",
|
||||
"Move template": "Move template",
|
||||
"Print template": "Print template",
|
||||
"Invite people": "Invitér personer",
|
||||
"Invite to workspace": "Inviter til arbejdsområde",
|
||||
"Promote to {{ role }}": "Fremme til {{ role }}",
|
||||
@@ -176,6 +185,7 @@
|
||||
"Debug": "Fejlsøgning",
|
||||
"Document": "Dokument",
|
||||
"Documents": "Dokumenter",
|
||||
"Template": "Skabelon",
|
||||
"Recently viewed": "Set for nyligt",
|
||||
"Revision": "Revision",
|
||||
"Navigation": "Navigation",
|
||||
@@ -195,6 +205,7 @@
|
||||
"Collections are used to group documents and choose permissions": "Samlinger bruges til at gruppere dokumenter og vælge tilladelser",
|
||||
"Name": "Navn",
|
||||
"The default access for workspace members, you can share with more users or groups later.": "Standard adgang for arbejdsområdets medlemmer, du kan dele med flere brugere eller grupper senere.",
|
||||
"Advanced options": "Advanced options",
|
||||
"Public document sharing": "Public document sharing",
|
||||
"Allow documents within this collection to be shared publicly on the internet.": "Tillad at dokumenter i denne samling kan deles offentligt på internettet.",
|
||||
"Commenting": "Commenting",
|
||||
@@ -205,10 +216,10 @@
|
||||
"Create": "Opret",
|
||||
"Collection deleted": "Samling slettet",
|
||||
"I’m sure – Delete": "Jeg er sikker – Slet",
|
||||
"Deleting": "Sletter",
|
||||
"Are you sure about that? Deleting the <em>{{collectionName}}</em> collection is permanent and cannot be restored, however all published documents within will be moved to the trash.": "Er du sikker på dette? Sletning af <em>{{collectionName}}</em> samlingen er permanent og kan ikke gendannes, dog vil alle offentliggjorte dokumenter blive flyttet til papirkurven.",
|
||||
"Also, <em>{{collectionName}}</em> is being used as the start view – deleting it will reset the start view to the Home page.": "<em>{{collectionName}}</em> bruges som startvisning – sletning det vil nulstille startvisningen til startsiden.",
|
||||
"Type a command or search": "Indtast en kommando eller søg",
|
||||
"New from template": "Ny fra skabelon",
|
||||
"Choose a template": "Vælg en skabelon",
|
||||
"Are you sure you want to permanently delete this entire comment thread?": "Er du sikker på, at du vil slette hele denne kommentartråd?",
|
||||
"Are you sure you want to permanently delete this comment?": "Sikker på, at denne kommentar skal slettes permanent?",
|
||||
@@ -227,12 +238,6 @@
|
||||
"Deleted Collection": "Slettet samling",
|
||||
"Untitled": "Unavngivet",
|
||||
"Unpin": "Frigør",
|
||||
"Select a location to copy": "Vælg en placering at kopiere",
|
||||
"Document copied": "Dokument kopieret",
|
||||
"Couldn’t copy the document, try again?": "Kunne ikke kopiere dokumentet, prøv igen?",
|
||||
"Include nested documents": "Inkludér indlejrede dokumenter",
|
||||
"Copy to <em>{{ location }}</em>": "Kopiér til <em>{{ location }}</em>",
|
||||
"Copying": "Copying",
|
||||
"Export started": "Eksport påbegyndt",
|
||||
"A link to your file will be sent through email soon": "A link to your file will be sent through email soon",
|
||||
"Preparing your download": "Preparing your download",
|
||||
@@ -242,13 +247,24 @@
|
||||
"Include child documents": "Include child documents",
|
||||
"When selected, exporting the document <em>{{documentName}}</em> may take some time.": "When selected, exporting the document <em>{{documentName}}</em> may take some time.",
|
||||
"You will receive an email when it's complete.": "Du vil modtage en e-mail, når det er færdiggjort.",
|
||||
"Select a location to copy": "Vælg en placering at kopiere",
|
||||
"Document copied": "Dokument kopieret",
|
||||
"Couldn’t copy the document, try again?": "Kunne ikke kopiere dokumentet, prøv igen?",
|
||||
"Include nested documents": "Inkludér indlejrede dokumenter",
|
||||
"Copy to <em>{{ location }}</em>": "Kopiér til <em>{{ location }}</em>",
|
||||
"Copying": "Copying",
|
||||
"Search collections & documents": "Søg i samlinger og dokumenter",
|
||||
"Search collections": "Search collections",
|
||||
"No results found": "Ingen resultater fundet",
|
||||
"Select a location to move": "Select a location to move",
|
||||
"Document moved": "Document moved",
|
||||
"Couldn’t move the document, try again?": "Couldn’t move the document, try again?",
|
||||
"Move to <em>{{ location }}</em>": "Move to <em>{{ location }}</em>",
|
||||
"Couldn’t move the template, try again?": "Couldn’t move the template, try again?",
|
||||
"Document options": "Dokumentindstillinger",
|
||||
"New": "Ny",
|
||||
"Only visible to you": "Kun synlig for dig",
|
||||
"Draft": "Udkast",
|
||||
"Template": "Skabelon",
|
||||
"You updated": "Du opdaterede",
|
||||
"{{ userName }} updated": "{{ userName }} opdaterede",
|
||||
"You deleted": "Du slettede",
|
||||
@@ -278,7 +294,6 @@
|
||||
"Please enter a name for the emoji": "Indtast et navn til emojien",
|
||||
"Please select an image file": "Vælg venligst en billedfil",
|
||||
"Emoji created successfully": "Emoji oprettet",
|
||||
"Uploading": "Uploader",
|
||||
"Add emoji": "Tilføj emoji",
|
||||
"Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.": "Firkantede billeder med gennemsigtige baggrunde fungerer bedst. Hvis dit billede er for stort, vil vi forsøge at ændre størrelsen på det for dig.",
|
||||
"Upload an image": "Upload et billede",
|
||||
@@ -467,6 +482,7 @@
|
||||
"Collapse sidebar": "Skjul sidepanel",
|
||||
"Archived collections": "Arkiverede samlinger",
|
||||
"New doc": "Nyt dokument",
|
||||
"New nested document": "Nyt indlejret dokument",
|
||||
"Empty": "Tom",
|
||||
"No collections": "Ingen samlinger",
|
||||
"Collapse": "Skjul",
|
||||
@@ -493,6 +509,8 @@
|
||||
"Unstar document": "Unstar document",
|
||||
"Star document": "Star document",
|
||||
"Select a color": "Vælg en farve",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents",
|
||||
"You’re editing a template": "You’re editing a template",
|
||||
"Template created, go ahead and customize it": "Skabelon oprettet. Gør med den hvad du vil",
|
||||
"Creating a template from <em>{{titleWithDefault}}</em> is a non-destructive action – we'll make a copy of the document and turn it into a template that can be used as a starting point for new documents.": "Oprettelse af en skabelon fra <em>{{titleWithDefault}}</em> er en ikke-destruktiv handling – en kopi af dokumentet vil blive lavet til en skabelon, der kan bruges som udgangspunkt for nye dokumenter.",
|
||||
"Enable other members to use the template immediately": "Tillad andre medlemmer at bruge skabelonen med det samme",
|
||||
@@ -632,6 +650,7 @@
|
||||
"Delete embed": "Delete embed",
|
||||
"Formatting controls": "Formatting controls",
|
||||
"Distribute columns": "Distribute columns",
|
||||
"Wrap text": "Wrap text",
|
||||
"Delete Emoji": "Delete Emoji",
|
||||
"Emoji deleted": "Emoji deleted",
|
||||
"I'm sure – Delete": "I'm sure – Delete",
|
||||
@@ -644,17 +663,19 @@
|
||||
"Unsubscribed from document": "Unsubscribed from document",
|
||||
"Unsubscribed from collection": "Unsubscribed from collection",
|
||||
"Account": "Account",
|
||||
"API & Apps": "API & Apps",
|
||||
"API & Access": "API & Access",
|
||||
"Details": "Details",
|
||||
"Authentication": "Authentication",
|
||||
"Security": "Security",
|
||||
"Features": "Features",
|
||||
"AI": "AI",
|
||||
"API Keys": "API Keys",
|
||||
"Applications": "Applications",
|
||||
"Shared Links": "Shared Links",
|
||||
"Import": "Import",
|
||||
"Install": "Install",
|
||||
"Embeds": "Embeds",
|
||||
"Configure which embed providers are available in the editor.": "Configure which embed providers are available in the editor.",
|
||||
"Integrations": "Integrations",
|
||||
"Install": "Install",
|
||||
"Change name": "Change name",
|
||||
"Change email": "Change email",
|
||||
"Suspend user": "Suspend user",
|
||||
@@ -685,8 +706,8 @@
|
||||
"Headings you add to the document will appear here": "Headings you add to the document will appear here",
|
||||
"Contents": "Contents",
|
||||
"Table of contents": "Table of contents",
|
||||
"Template options": "Template options",
|
||||
"User options": "User options",
|
||||
"template": "template",
|
||||
"document": "document",
|
||||
"Export complete": "Export complete",
|
||||
"Export failed": "Export failed",
|
||||
@@ -812,23 +833,15 @@
|
||||
"Sorry, the last change could not be persisted – please reload the page": "Sorry, the last change could not be persisted – please reload the page",
|
||||
"{{ count }} days": "{{ count }} day",
|
||||
"{{ count }} days_plural": "{{ count }} days",
|
||||
"This template will be permanently deleted in <2></2> unless restored.": "This template will be permanently deleted in <2></2> unless restored.",
|
||||
"This document will be permanently deleted in <2></2> unless restored.": "This document will be permanently deleted in <2></2> unless restored.",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents",
|
||||
"You’re editing a template": "You’re editing a template",
|
||||
"Deleted by {{userName}}": "Deleted by {{userName}}",
|
||||
"Observing {{ userName }}": "Observing {{ userName }}",
|
||||
"Backlinks": "Backlinks",
|
||||
"This document is large which may affect performance": "This document is large which may affect performance",
|
||||
"Are you sure you want to delete the <em>{{ documentTitle }}</em> template?": "Are you sure you want to delete the <em>{{ documentTitle }}</em> template?",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history</em>.": "Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>.": "Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>._plural": "Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested documents</em>.",
|
||||
"If you’d like the option of referencing or restoring the {{noun}} in the future, consider archiving it instead.": "If you’d like the option of referencing or restoring the {{noun}} in the future, consider archiving it instead.",
|
||||
"Select a location to move": "Select a location to move",
|
||||
"Document moved": "Document moved",
|
||||
"Couldn’t move the document, try again?": "Couldn’t move the document, try again?",
|
||||
"Move to <em>{{ location }}</em>": "Move to <em>{{ location }}</em>",
|
||||
"Couldn’t create the document, try again?": "Couldn’t create the document, try again?",
|
||||
"Document permanently deleted": "Document permanently deleted",
|
||||
"Are you sure you want to permanently delete the <em>{{ documentTitle }}</em> document? This action is immediate and cannot be undone.": "Are you sure you want to permanently delete the <em>{{ documentTitle }}</em> document? This action is immediate and cannot be undone.",
|
||||
@@ -885,7 +898,6 @@
|
||||
"Open this guide": "Open this guide",
|
||||
"Enter": "Enter",
|
||||
"Publish document and exit": "Publish document and exit",
|
||||
"Save document": "Save document",
|
||||
"Cancel editing": "Cancel editing",
|
||||
"Collaboration": "Collaboration",
|
||||
"Formatting": "Formatting",
|
||||
@@ -978,11 +990,14 @@
|
||||
"An error occurred": "An error occurred",
|
||||
"The OAuth client could not be found, please check the provided client ID": "The OAuth client could not be found, please check the provided client ID",
|
||||
"The OAuth client could not be loaded, please check the redirect URI is valid": "The OAuth client could not be loaded, please check the redirect URI is valid",
|
||||
"The OAuth client could not be loaded, please check your workspace subdomain is correct": "The OAuth client could not be loaded, please check your workspace subdomain is correct",
|
||||
"Required OAuth parameters are missing": "Required OAuth parameters are missing",
|
||||
"Authorize": "Authorize",
|
||||
"{{ appName }} wants to access {{ teamName }}": "{{ appName }} wants to access {{ teamName }}",
|
||||
"By <em>{{ developerName }}</em>": "By <em>{{ developerName }}</em>",
|
||||
"{{ appName }} will be able to access your account and perform the following actions": "{{ appName }} will be able to access your account and perform the following actions",
|
||||
"You will be redirected to a local application after authorizing.": "You will be redirected to a local application after authorizing.",
|
||||
"You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.": "You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.",
|
||||
"read": "read",
|
||||
"write": "write",
|
||||
"read and write": "read and write",
|
||||
@@ -1156,6 +1171,8 @@
|
||||
"Last accessed": "Last accessed",
|
||||
"Domain": "Domain",
|
||||
"Views": "Views",
|
||||
"Visibility": "Visibility",
|
||||
"Updated by": "Updated by",
|
||||
"All roles": "All roles",
|
||||
"Admins": "Admins",
|
||||
"Editors": "Editors",
|
||||
@@ -1188,15 +1205,26 @@
|
||||
"Your workspace will be accessible at": "Your workspace will be accessible at",
|
||||
"Choose a subdomain to enable a login page just for your team.": "Choose a subdomain to enable a login page just for your team.",
|
||||
"This is the screen that workspace members will first see when they sign in.": "This is the screen that workspace members will first see when they sign in.",
|
||||
"Danger": "Danger",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "You can delete this entire workspace including collections, documents, and users.",
|
||||
"Export data": "Export data",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.",
|
||||
"Recent exports": "Recent exports",
|
||||
"Manage optional and beta features. Changing these settings will affect the experience for all members of the workspace.": "Manage optional and beta features. Changing these settings will affect the experience for all members of the workspace.",
|
||||
"Separate editing": "Separate editing",
|
||||
"When enabled documents have a separate editing mode by default instead of being always editable. This setting can be overridden by user preferences.": "When enabled documents have a separate editing mode by default instead of being always editable. This setting can be overridden by user preferences.",
|
||||
"When enabled team members can add comments to documents.": "When enabled team members can add comments to documents.",
|
||||
"Danger": "Danger",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "You can delete this entire workspace including collections, documents, and users.",
|
||||
"Enabled": "Enabled",
|
||||
"Allow supported providers to be inserted as interactive embeds in documents.": "Allow supported providers to be inserted as interactive embeds in documents.",
|
||||
"Providers": "Providers",
|
||||
"Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.": "Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.",
|
||||
"All providers": "All providers",
|
||||
"Export data": "Export data",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.",
|
||||
"Recent exports": "Recent exports",
|
||||
"Manage AI and integration features for your workspace.": "Manage AI and integration features for your workspace.",
|
||||
"MCP server": "MCP server",
|
||||
"Allow members to connect to this workspace with MCP to read and write data.": "Allow members to connect to this workspace with MCP to read and write data.",
|
||||
"Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.": "Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.",
|
||||
"Copy URL": "Copy URL",
|
||||
"AI answers": "AI-Svar",
|
||||
"Use AI to get direct answers to questions in search. This feature requires a paid license.": "Use AI to get direct answers to questions in search. This feature requires a paid license.",
|
||||
"Create a group": "Create a group",
|
||||
"Could not load groups": "Could not load groups",
|
||||
"New group": "New group",
|
||||
@@ -1288,8 +1316,6 @@
|
||||
"When enabled, viewers can see download options for documents": "Når aktiveret, kan læsere se download-muligheder for dokumenter",
|
||||
"Users can delete account": "Brugere kan slette konto",
|
||||
"When enabled, users can delete their own account from the workspace": "Når aktiveret, kan brugere slette deres egen konto fra arbejdsområdet",
|
||||
"Rich service embeds": "Rig service indlejringer",
|
||||
"Links to supported services are shown as rich embeds within your documents": "Links til understøttede tjenester vises som rige indlejringer i dine dokumenter",
|
||||
"Email address visibility": "Email address visibility",
|
||||
"Controls who can see user email addresses in the workspace": "Controls who can see user email addresses in the workspace",
|
||||
"Collection creation": "Oprettelse af samlinger",
|
||||
@@ -1300,9 +1326,10 @@
|
||||
"Sharing is currently disabled.": "Delinger er i øjeblikket deaktiveret",
|
||||
"You can globally enable and disable public document sharing in the <em>security settings</em>.": "Du kan globalt aktivere og deaktivere offentlig dokumentdeling i <em>sikkerhedsindstillinger</em>.",
|
||||
"Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.": "Dokumenter, der er blevet delt, er vist nedenfor. Enhver, der har det offentlige link, kan få adgang til en skrivebeskyttet version af dokumentet, indtil linket er blevet tilbagekaldt.",
|
||||
"You can create templates to help your team create consistent and accurate documentation.": "Du kan oprette skabeloner for at hjælpe dit team med at skabe ensartet og præcis dokumentation.",
|
||||
"Alphabetical": "Alfabetisk",
|
||||
"There are no templates just yet.": "Der er ingen skabeloner endnu.",
|
||||
"A template must have content": "A template must have content",
|
||||
"Could not load templates": "Could not load templates",
|
||||
"Templates help your team create consistent and accurate documentation.": "Templates help your team create consistent and accurate documentation.",
|
||||
"No templates have been created yet": "No templates have been created yet",
|
||||
"{{ teamName }} is using {{ appName }} to share documents, please login to continue.": "{{ teamName }} bruger {{ appName }} til at dele dokumenter, log venligst ind for at fortsætte.",
|
||||
"A confirmation code has been sent to your email address, please enter the code below to permanently destroy this workspace.": "En bekræftelseskode er blevet sendt til din e-mailadresse, angiv koden nedenfor for permanent at ødelægge dette arbejdsområde.",
|
||||
"Confirmation code": "Bekræftelseskode",
|
||||
@@ -1363,7 +1390,6 @@
|
||||
"New Attribute": "Ny Egenskab",
|
||||
"Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.": "Egenskaber giver dig mulighed for at definere data, der skal lagres sammen med dine dokumenter. De kan bruges til at gemme brugerdefinerede egenskaber, metadata, eller andre strukturerede oplysninger, der er fælles på tværs af dokumenter.",
|
||||
"Custom domain": "Brugerdefineret domæne",
|
||||
"AI answers": "AI-Svar",
|
||||
"Use AI to directly answer searched questions using content in your workspace.": "Brug AI til at svare direkte på søgte spørgsmål ved hjælp af indhold i dit arbejdsområde.",
|
||||
"API access": "API adgang",
|
||||
"Allow members to create API keys for programmatic access": "Tillad medlemmer at oprette API-nøgler til programmatisk adgang",
|
||||
@@ -1413,6 +1439,27 @@
|
||||
"Enabled by {{integrationCreatedBy}}": "Aktiveret af {{integrationCreatedBy}}",
|
||||
"Disconnecting will prevent previewing GitHub links from this organization in documents. Are you sure?": "Afbrydelse af forbindelsen vil forhindre forhåndsvisning af GitHub links fra denne organisation i dokumenter. Er du sikker?",
|
||||
"The GitHub integration is currently disabled. Please set the associated environment variables and restart the server to enable the integration.": "GitHub-integrationen er i øjeblikket deaktiveret. Indstil de tilknyttede miljøvariabler og genstart serveren for at aktivere integrationen.",
|
||||
"Connect GitLab": "Connect GitLab",
|
||||
"Enter the details for your GitLab instance.": "Enter the details for your GitLab instance.",
|
||||
"GitLab URL": "GitLab URL",
|
||||
"URL must start with https": "URL must start with https",
|
||||
"Client ID": "Client ID",
|
||||
"OAuth application ID": "OAuth application ID",
|
||||
"Client Secret": "Client Secret",
|
||||
"OAuth application secret": "OAuth application secret",
|
||||
"Connecting": "Connecting",
|
||||
"Choose which GitLab instance to connect to.": "Choose which GitLab instance to connect to.",
|
||||
"GitLab Cloud": "GitLab Cloud",
|
||||
"Connect to your account on gitlab.com": "Connect to your account on gitlab.com",
|
||||
"GitLab Cloud credentials are not configured": "GitLab Cloud credentials are not configured",
|
||||
"Self-managed": "Self-managed",
|
||||
"Connect to a custom GitLab installation": "Connect to a custom GitLab installation",
|
||||
"You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?": "You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?",
|
||||
"The GitLab account is already connected to this workspace.": "The GitLab account is already connected to this workspace.",
|
||||
"Something went wrong while authenticating your request. Please try again.": "Something went wrong while authenticating your request. Please try again.",
|
||||
"The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.": "The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.",
|
||||
"Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.": "Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.",
|
||||
"Disconnecting will prevent previewing links from GitLab in documents. Are you sure?": "Disconnecting will prevent previewing links from GitLab in documents. Are you sure?",
|
||||
"Google Analytics": "Google Analytics",
|
||||
"Add a Google Analytics 4 measurement ID to send document views and analytics from the workspace to your own Google Analytics account.": "Tilføj et Google Analytics 4-målings-id for at sende dokumentvisninger og analytik fra arbejdsområdet til din Google Analytics konto.",
|
||||
"Measurement ID": "Målings-ID",
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
"Collection permissions": "Berechtigungen für Sammlungen",
|
||||
"Share this collection": "Diese Sammlung teilen",
|
||||
"Import document": "Dokument importieren",
|
||||
"Uploading": "Wird hochgeladen",
|
||||
"Sort in sidebar": "Seitenleiste sortieren",
|
||||
"A-Z sort": "A-Z-Sortierung",
|
||||
"Z-A sort": "Z-A-Sortierung",
|
||||
@@ -53,8 +54,9 @@
|
||||
"Development": "Entwicklung",
|
||||
"Open document": "Dokument öffnen",
|
||||
"New draft": "Neuer Entwurf",
|
||||
"New from template": "Neu aus Vorlage",
|
||||
"New nested document": "Neues Unterdokument",
|
||||
"Nested document": "Unterdokument",
|
||||
"Before": "Vorher",
|
||||
"After": "Nachher",
|
||||
"Publish": "Veröffentlichen",
|
||||
"Published {{ documentName }}": "{{ documentName }} wurde veröffentlicht",
|
||||
"Publish document": "Dokument veröffentlichen",
|
||||
@@ -91,9 +93,7 @@
|
||||
"Create template": "Vorlage erstellen",
|
||||
"Open random document": "Zufälliges Dokument öffnen",
|
||||
"Search documents for \"{{searchQuery}}\"": "Suche Dokumente für \"{{searchQuery}}\"",
|
||||
"Move to workspace": "In Arbeitsbereich verschieben",
|
||||
"Move": "Verschieben",
|
||||
"Move to collection": "Zu Sammlung verschieben",
|
||||
"Move {{ documentType }}": "Verschiebe {{ documentType }}",
|
||||
"Are you sure you want to archive this document?": "Sind Sie sicher, dass Sie dieses Dokument archivieren möchten?",
|
||||
"Document archived": "Dokument archiviert",
|
||||
@@ -165,6 +165,15 @@
|
||||
"New workspace": "Neuer Arbeitsbereich",
|
||||
"Create a workspace": "Arbeitsbereich erstellen",
|
||||
"Login to workspace": "Im Arbeitsbereich anmelden",
|
||||
"Template deleted": "Vorlage gelöscht",
|
||||
"Deleting": "Wird gelöscht",
|
||||
"Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.": "Sind Sie sicher? Die <em>{{ templateName }}</em> Vorlage wird dauerhaft gelöscht.",
|
||||
"Move to workspace": "In Arbeitsbereich verschieben",
|
||||
"Template moved": "Vorlage verschoben",
|
||||
"Couldn't move the template, try again?": "Das Dokument konnte nicht verschoben werden. Erneut versuchen?",
|
||||
"Move to collection": "Zu Sammlung verschieben",
|
||||
"Move template": "Vorlage verschieben",
|
||||
"Print template": "Vorlage drucken",
|
||||
"Invite people": "Personen einladen",
|
||||
"Invite to workspace": "In den Arbeitsbereich einladen",
|
||||
"Promote to {{ role }}": "Zu {{ role }} befördern",
|
||||
@@ -176,6 +185,7 @@
|
||||
"Debug": "Testen",
|
||||
"Document": "Dokument",
|
||||
"Documents": "Dokumente",
|
||||
"Template": "Vorlage",
|
||||
"Recently viewed": "Zuletzt angesehen",
|
||||
"Revision": "Version",
|
||||
"Navigation": "Navigation",
|
||||
@@ -195,6 +205,7 @@
|
||||
"Collections are used to group documents and choose permissions": "Sammlungen werden verwendet, um Dokumente zu gruppieren und Berechtigungen auszuwählen",
|
||||
"Name": "Name",
|
||||
"The default access for workspace members, you can share with more users or groups later.": "Der Standardzugriff für Mitglieder des Arbeitsbereichs, den Sie später mit mehreren Benutzern oder Gruppen teilen können.",
|
||||
"Advanced options": "Fortgeschrittene Einstellungen",
|
||||
"Public document sharing": "Öffentliches Teilen von Dokumenten",
|
||||
"Allow documents within this collection to be shared publicly on the internet.": "Erlaube die öffentliche Freigabe von Dokumenten in dieser Sammlung im Internet.",
|
||||
"Commenting": "Kommentieren",
|
||||
@@ -205,10 +216,10 @@
|
||||
"Create": "Erstellen",
|
||||
"Collection deleted": "Sammlung gelöscht",
|
||||
"I’m sure – Delete": "Ich bin mir sicher – Löschen",
|
||||
"Deleting": "Wird gelöscht",
|
||||
"Are you sure about that? Deleting the <em>{{collectionName}}</em> collection is permanent and cannot be restored, however all published documents within will be moved to the trash.": "Bist du sicher? Die Löschung der <em>{{collectionName}}</em> Kollektion ist dauerhaft und nicht widerrufbar. Alle freigegebenen Dokumente werden in den Papierkorb verschoben.",
|
||||
"Also, <em>{{collectionName}}</em> is being used as the start view – deleting it will reset the start view to the Home page.": "Die Sammlung <em>{{collectionName}}</em> wird außerdem als Startseite genutzt – sollte diese Sammlung gelöscht werden, wird die Startseite auf die Standardeinstellung zurückgesetzt.",
|
||||
"Type a command or search": "Gib einen Befehl oder eine Suche ein",
|
||||
"New from template": "Neu aus Vorlage",
|
||||
"Choose a template": "Wähle eine Vorlage",
|
||||
"Are you sure you want to permanently delete this entire comment thread?": "Bist du sicher, dass du diesen Kommentarverlauf löschen möchtest?",
|
||||
"Are you sure you want to permanently delete this comment?": "Bist du sicher, dass du diesen Kommentar löschen möchtest?",
|
||||
@@ -227,12 +238,6 @@
|
||||
"Deleted Collection": "Gelöschte Sammlung",
|
||||
"Untitled": "Ohne Titel",
|
||||
"Unpin": "Lospinnen",
|
||||
"Select a location to copy": "Ort zum Kopieren auswählen",
|
||||
"Document copied": "Dokument kopiert",
|
||||
"Couldn’t copy the document, try again?": "Das Dokument konnte nicht kopiert werden. Erneut versuchen?",
|
||||
"Include nested documents": "Verschachtelte Dokumente einbeziehen",
|
||||
"Copy to <em>{{ location }}</em>": "Kopieren nach <em>{{ location }}</em>",
|
||||
"Copying": "Wird kopiert",
|
||||
"Export started": "Export gestartet",
|
||||
"A link to your file will be sent through email soon": "Ein Link zu Ihrer Datei wird in Kürze per E-Mail gesendet",
|
||||
"Preparing your download": "Download wird vorbereitet",
|
||||
@@ -242,13 +247,24 @@
|
||||
"Include child documents": "Unterdokumente einschließen",
|
||||
"When selected, exporting the document <em>{{documentName}}</em> may take some time.": "Wenn ausgewählt, kann der Export des Dokuments <em>{{documentName}}</em> einige Zeit dauern.",
|
||||
"You will receive an email when it's complete.": "Du erhältst eine E-Mail, sobald der Vorgang abgeschlossen ist.",
|
||||
"Select a location to copy": "Ort zum Kopieren auswählen",
|
||||
"Document copied": "Dokument kopiert",
|
||||
"Couldn’t copy the document, try again?": "Das Dokument konnte nicht kopiert werden. Erneut versuchen?",
|
||||
"Include nested documents": "Verschachtelte Dokumente einbeziehen",
|
||||
"Copy to <em>{{ location }}</em>": "Kopieren nach <em>{{ location }}</em>",
|
||||
"Copying": "Wird kopiert",
|
||||
"Search collections & documents": "Sammlungen und Dokumente durchsuchen",
|
||||
"Search collections": "Sammlungen durchsuchen",
|
||||
"No results found": "Keine Ergebnisse gefunden",
|
||||
"Select a location to move": "Ort zum Verschieben auswählen",
|
||||
"Document moved": "Dokument verschoben",
|
||||
"Couldn’t move the document, try again?": "Das Dokument konnte nicht verschoben werden. Erneut versuchen?",
|
||||
"Move to <em>{{ location }}</em>": "Verschieben nach <em>{{ location }}</em>",
|
||||
"Couldn’t move the template, try again?": "Das Dokument konnte nicht verschoben werden. Erneut versuchen?",
|
||||
"Document options": "Dokument-Einstellungen",
|
||||
"New": "Neu",
|
||||
"Only visible to you": "Nur für Sie sichtbar",
|
||||
"Draft": "Entwurf",
|
||||
"Template": "Vorlage",
|
||||
"You updated": "Von dir aktualisiert",
|
||||
"{{ userName }} updated": "{{ userName }} aktualisiert",
|
||||
"You deleted": "Von dir gelöscht",
|
||||
@@ -278,7 +294,6 @@
|
||||
"Please enter a name for the emoji": "Bitte geben Sie einen Namen für das Emoji ein",
|
||||
"Please select an image file": "Bitte wählen Sie eine Bilddatei aus",
|
||||
"Emoji created successfully": "Emoji erfolgreich erstellt",
|
||||
"Uploading": "Wird hochgeladen",
|
||||
"Add emoji": "Emoji hinzufügen",
|
||||
"Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.": "Quadratische Bilder mit transparenten Hintergründen funktionieren am besten. Wenn dein Bild zu groß ist, versuchen wir es für dich zu verändern.",
|
||||
"Upload an image": "Bild hochladen",
|
||||
@@ -467,6 +482,7 @@
|
||||
"Collapse sidebar": "Seitenleiste einklappen",
|
||||
"Archived collections": "Archivierte Sammlungen",
|
||||
"New doc": "Neues Dokument",
|
||||
"New nested document": "Neues Unterdokument",
|
||||
"Empty": "Leer",
|
||||
"No collections": "Keine Sammlungen",
|
||||
"Collapse": "Zusammenklappen",
|
||||
@@ -493,6 +509,8 @@
|
||||
"Unstar document": "Favorisierung entfernen",
|
||||
"Star document": "Dokument zu Favoriten hinzufügen",
|
||||
"Select a color": "Wähle eine Farbe",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Markiere eine Textstelle und nutze das <1></1>-Werkzeug, um Platzhalter hinzuzufügen, die beim Erstellen neuer Dokumente ausgefüllt werden können",
|
||||
"You’re editing a template": "Du bearbeitest eine Vorlage",
|
||||
"Template created, go ahead and customize it": "Vorlage erstellt, fortfahren und anpassen",
|
||||
"Creating a template from <em>{{titleWithDefault}}</em> is a non-destructive action – we'll make a copy of the document and turn it into a template that can be used as a starting point for new documents.": "Das Erstellen einer Vorlage durch <em>{{titleWithDefault}}</em> ist eine non-destruktive Aktion – wir erstellen eine Kopie des Dokuments und verwandeln es in eine Vorlage, die als Ausgangspunkt für neue Dokumente verwendet werden kann.",
|
||||
"Enable other members to use the template immediately": "Erlaube anderen Mitgliedern die Vorlage sofort zu verwenden",
|
||||
@@ -552,7 +570,7 @@
|
||||
"Todo list": "Aufgabenliste",
|
||||
"Show {{ count }} completed": "Zeige {{ count }} abgeschlossenen",
|
||||
"Show {{ count }} completed_plural": "Zeige {{ count }} abgeschlossene",
|
||||
"Hide completed": "Hide completed",
|
||||
"Hide completed": "Abgeschlossene ausblenden",
|
||||
"Code block": "Codeblock",
|
||||
"Copied to clipboard": "In die Zwischenablage kopiert",
|
||||
"Code": "Code",
|
||||
@@ -632,6 +650,7 @@
|
||||
"Delete embed": "Einbindung löschen",
|
||||
"Formatting controls": "Formatierungssteuerung",
|
||||
"Distribute columns": "Spalten teilen",
|
||||
"Wrap text": "Mit Text umschließen",
|
||||
"Delete Emoji": "Emoji löschen",
|
||||
"Emoji deleted": "Emoji gelöscht",
|
||||
"I'm sure – Delete": "Ich bin mir sicher – Löschen",
|
||||
@@ -644,17 +663,19 @@
|
||||
"Unsubscribed from document": "Dokument nicht abonniert",
|
||||
"Unsubscribed from collection": "Von der Sammlung abgemeldet",
|
||||
"Account": "Konto",
|
||||
"API & Apps": "API & Anwendungen",
|
||||
"API & Access": "API & Zugriff",
|
||||
"Details": "Details",
|
||||
"Authentication": "Authentifizierung",
|
||||
"Security": "Sicherheit",
|
||||
"Features": "Funktionen",
|
||||
"AI": "Künstliche Intelligenz",
|
||||
"API Keys": "API-Schlüssel",
|
||||
"Applications": "Anwendungen",
|
||||
"Shared Links": "Geteilte Links",
|
||||
"Import": "Import",
|
||||
"Install": "Installieren",
|
||||
"Embeds": "Einbettungen",
|
||||
"Configure which embed providers are available in the editor.": "Konfigurieren Sie, welche Anbieter für Einbettungen im Editor verfügbar sind.",
|
||||
"Integrations": "Integrationen",
|
||||
"Install": "Installieren",
|
||||
"Change name": "Namen ändern",
|
||||
"Change email": "E-Mail-Adresse ändern",
|
||||
"Suspend user": "Benutzer sperren",
|
||||
@@ -685,8 +706,8 @@
|
||||
"Headings you add to the document will appear here": "Überschriften, die du dem Dokument hinzufügst, werden hier angezeigt",
|
||||
"Contents": "Inhalte",
|
||||
"Table of contents": "Inhaltsverzeichnis",
|
||||
"Template options": "Vorlagen-Einstellungen",
|
||||
"User options": "Nutzer-Einstellungen",
|
||||
"template": "Vorlage",
|
||||
"document": "Dokument",
|
||||
"Export complete": "Export abgeschlossen",
|
||||
"Export failed": "Exportieren fehlgeschlagen",
|
||||
@@ -812,23 +833,15 @@
|
||||
"Sorry, the last change could not be persisted – please reload the page": "Die letzte Änderung konnte leider nicht übernommen werden – bitte lade die Seite neu",
|
||||
"{{ count }} days": "{{ count }} Tag",
|
||||
"{{ count }} days_plural": "{{ count }} Tage",
|
||||
"This template will be permanently deleted in <2></2> unless restored.": "Diese Vorlage wird dauerhaft in <2></2> gelöscht, wenn sie nicht wiederhergestellt wird.",
|
||||
"This document will be permanently deleted in <2></2> unless restored.": "Dieses Dokument wird dauerhaft in <2></2> gelöscht, wenn es nicht wiederhergestellt wird.",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Markiere eine Textstelle und nutze das <1></1>-Werkzeug, um Platzhalter hinzuzufügen, die beim Erstellen neuer Dokumente ausgefüllt werden können",
|
||||
"You’re editing a template": "Du bearbeitest eine Vorlage",
|
||||
"Deleted by {{userName}}": "Gelöscht von {{userName}}",
|
||||
"Observing {{ userName }}": "Beobachte {{ userName }}",
|
||||
"Backlinks": "Backlinks",
|
||||
"This document is large which may affect performance": "Dieses Dokument ist groß und kann die Leistung negativ beeinträchtigen",
|
||||
"Are you sure you want to delete the <em>{{ documentTitle }}</em> template?": "Möchtest du die Vorlage <em>{{ documentTitle }}</em> wirklich löschen?",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history</em>.": "Bist du sicher? Durch Löschen des Dokuments <em>{{ documentTitle }}</em> wird auch der gesamte Verlauf davon gelöscht</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>.": "Bist du sicher? Durch Löschen des Dokuments <em>{{ documentTitle }}</em> wird der gesamte Verlauf sowie <em>{{ any }} Unterdokumente</em> gelöscht.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>._plural": "Bist du sicher? Durch Löschen des Dokuments <em>{{ documentTitle }}</em> wird der gesamte Verlauf sowie <em>{{ any }} Unterdokumente</em> gelöscht.",
|
||||
"If you’d like the option of referencing or restoring the {{noun}} in the future, consider archiving it instead.": "Wenn du {{noun}} in Zukunft noch referenzieren oder wiederherstellen möchtest, solltest du es stattdessen archivieren.",
|
||||
"Select a location to move": "Ort zum Verschieben auswählen",
|
||||
"Document moved": "Dokument verschoben",
|
||||
"Couldn’t move the document, try again?": "Das Dokument konnte nicht verschoben werden. Erneut versuchen?",
|
||||
"Move to <em>{{ location }}</em>": "Verschieben nach <em>{{ location }}</em>",
|
||||
"Couldn’t create the document, try again?": "Dokument konnte nicht erstellt werden. Erneut versuchen?",
|
||||
"Document permanently deleted": "Dokument endgültig gelöscht",
|
||||
"Are you sure you want to permanently delete the <em>{{ documentTitle }}</em> document? This action is immediate and cannot be undone.": "Möchtest du das Dokument <em>{{ documentTitle }}</em> dauerhaft löschen? Die Löschung erfolgt sofort und kann nicht rückgängig gemacht werden.",
|
||||
@@ -885,7 +898,6 @@
|
||||
"Open this guide": "Diese Anleitung öffnen",
|
||||
"Enter": "Enter",
|
||||
"Publish document and exit": "Dokument veröffentlichen & schließen",
|
||||
"Save document": "Dokument speichern",
|
||||
"Cancel editing": "Bearbeitung abbrechen",
|
||||
"Collaboration": "Zusammenarbeit",
|
||||
"Formatting": "Formatierung",
|
||||
@@ -978,11 +990,14 @@
|
||||
"An error occurred": "Ein Fehler ist aufgetreten",
|
||||
"The OAuth client could not be found, please check the provided client ID": "Der OAuth-Client konnte nicht gefunden werden. Bitte überprüfen Sie die angegebene Client-ID",
|
||||
"The OAuth client could not be loaded, please check the redirect URI is valid": "Der OAuth-Client konnte nicht geladen werden. Bitte überprüfen Sie, ob die Redirect-URI gültig ist",
|
||||
"The OAuth client could not be loaded, please check your workspace subdomain is correct": "Der OAuth-Client konnte nicht geladen werden. Bitte überprüfen Sie, ob die Subdomain Ihres Arbeitsbereichs korrekt ist",
|
||||
"Required OAuth parameters are missing": "Erforderliche OAuth-Parameter fehlen",
|
||||
"Authorize": "Autorisieren",
|
||||
"{{ appName }} wants to access {{ teamName }}": "{{ appName }} möchte auf {{ teamName }} zugreifen",
|
||||
"By <em>{{ developerName }}</em>": "Von <em>{{ developerName }}</em>",
|
||||
"{{ appName }} will be able to access your account and perform the following actions": "{{ appName }} kann auf Ihr Konto zugreifen und die folgenden Aktionen ausführen.",
|
||||
"You will be redirected to a local application after authorizing.": "Sie werden nach der Autorisierung zu einer lokalen Anwendung weitergeleitet.",
|
||||
"You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.": "Sie werden nach der Autorisierung zu <em>{{ redirectUri }}</em> weitergeleitet. Stellen Sie sicher, dass Sie der URL vertrauen.",
|
||||
"read": "lesen",
|
||||
"write": "schreiben",
|
||||
"read and write": "lesen und schreiben",
|
||||
@@ -1111,16 +1126,16 @@
|
||||
"Are you sure about that? Deleting the <em>{{groupName}}</em> group will cause its members to lose access to collections and documents that it is associated with.": "Bist du sicher? Durch das Löschen der <em>{{groupName}}</em> Gruppe verlieren deine Teammitglieder den Zugriff auf Sammlungen und Dokumente die mit der Gruppe verknüpft waren.",
|
||||
"Add people to {{groupName}}": "Personen zu {{groupName }} hinzufügen",
|
||||
"{{userName}} was removed from the group": "{{userName}} wurde aus der Gruppe entfernt",
|
||||
"All permissions": "All permissions",
|
||||
"All permissions": "Alle Berechtigungen",
|
||||
"Group admin": "Admin Gruppe",
|
||||
"Member": "Mitglied",
|
||||
"Add and remove members to the <em>{{groupName}}</em> group. Members of the group will have access to any collections this group has been added to.": "Hinzufügen und Entfernen von Mitgliedern zur Gruppe <em>{{groupName}}</em>. Mitglieder der Gruppe haben Zugriff auf alle Sammlungen, zu denen diese Gruppe hinzugefügt wurde.",
|
||||
"Add people": "Personen hinzufügen",
|
||||
"Listing members of the <em>{{groupName}}</em> group.": "Mitglieder der Gruppe <em>{{groupName}}</em> auflisten.",
|
||||
"Search by name": "Nach Name suchen",
|
||||
"Search members": "Search members",
|
||||
"Filter by permissions": "Filter by permissions",
|
||||
"No members matching your filters": "No members matching your filters",
|
||||
"Search members": "Mitglieder suchen",
|
||||
"Filter by permissions": "Filtern nach Berechtigungen",
|
||||
"No members matching your filters": "Kein Mitglied für diesen Filter gefunden",
|
||||
"This group has no members.": "Diese Gruppe hat keine Mitglieder.",
|
||||
"{{userName}} was added to the group": "{{userName}} wurde zur Gruppe hinzugefügt",
|
||||
"Could not add user": "Benutzer kann nicht hinzugefügt werden",
|
||||
@@ -1156,6 +1171,8 @@
|
||||
"Last accessed": "Letzter Zugriff",
|
||||
"Domain": "Domain",
|
||||
"Views": "Ansichten",
|
||||
"Visibility": "Sichtbarkeit",
|
||||
"Updated by": "Geändert von",
|
||||
"All roles": "Alle Rollen",
|
||||
"Admins": "Admins",
|
||||
"Editors": "Redakteure",
|
||||
@@ -1188,15 +1205,26 @@
|
||||
"Your workspace will be accessible at": "Dein Arbeitsbereich wird zugänglich sein unter",
|
||||
"Choose a subdomain to enable a login page just for your team.": "Wählen Sie eine Subdomain, um eine Login-Seite nur für Ihr Team zu aktivieren.",
|
||||
"This is the screen that workspace members will first see when they sign in.": "Dies ist der Bildschirm, den Arbeitsbereich-Mitglieder zuerst sehen, wenn sie sich anmelden.",
|
||||
"Danger": "Achtung",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "Sie können den gesamten Arbeitsbereich mit Sammlungen, Dokumenten und Benutzern löschen.",
|
||||
"Export data": "Daten exportieren",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "Ein vollständiger Export kann einige Zeit in Anspruch nehmen, erwägen Sie den Export eines einzelnen Dokuments oder einer einzelnen Sammlung. Sie können diese Seite verlassen, sobald der Export gestartet ist – wenn Sie Benachrichtigungen aktiviert haben, wir senden einen Link an <em>{{ userEmail }}</em> wenn er abgeschlossen ist.",
|
||||
"Recent exports": "Kürzliche Exporte",
|
||||
"Manage optional and beta features. Changing these settings will affect the experience for all members of the workspace.": "Verwalten Sie optionale und Beta-Funktionen. Das Ändern dieser Einstellungen wirkt sich auf alle Mitglieder des Arbeitsbereichs aus.",
|
||||
"Separate editing": "Getrennte Bearbeitung",
|
||||
"When enabled documents have a separate editing mode by default instead of being always editable. This setting can be overridden by user preferences.": "Wenn diese Option aktiviert ist, haben Dokumente standardmäßig einen separaten Bearbeitungsmodus, anstatt immer bearbeitbar zu sein. Diese Einstellung kann durch Benutzereinstellungen außer Kraft gesetzt werden.",
|
||||
"When enabled team members can add comments to documents.": "Wenn aktiviert, können Teammitglieder Kommentare zu Dokumenten hinzufügen.",
|
||||
"Danger": "Achtung",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "Sie können den gesamten Arbeitsbereich mit Sammlungen, Dokumenten und Benutzern löschen.",
|
||||
"Enabled": "Aktiviert",
|
||||
"Allow supported providers to be inserted as interactive embeds in documents.": "Ermöglicht das Einfügen unterstützter Anbieter als interaktive Einbettung in Dokumente.",
|
||||
"Providers": "Provider",
|
||||
"Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.": "Aktivierte Anbieter werden im Editor-/Schrägstrich-Menü angezeigt und automatisch einbetten, wenn ein kompatibler Link eingefügt wird. Bestehende Einbettungen in Dokumenten werden unabhängig von diesen Einstellungen weiterhin angezeigt.",
|
||||
"All providers": "Alle Anbieter",
|
||||
"Export data": "Daten exportieren",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "Ein vollständiger Export kann einige Zeit in Anspruch nehmen, erwägen Sie den Export eines einzelnen Dokuments oder einer einzelnen Sammlung. Sie können diese Seite verlassen, sobald der Export gestartet ist – wenn Sie Benachrichtigungen aktiviert haben, wir senden einen Link an <em>{{ userEmail }}</em> wenn er abgeschlossen ist.",
|
||||
"Recent exports": "Kürzliche Exporte",
|
||||
"Manage AI and integration features for your workspace.": "Verwalten Sie KI- und Integrationsfunktionen für Ihren Arbeitsbereich.",
|
||||
"MCP server": "MCP Server",
|
||||
"Allow members to connect to this workspace with MCP to read and write data.": "Erlaube Mitgliedern die Verbindung zu diesem Arbeitsbereich mit MCP zum Lesen und Schreiben von Daten.",
|
||||
"Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.": "Verwenden Sie den folgenden Endpunkt, um sich mit dem MCP-Server von Ihrer App zu verbinden. Erfahren Sie mehr über die Einrichtung in <a>der Dokumentation</a>.",
|
||||
"Copy URL": "URL kopieren",
|
||||
"AI answers": "KI-Antworten",
|
||||
"Use AI to get direct answers to questions in search. This feature requires a paid license.": "Benutzen Sie die KI um direkte Antworten auf Fragen bei der Suche zu erhalten. Diese Funktion erfordert eine kostenpflichtige Lizenz.",
|
||||
"Create a group": "Gruppe erstellen",
|
||||
"Could not load groups": "Gruppen konnten nicht geladen werden",
|
||||
"New group": "Neue Gruppe",
|
||||
@@ -1243,8 +1271,8 @@
|
||||
"Manage when and where you receive email notifications.": "Verwalten Sie, wann und wo Sie E-Mail-Benachrichtigungen erhalten.",
|
||||
"The email integration is currently disabled. Please set the associated environment variables and restart the server to enable notifications.": "Die E-Mail-Integration ist derzeit deaktiviert. Legen Sie die zugehörigen Umgebungsvariablen fest und starten Sie den Server neu, um Benachrichtigungen zu aktivieren.",
|
||||
"Preferences saved": "Einstellungen gespeichert",
|
||||
"Unread count": "Unread count",
|
||||
"Unread indicator": "Unread indicator",
|
||||
"Unread count": "Anzahl Ungelesen",
|
||||
"Unread indicator": "Ungelesene Anzeige",
|
||||
"Delete account": "Konto löschen",
|
||||
"Manage settings that affect your personal experience.": "Verwalten Sie Einstellungen, die Ihr persönliches Erlebnis beeinflussen.",
|
||||
"Language": "Sprache",
|
||||
@@ -1259,8 +1287,8 @@
|
||||
"Automatically return to the document you were last viewing when the app is re-opened.": "Automatisch zum zuletzt angezeigten Dokument zurückkehren, wenn die App wieder geöffnet wird.",
|
||||
"Smart text replacements": "Intelligente Textersetzungen",
|
||||
"Auto-format text by replacing shortcuts with symbols, dashes, smart quotes, and other typographical elements.": "Text automatisch formatieren, indem Verknüpfungen durch Symbole, Bindestriche, intelligente Anführungszeichen und andere typografische Elemente ersetzt werden.",
|
||||
"Notification badge": "Notification badge",
|
||||
"Choose how unread notifications are indicated on the app icon.": "Choose how unread notifications are indicated on the app icon.",
|
||||
"Notification badge": "Benachrichtigungskennzeichen",
|
||||
"Choose how unread notifications are indicated on the app icon.": "Wählen Sie, wie ungelesene Benachrichtigungen auf dem App-Symbol angezeigt werden.",
|
||||
"You may delete your account at any time, note that this is unrecoverable": "Sie können Ihren Account jederzeit löschen, beachten Sie, dass dies nicht wiederhergestellt werden kann",
|
||||
"Profile saved": "Profil gespeichert",
|
||||
"Profile picture updated": "Profilbild wurde aktualisiert",
|
||||
@@ -1288,8 +1316,6 @@
|
||||
"When enabled, viewers can see download options for documents": "Wenn diese Option aktiviert ist, können Betrachter Download-Optionen für Dokumente sehen",
|
||||
"Users can delete account": "Benutzer können Konto löschen",
|
||||
"When enabled, users can delete their own account from the workspace": "Wenn aktiviert, können Benutzer ihr eigenes Konto aus dem Arbeitsbereich löschen",
|
||||
"Rich service embeds": "Rich-Service-Einbettungen",
|
||||
"Links to supported services are shown as rich embeds within your documents": "Links zu unterstützten Diensten werden als Rich Embeds in Ihren Dokumenten angezeigt",
|
||||
"Email address visibility": "Sichtbarkeit der E-Mail-Adresse",
|
||||
"Controls who can see user email addresses in the workspace": "Legt fest, wer die E-Mail-Adressen des Benutzers im Arbeitsbereich sehen kann",
|
||||
"Collection creation": "Sammlungserstellung",
|
||||
@@ -1300,9 +1326,10 @@
|
||||
"Sharing is currently disabled.": "Das Teilen ist momentan deaktiviert.",
|
||||
"You can globally enable and disable public document sharing in the <em>security settings</em>.": "Sie können die Freigabe öffentlicher Dokumente in den <em>Sicherheitseinstellungen </em> ein- und ausschalten.",
|
||||
"Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.": "Freigegebene Dokumente sind unten aufgeführt. Jeder, der über den öffentlichen Link verfügt, kann auf eine schreibgeschützte Version des Dokuments zugreifen, bis der Link widerrufen wurde.",
|
||||
"You can create templates to help your team create consistent and accurate documentation.": "Du kannst Vorlagen erstellen, um deinem Team zu helfen, eine konsistente und genaue Dokumentation zu schaffen.",
|
||||
"Alphabetical": "Alphabetisch",
|
||||
"There are no templates just yet.": "Es gibt noch keine Vorlagen.",
|
||||
"A template must have content": "Eine Vorlage muss Inhalte enthalten",
|
||||
"Could not load templates": "Templates konnten nicht geladen werden",
|
||||
"Templates help your team create consistent and accurate documentation.": "Vorlagen helfen Ihrem Team dabei, eine konsistente und genaue Dokumentation zu erstellen.",
|
||||
"No templates have been created yet": "Es wurden noch keine Vorlagen erstellt",
|
||||
"{{ teamName }} is using {{ appName }} to share documents, please login to continue.": "{{ teamName }} verwendet {{ appName }}, um Dokumente zu teilen. Bitte melde dich an, um fortzufahren.",
|
||||
"A confirmation code has been sent to your email address, please enter the code below to permanently destroy this workspace.": "Ein Bestätigungscode wurde an deine E-Mail-Adresse gesendet. Bitte gebe diesen Code unten ein, um diesen Arbeitsbereich endgültig zu löschen.",
|
||||
"Confirmation code": "Bestätigungscode",
|
||||
@@ -1349,7 +1376,7 @@
|
||||
"Yes": "Ja",
|
||||
"No": "Nein",
|
||||
"Search or ask a question": "Suche oder stelle eine Frage",
|
||||
"Invited {{roleName}} will not receive access to any collections or documents unless explicitly shared.": "Invited {{roleName}} will not receive access to any collections or documents unless explicitly shared.",
|
||||
"Invited {{roleName}} will not receive access to any collections or documents unless explicitly shared.": "",
|
||||
"Can view only what is explicitly shared": "Kann nur das sehen, was explizit geteilt wird",
|
||||
"SAML assertion was invalid or missing fields, please check your configuration": "SAML-Zusicherung war ungültig oder fehlende Felder, bitte überprüfen Sie Ihre Konfiguration",
|
||||
"AI generated answer based on related documents in your workspace": "KI generierte Antwort basierend auf zugehörigen Dokumenten in Ihrem Arbeitsbereich",
|
||||
@@ -1363,7 +1390,6 @@
|
||||
"New Attribute": "Neues Attribut",
|
||||
"Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.": "Attribute erlauben es Ihnen, Daten zu definieren, die mit Ihren Dokumenten gespeichert werden sollen. Sie können verwendet werden, um benutzerdefinierte Eigenschaften, Metadaten oder andere strukturierte Informationen zu speichern, die in Dokumenten üblich sind.",
|
||||
"Custom domain": "Benutzerdefinierte Domain",
|
||||
"AI answers": "KI-Antworten",
|
||||
"Use AI to directly answer searched questions using content in your workspace.": "Benutzen Sie die KI um Ihre Fragen direkt mit Inhalten in Ihrem Arbeitsbereich zu beantworten.",
|
||||
"API access": "API Zugriff",
|
||||
"Allow members to create API keys for programmatic access": "Mitgliedern erlauben, API-Schlüssel für den programmatischen Zugriff zu generieren",
|
||||
@@ -1413,6 +1439,27 @@
|
||||
"Enabled by {{integrationCreatedBy}}": "Von {{integrationCreatedBy}} aktiviert",
|
||||
"Disconnecting will prevent previewing GitHub links from this organization in documents. Are you sure?": "Das Trennen der Verbindung verhindert die Vorschau der GitHub-Links von dieser Organisation in Dokumenten. Sind Sie sicher?",
|
||||
"The GitHub integration is currently disabled. Please set the associated environment variables and restart the server to enable the integration.": "Die GitHub Integration ist zurzeit deaktiviert. Bitte setzen Sie die geforderten Werte und starten Sie den Server neu.",
|
||||
"Connect GitLab": "Mit GitLab verbinden",
|
||||
"Enter the details for your GitLab instance.": "Geben Sie die Details für Ihre GitLab-Instanz ein.",
|
||||
"GitLab URL": "GitLab URL",
|
||||
"URL must start with https": "Die URL muss mit https beginnen",
|
||||
"Client ID": "Client ID",
|
||||
"OAuth application ID": "OAuth Anwendungs-ID",
|
||||
"Client Secret": "Client-Geheimnis",
|
||||
"OAuth application secret": "OAuth Anwendungsgeheimnis",
|
||||
"Connecting": "Verbinde",
|
||||
"Choose which GitLab instance to connect to.": "Wählen Sie die GitLab Instanz für eine Verbindung aus.",
|
||||
"GitLab Cloud": "GitLab Cloud",
|
||||
"Connect to your account on gitlab.com": "Verbinden Sie sich mit Ihrem Konto auf gitlab.com",
|
||||
"GitLab Cloud credentials are not configured": "Die GitLab Cloud-Zugangsdaten sind nicht konfiguriert",
|
||||
"Self-managed": "Selbstverwaltet",
|
||||
"Connect to a custom GitLab installation": "Mit einer benutzerdefinierten GitLab-Installation verbinden",
|
||||
"You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?": "Sie müssen die Berechtigungen in GitLab akzeptieren, um {{appName}} mit Ihrem Arbeitsbereich zu verbinden. Erneut versuchen?",
|
||||
"The GitLab account is already connected to this workspace.": "The GitLab account is already connected to this workspace.",
|
||||
"Something went wrong while authenticating your request. Please try again.": "Something went wrong while authenticating your request. Please try again.",
|
||||
"The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.": "The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.",
|
||||
"Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.": "Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.",
|
||||
"Disconnecting will prevent previewing links from GitLab in documents. Are you sure?": "Disconnecting will prevent previewing links from GitLab in documents. Are you sure?",
|
||||
"Google Analytics": "Google Analytics",
|
||||
"Add a Google Analytics 4 measurement ID to send document views and analytics from the workspace to your own Google Analytics account.": "Füge eine Google Analytics 4-Measurement-ID hinzu, um Dokumentansichten und Analysen aus dem Arbeitsbereich an dein eigenes Google Analytics-Konto zu senden.",
|
||||
"Measurement ID": "Measurement ID",
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
"Collection permissions": "Collection permissions",
|
||||
"Share this collection": "Share this collection",
|
||||
"Import document": "Import document",
|
||||
"Uploading": "Uploading",
|
||||
"Sort in sidebar": "Sort in sidebar",
|
||||
"A-Z sort": "A-Z sort",
|
||||
"Z-A sort": "Z-A sort",
|
||||
@@ -53,8 +54,9 @@
|
||||
"Development": "Development",
|
||||
"Open document": "Open document",
|
||||
"New draft": "New draft",
|
||||
"New from template": "New from template",
|
||||
"New nested document": "New nested document",
|
||||
"Nested document": "Nested document",
|
||||
"Before": "Before",
|
||||
"After": "After",
|
||||
"Publish": "Publish",
|
||||
"Published {{ documentName }}": "Published {{ documentName }}",
|
||||
"Publish document": "Publish document",
|
||||
@@ -91,9 +93,7 @@
|
||||
"Create template": "Create template",
|
||||
"Open random document": "Open random document",
|
||||
"Search documents for \"{{searchQuery}}\"": "Search documents for \"{{searchQuery}}\"",
|
||||
"Move to workspace": "Move to workspace",
|
||||
"Move": "Move",
|
||||
"Move to collection": "Move to collection",
|
||||
"Move {{ documentType }}": "Move {{ documentType }}",
|
||||
"Are you sure you want to archive this document?": "Are you sure you want to archive this document?",
|
||||
"Document archived": "Document archived",
|
||||
@@ -165,6 +165,15 @@
|
||||
"New workspace": "New workspace",
|
||||
"Create a workspace": "Create a workspace",
|
||||
"Login to workspace": "Login to workspace",
|
||||
"Template deleted": "Template deleted",
|
||||
"Deleting": "Deleting",
|
||||
"Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.": "Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.",
|
||||
"Move to workspace": "Move to workspace",
|
||||
"Template moved": "Template moved",
|
||||
"Couldn't move the template, try again?": "Couldn't move the template, try again?",
|
||||
"Move to collection": "Move to collection",
|
||||
"Move template": "Move template",
|
||||
"Print template": "Print template",
|
||||
"Invite people": "Invite people",
|
||||
"Invite to workspace": "Invite to workspace",
|
||||
"Promote to {{ role }}": "Promote to {{ role }}",
|
||||
@@ -176,6 +185,7 @@
|
||||
"Debug": "Debug",
|
||||
"Document": "Document",
|
||||
"Documents": "Documents",
|
||||
"Template": "Template",
|
||||
"Recently viewed": "Recently viewed",
|
||||
"Revision": "Revision",
|
||||
"Navigation": "Navigation",
|
||||
@@ -195,6 +205,7 @@
|
||||
"Collections are used to group documents and choose permissions": "Collections are used to group documents and choose permissions",
|
||||
"Name": "Name",
|
||||
"The default access for workspace members, you can share with more users or groups later.": "The default access for workspace members; you can share with more users or groups later.",
|
||||
"Advanced options": "Advanced options",
|
||||
"Public document sharing": "Public document sharing",
|
||||
"Allow documents within this collection to be shared publicly on the internet.": "Allow documents within this collection to be shared publicly on the internet.",
|
||||
"Commenting": "Commenting",
|
||||
@@ -205,10 +216,10 @@
|
||||
"Create": "Create",
|
||||
"Collection deleted": "Collection deleted",
|
||||
"I’m sure – Delete": "I’m sure – Delete",
|
||||
"Deleting": "Deleting",
|
||||
"Are you sure about that? Deleting the <em>{{collectionName}}</em> collection is permanent and cannot be restored, however all published documents within will be moved to the trash.": "Are you sure about that? Deleting the <em>{{collectionName}}</em> collection is permanent and cannot be restored; however, all published documents within will be moved to the bin.",
|
||||
"Also, <em>{{collectionName}}</em> is being used as the start view – deleting it will reset the start view to the Home page.": "Also, <em>{{collectionName}}</em> is being used as the start view – deleting it will reset the start view to the Home page.",
|
||||
"Type a command or search": "Type a command or search",
|
||||
"New from template": "New from template",
|
||||
"Choose a template": "Choose a template",
|
||||
"Are you sure you want to permanently delete this entire comment thread?": "Are you sure you want to permanently delete this entire comment thread?",
|
||||
"Are you sure you want to permanently delete this comment?": "Are you sure you want to permanently delete this comment?",
|
||||
@@ -227,12 +238,6 @@
|
||||
"Deleted Collection": "Deleted Collection",
|
||||
"Untitled": "Untitled",
|
||||
"Unpin": "Unpin",
|
||||
"Select a location to copy": "Select a location to copy",
|
||||
"Document copied": "Document copied",
|
||||
"Couldn’t copy the document, try again?": "Couldn’t copy the document, try again?",
|
||||
"Include nested documents": "Include nested documents",
|
||||
"Copy to <em>{{ location }}</em>": "Copy to <em>{{ location }}</em>",
|
||||
"Copying": "Copying",
|
||||
"Export started": "Export started",
|
||||
"A link to your file will be sent through email soon": "A link to your file will be sent through email soon",
|
||||
"Preparing your download": "Preparing your download",
|
||||
@@ -242,13 +247,24 @@
|
||||
"Include child documents": "Include child documents",
|
||||
"When selected, exporting the document <em>{{documentName}}</em> may take some time.": "When selected, exporting the document <em>{{documentName}}</em> may take some time.",
|
||||
"You will receive an email when it's complete.": "You will receive an email when it's complete.",
|
||||
"Select a location to copy": "Select a location to copy",
|
||||
"Document copied": "Document copied",
|
||||
"Couldn’t copy the document, try again?": "Couldn’t copy the document, try again?",
|
||||
"Include nested documents": "Include nested documents",
|
||||
"Copy to <em>{{ location }}</em>": "Copy to <em>{{ location }}</em>",
|
||||
"Copying": "Copying",
|
||||
"Search collections & documents": "Search collections & documents",
|
||||
"Search collections": "Search collections",
|
||||
"No results found": "No results found",
|
||||
"Select a location to move": "Select a location to move to",
|
||||
"Document moved": "Document moved",
|
||||
"Couldn’t move the document, try again?": "Couldn’t move the document, please try again?",
|
||||
"Move to <em>{{ location }}</em>": "Move to <em>{{ location }}</em>",
|
||||
"Couldn’t move the template, try again?": "Couldn’t move the template, try again?",
|
||||
"Document options": "Document options",
|
||||
"New": "New",
|
||||
"Only visible to you": "Only visible to you",
|
||||
"Draft": "Draft",
|
||||
"Template": "Template",
|
||||
"You updated": "You updated",
|
||||
"{{ userName }} updated": "{{ userName }} updated",
|
||||
"You deleted": "You deleted",
|
||||
@@ -278,7 +294,6 @@
|
||||
"Please enter a name for the emoji": "Please enter a name for the emoji",
|
||||
"Please select an image file": "Please select an image file",
|
||||
"Emoji created successfully": "Emoji created successfully",
|
||||
"Uploading": "Uploading",
|
||||
"Add emoji": "Add emoji",
|
||||
"Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.": "Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.",
|
||||
"Upload an image": "Upload an image",
|
||||
@@ -467,6 +482,7 @@
|
||||
"Collapse sidebar": "Collapse sidebar",
|
||||
"Archived collections": "Archived collections",
|
||||
"New doc": "New doc",
|
||||
"New nested document": "New nested document",
|
||||
"Empty": "Empty",
|
||||
"No collections": "No collections",
|
||||
"Collapse": "Collapse",
|
||||
@@ -493,6 +509,8 @@
|
||||
"Unstar document": "Unstar document",
|
||||
"Star document": "Star document",
|
||||
"Select a color": "Select a colour",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents",
|
||||
"You’re editing a template": "You’re editing a template",
|
||||
"Template created, go ahead and customize it": "Template created, go ahead and customise it",
|
||||
"Creating a template from <em>{{titleWithDefault}}</em> is a non-destructive action – we'll make a copy of the document and turn it into a template that can be used as a starting point for new documents.": "Creating a template from <em>{{titleWithDefault}}</em> is a non-destructive action – we'll make a copy of the document and turn it into a template that can be used as a starting point for new documents.",
|
||||
"Enable other members to use the template immediately": "Enable other members to use the template immediately",
|
||||
@@ -632,6 +650,7 @@
|
||||
"Delete embed": "Delete embed",
|
||||
"Formatting controls": "Formatting controls",
|
||||
"Distribute columns": "Distribute columns",
|
||||
"Wrap text": "Wrap text",
|
||||
"Delete Emoji": "Delete Emoji",
|
||||
"Emoji deleted": "Emoji deleted",
|
||||
"I'm sure – Delete": "I'm sure – Delete",
|
||||
@@ -644,17 +663,19 @@
|
||||
"Unsubscribed from document": "Unsubscribed from document",
|
||||
"Unsubscribed from collection": "Unsubscribed from collection",
|
||||
"Account": "Account",
|
||||
"API & Apps": "API & Apps",
|
||||
"API & Access": "API & Access",
|
||||
"Details": "Details",
|
||||
"Authentication": "Authentication",
|
||||
"Security": "Security",
|
||||
"Features": "Features",
|
||||
"AI": "AI",
|
||||
"API Keys": "API Keys",
|
||||
"Applications": "Applications",
|
||||
"Shared Links": "Shared Links",
|
||||
"Import": "Import",
|
||||
"Install": "Install",
|
||||
"Embeds": "Embeds",
|
||||
"Configure which embed providers are available in the editor.": "Configure which embed providers are available in the editor.",
|
||||
"Integrations": "Integrations",
|
||||
"Install": "Install",
|
||||
"Change name": "Change name",
|
||||
"Change email": "Change email",
|
||||
"Suspend user": "Suspend user",
|
||||
@@ -685,8 +706,8 @@
|
||||
"Headings you add to the document will appear here": "Headings you add to the document will appear here",
|
||||
"Contents": "Contents",
|
||||
"Table of contents": "Table of contents",
|
||||
"Template options": "Template options",
|
||||
"User options": "User options",
|
||||
"template": "template",
|
||||
"document": "document",
|
||||
"Export complete": "Export complete",
|
||||
"Export failed": "Export failed",
|
||||
@@ -812,23 +833,15 @@
|
||||
"Sorry, the last change could not be persisted – please reload the page": "Sorry, the last change could not be persisted – please reload the page",
|
||||
"{{ count }} days": "{{ count }} day",
|
||||
"{{ count }} days_plural": "{{ count }} days",
|
||||
"This template will be permanently deleted in <2></2> unless restored.": "This template will be permanently deleted in <2></2> unless restored.",
|
||||
"This document will be permanently deleted in <2></2> unless restored.": "This document will be permanently deleted in <2></2> unless restored.",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents",
|
||||
"You’re editing a template": "You’re editing a template",
|
||||
"Deleted by {{userName}}": "Deleted by {{userName}}",
|
||||
"Observing {{ userName }}": "Observing {{ userName }}",
|
||||
"Backlinks": "Backlinks",
|
||||
"This document is large which may affect performance": "This document is large which may affect performance",
|
||||
"Are you sure you want to delete the <em>{{ documentTitle }}</em> template?": "Are you sure you want to delete the <em>{{ documentTitle }}</em> template?",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history</em>.": "Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>.": "Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>._plural": "Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested documents</em>.",
|
||||
"If you’d like the option of referencing or restoring the {{noun}} in the future, consider archiving it instead.": "If you’d like the option of referencing or restoring the {{noun}} in the future, consider archiving it instead.",
|
||||
"Select a location to move": "Select a location to move to",
|
||||
"Document moved": "Document moved",
|
||||
"Couldn’t move the document, try again?": "Couldn’t move the document, please try again?",
|
||||
"Move to <em>{{ location }}</em>": "Move to <em>{{ location }}</em>",
|
||||
"Couldn’t create the document, try again?": "Couldn’t create the document, try again?",
|
||||
"Document permanently deleted": "Document permanently deleted",
|
||||
"Are you sure you want to permanently delete the <em>{{ documentTitle }}</em> document? This action is immediate and cannot be undone.": "Are you sure you want to permanently delete the <em>{{ documentTitle }}</em> document? This action is immediate and cannot be undone.",
|
||||
@@ -885,7 +898,6 @@
|
||||
"Open this guide": "Open this guide",
|
||||
"Enter": "Enter",
|
||||
"Publish document and exit": "Publish document and exit",
|
||||
"Save document": "Save document",
|
||||
"Cancel editing": "Cancel editing",
|
||||
"Collaboration": "Collaboration",
|
||||
"Formatting": "Formatting",
|
||||
@@ -978,11 +990,14 @@
|
||||
"An error occurred": "An error occurred",
|
||||
"The OAuth client could not be found, please check the provided client ID": "The OAuth client could not be found, please check the provided client ID",
|
||||
"The OAuth client could not be loaded, please check the redirect URI is valid": "The OAuth client could not be loaded, please check the redirect URI is valid",
|
||||
"The OAuth client could not be loaded, please check your workspace subdomain is correct": "The OAuth client could not be loaded, please check your workspace subdomain is correct",
|
||||
"Required OAuth parameters are missing": "Required OAuth parameters are missing",
|
||||
"Authorize": "Authorise",
|
||||
"{{ appName }} wants to access {{ teamName }}": "{{ appName }} wants to access {{ teamName }}",
|
||||
"By <em>{{ developerName }}</em>": "By <em>{{ developerName }}</em>",
|
||||
"{{ appName }} will be able to access your account and perform the following actions": "{{ appName }} will be able to access your account and perform the following actions",
|
||||
"You will be redirected to a local application after authorizing.": "You will be redirected to a local application after authorizing.",
|
||||
"You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.": "You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.",
|
||||
"read": "read",
|
||||
"write": "write",
|
||||
"read and write": "read and write",
|
||||
@@ -1156,6 +1171,8 @@
|
||||
"Last accessed": "Last accessed",
|
||||
"Domain": "Domain",
|
||||
"Views": "Views",
|
||||
"Visibility": "Visibility",
|
||||
"Updated by": "Updated by",
|
||||
"All roles": "All roles",
|
||||
"Admins": "Admins",
|
||||
"Editors": "Editors",
|
||||
@@ -1188,15 +1205,26 @@
|
||||
"Your workspace will be accessible at": "Your workspace will be accessible at",
|
||||
"Choose a subdomain to enable a login page just for your team.": "Choose a subdomain to enable a login page just for your team.",
|
||||
"This is the screen that workspace members will first see when they sign in.": "This is the screen that workspace members will first see when they sign in.",
|
||||
"Danger": "Danger",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "You can delete this entire workspace including collections, documents, and users.",
|
||||
"Export data": "Export data",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.",
|
||||
"Recent exports": "Recent exports",
|
||||
"Manage optional and beta features. Changing these settings will affect the experience for all members of the workspace.": "Manage optional and beta features. Changing these settings will affect the experience for all members of the workspace.",
|
||||
"Separate editing": "Separate editing",
|
||||
"When enabled documents have a separate editing mode by default instead of being always editable. This setting can be overridden by user preferences.": "When enabled, documents have a separate editing mode by default instead of being always editable. This setting can be overridden by user preferences.",
|
||||
"When enabled team members can add comments to documents.": "When enabled, team members can add comments to documents.",
|
||||
"Danger": "Danger",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "You can delete this entire workspace including collections, documents, and users.",
|
||||
"Enabled": "Enabled",
|
||||
"Allow supported providers to be inserted as interactive embeds in documents.": "Allow supported providers to be inserted as interactive embeds in documents.",
|
||||
"Providers": "Providers",
|
||||
"Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.": "Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.",
|
||||
"All providers": "All providers",
|
||||
"Export data": "Export data",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.",
|
||||
"Recent exports": "Recent exports",
|
||||
"Manage AI and integration features for your workspace.": "Manage AI and integration features for your workspace.",
|
||||
"MCP server": "MCP server",
|
||||
"Allow members to connect to this workspace with MCP to read and write data.": "Allow members to connect to this workspace with MCP to read and write data.",
|
||||
"Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.": "Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.",
|
||||
"Copy URL": "Copy URL",
|
||||
"AI answers": "AI answers",
|
||||
"Use AI to get direct answers to questions in search. This feature requires a paid license.": "Use AI to get direct answers to questions in search. This feature requires a paid license.",
|
||||
"Create a group": "Create a group",
|
||||
"Could not load groups": "Could not load groups",
|
||||
"New group": "New group",
|
||||
@@ -1288,8 +1316,6 @@
|
||||
"When enabled, viewers can see download options for documents": "When enabled, viewers can see download options for documents",
|
||||
"Users can delete account": "Users can delete account",
|
||||
"When enabled, users can delete their own account from the workspace": "When enabled, users can delete their own account from the workspace",
|
||||
"Rich service embeds": "Rich service embeds",
|
||||
"Links to supported services are shown as rich embeds within your documents": "Links to supported services are shown as rich embeds within your documents",
|
||||
"Email address visibility": "Email address visibility",
|
||||
"Controls who can see user email addresses in the workspace": "Controls who can see user email addresses in the workspace",
|
||||
"Collection creation": "Collection creation",
|
||||
@@ -1300,9 +1326,10 @@
|
||||
"Sharing is currently disabled.": "Sharing is currently disabled.",
|
||||
"You can globally enable and disable public document sharing in the <em>security settings</em>.": "You can globally enable and disable public document sharing in the <em>security settings</em>.",
|
||||
"Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.": "Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.",
|
||||
"You can create templates to help your team create consistent and accurate documentation.": "You can create templates to help your team create consistent and accurate documentation.",
|
||||
"Alphabetical": "Alphabetical",
|
||||
"There are no templates just yet.": "There are no templates just yet.",
|
||||
"A template must have content": "A template must have content",
|
||||
"Could not load templates": "Could not load templates",
|
||||
"Templates help your team create consistent and accurate documentation.": "Templates help your team create consistent and accurate documentation.",
|
||||
"No templates have been created yet": "No templates have been created yet",
|
||||
"{{ teamName }} is using {{ appName }} to share documents, please login to continue.": "{{ teamName }} is using {{ appName }} to share documents, please login to continue.",
|
||||
"A confirmation code has been sent to your email address, please enter the code below to permanently destroy this workspace.": "A confirmation code has been sent to your email address; please enter the code below to permanently destroy this workspace.",
|
||||
"Confirmation code": "Confirmation code",
|
||||
@@ -1363,7 +1390,6 @@
|
||||
"New Attribute": "New Attribute",
|
||||
"Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.": "Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.",
|
||||
"Custom domain": "Custom domain",
|
||||
"AI answers": "AI answers",
|
||||
"Use AI to directly answer searched questions using content in your workspace.": "Use AI to directly answer searched questions using content in your workspace.",
|
||||
"API access": "API access",
|
||||
"Allow members to create API keys for programmatic access": "Allow members to create API keys for programmatic access",
|
||||
@@ -1413,6 +1439,27 @@
|
||||
"Enabled by {{integrationCreatedBy}}": "Enabled by {{integrationCreatedBy}}",
|
||||
"Disconnecting will prevent previewing GitHub links from this organization in documents. Are you sure?": "Disconnecting will prevent previewing GitHub links from this organisation in documents. Are you sure?",
|
||||
"The GitHub integration is currently disabled. Please set the associated environment variables and restart the server to enable the integration.": "The GitHub integration is currently disabled. Please set the associated environment variables and restart the server to enable the integration.",
|
||||
"Connect GitLab": "Connect GitLab",
|
||||
"Enter the details for your GitLab instance.": "Enter the details for your GitLab instance.",
|
||||
"GitLab URL": "GitLab URL",
|
||||
"URL must start with https": "URL must start with https",
|
||||
"Client ID": "Client ID",
|
||||
"OAuth application ID": "OAuth application ID",
|
||||
"Client Secret": "Client Secret",
|
||||
"OAuth application secret": "OAuth application secret",
|
||||
"Connecting": "Connecting",
|
||||
"Choose which GitLab instance to connect to.": "Choose which GitLab instance to connect to.",
|
||||
"GitLab Cloud": "GitLab Cloud",
|
||||
"Connect to your account on gitlab.com": "Connect to your account on gitlab.com",
|
||||
"GitLab Cloud credentials are not configured": "GitLab Cloud credentials are not configured",
|
||||
"Self-managed": "Self-managed",
|
||||
"Connect to a custom GitLab installation": "Connect to a custom GitLab installation",
|
||||
"You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?": "You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?",
|
||||
"The GitLab account is already connected to this workspace.": "The GitLab account is already connected to this workspace.",
|
||||
"Something went wrong while authenticating your request. Please try again.": "Something went wrong while authenticating your request. Please try again.",
|
||||
"The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.": "The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.",
|
||||
"Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.": "Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.",
|
||||
"Disconnecting will prevent previewing links from GitLab in documents. Are you sure?": "Disconnecting will prevent previewing links from GitLab in documents. Are you sure?",
|
||||
"Google Analytics": "Google Analytics",
|
||||
"Add a Google Analytics 4 measurement ID to send document views and analytics from the workspace to your own Google Analytics account.": "Add a Google Analytics 4 measurement ID to send document views and analytics from the workspace to your own Google Analytics account.",
|
||||
"Measurement ID": "Measurement ID",
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
"Collection permissions": "Permisos de la colección",
|
||||
"Share this collection": "Compartir esta colección",
|
||||
"Import document": "Importar documento",
|
||||
"Uploading": "Subiendo",
|
||||
"Sort in sidebar": "Ordenar en barra lateral",
|
||||
"A-Z sort": "Ordenado A-Z",
|
||||
"Z-A sort": "Ordenado Z-A",
|
||||
@@ -53,8 +54,9 @@
|
||||
"Development": "Desarrollo",
|
||||
"Open document": "Abrir documento",
|
||||
"New draft": "Nuevo borrador",
|
||||
"New from template": "Nuevo desde plantilla",
|
||||
"New nested document": "Nuevo documento anidado",
|
||||
"Nested document": "Nested document",
|
||||
"Before": "Before",
|
||||
"After": "After",
|
||||
"Publish": "Publicar",
|
||||
"Published {{ documentName }}": "Se ha publicado {{ documentName }}",
|
||||
"Publish document": "Publicar documento",
|
||||
@@ -91,9 +93,7 @@
|
||||
"Create template": "Crear plantilla",
|
||||
"Open random document": "Abrir documento aleatorio",
|
||||
"Search documents for \"{{searchQuery}}\"": "Buscar documentos por \"{{searchQuery}}\"",
|
||||
"Move to workspace": "Mover al espacio de trabajo",
|
||||
"Move": "Mover",
|
||||
"Move to collection": "Mover a la colección",
|
||||
"Move {{ documentType }}": "Mover {{ documentType }}",
|
||||
"Are you sure you want to archive this document?": "¿Estás seguro de que quieres archivar este documento?",
|
||||
"Document archived": "Documento archivado",
|
||||
@@ -165,6 +165,15 @@
|
||||
"New workspace": "Nuevo espacio de trabajo",
|
||||
"Create a workspace": "Crear un espacio de trabajo",
|
||||
"Login to workspace": "Iniciar sesión al espacio de trabajo",
|
||||
"Template deleted": "Template deleted",
|
||||
"Deleting": "Eliminando",
|
||||
"Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.": "Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.",
|
||||
"Move to workspace": "Mover al espacio de trabajo",
|
||||
"Template moved": "Template moved",
|
||||
"Couldn't move the template, try again?": "Couldn't move the template, try again?",
|
||||
"Move to collection": "Mover a la colección",
|
||||
"Move template": "Move template",
|
||||
"Print template": "Print template",
|
||||
"Invite people": "Invitar personas",
|
||||
"Invite to workspace": "Invitar al espacio de trabajo",
|
||||
"Promote to {{ role }}": "Promocionar a {{ role }}",
|
||||
@@ -176,6 +185,7 @@
|
||||
"Debug": "Depurar",
|
||||
"Document": "Documento",
|
||||
"Documents": "Documentos",
|
||||
"Template": "Plantilla",
|
||||
"Recently viewed": "Visto recientemente",
|
||||
"Revision": "Revisión",
|
||||
"Navigation": "Navegación",
|
||||
@@ -195,6 +205,7 @@
|
||||
"Collections are used to group documents and choose permissions": "Las colecciones se utilizan para agrupar documentos y elegir permisos",
|
||||
"Name": "Nombre",
|
||||
"The default access for workspace members, you can share with more users or groups later.": "El acceso predeterminado para los miembros del área de trabajo, puedes compartir con más usuarios o grupos después.",
|
||||
"Advanced options": "Advanced options",
|
||||
"Public document sharing": "Compartir documentos públicamente",
|
||||
"Allow documents within this collection to be shared publicly on the internet.": "Permitir que los documentos de esta colección sean compartidos públicamente en Internet.",
|
||||
"Commenting": "Comentando",
|
||||
@@ -205,10 +216,10 @@
|
||||
"Create": "Crear",
|
||||
"Collection deleted": "Colección eliminada",
|
||||
"I’m sure – Delete": "Estoy seguro – Eliminar",
|
||||
"Deleting": "Eliminando",
|
||||
"Are you sure about that? Deleting the <em>{{collectionName}}</em> collection is permanent and cannot be restored, however all published documents within will be moved to the trash.": "¿Estás seguro? La eliminación de la colección <em>{{collectionName}}</em> es permanente y no se podrá restaurar. Sin embargo, todos los documentos publicados dentro de esta se moverán a la papelera.",
|
||||
"Also, <em>{{collectionName}}</em> is being used as the start view – deleting it will reset the start view to the Home page.": "Además, la colección <em>{{collectionName}}</em> está siendo utilizada como vista inicial – eliminarla restablecerá la vista inicial a la página de Inicio.",
|
||||
"Type a command or search": "Escribe un comando o busca",
|
||||
"New from template": "Nuevo desde plantilla",
|
||||
"Choose a template": "Elige una plantilla",
|
||||
"Are you sure you want to permanently delete this entire comment thread?": "¿Estás seguro de que quieres eliminar permanentemente todo este hilo de comentarios?",
|
||||
"Are you sure you want to permanently delete this comment?": "¿Estás seguro de que quieres eliminar este comentario permanentemente?",
|
||||
@@ -227,12 +238,6 @@
|
||||
"Deleted Collection": "Colección Eliminada",
|
||||
"Untitled": "Sin título",
|
||||
"Unpin": "Desfijar",
|
||||
"Select a location to copy": "Seleccione una ubicación para copiar",
|
||||
"Document copied": "Documento copiado",
|
||||
"Couldn’t copy the document, try again?": "No se pudo copiar el documento, ¿intentar de nuevo?",
|
||||
"Include nested documents": "Incluir documentos anidados",
|
||||
"Copy to <em>{{ location }}</em>": "Copiar a <em>{{ location }}</em>",
|
||||
"Copying": "Copying",
|
||||
"Export started": "Exportación iniciada",
|
||||
"A link to your file will be sent through email soon": "A link to your file will be sent through email soon",
|
||||
"Preparing your download": "Preparing your download",
|
||||
@@ -242,13 +247,24 @@
|
||||
"Include child documents": "Include child documents",
|
||||
"When selected, exporting the document <em>{{documentName}}</em> may take some time.": "When selected, exporting the document <em>{{documentName}}</em> may take some time.",
|
||||
"You will receive an email when it's complete.": "Recibirás un correo electrónico cuando esté completado.",
|
||||
"Select a location to copy": "Seleccione una ubicación para copiar",
|
||||
"Document copied": "Documento copiado",
|
||||
"Couldn’t copy the document, try again?": "No se pudo copiar el documento, ¿intentar de nuevo?",
|
||||
"Include nested documents": "Incluir documentos anidados",
|
||||
"Copy to <em>{{ location }}</em>": "Copiar a <em>{{ location }}</em>",
|
||||
"Copying": "Copying",
|
||||
"Search collections & documents": "Buscar en colecciones y documentos",
|
||||
"Search collections": "Search collections",
|
||||
"No results found": "No se encontraron resultados",
|
||||
"Select a location to move": "Selecciona la nueva ubicación",
|
||||
"Document moved": "Documento movido",
|
||||
"Couldn’t move the document, try again?": "No se pudo mover el documento, ¿intentar de nuevo?",
|
||||
"Move to <em>{{ location }}</em>": "Mover a <em>{{ location }}</em>",
|
||||
"Couldn’t move the template, try again?": "Couldn’t move the template, try again?",
|
||||
"Document options": "Opciones del documento",
|
||||
"New": "Nuevo",
|
||||
"Only visible to you": "Solo visible para ti",
|
||||
"Draft": "Borrador",
|
||||
"Template": "Plantilla",
|
||||
"You updated": "Has actualizado",
|
||||
"{{ userName }} updated": "{{ userName }} ha actualizado",
|
||||
"You deleted": "Has eliminado",
|
||||
@@ -278,7 +294,6 @@
|
||||
"Please enter a name for the emoji": "Please enter a name for the emoji",
|
||||
"Please select an image file": "Please select an image file",
|
||||
"Emoji created successfully": "Emoji created successfully",
|
||||
"Uploading": "Subiendo",
|
||||
"Add emoji": "Add emoji",
|
||||
"Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.": "Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.",
|
||||
"Upload an image": "Upload an image",
|
||||
@@ -467,6 +482,7 @@
|
||||
"Collapse sidebar": "Collapse sidebar",
|
||||
"Archived collections": "Colecciones archivadas",
|
||||
"New doc": "Nuevo doc",
|
||||
"New nested document": "Nuevo documento anidado",
|
||||
"Empty": "Vacío",
|
||||
"No collections": "No collections",
|
||||
"Collapse": "Colapsar",
|
||||
@@ -493,6 +509,8 @@
|
||||
"Unstar document": "Eliminar documento de favoritos",
|
||||
"Star document": "Marcar documento como favorito",
|
||||
"Select a color": "Selecciona un color",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Resalta algo de texto y usa el control <1></1> para añadir campos que se pueden llenar al crear nuevos documentos",
|
||||
"You’re editing a template": "Estás editando una plantilla",
|
||||
"Template created, go ahead and customize it": "Plantilla creada, procede a personalizarla",
|
||||
"Creating a template from <em>{{titleWithDefault}}</em> is a non-destructive action – we'll make a copy of the document and turn it into a template that can be used as a starting point for new documents.": "Crear una plantilla a partir de <em>{{titleWithDefault}}</em> es una acción no destructiva – crearemos una copia del documento y la convertiremos en una plantilla que se puede utilizar como punto de partida para nuevos documentos.",
|
||||
"Enable other members to use the template immediately": "Habilitar a otros miembros para utilizar la plantilla inmediatamente",
|
||||
@@ -632,6 +650,7 @@
|
||||
"Delete embed": "Eliminar incrustado",
|
||||
"Formatting controls": "Formatting controls",
|
||||
"Distribute columns": "Distribute columns",
|
||||
"Wrap text": "Wrap text",
|
||||
"Delete Emoji": "Delete Emoji",
|
||||
"Emoji deleted": "Emoji deleted",
|
||||
"I'm sure – Delete": "I'm sure – Delete",
|
||||
@@ -644,17 +663,19 @@
|
||||
"Unsubscribed from document": "Desuscrito del documento",
|
||||
"Unsubscribed from collection": "Dado de baja de la colección",
|
||||
"Account": "Cuenta",
|
||||
"API & Apps": "API y aplicaciones",
|
||||
"API & Access": "API & Access",
|
||||
"Details": "Detalles",
|
||||
"Authentication": "Authentication",
|
||||
"Security": "Seguridad",
|
||||
"Features": "Características",
|
||||
"AI": "AI",
|
||||
"API Keys": "Claves API",
|
||||
"Applications": "Aplicaciones",
|
||||
"Shared Links": "Enlaces compartidos",
|
||||
"Import": "Importar",
|
||||
"Install": "Instalar",
|
||||
"Embeds": "Embeds",
|
||||
"Configure which embed providers are available in the editor.": "Configure which embed providers are available in the editor.",
|
||||
"Integrations": "Integraciones",
|
||||
"Install": "Instalar",
|
||||
"Change name": "Cambiar nombre",
|
||||
"Change email": "Modificar correo electrónico",
|
||||
"Suspend user": "Suspender usuario",
|
||||
@@ -685,8 +706,8 @@
|
||||
"Headings you add to the document will appear here": "Los encabezados que añadas al documento aparecerán aquí",
|
||||
"Contents": "Contenidos",
|
||||
"Table of contents": "Tabla de contenido",
|
||||
"Template options": "Template options",
|
||||
"User options": "Opciones del usuario",
|
||||
"template": "plantilla",
|
||||
"document": "documento",
|
||||
"Export complete": "Export complete",
|
||||
"Export failed": "Export failed",
|
||||
@@ -812,23 +833,15 @@
|
||||
"Sorry, the last change could not be persisted – please reload the page": "Lo sentimos, el último cambio no se pudo guardar – por favor recarga la página",
|
||||
"{{ count }} days": "{{ count }} día",
|
||||
"{{ count }} days_plural": "{{ count }} días",
|
||||
"This template will be permanently deleted in <2></2> unless restored.": "Esta plantilla se eliminará de forma permanente en <2></2> a menos que se restaure.",
|
||||
"This document will be permanently deleted in <2></2> unless restored.": "Este documento se eliminará permanentemente en <2></2> a menos de que se restaure.",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Resalta algo de texto y usa el control <1></1> para añadir campos que se pueden llenar al crear nuevos documentos",
|
||||
"You’re editing a template": "Estás editando una plantilla",
|
||||
"Deleted by {{userName}}": "Eliminado por {{userName}}",
|
||||
"Observing {{ userName }}": "Observando {{ userName }}",
|
||||
"Backlinks": "Enlaces de retroceso",
|
||||
"This document is large which may affect performance": "Este documento es grande y puede afectar al rendimiento",
|
||||
"Are you sure you want to delete the <em>{{ documentTitle }}</em> template?": "¿Estás seguro de que quieres eliminar la plantilla <em>{{ documentTitle }}</em>?",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history</em>.": "¿Estás seguro? Eliminar el documento <em>{{ documentTitle }}</em> eliminará todo su historial</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>.": "¿Estás seguro? Eliminar el documento <em>{{ documentTitle }}</em> eliminará todo su historial y <em>{{ any }} documento anidado</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>._plural": "¿Estás seguro? Eliminar el documento <em>{{ documentTitle }}</em> eliminará todo su historial y <em>{{ any }} documentos anidados</em>.",
|
||||
"If you’d like the option of referencing or restoring the {{noun}} in the future, consider archiving it instead.": "Si quieres tener la opción de referenciar o restaurar el/la {{noun}} en el futuro, considera archivarlo en lugar de eliminarlo.",
|
||||
"Select a location to move": "Selecciona la nueva ubicación",
|
||||
"Document moved": "Documento movido",
|
||||
"Couldn’t move the document, try again?": "No se pudo mover el documento, ¿intentar de nuevo?",
|
||||
"Move to <em>{{ location }}</em>": "Mover a <em>{{ location }}</em>",
|
||||
"Couldn’t create the document, try again?": "No se pudo crear el documento, ¿intentar de nuevo?",
|
||||
"Document permanently deleted": "Documento eliminado permanentemente",
|
||||
"Are you sure you want to permanently delete the <em>{{ documentTitle }}</em> document? This action is immediate and cannot be undone.": "¿Estás seguro de que quieres eliminar permanentemente el documento <em>{{ documentTitle }}</em>? Esta acción es inmediata y no se puede deshacer.",
|
||||
@@ -885,7 +898,6 @@
|
||||
"Open this guide": "Abrir esta guía",
|
||||
"Enter": "Intro",
|
||||
"Publish document and exit": "Publicar documento y salir",
|
||||
"Save document": "Guardar documento",
|
||||
"Cancel editing": "Cancelar edición",
|
||||
"Collaboration": "Colaboración",
|
||||
"Formatting": "Formato",
|
||||
@@ -978,11 +990,14 @@
|
||||
"An error occurred": "Ha ocurrido un error",
|
||||
"The OAuth client could not be found, please check the provided client ID": "The OAuth client could not be found, please check the provided client ID",
|
||||
"The OAuth client could not be loaded, please check the redirect URI is valid": "The OAuth client could not be loaded, please check the redirect URI is valid",
|
||||
"The OAuth client could not be loaded, please check your workspace subdomain is correct": "The OAuth client could not be loaded, please check your workspace subdomain is correct",
|
||||
"Required OAuth parameters are missing": "Required OAuth parameters are missing",
|
||||
"Authorize": " Ocurrió un error",
|
||||
"{{ appName }} wants to access {{ teamName }}": "",
|
||||
"By <em>{{ developerName }}</em>": "Por <em>{{ developerName }}</em>",
|
||||
"{{ appName }} will be able to access your account and perform the following actions": "{{ appName }} will be able to access your account and perform the following actions",
|
||||
"You will be redirected to a local application after authorizing.": "You will be redirected to a local application after authorizing.",
|
||||
"You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.": "You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.",
|
||||
"read": "leer",
|
||||
"write": "escribir",
|
||||
"read and write": "leer y escribir",
|
||||
@@ -1156,6 +1171,8 @@
|
||||
"Last accessed": "Ultimo acceso",
|
||||
"Domain": "Dominio",
|
||||
"Views": "Vistas",
|
||||
"Visibility": "Visibility",
|
||||
"Updated by": "Updated by",
|
||||
"All roles": "Todos los roles",
|
||||
"Admins": "Administradores",
|
||||
"Editors": "Editores",
|
||||
@@ -1188,15 +1205,26 @@
|
||||
"Your workspace will be accessible at": "Tu espacio de trabajo podrá ser accedido en",
|
||||
"Choose a subdomain to enable a login page just for your team.": "Elige un subdominio para habilitar una página de inicio de sesión única para tu equipo.",
|
||||
"This is the screen that workspace members will first see when they sign in.": "Esta es la pantalla que los miembros del espacio verán primero al iniciar sesión.",
|
||||
"Danger": "Peligro",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "You can delete this entire workspace including collections, documents, and users.",
|
||||
"Export data": "Exportar datos",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "Una exportación completa puede tardar un poco. Considera exportar un solo documento o colección. Puedes salir de esta página una vez iniciada la exportación; si tienes las notificaciones activadas, te enviaremos un enlace a <em>{{ userEmail }}</em> cuando haya finalizado.",
|
||||
"Recent exports": "Exportaciones recientes",
|
||||
"Manage optional and beta features. Changing these settings will affect the experience for all members of the workspace.": "Gestiona funciones opcionales y beta. Cambiar esta configuración afectará la experiencia de todos los miembros del espacio de trabajo.",
|
||||
"Separate editing": "Edición separada",
|
||||
"When enabled documents have a separate editing mode by default instead of being always editable. This setting can be overridden by user preferences.": "Cuando está activado, los documentos tienen un modo de edición separada por defecto en lugar de ser siempre editables. Esta configuración puede ser sobrescrita por las preferencias del usuario.",
|
||||
"When enabled team members can add comments to documents.": "Cuando está activado, miembros del equipo pueden añadir comentarios a los documentos.",
|
||||
"Danger": "Peligro",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "You can delete this entire workspace including collections, documents, and users.",
|
||||
"Enabled": "Enabled",
|
||||
"Allow supported providers to be inserted as interactive embeds in documents.": "Allow supported providers to be inserted as interactive embeds in documents.",
|
||||
"Providers": "Providers",
|
||||
"Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.": "Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.",
|
||||
"All providers": "All providers",
|
||||
"Export data": "Exportar datos",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "Una exportación completa puede tardar un poco. Considera exportar un solo documento o colección. Puedes salir de esta página una vez iniciada la exportación; si tienes las notificaciones activadas, te enviaremos un enlace a <em>{{ userEmail }}</em> cuando haya finalizado.",
|
||||
"Recent exports": "Exportaciones recientes",
|
||||
"Manage AI and integration features for your workspace.": "Manage AI and integration features for your workspace.",
|
||||
"MCP server": "MCP server",
|
||||
"Allow members to connect to this workspace with MCP to read and write data.": "Allow members to connect to this workspace with MCP to read and write data.",
|
||||
"Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.": "Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.",
|
||||
"Copy URL": "Copy URL",
|
||||
"AI answers": "AI answers",
|
||||
"Use AI to get direct answers to questions in search. This feature requires a paid license.": "Use AI to get direct answers to questions in search. This feature requires a paid license.",
|
||||
"Create a group": "Crear un grupo",
|
||||
"Could not load groups": "No se han podido cargar los grupos",
|
||||
"New group": "Nuevo grupo",
|
||||
@@ -1288,8 +1316,6 @@
|
||||
"When enabled, viewers can see download options for documents": "Cuando está habilitado, los lectores pueden ver las opciones de descarga de documentos",
|
||||
"Users can delete account": "Los usuarios pueden eliminar la cuenta",
|
||||
"When enabled, users can delete their own account from the workspace": "Cuando está habilitado, los usuarios pueden eliminar su propia cuenta del espacio de trabajo",
|
||||
"Rich service embeds": "Embeds de servicios enriquecidos",
|
||||
"Links to supported services are shown as rich embeds within your documents": "Los enlaces a los servicios soportados se muestran como embeds enriquecidos dentro de tus documentos",
|
||||
"Email address visibility": "Email address visibility",
|
||||
"Controls who can see user email addresses in the workspace": "Controls who can see user email addresses in the workspace",
|
||||
"Collection creation": "Creación de colección",
|
||||
@@ -1300,9 +1326,10 @@
|
||||
"Sharing is currently disabled.": "Compartir está deshabilitado actualmente.",
|
||||
"You can globally enable and disable public document sharing in the <em>security settings</em>.": "Puedes activar y desactivar globalmente el uso de documentos compartidos públicamente en la <em>configuración de seguridad</em>.",
|
||||
"Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.": "Los documentos que se han compartido se enumeran a continuación. Cualquiera que tenga el enlace público podrá acceder a una versión de solo lectura del documento hasta que se revoque el enlace.",
|
||||
"You can create templates to help your team create consistent and accurate documentation.": "Puedes crear plantillas para ayudar a tu equipo a crear documentación coherente y precisa.",
|
||||
"Alphabetical": "Alfabético",
|
||||
"There are no templates just yet.": "Aún no hay plantillas.",
|
||||
"A template must have content": "A template must have content",
|
||||
"Could not load templates": "Could not load templates",
|
||||
"Templates help your team create consistent and accurate documentation.": "Templates help your team create consistent and accurate documentation.",
|
||||
"No templates have been created yet": "No templates have been created yet",
|
||||
"{{ teamName }} is using {{ appName }} to share documents, please login to continue.": "{{ teamName }} está usando {{ appName }} para compartir documentos, inicia sesión para continuar.",
|
||||
"A confirmation code has been sent to your email address, please enter the code below to permanently destroy this workspace.": "Un código de confirmación ha sido enviado a tu dirección de correo electrónico, por favor ingresa el código a continuación para eliminar permanentemente este espacio de trabajo.",
|
||||
"Confirmation code": "Código de confirmación",
|
||||
@@ -1363,7 +1390,6 @@
|
||||
"New Attribute": "New Attribute",
|
||||
"Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.": "Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.",
|
||||
"Custom domain": "Custom domain",
|
||||
"AI answers": "AI answers",
|
||||
"Use AI to directly answer searched questions using content in your workspace.": "Use AI to directly answer searched questions using content in your workspace.",
|
||||
"API access": "API access",
|
||||
"Allow members to create API keys for programmatic access": "Allow members to create API keys for programmatic access",
|
||||
@@ -1413,6 +1439,27 @@
|
||||
"Enabled by {{integrationCreatedBy}}": "Habilitado por {{integrationCreatedBy}}",
|
||||
"Disconnecting will prevent previewing GitHub links from this organization in documents. Are you sure?": "Desconectar impedirá previsualizar los enlaces de GitHub de esta organización en documentos. ¿Estás seguro?",
|
||||
"The GitHub integration is currently disabled. Please set the associated environment variables and restart the server to enable the integration.": "La integración de GitHub está desactivada. Configura las variables de entorno asociadas y reinicia el servidor para habilitar la integración.",
|
||||
"Connect GitLab": "Connect GitLab",
|
||||
"Enter the details for your GitLab instance.": "Enter the details for your GitLab instance.",
|
||||
"GitLab URL": "GitLab URL",
|
||||
"URL must start with https": "URL must start with https",
|
||||
"Client ID": "Client ID",
|
||||
"OAuth application ID": "OAuth application ID",
|
||||
"Client Secret": "Client Secret",
|
||||
"OAuth application secret": "OAuth application secret",
|
||||
"Connecting": "Connecting",
|
||||
"Choose which GitLab instance to connect to.": "Choose which GitLab instance to connect to.",
|
||||
"GitLab Cloud": "GitLab Cloud",
|
||||
"Connect to your account on gitlab.com": "Connect to your account on gitlab.com",
|
||||
"GitLab Cloud credentials are not configured": "GitLab Cloud credentials are not configured",
|
||||
"Self-managed": "Self-managed",
|
||||
"Connect to a custom GitLab installation": "Connect to a custom GitLab installation",
|
||||
"You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?": "You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?",
|
||||
"The GitLab account is already connected to this workspace.": "The GitLab account is already connected to this workspace.",
|
||||
"Something went wrong while authenticating your request. Please try again.": "Something went wrong while authenticating your request. Please try again.",
|
||||
"The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.": "The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.",
|
||||
"Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.": "Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.",
|
||||
"Disconnecting will prevent previewing links from GitLab in documents. Are you sure?": "Disconnecting will prevent previewing links from GitLab in documents. Are you sure?",
|
||||
"Google Analytics": "Google Analytics",
|
||||
"Add a Google Analytics 4 measurement ID to send document views and analytics from the workspace to your own Google Analytics account.": "Añade un ID de seguimiento de Google Analytics 4 para enviar vistas y análisis de documentos desde el espacio de trabajo a tu propia cuenta de Google Analytics.",
|
||||
"Measurement ID": "ID de seguimiento",
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
"Collection permissions": "دسترسیهای مجموعه",
|
||||
"Share this collection": "جستجو در مجموعه",
|
||||
"Import document": "وارد کردن سند",
|
||||
"Uploading": "در حال بارگذاری",
|
||||
"Sort in sidebar": "مرتبسازی در نوار کناری",
|
||||
"A-Z sort": "مرتبسازی از A تا Z",
|
||||
"Z-A sort": "مرتبسازی از Z تا A",
|
||||
@@ -53,8 +54,9 @@
|
||||
"Development": "محیط توسعه",
|
||||
"Open document": "باز کردن سند",
|
||||
"New draft": "پیشنویس",
|
||||
"New from template": "جدید از قالب",
|
||||
"New nested document": "ایجاد زیرسند جدید",
|
||||
"Nested document": "Nested document",
|
||||
"Before": "Before",
|
||||
"After": "After",
|
||||
"Publish": "انتشار",
|
||||
"Published {{ documentName }}": "منتشر شد: {{ documentName }}",
|
||||
"Publish document": "انتشار سند",
|
||||
@@ -91,9 +93,7 @@
|
||||
"Create template": "ایجاد قالب",
|
||||
"Open random document": "بازکردن مستند تصادفی",
|
||||
"Search documents for \"{{searchQuery}}\"": "جستجوی اسناد برای \"{{searchQuery}}\"",
|
||||
"Move to workspace": "وارد شدن به workspace",
|
||||
"Move": "انتقال",
|
||||
"Move to collection": "سنجاق کردن به مجموعه",
|
||||
"Move {{ documentType }}": "انتقال {{ documentType }}",
|
||||
"Are you sure you want to archive this document?": "آیا اطمینان دارید که میخواهید این سند را آرشیو کنید ؟",
|
||||
"Document archived": "سند آرشیو شد",
|
||||
@@ -165,6 +165,15 @@
|
||||
"New workspace": "مجموعه جدید",
|
||||
"Create a workspace": "مجموعه ایجاد کنید",
|
||||
"Login to workspace": "وارد شدن به workspace",
|
||||
"Template deleted": "Template deleted",
|
||||
"Deleting": "در حال حذف کردن",
|
||||
"Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.": "Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.",
|
||||
"Move to workspace": "وارد شدن به workspace",
|
||||
"Template moved": "Template moved",
|
||||
"Couldn't move the template, try again?": "Couldn't move the template, try again?",
|
||||
"Move to collection": "سنجاق کردن به مجموعه",
|
||||
"Move template": "Move template",
|
||||
"Print template": "Print template",
|
||||
"Invite people": "دعوت از افراد",
|
||||
"Invite to workspace": "وارد شدن به workspace",
|
||||
"Promote to {{ role }}": "تغییر نقش به {{ role }}",
|
||||
@@ -176,6 +185,7 @@
|
||||
"Debug": "دیباگ",
|
||||
"Document": "سند",
|
||||
"Documents": "اسناد",
|
||||
"Template": "قالب",
|
||||
"Recently viewed": "اخیراً دیده شده",
|
||||
"Revision": "بازنگری",
|
||||
"Navigation": "پیمایش",
|
||||
@@ -195,6 +205,7 @@
|
||||
"Collections are used to group documents and choose permissions": "مجموعهها برای گروهبندی اسناد و پیکربندی سطح دسترسی ها استفاده میشوند",
|
||||
"Name": "نام",
|
||||
"The default access for workspace members, you can share with more users or groups later.": "سطح دسترسی پیشفرض برای اعضای فضای کار، شما میتوانید بعداً با کاربران یا گروههای بیشتری به اشتراک بگذارید.",
|
||||
"Advanced options": "Advanced options",
|
||||
"Public document sharing": "اشتراکگذاری عمومی سندها",
|
||||
"Allow documents within this collection to be shared publicly on the internet.": "در صورت فعال بودن، هر سندی در این مجموعه را می توان به صورت عمومی در اینترنت به اشتراک گذاشت.",
|
||||
"Commenting": "نظردهی",
|
||||
@@ -205,10 +216,10 @@
|
||||
"Create": "ساختن",
|
||||
"Collection deleted": "مجموعه حذف شد",
|
||||
"I’m sure – Delete": "مطمئن هستم - حذف شود",
|
||||
"Deleting": "در حال حذف کردن",
|
||||
"Are you sure about that? Deleting the <em>{{collectionName}}</em> collection is permanent and cannot be restored, however all published documents within will be moved to the trash.": "آیا مطمئن هستید؟ حذف مجموعه <em>{{collectionName}}</em> دائمی و غیرقابل بازیابیست؛ هرچند اسناد داخل آن به سطل زباله منتقل میشوند.",
|
||||
"Also, <em>{{collectionName}}</em> is being used as the start view – deleting it will reset the start view to the Home page.": "همچنین، <em>{{collectionName}}</em> به عنوان نمای شروع استفاده می شود - با حذف آن، نمای شروع به صفحه اصلی بازگردانده می شود.",
|
||||
"Type a command or search": "دستور مورد نظر را بنویسید یا جستجو کنید",
|
||||
"New from template": "جدید از قالب",
|
||||
"Choose a template": "انتخاب قالب",
|
||||
"Are you sure you want to permanently delete this entire comment thread?": "آیا از حذف دائمی کل این گفتوگو اطمینان دارید؟",
|
||||
"Are you sure you want to permanently delete this comment?": "آیا مطمئنید که میخواهید کامنت را برای همیشه حذف کنید؟",
|
||||
@@ -227,12 +238,6 @@
|
||||
"Deleted Collection": "مجموعههای حذف شده",
|
||||
"Untitled": "بدون عنوان",
|
||||
"Unpin": "برداشتن سنجاق",
|
||||
"Select a location to copy": "انتخاب یک مکان برای کپی",
|
||||
"Document copied": "فایل مورد نظر کپی شد",
|
||||
"Couldn’t copy the document, try again?": "امکان کپی سند وجود نداشت، دوباره تلاش شود؟",
|
||||
"Include nested documents": "شامل زیرسندها",
|
||||
"Copy to <em>{{ location }}</em>": "کپی به <em>{{ location }}</em>",
|
||||
"Copying": "Copying",
|
||||
"Export started": "فرآیند خروجی گرفتن آغاز شد",
|
||||
"A link to your file will be sent through email soon": "A link to your file will be sent through email soon",
|
||||
"Preparing your download": "Preparing your download",
|
||||
@@ -242,13 +247,24 @@
|
||||
"Include child documents": "Include child documents",
|
||||
"When selected, exporting the document <em>{{documentName}}</em> may take some time.": "When selected, exporting the document <em>{{documentName}}</em> may take some time.",
|
||||
"You will receive an email when it's complete.": "پس از اتمام، ایمیلی دریافت خواهید کرد",
|
||||
"Select a location to copy": "انتخاب یک مکان برای کپی",
|
||||
"Document copied": "فایل مورد نظر کپی شد",
|
||||
"Couldn’t copy the document, try again?": "امکان کپی سند وجود نداشت، دوباره تلاش شود؟",
|
||||
"Include nested documents": "شامل زیرسندها",
|
||||
"Copy to <em>{{ location }}</em>": "کپی به <em>{{ location }}</em>",
|
||||
"Copying": "Copying",
|
||||
"Search collections & documents": "جستجوی مجموعه ها و اسناد",
|
||||
"Search collections": "Search collections",
|
||||
"No results found": "نتیجهای یافت نشد",
|
||||
"Select a location to move": "مکانی را برای انتقال انتخاب کنید",
|
||||
"Document moved": "سند منتقل شد",
|
||||
"Couldn’t move the document, try again?": "امکان انتقال سند وجود نداشت، دوباره سعی شود؟",
|
||||
"Move to <em>{{ location }}</em>": "انتقال به <em>{{ location }}</em>",
|
||||
"Couldn’t move the template, try again?": "Couldn’t move the template, try again?",
|
||||
"Document options": "گزینههای سند",
|
||||
"New": "جدید",
|
||||
"Only visible to you": "تنها قابل مشاهده برای شما",
|
||||
"Draft": "پیشنویس",
|
||||
"Template": "قالب",
|
||||
"You updated": "بهروزرسانی کردی",
|
||||
"{{ userName }} updated": "{{ userName }} بهروزرسانی کرد",
|
||||
"You deleted": "حذف کردی",
|
||||
@@ -278,7 +294,6 @@
|
||||
"Please enter a name for the emoji": "Please enter a name for the emoji",
|
||||
"Please select an image file": "Please select an image file",
|
||||
"Emoji created successfully": "Emoji created successfully",
|
||||
"Uploading": "در حال بارگذاری",
|
||||
"Add emoji": "Add emoji",
|
||||
"Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.": "Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.",
|
||||
"Upload an image": "بارگذاری تصویر",
|
||||
@@ -467,6 +482,7 @@
|
||||
"Collapse sidebar": "پنهان کردن نوار کناری",
|
||||
"Archived collections": "مجموعههای بایگانی شده",
|
||||
"New doc": "سند جدید",
|
||||
"New nested document": "ایجاد زیرسند جدید",
|
||||
"Empty": "خالی",
|
||||
"No collections": "هیچ مجموعهای وجود ندارد",
|
||||
"Collapse": "پنهان کردن",
|
||||
@@ -493,6 +509,8 @@
|
||||
"Unstar document": "حذف ستاره از سند",
|
||||
"Star document": "ستارهدار کردن سند",
|
||||
"Select a color": "یک رنگ را انتخاب کنید",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "متنی را هایلایت کنید و از کنترل <1></1> برای افزودن جایگزینهایی استفاده کنید که میتوانند هنگام ایجاد اسناد جدید پر شوند",
|
||||
"You’re editing a template": "شما در حال ویرایش قالب هستید",
|
||||
"Template created, go ahead and customize it": "الگو ایجاد شد، پیش بروید و آن را سفارشی کنید",
|
||||
"Creating a template from <em>{{titleWithDefault}}</em> is a non-destructive action – we'll make a copy of the document and turn it into a template that can be used as a starting point for new documents.": "ایجاد الگو از <em>{{titleWithDefault}}</em> باعث تخریب چیزی نمیشود - ما یک کپی از سند ایجاد می کنیم و آن را به الگویی تبدیل می کنیم که می تواند به عنوان نقطه شروع اسناد جدید استفاده شود.",
|
||||
"Enable other members to use the template immediately": "امکان استفادهٔ فوری دیگر اعضا از قالب فراهم شود",
|
||||
@@ -632,6 +650,7 @@
|
||||
"Delete embed": "حذف جاسازی",
|
||||
"Formatting controls": "Formatting controls",
|
||||
"Distribute columns": "Distribute columns",
|
||||
"Wrap text": "Wrap text",
|
||||
"Delete Emoji": "Delete Emoji",
|
||||
"Emoji deleted": "Emoji deleted",
|
||||
"I'm sure – Delete": "I'm sure – Delete",
|
||||
@@ -644,17 +663,19 @@
|
||||
"Unsubscribed from document": "دریافت اعلانهای این سند متوقف شد",
|
||||
"Unsubscribed from collection": "دریافت اعلانهای این مجموعه متوقف شد",
|
||||
"Account": "حساب",
|
||||
"API & Apps": "API و برنامهها",
|
||||
"API & Access": "API & Access",
|
||||
"Details": "جزئیات",
|
||||
"Authentication": "Authentication",
|
||||
"Security": "امنیت",
|
||||
"Features": "ویژگیها",
|
||||
"AI": "AI",
|
||||
"API Keys": "کلیدهای API",
|
||||
"Applications": "اپلیکیشنها",
|
||||
"Shared Links": "لینکهای اشتراکی",
|
||||
"Import": "درونریزی",
|
||||
"Install": "نصب",
|
||||
"Embeds": "Embeds",
|
||||
"Configure which embed providers are available in the editor.": "Configure which embed providers are available in the editor.",
|
||||
"Integrations": "یکپارچه سازی به سرویس های خارجی",
|
||||
"Install": "نصب",
|
||||
"Change name": "تغییر نام",
|
||||
"Change email": "تغییر ایمیل",
|
||||
"Suspend user": "تعلیق کاربر",
|
||||
@@ -685,8 +706,8 @@
|
||||
"Headings you add to the document will appear here": "عناوینی که به سند اضافه میکنید اینجا نمایش داده میشوند",
|
||||
"Contents": "محتوا",
|
||||
"Table of contents": "فهرست مطالب",
|
||||
"Template options": "Template options",
|
||||
"User options": "گزینههای کاربر",
|
||||
"template": "قالب",
|
||||
"document": "سند",
|
||||
"Export complete": "Export complete",
|
||||
"Export failed": "Export failed",
|
||||
@@ -812,23 +833,15 @@
|
||||
"Sorry, the last change could not be persisted – please reload the page": "متأسفیم، آخرین تغییر ذخیره نشد – لطفاً صفحه را دوباره بارگذاری کنید",
|
||||
"{{ count }} days": "{{ count }} روز",
|
||||
"{{ count }} days_plural": "{{ count }} روز",
|
||||
"This template will be permanently deleted in <2></2> unless restored.": "این قالب برای همیشه در <2></2> حذف خواهد شد، مگر اینکه بازیابی شود.",
|
||||
"This document will be permanently deleted in <2></2> unless restored.": "این سند برای همیشه در <2></2> حذف خواهد شد، مگر اینکه بازیابی شود.",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "متنی را هایلایت کنید و از کنترل <1></1> برای افزودن جایگزینهایی استفاده کنید که میتوانند هنگام ایجاد اسناد جدید پر شوند",
|
||||
"You’re editing a template": "شما در حال ویرایش قالب هستید",
|
||||
"Deleted by {{userName}}": "حذف شده توسط {{userName}}",
|
||||
"Observing {{ userName }}": "مشاهده {{ userName }}",
|
||||
"Backlinks": "بک لینک ها",
|
||||
"This document is large which may affect performance": "این سند بزرگ است و ممکن است بر عملکرد تأثیر بگذارد",
|
||||
"Are you sure you want to delete the <em>{{ documentTitle }}</em> template?": "آیا مطمئن هستید که میخواهید قالب <em>{{ documentTitle }}</em> را حذف کنید؟",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history</em>.": "آیا مطمئن هستید؟ حذف سند <em>{{ documentTitle }}</em> تمام تاریخچه آن را حذف خواهد کرد.</em>",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>.": "آیا مطمئن هستید؟ حذف سند <em>{{ documentTitle }}</em> تمام تاریخچه آن و <em>{{ any }} سند تو در تو</em> را حذف خواهد کرد.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>._plural": "آیا مطمئن هستید؟ حذف سند <em>{{ documentTitle }}</em> تمام تاریخچه آن و <em>{{ any }} اسناد تو در تو</em> را حذف خواهد کرد.",
|
||||
"If you’d like the option of referencing or restoring the {{noun}} in the future, consider archiving it instead.": "اگر میخواهید امکان ارجاع یا بازیابی {{noun}} را در آینده داشته باشید، بهتر است آن را آرشیو کنید.",
|
||||
"Select a location to move": "مکانی را برای انتقال انتخاب کنید",
|
||||
"Document moved": "سند منتقل شد",
|
||||
"Couldn’t move the document, try again?": "امکان انتقال سند وجود نداشت، دوباره سعی شود؟",
|
||||
"Move to <em>{{ location }}</em>": "انتقال به <em>{{ location }}</em>",
|
||||
"Couldn’t create the document, try again?": "امکان ایجاد سند وجود نداشت، دوباره سعی شود؟",
|
||||
"Document permanently deleted": "سند برای همیشه حذف شد",
|
||||
"Are you sure you want to permanently delete the <em>{{ documentTitle }}</em> document? This action is immediate and cannot be undone.": "آیا مطمئن هستید که سند <em>{{ documentTitle }}</em> را حذف نمایید؟ این اقدام در لحظه انجام میشود و قابل واگرد نیست.",
|
||||
@@ -885,7 +898,6 @@
|
||||
"Open this guide": "باز کردن این راهنما",
|
||||
"Enter": "تأیید",
|
||||
"Publish document and exit": "انتشار سند و خروج",
|
||||
"Save document": "ذخیره سند",
|
||||
"Cancel editing": "لغو ویرایش",
|
||||
"Collaboration": "همکاری",
|
||||
"Formatting": "قالببندی",
|
||||
@@ -978,11 +990,14 @@
|
||||
"An error occurred": "یک خطا رخ داده است",
|
||||
"The OAuth client could not be found, please check the provided client ID": "کلاینت OAuth پیدا نشد، لطفاً شناسه کلاینت ارائه شده را بررسی کنید",
|
||||
"The OAuth client could not be loaded, please check the redirect URI is valid": "کلاینت OAuth بارگذاری نشد، لطفاً بررسی کنید که URI بازگشتی معتبر است",
|
||||
"The OAuth client could not be loaded, please check your workspace subdomain is correct": "The OAuth client could not be loaded, please check your workspace subdomain is correct",
|
||||
"Required OAuth parameters are missing": "پارامترهای مورد نیاز OAuth موجود نیستند",
|
||||
"Authorize": "مجوز",
|
||||
"{{ appName }} wants to access {{ teamName }}": "{{ appName }} میخواهد به {{ teamName }} دسترسی پیدا کند",
|
||||
"By <em>{{ developerName }}</em>": "توسط <em>{{ developerName }}</em>",
|
||||
"{{ appName }} will be able to access your account and perform the following actions": "{{ appName }} میتواند به حساب شما دسترسی پیدا کند و اقدامات زیر را انجام دهد",
|
||||
"You will be redirected to a local application after authorizing.": "You will be redirected to a local application after authorizing.",
|
||||
"You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.": "You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.",
|
||||
"read": "خواندن",
|
||||
"write": "نوشتن",
|
||||
"read and write": "خواندن و نوشتن",
|
||||
@@ -1156,6 +1171,8 @@
|
||||
"Last accessed": "آخرین دسترسی",
|
||||
"Domain": "دامنه",
|
||||
"Views": "بازدیدها",
|
||||
"Visibility": "Visibility",
|
||||
"Updated by": "Updated by",
|
||||
"All roles": "همه نقشها",
|
||||
"Admins": "مدیران",
|
||||
"Editors": "ویرایشگران",
|
||||
@@ -1188,15 +1205,26 @@
|
||||
"Your workspace will be accessible at": "فضای کار شما در دسترس خواهد بود در",
|
||||
"Choose a subdomain to enable a login page just for your team.": "یک زیردامنه انتخاب کنید تا صفحه ورود فقط برای تیم شما فعال شود.",
|
||||
"This is the screen that workspace members will first see when they sign in.": "این صفحهای است که اعضای فضای کار هنگام ورود ابتدا مشاهده خواهند کرد.",
|
||||
"Danger": "خطر",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "شما میتوانید این فضای کار را بهطور کامل از جمله مجموعهها، اسناد و کاربران حذف کنید.",
|
||||
"Export data": "دیتای خروجی",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "یک خروجی کامل ممکن است مدتی طول بکشد، در نظر داشته باشید که یک سند یا مجموعه را خروجی کنید. شما میتوانید این صفحه را پس از شروع خروجی ها ترک کنید - اگر اعلانها فعال شده باشند، ما یک لینک به <em>{{ userEmail }}</em> ایمیل خواهیم کرد زمانی که کامل شد.",
|
||||
"Recent exports": "خروجی های اخیر",
|
||||
"Manage optional and beta features. Changing these settings will affect the experience for all members of the workspace.": "مدیریت ویژگیهای اختیاری و بتا. تغییر این تنظیمات بر تجربه تمام اعضای فضای کار تأثیر خواهد گذاشت.",
|
||||
"Separate editing": "ویرایش جداگانه",
|
||||
"When enabled documents have a separate editing mode by default instead of being always editable. This setting can be overridden by user preferences.": "هنگامی که فعال باشد، اسناد بهطور پیشفرض دارای حالت ویرایش جداگانهای هستند و همیشه قابل ویرایش نیستند. این تنظیم میتواند توسط تنظیمات کاربر نادیده گرفته شود.",
|
||||
"When enabled team members can add comments to documents.": "هنگامی که فعال باشد، اعضای تیم میتوانند نظراتی به اسناد اضافه کنند.",
|
||||
"Danger": "خطر",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "شما میتوانید این فضای کار را بهطور کامل از جمله مجموعهها، اسناد و کاربران حذف کنید.",
|
||||
"Enabled": "Enabled",
|
||||
"Allow supported providers to be inserted as interactive embeds in documents.": "Allow supported providers to be inserted as interactive embeds in documents.",
|
||||
"Providers": "Providers",
|
||||
"Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.": "Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.",
|
||||
"All providers": "All providers",
|
||||
"Export data": "دیتای خروجی",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "یک خروجی کامل ممکن است مدتی طول بکشد، در نظر داشته باشید که یک سند یا مجموعه را خروجی کنید. شما میتوانید این صفحه را پس از شروع خروجی ها ترک کنید - اگر اعلانها فعال شده باشند، ما یک لینک به <em>{{ userEmail }}</em> ایمیل خواهیم کرد زمانی که کامل شد.",
|
||||
"Recent exports": "خروجی های اخیر",
|
||||
"Manage AI and integration features for your workspace.": "Manage AI and integration features for your workspace.",
|
||||
"MCP server": "MCP server",
|
||||
"Allow members to connect to this workspace with MCP to read and write data.": "Allow members to connect to this workspace with MCP to read and write data.",
|
||||
"Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.": "Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.",
|
||||
"Copy URL": "Copy URL",
|
||||
"AI answers": "پاسخهای هوش مصنوعی",
|
||||
"Use AI to get direct answers to questions in search. This feature requires a paid license.": "Use AI to get direct answers to questions in search. This feature requires a paid license.",
|
||||
"Create a group": "ایجاد گروه",
|
||||
"Could not load groups": "گروه ها بارگذاری نشدند",
|
||||
"New group": "گروه جدید",
|
||||
@@ -1288,8 +1316,6 @@
|
||||
"When enabled, viewers can see download options for documents": "هنگامی که فعال باشد، مشاهدهگران میتوانند گزینههای دانلود برای اسناد را ببینند.",
|
||||
"Users can delete account": "کاربران میتوانند حساب خود را حذف کنند.",
|
||||
"When enabled, users can delete their own account from the workspace": "هنگامی که فعال باشد، کاربران میتوانند حساب خود را از فضای کاری حذف کنند.",
|
||||
"Rich service embeds": "جاسازیهای غنی سرویسها",
|
||||
"Links to supported services are shown as rich embeds within your documents": "لینکها به سایتها و سرویسهای پشتیبانی شده به صورت جاسازیهای غنی در سندها نمایش داده میشود.",
|
||||
"Email address visibility": "Email address visibility",
|
||||
"Controls who can see user email addresses in the workspace": "Controls who can see user email addresses in the workspace",
|
||||
"Collection creation": "ایجاد مجموعه",
|
||||
@@ -1300,9 +1326,10 @@
|
||||
"Sharing is currently disabled.": "اشتراکگذاری در حال حاضر غیرفعال است.",
|
||||
"You can globally enable and disable public document sharing in the <em>security settings</em>.": "از <em>تنظیمات امنیتی</em> میتوانید امکان اشتراکگذاری عمومی سندها را در سطح کل سیستم فعال و غیرفعال کنید.",
|
||||
"Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.": "سندهای اشتراکگذاری شده در اینجا فهرست شدهاند. هر فردی با لینک عمومی تا پیش از حذف لینک میتواند به صورت فقط خواندنی به سند مربوطه دسترسی داشته باشد.",
|
||||
"You can create templates to help your team create consistent and accurate documentation.": "با ساخت قالبها به تیم خود کمک میکنید که مستنداتی سازگار و درست ایجاد کنند.",
|
||||
"Alphabetical": "الفبایی",
|
||||
"There are no templates just yet.": "هنوز هیچ قالبی وجود ندارد.",
|
||||
"A template must have content": "A template must have content",
|
||||
"Could not load templates": "Could not load templates",
|
||||
"Templates help your team create consistent and accurate documentation.": "Templates help your team create consistent and accurate documentation.",
|
||||
"No templates have been created yet": "No templates have been created yet",
|
||||
"{{ teamName }} is using {{ appName }} to share documents, please login to continue.": "{{ teamName }} از {{ appName }} برای اشتراکگذاری اسناد استفاده میکند، لطفاً برای ادامه وارد شوید.",
|
||||
"A confirmation code has been sent to your email address, please enter the code below to permanently destroy this workspace.": "کد تأیید به ایمیل شما ارسال شد. لطفاً آن را در کادر زیر وارد کنید تا این فضای کاری برای همیشه حذف شود.",
|
||||
"Confirmation code": "کد تأیید",
|
||||
@@ -1363,7 +1390,6 @@
|
||||
"New Attribute": "ویژگی جدید",
|
||||
"Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.": "ویژگیها به شما این امکان را میدهند که دادههایی را تعریف کنید که با اسناد شما ذخیره شوند. میتوانند برای ذخیره ویژگیهای سفارشی، متاداده یا هر اطلاعات ساختاری دیگری که در اسناد مشترک است، استفاده شوند.",
|
||||
"Custom domain": "دامنه سفارشی",
|
||||
"AI answers": "پاسخهای هوش مصنوعی",
|
||||
"Use AI to directly answer searched questions using content in your workspace.": "از هوش مصنوعی برای پاسخگویی مستقیم به سوالات جستجو شده با استفاده از محتوای فضای کاری خود استفاده کنید.",
|
||||
"API access": "دسترسی به API",
|
||||
"Allow members to create API keys for programmatic access": "اجازه دهید اعضا کلیدهای API را برای دسترسی برنامهنویسی ایجاد کنند.",
|
||||
@@ -1413,6 +1439,27 @@
|
||||
"Enabled by {{integrationCreatedBy}}": "فعال شده توسط {{integrationCreatedBy}}",
|
||||
"Disconnecting will prevent previewing GitHub links from this organization in documents. Are you sure?": "قطع اتصال باعث جلوگیری از پیشنمایش لینکهای GitHub این سازمان در اسناد میشود. آیا مطمئن هستید؟",
|
||||
"The GitHub integration is currently disabled. Please set the associated environment variables and restart the server to enable the integration.": "یکپارچهسازی GitHub در حال حاضر غیرفعال است. لطفاً متغیرهای محیطی مربوطه را تنظیم کرده و سرور را مجدداً راهاندازی کنید تا یکپارچهسازی فعال شود.",
|
||||
"Connect GitLab": "Connect GitLab",
|
||||
"Enter the details for your GitLab instance.": "Enter the details for your GitLab instance.",
|
||||
"GitLab URL": "GitLab URL",
|
||||
"URL must start with https": "URL must start with https",
|
||||
"Client ID": "Client ID",
|
||||
"OAuth application ID": "OAuth application ID",
|
||||
"Client Secret": "Client Secret",
|
||||
"OAuth application secret": "OAuth application secret",
|
||||
"Connecting": "Connecting",
|
||||
"Choose which GitLab instance to connect to.": "Choose which GitLab instance to connect to.",
|
||||
"GitLab Cloud": "GitLab Cloud",
|
||||
"Connect to your account on gitlab.com": "Connect to your account on gitlab.com",
|
||||
"GitLab Cloud credentials are not configured": "GitLab Cloud credentials are not configured",
|
||||
"Self-managed": "Self-managed",
|
||||
"Connect to a custom GitLab installation": "Connect to a custom GitLab installation",
|
||||
"You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?": "You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?",
|
||||
"The GitLab account is already connected to this workspace.": "The GitLab account is already connected to this workspace.",
|
||||
"Something went wrong while authenticating your request. Please try again.": "Something went wrong while authenticating your request. Please try again.",
|
||||
"The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.": "The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.",
|
||||
"Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.": "Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.",
|
||||
"Disconnecting will prevent previewing links from GitLab in documents. Are you sure?": "Disconnecting will prevent previewing links from GitLab in documents. Are you sure?",
|
||||
"Google Analytics": "گوگل آنالایتیکس",
|
||||
"Add a Google Analytics 4 measurement ID to send document views and analytics from the workspace to your own Google Analytics account.": "یک شناسه Measurement Google Analytics 4 اضافه کنید تا بازدیدها و تحلیلهای سند از فضای کاری به حساب Google Analytics خود شما ارسال شود.",
|
||||
"Measurement ID": "شناسه Measurement",
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
"Collection permissions": "Droits d'accès de la collection",
|
||||
"Share this collection": "Partagez cette collection",
|
||||
"Import document": "Importer un document",
|
||||
"Uploading": "Transfert en cours",
|
||||
"Sort in sidebar": "Trier dans la barre latérale",
|
||||
"A-Z sort": "Tri de A à Z",
|
||||
"Z-A sort": "Tri de Z à A",
|
||||
@@ -53,8 +54,9 @@
|
||||
"Development": "Développement",
|
||||
"Open document": "Ouvrir le document",
|
||||
"New draft": "Nouveau brouillon",
|
||||
"New from template": "Nouveau à partir d'un modèle",
|
||||
"New nested document": "Nouveau document imbriqué",
|
||||
"Nested document": "Nested document",
|
||||
"Before": "Before",
|
||||
"After": "After",
|
||||
"Publish": "Publier",
|
||||
"Published {{ documentName }}": "Publication de {{ documentName }}",
|
||||
"Publish document": "Publier le document",
|
||||
@@ -91,9 +93,7 @@
|
||||
"Create template": "Créer un modèle",
|
||||
"Open random document": "Ouvrir un document au hasard",
|
||||
"Search documents for \"{{searchQuery}}\"": "Chercher \"{{searchQuery}}\" dans les documents",
|
||||
"Move to workspace": "Déplacer vers l'espace de travail",
|
||||
"Move": "Déplacer",
|
||||
"Move to collection": "Déplacer vers la collection",
|
||||
"Move {{ documentType }}": "Déplacer {{ documentType }}",
|
||||
"Are you sure you want to archive this document?": "Êtes-vous certains de vouloir archiver ce document ?",
|
||||
"Document archived": "Document archivé",
|
||||
@@ -165,6 +165,15 @@
|
||||
"New workspace": "Nouvel espace de travail",
|
||||
"Create a workspace": "Créer un espace de travail",
|
||||
"Login to workspace": "Connexion à l'espace de travail",
|
||||
"Template deleted": "Template deleted",
|
||||
"Deleting": "Suppression",
|
||||
"Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.": "Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.",
|
||||
"Move to workspace": "Déplacer vers l'espace de travail",
|
||||
"Template moved": "Template moved",
|
||||
"Couldn't move the template, try again?": "Couldn't move the template, try again?",
|
||||
"Move to collection": "Déplacer vers la collection",
|
||||
"Move template": "Move template",
|
||||
"Print template": "Print template",
|
||||
"Invite people": "Inviter des personnes",
|
||||
"Invite to workspace": "Inviter à l'espace de travail",
|
||||
"Promote to {{ role }}": "Promouvoir en {{ role }}",
|
||||
@@ -176,6 +185,7 @@
|
||||
"Debug": "Débogage",
|
||||
"Document": "Document",
|
||||
"Documents": "Documents",
|
||||
"Template": "Modèle",
|
||||
"Recently viewed": "Vu récemment",
|
||||
"Revision": "Version",
|
||||
"Navigation": "Navigation",
|
||||
@@ -195,6 +205,7 @@
|
||||
"Collections are used to group documents and choose permissions": "Les collections sont utilisées pour regrouper les documents et définir les permissions",
|
||||
"Name": "Nom",
|
||||
"The default access for workspace members, you can share with more users or groups later.": "L'accès par défaut pour les membres de l'espace de travail, vous pouvez partager avec plus d'utilisateurs ou de groupes plus tard.",
|
||||
"Advanced options": "Advanced options",
|
||||
"Public document sharing": "Documents partagés",
|
||||
"Allow documents within this collection to be shared publicly on the internet.": "Autoriser les documents de cette collection à être partagés publiquement sur Internet.",
|
||||
"Commenting": "Commentaires",
|
||||
@@ -205,10 +216,10 @@
|
||||
"Create": "Créer",
|
||||
"Collection deleted": "Collection supprimée",
|
||||
"I’m sure – Delete": "Je suis sûr – Supprimer",
|
||||
"Deleting": "Suppression",
|
||||
"Are you sure about that? Deleting the <em>{{collectionName}}</em> collection is permanent and cannot be restored, however all published documents within will be moved to the trash.": "Êtes-vous sûr ? Supprimer la collection <em>{{collectionName}}</em> est définitif et celle-ci ne pourra pas être restaurée. Cependant, les documents inclus seront déplacés vers la corbeille.",
|
||||
"Also, <em>{{collectionName}}</em> is being used as the start view – deleting it will reset the start view to the Home page.": "De plus, la collection <em>{{collectionName}}</em> est affichée par défaut au démarrage - sa suppression réinitialisera la vue de démarrage sur la page d'accueil.",
|
||||
"Type a command or search": "Entrez une commande ou faites une recherche",
|
||||
"New from template": "Nouveau à partir d'un modèle",
|
||||
"Choose a template": "Choisir un modèle",
|
||||
"Are you sure you want to permanently delete this entire comment thread?": "Êtes-vous sûr de vouloir supprimer définitivement ce fil de commentaires ?",
|
||||
"Are you sure you want to permanently delete this comment?": "Êtes-vous sûr de vouloir supprimer définitivement ce commentaire ?",
|
||||
@@ -227,12 +238,6 @@
|
||||
"Deleted Collection": "Collection supprimée",
|
||||
"Untitled": "Sans titre",
|
||||
"Unpin": "Désépingler",
|
||||
"Select a location to copy": "Sélectionnez un emplacement pour copier",
|
||||
"Document copied": "Document copié",
|
||||
"Couldn’t copy the document, try again?": "Impossible de copier le document, veuillez réessayer ?",
|
||||
"Include nested documents": "Inclure les documents imbriqués",
|
||||
"Copy to <em>{{ location }}</em>": "Déplacer dans <em>{{ location }}</em>",
|
||||
"Copying": "Copie en cours",
|
||||
"Export started": "Export démarré",
|
||||
"A link to your file will be sent through email soon": "Un lien vers votre fichier sera bientôt envoyé par e-mail",
|
||||
"Preparing your download": "Préparation de votre téléchargement",
|
||||
@@ -242,13 +247,24 @@
|
||||
"Include child documents": "Inclure les documents imbriqués",
|
||||
"When selected, exporting the document <em>{{documentName}}</em> may take some time.": "Lorsqu'il est sélectionné, l'exportation du document <em>{{documentName}}</em> peut prendre un certain temps.",
|
||||
"You will receive an email when it's complete.": "Vous recevrez un email lorsque cela sera terminé.",
|
||||
"Select a location to copy": "Sélectionnez un emplacement pour copier",
|
||||
"Document copied": "Document copié",
|
||||
"Couldn’t copy the document, try again?": "Impossible de copier le document, veuillez réessayer ?",
|
||||
"Include nested documents": "Inclure les documents imbriqués",
|
||||
"Copy to <em>{{ location }}</em>": "Déplacer dans <em>{{ location }}</em>",
|
||||
"Copying": "Copie en cours",
|
||||
"Search collections & documents": "Rechercher dans les collections et documents",
|
||||
"Search collections": "Search collections",
|
||||
"No results found": "Aucun résultat",
|
||||
"Select a location to move": "Sélectionnez un emplacement où déplacer",
|
||||
"Document moved": "Document déplacé",
|
||||
"Couldn’t move the document, try again?": "Impossible de déplacer le document, réessayer ?",
|
||||
"Move to <em>{{ location }}</em>": "Déplacer dans <em>{{ location }}</em>",
|
||||
"Couldn’t move the template, try again?": "Couldn’t move the template, try again?",
|
||||
"Document options": "Options de document",
|
||||
"New": "Nouveau",
|
||||
"Only visible to you": "Visible uniquement pour vous",
|
||||
"Draft": "Brouillon",
|
||||
"Template": "Modèle",
|
||||
"You updated": "Vous avez mis à jour",
|
||||
"{{ userName }} updated": "{{ userName }} a mis à jour",
|
||||
"You deleted": "Vous avez supprimé",
|
||||
@@ -278,7 +294,6 @@
|
||||
"Please enter a name for the emoji": "Veuillez entrer un nom pour l'émoticône",
|
||||
"Please select an image file": "Veuillez sélectionner un fichier image",
|
||||
"Emoji created successfully": "Émoticône créée avec succès",
|
||||
"Uploading": "Transfert en cours",
|
||||
"Add emoji": "Ajouter une émoticône",
|
||||
"Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.": "Les images carrées avec des fonds transparents fonctionnent mieux. Si votre image est trop grande, nous essaierons de la redimensionner pour vous.",
|
||||
"Upload an image": "Ajouter une image",
|
||||
@@ -467,6 +482,7 @@
|
||||
"Collapse sidebar": "Réduire la barre latérale",
|
||||
"Archived collections": "Collections archivées",
|
||||
"New doc": "Nouveau doc",
|
||||
"New nested document": "Nouveau document imbriqué",
|
||||
"Empty": "Vide",
|
||||
"No collections": "Aucune collection",
|
||||
"Collapse": "Réduire",
|
||||
@@ -493,6 +509,8 @@
|
||||
"Unstar document": "Retirer le document des favoris",
|
||||
"Star document": "Mettre en favoris le document",
|
||||
"Select a color": "Sélectionnez une couleur",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Sélectionnez du texte et utilisez le contrôle <1></1> pour ajouter des espaces réservés qui peuvent être remplis lors de la création de nouveaux documents",
|
||||
"You’re editing a template": "Vous modifiez un modèle",
|
||||
"Template created, go ahead and customize it": "Le modèle a été créé, vous pouvez maintenant le personnaliser",
|
||||
"Creating a template from <em>{{titleWithDefault}}</em> is a non-destructive action – we'll make a copy of the document and turn it into a template that can be used as a starting point for new documents.": "La création d'un modèle à partir de <em>{{titleWithDefault}}</em> est une action non destructrice - nous allons faire une copie du document et le transformer en un modèle qui peut être utilisé comme point de départ pour de nouveaux documents.",
|
||||
"Enable other members to use the template immediately": "Autoriser les autres membres à utiliser le modèle immédiatement",
|
||||
@@ -632,6 +650,7 @@
|
||||
"Delete embed": "Supprimer l'intégration",
|
||||
"Formatting controls": "Commandes de mise en forme",
|
||||
"Distribute columns": "Répartir les colonnes",
|
||||
"Wrap text": "Wrap text",
|
||||
"Delete Emoji": "Supprimer les émoticônes",
|
||||
"Emoji deleted": "Émoji supprimé",
|
||||
"I'm sure – Delete": "Je suis certain - Supprimer",
|
||||
@@ -644,17 +663,19 @@
|
||||
"Unsubscribed from document": "Se désabonner du document",
|
||||
"Unsubscribed from collection": "Désabonné de la collection",
|
||||
"Account": "Compte",
|
||||
"API & Apps": "API & Applications",
|
||||
"API & Access": "API & Access",
|
||||
"Details": "Détails",
|
||||
"Authentication": "Authentification",
|
||||
"Security": "Sécurité",
|
||||
"Features": "Fonctionnalités",
|
||||
"AI": "AI",
|
||||
"API Keys": "Clés API",
|
||||
"Applications": "Applications",
|
||||
"Shared Links": "Liens partagés",
|
||||
"Import": "Importer",
|
||||
"Install": "Installer",
|
||||
"Embeds": "Embeds",
|
||||
"Configure which embed providers are available in the editor.": "Configure which embed providers are available in the editor.",
|
||||
"Integrations": "Intégrations",
|
||||
"Install": "Installer",
|
||||
"Change name": "Changement de nom",
|
||||
"Change email": "Modifier le courriel",
|
||||
"Suspend user": "Suspendre l'Utilisateur",
|
||||
@@ -685,8 +706,8 @@
|
||||
"Headings you add to the document will appear here": "Les titres que vous ajoutez au document apparaîtront ici",
|
||||
"Contents": "Contenu",
|
||||
"Table of contents": "Table des matières",
|
||||
"Template options": "Template options",
|
||||
"User options": "Options utilisateur",
|
||||
"template": "modèle",
|
||||
"document": "document",
|
||||
"Export complete": "Export terminé",
|
||||
"Export failed": "Échec de l'export",
|
||||
@@ -812,23 +833,15 @@
|
||||
"Sorry, the last change could not be persisted – please reload the page": "Désolé, la dernière modification n'a pas pu être enregistrée - veuillez recharger la page",
|
||||
"{{ count }} days": "{{ count }} jour",
|
||||
"{{ count }} days_plural": "{{ count }} jours",
|
||||
"This template will be permanently deleted in <2></2> unless restored.": "Ce modèle sera définitivement supprimé dans <2></2> sauf s'il est restauré.",
|
||||
"This document will be permanently deleted in <2></2> unless restored.": "Ce document sera définitivement supprimé dans <2></2> sauf s'il est restauré.",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Sélectionnez du texte et utilisez le contrôle <1></1> pour ajouter des espaces réservés qui peuvent être remplis lors de la création de nouveaux documents",
|
||||
"You’re editing a template": "Vous modifiez un modèle",
|
||||
"Deleted by {{userName}}": "Supprimé par {{userName}}",
|
||||
"Observing {{ userName }}": "Observation de {{ userName }}",
|
||||
"Backlinks": "Rétroliens",
|
||||
"This document is large which may affect performance": "Ce document est volumineux et peut affecter les performances",
|
||||
"Are you sure you want to delete the <em>{{ documentTitle }}</em> template?": "Voulez-vous vraiment supprimer le modèle <em>{{ documentTitle }}</em>?",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history</em>.": "Êtes-vous sûr ? La suppression de <em>{{ documentTitle }}</em> supprimera tout son historique</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>.": "Êtes-vous sûr ? Supprimer le document <em>{{ documentTitle }}</em> effacera tout son historique et <em>{{ any }} documents imbriqués</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>._plural": "Êtes-vous sûr ? La suppression de <em>{{ documentTitle }}</em> supprimera tout son historique et <em>{{ any }} documents imbriqués</em>.",
|
||||
"If you’d like the option of referencing or restoring the {{noun}} in the future, consider archiving it instead.": "Si vous souhaitez avoir la possibilité de référencer ou de restaurer le {{noun}} à l'avenir, envisagez plutôt de l'archiver.",
|
||||
"Select a location to move": "Sélectionnez un emplacement où déplacer",
|
||||
"Document moved": "Document déplacé",
|
||||
"Couldn’t move the document, try again?": "Impossible de déplacer le document, réessayer ?",
|
||||
"Move to <em>{{ location }}</em>": "Déplacer dans <em>{{ location }}</em>",
|
||||
"Couldn’t create the document, try again?": "Impossible de créer le document, réessayer ?",
|
||||
"Document permanently deleted": "Document supprimé définitivement",
|
||||
"Are you sure you want to permanently delete the <em>{{ documentTitle }}</em> document? This action is immediate and cannot be undone.": "Voulez-vous vraiment supprimer définitivement le document <em>{{ documentTitle }}</em> ? Cette action est immédiate et ne peut pas être annulée.",
|
||||
@@ -885,7 +898,6 @@
|
||||
"Open this guide": "Ouvrir ce guide",
|
||||
"Enter": "Entrer",
|
||||
"Publish document and exit": "Publier le document et quitter",
|
||||
"Save document": "Enregistrer le document",
|
||||
"Cancel editing": "Annuler l'édition",
|
||||
"Collaboration": "Collaboration",
|
||||
"Formatting": "Mise en forme",
|
||||
@@ -978,11 +990,14 @@
|
||||
"An error occurred": "Une erreur est survenue",
|
||||
"The OAuth client could not be found, please check the provided client ID": "Le client OAuth n'a pas pu être trouvé, veuillez vérifier l'ID du client fourni",
|
||||
"The OAuth client could not be loaded, please check the redirect URI is valid": "Le client 0Auth n'a pas pu etre chargé, veuillez vérifier que l'URI de redirection est valide",
|
||||
"The OAuth client could not be loaded, please check your workspace subdomain is correct": "The OAuth client could not be loaded, please check your workspace subdomain is correct",
|
||||
"Required OAuth parameters are missing": "Les paramètres 0Auth requis sont manquants",
|
||||
"Authorize": "Autoriser",
|
||||
"{{ appName }} wants to access {{ teamName }}": "{{ appName }} souhaite accéder a {{ teamName }}",
|
||||
"By <em>{{ developerName }}</em>": "Par <em>{{ developerName }}</em>",
|
||||
"{{ appName }} will be able to access your account and perform the following actions": "{{ appName }} pourra accéder à votre compte et effectuer les actions suivantes",
|
||||
"You will be redirected to a local application after authorizing.": "You will be redirected to a local application after authorizing.",
|
||||
"You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.": "You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.",
|
||||
"read": "lire",
|
||||
"write": "écrire",
|
||||
"read and write": "lire et écrire",
|
||||
@@ -1156,6 +1171,8 @@
|
||||
"Last accessed": "Dernier accès",
|
||||
"Domain": "Domaine",
|
||||
"Views": "Vues",
|
||||
"Visibility": "Visibility",
|
||||
"Updated by": "Updated by",
|
||||
"All roles": "Tous les rôles",
|
||||
"Admins": "Administrateurs",
|
||||
"Editors": "Éditeurs",
|
||||
@@ -1188,15 +1205,26 @@
|
||||
"Your workspace will be accessible at": "Votre espace de travail sera accessible à",
|
||||
"Choose a subdomain to enable a login page just for your team.": "Choisissez un sous-domaine pour activer une page de connexion propre à votre équipe.",
|
||||
"This is the screen that workspace members will first see when they sign in.": "Cette page s'affichera pour les membres de l'espace de travail lors de leur première connexion.",
|
||||
"Danger": "Danger",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "Vous pouvez supprimer tout l'espace de travail dont les collections, les documents et les utilisateurs.",
|
||||
"Export data": "Export des données",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "Un export complet peut prendre un certain temps, pensez à exporter un seul document ou une seule collection. Les données sont exportées sous forme d'archive zip de vos documents en format Markdown. Une fois l'export commencé, vous pouvez fermer cette page – nous enverrons un lien à <em>{{ userEmail }}</em> quand ce sera terminé.",
|
||||
"Recent exports": "Exports récents",
|
||||
"Manage optional and beta features. Changing these settings will affect the experience for all members of the workspace.": "Gérer les fonctionnalités optionnelles et bêta. La modification de ces paramètres sera effective pour tous les membres de l'espace de travail.",
|
||||
"Separate editing": "Édition séparée",
|
||||
"When enabled documents have a separate editing mode by default instead of being always editable. This setting can be overridden by user preferences.": "Lorsque cette option est activée, les documents ont un mode d'édition séparé au lieu d'être toujours modifiables. Ce paramètre peut être changé les préférences de l'utilisateur.",
|
||||
"When enabled team members can add comments to documents.": "Lorsque cette option est activée, les membres de l'équipe peuvent ajouter des commentaires aux documents.",
|
||||
"Danger": "Danger",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "Vous pouvez supprimer tout l'espace de travail dont les collections, les documents et les utilisateurs.",
|
||||
"Enabled": "Enabled",
|
||||
"Allow supported providers to be inserted as interactive embeds in documents.": "Allow supported providers to be inserted as interactive embeds in documents.",
|
||||
"Providers": "Providers",
|
||||
"Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.": "Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.",
|
||||
"All providers": "All providers",
|
||||
"Export data": "Export des données",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "Un export complet peut prendre un certain temps, pensez à exporter un seul document ou une seule collection. Les données sont exportées sous forme d'archive zip de vos documents en format Markdown. Une fois l'export commencé, vous pouvez fermer cette page – nous enverrons un lien à <em>{{ userEmail }}</em> quand ce sera terminé.",
|
||||
"Recent exports": "Exports récents",
|
||||
"Manage AI and integration features for your workspace.": "Manage AI and integration features for your workspace.",
|
||||
"MCP server": "MCP server",
|
||||
"Allow members to connect to this workspace with MCP to read and write data.": "Allow members to connect to this workspace with MCP to read and write data.",
|
||||
"Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.": "Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.",
|
||||
"Copy URL": "Copy URL",
|
||||
"AI answers": "Réponses de l'IA",
|
||||
"Use AI to get direct answers to questions in search. This feature requires a paid license.": "Use AI to get direct answers to questions in search. This feature requires a paid license.",
|
||||
"Create a group": "Créer un groupe",
|
||||
"Could not load groups": "Impossible de charger les groupes",
|
||||
"New group": "Nouveau Groupe",
|
||||
@@ -1288,8 +1316,6 @@
|
||||
"When enabled, viewers can see download options for documents": "Lorsque cette option est activée, les utilisateurs peuvent voir les options de téléchargement des documents",
|
||||
"Users can delete account": "Les utilisateurs peuvent supprimer leur compte",
|
||||
"When enabled, users can delete their own account from the workspace": "Lorsque cette option est activée, les utilisateurs peuvent supprimer leur propre compte de l'espace de travail",
|
||||
"Rich service embeds": "Intégrations avancées",
|
||||
"Links to supported services are shown as rich embeds within your documents": "Les liens vers les services pris en charge sont affichés comme des intégrations avancées",
|
||||
"Email address visibility": "Visibilité de l'adresse e-mail",
|
||||
"Controls who can see user email addresses in the workspace": "Contrôler qui peut voir les adresses e-mail des utilisateurs dans l'espace de travail",
|
||||
"Collection creation": "Création de collections",
|
||||
@@ -1300,9 +1326,10 @@
|
||||
"Sharing is currently disabled.": "Le partage est actuellement désactivé.",
|
||||
"You can globally enable and disable public document sharing in the <em>security settings</em>.": "Vous pouvez complètement activer et désactiver le partage de documents publics dans les <em>paramètres de sécurité</em>.",
|
||||
"Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.": "Les documents partagés sont listés ci-dessous. Les personnes possédant le lien public peuvent accéder à une version en lecture seule du document jusqu'à ce que le lien soit révoqué.",
|
||||
"You can create templates to help your team create consistent and accurate documentation.": "Vous pouvez créer des modèles pour aider votre équipe à créer une documentation cohérente et précise.",
|
||||
"Alphabetical": "Alphabétique",
|
||||
"There are no templates just yet.": "Il n'y a pas encore de modèles.",
|
||||
"A template must have content": "A template must have content",
|
||||
"Could not load templates": "Could not load templates",
|
||||
"Templates help your team create consistent and accurate documentation.": "Templates help your team create consistent and accurate documentation.",
|
||||
"No templates have been created yet": "No templates have been created yet",
|
||||
"{{ teamName }} is using {{ appName }} to share documents, please login to continue.": "{{ teamName }} utilise {{ appName }} pour partager des documents, veuillez vous connecter pour continuer.",
|
||||
"A confirmation code has been sent to your email address, please enter the code below to permanently destroy this workspace.": "Un code de confirmation a été envoyé à votre adresse e-mail, veuillez saisir le code ci-dessous pour supprimer définitivement cet espace de travail.",
|
||||
"Confirmation code": "Code de confirmation",
|
||||
@@ -1363,7 +1390,6 @@
|
||||
"New Attribute": "Nouvel attribut",
|
||||
"Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.": "Les attributs vous permettent de définir des données à stocker avec vos documents. Ils peuvent être utilisés pour stocker des propriétés personnalisées, des métadonnées ou toute autre information structurée commune à tous les documents.",
|
||||
"Custom domain": "Domaine personnalisé",
|
||||
"AI answers": "Réponses de l'IA",
|
||||
"Use AI to directly answer searched questions using content in your workspace.": "Utilisez l'IA pour répondre directement aux questions recherchées en utilisant le contenu de votre espace de travail.",
|
||||
"API access": "Accès API",
|
||||
"Allow members to create API keys for programmatic access": "Autoriser les membres à créer des clés API pour l'accès au programme",
|
||||
@@ -1413,6 +1439,27 @@
|
||||
"Enabled by {{integrationCreatedBy}}": "Activé par {{integrationCreatedBy}}",
|
||||
"Disconnecting will prevent previewing GitHub links from this organization in documents. Are you sure?": "La déconnexion empêchera l'aperçu des liens GitHub de cette organisation dans les documents. Êtes-vous sûr ?",
|
||||
"The GitHub integration is currently disabled. Please set the associated environment variables and restart the server to enable the integration.": "L'intégration GitHub est actuellement désactivée. Veuillez définir les variables d'environnement associées et redémarrer le serveur pour activer l'intégration.",
|
||||
"Connect GitLab": "Connect GitLab",
|
||||
"Enter the details for your GitLab instance.": "Enter the details for your GitLab instance.",
|
||||
"GitLab URL": "GitLab URL",
|
||||
"URL must start with https": "URL must start with https",
|
||||
"Client ID": "Client ID",
|
||||
"OAuth application ID": "OAuth application ID",
|
||||
"Client Secret": "Client Secret",
|
||||
"OAuth application secret": "OAuth application secret",
|
||||
"Connecting": "Connecting",
|
||||
"Choose which GitLab instance to connect to.": "Choose which GitLab instance to connect to.",
|
||||
"GitLab Cloud": "GitLab Cloud",
|
||||
"Connect to your account on gitlab.com": "Connect to your account on gitlab.com",
|
||||
"GitLab Cloud credentials are not configured": "GitLab Cloud credentials are not configured",
|
||||
"Self-managed": "Self-managed",
|
||||
"Connect to a custom GitLab installation": "Connect to a custom GitLab installation",
|
||||
"You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?": "You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?",
|
||||
"The GitLab account is already connected to this workspace.": "The GitLab account is already connected to this workspace.",
|
||||
"Something went wrong while authenticating your request. Please try again.": "Something went wrong while authenticating your request. Please try again.",
|
||||
"The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.": "The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.",
|
||||
"Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.": "Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.",
|
||||
"Disconnecting will prevent previewing links from GitLab in documents. Are you sure?": "Disconnecting will prevent previewing links from GitLab in documents. Are you sure?",
|
||||
"Google Analytics": "Google Analytics",
|
||||
"Add a Google Analytics 4 measurement ID to send document views and analytics from the workspace to your own Google Analytics account.": "Ajouter un identifiant de mesure Google Analytics 4 pour envoyer le nombre de vues de documents et les statistiques de l'espace de travail à votre propre compte Google Analytics.",
|
||||
"Measurement ID": "ID de mesure",
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
"Collection permissions": "הרשאות אוסף",
|
||||
"Share this collection": "שיתוף אוסף",
|
||||
"Import document": "ייבוא מסמך",
|
||||
"Uploading": "Uploading",
|
||||
"Sort in sidebar": "מיין בתפריט הצד",
|
||||
"A-Z sort": "מיון ת - א",
|
||||
"Z-A sort": "מיון א - ת",
|
||||
@@ -53,8 +54,9 @@
|
||||
"Development": "פיתוח",
|
||||
"Open document": "פתח מסמך",
|
||||
"New draft": "New draft",
|
||||
"New from template": "חדש מתבנית",
|
||||
"New nested document": "מסמך מקונן חדש",
|
||||
"Nested document": "Nested document",
|
||||
"Before": "Before",
|
||||
"After": "After",
|
||||
"Publish": "פירסום",
|
||||
"Published {{ documentName }}": "פורסם {{ documentName }}",
|
||||
"Publish document": "פירסום מסמך",
|
||||
@@ -91,9 +93,7 @@
|
||||
"Create template": "צור תבנית חדשה",
|
||||
"Open random document": "פתח מסמך אקראי",
|
||||
"Search documents for \"{{searchQuery}}\"": "חפש במסמכים \"{{searchQuery}}\"",
|
||||
"Move to workspace": "העבר לעזור העבודה",
|
||||
"Move": "העברה",
|
||||
"Move to collection": "העבר לאוסף",
|
||||
"Move {{ documentType }}": "העבר {{ documentType }}",
|
||||
"Are you sure you want to archive this document?": "Are you sure you want to archive this document?",
|
||||
"Document archived": "המסמך הועבר לארכיון",
|
||||
@@ -165,6 +165,15 @@
|
||||
"New workspace": "מרחב עבודה חדש",
|
||||
"Create a workspace": "יצירת סביבת עבודה",
|
||||
"Login to workspace": "העבר לעזור העבודה",
|
||||
"Template deleted": "Template deleted",
|
||||
"Deleting": "מוחק",
|
||||
"Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.": "Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.",
|
||||
"Move to workspace": "העבר לעזור העבודה",
|
||||
"Template moved": "Template moved",
|
||||
"Couldn't move the template, try again?": "Couldn't move the template, try again?",
|
||||
"Move to collection": "העבר לאוסף",
|
||||
"Move template": "Move template",
|
||||
"Print template": "Print template",
|
||||
"Invite people": "הזמן אנשים",
|
||||
"Invite to workspace": "הזמן למרחב העבודה",
|
||||
"Promote to {{ role }}": "Promote to {{ role }}",
|
||||
@@ -176,6 +185,7 @@
|
||||
"Debug": "Debug",
|
||||
"Document": "Document",
|
||||
"Documents": "Documents",
|
||||
"Template": "Template",
|
||||
"Recently viewed": "נצפה לאחרונה",
|
||||
"Revision": "Revision",
|
||||
"Navigation": "סרגל ניווט",
|
||||
@@ -195,6 +205,7 @@
|
||||
"Collections are used to group documents and choose permissions": "Collections are used to group documents and choose permissions",
|
||||
"Name": "Name",
|
||||
"The default access for workspace members, you can share with more users or groups later.": "The default access for workspace members, you can share with more users or groups later.",
|
||||
"Advanced options": "Advanced options",
|
||||
"Public document sharing": "Public document sharing",
|
||||
"Allow documents within this collection to be shared publicly on the internet.": "Allow documents within this collection to be shared publicly on the internet.",
|
||||
"Commenting": "Commenting",
|
||||
@@ -205,10 +216,10 @@
|
||||
"Create": "צור",
|
||||
"Collection deleted": "Collection deleted",
|
||||
"I’m sure – Delete": "I’m sure – Delete",
|
||||
"Deleting": "מוחק",
|
||||
"Are you sure about that? Deleting the <em>{{collectionName}}</em> collection is permanent and cannot be restored, however all published documents within will be moved to the trash.": "Are you sure about that? Deleting the <em>{{collectionName}}</em> collection is permanent and cannot be restored, however all published documents within will be moved to the trash.",
|
||||
"Also, <em>{{collectionName}}</em> is being used as the start view – deleting it will reset the start view to the Home page.": "Also, <em>{{collectionName}}</em> is being used as the start view – deleting it will reset the start view to the Home page.",
|
||||
"Type a command or search": "Type a command or search",
|
||||
"New from template": "חדש מתבנית",
|
||||
"Choose a template": "בחר תבנית",
|
||||
"Are you sure you want to permanently delete this entire comment thread?": "Are you sure you want to permanently delete this entire comment thread?",
|
||||
"Are you sure you want to permanently delete this comment?": "האם הינך בטוח/ה שברצונך למחוק את התגובה הזאת לצמיתות?",
|
||||
@@ -227,12 +238,6 @@
|
||||
"Deleted Collection": "מחק אוסף",
|
||||
"Untitled": "ללא כותרת",
|
||||
"Unpin": "בטל הצמדה",
|
||||
"Select a location to copy": "בחר מיקום להעתקה",
|
||||
"Document copied": "המסמך הועבר לארכיון",
|
||||
"Couldn’t copy the document, try again?": "Couldn’t copy the document, try again?",
|
||||
"Include nested documents": "Include nested documents",
|
||||
"Copy to <em>{{ location }}</em>": "Copy to <em>{{ location }}</em>",
|
||||
"Copying": "Copying",
|
||||
"Export started": "הייצוא החל",
|
||||
"A link to your file will be sent through email soon": "A link to your file will be sent through email soon",
|
||||
"Preparing your download": "Preparing your download",
|
||||
@@ -242,13 +247,24 @@
|
||||
"Include child documents": "Include child documents",
|
||||
"When selected, exporting the document <em>{{documentName}}</em> may take some time.": "When selected, exporting the document <em>{{documentName}}</em> may take some time.",
|
||||
"You will receive an email when it's complete.": "You will receive an email when it's complete.",
|
||||
"Select a location to copy": "בחר מיקום להעתקה",
|
||||
"Document copied": "המסמך הועבר לארכיון",
|
||||
"Couldn’t copy the document, try again?": "Couldn’t copy the document, try again?",
|
||||
"Include nested documents": "Include nested documents",
|
||||
"Copy to <em>{{ location }}</em>": "Copy to <em>{{ location }}</em>",
|
||||
"Copying": "Copying",
|
||||
"Search collections & documents": "Search collections & documents",
|
||||
"Search collections": "Search collections",
|
||||
"No results found": "לא נמצאו תוצאות",
|
||||
"Select a location to move": "Select a location to move",
|
||||
"Document moved": "Document moved",
|
||||
"Couldn’t move the document, try again?": "Couldn’t move the document, try again?",
|
||||
"Move to <em>{{ location }}</em>": "Move to <em>{{ location }}</em>",
|
||||
"Couldn’t move the template, try again?": "Couldn’t move the template, try again?",
|
||||
"Document options": "Document options",
|
||||
"New": "חדש",
|
||||
"Only visible to you": "גלוי רק לך",
|
||||
"Draft": "טיוטה",
|
||||
"Template": "Template",
|
||||
"You updated": "You updated",
|
||||
"{{ userName }} updated": "{{ userName }} updated",
|
||||
"You deleted": "You deleted",
|
||||
@@ -278,7 +294,6 @@
|
||||
"Please enter a name for the emoji": "Please enter a name for the emoji",
|
||||
"Please select an image file": "Please select an image file",
|
||||
"Emoji created successfully": "Emoji created successfully",
|
||||
"Uploading": "Uploading",
|
||||
"Add emoji": "Add emoji",
|
||||
"Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.": "Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.",
|
||||
"Upload an image": "Upload an image",
|
||||
@@ -467,6 +482,7 @@
|
||||
"Collapse sidebar": "Collapse sidebar",
|
||||
"Archived collections": "Archived collections",
|
||||
"New doc": "New doc",
|
||||
"New nested document": "מסמך מקונן חדש",
|
||||
"Empty": "Empty",
|
||||
"No collections": "No collections",
|
||||
"Collapse": "Collapse",
|
||||
@@ -493,6 +509,8 @@
|
||||
"Unstar document": "Unstar document",
|
||||
"Star document": "Star document",
|
||||
"Select a color": "Select a color",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents",
|
||||
"You’re editing a template": "You’re editing a template",
|
||||
"Template created, go ahead and customize it": "Template created, go ahead and customize it",
|
||||
"Creating a template from <em>{{titleWithDefault}}</em> is a non-destructive action – we'll make a copy of the document and turn it into a template that can be used as a starting point for new documents.": "Creating a template from <em>{{titleWithDefault}}</em> is a non-destructive action – we'll make a copy of the document and turn it into a template that can be used as a starting point for new documents.",
|
||||
"Enable other members to use the template immediately": "Enable other members to use the template immediately",
|
||||
@@ -632,6 +650,7 @@
|
||||
"Delete embed": "Delete embed",
|
||||
"Formatting controls": "Formatting controls",
|
||||
"Distribute columns": "Distribute columns",
|
||||
"Wrap text": "Wrap text",
|
||||
"Delete Emoji": "Delete Emoji",
|
||||
"Emoji deleted": "Emoji deleted",
|
||||
"I'm sure – Delete": "I'm sure – Delete",
|
||||
@@ -644,17 +663,19 @@
|
||||
"Unsubscribed from document": "Unsubscribed from document",
|
||||
"Unsubscribed from collection": "Unsubscribed from collection",
|
||||
"Account": "Account",
|
||||
"API & Apps": "API & Apps",
|
||||
"API & Access": "API & Access",
|
||||
"Details": "Details",
|
||||
"Authentication": "Authentication",
|
||||
"Security": "Security",
|
||||
"Features": "Features",
|
||||
"AI": "AI",
|
||||
"API Keys": "API Keys",
|
||||
"Applications": "Applications",
|
||||
"Shared Links": "Shared Links",
|
||||
"Import": "Import",
|
||||
"Install": "Install",
|
||||
"Embeds": "Embeds",
|
||||
"Configure which embed providers are available in the editor.": "Configure which embed providers are available in the editor.",
|
||||
"Integrations": "Integrations",
|
||||
"Install": "Install",
|
||||
"Change name": "Change name",
|
||||
"Change email": "Change email",
|
||||
"Suspend user": "Suspend user",
|
||||
@@ -685,8 +706,8 @@
|
||||
"Headings you add to the document will appear here": "Headings you add to the document will appear here",
|
||||
"Contents": "Contents",
|
||||
"Table of contents": "Table of contents",
|
||||
"Template options": "Template options",
|
||||
"User options": "User options",
|
||||
"template": "template",
|
||||
"document": "document",
|
||||
"Export complete": "Export complete",
|
||||
"Export failed": "Export failed",
|
||||
@@ -812,23 +833,15 @@
|
||||
"Sorry, the last change could not be persisted – please reload the page": "Sorry, the last change could not be persisted – please reload the page",
|
||||
"{{ count }} days": "{{ count }} day",
|
||||
"{{ count }} days_plural": "{{ count }} days",
|
||||
"This template will be permanently deleted in <2></2> unless restored.": "This template will be permanently deleted in <2></2> unless restored.",
|
||||
"This document will be permanently deleted in <2></2> unless restored.": "This document will be permanently deleted in <2></2> unless restored.",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents",
|
||||
"You’re editing a template": "You’re editing a template",
|
||||
"Deleted by {{userName}}": "Deleted by {{userName}}",
|
||||
"Observing {{ userName }}": "Observing {{ userName }}",
|
||||
"Backlinks": "Backlinks",
|
||||
"This document is large which may affect performance": "This document is large which may affect performance",
|
||||
"Are you sure you want to delete the <em>{{ documentTitle }}</em> template?": "Are you sure you want to delete the <em>{{ documentTitle }}</em> template?",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history</em>.": "Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>.": "Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>._plural": "Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested documents</em>.",
|
||||
"If you’d like the option of referencing or restoring the {{noun}} in the future, consider archiving it instead.": "If you’d like the option of referencing or restoring the {{noun}} in the future, consider archiving it instead.",
|
||||
"Select a location to move": "Select a location to move",
|
||||
"Document moved": "Document moved",
|
||||
"Couldn’t move the document, try again?": "Couldn’t move the document, try again?",
|
||||
"Move to <em>{{ location }}</em>": "Move to <em>{{ location }}</em>",
|
||||
"Couldn’t create the document, try again?": "Couldn’t create the document, try again?",
|
||||
"Document permanently deleted": "Document permanently deleted",
|
||||
"Are you sure you want to permanently delete the <em>{{ documentTitle }}</em> document? This action is immediate and cannot be undone.": "Are you sure you want to permanently delete the <em>{{ documentTitle }}</em> document? This action is immediate and cannot be undone.",
|
||||
@@ -885,7 +898,6 @@
|
||||
"Open this guide": "Open this guide",
|
||||
"Enter": "Enter",
|
||||
"Publish document and exit": "Publish document and exit",
|
||||
"Save document": "Save document",
|
||||
"Cancel editing": "Cancel editing",
|
||||
"Collaboration": "Collaboration",
|
||||
"Formatting": "Formatting",
|
||||
@@ -978,11 +990,14 @@
|
||||
"An error occurred": "An error occurred",
|
||||
"The OAuth client could not be found, please check the provided client ID": "The OAuth client could not be found, please check the provided client ID",
|
||||
"The OAuth client could not be loaded, please check the redirect URI is valid": "The OAuth client could not be loaded, please check the redirect URI is valid",
|
||||
"The OAuth client could not be loaded, please check your workspace subdomain is correct": "The OAuth client could not be loaded, please check your workspace subdomain is correct",
|
||||
"Required OAuth parameters are missing": "Required OAuth parameters are missing",
|
||||
"Authorize": "Authorize",
|
||||
"{{ appName }} wants to access {{ teamName }}": "{{ appName }} wants to access {{ teamName }}",
|
||||
"By <em>{{ developerName }}</em>": "By <em>{{ developerName }}</em>",
|
||||
"{{ appName }} will be able to access your account and perform the following actions": "{{ appName }} will be able to access your account and perform the following actions",
|
||||
"You will be redirected to a local application after authorizing.": "You will be redirected to a local application after authorizing.",
|
||||
"You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.": "You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.",
|
||||
"read": "read",
|
||||
"write": "write",
|
||||
"read and write": "read and write",
|
||||
@@ -1156,6 +1171,8 @@
|
||||
"Last accessed": "Last accessed",
|
||||
"Domain": "Domain",
|
||||
"Views": "Views",
|
||||
"Visibility": "Visibility",
|
||||
"Updated by": "Updated by",
|
||||
"All roles": "All roles",
|
||||
"Admins": "Admins",
|
||||
"Editors": "Editors",
|
||||
@@ -1188,15 +1205,26 @@
|
||||
"Your workspace will be accessible at": "Your workspace will be accessible at",
|
||||
"Choose a subdomain to enable a login page just for your team.": "Choose a subdomain to enable a login page just for your team.",
|
||||
"This is the screen that workspace members will first see when they sign in.": "This is the screen that workspace members will first see when they sign in.",
|
||||
"Danger": "Danger",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "You can delete this entire workspace including collections, documents, and users.",
|
||||
"Export data": "Export data",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.",
|
||||
"Recent exports": "Recent exports",
|
||||
"Manage optional and beta features. Changing these settings will affect the experience for all members of the workspace.": "Manage optional and beta features. Changing these settings will affect the experience for all members of the workspace.",
|
||||
"Separate editing": "Separate editing",
|
||||
"When enabled documents have a separate editing mode by default instead of being always editable. This setting can be overridden by user preferences.": "When enabled documents have a separate editing mode by default instead of being always editable. This setting can be overridden by user preferences.",
|
||||
"When enabled team members can add comments to documents.": "When enabled team members can add comments to documents.",
|
||||
"Danger": "Danger",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "You can delete this entire workspace including collections, documents, and users.",
|
||||
"Enabled": "Enabled",
|
||||
"Allow supported providers to be inserted as interactive embeds in documents.": "Allow supported providers to be inserted as interactive embeds in documents.",
|
||||
"Providers": "Providers",
|
||||
"Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.": "Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.",
|
||||
"All providers": "All providers",
|
||||
"Export data": "Export data",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.",
|
||||
"Recent exports": "Recent exports",
|
||||
"Manage AI and integration features for your workspace.": "Manage AI and integration features for your workspace.",
|
||||
"MCP server": "MCP server",
|
||||
"Allow members to connect to this workspace with MCP to read and write data.": "Allow members to connect to this workspace with MCP to read and write data.",
|
||||
"Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.": "Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.",
|
||||
"Copy URL": "Copy URL",
|
||||
"AI answers": "AI answers",
|
||||
"Use AI to get direct answers to questions in search. This feature requires a paid license.": "Use AI to get direct answers to questions in search. This feature requires a paid license.",
|
||||
"Create a group": "Create a group",
|
||||
"Could not load groups": "Could not load groups",
|
||||
"New group": "New group",
|
||||
@@ -1288,8 +1316,6 @@
|
||||
"When enabled, viewers can see download options for documents": "When enabled, viewers can see download options for documents",
|
||||
"Users can delete account": "Users can delete account",
|
||||
"When enabled, users can delete their own account from the workspace": "When enabled, users can delete their own account from the workspace",
|
||||
"Rich service embeds": "Rich service embeds",
|
||||
"Links to supported services are shown as rich embeds within your documents": "Links to supported services are shown as rich embeds within your documents",
|
||||
"Email address visibility": "Email address visibility",
|
||||
"Controls who can see user email addresses in the workspace": "Controls who can see user email addresses in the workspace",
|
||||
"Collection creation": "Collection creation",
|
||||
@@ -1300,9 +1326,10 @@
|
||||
"Sharing is currently disabled.": "Sharing is currently disabled.",
|
||||
"You can globally enable and disable public document sharing in the <em>security settings</em>.": "You can globally enable and disable public document sharing in the <em>security settings</em>.",
|
||||
"Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.": "Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.",
|
||||
"You can create templates to help your team create consistent and accurate documentation.": "You can create templates to help your team create consistent and accurate documentation.",
|
||||
"Alphabetical": "Alphabetical",
|
||||
"There are no templates just yet.": "There are no templates just yet.",
|
||||
"A template must have content": "A template must have content",
|
||||
"Could not load templates": "Could not load templates",
|
||||
"Templates help your team create consistent and accurate documentation.": "Templates help your team create consistent and accurate documentation.",
|
||||
"No templates have been created yet": "No templates have been created yet",
|
||||
"{{ teamName }} is using {{ appName }} to share documents, please login to continue.": "{{ teamName }} is using {{ appName }} to share documents, please login to continue.",
|
||||
"A confirmation code has been sent to your email address, please enter the code below to permanently destroy this workspace.": "A confirmation code has been sent to your email address, please enter the code below to permanently destroy this workspace.",
|
||||
"Confirmation code": "Confirmation code",
|
||||
@@ -1363,7 +1390,6 @@
|
||||
"New Attribute": "New Attribute",
|
||||
"Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.": "Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.",
|
||||
"Custom domain": "Custom domain",
|
||||
"AI answers": "AI answers",
|
||||
"Use AI to directly answer searched questions using content in your workspace.": "Use AI to directly answer searched questions using content in your workspace.",
|
||||
"API access": "API access",
|
||||
"Allow members to create API keys for programmatic access": "Allow members to create API keys for programmatic access",
|
||||
@@ -1413,6 +1439,27 @@
|
||||
"Enabled by {{integrationCreatedBy}}": "Enabled by {{integrationCreatedBy}}",
|
||||
"Disconnecting will prevent previewing GitHub links from this organization in documents. Are you sure?": "Disconnecting will prevent previewing GitHub links from this organization in documents. Are you sure?",
|
||||
"The GitHub integration is currently disabled. Please set the associated environment variables and restart the server to enable the integration.": "The GitHub integration is currently disabled. Please set the associated environment variables and restart the server to enable the integration.",
|
||||
"Connect GitLab": "Connect GitLab",
|
||||
"Enter the details for your GitLab instance.": "Enter the details for your GitLab instance.",
|
||||
"GitLab URL": "GitLab URL",
|
||||
"URL must start with https": "URL must start with https",
|
||||
"Client ID": "Client ID",
|
||||
"OAuth application ID": "OAuth application ID",
|
||||
"Client Secret": "Client Secret",
|
||||
"OAuth application secret": "OAuth application secret",
|
||||
"Connecting": "Connecting",
|
||||
"Choose which GitLab instance to connect to.": "Choose which GitLab instance to connect to.",
|
||||
"GitLab Cloud": "GitLab Cloud",
|
||||
"Connect to your account on gitlab.com": "Connect to your account on gitlab.com",
|
||||
"GitLab Cloud credentials are not configured": "GitLab Cloud credentials are not configured",
|
||||
"Self-managed": "Self-managed",
|
||||
"Connect to a custom GitLab installation": "Connect to a custom GitLab installation",
|
||||
"You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?": "You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?",
|
||||
"The GitLab account is already connected to this workspace.": "The GitLab account is already connected to this workspace.",
|
||||
"Something went wrong while authenticating your request. Please try again.": "Something went wrong while authenticating your request. Please try again.",
|
||||
"The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.": "The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.",
|
||||
"Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.": "Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.",
|
||||
"Disconnecting will prevent previewing links from GitLab in documents. Are you sure?": "Disconnecting will prevent previewing links from GitLab in documents. Are you sure?",
|
||||
"Google Analytics": "Google Analytics",
|
||||
"Add a Google Analytics 4 measurement ID to send document views and analytics from the workspace to your own Google Analytics account.": "Add a Google Analytics 4 measurement ID to send document views and analytics from the workspace to your own Google Analytics account.",
|
||||
"Measurement ID": "Measurement ID",
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
"Collection permissions": "Gyűjtemény jogosultságai",
|
||||
"Share this collection": "Gyűjtemény megosztása",
|
||||
"Import document": "Dokumentum importálása",
|
||||
"Uploading": "Uploading",
|
||||
"Sort in sidebar": "Rendezés az oldalsávban",
|
||||
"A-Z sort": "A-Z sort",
|
||||
"Z-A sort": "Z-A sort",
|
||||
@@ -53,8 +54,9 @@
|
||||
"Development": "Fejlesztés",
|
||||
"Open document": "Dokumentum megnyitása",
|
||||
"New draft": "Új piszkozat",
|
||||
"New from template": "Új, sablonból",
|
||||
"New nested document": "Új beágyazott dokumentum",
|
||||
"Nested document": "Nested document",
|
||||
"Before": "Before",
|
||||
"After": "After",
|
||||
"Publish": "Közzététel",
|
||||
"Published {{ documentName }}": "A(z) {{ documentName }} közzétéve",
|
||||
"Publish document": "Dokumentum közzététele",
|
||||
@@ -91,9 +93,7 @@
|
||||
"Create template": "Sablon létrehozása",
|
||||
"Open random document": "Véletlenszerű dokumentum megnyítása",
|
||||
"Search documents for \"{{searchQuery}}\"": "\"{{searchQuery}}\" keresése a dokumentumokban",
|
||||
"Move to workspace": "Áthelyezés a munkaterületre",
|
||||
"Move": "Áthelyezés",
|
||||
"Move to collection": "Mozgatás a kollekcióba",
|
||||
"Move {{ documentType }}": "{{ documentType }} áthelyezése",
|
||||
"Are you sure you want to archive this document?": "Biztos vagy benne, hogy archiválni szeretnéd ezt a dokumentumot?",
|
||||
"Document archived": "Dokumentum archiválva",
|
||||
@@ -165,6 +165,15 @@
|
||||
"New workspace": "Új munkaterület",
|
||||
"Create a workspace": "Munkaterület létrehozása",
|
||||
"Login to workspace": "Bejelentkezés a munkaterületbe",
|
||||
"Template deleted": "Template deleted",
|
||||
"Deleting": "Törlés",
|
||||
"Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.": "Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.",
|
||||
"Move to workspace": "Áthelyezés a munkaterületre",
|
||||
"Template moved": "Template moved",
|
||||
"Couldn't move the template, try again?": "Couldn't move the template, try again?",
|
||||
"Move to collection": "Mozgatás a kollekcióba",
|
||||
"Move template": "Move template",
|
||||
"Print template": "Print template",
|
||||
"Invite people": "Mások meghívása",
|
||||
"Invite to workspace": "Meghívása a munkaterületbe",
|
||||
"Promote to {{ role }}": "Előléptetés {{ role }} szerepbe",
|
||||
@@ -176,6 +185,7 @@
|
||||
"Debug": "Hibakeresés",
|
||||
"Document": "Dokumentum",
|
||||
"Documents": "Dokumentumok",
|
||||
"Template": "Sablon",
|
||||
"Recently viewed": "Legutóbb megtekintett",
|
||||
"Revision": "Revízió",
|
||||
"Navigation": "Navigáció",
|
||||
@@ -195,6 +205,7 @@
|
||||
"Collections are used to group documents and choose permissions": "A gyűjtemények dokumentuok csoportosítására és jogosultságok beállítására szolgálnak",
|
||||
"Name": "Név",
|
||||
"The default access for workspace members, you can share with more users or groups later.": "Az alapértelmezett hozzáférés a munkaterület tagjainak, a későbbiekben további felhasználókkal és csoportokkal is megoszthatod.",
|
||||
"Advanced options": "Advanced options",
|
||||
"Public document sharing": "Nyilvános dokumentum megosztás",
|
||||
"Allow documents within this collection to be shared publicly on the internet.": "Gyűjteményhez tartozó dokumentumok inteneten való publikus megosztásának engedélyezése.",
|
||||
"Commenting": "Hozzászólás",
|
||||
@@ -205,10 +216,10 @@
|
||||
"Create": "Létrehozás",
|
||||
"Collection deleted": "Gyűjtemény törölve",
|
||||
"I’m sure – Delete": "Biztos vagyok benne - Törlés",
|
||||
"Deleting": "Törlés",
|
||||
"Are you sure about that? Deleting the <em>{{collectionName}}</em> collection is permanent and cannot be restored, however all published documents within will be moved to the trash.": "Biztos benne? A(z) <em>{{collectionName}}</em> gyűjtemény törlése végleges, és nem lehet majd visszaállítani, azonban minden benne foglalt, publikált dokumentum a kukába kerül.",
|
||||
"Also, <em>{{collectionName}}</em> is being used as the start view – deleting it will reset the start view to the Home page.": "Ezen felül a(z) <em>{{collectionName}}</em> gyűjtemény nyitólapként van beállítva – a törlése visszaállítja a nyitólapot is az eredetire.",
|
||||
"Type a command or search": "Írjon be egy parancsot vagy keresést",
|
||||
"New from template": "Új, sablonból",
|
||||
"Choose a template": "Válasszon egy sablont",
|
||||
"Are you sure you want to permanently delete this entire comment thread?": "Biztos benne, hogy véglegesen törölni szeretné az egész hozzászólás szálat?",
|
||||
"Are you sure you want to permanently delete this comment?": "Biztos benne, hogy véglegesen törölni szeretné a hozzászólást?",
|
||||
@@ -227,12 +238,6 @@
|
||||
"Deleted Collection": "Törölt gyűjtemény",
|
||||
"Untitled": "Névtelen",
|
||||
"Unpin": "Feloldás",
|
||||
"Select a location to copy": "Válassz ki egy helyet a másoláshoz",
|
||||
"Document copied": "Dokumentum átmásolva",
|
||||
"Couldn’t copy the document, try again?": "A dokumentum másolása sikertelen volt. Újrapróbálod?",
|
||||
"Include nested documents": "Beágyazott dokumentumokkal együtt",
|
||||
"Copy to <em>{{ location }}</em>": "Másolás a {{ location }} helyre",
|
||||
"Copying": "Copying",
|
||||
"Export started": "Az exportálás elindult",
|
||||
"A link to your file will be sent through email soon": "A link to your file will be sent through email soon",
|
||||
"Preparing your download": "Preparing your download",
|
||||
@@ -242,13 +247,24 @@
|
||||
"Include child documents": "Include child documents",
|
||||
"When selected, exporting the document <em>{{documentName}}</em> may take some time.": "When selected, exporting the document <em>{{documentName}}</em> may take some time.",
|
||||
"You will receive an email when it's complete.": "Egy e-mail-t fog kapni, mikor elkészült.",
|
||||
"Select a location to copy": "Válassz ki egy helyet a másoláshoz",
|
||||
"Document copied": "Dokumentum átmásolva",
|
||||
"Couldn’t copy the document, try again?": "A dokumentum másolása sikertelen volt. Újrapróbálod?",
|
||||
"Include nested documents": "Beágyazott dokumentumokkal együtt",
|
||||
"Copy to <em>{{ location }}</em>": "Másolás a {{ location }} helyre",
|
||||
"Copying": "Copying",
|
||||
"Search collections & documents": "Keresés a gyűteményekben és dokumentumokban",
|
||||
"Search collections": "Search collections",
|
||||
"No results found": "Nincs találat",
|
||||
"Select a location to move": "Select a location to move",
|
||||
"Document moved": "Document moved",
|
||||
"Couldn’t move the document, try again?": "Couldn’t move the document, try again?",
|
||||
"Move to <em>{{ location }}</em>": "Move to <em>{{ location }}</em>",
|
||||
"Couldn’t move the template, try again?": "Couldn’t move the template, try again?",
|
||||
"Document options": "Dokumentum beállítások",
|
||||
"New": "Új",
|
||||
"Only visible to you": "Csak az Ön számára látható",
|
||||
"Draft": "Piszkozat",
|
||||
"Template": "Sablon",
|
||||
"You updated": "Ön módosította",
|
||||
"{{ userName }} updated": "{{ userName }} módosította",
|
||||
"You deleted": "Ön törölte",
|
||||
@@ -278,7 +294,6 @@
|
||||
"Please enter a name for the emoji": "Please enter a name for the emoji",
|
||||
"Please select an image file": "Please select an image file",
|
||||
"Emoji created successfully": "Emoji created successfully",
|
||||
"Uploading": "Uploading",
|
||||
"Add emoji": "Add emoji",
|
||||
"Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.": "Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.",
|
||||
"Upload an image": "Upload an image",
|
||||
@@ -467,6 +482,7 @@
|
||||
"Collapse sidebar": "Collapse sidebar",
|
||||
"Archived collections": "Keresés a gyűjteményben",
|
||||
"New doc": "Új doku",
|
||||
"New nested document": "Új beágyazott dokumentum",
|
||||
"Empty": "Üres",
|
||||
"No collections": "No collections",
|
||||
"Collapse": "Összezárás",
|
||||
@@ -493,6 +509,8 @@
|
||||
"Unstar document": "Dokumentum csillagozásának törlése",
|
||||
"Star document": "Dokumentum csillagozása",
|
||||
"Select a color": "Válasszon egy színt",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Jelöljön ki valamilyen szöveget, és használja a <1></1> vezérlőt olyan helykitöltők hozzáadásához, amelyek kitöltésre kerülhetnek új dokumentumok létrehozásakor",
|
||||
"You’re editing a template": "Ön egy sablont szerkeszt",
|
||||
"Template created, go ahead and customize it": "A sablon elkészült, fogjon bele a testreszabásba",
|
||||
"Creating a template from <em>{{titleWithDefault}}</em> is a non-destructive action – we'll make a copy of the document and turn it into a template that can be used as a starting point for new documents.": "Sablon létrehozása a(z) <em>{{titleWithDefault}}</em> dokumentumból \"roncsolásmentes\" művelet – egy másolatot készítünk a dokumentumból, melyből sablon lesz, ami új dokumentumok kiinduló pontjának használható.",
|
||||
"Enable other members to use the template immediately": "Enable other members to use the template immediately",
|
||||
@@ -632,6 +650,7 @@
|
||||
"Delete embed": "Delete embed",
|
||||
"Formatting controls": "Formatting controls",
|
||||
"Distribute columns": "Distribute columns",
|
||||
"Wrap text": "Wrap text",
|
||||
"Delete Emoji": "Delete Emoji",
|
||||
"Emoji deleted": "Emoji deleted",
|
||||
"I'm sure – Delete": "I'm sure – Delete",
|
||||
@@ -644,17 +663,19 @@
|
||||
"Unsubscribed from document": "Leiratkozott a dokumentumról",
|
||||
"Unsubscribed from collection": "Leiratkozott a dokumentumról",
|
||||
"Account": "Fiók",
|
||||
"API & Apps": "API és alkalmazások",
|
||||
"API & Access": "API & Access",
|
||||
"Details": "Megjelenés",
|
||||
"Authentication": "Authentication",
|
||||
"Security": "Biztonság",
|
||||
"Features": "Funkciók",
|
||||
"AI": "AI",
|
||||
"API Keys": "API-kulcsok",
|
||||
"Applications": "Alkalmazások",
|
||||
"Shared Links": "Megosztott hivatkozások",
|
||||
"Import": "Importálás",
|
||||
"Install": "Install",
|
||||
"Embeds": "Embeds",
|
||||
"Configure which embed providers are available in the editor.": "Configure which embed providers are available in the editor.",
|
||||
"Integrations": "Integrációk",
|
||||
"Install": "Install",
|
||||
"Change name": "Név módosítása",
|
||||
"Change email": "Email-cím megváltoztatása",
|
||||
"Suspend user": "Felfüggesztett felhasználó",
|
||||
@@ -685,8 +706,8 @@
|
||||
"Headings you add to the document will appear here": "A dokumentumhoz hozzáadott címsorok itt jelennek meg",
|
||||
"Contents": "Tartalom",
|
||||
"Table of contents": "Tartalomjegyzék",
|
||||
"Template options": "Template options",
|
||||
"User options": "Felhasználó beállításai",
|
||||
"template": "sablon",
|
||||
"document": "dokumentum",
|
||||
"Export complete": "Export complete",
|
||||
"Export failed": "Export failed",
|
||||
@@ -812,23 +833,15 @@
|
||||
"Sorry, the last change could not be persisted – please reload the page": "Elnézést, az utolsó változás nem menthető – kérem töltse újra az oldalt",
|
||||
"{{ count }} days": "{{ count }} szó",
|
||||
"{{ count }} days_plural": "{{ count }} szó",
|
||||
"This template will be permanently deleted in <2></2> unless restored.": "Ez a sablon véglegesen törölve lesz <2></2>, hacsak nem álítja vissza.",
|
||||
"This document will be permanently deleted in <2></2> unless restored.": "Ez a dokumentum véglegesen törölve lesz <2></2>, hacsak nem álítja vissza.",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Jelöljön ki valamilyen szöveget, és használja a <1></1> vezérlőt olyan helykitöltők hozzáadásához, amelyek kitöltésre kerülhetnek új dokumentumok létrehozásakor",
|
||||
"You’re editing a template": "Ön egy sablont szerkeszt",
|
||||
"Deleted by {{userName}}": "Törölte: {{userName}}",
|
||||
"Observing {{ userName }}": "Vizsgálja: {{ userName }}",
|
||||
"Backlinks": "Vissza-hivatkozások",
|
||||
"This document is large which may affect performance": "This document is large which may affect performance",
|
||||
"Are you sure you want to delete the <em>{{ documentTitle }}</em> template?": "Are you sure you want to delete the <em>{{ documentTitle }}</em> template?",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history</em>.": "Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>.": "Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>._plural": "Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested documents</em>.",
|
||||
"If you’d like the option of referencing or restoring the {{noun}} in the future, consider archiving it instead.": "Ha szeretnéd, hogy később visszaállíthasd vagy hivatkozhass a {{noun}}, fontold meg inkább az archiválás lehetőségét.",
|
||||
"Select a location to move": "Select a location to move",
|
||||
"Document moved": "Document moved",
|
||||
"Couldn’t move the document, try again?": "Couldn’t move the document, try again?",
|
||||
"Move to <em>{{ location }}</em>": "Move to <em>{{ location }}</em>",
|
||||
"Couldn’t create the document, try again?": "Couldn’t create the document, try again?",
|
||||
"Document permanently deleted": "Document permanently deleted",
|
||||
"Are you sure you want to permanently delete the <em>{{ documentTitle }}</em> document? This action is immediate and cannot be undone.": "Are you sure you want to permanently delete the <em>{{ documentTitle }}</em> document? This action is immediate and cannot be undone.",
|
||||
@@ -885,7 +898,6 @@
|
||||
"Open this guide": "Open this guide",
|
||||
"Enter": "Bevitel",
|
||||
"Publish document and exit": "Publish document and exit",
|
||||
"Save document": "Dokumentum mentése",
|
||||
"Cancel editing": "Szerkesztés megszakítása",
|
||||
"Collaboration": "Együttműködés",
|
||||
"Formatting": "Formázás",
|
||||
@@ -978,11 +990,14 @@
|
||||
"An error occurred": "An error occurred",
|
||||
"The OAuth client could not be found, please check the provided client ID": "The OAuth client could not be found, please check the provided client ID",
|
||||
"The OAuth client could not be loaded, please check the redirect URI is valid": "The OAuth client could not be loaded, please check the redirect URI is valid",
|
||||
"The OAuth client could not be loaded, please check your workspace subdomain is correct": "The OAuth client could not be loaded, please check your workspace subdomain is correct",
|
||||
"Required OAuth parameters are missing": "Required OAuth parameters are missing",
|
||||
"Authorize": "Authorize",
|
||||
"{{ appName }} wants to access {{ teamName }}": "{{ appName }} wants to access {{ teamName }}",
|
||||
"By <em>{{ developerName }}</em>": "By <em>{{ developerName }}</em>",
|
||||
"{{ appName }} will be able to access your account and perform the following actions": "{{ appName }} will be able to access your account and perform the following actions",
|
||||
"You will be redirected to a local application after authorizing.": "You will be redirected to a local application after authorizing.",
|
||||
"You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.": "You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.",
|
||||
"read": "read",
|
||||
"write": "write",
|
||||
"read and write": "read and write",
|
||||
@@ -1156,6 +1171,8 @@
|
||||
"Last accessed": "Last accessed",
|
||||
"Domain": "Domain",
|
||||
"Views": "Megtekintések",
|
||||
"Visibility": "Visibility",
|
||||
"Updated by": "Updated by",
|
||||
"All roles": "Összes szerep",
|
||||
"Admins": "Adminisztrátorok",
|
||||
"Editors": "Szerkesztők",
|
||||
@@ -1188,15 +1205,26 @@
|
||||
"Your workspace will be accessible at": "Your workspace will be accessible at",
|
||||
"Choose a subdomain to enable a login page just for your team.": "Choose a subdomain to enable a login page just for your team.",
|
||||
"This is the screen that workspace members will first see when they sign in.": "This is the screen that workspace members will first see when they sign in.",
|
||||
"Danger": "Veszély",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "You can delete this entire workspace including collections, documents, and users.",
|
||||
"Export data": "Export data",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.",
|
||||
"Recent exports": "Recent exports",
|
||||
"Manage optional and beta features. Changing these settings will affect the experience for all members of the workspace.": "Manage optional and beta features. Changing these settings will affect the experience for all members of the workspace.",
|
||||
"Separate editing": "Separate editing",
|
||||
"When enabled documents have a separate editing mode by default instead of being always editable. This setting can be overridden by user preferences.": "When enabled documents have a separate editing mode by default instead of being always editable. This setting can be overridden by user preferences.",
|
||||
"When enabled team members can add comments to documents.": "When enabled team members can add comments to documents.",
|
||||
"Danger": "Veszély",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "You can delete this entire workspace including collections, documents, and users.",
|
||||
"Enabled": "Enabled",
|
||||
"Allow supported providers to be inserted as interactive embeds in documents.": "Allow supported providers to be inserted as interactive embeds in documents.",
|
||||
"Providers": "Providers",
|
||||
"Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.": "Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.",
|
||||
"All providers": "All providers",
|
||||
"Export data": "Export data",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.",
|
||||
"Recent exports": "Recent exports",
|
||||
"Manage AI and integration features for your workspace.": "Manage AI and integration features for your workspace.",
|
||||
"MCP server": "MCP server",
|
||||
"Allow members to connect to this workspace with MCP to read and write data.": "Allow members to connect to this workspace with MCP to read and write data.",
|
||||
"Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.": "Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.",
|
||||
"Copy URL": "Copy URL",
|
||||
"AI answers": "AI answers",
|
||||
"Use AI to get direct answers to questions in search. This feature requires a paid license.": "Use AI to get direct answers to questions in search. This feature requires a paid license.",
|
||||
"Create a group": "Csoport létrehozása",
|
||||
"Could not load groups": "Could not load groups",
|
||||
"New group": "New group",
|
||||
@@ -1288,8 +1316,6 @@
|
||||
"When enabled, viewers can see download options for documents": "When enabled, viewers can see download options for documents",
|
||||
"Users can delete account": "Users can delete account",
|
||||
"When enabled, users can delete their own account from the workspace": "When enabled, users can delete their own account from the workspace",
|
||||
"Rich service embeds": "Rich service embeds",
|
||||
"Links to supported services are shown as rich embeds within your documents": "Links to supported services are shown as rich embeds within your documents",
|
||||
"Email address visibility": "Email address visibility",
|
||||
"Controls who can see user email addresses in the workspace": "Controls who can see user email addresses in the workspace",
|
||||
"Collection creation": "Gyűjtemény létrehozása",
|
||||
@@ -1300,9 +1326,10 @@
|
||||
"Sharing is currently disabled.": "Sharing is currently disabled.",
|
||||
"You can globally enable and disable public document sharing in the <em>security settings</em>.": "You can globally enable and disable public document sharing in the <em>security settings</em>.",
|
||||
"Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.": "Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.",
|
||||
"You can create templates to help your team create consistent and accurate documentation.": "Sablonokat hozhat létre, hogy segítse a csapatát a következetes és pontos dokumentáció létrehozásában.",
|
||||
"Alphabetical": "Betűrendi",
|
||||
"There are no templates just yet.": "Jelenleg még nincsenek sablonok.",
|
||||
"A template must have content": "A template must have content",
|
||||
"Could not load templates": "Could not load templates",
|
||||
"Templates help your team create consistent and accurate documentation.": "Templates help your team create consistent and accurate documentation.",
|
||||
"No templates have been created yet": "No templates have been created yet",
|
||||
"{{ teamName }} is using {{ appName }} to share documents, please login to continue.": "{{ teamName }} is using {{ appName }} to share documents, please login to continue.",
|
||||
"A confirmation code has been sent to your email address, please enter the code below to permanently destroy this workspace.": "A confirmation code has been sent to your email address, please enter the code below to permanently destroy this workspace.",
|
||||
"Confirmation code": "Megerősítő kód",
|
||||
@@ -1363,7 +1390,6 @@
|
||||
"New Attribute": "New Attribute",
|
||||
"Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.": "Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.",
|
||||
"Custom domain": "Custom domain",
|
||||
"AI answers": "AI answers",
|
||||
"Use AI to directly answer searched questions using content in your workspace.": "Use AI to directly answer searched questions using content in your workspace.",
|
||||
"API access": "API access",
|
||||
"Allow members to create API keys for programmatic access": "Allow members to create API keys for programmatic access",
|
||||
@@ -1413,6 +1439,27 @@
|
||||
"Enabled by {{integrationCreatedBy}}": "Enabled by {{integrationCreatedBy}}",
|
||||
"Disconnecting will prevent previewing GitHub links from this organization in documents. Are you sure?": "Disconnecting will prevent previewing GitHub links from this organization in documents. Are you sure?",
|
||||
"The GitHub integration is currently disabled. Please set the associated environment variables and restart the server to enable the integration.": "The GitHub integration is currently disabled. Please set the associated environment variables and restart the server to enable the integration.",
|
||||
"Connect GitLab": "Connect GitLab",
|
||||
"Enter the details for your GitLab instance.": "Enter the details for your GitLab instance.",
|
||||
"GitLab URL": "GitLab URL",
|
||||
"URL must start with https": "URL must start with https",
|
||||
"Client ID": "Client ID",
|
||||
"OAuth application ID": "OAuth application ID",
|
||||
"Client Secret": "Client Secret",
|
||||
"OAuth application secret": "OAuth application secret",
|
||||
"Connecting": "Connecting",
|
||||
"Choose which GitLab instance to connect to.": "Choose which GitLab instance to connect to.",
|
||||
"GitLab Cloud": "GitLab Cloud",
|
||||
"Connect to your account on gitlab.com": "Connect to your account on gitlab.com",
|
||||
"GitLab Cloud credentials are not configured": "GitLab Cloud credentials are not configured",
|
||||
"Self-managed": "Self-managed",
|
||||
"Connect to a custom GitLab installation": "Connect to a custom GitLab installation",
|
||||
"You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?": "You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?",
|
||||
"The GitLab account is already connected to this workspace.": "The GitLab account is already connected to this workspace.",
|
||||
"Something went wrong while authenticating your request. Please try again.": "Something went wrong while authenticating your request. Please try again.",
|
||||
"The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.": "The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.",
|
||||
"Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.": "Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.",
|
||||
"Disconnecting will prevent previewing links from GitLab in documents. Are you sure?": "Disconnecting will prevent previewing links from GitLab in documents. Are you sure?",
|
||||
"Google Analytics": "Google Analytics",
|
||||
"Add a Google Analytics 4 measurement ID to send document views and analytics from the workspace to your own Google Analytics account.": "Add a Google Analytics 4 measurement ID to send document views and analytics from the workspace to your own Google Analytics account.",
|
||||
"Measurement ID": "Measurement ID",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
"New API key": "",
|
||||
"Delete": "Hapus",
|
||||
"Revoke": "Cabut",
|
||||
"Revoke API key": "Revoke API key",
|
||||
"Revoke API key": "Mencabut kunci API",
|
||||
"Revoke token": "Cabut token",
|
||||
"Open collection": "Buka koleksi",
|
||||
"New collection": "Koleksi baru",
|
||||
@@ -13,9 +13,10 @@
|
||||
"Collection permissions": "Perizinan koleksi",
|
||||
"Share this collection": "Bagikan koleksi ini",
|
||||
"Import document": "Impor dokumen",
|
||||
"Uploading": "Mengunggah",
|
||||
"Sort in sidebar": "Urutkan di sidebar",
|
||||
"A-Z sort": "A-Z sort",
|
||||
"Z-A sort": "Z-A sort",
|
||||
"A-Z sort": "Sortir A-Z",
|
||||
"Z-A sort": "Sortir Z-A",
|
||||
"Manual sort": "Pengurutan manual",
|
||||
"Search in collection": "Cari di koleksi",
|
||||
"Star": "Bintangi",
|
||||
@@ -30,14 +31,14 @@
|
||||
"Archiving": "Mengarsipkan",
|
||||
"Archiving this collection will also archive all documents within it. Documents from the collection will no longer be visible in search results.": "Archiving this collection will also archive all documents within it. Documents from the collection will no longer be visible in search results.",
|
||||
"Restore": "Memulihkan",
|
||||
"Collection restored": "Collection restored",
|
||||
"Collection restored": "Koleksi dipulihkan",
|
||||
"Delete collection": "Hapus koleksi",
|
||||
"Export": "Ekspor",
|
||||
"Export collection": "Ekspor koleksi",
|
||||
"New document": "Dokumen baru",
|
||||
"New template": "Templat baru",
|
||||
"Delete comment": "Hapus komentar",
|
||||
"Mark as resolved": "Mark as resolved",
|
||||
"Mark as resolved": "Tandai sudah selesai",
|
||||
"Thread resolved": "Thread resolved",
|
||||
"Mark as unresolved": "Mark as unresolved",
|
||||
"View reactions": "View reactions",
|
||||
@@ -53,8 +54,9 @@
|
||||
"Development": "Pengembangan",
|
||||
"Open document": "Buka dokumen",
|
||||
"New draft": "New draft",
|
||||
"New from template": "Baru dari templat",
|
||||
"New nested document": "Buat dokumen bercabang",
|
||||
"Nested document": "Nested document",
|
||||
"Before": "Before",
|
||||
"After": "After",
|
||||
"Publish": "Terbitkan",
|
||||
"Published {{ documentName }}": "Published {{ documentName }}",
|
||||
"Publish document": "Terbitkan dokumen",
|
||||
@@ -64,9 +66,9 @@
|
||||
"Share this document": "Bagikan dokumen ini",
|
||||
"Download": "Unduh",
|
||||
"Download document": "Unduh dokumen",
|
||||
"Download as Markdown": "Download as Markdown",
|
||||
"Download as HTML": "Download as HTML",
|
||||
"Download as PDF": "Download as PDF",
|
||||
"Download as Markdown": "Unduh dengan format Markdown",
|
||||
"Download as HTML": "Unduh dengan format HTML",
|
||||
"Download as PDF": "Unduh dengan format PDF",
|
||||
"Copy as Markdown": "Salin sebagai Markdown",
|
||||
"Markdown copied to clipboard": "Markdown copied to clipboard",
|
||||
"Copy as text": "Copy as text",
|
||||
@@ -84,16 +86,14 @@
|
||||
"Pin to home": "Pin ke beranda",
|
||||
"Pinned to home": "Pinned to home",
|
||||
"Pin": "Pin",
|
||||
"Search in document": "Search in document",
|
||||
"Search in document": "Cari dalam dokumen",
|
||||
"Print": "Cetak",
|
||||
"Print document": "Cetak dokumen",
|
||||
"Templatize": "Jadikan template",
|
||||
"Create template": "Buat template",
|
||||
"Open random document": "Buka dokumen acak",
|
||||
"Search documents for \"{{searchQuery}}\"": "Telusuri dokumen untuk \"{{searchQuery}}\"",
|
||||
"Move to workspace": "Move to workspace",
|
||||
"Move": "Pindahkan",
|
||||
"Move to collection": "Move to collection",
|
||||
"Move {{ documentType }}": "Pindahkan {{ documentType }}",
|
||||
"Are you sure you want to archive this document?": "Are you sure you want to archive this document?",
|
||||
"Document archived": "Dokumen diarsip",
|
||||
@@ -112,8 +112,8 @@
|
||||
"You have left the shared document": "You have left the shared document",
|
||||
"Could not leave document": "Could not leave document",
|
||||
"Apply template": "Apply template",
|
||||
"New emoji": "New emoji",
|
||||
"Upload emoji": "Upload emoji",
|
||||
"New emoji": "Emoji baru",
|
||||
"Upload emoji": "Unggah emoji",
|
||||
"Disconnect": "Memutuskan",
|
||||
"Disconnect analytics": "Disconnect analytics",
|
||||
"Home": "Beranda",
|
||||
@@ -123,7 +123,7 @@
|
||||
"Settings": "Pengaturan",
|
||||
"Profile": "Profil",
|
||||
"Templates": "Template",
|
||||
"Notification settings": "Notification settings",
|
||||
"Notification settings": "Pengaturan Notifikasi",
|
||||
"Notifications": "Notifikasi",
|
||||
"Preferences": "Preferensi",
|
||||
"Documentation": "Dokumentasi",
|
||||
@@ -135,10 +135,10 @@
|
||||
"Keyboard shortcuts": "Pintasan papan ketik",
|
||||
"Download {{ platform }} app": "Unduh aplikasi {{ platform }}",
|
||||
"Log out": "Keluar",
|
||||
"Mark notifications as read": "Mark notifications as read",
|
||||
"Mark notifications as read": "Tandai notifikasi sudah dibaca",
|
||||
"Archive all notifications": "Archive all notifications",
|
||||
"Mark as read": "Mark as read",
|
||||
"Mark as unread": "Mark as unread",
|
||||
"Mark as read": "Tandai sudah dibaca",
|
||||
"Mark as unread": "Tandai belumm dibaca",
|
||||
"New App": "New App",
|
||||
"New Application": "New Application",
|
||||
"This version of the document was deleted": "This version of the document was deleted",
|
||||
@@ -147,7 +147,7 @@
|
||||
"PDF": "PDF",
|
||||
"Exporting": "Mengekspor",
|
||||
"Markdown": "Markdown",
|
||||
"Download revision": "Download revision",
|
||||
"Download revision": "Unduh Revisi",
|
||||
"Dark": "Gelap",
|
||||
"Light": "Cerah",
|
||||
"Toggle theme": "Toggle theme",
|
||||
@@ -165,8 +165,17 @@
|
||||
"New workspace": "Ruang kerja baru",
|
||||
"Create a workspace": "Buat ruang kerja",
|
||||
"Login to workspace": "Login to workspace",
|
||||
"Template deleted": "Template deleted",
|
||||
"Deleting": "Menghapus",
|
||||
"Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.": "Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.",
|
||||
"Move to workspace": "Move to workspace",
|
||||
"Template moved": "Template moved",
|
||||
"Couldn't move the template, try again?": "Couldn't move the template, try again?",
|
||||
"Move to collection": "Pindah ke koleksi",
|
||||
"Move template": "Move template",
|
||||
"Print template": "Cetak template",
|
||||
"Invite people": "Undang orang",
|
||||
"Invite to workspace": "Invite to workspace",
|
||||
"Invite to workspace": "Undang ke dalam workspace",
|
||||
"Promote to {{ role }}": "Promote to {{ role }}",
|
||||
"Demote to {{ role }}": "Demote to {{ role }}",
|
||||
"Update role": "Update role",
|
||||
@@ -176,6 +185,7 @@
|
||||
"Debug": "Debug",
|
||||
"Document": "Dokumen",
|
||||
"Documents": "Dokumen",
|
||||
"Template": "Template",
|
||||
"Recently viewed": "Baru dilihat",
|
||||
"Revision": "Revisi",
|
||||
"Navigation": "Navigasi",
|
||||
@@ -195,6 +205,7 @@
|
||||
"Collections are used to group documents and choose permissions": "Collections are used to group documents and choose permissions",
|
||||
"Name": "Nama",
|
||||
"The default access for workspace members, you can share with more users or groups later.": "The default access for workspace members, you can share with more users or groups later.",
|
||||
"Advanced options": "Advanced options",
|
||||
"Public document sharing": "Berbagi dokumen publik",
|
||||
"Allow documents within this collection to be shared publicly on the internet.": "Allow documents within this collection to be shared publicly on the internet.",
|
||||
"Commenting": "Mengomentari",
|
||||
@@ -205,10 +216,10 @@
|
||||
"Create": "Buat",
|
||||
"Collection deleted": "Koleksi berhasil dihapus",
|
||||
"I’m sure – Delete": "Saya yakin – Hapus",
|
||||
"Deleting": "Menghapus",
|
||||
"Are you sure about that? Deleting the <em>{{collectionName}}</em> collection is permanent and cannot be restored, however all published documents within will be moved to the trash.": "Anda yakin? Menghapus koleksi <em>{{collectionName}}</em> bersifat permanen dan tidak dapat dipulihkan, namun dokumen di dalamnya akan dipindahkan ke tempat sampah.",
|
||||
"Also, <em>{{collectionName}}</em> is being used as the start view – deleting it will reset the start view to the Home page.": "Dan, <em>{{collectionName}}</em> digunakan sebagai tampilan awal – menghapusnya akan mengatur ulang tampilan awal ke halaman Beranda.",
|
||||
"Type a command or search": "Ketik perintah atau penelusuran",
|
||||
"New from template": "Baru dari templat",
|
||||
"Choose a template": "Pilih templat",
|
||||
"Are you sure you want to permanently delete this entire comment thread?": "Apakah Anda yakin ingin menghapus semua komentar ini secara permanen?",
|
||||
"Are you sure you want to permanently delete this comment?": "Apa Anda yakin ingin menghapus komentar ini secara permanen?",
|
||||
@@ -227,12 +238,6 @@
|
||||
"Deleted Collection": "Koleksi Dihapus",
|
||||
"Untitled": "Tak Berjudul",
|
||||
"Unpin": "Unpin",
|
||||
"Select a location to copy": "Select a location to copy",
|
||||
"Document copied": "Document copied",
|
||||
"Couldn’t copy the document, try again?": "Couldn’t copy the document, try again?",
|
||||
"Include nested documents": "Include nested documents",
|
||||
"Copy to <em>{{ location }}</em>": "Copy to <em>{{ location }}</em>",
|
||||
"Copying": "Copying",
|
||||
"Export started": "Ekspor dimulai",
|
||||
"A link to your file will be sent through email soon": "A link to your file will be sent through email soon",
|
||||
"Preparing your download": "Preparing your download",
|
||||
@@ -242,13 +247,24 @@
|
||||
"Include child documents": "Include child documents",
|
||||
"When selected, exporting the document <em>{{documentName}}</em> may take some time.": "When selected, exporting the document <em>{{documentName}}</em> may take some time.",
|
||||
"You will receive an email when it's complete.": "Anda akan menerima surel jika sudah selesai.",
|
||||
"Select a location to copy": "Select a location to copy",
|
||||
"Document copied": "Document copied",
|
||||
"Couldn’t copy the document, try again?": "Couldn’t copy the document, try again?",
|
||||
"Include nested documents": "Include nested documents",
|
||||
"Copy to <em>{{ location }}</em>": "Copy to <em>{{ location }}</em>",
|
||||
"Copying": "Copying",
|
||||
"Search collections & documents": "Telusuri koleksi & dokumen",
|
||||
"Search collections": "Search collections",
|
||||
"No results found": "Tak ditemukan hasil",
|
||||
"Select a location to move": "Pilih lokasi untuk dipindahkan",
|
||||
"Document moved": "Dokumen dipindahkan",
|
||||
"Couldn’t move the document, try again?": "Tidak dapat memindahkan dokumen, coba lagi?",
|
||||
"Move to <em>{{ location }}</em>": "Pindah ke <em>{{ location }}</em>",
|
||||
"Couldn’t move the template, try again?": "Couldn’t move the template, try again?",
|
||||
"Document options": "Opsi dokumen",
|
||||
"New": "Baru",
|
||||
"Only visible to you": "Hanya terlihat untuk Anda",
|
||||
"Draft": "Draf",
|
||||
"Template": "Template",
|
||||
"You updated": "Anda memperbarui",
|
||||
"{{ userName }} updated": "{{ userName }} memperbarui",
|
||||
"You deleted": "Anda menghapus",
|
||||
@@ -278,7 +294,6 @@
|
||||
"Please enter a name for the emoji": "Please enter a name for the emoji",
|
||||
"Please select an image file": "Please select an image file",
|
||||
"Emoji created successfully": "Emoji created successfully",
|
||||
"Uploading": "Mengunggah",
|
||||
"Add emoji": "Add emoji",
|
||||
"Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.": "Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.",
|
||||
"Upload an image": "Upload an image",
|
||||
@@ -467,6 +482,7 @@
|
||||
"Collapse sidebar": "Collapse sidebar",
|
||||
"Archived collections": "Archived collections",
|
||||
"New doc": "Dokumen baru",
|
||||
"New nested document": "Buat dokumen bercabang",
|
||||
"Empty": "Kosong",
|
||||
"No collections": "No collections",
|
||||
"Collapse": "Persingkat",
|
||||
@@ -493,6 +509,8 @@
|
||||
"Unstar document": "Unstar document",
|
||||
"Star document": "Star document",
|
||||
"Select a color": "Pilih warna",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Sorot beberapa teks dan gunakan <1></1> kontrol untuk menambahkan placeholder yang dapat diisi saat membuat dokumen baru",
|
||||
"You’re editing a template": "Anda sedang mengedit template",
|
||||
"Template created, go ahead and customize it": "Template telah dibuat, silakan disesuaikan",
|
||||
"Creating a template from <em>{{titleWithDefault}}</em> is a non-destructive action – we'll make a copy of the document and turn it into a template that can be used as a starting point for new documents.": "Membuat template dari <em>{{titleWithDefault}}</em> adalah tindakan yang tidak merusak – kami akan membuat salinan dokumen dan mengubahnya menjadi template yang dapat digunakan sebagai titik awal untuk dokumen baru.",
|
||||
"Enable other members to use the template immediately": "Enable other members to use the template immediately",
|
||||
@@ -632,6 +650,7 @@
|
||||
"Delete embed": "Delete embed",
|
||||
"Formatting controls": "Formatting controls",
|
||||
"Distribute columns": "Distribute columns",
|
||||
"Wrap text": "Wrap text",
|
||||
"Delete Emoji": "Delete Emoji",
|
||||
"Emoji deleted": "Emoji deleted",
|
||||
"I'm sure – Delete": "I'm sure – Delete",
|
||||
@@ -644,17 +663,19 @@
|
||||
"Unsubscribed from document": "Unsubscribed from document",
|
||||
"Unsubscribed from collection": "Unsubscribed from collection",
|
||||
"Account": "Akun",
|
||||
"API & Apps": "API & Apps",
|
||||
"API & Access": "API & Access",
|
||||
"Details": "Rincian",
|
||||
"Authentication": "Authentication",
|
||||
"Security": "Keamanan",
|
||||
"Features": "Fitur",
|
||||
"AI": "AI",
|
||||
"API Keys": "API Keys",
|
||||
"Applications": "Applications",
|
||||
"Shared Links": "Tautan yang dibagikan",
|
||||
"Import": "Impor",
|
||||
"Install": "Install",
|
||||
"Embeds": "Embeds",
|
||||
"Configure which embed providers are available in the editor.": "Configure which embed providers are available in the editor.",
|
||||
"Integrations": "Integrasi",
|
||||
"Install": "Install",
|
||||
"Change name": "Ganti Nama",
|
||||
"Change email": "Change email",
|
||||
"Suspend user": "Tangguhkan pengguna",
|
||||
@@ -685,8 +706,8 @@
|
||||
"Headings you add to the document will appear here": "Judul yang Anda tambahkan ke dokumen akan muncul di sini",
|
||||
"Contents": "Isi",
|
||||
"Table of contents": "Daftar isi",
|
||||
"Template options": "Template options",
|
||||
"User options": "Opsi pengguna",
|
||||
"template": "template",
|
||||
"document": "document",
|
||||
"Export complete": "Export complete",
|
||||
"Export failed": "Export failed",
|
||||
@@ -812,23 +833,15 @@
|
||||
"Sorry, the last change could not be persisted – please reload the page": "Maaf, perubahan terakhir tidak dapat disimpan – muat ulang halaman",
|
||||
"{{ count }} days": "{{ count }} day",
|
||||
"{{ count }} days_plural": "{{ count }} days",
|
||||
"This template will be permanently deleted in <2></2> unless restored.": "Template ini akan dihapus secara permanen di <2></2> kecuali dipulihkan.",
|
||||
"This document will be permanently deleted in <2></2> unless restored.": "Dokumen ini akan dihapus secara permanen di <2></2> kecuali dipulihkan.",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Sorot beberapa teks dan gunakan <1></1> kontrol untuk menambahkan placeholder yang dapat diisi saat membuat dokumen baru",
|
||||
"You’re editing a template": "Anda sedang mengedit template",
|
||||
"Deleted by {{userName}}": "Dihapus oleh {{userName}}",
|
||||
"Observing {{ userName }}": "Mengamati {{ userName }}",
|
||||
"Backlinks": "Tautan balik",
|
||||
"This document is large which may affect performance": "This document is large which may affect performance",
|
||||
"Are you sure you want to delete the <em>{{ documentTitle }}</em> template?": "Anda yakin ingin menghapus templat <em>{{ documentTitle }}</em>?",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history</em>.": "Apakah Anda yakin? Menghapus dokumen <em>{{ documentTitle }}</em> akan menghapus semua riwayatnya</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>.": "Apakah Anda yakin? Menghapus dokumen <em>{{ documentTitle }}</em> akan menghapus semua riwayatnya dan <em>{{ any }} dokumen bersarang</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>._plural": "Apapah Anda yakin? Menghapus <em>{{ documentTitle }}</em> dokumen akan menghapus semua riwayatnya dan <em>{{ any }} dokumen bersarang</em>.",
|
||||
"If you’d like the option of referencing or restoring the {{noun}} in the future, consider archiving it instead.": "Jika Anda ingin opsi mereferensikan atau memulihkan {{noun}} di masa mendatang, pertimbangkan untuk mengarsipkannya.",
|
||||
"Select a location to move": "Pilih lokasi untuk dipindahkan",
|
||||
"Document moved": "Dokumen dipindahkan",
|
||||
"Couldn’t move the document, try again?": "Tidak dapat memindahkan dokumen, coba lagi?",
|
||||
"Move to <em>{{ location }}</em>": "Pindah ke <em>{{ location }}</em>",
|
||||
"Couldn’t create the document, try again?": "Tidak dapat membuat dokumen, coba lagi?",
|
||||
"Document permanently deleted": "Dokumen dihapus secara permanen",
|
||||
"Are you sure you want to permanently delete the <em>{{ documentTitle }}</em> document? This action is immediate and cannot be undone.": "Apa Anda yakin ingin menghapus dokumen <em>{{ documentTitle }}</em> secara permanen? Tindakan ini langsung dilakukan dan tidak dapat dibatalkan.",
|
||||
@@ -885,7 +898,6 @@
|
||||
"Open this guide": "Buka panduan ini",
|
||||
"Enter": "Enter",
|
||||
"Publish document and exit": "Publikasikan dokumen dan keluar",
|
||||
"Save document": "Simpan dokumen",
|
||||
"Cancel editing": "Batalkan penyuntingan",
|
||||
"Collaboration": "Collaboration",
|
||||
"Formatting": "Pemformatan",
|
||||
@@ -978,11 +990,14 @@
|
||||
"An error occurred": "An error occurred",
|
||||
"The OAuth client could not be found, please check the provided client ID": "The OAuth client could not be found, please check the provided client ID",
|
||||
"The OAuth client could not be loaded, please check the redirect URI is valid": "The OAuth client could not be loaded, please check the redirect URI is valid",
|
||||
"The OAuth client could not be loaded, please check your workspace subdomain is correct": "The OAuth client could not be loaded, please check your workspace subdomain is correct",
|
||||
"Required OAuth parameters are missing": "Required OAuth parameters are missing",
|
||||
"Authorize": "Authorize",
|
||||
"{{ appName }} wants to access {{ teamName }}": "{{ appName }} wants to access {{ teamName }}",
|
||||
"By <em>{{ developerName }}</em>": "By <em>{{ developerName }}</em>",
|
||||
"{{ appName }} will be able to access your account and perform the following actions": "{{ appName }} will be able to access your account and perform the following actions",
|
||||
"You will be redirected to a local application after authorizing.": "You will be redirected to a local application after authorizing.",
|
||||
"You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.": "You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.",
|
||||
"read": "read",
|
||||
"write": "write",
|
||||
"read and write": "read and write",
|
||||
@@ -1156,6 +1171,8 @@
|
||||
"Last accessed": "Terakhir diakses",
|
||||
"Domain": "Domain",
|
||||
"Views": "Dilihat",
|
||||
"Visibility": "Visibility",
|
||||
"Updated by": "Updated by",
|
||||
"All roles": "All roles",
|
||||
"Admins": "Admin",
|
||||
"Editors": "Editors",
|
||||
@@ -1188,15 +1205,26 @@
|
||||
"Your workspace will be accessible at": "Your workspace will be accessible at",
|
||||
"Choose a subdomain to enable a login page just for your team.": "Pilih subdomain untuk mengaktifkan halaman masuk hanya untuk tim Anda.",
|
||||
"This is the screen that workspace members will first see when they sign in.": "Ini adalah layar yang akan dilihat pertama kali oleh anggota workspace saat mereka masuk.",
|
||||
"Danger": "Danger",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "You can delete this entire workspace including collections, documents, and users.",
|
||||
"Export data": "Ekspor data",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.",
|
||||
"Recent exports": "Ekspor terbaru",
|
||||
"Manage optional and beta features. Changing these settings will affect the experience for all members of the workspace.": "Kelola fitur opsional dan beta. Mengubah pengaturan ini akan memengaruhi pengalaman semua anggota workspace.",
|
||||
"Separate editing": "Separate editing",
|
||||
"When enabled documents have a separate editing mode by default instead of being always editable. This setting can be overridden by user preferences.": "When enabled documents have a separate editing mode by default instead of being always editable. This setting can be overridden by user preferences.",
|
||||
"When enabled team members can add comments to documents.": "Saat diaktifkan, anggota tim dapat menambahkan komentar ke dokumen.",
|
||||
"Danger": "Danger",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "You can delete this entire workspace including collections, documents, and users.",
|
||||
"Enabled": "Enabled",
|
||||
"Allow supported providers to be inserted as interactive embeds in documents.": "Allow supported providers to be inserted as interactive embeds in documents.",
|
||||
"Providers": "Providers",
|
||||
"Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.": "Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.",
|
||||
"All providers": "All providers",
|
||||
"Export data": "Ekspor data",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.",
|
||||
"Recent exports": "Ekspor terbaru",
|
||||
"Manage AI and integration features for your workspace.": "Manage AI and integration features for your workspace.",
|
||||
"MCP server": "MCP server",
|
||||
"Allow members to connect to this workspace with MCP to read and write data.": "Allow members to connect to this workspace with MCP to read and write data.",
|
||||
"Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.": "Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.",
|
||||
"Copy URL": "Copy URL",
|
||||
"AI answers": "AI answers",
|
||||
"Use AI to get direct answers to questions in search. This feature requires a paid license.": "Use AI to get direct answers to questions in search. This feature requires a paid license.",
|
||||
"Create a group": "Buat grup",
|
||||
"Could not load groups": "Could not load groups",
|
||||
"New group": "Grup baru",
|
||||
@@ -1288,8 +1316,6 @@
|
||||
"When enabled, viewers can see download options for documents": "Saat diaktifkan, viewer dapat melihat opsi unduhan untuk dokumen",
|
||||
"Users can delete account": "Users can delete account",
|
||||
"When enabled, users can delete their own account from the workspace": "When enabled, users can delete their own account from the workspace",
|
||||
"Rich service embeds": "Embed Rich service",
|
||||
"Links to supported services are shown as rich embeds within your documents": "Tautan ke layanan yang didukung ditampilkan sebagai Rich Embeds dalam dokumen Anda",
|
||||
"Email address visibility": "Email address visibility",
|
||||
"Controls who can see user email addresses in the workspace": "Controls who can see user email addresses in the workspace",
|
||||
"Collection creation": "Pembuatan koleksi",
|
||||
@@ -1300,9 +1326,10 @@
|
||||
"Sharing is currently disabled.": "Berbagi saat ini dinonaktifkan.",
|
||||
"You can globally enable and disable public document sharing in the <em>security settings</em>.": "Anda dapat mengaktifkan dan menonaktifkan berbagi dokumen publik secara global di <em>pengaturan keamanan</em>.",
|
||||
"Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.": "Dokumen yang telah dibagikan tercantum di bawah ini. Siapa pun yang memiliki tautan publik dapat mengakses dokumen dalam versi read-only hingga tautan dicabut.",
|
||||
"You can create templates to help your team create consistent and accurate documentation.": "Anda dapat membuat template untuk membantu tim Anda membuat dokumentasi yang konsisten dan akurat.",
|
||||
"Alphabetical": "Alfabetis",
|
||||
"There are no templates just yet.": "Belum ada template.",
|
||||
"A template must have content": "A template must have content",
|
||||
"Could not load templates": "Could not load templates",
|
||||
"Templates help your team create consistent and accurate documentation.": "Templates help your team create consistent and accurate documentation.",
|
||||
"No templates have been created yet": "No templates have been created yet",
|
||||
"{{ teamName }} is using {{ appName }} to share documents, please login to continue.": "{{ teamName }} menggunakan {{ appName }} untuk berbagi dokumen, silakan login untuk melanjutkan.",
|
||||
"A confirmation code has been sent to your email address, please enter the code below to permanently destroy this workspace.": "A confirmation code has been sent to your email address, please enter the code below to permanently destroy this workspace.",
|
||||
"Confirmation code": "Confirmation code",
|
||||
@@ -1363,7 +1390,6 @@
|
||||
"New Attribute": "New Attribute",
|
||||
"Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.": "Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.",
|
||||
"Custom domain": "Custom domain",
|
||||
"AI answers": "AI answers",
|
||||
"Use AI to directly answer searched questions using content in your workspace.": "Use AI to directly answer searched questions using content in your workspace.",
|
||||
"API access": "API access",
|
||||
"Allow members to create API keys for programmatic access": "Allow members to create API keys for programmatic access",
|
||||
@@ -1413,6 +1439,27 @@
|
||||
"Enabled by {{integrationCreatedBy}}": "Enabled by {{integrationCreatedBy}}",
|
||||
"Disconnecting will prevent previewing GitHub links from this organization in documents. Are you sure?": "Disconnecting will prevent previewing GitHub links from this organization in documents. Are you sure?",
|
||||
"The GitHub integration is currently disabled. Please set the associated environment variables and restart the server to enable the integration.": "The GitHub integration is currently disabled. Please set the associated environment variables and restart the server to enable the integration.",
|
||||
"Connect GitLab": "Connect GitLab",
|
||||
"Enter the details for your GitLab instance.": "Enter the details for your GitLab instance.",
|
||||
"GitLab URL": "GitLab URL",
|
||||
"URL must start with https": "URL must start with https",
|
||||
"Client ID": "Client ID",
|
||||
"OAuth application ID": "OAuth application ID",
|
||||
"Client Secret": "Client Secret",
|
||||
"OAuth application secret": "OAuth application secret",
|
||||
"Connecting": "Connecting",
|
||||
"Choose which GitLab instance to connect to.": "Choose which GitLab instance to connect to.",
|
||||
"GitLab Cloud": "GitLab Cloud",
|
||||
"Connect to your account on gitlab.com": "Connect to your account on gitlab.com",
|
||||
"GitLab Cloud credentials are not configured": "GitLab Cloud credentials are not configured",
|
||||
"Self-managed": "Self-managed",
|
||||
"Connect to a custom GitLab installation": "Connect to a custom GitLab installation",
|
||||
"You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?": "You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?",
|
||||
"The GitLab account is already connected to this workspace.": "The GitLab account is already connected to this workspace.",
|
||||
"Something went wrong while authenticating your request. Please try again.": "Something went wrong while authenticating your request. Please try again.",
|
||||
"The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.": "The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.",
|
||||
"Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.": "Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.",
|
||||
"Disconnecting will prevent previewing links from GitLab in documents. Are you sure?": "Disconnecting will prevent previewing links from GitLab in documents. Are you sure?",
|
||||
"Google Analytics": "Google Analytics",
|
||||
"Add a Google Analytics 4 measurement ID to send document views and analytics from the workspace to your own Google Analytics account.": "Tambahkan ID measurement Google Analytics 4 untuk mengirimkan tampilan dokumen dan analitik dari workspace ke akun Google Analytics Anda sendiri.",
|
||||
"Measurement ID": "ID Measurement",
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
"Collection permissions": "Autorizzazioni della raccolta",
|
||||
"Share this collection": "Condividi questa raccolta",
|
||||
"Import document": "Importa documento",
|
||||
"Uploading": "Caricamento",
|
||||
"Sort in sidebar": "Ordina nella barra laterale",
|
||||
"A-Z sort": "Ordina da A-Z",
|
||||
"Z-A sort": "Ordina da Z-A",
|
||||
@@ -53,8 +54,9 @@
|
||||
"Development": "Sviluppo",
|
||||
"Open document": "Apri documento",
|
||||
"New draft": "Nuova bozza",
|
||||
"New from template": "Nuovo da template",
|
||||
"New nested document": "Nuovo sottodocumento",
|
||||
"Nested document": "Documento annidato",
|
||||
"Before": "Prima",
|
||||
"After": "Dopo",
|
||||
"Publish": "Pubblica",
|
||||
"Published {{ documentName }}": "{{ documentName }} pubblicato",
|
||||
"Publish document": "Pubblica documento",
|
||||
@@ -91,9 +93,7 @@
|
||||
"Create template": "Crea un modello",
|
||||
"Open random document": "Apri un documento casuale",
|
||||
"Search documents for \"{{searchQuery}}\"": "Cerca documenti per \"{{searchQuery}}\"",
|
||||
"Move to workspace": "Sposta nello spazio di lavoro",
|
||||
"Move": "Sposta",
|
||||
"Move to collection": "Sposta nella raccolta",
|
||||
"Move {{ documentType }}": "Sposta {{ documentType }}",
|
||||
"Are you sure you want to archive this document?": "Sei sicuro di voler archiviare questo documento?",
|
||||
"Document archived": "Documento archiviato",
|
||||
@@ -165,6 +165,15 @@
|
||||
"New workspace": "Nuova area di lavoro",
|
||||
"Create a workspace": "Crea area di lavoro",
|
||||
"Login to workspace": "Accedi allo spazio di lavoro",
|
||||
"Template deleted": "Modello eliminato",
|
||||
"Deleting": "Sto eliminando",
|
||||
"Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.": "Ne sei sicuro? L'eliminazione del modello <em>{{ templateName }}</em> è definitiva.",
|
||||
"Move to workspace": "Sposta nello spazio di lavoro",
|
||||
"Template moved": "Modello spostato",
|
||||
"Couldn't move the template, try again?": "Impossibile spostare il modello. Riprovare?",
|
||||
"Move to collection": "Sposta nella raccolta",
|
||||
"Move template": "Sposta modello",
|
||||
"Print template": "Modello di stampa",
|
||||
"Invite people": "Invita persone",
|
||||
"Invite to workspace": "Invita allo spazio di lavoro",
|
||||
"Promote to {{ role }}": "Promuovi a {{ role }}",
|
||||
@@ -176,6 +185,7 @@
|
||||
"Debug": "Debug",
|
||||
"Document": "Documento",
|
||||
"Documents": "Documenti",
|
||||
"Template": "Template",
|
||||
"Recently viewed": "Visualizzati di recente",
|
||||
"Revision": "Revisione",
|
||||
"Navigation": "Navigazione",
|
||||
@@ -195,6 +205,7 @@
|
||||
"Collections are used to group documents and choose permissions": "Le raccolte sono usate per raggruppare i documenti e assegnare i permessi",
|
||||
"Name": "Nome",
|
||||
"The default access for workspace members, you can share with more users or groups later.": "L'accesso predefinito per i membri dello spazio di lavoro, è possibile condividere con più utenti o gruppi più tardi.",
|
||||
"Advanced options": "Opzioni avanzate",
|
||||
"Public document sharing": "Condivisione pubblica dei documenti",
|
||||
"Allow documents within this collection to be shared publicly on the internet.": "Consenti ai documenti all'interno di questa raccolta di essere condivisi su internet.",
|
||||
"Commenting": "Commentando",
|
||||
@@ -205,10 +216,10 @@
|
||||
"Create": "Crea",
|
||||
"Collection deleted": "Raccolta eliminata",
|
||||
"I’m sure – Delete": "Sono sicuro – Elimina",
|
||||
"Deleting": "Sto eliminando",
|
||||
"Are you sure about that? Deleting the <em>{{collectionName}}</em> collection is permanent and cannot be restored, however all published documents within will be moved to the trash.": "Sei sicuro di quello? L'eliminazione della raccolta <em>{{collectionName}}</em> è permanente e non può essere ripristinata, tuttavia tutti i documenti pubblicati all'interno saranno spostati nel cestino.",
|
||||
"Also, <em>{{collectionName}}</em> is being used as the start view – deleting it will reset the start view to the Home page.": "<em>{{collectionName}}</em> è anche usata come schermata iniziale - eliminarla comporterebbe il reset della schermata iniziale alla pagina Home.",
|
||||
"Type a command or search": "Digita un comando o cerca",
|
||||
"New from template": "Nuovo da template",
|
||||
"Choose a template": "Scegli un modello",
|
||||
"Are you sure you want to permanently delete this entire comment thread?": "Sei sicuro di voler eliminare definitivamente l'intero thread di commenti?",
|
||||
"Are you sure you want to permanently delete this comment?": "Sei sicuro di voler eliminare definitivamente questo commento?",
|
||||
@@ -227,12 +238,6 @@
|
||||
"Deleted Collection": "Raccolte Eliminate",
|
||||
"Untitled": "Senza titolo",
|
||||
"Unpin": "Rimuovi contrassegno",
|
||||
"Select a location to copy": "Seleziona una posizione da copiare",
|
||||
"Document copied": "Documento copiato",
|
||||
"Couldn’t copy the document, try again?": "Non è stato possibile copiare il documento. Riprovare?",
|
||||
"Include nested documents": "Includi sottodocumenti ",
|
||||
"Copy to <em>{{ location }}</em>": "copia in",
|
||||
"Copying": "Copia in corso",
|
||||
"Export started": "Esportazione avviata",
|
||||
"A link to your file will be sent through email soon": "Un link al tuo file verrà inviato via email a breve",
|
||||
"Preparing your download": "Preparazione del download",
|
||||
@@ -242,13 +247,24 @@
|
||||
"Include child documents": "Includi documenti figli",
|
||||
"When selected, exporting the document <em>{{documentName}}</em> may take some time.": "Se selezionato, l'esportazione del documento <em>{{documentName}}</em> potrebbe richiedere un po' di tempo.",
|
||||
"You will receive an email when it's complete.": "Riceverai un'email quando sarà completata.",
|
||||
"Select a location to copy": "Seleziona una posizione da copiare",
|
||||
"Document copied": "Documento copiato",
|
||||
"Couldn’t copy the document, try again?": "Non è stato possibile copiare il documento. Riprovare?",
|
||||
"Include nested documents": "Includi sottodocumenti ",
|
||||
"Copy to <em>{{ location }}</em>": "copia in",
|
||||
"Copying": "Copia in corso",
|
||||
"Search collections & documents": "Cerca raccolte e documenti",
|
||||
"Search collections": "Cerca raccolte",
|
||||
"No results found": "Nessun risultato trovato",
|
||||
"Select a location to move": "Seleziona una posizione da spostare",
|
||||
"Document moved": "Documento spostato",
|
||||
"Couldn’t move the document, try again?": "Impossibile spostare il documento, vuoi riprovare?",
|
||||
"Move to <em>{{ location }}</em>": "Sposta in <em>{{ location }}</em>",
|
||||
"Couldn’t move the template, try again?": "Impossibile spostare il modello, riprovare?",
|
||||
"Document options": "Opzioni documento",
|
||||
"New": "Nuovo",
|
||||
"Only visible to you": "Visibile solo a te",
|
||||
"Draft": "Bozza",
|
||||
"Template": "Template",
|
||||
"You updated": "Tu hai aggiornato",
|
||||
"{{ userName }} updated": "{{ userName }} ha salvato",
|
||||
"You deleted": "Tu hai eliminato",
|
||||
@@ -278,7 +294,6 @@
|
||||
"Please enter a name for the emoji": "Inserisci un nome per le emoji",
|
||||
"Please select an image file": "Seleziona un file immagine",
|
||||
"Emoji created successfully": "Emoji creata con successo",
|
||||
"Uploading": "Caricamento",
|
||||
"Add emoji": "Aggiungi emoji",
|
||||
"Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.": "Le immagini quadrate con sfondo trasparente sono le più adatte. Se l'immagine è troppo grande, proveremo a ridimensionarla.",
|
||||
"Upload an image": "Carica una immagine",
|
||||
@@ -467,6 +482,7 @@
|
||||
"Collapse sidebar": "Nascondi barra laterale",
|
||||
"Archived collections": "Collezioni archiviate",
|
||||
"New doc": "Nuovo documento",
|
||||
"New nested document": "Nuovo sottodocumento",
|
||||
"Empty": "Vuoto",
|
||||
"No collections": "Nessuna collezione",
|
||||
"Collapse": "Raggruppa",
|
||||
@@ -493,6 +509,8 @@
|
||||
"Unstar document": "Rimuovi dai preferiti",
|
||||
"Star document": "Condividi documento",
|
||||
"Select a color": "Seleziona un colore",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Evidenzia del testo e usa il comando <1></1> per aggiungere dei segnaposto che possono essere compilati nella creazione di nuovi documenti",
|
||||
"You’re editing a template": "Stai modificando un modello",
|
||||
"Template created, go ahead and customize it": "Modello creato, procedi e personalizzalo",
|
||||
"Creating a template from <em>{{titleWithDefault}}</em> is a non-destructive action – we'll make a copy of the document and turn it into a template that can be used as a starting point for new documents.": "Creare un modello da <em>{{titleWithDefault}}</em> è un'azione non distruttiva - faremo una copia del documento e lo convertiremo in un modello, così che potrà essere usato come punto d'inizio per nuovi documenti.",
|
||||
"Enable other members to use the template immediately": "Consenti agli altri membri di utilizzare il modello immediatamente",
|
||||
@@ -550,9 +568,9 @@
|
||||
"Full width": "Larghezza massima",
|
||||
"Bulleted list": "Elenco puntato",
|
||||
"Todo list": "Elenco attività",
|
||||
"Show {{ count }} completed": "Show {{ count }} completed",
|
||||
"Show {{ count }} completed_plural": "Show {{ count }} completed",
|
||||
"Hide completed": "Hide completed",
|
||||
"Show {{ count }} completed": "Mostra {{ count }} completati",
|
||||
"Show {{ count }} completed_plural": "Mostra {{ count }} completati",
|
||||
"Hide completed": "Nascondi completati",
|
||||
"Code block": "Blocco di codice",
|
||||
"Copied to clipboard": "Copiato negli appunti",
|
||||
"Code": "Codice",
|
||||
@@ -632,9 +650,10 @@
|
||||
"Delete embed": "Elimina incorporamento",
|
||||
"Formatting controls": "Controlli di formattazione",
|
||||
"Distribute columns": "Distribuisci colonne",
|
||||
"Wrap text": "Wrap text",
|
||||
"Delete Emoji": "Elimina Emoji",
|
||||
"Emoji deleted": "Emoji eliminata",
|
||||
"I'm sure – Delete": "I'm sure – Delete",
|
||||
"I'm sure – Delete": "Sono sicuro – Elimina",
|
||||
"Are you sure you want to delete the <em>{{emojiName}}</em> emoji? You will no longer be able to use it in your documents or collections.": "Sei sicuro di voler eliminare <em>{{emojiName}}</em> emoji? Non potrai più utilizzarla nei tuoi documenti o nelle tue raccolte.",
|
||||
"Group members": "Membri del gruppo",
|
||||
"Edit group": "Modifica gruppo",
|
||||
@@ -644,17 +663,19 @@
|
||||
"Unsubscribed from document": "Annullata l'iscrizione al documento",
|
||||
"Unsubscribed from collection": "Annullata l'iscrizione alla raccolta",
|
||||
"Account": "Account",
|
||||
"API & Apps": "API & Applicazioni",
|
||||
"API & Access": "API & Access",
|
||||
"Details": "Dettagli",
|
||||
"Authentication": "Autenticazione",
|
||||
"Security": "Sicurezza",
|
||||
"Features": "Caratteristiche",
|
||||
"AI": "IA",
|
||||
"API Keys": "Chiavi API",
|
||||
"Applications": "Applicazioni",
|
||||
"Shared Links": "Link condivisi",
|
||||
"Import": "Importa",
|
||||
"Install": "Installa",
|
||||
"Embeds": "Embeds",
|
||||
"Configure which embed providers are available in the editor.": "Configure which embed providers are available in the editor.",
|
||||
"Integrations": "Integrazioni",
|
||||
"Install": "Installa",
|
||||
"Change name": "Cambia nome",
|
||||
"Change email": "Cambia email",
|
||||
"Suspend user": "Sospendi utente",
|
||||
@@ -669,7 +690,7 @@
|
||||
"Comment options": "Opzioni Commento",
|
||||
"Enable viewer insights": "Abilita gli approfondimenti sugli spettatori",
|
||||
"Enable embeds": "Abilita l'embedding",
|
||||
"Emoji options": "Emoji options",
|
||||
"Emoji options": "Opzioni emoji",
|
||||
"File": "File",
|
||||
"Group options": "Opzioni del gruppo",
|
||||
"Cancel": "Annulla",
|
||||
@@ -685,8 +706,8 @@
|
||||
"Headings you add to the document will appear here": "Le intestazioni aggiunte al documento appariranno qui",
|
||||
"Contents": "Contenuti",
|
||||
"Table of contents": "Indice contenuti",
|
||||
"Template options": "Opzioni del modello",
|
||||
"User options": "Opzioni utente",
|
||||
"template": "modello",
|
||||
"document": "documenta",
|
||||
"Export complete": "Esportazione completata",
|
||||
"Export failed": "Esportazione non riuscita",
|
||||
@@ -812,23 +833,15 @@
|
||||
"Sorry, the last change could not be persisted – please reload the page": "Spiacenti, non è stato possibile mantenere l'ultima modifica. Si prega di ricaricare la pagina",
|
||||
"{{ count }} days": "{{ count }} giorno",
|
||||
"{{ count }} days_plural": "{{ count }} giorni",
|
||||
"This template will be permanently deleted in <2></2> unless restored.": "Questo modello verrà eliminato definitivamente in <2></2> salvo ripristino.",
|
||||
"This document will be permanently deleted in <2></2> unless restored.": "Questo documento verrà eliminato definitivamente tra <2></2> salvo ripristino.",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Evidenzia del testo e usa il comando <1></1> per aggiungere dei segnaposto che possono essere compilati nella creazione di nuovi documenti",
|
||||
"You’re editing a template": "Stai modificando un modello",
|
||||
"Deleted by {{userName}}": "Eliminato da {{userName}}",
|
||||
"Observing {{ userName }}": "Osservazione di {{ userName }}",
|
||||
"Backlinks": "Backlink",
|
||||
"This document is large which may affect performance": "Questo documento è grande, potrebbe influenzare le prestazioni",
|
||||
"Are you sure you want to delete the <em>{{ documentTitle }}</em> template?": "Sei sicuro di voler eliminare il template <em>{{ documentTitle }}</em>?",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history</em>.": "Sei sicuro? L'eliminazione del documento <em>{{ documentTitle }}</em> cancellerà tutta la sua cronologia</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>.": "Sei sicuro? L'eliminazione del documento <em>{{ documentTitle }}</em> cancellerà tutta la sua cronologia e <em>{{ any }} sottodocumento </em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>._plural": "Sei sicuro? L'eliminazione del documento <em>{{ documentTitle }}</em> cancellerà tutta la sua cronologia e <em>{{ any }} sottodocumenti </em>.",
|
||||
"If you’d like the option of referencing or restoring the {{noun}} in the future, consider archiving it instead.": "Se desideri l'opzione di fare riferimento o ripristinare {{noun}} in futuro, considera l'archiviazione.",
|
||||
"Select a location to move": "Seleziona una posizione da spostare",
|
||||
"Document moved": "Documento spostato",
|
||||
"Couldn’t move the document, try again?": "Impossibile spostare il documento, vuoi riprovare?",
|
||||
"Move to <em>{{ location }}</em>": "Sposta in <em>{{ location }}</em>",
|
||||
"Couldn’t create the document, try again?": "Impossibile creare il documento, vuoi riprovare?",
|
||||
"Document permanently deleted": "Documento eliminato definitivamente",
|
||||
"Are you sure you want to permanently delete the <em>{{ documentTitle }}</em> document? This action is immediate and cannot be undone.": "Sei sicuro di voler eliminare definitivamente il documento <em>{{ documentTitle }}</em> ? Questa azione è immediata e non può essere annullata.",
|
||||
@@ -885,7 +898,6 @@
|
||||
"Open this guide": "Apri questa guida",
|
||||
"Enter": "Invio",
|
||||
"Publish document and exit": "Pubblica documento ed esci",
|
||||
"Save document": "Salva il documento",
|
||||
"Cancel editing": "Annulla modifica",
|
||||
"Collaboration": "Collaborazione",
|
||||
"Formatting": "Formattazione",
|
||||
@@ -978,11 +990,14 @@
|
||||
"An error occurred": "Si è verificato un errore",
|
||||
"The OAuth client could not be found, please check the provided client ID": "Impossibile trovare il client OAuth, verificare l'ID client fornito",
|
||||
"The OAuth client could not be loaded, please check the redirect URI is valid": "Impossibile caricare il client OAuth, verificare che l'URI di reindirizzamento sia valido",
|
||||
"The OAuth client could not be loaded, please check your workspace subdomain is correct": "Impossibile caricare il client OAuth. Verificare che il sottodominio dell'area di lavoro sia corretto",
|
||||
"Required OAuth parameters are missing": "",
|
||||
"Authorize": "Autorizza",
|
||||
"{{ appName }} wants to access {{ teamName }}": "{{ appName }} vuole accedere a {{ teamName }}",
|
||||
"By <em>{{ developerName }}</em>": "Di <em>{{ developerName }}</em>",
|
||||
"{{ appName }} will be able to access your account and perform the following actions": "",
|
||||
"You will be redirected to a local application after authorizing.": "Sarai reindirizzato a un'applicazione locale dopo l'autorizzazione.",
|
||||
"You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.": "Dopo l'autorizzazione, verrai reindirizzato a <em>{{ redirectUri }}</em>. Assicurati che questo URL sia attendibile.",
|
||||
"read": "lettura",
|
||||
"write": "scrittura",
|
||||
"read and write": "lettura e scrittura",
|
||||
@@ -1111,16 +1126,16 @@
|
||||
"Are you sure about that? Deleting the <em>{{groupName}}</em> group will cause its members to lose access to collections and documents that it is associated with.": "Sei sicuro? Eliminando il gruppo <em>{{groupName}}</em> i suoi membri perderanno l'accesso alle raccolte e ai documenti a cui è associato.",
|
||||
"Add people to {{groupName}}": "Aggiungi persone a {{groupName}}",
|
||||
"{{userName}} was removed from the group": "{{userName}} è stato rimosso dal gruppo",
|
||||
"All permissions": "All permissions",
|
||||
"All permissions": "Tutti i permessi",
|
||||
"Group admin": "Amministratore del gruppo",
|
||||
"Member": "Membro",
|
||||
"Add and remove members to the <em>{{groupName}}</em> group. Members of the group will have access to any collections this group has been added to.": "Aggiungi e rimuovi membri al gruppo <em>{{groupName}}</em>. I membri del gruppo avranno accesso a tutte le raccolte a cui questo gruppo è stato aggiunto.",
|
||||
"Add people": "Aggiungi utenti",
|
||||
"Listing members of the <em>{{groupName}}</em> group.": "Elenco dei membri del gruppo <em>{{groupName}}</em>.",
|
||||
"Search by name": "Cerca per nome",
|
||||
"Search members": "Search members",
|
||||
"Filter by permissions": "Filter by permissions",
|
||||
"No members matching your filters": "No members matching your filters",
|
||||
"Search members": "Cerca membri",
|
||||
"Filter by permissions": "Filtra per permessi",
|
||||
"No members matching your filters": "Nessun membro corrispondente ai tuoi filtri",
|
||||
"This group has no members.": "Questo gruppo non ha membri.",
|
||||
"{{userName}} was added to the group": "{{userName}} stato aggiunto al gruppo",
|
||||
"Could not add user": "Impossibile aggiungere l'utente",
|
||||
@@ -1156,6 +1171,8 @@
|
||||
"Last accessed": "Ultima visita",
|
||||
"Domain": "Dominio",
|
||||
"Views": "Visualizzazioni",
|
||||
"Visibility": "Visibilità",
|
||||
"Updated by": "Aggiornato da",
|
||||
"All roles": "Tutti i ruoli",
|
||||
"Admins": "Amministratori",
|
||||
"Editors": "Editor",
|
||||
@@ -1188,15 +1205,26 @@
|
||||
"Your workspace will be accessible at": "Il tuo spazio di lavoro sarà accessibile a",
|
||||
"Choose a subdomain to enable a login page just for your team.": "Scegli un sottodominio per abilitare una pagina di accesso solo per il tuo team.",
|
||||
"This is the screen that workspace members will first see when they sign in.": "Questa è la schermata che i membri dell'area di lavoro vedranno per la prima volta quando accedono.",
|
||||
"Danger": "Pericolo",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "È possibile eliminare l'intera area di lavoro, comprese raccolte, documenti e utenti.",
|
||||
"Export data": "Esporta dati",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "Un'esportazione completa potrebbe richiedere del tempo; valuta la possibilità di esportare un singolo documento o una singola raccolta. Puoi uscire da questa pagina una volta avviata l'esportazione: se hai abilitato le notifiche, invieremo un'email con un link a <em>{{ userEmail }}</em> al termine dell'operazione.",
|
||||
"Recent exports": "Esportazioni recenti",
|
||||
"Manage optional and beta features. Changing these settings will affect the experience for all members of the workspace.": "Gestisci le funzionalità opzionali e beta. La modifica di queste impostazioni influirà sull'esperienza di tutti i membri dell'area di lavoro.",
|
||||
"Separate editing": "Modifica separata",
|
||||
"When enabled documents have a separate editing mode by default instead of being always editable. This setting can be overridden by user preferences.": "Quando questa opzione è abilitata, i documenti hanno una modalità di modifica separata per impostazione predefinita, anziché essere sempre modificabili. Questa impostazione può essere ignorata dalle preferenze dell'utente.",
|
||||
"When enabled team members can add comments to documents.": "Quando abilitato, i membri del team possono aggiungere commenti ai documenti.",
|
||||
"Danger": "Pericolo",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "È possibile eliminare l'intera area di lavoro, comprese raccolte, documenti e utenti.",
|
||||
"Enabled": "Enabled",
|
||||
"Allow supported providers to be inserted as interactive embeds in documents.": "Allow supported providers to be inserted as interactive embeds in documents.",
|
||||
"Providers": "Providers",
|
||||
"Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.": "Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.",
|
||||
"All providers": "All providers",
|
||||
"Export data": "Esporta dati",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "Un'esportazione completa potrebbe richiedere del tempo; valuta la possibilità di esportare un singolo documento o una singola raccolta. Puoi uscire da questa pagina una volta avviata l'esportazione: se hai abilitato le notifiche, invieremo un'email con un link a <em>{{ userEmail }}</em> al termine dell'operazione.",
|
||||
"Recent exports": "Esportazioni recenti",
|
||||
"Manage AI and integration features for your workspace.": "Gestisci l'IA e le funzionalità di integrazione del tuo spazio di lavoro.",
|
||||
"MCP server": "Server MCP",
|
||||
"Allow members to connect to this workspace with MCP to read and write data.": "Consenti ai membri di connettersi a questo spazio di lavoro con MCP per leggere e scrivere dati.",
|
||||
"Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.": "Utilizza il seguente endpoint per connetterti al server MCP dalla tua app. Scopri di più sulla configurazione nella <a>documentazione</a>.",
|
||||
"Copy URL": "Copia l'URL",
|
||||
"AI answers": "Risposte dell'IA",
|
||||
"Use AI to get direct answers to questions in search. This feature requires a paid license.": "Usa AI per ottenere risposte dirette alle domande nella ricerca. Questa funzionalità richiede una licenza a pagamento.",
|
||||
"Create a group": "Crea un gruppo",
|
||||
"Could not load groups": "Impossibile caricare i gruppi",
|
||||
"New group": "Nuovo gruppo",
|
||||
@@ -1243,8 +1271,8 @@
|
||||
"Manage when and where you receive email notifications.": "Gestisci quando e dove ricevere le notifiche email.",
|
||||
"The email integration is currently disabled. Please set the associated environment variables and restart the server to enable notifications.": "L'integrazione email è attualmente disabilitata. Imposta le variabili di ambiente associate e riavvia il server per abilitare le notifiche.",
|
||||
"Preferences saved": "Impostazioni salvate",
|
||||
"Unread count": "Unread count",
|
||||
"Unread indicator": "Unread indicator",
|
||||
"Unread count": "Conteggio dei non letti",
|
||||
"Unread indicator": "Indicatore di messaggi non letti",
|
||||
"Delete account": "Elimina l'account",
|
||||
"Manage settings that affect your personal experience.": "Gestisci le impostazioni che influenzano la tua esperienza personale.",
|
||||
"Language": "Lingua",
|
||||
@@ -1259,8 +1287,8 @@
|
||||
"Automatically return to the document you were last viewing when the app is re-opened.": "Torna automaticamente all'ultimo documento che stavi visualizzando quando l'app viene riaperta.",
|
||||
"Smart text replacements": "Sostituzioni di testo intelligenti",
|
||||
"Auto-format text by replacing shortcuts with symbols, dashes, smart quotes, and other typographical elements.": "Formatta automaticamente il testo sostituendo le scorciatoie con simboli, trattini, virgolette intelligenti e altri elementi tipografici.",
|
||||
"Notification badge": "Notification badge",
|
||||
"Choose how unread notifications are indicated on the app icon.": "Choose how unread notifications are indicated on the app icon.",
|
||||
"Notification badge": "Badge di notifica",
|
||||
"Choose how unread notifications are indicated on the app icon.": "Scegli come indicare le notifiche non lette sull'icona dell'app.",
|
||||
"You may delete your account at any time, note that this is unrecoverable": "Puoi eliminare il tuo account in qualsiasi momento, tieni presente che l'azione non è reversibile",
|
||||
"Profile saved": "Profilo salvato",
|
||||
"Profile picture updated": "Immagine del profilo aggiornata",
|
||||
@@ -1288,8 +1316,6 @@
|
||||
"When enabled, viewers can see download options for documents": "Se abilitato, i visualizzatori possono vedere le opzioni di download per i documenti",
|
||||
"Users can delete account": "Gli utenti possono eliminare l'account",
|
||||
"When enabled, users can delete their own account from the workspace": "Se abilitato, gli utenti possono eliminare il proprio account dall'area di lavoro",
|
||||
"Rich service embeds": "Integrazioni di servizi avanzati",
|
||||
"Links to supported services are shown as rich embeds within your documents": "I link ai servizi supportati vengono incorporati all'interno dei tuoi documenti",
|
||||
"Email address visibility": "Visibilità indirizzo email",
|
||||
"Controls who can see user email addresses in the workspace": "Controlla chi può vedere gli indirizzi email degli utenti nello spazio di lavoro",
|
||||
"Collection creation": "Creazione delle raccolte",
|
||||
@@ -1300,9 +1326,10 @@
|
||||
"Sharing is currently disabled.": "La condivisione è attualmente disabilitata.",
|
||||
"You can globally enable and disable public document sharing in the <em>security settings</em>.": "Puoi abilitare e disabilitare globalmente la condivisione di documenti pubblici nelle <em>impostazioni di sicurezza</em>.",
|
||||
"Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.": "I documenti che sono stati condivisi sono elencati di seguito. Chiunque disponga del collegamento pubblico può accedere a una versione di sola lettura del documento finché il collegamento non viene revocato.",
|
||||
"You can create templates to help your team create consistent and accurate documentation.": "Puoi creare modelli per aiutare il tuo team a creare una documentazione coerente e accurata.",
|
||||
"Alphabetical": "Alfabetico",
|
||||
"There are no templates just yet.": "Non ci sono modelli.",
|
||||
"A template must have content": "Un modello deve avere un contenuto",
|
||||
"Could not load templates": "Impossibile caricare modelli",
|
||||
"Templates help your team create consistent and accurate documentation.": "I modelli aiutano il tuo team a creare una documentazione coerente e accurata.",
|
||||
"No templates have been created yet": "Non sono stati creati modelli",
|
||||
"{{ teamName }} is using {{ appName }} to share documents, please login to continue.": "{{ teamName }} utilizza {{ appName }} per condividere documenti, effettua il login per continuare.",
|
||||
"A confirmation code has been sent to your email address, please enter the code below to permanently destroy this workspace.": "Un codice di conferma è stato inviato al tuo indirizzo email. Inserisci il codice qui sotto per eliminare definitivamente questo spazio di lavoro.",
|
||||
"Confirmation code": "Codice di conferma",
|
||||
@@ -1363,7 +1390,6 @@
|
||||
"New Attribute": "Nuovo attributo",
|
||||
"Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.": "Gli attributi consentono di definire i dati da archiviare nei documenti. Possono essere utilizzati per memorizzare proprietà personalizzate, metadati o qualsiasi altra informazione strutturata comune a più documenti.",
|
||||
"Custom domain": "Dominio personalizzato",
|
||||
"AI answers": "Risposte dell'IA",
|
||||
"Use AI to directly answer searched questions using content in your workspace.": "Utilizza l'IA per rispondere direttamente alle domande cercate utilizzando i contenuti presenti nel tuo spazio di lavoro.",
|
||||
"API access": "Accesso all’API",
|
||||
"Allow members to create API keys for programmatic access": "Consenti ai membri di creare chiavi API per l'accesso programmatico",
|
||||
@@ -1413,6 +1439,27 @@
|
||||
"Enabled by {{integrationCreatedBy}}": "Abilitato da {{integrationCreatedBy}}",
|
||||
"Disconnecting will prevent previewing GitHub links from this organization in documents. Are you sure?": "La disconnessione impedirà l'anteprima dei link GitHub di questa organizzazione nei documenti. Sei sicuro?",
|
||||
"The GitHub integration is currently disabled. Please set the associated environment variables and restart the server to enable the integration.": "L'integrazione con GitHub è attualmente disabilitata. Imposta le variabili di ambiente associate e riavvia il server per abilitare l'integrazione.",
|
||||
"Connect GitLab": "Connetti GitLab",
|
||||
"Enter the details for your GitLab instance.": "Inserisci i dettagli per la tua istanza GitLab.",
|
||||
"GitLab URL": "URL GitLab",
|
||||
"URL must start with https": "L'URL deve iniziare con https",
|
||||
"Client ID": "ID Client",
|
||||
"OAuth application ID": "OAuth ID applicazione",
|
||||
"Client Secret": "Segreto Client",
|
||||
"OAuth application secret": "Segreto dell'applicazione OAuth",
|
||||
"Connecting": "Connessione in corso",
|
||||
"Choose which GitLab instance to connect to.": "Scegli a quale istanza GitLab connetterti.",
|
||||
"GitLab Cloud": "Cloud GitLab",
|
||||
"Connect to your account on gitlab.com": "Connettiti al tuo account su gitlab.com",
|
||||
"GitLab Cloud credentials are not configured": "Le credenziali GitLab Cloud non sono configurate",
|
||||
"Self-managed": "Autogestito",
|
||||
"Connect to a custom GitLab installation": "Connettiti a un'installazione personalizzata di GitLab",
|
||||
"You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?": "Devi accettare le autorizzazioni in GitLab per connettere {{appName}} al tuo spazio di lavoro. Riprovare?",
|
||||
"The GitLab account is already connected to this workspace.": "L'account GitLab è già connesso a questo spazio di lavoro.",
|
||||
"Something went wrong while authenticating your request. Please try again.": "Si è verificato un problema durante l'autenticazione della richiesta. Riprova.",
|
||||
"The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.": "Al proprietario dell'account GitLab è stato richiesto di installare l'applicazione. Una volta approvata, la connessione sarà completata.",
|
||||
"Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.": "Abilita le anteprime dei problemi di GitLab e le richieste di unione nei documenti collegando un'organizzazione GitLab o repository specifici a {appName}.",
|
||||
"Disconnecting will prevent previewing links from GitLab in documents. Are you sure?": "La disconnessione impedirà l'anteprima dei link da GitLab nei documenti. Sei sicuro?",
|
||||
"Google Analytics": "Google Analytics",
|
||||
"Add a Google Analytics 4 measurement ID to send document views and analytics from the workspace to your own Google Analytics account.": "Aggiungi un ID misurazione Google Analytics 4 per inviare visualizzazioni di documenti e analisi dall'area di lavoro al tuo account Google Analytics.",
|
||||
"Measurement ID": "ID misurazione",
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
"Collection permissions": "コレクションの権限",
|
||||
"Share this collection": "このコレクションを共有する",
|
||||
"Import document": "ドキュメントをインポート",
|
||||
"Uploading": "アップロード中",
|
||||
"Sort in sidebar": "サイドバーの並べ替え",
|
||||
"A-Z sort": "A-Z ソート",
|
||||
"Z-A sort": "Z-A ソート",
|
||||
@@ -53,8 +54,9 @@
|
||||
"Development": "開発者メニュー",
|
||||
"Open document": "ドキュメントを開く",
|
||||
"New draft": "新しいドラフト",
|
||||
"New from template": "テンプレートから作成",
|
||||
"New nested document": "このページにドキュメントを作成",
|
||||
"Nested document": "Nested document",
|
||||
"Before": "Before",
|
||||
"After": "After",
|
||||
"Publish": "公開",
|
||||
"Published {{ documentName }}": "{{ documentName }} は公開されています",
|
||||
"Publish document": "ドキュメントを公開",
|
||||
@@ -91,9 +93,7 @@
|
||||
"Create template": "テンプレートを作成",
|
||||
"Open random document": "ランダムなドキュメントを開く",
|
||||
"Search documents for \"{{searchQuery}}\"": "\"{{searchQuery}}\" の検索結果",
|
||||
"Move to workspace": "ワークスペースに移動",
|
||||
"Move": "移動",
|
||||
"Move to collection": "コレクションに移動",
|
||||
"Move {{ documentType }}": "{{ documentType }} を移動",
|
||||
"Are you sure you want to archive this document?": "このドキュメントをアーカイブしてもよろしいですか?",
|
||||
"Document archived": "ドキュメントをアーカイブしました",
|
||||
@@ -165,6 +165,15 @@
|
||||
"New workspace": "新しいワークスペース",
|
||||
"Create a workspace": "ワークスペースを作成",
|
||||
"Login to workspace": "ワークスペースにログイン",
|
||||
"Template deleted": "テンプレートが削除されました",
|
||||
"Deleting": "削除中",
|
||||
"Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.": "Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.",
|
||||
"Move to workspace": "ワークスペースに移動",
|
||||
"Template moved": "テンプレートを移動しました",
|
||||
"Couldn't move the template, try again?": "テンプレートを移動できませんでした。もう一度お試しください。",
|
||||
"Move to collection": "コレクションに移動",
|
||||
"Move template": "テンプレートを移動",
|
||||
"Print template": "Print template",
|
||||
"Invite people": "ユーザーを招待",
|
||||
"Invite to workspace": "ワークスペースに招待",
|
||||
"Promote to {{ role }}": "{{ role }} に昇格",
|
||||
@@ -176,6 +185,7 @@
|
||||
"Debug": "デバッグ",
|
||||
"Document": "ドキュメント",
|
||||
"Documents": "ドキュメント",
|
||||
"Template": "テンプレート",
|
||||
"Recently viewed": "閲覧履歴",
|
||||
"Revision": "バージョン",
|
||||
"Navigation": "ナビゲーション",
|
||||
@@ -195,6 +205,7 @@
|
||||
"Collections are used to group documents and choose permissions": "コレクションはドキュメントのグループ化や権限の選択に使用されます。",
|
||||
"Name": "名前",
|
||||
"The default access for workspace members, you can share with more users or groups later.": "ワークスペースメンバーのデフォルトのアクセス権です。後から他のユーザーまたはグループと共有することもできます。",
|
||||
"Advanced options": "Advanced options",
|
||||
"Public document sharing": "公開されているドキュメントを共有",
|
||||
"Allow documents within this collection to be shared publicly on the internet.": "このコレクション内のドキュメントをインターネット上で公開することを許可します。",
|
||||
"Commenting": "コメントの追加",
|
||||
@@ -205,10 +216,10 @@
|
||||
"Create": "作成",
|
||||
"Collection deleted": "コレクションを削除しました",
|
||||
"I’m sure – Delete": "完全に削除する",
|
||||
"Deleting": "削除中",
|
||||
"Are you sure about that? Deleting the <em>{{collectionName}}</em> collection is permanent and cannot be restored, however all published documents within will be moved to the trash.": "<em> {{collectionName}} </em> コレクションの削除は永久的で、復元はできません。ただし、コレクション内の全ての公開されたドキュメントはゴミ箱に移動されます。",
|
||||
"Also, <em>{{collectionName}}</em> is being used as the start view – deleting it will reset the start view to the Home page.": "また、<em>{{collectionName}}</em> がホームページとして使用されています – これを削除すると、ホームページはデフォルトのオプションにリセットされます。",
|
||||
"Type a command or search": "コマンドを入力または検索",
|
||||
"New from template": "テンプレートから作成",
|
||||
"Choose a template": "テンプレートを選択",
|
||||
"Are you sure you want to permanently delete this entire comment thread?": "このコメントのスレッド全体を完全に削除してもよろしいですか?",
|
||||
"Are you sure you want to permanently delete this comment?": "このコメントを完全に削除してもよろしいですか?",
|
||||
@@ -227,12 +238,6 @@
|
||||
"Deleted Collection": "削除したコレクション",
|
||||
"Untitled": "無題のドキュメント",
|
||||
"Unpin": "ピン留めを外す",
|
||||
"Select a location to copy": "コピー先を選択してください",
|
||||
"Document copied": "ドキュメントがコピーされました",
|
||||
"Couldn’t copy the document, try again?": "ドキュメントをコピーできませんでした。もう一度お試しください。",
|
||||
"Include nested documents": "子ドキュメントを含める",
|
||||
"Copy to <em>{{ location }}</em>": "<em>{{ location }}</em> にコピーする",
|
||||
"Copying": "Copying",
|
||||
"Export started": "エクスポートを開始しました",
|
||||
"A link to your file will be sent through email soon": "ファイルへのリンクは間もなくメールで送信されます",
|
||||
"Preparing your download": "ダウンロードを準備中",
|
||||
@@ -242,13 +247,24 @@
|
||||
"Include child documents": "子ドキュメントを含める",
|
||||
"When selected, exporting the document <em>{{documentName}}</em> may take some time.": "選択すると、ドキュメント <em>{{documentName}}</em> をエクスポートするには時間がかかることがあります。",
|
||||
"You will receive an email when it's complete.": "完了するとメールが届きます",
|
||||
"Select a location to copy": "コピー先を選択してください",
|
||||
"Document copied": "ドキュメントがコピーされました",
|
||||
"Couldn’t copy the document, try again?": "ドキュメントをコピーできませんでした。もう一度お試しください。",
|
||||
"Include nested documents": "子ドキュメントを含める",
|
||||
"Copy to <em>{{ location }}</em>": "<em>{{ location }}</em> にコピーする",
|
||||
"Copying": "Copying",
|
||||
"Search collections & documents": "ドキュメントやコレクションを検索する",
|
||||
"Search collections": "Search collections",
|
||||
"No results found": "なにも見つかりませんでした",
|
||||
"Select a location to move": "移動先を選択してください",
|
||||
"Document moved": "ドキュメントが移動されました",
|
||||
"Couldn’t move the document, try again?": "ドキュメントを移動できませんでした。もう一度お試しください。",
|
||||
"Move to <em>{{ location }}</em>": "<em>{{ location }}</em> に移動する",
|
||||
"Couldn’t move the template, try again?": "Couldn’t move the template, try again?",
|
||||
"Document options": "ドキュメントオプション",
|
||||
"New": "新規作成",
|
||||
"Only visible to you": "あなたにのみ表示されます",
|
||||
"Draft": "下書き",
|
||||
"Template": "テンプレート",
|
||||
"You updated": "あなたが更新しました",
|
||||
"{{ userName }} updated": "{{ userName }} が更新しました",
|
||||
"You deleted": "あなたが削除しました",
|
||||
@@ -278,7 +294,6 @@
|
||||
"Please enter a name for the emoji": "絵文字の名前を入力してください",
|
||||
"Please select an image file": "画像ファイルを選択してください",
|
||||
"Emoji created successfully": "絵文字の作成に成功しました",
|
||||
"Uploading": "アップロード中",
|
||||
"Add emoji": "絵文字を追加",
|
||||
"Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.": "背景の透明な四角い画像は最適です。画像が大きすぎる場合は、サイズを変更してみます。",
|
||||
"Upload an image": "画像をアップロード",
|
||||
@@ -467,6 +482,7 @@
|
||||
"Collapse sidebar": "サイドバーを閉じる",
|
||||
"Archived collections": "アーカイブされたコレクション",
|
||||
"New doc": "ドキュメントを新規作成",
|
||||
"New nested document": "このページにドキュメントを作成",
|
||||
"Empty": "空",
|
||||
"No collections": "コレクションがありません",
|
||||
"Collapse": "折りたたむ",
|
||||
@@ -493,6 +509,8 @@
|
||||
"Unstar document": "お気に入りから削除",
|
||||
"Star document": "お気に入りに追加",
|
||||
"Select a color": "色を選択",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "このテンプレートを使用して新しいドキュメントを作成する際に埋められる要素を追加するには、<1></1> キーを使用してください。",
|
||||
"You’re editing a template": "テンプレートを編集しています",
|
||||
"Template created, go ahead and customize it": "テンプレートが作成されました",
|
||||
"Creating a template from <em>{{titleWithDefault}}</em> is a non-destructive action – we'll make a copy of the document and turn it into a template that can be used as a starting point for new documents.": "<em>{{titleWithDefault}}</em>のドキュメントからテンプレートを作成すると、元のドキュメントはコピーされ、テンプレートになります。",
|
||||
"Enable other members to use the template immediately": "他のメンバーがテンプレートをすぐに利用できるようにする",
|
||||
@@ -632,6 +650,7 @@
|
||||
"Delete embed": "埋め込みを削除",
|
||||
"Formatting controls": "書式設定",
|
||||
"Distribute columns": "Distribute columns",
|
||||
"Wrap text": "Wrap text",
|
||||
"Delete Emoji": "絵文字を削除",
|
||||
"Emoji deleted": "絵文字を削除しました",
|
||||
"I'm sure – Delete": "I'm sure – Delete",
|
||||
@@ -644,17 +663,19 @@
|
||||
"Unsubscribed from document": "ドキュメントの通知を解除しました",
|
||||
"Unsubscribed from collection": "コレクションの登録を解除しました",
|
||||
"Account": "アカウント",
|
||||
"API & Apps": "API とアプリ",
|
||||
"API & Access": "API & Access",
|
||||
"Details": "詳細情報",
|
||||
"Authentication": "認証",
|
||||
"Security": "セキュリティ",
|
||||
"Features": "機能",
|
||||
"AI": "AI",
|
||||
"API Keys": "APIキー",
|
||||
"Applications": "アプリ",
|
||||
"Shared Links": "共有済みのリンク",
|
||||
"Import": "インポート",
|
||||
"Install": "インストール",
|
||||
"Embeds": "Embeds",
|
||||
"Configure which embed providers are available in the editor.": "Configure which embed providers are available in the editor.",
|
||||
"Integrations": "連携",
|
||||
"Install": "インストール",
|
||||
"Change name": "名前を変更",
|
||||
"Change email": "メールアドレスを変更する",
|
||||
"Suspend user": "ユーザーを凍結",
|
||||
@@ -685,8 +706,8 @@
|
||||
"Headings you add to the document will appear here": "ドキュメントに追加した見出しがここに表示されます",
|
||||
"Contents": "目次",
|
||||
"Table of contents": "目次",
|
||||
"Template options": "Template options",
|
||||
"User options": "ユーザーオプション",
|
||||
"template": "テンプレート",
|
||||
"document": "ドキュメント",
|
||||
"Export complete": "エクスポート完了",
|
||||
"Export failed": "エクスポートに失敗しました",
|
||||
@@ -812,23 +833,15 @@
|
||||
"Sorry, the last change could not be persisted – please reload the page": "申し訳ありませんが、最後の変更を保持できませんでした。\nページをリロードしてください。",
|
||||
"{{ count }} days": "{{ count }} 日",
|
||||
"{{ count }} days_plural": "{{ count }} 日",
|
||||
"This template will be permanently deleted in <2></2> unless restored.": "このテンプレートは復元されない限り、<2></2>で永久に削除されます。",
|
||||
"This document will be permanently deleted in <2></2> unless restored.": "このドキュメントは復元されない限り、<2></2> 後に、永久に削除されます。",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "このテンプレートを使用して新しいドキュメントを作成する際に埋められる要素を追加するには、<1></1> キーを使用してください。",
|
||||
"You’re editing a template": "テンプレートを編集しています",
|
||||
"Deleted by {{userName}}": "{{userName}} が削除しました",
|
||||
"Observing {{ userName }}": "{{ userName }} を観察中",
|
||||
"Backlinks": "ハイパーリンク",
|
||||
"This document is large which may affect performance": "このドキュメントはパフォーマンスに影響を与える可能性があります",
|
||||
"Are you sure you want to delete the <em>{{ documentTitle }}</em> template?": "<em>{{ documentTitle }}</em> を削除してもよろしいですか?",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history</em>.": "<em>{{ documentTitle }}</em>ドキュメントを削除すると、その履歴もすべて削除されます。このまま続けますか?",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>.": "<em>{{ documentTitle }}</em> ドキュメントを削除すると、その履歴と <em>ドキュメント内の{{ any }} </em>も全て削除されます。よろしいですか?",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>._plural": "<em>{{ documentTitle }}</em> ドキュメントを削除すると、その履歴と <em>ネストされた{{ any }} のドキュメント</em>が全て削除されます。よろしいですか?",
|
||||
"If you’d like the option of referencing or restoring the {{noun}} in the future, consider archiving it instead.": "将来的に {{noun}} の参照または復元が必要になる可能性がある場合は、代わりにアーカイブすることを検討してください。",
|
||||
"Select a location to move": "移動先を選択してください",
|
||||
"Document moved": "ドキュメントが移動されました",
|
||||
"Couldn’t move the document, try again?": "ドキュメントを移動できませんでした。もう一度お試しください。",
|
||||
"Move to <em>{{ location }}</em>": "<em>{{ location }}</em> に移動する",
|
||||
"Couldn’t create the document, try again?": "ドキュメントを作成できませんでした。もう一度やり直してください。",
|
||||
"Document permanently deleted": "ドキュメントが完全に削除されました",
|
||||
"Are you sure you want to permanently delete the <em>{{ documentTitle }}</em> document? This action is immediate and cannot be undone.": "<em>{{ documentTitle }}</em> を完全に削除してもよろしいですか?この操作は即時に反映され、元に戻すことはできません。",
|
||||
@@ -885,7 +898,6 @@
|
||||
"Open this guide": "ガイドを開く",
|
||||
"Enter": "エンター",
|
||||
"Publish document and exit": "ドキュメントを公開して終了",
|
||||
"Save document": "ドキュメントを保存",
|
||||
"Cancel editing": "編集をキャンセル",
|
||||
"Collaboration": "コラボレーション",
|
||||
"Formatting": "書式設定",
|
||||
@@ -978,11 +990,14 @@
|
||||
"An error occurred": "エラーが発生しました",
|
||||
"The OAuth client could not be found, please check the provided client ID": "OAuthクライアントが見つかりませんでした。指定されたクライアントIDを確認してください。",
|
||||
"The OAuth client could not be loaded, please check the redirect URI is valid": "OAuthクライアントをロードできませんでした。リダイレクトURIが有効であることを確認してください。",
|
||||
"The OAuth client could not be loaded, please check your workspace subdomain is correct": "The OAuth client could not be loaded, please check your workspace subdomain is correct",
|
||||
"Required OAuth parameters are missing": "必要なOAuthパラメータがありません",
|
||||
"Authorize": "Authorize",
|
||||
"{{ appName }} wants to access {{ teamName }}": "{{ appName }} が {{ teamName }}にアクセスしようとしています",
|
||||
"By <em>{{ developerName }}</em>": "By <em>{{ developerName }}</em>",
|
||||
"{{ appName }} will be able to access your account and perform the following actions": "{{ appName }} will be able to access your account and perform the following actions",
|
||||
"You will be redirected to a local application after authorizing.": "You will be redirected to a local application after authorizing.",
|
||||
"You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.": "You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.",
|
||||
"read": "read",
|
||||
"write": "write",
|
||||
"read and write": "read and write",
|
||||
@@ -1156,6 +1171,8 @@
|
||||
"Last accessed": "最終アクセス",
|
||||
"Domain": "ドメイン",
|
||||
"Views": "閲覧数",
|
||||
"Visibility": "Visibility",
|
||||
"Updated by": "Updated by",
|
||||
"All roles": "全てのロール",
|
||||
"Admins": "管理者",
|
||||
"Editors": "編集者",
|
||||
@@ -1188,15 +1205,26 @@
|
||||
"Your workspace will be accessible at": "あなたのワークスペースは次のドメインでアクセスできます",
|
||||
"Choose a subdomain to enable a login page just for your team.": "サブドメインを選択して、チーム専用のログインページを有効にします。",
|
||||
"This is the screen that workspace members will first see when they sign in.": "これは、ワークスペース メンバーが最初にログインしたときに表示される画面です。",
|
||||
"Danger": "危険",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "You can delete this entire workspace including collections, documents, and users.",
|
||||
"Export data": "データのエクスポート",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "完全なデータをエクスポートするには、時間がかかることがあります。代わりに、単一のドキュメントまたはコレクションをエクスポートすることを検討してください。処理が開始された後、このウェブページを閉じることができます。通知を有効にした場合、エクスポートが完了すると、Url が <em>{{ userEmail }}</em> にメールされます。",
|
||||
"Recent exports": "最近のエクスポート",
|
||||
"Manage optional and beta features. Changing these settings will affect the experience for all members of the workspace.": "オプション機能とベータ機能を管理します。これらの設定を変更すると、ワークスペースの全てのメンバーのエクスペリエンスに影響します。",
|
||||
"Separate editing": "閲覧モードで開く",
|
||||
"When enabled documents have a separate editing mode by default instead of being always editable. This setting can be overridden by user preferences.": "有効にすると、ドキュメントは常に編集できる状態で開かれる代わりに、閲覧モードで開かれます。 編集をするには、画面上部の編集ボタンを押す必要があります。\nこの設定はユーザー設定によって上書きできます。",
|
||||
"When enabled team members can add comments to documents.": "有効にすると、チームメンバーはドキュメントにコメントを追加できます。",
|
||||
"Danger": "危険",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "You can delete this entire workspace including collections, documents, and users.",
|
||||
"Enabled": "Enabled",
|
||||
"Allow supported providers to be inserted as interactive embeds in documents.": "Allow supported providers to be inserted as interactive embeds in documents.",
|
||||
"Providers": "Providers",
|
||||
"Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.": "Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.",
|
||||
"All providers": "All providers",
|
||||
"Export data": "データのエクスポート",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "完全なデータをエクスポートするには、時間がかかることがあります。代わりに、単一のドキュメントまたはコレクションをエクスポートすることを検討してください。処理が開始された後、このウェブページを閉じることができます。通知を有効にした場合、エクスポートが完了すると、Url が <em>{{ userEmail }}</em> にメールされます。",
|
||||
"Recent exports": "最近のエクスポート",
|
||||
"Manage AI and integration features for your workspace.": "Manage AI and integration features for your workspace.",
|
||||
"MCP server": "MCPサーバー",
|
||||
"Allow members to connect to this workspace with MCP to read and write data.": "Allow members to connect to this workspace with MCP to read and write data.",
|
||||
"Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.": "Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.",
|
||||
"Copy URL": "URLをコピー",
|
||||
"AI answers": "AIの回答",
|
||||
"Use AI to get direct answers to questions in search. This feature requires a paid license.": "Use AI to get direct answers to questions in search. This feature requires a paid license.",
|
||||
"Create a group": "グループを作成",
|
||||
"Could not load groups": "グループを読み込めませんでした",
|
||||
"New group": "新規グループ",
|
||||
@@ -1288,8 +1316,6 @@
|
||||
"When enabled, viewers can see download options for documents": "有効にすると、閲覧者はドキュメントのダウンロードオプションを表示できます",
|
||||
"Users can delete account": "ユーザーはアカウントを削除できます。",
|
||||
"When enabled, users can delete their own account from the workspace": "有効にすると、ユーザーはワークスペースから自分のアカウントを削除できます。",
|
||||
"Rich service embeds": "リッチサービスの埋め込み",
|
||||
"Links to supported services are shown as rich embeds within your documents": "サポートされた URL は、ドキュメント内に埋め込みとして表示されます。",
|
||||
"Email address visibility": "メールアドレスの表示",
|
||||
"Controls who can see user email addresses in the workspace": "ワークスペースで他ユーザーのメールアドレスを閲覧可能なユーザーを制御します",
|
||||
"Collection creation": "コレクションを作成",
|
||||
@@ -1300,9 +1326,10 @@
|
||||
"Sharing is currently disabled.": "共有は現在無効になっています",
|
||||
"You can globally enable and disable public document sharing in the <em>security settings</em>.": "<em>セキュリティ設定</em> で公開ドキュメントの共有をグローバルに有効/無効にすることができます。",
|
||||
"Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.": "共有済みのドキュメントは以下のとおりです。\n公開リンクを知っている人は誰でも、リンクが無効になるまでドキュメントの読み取り専用バージョンにアクセスできます。",
|
||||
"You can create templates to help your team create consistent and accurate documentation.": "チームが一貫性のある正確なドキュメントを作成するのに役立つテンプレートを作成できます。",
|
||||
"Alphabetical": "アルファベット順",
|
||||
"There are no templates just yet.": "テンプレートが見つかりません。",
|
||||
"A template must have content": "A template must have content",
|
||||
"Could not load templates": "Could not load templates",
|
||||
"Templates help your team create consistent and accurate documentation.": "Templates help your team create consistent and accurate documentation.",
|
||||
"No templates have been created yet": "No templates have been created yet",
|
||||
"{{ teamName }} is using {{ appName }} to share documents, please login to continue.": "{{ teamName }} は {{ appName }} を使用してドキュメントを共有しています。続けるにはログインしてください。",
|
||||
"A confirmation code has been sent to your email address, please enter the code below to permanently destroy this workspace.": "登録されたメールアドレスに認証用のコードが送信されました。ワークスペースを永久に削除するには、メール内のコードを入力してください。",
|
||||
"Confirmation code": "認証コード",
|
||||
@@ -1363,7 +1390,6 @@
|
||||
"New Attribute": "New Attribute",
|
||||
"Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.": "Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.",
|
||||
"Custom domain": "カスタムドメイン",
|
||||
"AI answers": "AIの回答",
|
||||
"Use AI to directly answer searched questions using content in your workspace.": "Use AI to directly answer searched questions using content in your workspace.",
|
||||
"API access": "APIアクセス",
|
||||
"Allow members to create API keys for programmatic access": "メンバーがプログラムアクセス用にAPIキーを作成できるようにする",
|
||||
@@ -1413,6 +1439,27 @@
|
||||
"Enabled by {{integrationCreatedBy}}": "{{integrationCreatedBy}} によって有効化",
|
||||
"Disconnecting will prevent previewing GitHub links from this organization in documents. Are you sure?": "連携を解除すると、GitHub のリンクをドキュメントでプレビューできなくなります。よろしいですか?",
|
||||
"The GitHub integration is currently disabled. Please set the associated environment variables and restart the server to enable the integration.": "現在、GitHub との連携は無効になっています。\n関連する環境変数を正しく設定し、サーバーを再起動すると有効になります。",
|
||||
"Connect GitLab": "Connect GitLab",
|
||||
"Enter the details for your GitLab instance.": "Enter the details for your GitLab instance.",
|
||||
"GitLab URL": "GitLab URL",
|
||||
"URL must start with https": "URL must start with https",
|
||||
"Client ID": "Client ID",
|
||||
"OAuth application ID": "OAuth application ID",
|
||||
"Client Secret": "Client Secret",
|
||||
"OAuth application secret": "OAuth application secret",
|
||||
"Connecting": "Connecting",
|
||||
"Choose which GitLab instance to connect to.": "Choose which GitLab instance to connect to.",
|
||||
"GitLab Cloud": "GitLab Cloud",
|
||||
"Connect to your account on gitlab.com": "Connect to your account on gitlab.com",
|
||||
"GitLab Cloud credentials are not configured": "GitLab Cloud credentials are not configured",
|
||||
"Self-managed": "Self-managed",
|
||||
"Connect to a custom GitLab installation": "Connect to a custom GitLab installation",
|
||||
"You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?": "You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?",
|
||||
"The GitLab account is already connected to this workspace.": "The GitLab account is already connected to this workspace.",
|
||||
"Something went wrong while authenticating your request. Please try again.": "Something went wrong while authenticating your request. Please try again.",
|
||||
"The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.": "The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.",
|
||||
"Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.": "Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.",
|
||||
"Disconnecting will prevent previewing links from GitLab in documents. Are you sure?": "Disconnecting will prevent previewing links from GitLab in documents. Are you sure?",
|
||||
"Google Analytics": "Google Analytics",
|
||||
"Add a Google Analytics 4 measurement ID to send document views and analytics from the workspace to your own Google Analytics account.": "Google Analytics 4 measurement ID を追加すると、Google Analytics アカウントにドキュメントの閲覧数と分析を送信します。",
|
||||
"Measurement ID": "測定 ID",
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
"Collection permissions": "컬렉션 권한",
|
||||
"Share this collection": "컬렉션 공유하기",
|
||||
"Import document": "문서 가져오기",
|
||||
"Uploading": "업로드 중",
|
||||
"Sort in sidebar": "사이드바 정렬",
|
||||
"A-Z sort": "오름차순",
|
||||
"Z-A sort": "내림차순",
|
||||
@@ -53,8 +54,9 @@
|
||||
"Development": "개발",
|
||||
"Open document": "문서 열기",
|
||||
"New draft": "새 초안",
|
||||
"New from template": "새 템플릿 문서",
|
||||
"New nested document": "새 하위 문서",
|
||||
"Nested document": "중첩 문서",
|
||||
"Before": "이전",
|
||||
"After": "이후",
|
||||
"Publish": "게시하기",
|
||||
"Published {{ documentName }}": "{{ documentName }} 이(가) 발행됨",
|
||||
"Publish document": "문서 게시",
|
||||
@@ -91,9 +93,7 @@
|
||||
"Create template": "템플릿 만들기",
|
||||
"Open random document": "무작위 문서 열기",
|
||||
"Search documents for \"{{searchQuery}}\"": "\"{{searchQuery}}\" 에 대한 문서 검색",
|
||||
"Move to workspace": "워크스페이스로 이동",
|
||||
"Move": "이동",
|
||||
"Move to collection": "컬렉션으로 이동",
|
||||
"Move {{ documentType }}": "{{ documentType }} 문서 이동",
|
||||
"Are you sure you want to archive this document?": "정말로 이 문서를 아카이브 하시겠습니까?",
|
||||
"Document archived": "문서가 보관되었습니다",
|
||||
@@ -165,6 +165,15 @@
|
||||
"New workspace": "새 워크스페이스",
|
||||
"Create a workspace": "워크스페이스 만들기",
|
||||
"Login to workspace": "워크스페이스에 로그인",
|
||||
"Template deleted": "템플릿이 삭제됨",
|
||||
"Deleting": "삭제 중",
|
||||
"Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.": "정말로 진행할까요? <em>{{ templateName }}</em> 템플릿을 삭제하면 되돌릴 수 없습니다.",
|
||||
"Move to workspace": "워크스페이스로 이동",
|
||||
"Template moved": "템플릿이 이동됨",
|
||||
"Couldn't move the template, try again?": "템플릿을 이동 할 수 없습니다. 다시 시도할까요?",
|
||||
"Move to collection": "컬렉션으로 이동",
|
||||
"Move template": "템플릿 이동",
|
||||
"Print template": "템플릿 인쇄",
|
||||
"Invite people": "초대하기",
|
||||
"Invite to workspace": "워크스페이스에 초대",
|
||||
"Promote to {{ role }}": "{{ role }} (으)로 승격",
|
||||
@@ -176,6 +185,7 @@
|
||||
"Debug": "디버그",
|
||||
"Document": "문서",
|
||||
"Documents": "문서",
|
||||
"Template": "템플릿",
|
||||
"Recently viewed": "최근에 조회됨",
|
||||
"Revision": "리비전",
|
||||
"Navigation": "네비게이션",
|
||||
@@ -195,6 +205,7 @@
|
||||
"Collections are used to group documents and choose permissions": "컬렉션은 문서를 그룹화하고 권한을 지정하는 데 사용됩니다",
|
||||
"Name": "이름",
|
||||
"The default access for workspace members, you can share with more users or groups later.": "워크스페이스 멤버에 대한 기본 권한으로, 나중에 더 많은 사용자나 그룹과 공유할 수 있습니다.",
|
||||
"Advanced options": "고급 옵션",
|
||||
"Public document sharing": "인터넷 공유 허용",
|
||||
"Allow documents within this collection to be shared publicly on the internet.": "이 컬렉션 내의 모든 문서를 인터넷에 공개적으로 공유하도록 허용합니다.",
|
||||
"Commenting": "댓글 달기",
|
||||
@@ -205,10 +216,10 @@
|
||||
"Create": "생성",
|
||||
"Collection deleted": "컬렉션 삭제됨",
|
||||
"I’m sure – Delete": "이해했습니다 – 삭제",
|
||||
"Deleting": "삭제 중",
|
||||
"Are you sure about that? Deleting the <em>{{collectionName}}</em> collection is permanent and cannot be restored, however all published documents within will be moved to the trash.": "정말로 <em>{{collectionName}}</em> 컬렉션을 삭제하시겠습니까? 컬렉션 삭제는 영구적이며 복원할 수 없지만 그 안에 있는 문서는 휴지통으로 이동됩니다",
|
||||
"Also, <em>{{collectionName}}</em> is being used as the start view – deleting it will reset the start view to the Home page.": "또한 <em>{{collectionName}}</em> 는(은) 초기 화면으로 사용 중입니다. 삭제하면 초기 화면이 홈 페이지로 재설정됩니다.",
|
||||
"Type a command or search": "명령어를 입력하거나 검색",
|
||||
"New from template": "새 템플릿 문서",
|
||||
"Choose a template": "템플릿 선택",
|
||||
"Are you sure you want to permanently delete this entire comment thread?": "이 쓰레드에 있는 댓글들을 영구적으로 삭제하시겠습니까?",
|
||||
"Are you sure you want to permanently delete this comment?": "정말로 이 댓글을 영구적으로 삭제하시겠습니까?",
|
||||
@@ -227,12 +238,6 @@
|
||||
"Deleted Collection": "삭제 된 콜렉션",
|
||||
"Untitled": "제목없음",
|
||||
"Unpin": "고정 해제",
|
||||
"Select a location to copy": "복사할 위치 선택\n",
|
||||
"Document copied": "문서가 복사되었습니다",
|
||||
"Couldn’t copy the document, try again?": "문서를 복사할 수 없습니다. 다시 시도하시겠습니까?",
|
||||
"Include nested documents": "중첩된 문서 포함",
|
||||
"Copy to <em>{{ location }}</em>": "<em>{{ location }}</em>로 복사",
|
||||
"Copying": "복사 중",
|
||||
"Export started": "내보내기 시작됨",
|
||||
"A link to your file will be sent through email soon": "파일 링크는 곧 이메일로 발송될 예정입니다",
|
||||
"Preparing your download": "다운로드 준비중",
|
||||
@@ -242,13 +247,24 @@
|
||||
"Include child documents": "하위 문서를 포함하세요",
|
||||
"When selected, exporting the document <em>{{documentName}}</em> may take some time.": "이 옵션을 선택하면 문서 <em>{{documentName}}</em>을 내보내는 데 시간이 다소 걸릴 수 있습니다.",
|
||||
"You will receive an email when it's complete.": "완료 시점에 메일을 수신받게 됩니다.",
|
||||
"Select a location to copy": "복사할 위치 선택\n",
|
||||
"Document copied": "문서가 복사되었습니다",
|
||||
"Couldn’t copy the document, try again?": "문서를 복사할 수 없습니다. 다시 시도하시겠습니까?",
|
||||
"Include nested documents": "중첩된 문서 포함",
|
||||
"Copy to <em>{{ location }}</em>": "<em>{{ location }}</em>로 복사",
|
||||
"Copying": "복사 중",
|
||||
"Search collections & documents": "컬렉션 및 문서 검색",
|
||||
"Search collections": "컬렉션 검색",
|
||||
"No results found": "결과가 없습니다.",
|
||||
"Select a location to move": "이동할 위치 선택",
|
||||
"Document moved": "문서 이동 됨",
|
||||
"Couldn’t move the document, try again?": "문서를 이동 할 수 없습니다. 다시 시도하시겠습니까?",
|
||||
"Move to <em>{{ location }}</em>": "<em>{{ location }}</em>로 이동",
|
||||
"Couldn’t move the template, try again?": "템플릿을 이동 할 수 없습니다. 다시 시도할까요?",
|
||||
"Document options": "문서 옵션",
|
||||
"New": "신규",
|
||||
"Only visible to you": "나에게만 보임",
|
||||
"Draft": "임시보관",
|
||||
"Template": "템플릿",
|
||||
"You updated": "내가 수정함:",
|
||||
"{{ userName }} updated": "{{ userName }} 이(가) 수정함:",
|
||||
"You deleted": "내가 삭제함:",
|
||||
@@ -278,7 +294,6 @@
|
||||
"Please enter a name for the emoji": "이모지에 사용할 이름을 입력해 주세요",
|
||||
"Please select an image file": "이미지 파일을 선택해 주세요",
|
||||
"Emoji created successfully": "이모지가 성공적으로 생성되었습니다",
|
||||
"Uploading": "업로드 중",
|
||||
"Add emoji": "이모지 추가",
|
||||
"Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.": "투명한 배경의 정사각형 이미지가 가장 적합합니다. 이미지가 너무 큰 경우, 저희가 자동으로 크기를 조정해 드리겠습니다.",
|
||||
"Upload an image": "이미지 업로드",
|
||||
@@ -467,6 +482,7 @@
|
||||
"Collapse sidebar": "사이드바 축소",
|
||||
"Archived collections": "보관된 컬렉션",
|
||||
"New doc": "새 문서",
|
||||
"New nested document": "새 하위 문서",
|
||||
"Empty": "비어 있음",
|
||||
"No collections": "컬렉션 없음",
|
||||
"Collapse": "감추기",
|
||||
@@ -493,6 +509,8 @@
|
||||
"Unstar document": "문서 별표 해제",
|
||||
"Star document": "문서 별표 표시",
|
||||
"Select a color": "색상 선택",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "일부 텍스트를 강조 표시하고 <1></1> 컨트롤을 사용하여 새 문서를 만들 때 채울 수 있는 자리 표시자를 추가합니다.",
|
||||
"You’re editing a template": "템플릿을 수정 중입니다.",
|
||||
"Template created, go ahead and customize it": "템플릿이 생성되었습니다. 커스터마이징이 가능합니다.",
|
||||
"Creating a template from <em>{{titleWithDefault}}</em> is a non-destructive action – we'll make a copy of the document and turn it into a template that can be used as a starting point for new documents.": "<em>{{titleWithDefault}}</em>에서 템플릿을 만들더라도 원본 문서는 수정되지 않습니다. 이 문서의 복사본을 생성해서 새 문서의 시작점으로 사용할 수 있는 템플릿을 만듭니다.",
|
||||
"Enable other members to use the template immediately": "다른 멤버가 템플릿을 즉시 사용할 수 있도록 설정",
|
||||
@@ -632,6 +650,7 @@
|
||||
"Delete embed": "임베드 삭제",
|
||||
"Formatting controls": "포맷 제어",
|
||||
"Distribute columns": "열 배분",
|
||||
"Wrap text": "텍스트 줄바꿈",
|
||||
"Delete Emoji": "이모지 삭제",
|
||||
"Emoji deleted": "이모지 삭제됨",
|
||||
"I'm sure – Delete": "확실합니다 – 삭제",
|
||||
@@ -644,17 +663,19 @@
|
||||
"Unsubscribed from document": "문서 구독이 취소됨",
|
||||
"Unsubscribed from collection": "컬렉션 구독 취소",
|
||||
"Account": "계정",
|
||||
"API & Apps": "API 및 앱",
|
||||
"API & Access": "API 액세스",
|
||||
"Details": "세부 정보",
|
||||
"Authentication": "인증",
|
||||
"Security": "보안",
|
||||
"Features": "실험적 기능",
|
||||
"AI": "AI",
|
||||
"API Keys": "API 키",
|
||||
"Applications": "애플리케이션",
|
||||
"Shared Links": "공유한 링크",
|
||||
"Import": "불러오기",
|
||||
"Install": "설치",
|
||||
"Embeds": "임베드",
|
||||
"Configure which embed providers are available in the editor.": "편집기에서 사용할 수 있는 임베드 제공업체를 구성합니다.",
|
||||
"Integrations": "연동",
|
||||
"Install": "설치",
|
||||
"Change name": "이름 변경",
|
||||
"Change email": "이메일 변경",
|
||||
"Suspend user": "사용자 일시 정지",
|
||||
@@ -685,8 +706,8 @@
|
||||
"Headings you add to the document will appear here": "문서에 추가한 제목이 여기에 표시됩니다.",
|
||||
"Contents": "콘텐츠",
|
||||
"Table of contents": "목차",
|
||||
"Template options": "템플릿 옵션",
|
||||
"User options": "사용자 옵션",
|
||||
"template": "템플릿",
|
||||
"document": "문서",
|
||||
"Export complete": "내보내기 완료",
|
||||
"Export failed": "내보내기 실패",
|
||||
@@ -812,23 +833,15 @@
|
||||
"Sorry, the last change could not be persisted – please reload the page": "죄송합니다. 마지막 변경 사항을 유지할 수 없습니다. 페이지를 새로고침하세요.",
|
||||
"{{ count }} days": "{{ count }} 일",
|
||||
"{{ count }} days_plural": "{{ count }} 일",
|
||||
"This template will be permanently deleted in <2></2> unless restored.": "이 템플릿은 복원하지 않으면 <2></2> 에서 영구적으로 삭제됩니다.",
|
||||
"This document will be permanently deleted in <2></2> unless restored.": "이 문서는 복원하지 않으면 <2></2> 에서 영구적으로 삭제됩니다.",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "일부 텍스트를 강조 표시하고 <1></1> 컨트롤을 사용하여 새 문서를 만들 때 채울 수 있는 자리 표시자를 추가합니다.",
|
||||
"You’re editing a template": "템플릿을 수정 중입니다.",
|
||||
"Deleted by {{userName}}": "{{userName}} 에 의해 삭제됨",
|
||||
"Observing {{ userName }}": "{{ userName }} 관찰중",
|
||||
"Backlinks": "백링크",
|
||||
"This document is large which may affect performance": "이 문서의 크기가 커서 성능에 영향을 줄 수 있음",
|
||||
"Are you sure you want to delete the <em>{{ documentTitle }}</em> template?": "템플릿 <em>{{ documentTitle }}</em> 을 정말 삭제하시겠습니까?",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history</em>.": "정말 <em>{{ documentTitle }}</em> 문서를 삭제하시겠습니까? 문서를 삭제하면 모든 이력이 삭제됩니다.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>.": "정말 <em>{{ documentTitle }}</em> 문서를 삭제하시겠습니까? 문서를 삭제하면 모든 이력과 <em>{{ any }} 하위 문서들</em>이 삭제됩니다.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>._plural": "정말 <em>{{ documentTitle }}</em> 문서를 삭제하시겠습니까? 문서를 삭제하면 모든 이력과 <em>{{ any }} 하위 문서들</em>이 삭제됩니다.",
|
||||
"If you’d like the option of referencing or restoring the {{noun}} in the future, consider archiving it instead.": "나중에 {{noun}} 을 참조하거나 복원하는 옵션을 원한다면, 보관하는 것을 고려해보세요.",
|
||||
"Select a location to move": "이동할 위치 선택",
|
||||
"Document moved": "문서 이동 됨",
|
||||
"Couldn’t move the document, try again?": "문서를 이동 할 수 없습니다. 다시 시도하시겠습니까?",
|
||||
"Move to <em>{{ location }}</em>": "<em>{{ location }}</em>로 이동",
|
||||
"Couldn’t create the document, try again?": "문서를 만들 수 없습니다. 다시 시도하시겠습니까?",
|
||||
"Document permanently deleted": "문서가 영구적으로 삭제됨",
|
||||
"Are you sure you want to permanently delete the <em>{{ documentTitle }}</em> document? This action is immediate and cannot be undone.": "<em>{{ documentTitle }}</em> 문서를 영구적으로 삭제하시겠습니까? 이 작업은 즉각적이며 취소할 수 없습니다.",
|
||||
@@ -885,7 +898,6 @@
|
||||
"Open this guide": "이 가이드 열기",
|
||||
"Enter": "입력",
|
||||
"Publish document and exit": "문서를 저장하고 나가기",
|
||||
"Save document": "문서 저장",
|
||||
"Cancel editing": "변경 취소",
|
||||
"Collaboration": "협업",
|
||||
"Formatting": "포맷팅",
|
||||
@@ -978,11 +990,14 @@
|
||||
"An error occurred": "오류 발생",
|
||||
"The OAuth client could not be found, please check the provided client ID": "OAuth 클라이언트를 찾을 수 없습니다. 제공된 클라이언트 ID를 확인하세요.",
|
||||
"The OAuth client could not be loaded, please check the redirect URI is valid": "OAuth 클라이언트를 로드할 수 없습니다. 리디렉션 URI가 유효한지 확인하세요.",
|
||||
"The OAuth client could not be loaded, please check your workspace subdomain is correct": "OAuth 클라이언트를 로드할 수 없습니다. 워크스페이스 하위 도메인이 올바른지 확인하십시오.",
|
||||
"Required OAuth parameters are missing": "필수 OAuth 매개변수가 누락됨",
|
||||
"Authorize": "인증",
|
||||
"{{ appName }} wants to access {{ teamName }}": "{{ appName }}이(가) {{ teamName }}에 액세스하려고 합니다",
|
||||
"By <em>{{ developerName }}</em>": "<em>{{ developerName }}</em>님이 작성",
|
||||
"{{ appName }} will be able to access your account and perform the following actions": "{{ appName }}이(가) 귀하의 계정에 액세스하여 다음 작업을 수행할 수 있습니다",
|
||||
"You will be redirected to a local application after authorizing.": "인증 후 로컬 애플리케이션으로 리디렉션됩니다.",
|
||||
"You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.": "인증 후 <em>{{ redirectUri }}</em> 로 리디렉션됩니다. 이 URL을 신뢰하는지 확인하십시오.",
|
||||
"read": "읽기",
|
||||
"write": "쓰기",
|
||||
"read and write": "읽기 및 쓰기",
|
||||
@@ -1156,6 +1171,8 @@
|
||||
"Last accessed": "마지막으로 액세스",
|
||||
"Domain": "도메인",
|
||||
"Views": "열람",
|
||||
"Visibility": "공개 범위",
|
||||
"Updated by": "마지막 수정자",
|
||||
"All roles": "모든 역할",
|
||||
"Admins": "관리자",
|
||||
"Editors": "에디터",
|
||||
@@ -1188,15 +1205,26 @@
|
||||
"Your workspace will be accessible at": "워크스페이스는 다음에서 액세스할 수 있습니다.",
|
||||
"Choose a subdomain to enable a login page just for your team.": "팀 전용 로그인 페이지를 활성화하려면 하위 도메인을 선택하십시오.",
|
||||
"This is the screen that workspace members will first see when they sign in.": "워크스페이스 멤버들이 로그인할 때 가장 먼저 보게 되는 화면입니다.",
|
||||
"Danger": "위험",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "컬렉션, 문서 및 사용자를 포함하여 이 작업 영역 전체를 삭제할 수 있습니다.",
|
||||
"Export data": "데이터 내보내기",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "전체 내보내기는 시간이 걸릴 수 있으므로 단일 문서나 컬렉션을 내보내는 것을 고려하세요. 내보내기가 시작되면 이 페이지를 떠나셔도 됩니다. 알림이 활성화되어 있는 경우 완료되면 <em>{{ userEmail }}</em>으로 링크를 이메일로 보내드립니다.",
|
||||
"Recent exports": "최근 내보내기",
|
||||
"Manage optional and beta features. Changing these settings will affect the experience for all members of the workspace.": "선택적 기능 및 실험적 기능을 관리합니다. 이 설정을 변경하면 워크스페이스에 모든 멤버에게 영향을 미칩니다.",
|
||||
"Separate editing": "분할 편집",
|
||||
"When enabled documents have a separate editing mode by default instead of being always editable. This setting can be overridden by user preferences.": "활성화 시 문서는 항상 편집 가능한 대신 기본적으로 별도의 편집 모드를 갖습니다. 이 설정은 사용자 기본 설정에 따라 재정의될 수 있습니다.",
|
||||
"When enabled team members can add comments to documents.": "활성화되면 팀 구성원이 문서에 댓글을 달 수 있습니다.",
|
||||
"Danger": "위험",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "컬렉션, 문서 및 사용자를 포함하여 이 작업 영역 전체를 삭제할 수 있습니다.",
|
||||
"Enabled": "활성화됨",
|
||||
"Allow supported providers to be inserted as interactive embeds in documents.": "지원되는 제공업체를 문서에 대화형 임베드로 삽입할 수 있도록 허용합니다.",
|
||||
"Providers": "제공자",
|
||||
"Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.": "활성화된 제공업체는 편집기 메뉴에 나타나며 호환되는 링크를 붙여넣으면 자동으로 삽입됩니다. 기존에 문서에 삽입된 내용은 이러한 설정과 관계없이 계속 표시됩니다.",
|
||||
"All providers": "모든 제공자",
|
||||
"Export data": "데이터 내보내기",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "전체 내보내기는 시간이 걸릴 수 있으므로 단일 문서나 컬렉션을 내보내는 것을 고려하세요. 내보내기가 시작되면 이 페이지를 떠나셔도 됩니다. 알림이 활성화되어 있는 경우 완료되면 <em>{{ userEmail }}</em>으로 링크를 이메일로 보내드립니다.",
|
||||
"Recent exports": "최근 내보내기",
|
||||
"Manage AI and integration features for your workspace.": "워크스페이스의 AI 및 통합 기능을 관리하세요.",
|
||||
"MCP server": "MCP 서버",
|
||||
"Allow members to connect to this workspace with MCP to read and write data.": "구성원이 MCP를 사용하여 이 작업 공간에 연결하고 데이터를 읽고 쓸 수 있도록 허용합니다.",
|
||||
"Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.": "앱에서 MCP 서버에 연결하려면 다음 엔드포인트를 사용하세요. 설정에 대한 자세한 내용은 <a>문서를</a> 참조하세요.",
|
||||
"Copy URL": "URL 복사하기",
|
||||
"AI answers": "AI 답변",
|
||||
"Use AI to get direct answers to questions in search. This feature requires a paid license.": "검색에서 AI를 사용하여 질문에 대한 직접적인 답변을 얻으세요. 이 기능은 유료 라이선스가 필요합니다.",
|
||||
"Create a group": "그룹 만들기",
|
||||
"Could not load groups": "그룹을 불러올 수 없습니다",
|
||||
"New group": "그룹 만들기",
|
||||
@@ -1288,8 +1316,6 @@
|
||||
"When enabled, viewers can see download options for documents": "사용하도록 설정하면 보는 사람이 문서의 다운로드 옵션을 볼 수 있습니다.",
|
||||
"Users can delete account": "사용자는 계정을 삭제할 수 있음",
|
||||
"When enabled, users can delete their own account from the workspace": "활성화되면 사용자는 작업 공간에서 자신의 계정을 삭제할 수 있음",
|
||||
"Rich service embeds": "확장 임베딩",
|
||||
"Links to supported services are shown as rich embeds within your documents": "지원되는 서비스에 대한 링크는 문서 내에서 확장 임베딩으로 표시됩니다",
|
||||
"Email address visibility": "이메일 주소 공개 여부",
|
||||
"Controls who can see user email addresses in the workspace": "작업공간에서 사용자 이메일 주소를 볼 수 있는 사용자를 제어합니다",
|
||||
"Collection creation": "컬렉션 생성됨",
|
||||
@@ -1300,9 +1326,10 @@
|
||||
"Sharing is currently disabled.": "공유는 현재 비활성화되어 있습니다",
|
||||
"You can globally enable and disable public document sharing in the <em>security settings</em>.": "<em>보안 설정</em>에서 인터넷 공유를 전역적으로 활성화 및 비활성화할 수 있습니다.",
|
||||
"Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.": "공유된 문서는 다음과 같습니다. 공개 링크가 있는 사람은 링크가 삭제될 때까지 문서의 읽기 전용 버전에 액세스할 수 있습니다.",
|
||||
"You can create templates to help your team create consistent and accurate documentation.": "템플릿을 추가해서 팀이 일관성 있고 정확한 문서를 만들도록 도와줄 수 있습니다.",
|
||||
"Alphabetical": "알파벳 순",
|
||||
"There are no templates just yet.": "템플릿이 아직 없습니다.",
|
||||
"A template must have content": "템플릿에는 콘텐츠가 있어야함",
|
||||
"Could not load templates": "템플릿을 불러올 수 없음",
|
||||
"Templates help your team create consistent and accurate documentation.": "템플릿을 사용하면 팀이 일관되고 정확한 문서를 작성하는 데 도움이 됩니다.",
|
||||
"No templates have been created yet": "아직 생성 된 템플릿이 없습니다",
|
||||
"{{ teamName }} is using {{ appName }} to share documents, please login to continue.": "{{ teamName }} 는 {{ appName }} 사용하여 문서를 공유하고 있습니다. 계속하려면 로그인하십시오.",
|
||||
"A confirmation code has been sent to your email address, please enter the code below to permanently destroy this workspace.": "귀하의 이메일 주소로 확인 코드가 전송되었습니다. 워크스페이스를 영구적으로 제거하려면 아래에 코드를 입력하세요.",
|
||||
"Confirmation code": "확인 코드",
|
||||
@@ -1363,7 +1390,6 @@
|
||||
"New Attribute": "새 속성",
|
||||
"Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.": "속성을 사용하면 문서와 함께 저장할 데이터를 정의할 수 있습니다. 속성은 사용자 지정 속성, 메타데이터 또는 문서 간에 공통적으로 사용되는 기타 구조화된 정보를 저장하는 데 사용할 수 있습니다.",
|
||||
"Custom domain": "맞춤 도메인",
|
||||
"AI answers": "AI 답변",
|
||||
"Use AI to directly answer searched questions using content in your workspace.": "AI를 활용하여 워크스페이스의 콘텐츠를 통해 검색 질문에 직접 답변하세요.",
|
||||
"API access": "API 액세스",
|
||||
"Allow members to create API keys for programmatic access": "멤버들이 프로그래밍 방식 접근을 위한 API 키를 생성할 수 있도록 허용합니다",
|
||||
@@ -1413,6 +1439,27 @@
|
||||
"Enabled by {{integrationCreatedBy}}": "{{integrationCreatedBy}} 에 의해 활성화됨",
|
||||
"Disconnecting will prevent previewing GitHub links from this organization in documents. Are you sure?": "연결을 해제하면 문서에서 이 조직의 GitHub 링크의 미리보기를 볼 수 없습니다. 계속하시겠습니까?",
|
||||
"The GitHub integration is currently disabled. Please set the associated environment variables and restart the server to enable the integration.": "GitHub 통합은 현재 비활성화되어 있습니다. 연관된 환경변수를 설정하고 서버를 다시 시작하여 통합을 활성화하세요.",
|
||||
"Connect GitLab": "GitLab 연결",
|
||||
"Enter the details for your GitLab instance.": "GitLab 인스턴스 정보를 입력하세요.",
|
||||
"GitLab URL": "GitLab URL",
|
||||
"URL must start with https": "URL은 https로 시작해야 함",
|
||||
"Client ID": "클라이언트 ID",
|
||||
"OAuth application ID": "OAuth 어플리케이션 ID",
|
||||
"Client Secret": "클라이언트 비밀",
|
||||
"OAuth application secret": "OAuth 어플리케이션 비밀",
|
||||
"Connecting": "연결 중",
|
||||
"Choose which GitLab instance to connect to.": "연결할 GitLab 인스턴스를 선택하세요.",
|
||||
"GitLab Cloud": "GitLab Cloud",
|
||||
"Connect to your account on gitlab.com": "gitlab.com 계정에 연결",
|
||||
"GitLab Cloud credentials are not configured": "GitLab Cloud 자격 증명이 구성되지 않음",
|
||||
"Self-managed": "자체 관리형",
|
||||
"Connect to a custom GitLab installation": "사용자 지정 GitLab 설치에 연결",
|
||||
"You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?": "{{appName}}을(를) 워크스페이스에 연결하려면 GitLab에서 권한 승인이 필요합니다. 다시 시도할까요?",
|
||||
"The GitLab account is already connected to this workspace.": "GitLab 계정이 이미 이 워크스페이스에 연결되어 있습니다.",
|
||||
"Something went wrong while authenticating your request. Please try again.": "요청 인증 중 오류가 발생했습니다. 다시 시도해 주세요.",
|
||||
"The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.": "GitLab 계정 소유자에게 애플리케이션 설치를 요청했습니다. 승인이 완료되면 연결이 완료됩니다.",
|
||||
"Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.": "{appName}에 GitLab 조직 또는 특정 저장소를 연결하여 문서에서 GitLab 이슈 및 병합 요청의 미리보기를 활성화하세요.",
|
||||
"Disconnecting will prevent previewing links from GitLab in documents. Are you sure?": "연결을 끊으면 문서에서 GitLab 링크 미리보기가 불가능해집니다. 계속할까요?",
|
||||
"Google Analytics": "Google Analytics",
|
||||
"Add a Google Analytics 4 measurement ID to send document views and analytics from the workspace to your own Google Analytics account.": "Google 애널리틱스 4에 Measurement ID를 추가하여 작업공간에서 자신의 Google 애널리틱스 계정으로 문서 보기 및 분석을 전송하세요.",
|
||||
"Measurement ID": "Measurement ID",
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
"Collection permissions": "Samlingstillatelser",
|
||||
"Share this collection": "Del denne samlingen",
|
||||
"Import document": "Importer dokument",
|
||||
"Uploading": "Laster opp",
|
||||
"Sort in sidebar": "Sorter i sidemeny",
|
||||
"A-Z sort": "A-Å sortering",
|
||||
"Z-A sort": "Å-A sortering",
|
||||
@@ -53,8 +54,9 @@
|
||||
"Development": "Utvikling",
|
||||
"Open document": "Åpne dokument",
|
||||
"New draft": "Nytt utkast",
|
||||
"New from template": "Ny fra mal",
|
||||
"New nested document": "Nytt underdokument",
|
||||
"Nested document": "Nested document",
|
||||
"Before": "Before",
|
||||
"After": "After",
|
||||
"Publish": "Publiser",
|
||||
"Published {{ documentName }}": "Publisert {{ documentName }}",
|
||||
"Publish document": "Publiser dokument",
|
||||
@@ -91,9 +93,7 @@
|
||||
"Create template": "Opprett mal",
|
||||
"Open random document": "Åpne tilfeldig dokument",
|
||||
"Search documents for \"{{searchQuery}}\"": "Søk i dokumenter etter \"{{searchQuery}}\"",
|
||||
"Move to workspace": "Flytt til arbeidsområde",
|
||||
"Move": "Flytt",
|
||||
"Move to collection": "Flytt til samling",
|
||||
"Move {{ documentType }}": "Flytt {{ documentType }}",
|
||||
"Are you sure you want to archive this document?": "Er du sikker på at du vil arkivere dette dokumentet?",
|
||||
"Document archived": "Dokument arkivert",
|
||||
@@ -165,6 +165,15 @@
|
||||
"New workspace": "Nytt arbeidsområde",
|
||||
"Create a workspace": "Opprett et arbeidsområde",
|
||||
"Login to workspace": "Logg inn i arbeidsområdet",
|
||||
"Template deleted": "Template deleted",
|
||||
"Deleting": "Sletter",
|
||||
"Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.": "Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.",
|
||||
"Move to workspace": "Flytt til arbeidsområde",
|
||||
"Template moved": "Template moved",
|
||||
"Couldn't move the template, try again?": "Couldn't move the template, try again?",
|
||||
"Move to collection": "Flytt til samling",
|
||||
"Move template": "Move template",
|
||||
"Print template": "Print template",
|
||||
"Invite people": "Inviter personer",
|
||||
"Invite to workspace": "Inviter til arbeidsområdet",
|
||||
"Promote to {{ role }}": "Forfrem til {{ role }}",
|
||||
@@ -176,6 +185,7 @@
|
||||
"Debug": "Feilsøk",
|
||||
"Document": "Dokument",
|
||||
"Documents": "Dokumenter",
|
||||
"Template": "Mal",
|
||||
"Recently viewed": "Nylig vist",
|
||||
"Revision": "Revisjon",
|
||||
"Navigation": "Navigasjon",
|
||||
@@ -195,6 +205,7 @@
|
||||
"Collections are used to group documents and choose permissions": "Samlinger brukes til å gruppere dokumenter og velge tillatelser",
|
||||
"Name": "Navn",
|
||||
"The default access for workspace members, you can share with more users or groups later.": "Standardtilgang for medlemmer i arbeidsområdet. Du kan dele med flere brukere eller grupper senere.",
|
||||
"Advanced options": "Advanced options",
|
||||
"Public document sharing": "Offentlig dokumentdeling",
|
||||
"Allow documents within this collection to be shared publicly on the internet.": "Tillat at dokumenter i denne samlingen kan deles offentlig på Internett.",
|
||||
"Commenting": "Kommentering",
|
||||
@@ -205,10 +216,10 @@
|
||||
"Create": "Opprett",
|
||||
"Collection deleted": "Samling slettet",
|
||||
"I’m sure – Delete": "Jeg er sikker – Slett",
|
||||
"Deleting": "Sletter",
|
||||
"Are you sure about that? Deleting the <em>{{collectionName}}</em> collection is permanent and cannot be restored, however all published documents within will be moved to the trash.": "Er du sikker? Å slette <em>{{collectionName}}</em>-samlingen er permanent og kan ikke gjenopprettes, men alle publiserte dokumenter innenfor vil bli flyttet til søppel.",
|
||||
"Also, <em>{{collectionName}}</em> is being used as the start view – deleting it will reset the start view to the Home page.": "<em>{{collectionName}}</em> brukes som startvisning – å slette den vil tilbakestille startvisningen til hjemmesiden.",
|
||||
"Type a command or search": "Skriv en kommando eller søk",
|
||||
"New from template": "Ny fra mal",
|
||||
"Choose a template": "Velg en mal",
|
||||
"Are you sure you want to permanently delete this entire comment thread?": "Er du sikker på at du vil slette hele kommentartråden permanent?",
|
||||
"Are you sure you want to permanently delete this comment?": "Er du sikker på at du vil slette denne kommentaren permanent?",
|
||||
@@ -227,12 +238,6 @@
|
||||
"Deleted Collection": "Slettet samling",
|
||||
"Untitled": "Uten tittel",
|
||||
"Unpin": "Løsne",
|
||||
"Select a location to copy": "Velg en plassering å kopiere",
|
||||
"Document copied": "Dokument kopiert",
|
||||
"Couldn’t copy the document, try again?": "Kunne ikke kopiere dokumentet, prøv igjen?",
|
||||
"Include nested documents": "Inkluder underdokumenter",
|
||||
"Copy to <em>{{ location }}</em>": "Kopier til <em>{{ location }}</em>",
|
||||
"Copying": "Copying",
|
||||
"Export started": "Eksport startet",
|
||||
"A link to your file will be sent through email soon": "A link to your file will be sent through email soon",
|
||||
"Preparing your download": "Preparing your download",
|
||||
@@ -242,13 +247,24 @@
|
||||
"Include child documents": "Include child documents",
|
||||
"When selected, exporting the document <em>{{documentName}}</em> may take some time.": "When selected, exporting the document <em>{{documentName}}</em> may take some time.",
|
||||
"You will receive an email when it's complete.": "Du vil motta en e-post når det er ferdig.",
|
||||
"Select a location to copy": "Velg en plassering å kopiere",
|
||||
"Document copied": "Dokument kopiert",
|
||||
"Couldn’t copy the document, try again?": "Kunne ikke kopiere dokumentet, prøv igjen?",
|
||||
"Include nested documents": "Inkluder underdokumenter",
|
||||
"Copy to <em>{{ location }}</em>": "Kopier til <em>{{ location }}</em>",
|
||||
"Copying": "Copying",
|
||||
"Search collections & documents": "Søk i samlinger og dokumenter",
|
||||
"Search collections": "Search collections",
|
||||
"No results found": "Ingen resultater funnet",
|
||||
"Select a location to move": "Velg en plassering å flytte til",
|
||||
"Document moved": "Dokument flyttet",
|
||||
"Couldn’t move the document, try again?": "Kunne ikke flytte dokumentet, prøv igjen?",
|
||||
"Move to <em>{{ location }}</em>": "Flytt til <em>{{ location }}</em>",
|
||||
"Couldn’t move the template, try again?": "Couldn’t move the template, try again?",
|
||||
"Document options": "Dokumentalternativer",
|
||||
"New": "Ny",
|
||||
"Only visible to you": "Bare synlig for deg",
|
||||
"Draft": "Utkast",
|
||||
"Template": "Mal",
|
||||
"You updated": "Du oppdaterte",
|
||||
"{{ userName }} updated": "{{ userName }} oppdaterte",
|
||||
"You deleted": "Du slettet",
|
||||
@@ -278,7 +294,6 @@
|
||||
"Please enter a name for the emoji": "Please enter a name for the emoji",
|
||||
"Please select an image file": "Please select an image file",
|
||||
"Emoji created successfully": "Emoji created successfully",
|
||||
"Uploading": "Laster opp",
|
||||
"Add emoji": "Add emoji",
|
||||
"Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.": "Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.",
|
||||
"Upload an image": "Upload an image",
|
||||
@@ -467,6 +482,7 @@
|
||||
"Collapse sidebar": "Skjul sidepanelet",
|
||||
"Archived collections": "Arkiverte samlinger",
|
||||
"New doc": "Nytt dokument",
|
||||
"New nested document": "Nytt underdokument",
|
||||
"Empty": "Tom",
|
||||
"No collections": "No collections",
|
||||
"Collapse": "Kollaps",
|
||||
@@ -493,6 +509,8 @@
|
||||
"Unstar document": "Fjern stjerne fra dokument",
|
||||
"Star document": "Stjernemarker dokument",
|
||||
"Select a color": "Velg en farge",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Marker noe tekst og bruk <1></1>-kontrollen for å legge til plassholdere som kan fylles ut ved opprettelse av nye dokumenter",
|
||||
"You’re editing a template": "Du redigerer en mal",
|
||||
"Template created, go ahead and customize it": "Mal opprettet, gå videre og tilpass den",
|
||||
"Creating a template from <em>{{titleWithDefault}}</em> is a non-destructive action – we'll make a copy of the document and turn it into a template that can be used as a starting point for new documents.": "Å opprette en mal fra <em>{{titleWithDefault}}</em> er en ikke-destruktiv handling – vi vil lage en kopi av dokumentet og gjøre det til en mal som kan brukes som utgangspunkt for nye dokumenter.",
|
||||
"Enable other members to use the template immediately": "Tillat andre medlemmer å bruke malen nå",
|
||||
@@ -632,6 +650,7 @@
|
||||
"Delete embed": "Slett embed",
|
||||
"Formatting controls": "Formatting controls",
|
||||
"Distribute columns": "Distribute columns",
|
||||
"Wrap text": "Wrap text",
|
||||
"Delete Emoji": "Delete Emoji",
|
||||
"Emoji deleted": "Emoji deleted",
|
||||
"I'm sure – Delete": "I'm sure – Delete",
|
||||
@@ -644,17 +663,19 @@
|
||||
"Unsubscribed from document": "Avsluttet abonnement fra dokument",
|
||||
"Unsubscribed from collection": "Avsluttet abonnement fra samling",
|
||||
"Account": "Konto",
|
||||
"API & Apps": "API og apper",
|
||||
"API & Access": "API & Access",
|
||||
"Details": "Detaljer",
|
||||
"Authentication": "Authentication",
|
||||
"Security": "Sikkerhet",
|
||||
"Features": "Funksjoner",
|
||||
"AI": "AI",
|
||||
"API Keys": "API-nøkler",
|
||||
"Applications": "Applikasjoner",
|
||||
"Shared Links": "Delte Lenker",
|
||||
"Import": "Importer",
|
||||
"Install": "Installer",
|
||||
"Embeds": "Embeds",
|
||||
"Configure which embed providers are available in the editor.": "Configure which embed providers are available in the editor.",
|
||||
"Integrations": "Integrasjoner",
|
||||
"Install": "Installer",
|
||||
"Change name": "Endre navn",
|
||||
"Change email": "Endre e-post",
|
||||
"Suspend user": "Suspendere bruker",
|
||||
@@ -685,8 +706,8 @@
|
||||
"Headings you add to the document will appear here": "Overskrifter du legger til i dokumentet vil vises her",
|
||||
"Contents": "Innhold",
|
||||
"Table of contents": "Innholdsfortegnelse",
|
||||
"Template options": "Template options",
|
||||
"User options": "Brukeralternativer",
|
||||
"template": "mal",
|
||||
"document": "dokument",
|
||||
"Export complete": "Export complete",
|
||||
"Export failed": "Export failed",
|
||||
@@ -812,23 +833,15 @@
|
||||
"Sorry, the last change could not be persisted – please reload the page": "Beklager, den siste endringen kunne ikke lagres – vennligst last inn siden på nytt",
|
||||
"{{ count }} days": "{{ count }} dag",
|
||||
"{{ count }} days_plural": "{{ count }} dager",
|
||||
"This template will be permanently deleted in <2></2> unless restored.": "Denne malen vil bli slettet permanent innen <2></2> med mindre den gjenopprettes.",
|
||||
"This document will be permanently deleted in <2></2> unless restored.": "Dette dokumentet vil bli slettet permanent innen <2></2> med mindre det gjenopprettes.",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Marker noe tekst og bruk <1></1>-kontrollen for å legge til plassholdere som kan fylles ut ved opprettelse av nye dokumenter",
|
||||
"You’re editing a template": "Du redigerer en mal",
|
||||
"Deleted by {{userName}}": "Slettet av {{userName}}",
|
||||
"Observing {{ userName }}": "Observerer {{ userName }}",
|
||||
"Backlinks": "Tilbakekoblinger",
|
||||
"This document is large which may affect performance": "Dette dokumentet er stort og kan påvirke ytelsen",
|
||||
"Are you sure you want to delete the <em>{{ documentTitle }}</em> template?": "Er du sikker på at du vil slette <em>{{ documentTitle }}</em>-malen?",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history</em>.": "Er du sikker på det? Sletting av <em>{{ documentTitle }}</em>-dokumentet vil slette hele dens historikk</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>.": "Er du sikker på det? Sletting av <em>{{ documentTitle }}</em>-dokumentet vil slette hele dens historikk og <em>{{ any }} underdokument</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>._plural": "Er du sikker på det? Sletting av <em>{{ documentTitle }}</em>-dokumentet vil slette hele dens historikk og <em>{{ any }} underdokumenter</em>.",
|
||||
"If you’d like the option of referencing or restoring the {{noun}} in the future, consider archiving it instead.": "Hvis du ønsker muligheten til å referere til eller gjenopprette {{noun}} i fremtiden, vurder å arkivere det i stedet.",
|
||||
"Select a location to move": "Velg en plassering å flytte til",
|
||||
"Document moved": "Dokument flyttet",
|
||||
"Couldn’t move the document, try again?": "Kunne ikke flytte dokumentet, prøv igjen?",
|
||||
"Move to <em>{{ location }}</em>": "Flytt til <em>{{ location }}</em>",
|
||||
"Couldn’t create the document, try again?": "Kunne ikke opprette dokumentet, prøv igjen?",
|
||||
"Document permanently deleted": "Dokumentet slettet permanent",
|
||||
"Are you sure you want to permanently delete the <em>{{ documentTitle }}</em> document? This action is immediate and cannot be undone.": "Er du sikker på at du vil slette <em>{{ documentTitle }}</em>-dokumentet permanent? Denne handlingen er umiddelbar og kan ikke angres.",
|
||||
@@ -885,7 +898,6 @@
|
||||
"Open this guide": "Åpne denne guiden",
|
||||
"Enter": "Angi",
|
||||
"Publish document and exit": "Publiser dokument og avslutt",
|
||||
"Save document": "Lagre dokument",
|
||||
"Cancel editing": "Avbryt redigering",
|
||||
"Collaboration": "Samarbeid",
|
||||
"Formatting": "Formatering",
|
||||
@@ -978,11 +990,14 @@
|
||||
"An error occurred": "En feil oppstod",
|
||||
"The OAuth client could not be found, please check the provided client ID": "OAuth-klienten ble ikke funnet, vennligst sjekk den oppgitte klient-IDen",
|
||||
"The OAuth client could not be loaded, please check the redirect URI is valid": "OAuth-klienten kunne ikke bli lastet inn, vennligst sjekk om redirect-URL er gyldig",
|
||||
"The OAuth client could not be loaded, please check your workspace subdomain is correct": "The OAuth client could not be loaded, please check your workspace subdomain is correct",
|
||||
"Required OAuth parameters are missing": "Påkrevde OAuth-parametere mangler",
|
||||
"Authorize": "Autoriser",
|
||||
"{{ appName }} wants to access {{ teamName }}": "{{ appName }} ønsker tilgang til {{ teamName }}",
|
||||
"By <em>{{ developerName }}</em>": "Av <em>{{ developerName }}</em>",
|
||||
"{{ appName }} will be able to access your account and perform the following actions": "{{ appName }} vil få tilgang til din konto og utføre følgende handlinger",
|
||||
"You will be redirected to a local application after authorizing.": "You will be redirected to a local application after authorizing.",
|
||||
"You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.": "You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.",
|
||||
"read": "les",
|
||||
"write": "skriv",
|
||||
"read and write": "les og skriv",
|
||||
@@ -1156,6 +1171,8 @@
|
||||
"Last accessed": "Sist tilgjengelig",
|
||||
"Domain": "Domene",
|
||||
"Views": "Visninger",
|
||||
"Visibility": "Visibility",
|
||||
"Updated by": "Updated by",
|
||||
"All roles": "Alle roller",
|
||||
"Admins": "Administratorer",
|
||||
"Editors": "Redaktører",
|
||||
@@ -1188,15 +1205,26 @@
|
||||
"Your workspace will be accessible at": "Arbeidsområdet ditt vil være tilgjengelig på",
|
||||
"Choose a subdomain to enable a login page just for your team.": "Velg et underdomene for å aktivere en innloggingsside bare for teamet ditt.",
|
||||
"This is the screen that workspace members will first see when they sign in.": "Dette er skjermen som medlemmer av arbeidsområdet vil se først når de logger seg inn.",
|
||||
"Danger": "Fare",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "You can delete this entire workspace including collections, documents, and users.",
|
||||
"Export data": "Eksporter data",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "En full eksport kan ta litt tid, vurder å eksportere et enkelt dokument eller en samling. Du kan forlate denne siden når eksporten har startet – hvis du har aktivert varsler, vil vi sende en lenke på e-post til <em>{{ userEmail }}</em> når den er ferdig.",
|
||||
"Recent exports": "Nylige eksporter",
|
||||
"Manage optional and beta features. Changing these settings will affect the experience for all members of the workspace.": "Administrer valgfrie og beta-funksjoner. Å endre disse innstillingene vil påvirke opplevelsen for alle medlemmer av arbeidsområdet.",
|
||||
"Separate editing": "Separat redigering",
|
||||
"When enabled documents have a separate editing mode by default instead of being always editable. This setting can be overridden by user preferences.": "Når aktivert, har dokumenter en separat redigeringsmodus som standard i stedet for å være alltid redigerbare. Denne innstillingen kan overstyres av brukerpreferanser.",
|
||||
"When enabled team members can add comments to documents.": "Når aktivert, kan teammedlemmer legge til kommentarer i dokumenter.",
|
||||
"Danger": "Fare",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "You can delete this entire workspace including collections, documents, and users.",
|
||||
"Enabled": "Enabled",
|
||||
"Allow supported providers to be inserted as interactive embeds in documents.": "Allow supported providers to be inserted as interactive embeds in documents.",
|
||||
"Providers": "Providers",
|
||||
"Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.": "Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.",
|
||||
"All providers": "All providers",
|
||||
"Export data": "Eksporter data",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "En full eksport kan ta litt tid, vurder å eksportere et enkelt dokument eller en samling. Du kan forlate denne siden når eksporten har startet – hvis du har aktivert varsler, vil vi sende en lenke på e-post til <em>{{ userEmail }}</em> når den er ferdig.",
|
||||
"Recent exports": "Nylige eksporter",
|
||||
"Manage AI and integration features for your workspace.": "Manage AI and integration features for your workspace.",
|
||||
"MCP server": "MCP server",
|
||||
"Allow members to connect to this workspace with MCP to read and write data.": "Allow members to connect to this workspace with MCP to read and write data.",
|
||||
"Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.": "Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.",
|
||||
"Copy URL": "Copy URL",
|
||||
"AI answers": "AI answers",
|
||||
"Use AI to get direct answers to questions in search. This feature requires a paid license.": "Use AI to get direct answers to questions in search. This feature requires a paid license.",
|
||||
"Create a group": "Opprett en gruppe",
|
||||
"Could not load groups": "Kunne ikke laste grupper",
|
||||
"New group": "Ny gruppe",
|
||||
@@ -1288,8 +1316,6 @@
|
||||
"When enabled, viewers can see download options for documents": "Når aktivert, kan seere se nedlastingsalternativer for dokumenter",
|
||||
"Users can delete account": "Brukere kan slette kontoen",
|
||||
"When enabled, users can delete their own account from the workspace": "Når skrudd på kan brukere slette deres egen konto fra arbeidsområdet",
|
||||
"Rich service embeds": "Detaljerte tjenesteinnbygginger",
|
||||
"Links to supported services are shown as rich embeds within your documents": "Lenker til støttede tjenester vises som detaljerte innbygginger i dokumentene dine",
|
||||
"Email address visibility": "Email address visibility",
|
||||
"Controls who can see user email addresses in the workspace": "Controls who can see user email addresses in the workspace",
|
||||
"Collection creation": "Opprettelse av samling",
|
||||
@@ -1300,9 +1326,10 @@
|
||||
"Sharing is currently disabled.": "Deling er for øyeblikket deaktivert.",
|
||||
"You can globally enable and disable public document sharing in the <em>security settings</em>.": "Du kan globalt aktivere og deaktivere offentlig deling av dokumenter i <em>sikkerhetsinnstillingene</em>.",
|
||||
"Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.": "Dokumenter som har blitt delt er listet nedenfor. Alle som har den offentlige lenken kan få tilgang til en skrivebeskyttet versjon av dokumentet til lenken blir tilbakekalt.",
|
||||
"You can create templates to help your team create consistent and accurate documentation.": "Du kan opprette maler for å hjelpe teamet ditt med å lage konsistent og nøyaktig dokumentasjon.",
|
||||
"Alphabetical": "Alfabetisk",
|
||||
"There are no templates just yet.": "Det er ingen maler ennå.",
|
||||
"A template must have content": "A template must have content",
|
||||
"Could not load templates": "Could not load templates",
|
||||
"Templates help your team create consistent and accurate documentation.": "Templates help your team create consistent and accurate documentation.",
|
||||
"No templates have been created yet": "No templates have been created yet",
|
||||
"{{ teamName }} is using {{ appName }} to share documents, please login to continue.": "{{ teamName }} bruker {{ appName }} til å dele dokumenter, vennligst logg inn for å fortsette.",
|
||||
"A confirmation code has been sent to your email address, please enter the code below to permanently destroy this workspace.": "En bekreftelseskode har blitt sendt til din e-postadresse, vennligst skriv inn koden nedenfor for å slette dette arbeidsområdet permanent.",
|
||||
"Confirmation code": "Bekreftelseskode",
|
||||
@@ -1363,7 +1390,6 @@
|
||||
"New Attribute": "New Attribute",
|
||||
"Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.": "Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.",
|
||||
"Custom domain": "Custom domain",
|
||||
"AI answers": "AI answers",
|
||||
"Use AI to directly answer searched questions using content in your workspace.": "Use AI to directly answer searched questions using content in your workspace.",
|
||||
"API access": "API access",
|
||||
"Allow members to create API keys for programmatic access": "Allow members to create API keys for programmatic access",
|
||||
@@ -1413,6 +1439,27 @@
|
||||
"Enabled by {{integrationCreatedBy}}": "Aktivert av {{integrationCreatedBy}}",
|
||||
"Disconnecting will prevent previewing GitHub links from this organization in documents. Are you sure?": "Frakobling vil forhindre forhåndsvisning av GitHub-lenker fra denne organisasjonen i dokumenter. Er du sikker?",
|
||||
"The GitHub integration is currently disabled. Please set the associated environment variables and restart the server to enable the integration.": "GitHub-integrasjonen er for øyeblikket deaktivert. Vennligst sett de tilhørende miljøvariablene og start serveren på nytt for å aktivere integrasjonen.",
|
||||
"Connect GitLab": "Connect GitLab",
|
||||
"Enter the details for your GitLab instance.": "Enter the details for your GitLab instance.",
|
||||
"GitLab URL": "GitLab URL",
|
||||
"URL must start with https": "URL must start with https",
|
||||
"Client ID": "Client ID",
|
||||
"OAuth application ID": "OAuth application ID",
|
||||
"Client Secret": "Client Secret",
|
||||
"OAuth application secret": "OAuth application secret",
|
||||
"Connecting": "Connecting",
|
||||
"Choose which GitLab instance to connect to.": "Choose which GitLab instance to connect to.",
|
||||
"GitLab Cloud": "GitLab Cloud",
|
||||
"Connect to your account on gitlab.com": "Connect to your account on gitlab.com",
|
||||
"GitLab Cloud credentials are not configured": "GitLab Cloud credentials are not configured",
|
||||
"Self-managed": "Self-managed",
|
||||
"Connect to a custom GitLab installation": "Connect to a custom GitLab installation",
|
||||
"You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?": "You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?",
|
||||
"The GitLab account is already connected to this workspace.": "The GitLab account is already connected to this workspace.",
|
||||
"Something went wrong while authenticating your request. Please try again.": "Something went wrong while authenticating your request. Please try again.",
|
||||
"The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.": "The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.",
|
||||
"Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.": "Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.",
|
||||
"Disconnecting will prevent previewing links from GitLab in documents. Are you sure?": "Disconnecting will prevent previewing links from GitLab in documents. Are you sure?",
|
||||
"Google Analytics": "Google Analytics",
|
||||
"Add a Google Analytics 4 measurement ID to send document views and analytics from the workspace to your own Google Analytics account.": "Legg til en Google Analytics 4 målings-ID for å sende dokumentvisninger og analyser fra arbeidsområdet til din egen Google Analytics-konto.",
|
||||
"Measurement ID": "Målings-ID",
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
"Collection permissions": "Collectie machtigingen",
|
||||
"Share this collection": "Deze collectie delen",
|
||||
"Import document": "Documenten importeren",
|
||||
"Uploading": "Bezig met uploaden",
|
||||
"Sort in sidebar": "Sortering in zijbalk",
|
||||
"A-Z sort": "A-Z sortering",
|
||||
"Z-A sort": "Z-A sortering",
|
||||
@@ -53,8 +54,9 @@
|
||||
"Development": "Ontwikkeling",
|
||||
"Open document": "Document openen",
|
||||
"New draft": "Nieuw concept",
|
||||
"New from template": "Nieuw op basis van sjabloon",
|
||||
"New nested document": "Nieuw genest document",
|
||||
"Nested document": "Onderliggend document",
|
||||
"Before": "Voor",
|
||||
"After": "Na",
|
||||
"Publish": "Publiceer",
|
||||
"Published {{ documentName }}": "{{ documentName }} gepubliceerd",
|
||||
"Publish document": "Document publiceren",
|
||||
@@ -91,9 +93,7 @@
|
||||
"Create template": "Sjabloon aanmaken",
|
||||
"Open random document": "Willekeurig document openen",
|
||||
"Search documents for \"{{searchQuery}}\"": "Zoek documenten voor \"{{searchQuery}}\"",
|
||||
"Move to workspace": "Verplaatsen naar werkruimte",
|
||||
"Move": "Verplaatsen",
|
||||
"Move to collection": "Verplaatsen naar collectie",
|
||||
"Move {{ documentType }}": "{{ documentType }} verplaatsen",
|
||||
"Are you sure you want to archive this document?": "Weet je zeker dat je dit document wilt archiveren?",
|
||||
"Document archived": "Document gearchiveerd",
|
||||
@@ -165,6 +165,15 @@
|
||||
"New workspace": "Nieuwe werkruimte",
|
||||
"Create a workspace": "Werkruimte aanmaken",
|
||||
"Login to workspace": "Inloggen op werkruimte",
|
||||
"Template deleted": "Sjabloon verwijderd",
|
||||
"Deleting": "Verwijderen",
|
||||
"Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.": "Weet je het zeker? Het verwijderen van het sjabloon <em>{{ templateName }}</em> is definitief.",
|
||||
"Move to workspace": "Verplaatsen naar werkruimte",
|
||||
"Template moved": "Sjabloon verplaatst",
|
||||
"Couldn't move the template, try again?": "Kan sjabloon niet verplaatsen. Opnieuw proberen?",
|
||||
"Move to collection": "Verplaatsen naar collectie",
|
||||
"Move template": "Sjabloon verplaatsen",
|
||||
"Print template": "Sjabloon afdrukken",
|
||||
"Invite people": "Personen uitnodigen",
|
||||
"Invite to workspace": "Uitnodigen voor werkruimte",
|
||||
"Promote to {{ role }}": "Promoveren naar {{ role }}",
|
||||
@@ -176,6 +185,7 @@
|
||||
"Debug": "Fout opsporen",
|
||||
"Document": "Document",
|
||||
"Documents": "Documenten",
|
||||
"Template": "Sjabloon",
|
||||
"Recently viewed": "Recent bekeken",
|
||||
"Revision": "Revisie",
|
||||
"Navigation": "Navigatie",
|
||||
@@ -195,6 +205,7 @@
|
||||
"Collections are used to group documents and choose permissions": "Collecties worden gebruikt om documenten te groeperen en machtigingen te kiezen",
|
||||
"Name": "Naam",
|
||||
"The default access for workspace members, you can share with more users or groups later.": "De standaard toegang voor werkruimte-leden, je kunt later met meer gebruikers of groepen delen.",
|
||||
"Advanced options": "Geavanceerde opties",
|
||||
"Public document sharing": "Openbaar documenten delen",
|
||||
"Allow documents within this collection to be shared publicly on the internet.": "Toestaan dat documenten uit deze collectie openbaar gedeeld kunnen worden op het internet.",
|
||||
"Commenting": "Reageren",
|
||||
@@ -205,10 +216,10 @@
|
||||
"Create": "Maak",
|
||||
"Collection deleted": "Collectie verwijderd",
|
||||
"I’m sure – Delete": "Dat weet ik zeker – Verwijder",
|
||||
"Deleting": "Verwijderen",
|
||||
"Are you sure about that? Deleting the <em>{{collectionName}}</em> collection is permanent and cannot be restored, however all published documents within will be moved to the trash.": "Weet je dat zeker? Het verwijderen van de collectie <em>{{collectionName}}</em> is definitief en kan niet worden hersteld. Alle gepubliceerde documenten in deze collectie worden echter verplaatst naar de prullenbak.",
|
||||
"Also, <em>{{collectionName}}</em> is being used as the start view – deleting it will reset the start view to the Home page.": "Ook wordt <em>{{collectionName}}</em> gebruikt als de startweergave. Als je deze verwijdert, wordt de startweergave teruggezet naar het startscherm.",
|
||||
"Type a command or search": "Zoek of typ een opdracht",
|
||||
"New from template": "Nieuw op basis van sjabloon",
|
||||
"Choose a template": "Kies een sjabloon",
|
||||
"Are you sure you want to permanently delete this entire comment thread?": "Weet je zeker dat je deze thread definitief wil verwijderen?",
|
||||
"Are you sure you want to permanently delete this comment?": "Weet je zeker dat je deze reactie definitief wilt verwijderen?",
|
||||
@@ -227,12 +238,6 @@
|
||||
"Deleted Collection": "Verwijderde Collectie",
|
||||
"Untitled": "Naamloos",
|
||||
"Unpin": "Losmaken",
|
||||
"Select a location to copy": "Selecteer een locatie om te publiceren",
|
||||
"Document copied": "Bestand is gekopieerd",
|
||||
"Couldn’t copy the document, try again?": "Kon het document niet verplaatsen. Probeer het nog een keer?",
|
||||
"Include nested documents": "Inclusief geneste documenten",
|
||||
"Copy to <em>{{ location }}</em>": "Verplaatsen naar <em>{{ location }}</em>",
|
||||
"Copying": "Kopiëren",
|
||||
"Export started": "Exporteren is begonnen",
|
||||
"A link to your file will be sent through email soon": "Een link naar je bestand wordt spoedig via e-mail verzonden",
|
||||
"Preparing your download": "Download voorbereiden",
|
||||
@@ -242,13 +247,24 @@
|
||||
"Include child documents": "Inclusief onderliggende documenten",
|
||||
"When selected, exporting the document <em>{{documentName}}</em> may take some time.": "Indien geselecteerd, kan het exporteren van document <em>{{documentName}}</em> enige tijd duren.",
|
||||
"You will receive an email when it's complete.": "Je ontvangt een e-mail als het voltooid is.",
|
||||
"Select a location to copy": "Selecteer een locatie om te publiceren",
|
||||
"Document copied": "Bestand is gekopieerd",
|
||||
"Couldn’t copy the document, try again?": "Kon het document niet verplaatsen. Probeer het nog een keer?",
|
||||
"Include nested documents": "Inclusief geneste documenten",
|
||||
"Copy to <em>{{ location }}</em>": "Verplaatsen naar <em>{{ location }}</em>",
|
||||
"Copying": "Kopiëren",
|
||||
"Search collections & documents": "Zoeken in collecties & documenten",
|
||||
"Search collections": "Verzamelingen zoeken",
|
||||
"No results found": "Geen resultaten gevonden",
|
||||
"Select a location to move": "Selecteer een locatie om te verplaatsen",
|
||||
"Document moved": "Document verplaatst",
|
||||
"Couldn’t move the document, try again?": "Kon het document niet verplaatsen. Probeer het nog een keer?",
|
||||
"Move to <em>{{ location }}</em>": "Verplaatsen naar <em>{{ location }}</em>",
|
||||
"Couldn’t move the template, try again?": "Kan sjabloon niet verplaatsen. Opnieuw proberen?",
|
||||
"Document options": "Documentopties",
|
||||
"New": "Nieuw",
|
||||
"Only visible to you": "Alleen zichtbaar voor jou",
|
||||
"Draft": "Concept",
|
||||
"Template": "Sjabloon",
|
||||
"You updated": "Je hebt bijgewerkt",
|
||||
"{{ userName }} updated": "{{ userName }} bijgewerkt",
|
||||
"You deleted": "Je verwijderde",
|
||||
@@ -278,7 +294,6 @@
|
||||
"Please enter a name for the emoji": "Voer een naam in voor de emoji",
|
||||
"Please select an image file": "Selecteer een afbeeldingsbestand",
|
||||
"Emoji created successfully": "Emoji met succes aangemaakt",
|
||||
"Uploading": "Bezig met uploaden",
|
||||
"Add emoji": "Emoji toevoegen",
|
||||
"Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.": "Vierkante afbeeldingen met transparante achtergronden werken het beste. Als de afbeelding te groot is, proberen we het aan te passen.",
|
||||
"Upload an image": "Afbeelding uploaden",
|
||||
@@ -467,6 +482,7 @@
|
||||
"Collapse sidebar": "Zijbalk invouwen",
|
||||
"Archived collections": "Gearchiveerde collecties",
|
||||
"New doc": "Nieuw document",
|
||||
"New nested document": "Nieuw genest document",
|
||||
"Empty": "Leeg",
|
||||
"No collections": "Geen collecties",
|
||||
"Collapse": "Invouwen",
|
||||
@@ -493,6 +509,8 @@
|
||||
"Unstar document": "Document verwijderen uit favorieten",
|
||||
"Star document": "Document toevoegen aan favorieten",
|
||||
"Select a color": "Selecteer een kleur",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Markeer wat tekst en gebruik het <1></1> hulpmiddel om tijdelijke aanduidingen toe te voegen die kunnen worden ingevuld bij het maken van nieuwe documenten",
|
||||
"You’re editing a template": "Je bewerkt een sjabloon",
|
||||
"Template created, go ahead and customize it": "Sjabloon gemaakt, ga aan de gang en pas het aan",
|
||||
"Creating a template from <em>{{titleWithDefault}}</em> is a non-destructive action – we'll make a copy of the document and turn it into a template that can be used as a starting point for new documents.": "Het maken van een sjabloon van <em>{{titleWithDefault}}</em> is een niet-destructieve actie – we maken een kopie van het document en maken daar een sjabloon van dat kan worden gebruikt als uitgangspunt voor nieuwe documenten.",
|
||||
"Enable other members to use the template immediately": "Schakel andere leden in om de sjabloon onmiddellijk te gebruiken",
|
||||
@@ -632,6 +650,7 @@
|
||||
"Delete embed": "Insluiting verwijderen",
|
||||
"Formatting controls": "Opmaakbesturing",
|
||||
"Distribute columns": "Kolommen verdelen",
|
||||
"Wrap text": "Tekst-terugloop",
|
||||
"Delete Emoji": "Emoji verwijderen",
|
||||
"Emoji deleted": "Emoji verwijderd",
|
||||
"I'm sure – Delete": "Ik weet het zeker - Verwijderen",
|
||||
@@ -644,17 +663,19 @@
|
||||
"Unsubscribed from document": "Afgemeld voor document",
|
||||
"Unsubscribed from collection": "Afgemeld voor collectie",
|
||||
"Account": "Account",
|
||||
"API & Apps": "API & apps",
|
||||
"API & Access": "API & Toegang",
|
||||
"Details": "Details",
|
||||
"Authentication": "Authenticatie",
|
||||
"Security": "Beveiliging",
|
||||
"Features": "Features",
|
||||
"AI": "AI",
|
||||
"API Keys": "API-sleutels",
|
||||
"Applications": "Applicaties",
|
||||
"Shared Links": "Gedeelde links",
|
||||
"Import": "Importeer",
|
||||
"Install": "Installeren",
|
||||
"Embeds": "Insluiting",
|
||||
"Configure which embed providers are available in the editor.": "Configureer welke insluitingsaanbieders beschikbaar zijn in de editor.",
|
||||
"Integrations": "Integratie",
|
||||
"Install": "Installeren",
|
||||
"Change name": "Naam wijzigen",
|
||||
"Change email": "Wijzig e-mail",
|
||||
"Suspend user": "Blokkeer gebruiker",
|
||||
@@ -685,8 +706,8 @@
|
||||
"Headings you add to the document will appear here": "Koppen die je aan het document toevoegt, verschijnen hier",
|
||||
"Contents": "Inhoud",
|
||||
"Table of contents": "Inhoudsopgave",
|
||||
"Template options": "Sjabloon-opties",
|
||||
"User options": "Gebruikersopties",
|
||||
"template": "sjabloon",
|
||||
"document": "document",
|
||||
"Export complete": "Exporteren voltooid",
|
||||
"Export failed": "Export is mislukt",
|
||||
@@ -812,23 +833,15 @@
|
||||
"Sorry, the last change could not be persisted – please reload the page": "Sorry, de laatste wijziging kon niet worden bewaard - laad de pagina opnieuw",
|
||||
"{{ count }} days": "{{ count }} dag",
|
||||
"{{ count }} days_plural": "{{ count }} dagen",
|
||||
"This template will be permanently deleted in <2></2> unless restored.": "Dit sjabloon wordt definitief verwijderd over <2></2> tenzij het hersteld wordt.",
|
||||
"This document will be permanently deleted in <2></2> unless restored.": "Dit document wordt definitief verwijderd over <2></2> als dit niet wordt hersteld.",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Markeer wat tekst en gebruik het <1></1> hulpmiddel om tijdelijke aanduidingen toe te voegen die kunnen worden ingevuld bij het maken van nieuwe documenten",
|
||||
"You’re editing a template": "Je bewerkt een sjabloon",
|
||||
"Deleted by {{userName}}": "Verwijderd door {{userName}}",
|
||||
"Observing {{ userName }}": "Observeer {{ userName }}",
|
||||
"Backlinks": "Backlinks",
|
||||
"This document is large which may affect performance": "Dit document is groot wat de prestaties kan beïnvloeden",
|
||||
"Are you sure you want to delete the <em>{{ documentTitle }}</em> template?": "Weet je zeker dat je het sjabloon <em>{{ documentTitle }}</em> wilt verwijderen?",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history</em>.": "Weet je het zeker? Door het document <em>{{ documentTitle }}</em> te verwijderen zal ook alle geschiedenis ervan worden verwijderd</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>.": "Weet je het zeker? Door het document <em>{{ documentTitle }}</em> te verwijderen zal ook alle geschiedenis en <em>{{ any }} onderliggend document worden verwijderd</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>._plural": "Weet je het zeker? Door het document <em>{{ documentTitle }}</em> te verwijderen zal ook alle geschiedenis en <em>{{ any }} onderliggend document worden verwijderd</em>.",
|
||||
"If you’d like the option of referencing or restoring the {{noun}} in the future, consider archiving it instead.": "Als je de mogelijkheid wilt om de {{noun}} te refereren of in de toekomst te herstellen, overweeg dan om het te archiveren.",
|
||||
"Select a location to move": "Selecteer een locatie om te verplaatsen",
|
||||
"Document moved": "Document verplaatst",
|
||||
"Couldn’t move the document, try again?": "Kon het document niet verplaatsen. Probeer het nog een keer?",
|
||||
"Move to <em>{{ location }}</em>": "Verplaatsen naar <em>{{ location }}</em>",
|
||||
"Couldn’t create the document, try again?": "Kon het document niet aanmaken, probeer het opnieuw?",
|
||||
"Document permanently deleted": "Document definitief verwijderd",
|
||||
"Are you sure you want to permanently delete the <em>{{ documentTitle }}</em> document? This action is immediate and cannot be undone.": "Weet je zeker dat je het document <em>{{ documentTitle }}</em> definitief wilt verwijderen? Deze actie is onmiddellijk en kan niet ongedaan worden gemaakt.",
|
||||
@@ -885,7 +898,6 @@
|
||||
"Open this guide": "Open deze gids",
|
||||
"Enter": "Voer in",
|
||||
"Publish document and exit": "Document publiceren en verlaten",
|
||||
"Save document": "Document opslaan",
|
||||
"Cancel editing": "Annuleer",
|
||||
"Collaboration": "Samenwerken",
|
||||
"Formatting": "Opmaak",
|
||||
@@ -978,11 +990,14 @@
|
||||
"An error occurred": "Er is een fout opgetreden",
|
||||
"The OAuth client could not be found, please check the provided client ID": "De OAuth client kon niet worden gevonden, controleer de opgegeven cliënt ID",
|
||||
"The OAuth client could not be loaded, please check the redirect URI is valid": "De OAuth client kon niet worden geladen, controleer alstublieft de geldige redirect URI",
|
||||
"The OAuth client could not be loaded, please check your workspace subdomain is correct": "De OAuth-client kon niet worden geladen, controleer of het subdomein van uw werkruimte correct is",
|
||||
"Required OAuth parameters are missing": "Vereiste OAuth parameters ontbreken",
|
||||
"Authorize": "Autoriseren",
|
||||
"{{ appName }} wants to access {{ teamName }}": "{{ appName }} wil toegang tot {{ teamName }}",
|
||||
"By <em>{{ developerName }}</em>": "Door <em>{{ developerName }}</em>",
|
||||
"{{ appName }} will be able to access your account and perform the following actions": "{{ appName }} zal toegang krijgen tot je account en de volgende acties kunnen uitvoeren",
|
||||
"You will be redirected to a local application after authorizing.": "Na autorisatie wordt je doorverwezen naar een lokale toepassing.",
|
||||
"You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.": "Na autorisatie wordt je doorverwezen naar <em>{{ redirectUri }}</em>. Zorg ervoor dat je deze URL vertrouwt.",
|
||||
"read": "lezen",
|
||||
"write": "schrijven",
|
||||
"read and write": "lezen en schrijven",
|
||||
@@ -1111,16 +1126,16 @@
|
||||
"Are you sure about that? Deleting the <em>{{groupName}}</em> group will cause its members to lose access to collections and documents that it is associated with.": "Weet je dat zeker? Bij het verwijderen van de groep <em>{{groupName}}</em> verliezen de leden van de groep de toegang tot de verzamelingen en documenten van de groep.",
|
||||
"Add people to {{groupName}}": "Personen toevoegen aan {{groupName}}",
|
||||
"{{userName}} was removed from the group": "{{userName}} is verwijderd uit de groep",
|
||||
"All permissions": "All permissions",
|
||||
"All permissions": "Alle machtigingen",
|
||||
"Group admin": "Groepsbeheerder",
|
||||
"Member": "Deelnemer",
|
||||
"Add and remove members to the <em>{{groupName}}</em> group. Members of the group will have access to any collections this group has been added to.": "Leden toevoegen aan of verwijder van de groep <em>{{groupName}}</em>. Leden van de groep krijgen toegang tot alle collecties waaraan deze groep is toegevoegd.",
|
||||
"Add people": "Personen toevoegen",
|
||||
"Listing members of the <em>{{groupName}}</em> group.": "Toon leden van de <em>{{groupName}}</em> groep.",
|
||||
"Search by name": "Zoek op naam",
|
||||
"Search members": "Search members",
|
||||
"Filter by permissions": "Filter by permissions",
|
||||
"No members matching your filters": "No members matching your filters",
|
||||
"Search members": "Leden zoeken",
|
||||
"Filter by permissions": "Filteren op machtigingen",
|
||||
"No members matching your filters": "Geen leden die overeenkomen met jouw filters",
|
||||
"This group has no members.": "Deze groep heeft geen leden.",
|
||||
"{{userName}} was added to the group": "{{userName}} is aan de groep toegevoegd",
|
||||
"Could not add user": "Kon gebruiker niet toevoegen",
|
||||
@@ -1156,6 +1171,8 @@
|
||||
"Last accessed": "Laatst geopend",
|
||||
"Domain": "Domein",
|
||||
"Views": "Weergaven",
|
||||
"Visibility": "Zichtbaarheid",
|
||||
"Updated by": "Bijgewerkt door",
|
||||
"All roles": "Alle rollen",
|
||||
"Admins": "Beheerders",
|
||||
"Editors": "Redacteurs",
|
||||
@@ -1188,15 +1205,26 @@
|
||||
"Your workspace will be accessible at": "Je werkruimte is toegankelijk via",
|
||||
"Choose a subdomain to enable a login page just for your team.": "Kies een subdomein om een inlogpagina alleen voor jouw team in te schakelen.",
|
||||
"This is the screen that workspace members will first see when they sign in.": "Dit is het eerste scherm dat deelnemers van de werkruimte zien wanneer ze inloggen.",
|
||||
"Danger": "Gevaar",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "Je kunt deze hele werkruimte verwijderen inclusief collecties, documenten en gebruikers.",
|
||||
"Export data": "Exporteer gegevens",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "Een volledige export kan even duren, overweeg om één document of collectie te exporteren. Je kunt deze pagina verlaten zodra de export is gestart - als je meldingen hebt ingeschakeld ontvang je een link naar <em>{{ userEmail }}</em> als het voltooid is.",
|
||||
"Recent exports": "Recente exporten",
|
||||
"Manage optional and beta features. Changing these settings will affect the experience for all members of the workspace.": "Optionele en beta-functies beheren. Wijzigingen in deze instellingen zijn invloed op de ervaring voor alle leden van de werkruimte.",
|
||||
"Separate editing": "Aparte bewerkingsmodus",
|
||||
"When enabled documents have a separate editing mode by default instead of being always editable. This setting can be overridden by user preferences.": "Indien ingeschakeld hebben documenten standaard een aparte bewerkingsmodus in plaats van altijd bewerkbaar te zijn. Deze instelling kan worden overschreven door gebruikersvoorkeuren.",
|
||||
"When enabled team members can add comments to documents.": "Indien ingeschakeld kunnen teamleden opmerkingen toevoegen aan documenten.",
|
||||
"Danger": "Gevaar",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "Je kunt deze hele werkruimte verwijderen inclusief collecties, documenten en gebruikers.",
|
||||
"Enabled": "Ingeschakeld",
|
||||
"Allow supported providers to be inserted as interactive embeds in documents.": "Toestaan dat ondersteunde aanbieders worden ingevoegd als interactieve insluitingen in documenten.",
|
||||
"Providers": "Aanbieders",
|
||||
"Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.": "Ingeschakelde providers verschijnen in het editor slash menu en worden automatisch ingebed wanneer een compatibele link is geplakt. Bestaande embeds in documenten blijven weergeven, ongeacht deze instellingen.",
|
||||
"All providers": "Alle aanbieders",
|
||||
"Export data": "Exporteer gegevens",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "Een volledige export kan even duren, overweeg om één document of collectie te exporteren. Je kunt deze pagina verlaten zodra de export is gestart - als je meldingen hebt ingeschakeld ontvang je een link naar <em>{{ userEmail }}</em> als het voltooid is.",
|
||||
"Recent exports": "Recente exporten",
|
||||
"Manage AI and integration features for your workspace.": "AI en integratie functies beheren voor jouw werkruimte.",
|
||||
"MCP server": "MCP-server",
|
||||
"Allow members to connect to this workspace with MCP to read and write data.": "Leden toestaan om verbinding te maken met deze werkruimte met MCP om gegevens te lezen en te schrijven.",
|
||||
"Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.": "Gebruik het volgende eindpunt om vanuit je app verbinding te maken met de MCP-server. Lees meer over setup in <a>de documentatie</a>.",
|
||||
"Copy URL": "URL kopiëren",
|
||||
"AI answers": "AI antwoorden",
|
||||
"Use AI to get direct answers to questions in search. This feature requires a paid license.": "Gebruik AI om directe antwoorden op vragen te krijgen in zoekopdracht. Deze functie vereist een betaalde licentie.",
|
||||
"Create a group": "Maak een groep",
|
||||
"Could not load groups": "Kon groepen niet laden",
|
||||
"New group": "Nieuwe groep",
|
||||
@@ -1243,8 +1271,8 @@
|
||||
"Manage when and where you receive email notifications.": "Beheer wanneer en waar je e-mailmeldingen ontvangt.",
|
||||
"The email integration is currently disabled. Please set the associated environment variables and restart the server to enable notifications.": "De e-mailintegratie is momenteel uitgeschakeld. Stel de bijbehorende omgevingsvariabelen in en herstart de server om meldingen in te schakelen.",
|
||||
"Preferences saved": "Voorkeuren opgeslagen",
|
||||
"Unread count": "Unread count",
|
||||
"Unread indicator": "Unread indicator",
|
||||
"Unread count": "Aantal ongelezen",
|
||||
"Unread indicator": "Ongelezen indicator",
|
||||
"Delete account": "Verwijder account",
|
||||
"Manage settings that affect your personal experience.": "Beheer instellingen die van invloed zijn op je persoonlijke ervaring.",
|
||||
"Language": "Taal",
|
||||
@@ -1259,8 +1287,8 @@
|
||||
"Automatically return to the document you were last viewing when the app is re-opened.": "Automatisch terugkeren naar het document dat je het laatst hebt bekeken als de app opnieuw wordt geopend.",
|
||||
"Smart text replacements": "Slimme tekst vervangingen",
|
||||
"Auto-format text by replacing shortcuts with symbols, dashes, smart quotes, and other typographical elements.": "Automatisch tekst formatteren door snelkoppelingen te vervangen door symbolen, streepjes, slimme aanhalingstekens en andere typografische elementen.",
|
||||
"Notification badge": "Notification badge",
|
||||
"Choose how unread notifications are indicated on the app icon.": "Choose how unread notifications are indicated on the app icon.",
|
||||
"Notification badge": "Meldingsbadge",
|
||||
"Choose how unread notifications are indicated on the app icon.": "Kies hoe ongelezen meldingen worden aangegeven op het app-pictogram.",
|
||||
"You may delete your account at any time, note that this is unrecoverable": "Je kan je account op ieder moment verwijderen. Let op: je account kan niet hersteld worden",
|
||||
"Profile saved": "Wijzigingen opgeslagen",
|
||||
"Profile picture updated": "Profielfoto gewijzigd",
|
||||
@@ -1288,8 +1316,6 @@
|
||||
"When enabled, viewers can see download options for documents": "Wanneer ingeschakeld, kunnen kijkers downloadopties voor documenten zien",
|
||||
"Users can delete account": "Gebruikers kunnen account verwijderen",
|
||||
"When enabled, users can delete their own account from the workspace": "Wanneer ingeschakeld, kunnen gebruikers hun eigen account verwijderen uit de werkruimte",
|
||||
"Rich service embeds": "Rich service-embeds",
|
||||
"Links to supported services are shown as rich embeds within your documents": "Links naar ondersteunde diensten worden weergegeven als rich embeds in je documenten",
|
||||
"Email address visibility": "Zichtbaarheid van e-mailadres",
|
||||
"Controls who can see user email addresses in the workspace": "Bepaalt wie de e-mailadressen van gebruikers in de werkruimte kan zien",
|
||||
"Collection creation": "Collectie aanmaken",
|
||||
@@ -1300,9 +1326,10 @@
|
||||
"Sharing is currently disabled.": "Delen is momenteel uitgeschakeld.",
|
||||
"You can globally enable and disable public document sharing in the <em>security settings</em>.": "Je kunt het delen van openbare documenten globaal in- en uitschakelen in de <em>beveiligingsinstellingen</em>.",
|
||||
"Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.": "Documenten die zijn gedeeld, staan hieronder vermeld. Iedereen die de openbare link heeft, heeft toegang tot een alleen-lezen versie van het document totdat de link is ingetrokken.",
|
||||
"You can create templates to help your team create consistent and accurate documentation.": "Je kan sjablonen maken om je team te helpen met het maken van consistente en nauwkeurige documentatie.",
|
||||
"Alphabetical": "Alfabetisch",
|
||||
"There are no templates just yet.": "Er zijn nog geen sjablonen.",
|
||||
"A template must have content": "Een sjabloon moet inhoud bevatten",
|
||||
"Could not load templates": "Kan sjablonen niet laden",
|
||||
"Templates help your team create consistent and accurate documentation.": "Met sjablonen kan je team consistente en nauwkeurige documentatie maken.",
|
||||
"No templates have been created yet": "Er zijn nog geen sjablonen aangemaakt",
|
||||
"{{ teamName }} is using {{ appName }} to share documents, please login to continue.": "{{ teamName }} gebruikt {{ appName }} om documenten te delen, log alsjeblieft in om door te gaan.",
|
||||
"A confirmation code has been sent to your email address, please enter the code below to permanently destroy this workspace.": "Een bevestigingscode is naar je e-mailadres verzonden, voer hieronder de code in om deze werkruimte definitief te verwijderen.",
|
||||
"Confirmation code": "Bevestigingscode",
|
||||
@@ -1363,7 +1390,6 @@
|
||||
"New Attribute": "Nieuw kenmerk",
|
||||
"Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.": "Met Attributen kunt u gegevens definiëren die met uw documenten moeten worden opgeslagen. Ze kunnen worden gebruikt voor het opslaan van aangepaste eigendommen, metaata, of andere gestructureerde informatie die in verschillende documenten gebruikelijk is.",
|
||||
"Custom domain": "Aangepast domein",
|
||||
"AI answers": "AI antwoorden",
|
||||
"Use AI to directly answer searched questions using content in your workspace.": "Gebruik AI om gezochte vragen direct te beantwoorden met behulp van inhoud in je werkruimte.",
|
||||
"API access": "API-toegang",
|
||||
"Allow members to create API keys for programmatic access": "Leden toestaan om API-sleutels te maken voor programmatische toegang",
|
||||
@@ -1413,6 +1439,27 @@
|
||||
"Enabled by {{integrationCreatedBy}}": "Ingeschakeld door {{integrationCreatedBy}}",
|
||||
"Disconnecting will prevent previewing GitHub links from this organization in documents. Are you sure?": "Het verbreken van de verbinding voorkomt voorvertoning van GitHub-links van deze organisatie in documenten. Weet je het zeker?",
|
||||
"The GitHub integration is currently disabled. Please set the associated environment variables and restart the server to enable the integration.": "De GitHub-integratie is momenteel uitgeschakeld. Stel de bijbehorende omgevingsvariabelen in en start de server opnieuw op om de integratie in te schakelen.",
|
||||
"Connect GitLab": "Verbinden met GitLab",
|
||||
"Enter the details for your GitLab instance.": "Voer de gegevens in voor je GitLab-instantie.",
|
||||
"GitLab URL": "GitLab-URL",
|
||||
"URL must start with https": "URL moet beginnen met https",
|
||||
"Client ID": "Client-ID",
|
||||
"OAuth application ID": "OAuth applicatie-ID",
|
||||
"Client Secret": "Cliëntgeheim",
|
||||
"OAuth application secret": "OAuth applicatie-geheim",
|
||||
"Connecting": "Verbinding maken",
|
||||
"Choose which GitLab instance to connect to.": "Kies met welke GitLab-instantie je verbinding wilt maken.",
|
||||
"GitLab Cloud": "GitLab Cloud",
|
||||
"Connect to your account on gitlab.com": "Maak verbinding met je account op gitlab.com",
|
||||
"GitLab Cloud credentials are not configured": "GitLab Cloud-inloggegevens zijn niet geconfigureerd",
|
||||
"Self-managed": "Zelf beheerd",
|
||||
"Connect to a custom GitLab installation": "Maak verbinding met een aangepaste GitLab-installatie",
|
||||
"You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?": "Je moet de machtigingen accepteren in GitLab om {{appName}} te verbinden met je werkruimte. Opnieuw proberen?",
|
||||
"The GitLab account is already connected to this workspace.": "Het GitLab-account is al verbonden met deze werkruimte.",
|
||||
"Something went wrong while authenticating your request. Please try again.": "Er ging iets mis bij het verifiëren van je verzoek. Probeer het opnieuw.",
|
||||
"The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.": "De eigenaar van GitLab-account is verzocht om de applicatie te installeren. Zodra goedgekeurd, wordt de verbinding voltooid.",
|
||||
"Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.": "Schakel voorvertoningen van GitLab problemen en samenvoegverzoeken in documenten in door het verbinden van een GitLab-organisatie of specifieke repositories met {appName}.",
|
||||
"Disconnecting will prevent previewing links from GitLab in documents. Are you sure?": "Het verbreken van verbinding voorkomt voorvertoning van GitLab in documenten. Weet je het zeker?",
|
||||
"Google Analytics": "Google Analytics",
|
||||
"Add a Google Analytics 4 measurement ID to send document views and analytics from the workspace to your own Google Analytics account.": "Voeg een Google Analytics 4 meet-ID toe om documentweergaven en analytics van je werkruimte naar je eigen Google Analytics-account te sturen.",
|
||||
"Measurement ID": "Measurement ID",
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
"Collection permissions": "Uprawnienia kolekcji",
|
||||
"Share this collection": "Udostępnij tę kolekcję",
|
||||
"Import document": "Importuj dokument",
|
||||
"Uploading": "Wysyłanie",
|
||||
"Sort in sidebar": "Sortuj w pasku bocznym",
|
||||
"A-Z sort": "Sortuj A-Z",
|
||||
"Z-A sort": "Sortuj Z-A",
|
||||
@@ -53,8 +54,9 @@
|
||||
"Development": "Wersja testowa",
|
||||
"Open document": "Otwórz dokument",
|
||||
"New draft": "Nowy szkic",
|
||||
"New from template": "Nowy z szablonu",
|
||||
"New nested document": "Nowy zagnieżdżony dokument",
|
||||
"Nested document": "Nested document",
|
||||
"Before": "Before",
|
||||
"After": "After",
|
||||
"Publish": "Opublikuj",
|
||||
"Published {{ documentName }}": "Opublikowany {{ documentName }}",
|
||||
"Publish document": "Opublikuj dokument",
|
||||
@@ -91,9 +93,7 @@
|
||||
"Create template": "Utwórz szablon",
|
||||
"Open random document": "Otwórz losowy dokument",
|
||||
"Search documents for \"{{searchQuery}}\"": "Wyszukaj dokumenty dla „{{searchQuery}}”",
|
||||
"Move to workspace": "Przenieś do projektu",
|
||||
"Move": "Przenieś",
|
||||
"Move to collection": "Przenieś do kolekcji",
|
||||
"Move {{ documentType }}": "Przenieś {{ documentType }}",
|
||||
"Are you sure you want to archive this document?": "Czy na pewno chcesz zarchiwizować ten dokument?",
|
||||
"Document archived": "Dokument zarchiwizowany",
|
||||
@@ -165,6 +165,15 @@
|
||||
"New workspace": "Nowy obszar roboczy",
|
||||
"Create a workspace": "Stwórz obszar roboczy",
|
||||
"Login to workspace": "Zaloguj się do projektu",
|
||||
"Template deleted": "Template deleted",
|
||||
"Deleting": "Usuwanie",
|
||||
"Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.": "Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.",
|
||||
"Move to workspace": "Przenieś do projektu",
|
||||
"Template moved": "Template moved",
|
||||
"Couldn't move the template, try again?": "Couldn't move the template, try again?",
|
||||
"Move to collection": "Przenieś do kolekcji",
|
||||
"Move template": "Move template",
|
||||
"Print template": "Print template",
|
||||
"Invite people": "Zaproś ludzi",
|
||||
"Invite to workspace": "Zaproś do projektu",
|
||||
"Promote to {{ role }}": "Promuj na {{ role }}",
|
||||
@@ -176,6 +185,7 @@
|
||||
"Debug": "Debuguj",
|
||||
"Document": "Dokument",
|
||||
"Documents": "Dokumenty",
|
||||
"Template": "Szablon",
|
||||
"Recently viewed": "Ostatnio oglądane",
|
||||
"Revision": "Rewizja",
|
||||
"Navigation": "Nawigacja",
|
||||
@@ -195,6 +205,7 @@
|
||||
"Collections are used to group documents and choose permissions": "Kolekcje służą do grupowania dokumentów i wybierania uprawnień",
|
||||
"Name": "Nazwa",
|
||||
"The default access for workspace members, you can share with more users or groups later.": "Domyślny dostęp dla członków obszaru roboczego, możesz udostępnić więcej liczbie użytkowników lub grup później.",
|
||||
"Advanced options": "Advanced options",
|
||||
"Public document sharing": "Publiczne udostępnianie dokumentów",
|
||||
"Allow documents within this collection to be shared publicly on the internet.": "Zezwalaj na publiczne udostępnianie dokumentów z tej kolekcji w Internecie.",
|
||||
"Commenting": "Komentowanie",
|
||||
@@ -205,10 +216,10 @@
|
||||
"Create": "Utwórz",
|
||||
"Collection deleted": "Kolekcja usunięta",
|
||||
"I’m sure – Delete": "Jestem pewien – Usuń",
|
||||
"Deleting": "Usuwanie",
|
||||
"Are you sure about that? Deleting the <em>{{collectionName}}</em> collection is permanent and cannot be restored, however all published documents within will be moved to the trash.": "Czy jesteś tego pewien? Usunięcie kolekcji <em>{{collectionName}}</em> jest trwałe i nie można jej przywrócić, jednak wszystkie opublikowane w niej dokumenty zostaną przeniesione do kosza.",
|
||||
"Also, <em>{{collectionName}}</em> is being used as the start view – deleting it will reset the start view to the Home page.": "Ponadto widok <em>{{collectionName}}</em> jest używany jako widok początkowy – usunięcie go spowoduje zresetowanie widoku początkowego do strony głównej.",
|
||||
"Type a command or search": "Wpisz komendę lub wyszukiwanie",
|
||||
"New from template": "Nowy z szablonu",
|
||||
"Choose a template": "Wybierz szablon",
|
||||
"Are you sure you want to permanently delete this entire comment thread?": "Czy na pewno chcesz permanentnie usunąć ten wątek komentarzy?",
|
||||
"Are you sure you want to permanently delete this comment?": "Czy na pewno chcesz permanentnie usunąć ten komentarz?",
|
||||
@@ -227,12 +238,6 @@
|
||||
"Deleted Collection": "Usunięta kolekcja",
|
||||
"Untitled": "Bez tytułu",
|
||||
"Unpin": "Odepnij",
|
||||
"Select a location to copy": "Wybierz lokalizację do przeniesienia",
|
||||
"Document copied": "Dokument skopiowany",
|
||||
"Couldn’t copy the document, try again?": "Nie udało się przenieść dokumentu, spróbować ponownie?",
|
||||
"Include nested documents": "Dołącz zagnieżdżone dokumenty",
|
||||
"Copy to <em>{{ location }}</em>": "Skopiuj do <em>{{ location }}</em>",
|
||||
"Copying": "Copying",
|
||||
"Export started": "Eksport rozpoczęty",
|
||||
"A link to your file will be sent through email soon": "A link to your file will be sent through email soon",
|
||||
"Preparing your download": "Preparing your download",
|
||||
@@ -242,13 +247,24 @@
|
||||
"Include child documents": "Include child documents",
|
||||
"When selected, exporting the document <em>{{documentName}}</em> may take some time.": "When selected, exporting the document <em>{{documentName}}</em> may take some time.",
|
||||
"You will receive an email when it's complete.": "Po zakończeniu otrzymasz wiadomość e-mail.",
|
||||
"Select a location to copy": "Wybierz lokalizację do przeniesienia",
|
||||
"Document copied": "Dokument skopiowany",
|
||||
"Couldn’t copy the document, try again?": "Nie udało się przenieść dokumentu, spróbować ponownie?",
|
||||
"Include nested documents": "Dołącz zagnieżdżone dokumenty",
|
||||
"Copy to <em>{{ location }}</em>": "Skopiuj do <em>{{ location }}</em>",
|
||||
"Copying": "Copying",
|
||||
"Search collections & documents": "Przeszukaj kolekcje i dokumenty",
|
||||
"Search collections": "Search collections",
|
||||
"No results found": "Nie znaleziono wyników",
|
||||
"Select a location to move": "Wybierz lokalizację do przeniesienia",
|
||||
"Document moved": "Dokument został przeniesiony",
|
||||
"Couldn’t move the document, try again?": "Nie udało się przenieść dokumentu, spróbować ponownie?",
|
||||
"Move to <em>{{ location }}</em>": "Przenieś do <em>{{ location }}</em>",
|
||||
"Couldn’t move the template, try again?": "Couldn’t move the template, try again?",
|
||||
"Document options": "Opcje dokumentu",
|
||||
"New": "Nowe",
|
||||
"Only visible to you": "Widoczne tylko dla Ciebie",
|
||||
"Draft": "Szkic",
|
||||
"Template": "Szablon",
|
||||
"You updated": "Zaktualizowałeś",
|
||||
"{{ userName }} updated": "{{ userName }} zaktualizował",
|
||||
"You deleted": "Usunięto",
|
||||
@@ -278,7 +294,6 @@
|
||||
"Please enter a name for the emoji": "Please enter a name for the emoji",
|
||||
"Please select an image file": "Please select an image file",
|
||||
"Emoji created successfully": "Emoji created successfully",
|
||||
"Uploading": "Wysyłanie",
|
||||
"Add emoji": "Add emoji",
|
||||
"Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.": "Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.",
|
||||
"Upload an image": "Prześlij obraz",
|
||||
@@ -467,6 +482,7 @@
|
||||
"Collapse sidebar": "Zwiń pasek boczny",
|
||||
"Archived collections": "Zarchiwizowane kolekcje",
|
||||
"New doc": "Nowy dok",
|
||||
"New nested document": "Nowy zagnieżdżony dokument",
|
||||
"Empty": "Pusty",
|
||||
"No collections": "Brak kolekcji",
|
||||
"Collapse": "Zwiń",
|
||||
@@ -493,6 +509,8 @@
|
||||
"Unstar document": "Usuń oznaczenie gwiazdką",
|
||||
"Star document": "Oznacz dokument gwiazdką",
|
||||
"Select a color": "Wybierz kolor",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Zaznacz jakiś tekst i użyj kontroli <1></1> aby dodać symbole zastępcze, które mogą być wypełnione podczas tworzenia nowych dokumentów",
|
||||
"You’re editing a template": "Edytujesz szablon",
|
||||
"Template created, go ahead and customize it": "Szablon utworzony, przejdź do przodu i dostosuj go",
|
||||
"Creating a template from <em>{{titleWithDefault}}</em> is a non-destructive action – we'll make a copy of the document and turn it into a template that can be used as a starting point for new documents.": "Tworzenie szablonu z <em>{{titleWithDefault}}</em> jest akcją nieniszczącą - zrobimy kopię dokumentu i zamienimy go w szablonie, który może być użyty jako punkt wyjścia dla nowych dokumentów.",
|
||||
"Enable other members to use the template immediately": "Pozwól innym użytkownikom użyć tego szablonu",
|
||||
@@ -632,6 +650,7 @@
|
||||
"Delete embed": "Usuń osadzenie",
|
||||
"Formatting controls": "Formatting controls",
|
||||
"Distribute columns": "Distribute columns",
|
||||
"Wrap text": "Wrap text",
|
||||
"Delete Emoji": "Delete Emoji",
|
||||
"Emoji deleted": "Emoji deleted",
|
||||
"I'm sure – Delete": "I'm sure – Delete",
|
||||
@@ -644,17 +663,19 @@
|
||||
"Unsubscribed from document": "Wypisano z dokumentu",
|
||||
"Unsubscribed from collection": "Zrezygnowano z subskrypcji kolekcji",
|
||||
"Account": "Konto",
|
||||
"API & Apps": "API i aplikacje",
|
||||
"API & Access": "API & Access",
|
||||
"Details": "Szczegóły",
|
||||
"Authentication": "Authentication",
|
||||
"Security": "Bezpieczeństwo",
|
||||
"Features": "Funkcje",
|
||||
"AI": "AI",
|
||||
"API Keys": "Klucze API",
|
||||
"Applications": "Aplikacje",
|
||||
"Shared Links": "Udostępnione linki",
|
||||
"Import": "Importuj",
|
||||
"Install": "Zainstaluj",
|
||||
"Embeds": "Embeds",
|
||||
"Configure which embed providers are available in the editor.": "Configure which embed providers are available in the editor.",
|
||||
"Integrations": "Integracje",
|
||||
"Install": "Zainstaluj",
|
||||
"Change name": "Zmień nazwę",
|
||||
"Change email": "Zmień adres e-mail",
|
||||
"Suspend user": "Zawieś użytkownika",
|
||||
@@ -685,8 +706,8 @@
|
||||
"Headings you add to the document will appear here": "Tutaj pojawią się nagłówki, które dodasz do dokumentu",
|
||||
"Contents": "Treść",
|
||||
"Table of contents": "Spis treści",
|
||||
"Template options": "Template options",
|
||||
"User options": "Opcje użytkownika",
|
||||
"template": "szablon",
|
||||
"document": "dokument",
|
||||
"Export complete": "Export complete",
|
||||
"Export failed": "Export failed",
|
||||
@@ -812,23 +833,15 @@
|
||||
"Sorry, the last change could not be persisted – please reload the page": "Przepraszamy, nie udało się zachować ostatniej zmiany – proszę odświeżyć stronę",
|
||||
"{{ count }} days": "{{ count }} dzień",
|
||||
"{{ count }} days_plural": "{{ count }} dni",
|
||||
"This template will be permanently deleted in <2></2> unless restored.": "Ten szablon zostanie trwale usunięty w <2></2> chyba że zostanie przywrócony.",
|
||||
"This document will be permanently deleted in <2></2> unless restored.": "Ten dokument zostanie trwale usunięty w <2></2> chyba że zostanie przywrócony.",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Zaznacz jakiś tekst i użyj kontroli <1></1> aby dodać symbole zastępcze, które mogą być wypełnione podczas tworzenia nowych dokumentów",
|
||||
"You’re editing a template": "Edytujesz szablon",
|
||||
"Deleted by {{userName}}": "Usunięte przez {{userName}}",
|
||||
"Observing {{ userName }}": "Obserwowanie {{ userName }}",
|
||||
"Backlinks": "Linki zwrotne",
|
||||
"This document is large which may affect performance": "Ten dokument jest duży, co może mieć wpływ na wydajność",
|
||||
"Are you sure you want to delete the <em>{{ documentTitle }}</em> template?": "Czy na pewno chcesz usunąć szablon <em>{{ documentTitle }}</em>?",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history</em>.": "Czy jesteś tego pewien? Usunięcie dokumentu <em>{{ documentTitle }}</em> spowoduje usunięcie całej jego historii</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>.": "Czy jesteś tego pewien? Usunięcie dokumentu <em>{{ documentTitle }}</em> spowoduje usunięcie całej jego historii oraz <em>{{ any }} zagnieżdżonych dokumentów</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>._plural": "Czy jesteś tego pewien? Usunięcie dokumentu <em>{{ documentTitle }}</em> spowoduje usunięcie całej jego historii oraz <em>{{ any }} zagnieżdżonych dokumentów</em>.",
|
||||
"If you’d like the option of referencing or restoring the {{noun}} in the future, consider archiving it instead.": "Jeśli chciałbyś skorzystać z opcji odwoływania lub przywracania {{noun}} w przyszłości, rozważ archiwizację.",
|
||||
"Select a location to move": "Wybierz lokalizację do przeniesienia",
|
||||
"Document moved": "Dokument został przeniesiony",
|
||||
"Couldn’t move the document, try again?": "Nie udało się przenieść dokumentu, spróbować ponownie?",
|
||||
"Move to <em>{{ location }}</em>": "Przenieś do <em>{{ location }}</em>",
|
||||
"Couldn’t create the document, try again?": "Nie udało się utworzyć dokumentu, spróbować ponownie?",
|
||||
"Document permanently deleted": "Dokument trwale usunięty",
|
||||
"Are you sure you want to permanently delete the <em>{{ documentTitle }}</em> document? This action is immediate and cannot be undone.": "Czy na pewno chcesz trwale usunąć dokument <em>{{ documentTitle }}</em>? Ta akcja jest natychmiastowa i nie może zostać cofnięta.",
|
||||
@@ -885,7 +898,6 @@
|
||||
"Open this guide": "Otwórz ten przewodnik",
|
||||
"Enter": "Zatwierdź",
|
||||
"Publish document and exit": "Opublikuj dokument i wyjdź",
|
||||
"Save document": "Zapisz dokument",
|
||||
"Cancel editing": "Anuluj edycję",
|
||||
"Collaboration": "Współpraca",
|
||||
"Formatting": "Formatowanie",
|
||||
@@ -978,11 +990,14 @@
|
||||
"An error occurred": "Wystąpił błąd",
|
||||
"The OAuth client could not be found, please check the provided client ID": "Nie można znaleźć klienta OAuth, sprawdź podany identyfikator klienta",
|
||||
"The OAuth client could not be loaded, please check the redirect URI is valid": "Nie można załadować klienta OAuth, sprawdź, czy adres przekierowania jest poprawny",
|
||||
"The OAuth client could not be loaded, please check your workspace subdomain is correct": "The OAuth client could not be loaded, please check your workspace subdomain is correct",
|
||||
"Required OAuth parameters are missing": "Brak wymaganych parametrów OAuth",
|
||||
"Authorize": "Autoryzuj",
|
||||
"{{ appName }} wants to access {{ teamName }}": "{{ appName }} chce uzyskać dostęp do {{ teamName }}",
|
||||
"By <em>{{ developerName }}</em>": "Stworzona przez <em>{{ developerName }}</em>",
|
||||
"{{ appName }} will be able to access your account and perform the following actions": "{{ appName }} będzie mógł uzyskać dostęp do konta i wykonać następujące czynności",
|
||||
"You will be redirected to a local application after authorizing.": "You will be redirected to a local application after authorizing.",
|
||||
"You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.": "You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.",
|
||||
"read": "odczyt",
|
||||
"write": "zapis",
|
||||
"read and write": "odczyt i zapis",
|
||||
@@ -1156,6 +1171,8 @@
|
||||
"Last accessed": "Ostatnio otwarto",
|
||||
"Domain": "Domena",
|
||||
"Views": "Wyświetleń",
|
||||
"Visibility": "Visibility",
|
||||
"Updated by": "Updated by",
|
||||
"All roles": "Wszystkie role",
|
||||
"Admins": "Administratorzy",
|
||||
"Editors": "Edytory",
|
||||
@@ -1188,15 +1205,26 @@
|
||||
"Your workspace will be accessible at": "Twoja przestrzeń robocza będzie dostępna pod adresem",
|
||||
"Choose a subdomain to enable a login page just for your team.": "Wybierz subdomenę, aby umożliwić stronę logowania tylko dla Twojego zespołu.",
|
||||
"This is the screen that workspace members will first see when they sign in.": "To jest ekran, który członkowie przestrzeni roboczej zobaczą jako pierwszy po zalogowaniu.",
|
||||
"Danger": "Uwaga",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "Możesz usunąć cały ten obszar roboczy, włączając w to kolekcje, dokumenty i użytkowników.",
|
||||
"Export data": "Eksportuj dane",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "Pełny eksport może zająć trochę czasu — rozważ wyeksportowanie pojedynczego dokumentu lub kolekcji. Możesz zamknąć tę stronę po rozpoczęciu eksportu — jeśli masz włączone powiadomienia, wyślemy link na adres <em>{{ userEmail }}</em>, gdy eksport zostanie zakończony.",
|
||||
"Recent exports": "Najnowsze eksporty",
|
||||
"Manage optional and beta features. Changing these settings will affect the experience for all members of the workspace.": "Zarządzaj funkcjami opcjonalnymi i beta. Zmiana tych ustawień wpłynie na doświadczenie wszystkich członków przestrzeni roboczej.",
|
||||
"Separate editing": "Osobny tryb edycji",
|
||||
"When enabled documents have a separate editing mode by default instead of being always editable. This setting can be overridden by user preferences.": "Gdy włączone, dokumenty mają domyślnie osobny tryb edycji zamiast być zawsze edytowalne. To ustawienie może być nadpisane przez preferencje użytkownika.",
|
||||
"When enabled team members can add comments to documents.": "Gdy włączone, członkowie zespołu mogą dodawać komentarze do dokumentów.",
|
||||
"Danger": "Uwaga",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "Możesz usunąć cały ten obszar roboczy, włączając w to kolekcje, dokumenty i użytkowników.",
|
||||
"Enabled": "Enabled",
|
||||
"Allow supported providers to be inserted as interactive embeds in documents.": "Allow supported providers to be inserted as interactive embeds in documents.",
|
||||
"Providers": "Providers",
|
||||
"Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.": "Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.",
|
||||
"All providers": "All providers",
|
||||
"Export data": "Eksportuj dane",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "Pełny eksport może zająć trochę czasu — rozważ wyeksportowanie pojedynczego dokumentu lub kolekcji. Możesz zamknąć tę stronę po rozpoczęciu eksportu — jeśli masz włączone powiadomienia, wyślemy link na adres <em>{{ userEmail }}</em>, gdy eksport zostanie zakończony.",
|
||||
"Recent exports": "Najnowsze eksporty",
|
||||
"Manage AI and integration features for your workspace.": "Manage AI and integration features for your workspace.",
|
||||
"MCP server": "MCP server",
|
||||
"Allow members to connect to this workspace with MCP to read and write data.": "Allow members to connect to this workspace with MCP to read and write data.",
|
||||
"Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.": "Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.",
|
||||
"Copy URL": "Copy URL",
|
||||
"AI answers": "Odpowiedzi AI",
|
||||
"Use AI to get direct answers to questions in search. This feature requires a paid license.": "Use AI to get direct answers to questions in search. This feature requires a paid license.",
|
||||
"Create a group": "Utwórz grupę",
|
||||
"Could not load groups": "Nie można załadować grup",
|
||||
"New group": "Nowa grupa",
|
||||
@@ -1288,8 +1316,6 @@
|
||||
"When enabled, viewers can see download options for documents": "Po włączeniu członkowie z uprawnieniami widza mogą zobaczyć opcje pobierania dokumentów",
|
||||
"Users can delete account": "Użytkownicy mogą usunąć konto",
|
||||
"When enabled, users can delete their own account from the workspace": "Gdy włączone, użytkownicy mogą usuwać własne konto z obszaru roboczego",
|
||||
"Rich service embeds": "Bogate osadzone usługi",
|
||||
"Links to supported services are shown as rich embeds within your documents": "Linki do obsługiwanych usług są wyświetlane jako bogate osadzenia w dokumentach",
|
||||
"Email address visibility": "Email address visibility",
|
||||
"Controls who can see user email addresses in the workspace": "Controls who can see user email addresses in the workspace",
|
||||
"Collection creation": "Tworzenie kolekcji",
|
||||
@@ -1300,9 +1326,10 @@
|
||||
"Sharing is currently disabled.": "Udostępnianie jest obecnie wyłączone.",
|
||||
"You can globally enable and disable public document sharing in the <em>security settings</em>.": "Możesz globalnie włączać i wyłączać publiczne udostępnianie dokumentów w <em>ustawieniach zabezpieczeń</em>.",
|
||||
"Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.": "Dokumenty udostępnione są wymienione poniżej. Każdy, kto ma link publiczny, może uzyskać dostęp do wersji dokumentu tylko do odczytu do czasu cofnięcia linku.",
|
||||
"You can create templates to help your team create consistent and accurate documentation.": "Możesz utworzyć szablony, aby ułatwić swojemu zespołowi tworzenie spójnej i dokładnej dokumentacji.",
|
||||
"Alphabetical": "Alfabetycznie",
|
||||
"There are no templates just yet.": "Nie ma jeszcze żadnych szablonów.",
|
||||
"A template must have content": "A template must have content",
|
||||
"Could not load templates": "Could not load templates",
|
||||
"Templates help your team create consistent and accurate documentation.": "Templates help your team create consistent and accurate documentation.",
|
||||
"No templates have been created yet": "No templates have been created yet",
|
||||
"{{ teamName }} is using {{ appName }} to share documents, please login to continue.": "{{ teamName }} używa {{ appName }} do udostępniania dokumentów, zaloguj się, aby kontynuować.",
|
||||
"A confirmation code has been sent to your email address, please enter the code below to permanently destroy this workspace.": "Na Twój adres e-mail został wysłany kod potwierdzający, wpisz poniżej kod, aby trwale zniszczyć ten obszar roboczy.",
|
||||
"Confirmation code": "Kod potwierdzający",
|
||||
@@ -1363,7 +1390,6 @@
|
||||
"New Attribute": "Nowy atrybut",
|
||||
"Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.": "Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.",
|
||||
"Custom domain": "Własna domena",
|
||||
"AI answers": "Odpowiedzi AI",
|
||||
"Use AI to directly answer searched questions using content in your workspace.": "Użyj sztucznej inteligencji, aby odpowiadać na pytania, korzystając z treści w Twoim obszarze roboczym.",
|
||||
"API access": "Dostęp do API",
|
||||
"Allow members to create API keys for programmatic access": "Zezwól członkom na tworzenie kluczy dostępu do API",
|
||||
@@ -1413,6 +1439,27 @@
|
||||
"Enabled by {{integrationCreatedBy}}": "Włączone przez {{integrationCreatedBy}}",
|
||||
"Disconnecting will prevent previewing GitHub links from this organization in documents. Are you sure?": "Odłączenie uniemożliwi podgląd linków GitHub z tej organizacji w dokumentach. Jesteś pewien?",
|
||||
"The GitHub integration is currently disabled. Please set the associated environment variables and restart the server to enable the integration.": "Integracja z GitHub jest obecnie wyłączona. Ustaw właściwe zmienne środowiskowe i zrestartuj serwer, aby włączyć integrację.",
|
||||
"Connect GitLab": "Connect GitLab",
|
||||
"Enter the details for your GitLab instance.": "Enter the details for your GitLab instance.",
|
||||
"GitLab URL": "GitLab URL",
|
||||
"URL must start with https": "URL must start with https",
|
||||
"Client ID": "Client ID",
|
||||
"OAuth application ID": "OAuth application ID",
|
||||
"Client Secret": "Client Secret",
|
||||
"OAuth application secret": "OAuth application secret",
|
||||
"Connecting": "Connecting",
|
||||
"Choose which GitLab instance to connect to.": "Choose which GitLab instance to connect to.",
|
||||
"GitLab Cloud": "GitLab Cloud",
|
||||
"Connect to your account on gitlab.com": "Connect to your account on gitlab.com",
|
||||
"GitLab Cloud credentials are not configured": "GitLab Cloud credentials are not configured",
|
||||
"Self-managed": "Self-managed",
|
||||
"Connect to a custom GitLab installation": "Connect to a custom GitLab installation",
|
||||
"You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?": "You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?",
|
||||
"The GitLab account is already connected to this workspace.": "The GitLab account is already connected to this workspace.",
|
||||
"Something went wrong while authenticating your request. Please try again.": "Something went wrong while authenticating your request. Please try again.",
|
||||
"The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.": "The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.",
|
||||
"Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.": "Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.",
|
||||
"Disconnecting will prevent previewing links from GitLab in documents. Are you sure?": "Disconnecting will prevent previewing links from GitLab in documents. Are you sure?",
|
||||
"Google Analytics": "Google Analytics",
|
||||
"Add a Google Analytics 4 measurement ID to send document views and analytics from the workspace to your own Google Analytics account.": "Dodaj identyfikator pomiarowy Google Analytics 4, aby wysyłać wyświetlenia dokumentów i analizy z przestrzeni roboczej do własnego konta Google Analytics.",
|
||||
"Measurement ID": "Identyfikator pomiarowy",
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
"Collection permissions": "Permissões da coleção",
|
||||
"Share this collection": "Compartilhar esta coleção",
|
||||
"Import document": "Importar documento",
|
||||
"Uploading": "Enviando",
|
||||
"Sort in sidebar": "Ordenar na barra lateral",
|
||||
"A-Z sort": "Ordenar A-Z",
|
||||
"Z-A sort": "Ordenar Z-A",
|
||||
@@ -53,8 +54,9 @@
|
||||
"Development": "Desenvolvimento",
|
||||
"Open document": "Abrir documento",
|
||||
"New draft": "Novo rascunho",
|
||||
"New from template": "Novo a partir do modelo",
|
||||
"New nested document": "Novo documento aninhado",
|
||||
"Nested document": "Nested document",
|
||||
"Before": "Before",
|
||||
"After": "After",
|
||||
"Publish": "Publicar",
|
||||
"Published {{ documentName }}": "{{ documentName }} Publicado",
|
||||
"Publish document": "Publicar documento",
|
||||
@@ -91,9 +93,7 @@
|
||||
"Create template": "Criar modelo",
|
||||
"Open random document": "Abrir documento aleatório",
|
||||
"Search documents for \"{{searchQuery}}\"": "Pesquisar documentos por \"{{searchQuery}}\"",
|
||||
"Move to workspace": "Mover para espaço de trabalho",
|
||||
"Move": "Mover",
|
||||
"Move to collection": "Mover para coleção",
|
||||
"Move {{ documentType }}": "Mover {{ documentType }}",
|
||||
"Are you sure you want to archive this document?": "Tem certeza que deseja arquivar este documento?",
|
||||
"Document archived": "Documento arquivado",
|
||||
@@ -165,6 +165,15 @@
|
||||
"New workspace": "Novo espaço de trabalho",
|
||||
"Create a workspace": "Criar um espaço de trabalho",
|
||||
"Login to workspace": "Conectar-se ao espaço de trabalho",
|
||||
"Template deleted": "Template deleted",
|
||||
"Deleting": "Excluindo",
|
||||
"Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.": "Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.",
|
||||
"Move to workspace": "Mover para espaço de trabalho",
|
||||
"Template moved": "Template moved",
|
||||
"Couldn't move the template, try again?": "Couldn't move the template, try again?",
|
||||
"Move to collection": "Mover para coleção",
|
||||
"Move template": "Move template",
|
||||
"Print template": "Print template",
|
||||
"Invite people": "Convidar pessoas",
|
||||
"Invite to workspace": "Convidar ao espaço de trabalho",
|
||||
"Promote to {{ role }}": "Promover para {{ role }}",
|
||||
@@ -176,6 +185,7 @@
|
||||
"Debug": "Depurar",
|
||||
"Document": "Documento",
|
||||
"Documents": "Documentos",
|
||||
"Template": "Modelo",
|
||||
"Recently viewed": "Visualizado recentemente",
|
||||
"Revision": "Revisão",
|
||||
"Navigation": "Navegação",
|
||||
@@ -195,6 +205,7 @@
|
||||
"Collections are used to group documents and choose permissions": "Coleções são usadas para agrupar documentos e definir permissões",
|
||||
"Name": "Nome",
|
||||
"The default access for workspace members, you can share with more users or groups later.": "O acesso padrão para membros do espaço de trabalho, você pode compartilhar com mais usuários ou grupos posteriormente.",
|
||||
"Advanced options": "Advanced options",
|
||||
"Public document sharing": "Compartilhamento de documentos públicos",
|
||||
"Allow documents within this collection to be shared publicly on the internet.": "Permitir que documentos desta coleção sejam compartilhados publicamente na internet.",
|
||||
"Commenting": "Comentando",
|
||||
@@ -205,10 +216,10 @@
|
||||
"Create": "Criar",
|
||||
"Collection deleted": "Coleção excluída",
|
||||
"I’m sure – Delete": "Tenho certeza – Excluir",
|
||||
"Deleting": "Excluindo",
|
||||
"Are you sure about that? Deleting the <em>{{collectionName}}</em> collection is permanent and cannot be restored, however all published documents within will be moved to the trash.": "Você tem certeza disso? A exclusão da coleção <em>{{collectionName}}</em> é permanente e não pode ser restaurada, no entanto, todos os documentos publicados nela serão movidos para a lixeira.",
|
||||
"Also, <em>{{collectionName}}</em> is being used as the start view – deleting it will reset the start view to the Home page.": "Além disso, <em>{{collectionName}}</em> está sendo utilizada como visualização inicial – excluí-la irá redefinir a visualização inicial para a página inicial.",
|
||||
"Type a command or search": "Digite um comando ou pesquise",
|
||||
"New from template": "Novo a partir do modelo",
|
||||
"Choose a template": "Escolha um modelo",
|
||||
"Are you sure you want to permanently delete this entire comment thread?": "Tem certeza de que deseja excluir permanentemente todos os comentários associados a este tópico?",
|
||||
"Are you sure you want to permanently delete this comment?": "Tem certeza de que deseja excluir este comentário permanentemente?",
|
||||
@@ -227,12 +238,6 @@
|
||||
"Deleted Collection": "Excluir Coleção",
|
||||
"Untitled": "Sem título",
|
||||
"Unpin": "Desafixar",
|
||||
"Select a location to copy": "Selecione um local para copiar",
|
||||
"Document copied": "Documento copiado",
|
||||
"Couldn’t copy the document, try again?": "Não foi possível copiar o documento, tentar novamente?",
|
||||
"Include nested documents": "Incluir documentos aninhados",
|
||||
"Copy to <em>{{ location }}</em>": "Copiar para <em>{{ location }}</em>",
|
||||
"Copying": "Copiando",
|
||||
"Export started": "Exportação iniciada",
|
||||
"A link to your file will be sent through email soon": "Um link para o seu arquivo será enviado por e-mail em breve",
|
||||
"Preparing your download": "Preparando o seu download",
|
||||
@@ -242,13 +247,24 @@
|
||||
"Include child documents": "Incluir documentos filhos",
|
||||
"When selected, exporting the document <em>{{documentName}}</em> may take some time.": "Quando selecionado, exportar o documento <em>{{documentName}}</em> pode levar um tempo.",
|
||||
"You will receive an email when it's complete.": "Você receberá um e-mail quando estiver concluído.",
|
||||
"Select a location to copy": "Selecione um local para copiar",
|
||||
"Document copied": "Documento copiado",
|
||||
"Couldn’t copy the document, try again?": "Não foi possível copiar o documento, tentar novamente?",
|
||||
"Include nested documents": "Incluir documentos aninhados",
|
||||
"Copy to <em>{{ location }}</em>": "Copiar para <em>{{ location }}</em>",
|
||||
"Copying": "Copiando",
|
||||
"Search collections & documents": "Pesquisar coleções e documentos",
|
||||
"Search collections": "Search collections",
|
||||
"No results found": "Nenhum resultado encontrado",
|
||||
"Select a location to move": "Selecione um local para mover",
|
||||
"Document moved": "Documento movido",
|
||||
"Couldn’t move the document, try again?": "Não foi possível mover o documento, tentar novamente?",
|
||||
"Move to <em>{{ location }}</em>": "Mover para <em>{{ location }}</em>",
|
||||
"Couldn’t move the template, try again?": "Couldn’t move the template, try again?",
|
||||
"Document options": "Opções do documento",
|
||||
"New": "Novo",
|
||||
"Only visible to you": "Visível apenas para você",
|
||||
"Draft": "Rascunho",
|
||||
"Template": "Modelo",
|
||||
"You updated": "Você atualizou",
|
||||
"{{ userName }} updated": "{{ userName }} atualizou",
|
||||
"You deleted": "Você excluiu",
|
||||
@@ -278,7 +294,6 @@
|
||||
"Please enter a name for the emoji": "Por favor, insira um nome para o emoji",
|
||||
"Please select an image file": "Por favor, selecione um arquivo de imagem",
|
||||
"Emoji created successfully": "Emoji criado com sucesso",
|
||||
"Uploading": "Enviando",
|
||||
"Add emoji": "Adicionar emoji",
|
||||
"Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.": "Imagens quadradas com fundos transparentes funcionam melhor. Se sua imagem for grande demais, tentaremos redimensioná-la.",
|
||||
"Upload an image": "Enviar uma imagem",
|
||||
@@ -467,6 +482,7 @@
|
||||
"Collapse sidebar": "Minimizar barra lateral",
|
||||
"Archived collections": "Coleções arquivadas",
|
||||
"New doc": "Novo documento",
|
||||
"New nested document": "Novo documento aninhado",
|
||||
"Empty": "Vazio",
|
||||
"No collections": "Nenhuma coleção",
|
||||
"Collapse": "Recolher",
|
||||
@@ -493,6 +509,8 @@
|
||||
"Unstar document": "Desfavoritar documento",
|
||||
"Star document": "Favoritar documento",
|
||||
"Select a color": "Selecione uma cor",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Destaque algum texto e use o controle <1></1> para adicionar espaços reservados que podem ser preenchidos ao criar documentos a partir do modelo",
|
||||
"You’re editing a template": "Você esta editando um modelo",
|
||||
"Template created, go ahead and customize it": "Modelo criado, vá em frente e personalize-o",
|
||||
"Creating a template from <em>{{titleWithDefault}}</em> is a non-destructive action – we'll make a copy of the document and turn it into a template that can be used as a starting point for new documents.": "Criar um modelo a partir de <em>{{titleWithDefault}}</em> é uma ação não destrutiva — faremos uma cópia do documento e o transformaremos em um modelo que pode ser usado como ponto de partida para novos documentos.",
|
||||
"Enable other members to use the template immediately": "Permitir que outros membros usem o modelo imediatamente",
|
||||
@@ -632,6 +650,7 @@
|
||||
"Delete embed": "Deletar embed",
|
||||
"Formatting controls": "Controles de Formatação",
|
||||
"Distribute columns": "Distribuir colunas",
|
||||
"Wrap text": "Wrap text",
|
||||
"Delete Emoji": "Excluir Emoji",
|
||||
"Emoji deleted": "Emoji excluído",
|
||||
"I'm sure – Delete": "I'm sure – Delete",
|
||||
@@ -644,17 +663,19 @@
|
||||
"Unsubscribed from document": "Cancelada inscrição do documento",
|
||||
"Unsubscribed from collection": "Cancelada inscrição da coleção",
|
||||
"Account": "Conta",
|
||||
"API & Apps": "API & Aplicativos",
|
||||
"API & Access": "API & Access",
|
||||
"Details": "Detalhes",
|
||||
"Authentication": "Autenticação",
|
||||
"Security": "Segurança",
|
||||
"Features": "Funcionalidades",
|
||||
"AI": "AI",
|
||||
"API Keys": "Chaves API",
|
||||
"Applications": "Aplicações",
|
||||
"Shared Links": "Links compartilhados",
|
||||
"Import": "Importar",
|
||||
"Install": "Instalar",
|
||||
"Embeds": "Embeds",
|
||||
"Configure which embed providers are available in the editor.": "Configure which embed providers are available in the editor.",
|
||||
"Integrations": "Integrações",
|
||||
"Install": "Instalar",
|
||||
"Change name": "Renomear",
|
||||
"Change email": "Alterar e-mail",
|
||||
"Suspend user": "Suspender usuário",
|
||||
@@ -685,8 +706,8 @@
|
||||
"Headings you add to the document will appear here": "Os cabeçalhos que você adicionar ao documento aparecerão aqui",
|
||||
"Contents": "Conteúdo",
|
||||
"Table of contents": "Índice",
|
||||
"Template options": "Template options",
|
||||
"User options": "Opções do usuário",
|
||||
"template": "modelo",
|
||||
"document": "documento",
|
||||
"Export complete": "Exportação concluída",
|
||||
"Export failed": "Falha na exportação",
|
||||
@@ -812,23 +833,15 @@
|
||||
"Sorry, the last change could not be persisted – please reload the page": "Desculpe, a última alteração não pôde ser salva — por favor, recarregue a página",
|
||||
"{{ count }} days": "{{ count }} dia",
|
||||
"{{ count }} days_plural": "{{ count }} dias",
|
||||
"This template will be permanently deleted in <2></2> unless restored.": "Este modelo será excluído permanentemente em <2></2> a menos que seja restaurado.",
|
||||
"This document will be permanently deleted in <2></2> unless restored.": "Este documento será excluído permanentemente em <2></2>, a menos que seja restaurado.",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Destaque algum texto e use o controle <1></1> para adicionar espaços reservados que podem ser preenchidos ao criar documentos a partir do modelo",
|
||||
"You’re editing a template": "Você esta editando um modelo",
|
||||
"Deleted by {{userName}}": "Excluído por {{userName}}",
|
||||
"Observing {{ userName }}": "Observando {{ userName }}",
|
||||
"Backlinks": "Links de referência",
|
||||
"This document is large which may affect performance": "Este documento é grande o que pode afetar a performance",
|
||||
"Are you sure you want to delete the <em>{{ documentTitle }}</em> template?": "Tem certeza de que deseja excluir o modelo <em>{{ documentTitle }}</em>?",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history</em>.": "Você tem certeza disso? Excluir o documento <em>{{ documentTitle }}</em> excluirá todo o seu histórico</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>.": "Você tem certeza sobre isso? Excluir o documento <em>{{ documentTitle }}</em> excluirá todo o seu histórico e <em>{{ any }} documento aninhado</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>._plural": "Você tem certeza sobre isso? Excluir o documento <em>{{ documentTitle }}</em> excluirá todo o seu histórico e <em>{{ any }} documentos aninhados</em>.",
|
||||
"If you’d like the option of referencing or restoring the {{noun}} in the future, consider archiving it instead.": "Se você quiser a opção de fazer referência ou restaurar o {{noun}} no futuro, considere arquivá-lo em vez disso.",
|
||||
"Select a location to move": "Selecione um local para mover",
|
||||
"Document moved": "Documento movido",
|
||||
"Couldn’t move the document, try again?": "Não foi possível mover o documento, tentar novamente?",
|
||||
"Move to <em>{{ location }}</em>": "Mover para <em>{{ location }}</em>",
|
||||
"Couldn’t create the document, try again?": "Não foi possível criar o documento, deseja tentar novamente?",
|
||||
"Document permanently deleted": "Documento excluído permanentemente",
|
||||
"Are you sure you want to permanently delete the <em>{{ documentTitle }}</em> document? This action is immediate and cannot be undone.": "Tem certeza de que deseja apagar permanentemente o documento <em>{{ documentTitle }}</em> Esta ação é imediata e não pode ser desfeita.",
|
||||
@@ -885,7 +898,6 @@
|
||||
"Open this guide": "Abrir este guia",
|
||||
"Enter": "Enter",
|
||||
"Publish document and exit": "Publicar documento e sair",
|
||||
"Save document": "Salvar documento",
|
||||
"Cancel editing": "Cancelar edição",
|
||||
"Collaboration": "Colaboração",
|
||||
"Formatting": "Formatação",
|
||||
@@ -978,11 +990,14 @@
|
||||
"An error occurred": "Ocorreu um erro",
|
||||
"The OAuth client could not be found, please check the provided client ID": "O cliente OAuth não pôde ser encontrado, verifique o ID de cliente fornecido",
|
||||
"The OAuth client could not be loaded, please check the redirect URI is valid": "O cliente OAuth não pôde ser carregado, por favor, verifique se a URI de redirecionamento é válida",
|
||||
"The OAuth client could not be loaded, please check your workspace subdomain is correct": "The OAuth client could not be loaded, please check your workspace subdomain is correct",
|
||||
"Required OAuth parameters are missing": "Parâmetros OAuth obrigatórios estão faltando",
|
||||
"Authorize": "Autorizar",
|
||||
"{{ appName }} wants to access {{ teamName }}": "{{ appName }} quer acessar {{ teamName }}",
|
||||
"By <em>{{ developerName }}</em>": "Por <em>{{ developerName }}</em>",
|
||||
"{{ appName }} will be able to access your account and perform the following actions": "{{ appName }} será capaz de acessar sua conta e executar as seguintes ações",
|
||||
"You will be redirected to a local application after authorizing.": "You will be redirected to a local application after authorizing.",
|
||||
"You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.": "You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.",
|
||||
"read": "ler",
|
||||
"write": "escrever",
|
||||
"read and write": "leitura e escrita",
|
||||
@@ -1156,6 +1171,8 @@
|
||||
"Last accessed": "Último acessado",
|
||||
"Domain": "Domínio",
|
||||
"Views": "Visualizações",
|
||||
"Visibility": "Visibility",
|
||||
"Updated by": "Updated by",
|
||||
"All roles": "Todas as funções",
|
||||
"Admins": "Administradores",
|
||||
"Editors": "Editores",
|
||||
@@ -1188,15 +1205,26 @@
|
||||
"Your workspace will be accessible at": "Sua base de conhecimento estará acessível em",
|
||||
"Choose a subdomain to enable a login page just for your team.": "Escolha um subdomínio para habilitar uma página de login apenas para a sua equipe.",
|
||||
"This is the screen that workspace members will first see when they sign in.": "Esta é a tela que os membros do espaço de trabalho verão pela primeira vez quando realizarem login.",
|
||||
"Danger": "Perigo",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "Você pode excluir este espaço de trabalho incluindo coleções, documentos e usuários.",
|
||||
"Export data": "Exportar dados",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "Uma exportação completa pode levar algum tempo. Considere exportar um único documento ou coleção. Os dados são exportados em um arquivo zip com seus documentos no formato Markdown. Você pode sair desta página assim que a exportação for iniciada - se as notificações estiverem ativadas, enviaremos um link por e-mail para <em>{{ userEmail }}</em> quando ela estiver concluída.",
|
||||
"Recent exports": "Exportações recentes",
|
||||
"Manage optional and beta features. Changing these settings will affect the experience for all members of the workspace.": "Gerencie recursos opcionais e beta. A alteração dessas configurações afetará a experiência de todos os membros do espaço de trabalho.",
|
||||
"Separate editing": "Edição Separada",
|
||||
"When enabled documents have a separate editing mode by default instead of being always editable. This setting can be overridden by user preferences.": "Quando habilitado, os documentos possuem um modo de edição separado por padrão, ao invés de ser sempre editável. Essa configuração pode ser substituída pelas preferências do usuário.",
|
||||
"When enabled team members can add comments to documents.": "Quando ativado, os membros da equipe podem adicionar comentários aos documentos.",
|
||||
"Danger": "Perigo",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "Você pode excluir este espaço de trabalho incluindo coleções, documentos e usuários.",
|
||||
"Enabled": "Enabled",
|
||||
"Allow supported providers to be inserted as interactive embeds in documents.": "Allow supported providers to be inserted as interactive embeds in documents.",
|
||||
"Providers": "Providers",
|
||||
"Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.": "Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.",
|
||||
"All providers": "All providers",
|
||||
"Export data": "Exportar dados",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "Uma exportação completa pode levar algum tempo. Considere exportar um único documento ou coleção. Os dados são exportados em um arquivo zip com seus documentos no formato Markdown. Você pode sair desta página assim que a exportação for iniciada - se as notificações estiverem ativadas, enviaremos um link por e-mail para <em>{{ userEmail }}</em> quando ela estiver concluída.",
|
||||
"Recent exports": "Exportações recentes",
|
||||
"Manage AI and integration features for your workspace.": "Manage AI and integration features for your workspace.",
|
||||
"MCP server": "MCP server",
|
||||
"Allow members to connect to this workspace with MCP to read and write data.": "Allow members to connect to this workspace with MCP to read and write data.",
|
||||
"Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.": "Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.",
|
||||
"Copy URL": "Copy URL",
|
||||
"AI answers": "Respostas de IA",
|
||||
"Use AI to get direct answers to questions in search. This feature requires a paid license.": "Use AI to get direct answers to questions in search. This feature requires a paid license.",
|
||||
"Create a group": "Criar um grupo",
|
||||
"Could not load groups": "Não foi possível carregar os grupos",
|
||||
"New group": "Novo grupo",
|
||||
@@ -1288,8 +1316,6 @@
|
||||
"When enabled, viewers can see download options for documents": "Quando ativado, os visualizadores podem ver opções de download de documentos",
|
||||
"Users can delete account": "Os usuários podem excluir conta",
|
||||
"When enabled, users can delete their own account from the workspace": "Quando habilitado, os usuários podem excluir sua própria conta do espaço de trabalho",
|
||||
"Rich service embeds": "Incorporação de serviços",
|
||||
"Links to supported services are shown as rich embeds within your documents": "Links para serviços suportados são exibidos como incorporações ricas nos seus documentos",
|
||||
"Email address visibility": "Email address visibility",
|
||||
"Controls who can see user email addresses in the workspace": "Controls who can see user email addresses in the workspace",
|
||||
"Collection creation": "Criação de coleção",
|
||||
@@ -1300,9 +1326,10 @@
|
||||
"Sharing is currently disabled.": "O compartilhamento está desativado no momento.",
|
||||
"You can globally enable and disable public document sharing in the <em>security settings</em>.": "Você pode ativar e desativar globalmente o compartilhamento público de documentos nas <em>configurações de segurança</em>.",
|
||||
"Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.": "Os documentos que foram compartilhados estão listados abaixo. Qualquer pessoa que tenha o link público pode acessar uma versão somente leitura do documento até que o link seja revogado.",
|
||||
"You can create templates to help your team create consistent and accurate documentation.": "Você pode criar modelos para ajudar sua equipe a criar documentação consistente e precisa.",
|
||||
"Alphabetical": "Alfabética",
|
||||
"There are no templates just yet.": "Ainda não há modelos.",
|
||||
"A template must have content": "A template must have content",
|
||||
"Could not load templates": "Could not load templates",
|
||||
"Templates help your team create consistent and accurate documentation.": "Templates help your team create consistent and accurate documentation.",
|
||||
"No templates have been created yet": "No templates have been created yet",
|
||||
"{{ teamName }} is using {{ appName }} to share documents, please login to continue.": "{{ teamName }} Está usando {{ appName }} para compartilhar documentos, por favor, inicie a sessão para continuar.",
|
||||
"A confirmation code has been sent to your email address, please enter the code below to permanently destroy this workspace.": "Um código de confirmação foi enviado para seu endereço de e-mail, por favor insira o código abaixo para destruir permanentemente este espaço de trabalho.",
|
||||
"Confirmation code": "Código de confirmação",
|
||||
@@ -1363,7 +1390,6 @@
|
||||
"New Attribute": "New Attribute",
|
||||
"Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.": "Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.",
|
||||
"Custom domain": "Domínio personalizado",
|
||||
"AI answers": "Respostas de IA",
|
||||
"Use AI to directly answer searched questions using content in your workspace.": "Use IA para responder diretamente a perguntas pesquisadas usando conteúdo do seu espaço de trabalho.",
|
||||
"API access": "Acesso à API",
|
||||
"Allow members to create API keys for programmatic access": "Permitir que membros criem chaves de API para acesso programático",
|
||||
@@ -1413,6 +1439,27 @@
|
||||
"Enabled by {{integrationCreatedBy}}": "Habilitado por {{integrationCreatedBy}}",
|
||||
"Disconnecting will prevent previewing GitHub links from this organization in documents. Are you sure?": "Desconectar impedirá pré-visualizar links do GitHub desta organização em documentos. Tem certeza?",
|
||||
"The GitHub integration is currently disabled. Please set the associated environment variables and restart the server to enable the integration.": "A integração do GitHub está desativada no momento. Defina as variáveis de ambiente associadas e reinicie o servidor para permitir a integração.",
|
||||
"Connect GitLab": "Connect GitLab",
|
||||
"Enter the details for your GitLab instance.": "Enter the details for your GitLab instance.",
|
||||
"GitLab URL": "GitLab URL",
|
||||
"URL must start with https": "URL must start with https",
|
||||
"Client ID": "Client ID",
|
||||
"OAuth application ID": "OAuth application ID",
|
||||
"Client Secret": "Client Secret",
|
||||
"OAuth application secret": "OAuth application secret",
|
||||
"Connecting": "Connecting",
|
||||
"Choose which GitLab instance to connect to.": "Choose which GitLab instance to connect to.",
|
||||
"GitLab Cloud": "GitLab Cloud",
|
||||
"Connect to your account on gitlab.com": "Connect to your account on gitlab.com",
|
||||
"GitLab Cloud credentials are not configured": "GitLab Cloud credentials are not configured",
|
||||
"Self-managed": "Self-managed",
|
||||
"Connect to a custom GitLab installation": "Connect to a custom GitLab installation",
|
||||
"You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?": "You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?",
|
||||
"The GitLab account is already connected to this workspace.": "The GitLab account is already connected to this workspace.",
|
||||
"Something went wrong while authenticating your request. Please try again.": "Something went wrong while authenticating your request. Please try again.",
|
||||
"The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.": "The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.",
|
||||
"Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.": "Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.",
|
||||
"Disconnecting will prevent previewing links from GitLab in documents. Are you sure?": "Disconnecting will prevent previewing links from GitLab in documents. Are you sure?",
|
||||
"Google Analytics": "Google Analytics",
|
||||
"Add a Google Analytics 4 measurement ID to send document views and analytics from the workspace to your own Google Analytics account.": "Adicione um ID de métricas do Google Analytics 4 para enviar visualizações e estatisticas de documentos do espaço de trabalho para sua própria conta do Google Analytics.",
|
||||
"Measurement ID": "ID de Métricas",
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
"Collection permissions": "Permissões da coleção",
|
||||
"Share this collection": "Partilhe esta coleção",
|
||||
"Import document": "Importar documento",
|
||||
"Uploading": "A carregar",
|
||||
"Sort in sidebar": "Ordenar na barra lateral",
|
||||
"A-Z sort": "Ordenar A-Z",
|
||||
"Z-A sort": "Ordenar Z-A",
|
||||
@@ -53,8 +54,9 @@
|
||||
"Development": "Desenvolvimento",
|
||||
"Open document": "Abrir documento",
|
||||
"New draft": "Novo rascunho",
|
||||
"New from template": "Criar a partir do modelo",
|
||||
"New nested document": "Novo documento aninhado",
|
||||
"Nested document": "Nested document",
|
||||
"Before": "Before",
|
||||
"After": "After",
|
||||
"Publish": "Publicar",
|
||||
"Published {{ documentName }}": "Publicado {{ documentName }}",
|
||||
"Publish document": "Documento publicado",
|
||||
@@ -91,9 +93,7 @@
|
||||
"Create template": "Criar template",
|
||||
"Open random document": "Abrir documento aleatório",
|
||||
"Search documents for \"{{searchQuery}}\"": "Pesquisar documentos por \"{{searchQuery}}\"",
|
||||
"Move to workspace": "Mover para área de trabalho",
|
||||
"Move": "Mover",
|
||||
"Move to collection": "Mover para colecção",
|
||||
"Move {{ documentType }}": "Mover {{ documentType }}",
|
||||
"Are you sure you want to archive this document?": "Tem a certeza que quer arquivar este documento?",
|
||||
"Document archived": "Documento arquivado",
|
||||
@@ -165,6 +165,15 @@
|
||||
"New workspace": "Nova área de trabalho",
|
||||
"Create a workspace": "Criar área de trabalho",
|
||||
"Login to workspace": "Entrar em área de trabalho",
|
||||
"Template deleted": "Template deleted",
|
||||
"Deleting": "Excluindo",
|
||||
"Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.": "Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.",
|
||||
"Move to workspace": "Mover para área de trabalho",
|
||||
"Template moved": "Template moved",
|
||||
"Couldn't move the template, try again?": "Couldn't move the template, try again?",
|
||||
"Move to collection": "Mover para colecção",
|
||||
"Move template": "Move template",
|
||||
"Print template": "Print template",
|
||||
"Invite people": "Convidar pessoas",
|
||||
"Invite to workspace": "Convidar para área de trabalho",
|
||||
"Promote to {{ role }}": "Promover para {{ role }}",
|
||||
@@ -176,6 +185,7 @@
|
||||
"Debug": "Depurar",
|
||||
"Document": "Documento",
|
||||
"Documents": "Documentos",
|
||||
"Template": "Modelo",
|
||||
"Recently viewed": "Visto recentemente",
|
||||
"Revision": "Revisão",
|
||||
"Navigation": "Navegação",
|
||||
@@ -195,6 +205,7 @@
|
||||
"Collections are used to group documents and choose permissions": "Coleções são usadas para agrupar documentos e escolher permissões",
|
||||
"Name": "Nome",
|
||||
"The default access for workspace members, you can share with more users or groups later.": "O acesso por defeito para membros da área de trabalho, pode compartilhar com mais utilizadores ou grupos mais tarde.",
|
||||
"Advanced options": "Advanced options",
|
||||
"Public document sharing": "Partilha pública de documentos",
|
||||
"Allow documents within this collection to be shared publicly on the internet.": "Permitir que documentos na coleção sejam publicos na internet.",
|
||||
"Commenting": "A comentar",
|
||||
@@ -205,10 +216,10 @@
|
||||
"Create": "Criar",
|
||||
"Collection deleted": "Coleção eliminada",
|
||||
"I’m sure – Delete": "Tenho certeza — Eliminar",
|
||||
"Deleting": "Excluindo",
|
||||
"Are you sure about that? Deleting the <em>{{collectionName}}</em> collection is permanent and cannot be restored, however all published documents within will be moved to the trash.": "Tem certeza? Eliminar a coleção <em>{{collectionName}}</em> é permanente e não pode ser reposta, embora todos os documentos publicados serão movidos para o lixo.",
|
||||
"Also, <em>{{collectionName}}</em> is being used as the start view – deleting it will reset the start view to the Home page.": "Além disso, <em>{{collectionName}}</em> está a ser usada como vista inicial — Eliminar irá reiniciar a vista inicial da página inicial.",
|
||||
"Type a command or search": "Digite um comando ou pesquisa",
|
||||
"New from template": "Criar a partir do modelo",
|
||||
"Choose a template": "Escolha um modelo",
|
||||
"Are you sure you want to permanently delete this entire comment thread?": "Tem certeza de que deseja excluir permanentemente todo o tópico?",
|
||||
"Are you sure you want to permanently delete this comment?": "Tem a certeza de que pretende eliminar comentário?",
|
||||
@@ -227,12 +238,6 @@
|
||||
"Deleted Collection": "Coleção eliminada",
|
||||
"Untitled": "Sem título",
|
||||
"Unpin": "Tirar pino",
|
||||
"Select a location to copy": "Selecione um local para copiar",
|
||||
"Document copied": "Documento copiado",
|
||||
"Couldn’t copy the document, try again?": "Não foi possível copiar o documento, tentar novamente?",
|
||||
"Include nested documents": "Incluir sub-documentos",
|
||||
"Copy to <em>{{ location }}</em>": "Copiar para <em>{{ location }}</em>",
|
||||
"Copying": "Copiando",
|
||||
"Export started": "Exportação iniciada",
|
||||
"A link to your file will be sent through email soon": "A link to your file will be sent through email soon",
|
||||
"Preparing your download": "Preparing your download",
|
||||
@@ -242,13 +247,24 @@
|
||||
"Include child documents": "Include child documents",
|
||||
"When selected, exporting the document <em>{{documentName}}</em> may take some time.": "When selected, exporting the document <em>{{documentName}}</em> may take some time.",
|
||||
"You will receive an email when it's complete.": "Receberá um e-mail quando estiver completo.",
|
||||
"Select a location to copy": "Selecione um local para copiar",
|
||||
"Document copied": "Documento copiado",
|
||||
"Couldn’t copy the document, try again?": "Não foi possível copiar o documento, tentar novamente?",
|
||||
"Include nested documents": "Incluir sub-documentos",
|
||||
"Copy to <em>{{ location }}</em>": "Copiar para <em>{{ location }}</em>",
|
||||
"Copying": "Copiando",
|
||||
"Search collections & documents": "Procurar coleções e documentos",
|
||||
"Search collections": "Search collections",
|
||||
"No results found": "Nenhum resultado encontrado",
|
||||
"Select a location to move": "Selecione um local para mover",
|
||||
"Document moved": "Documento movido",
|
||||
"Couldn’t move the document, try again?": "Não foi possível mover o documento, tentar novamente?",
|
||||
"Move to <em>{{ location }}</em>": "Mover para <em>{{ location }}</em>",
|
||||
"Couldn’t move the template, try again?": "Couldn’t move the template, try again?",
|
||||
"Document options": "Opções do documento",
|
||||
"New": "Novo",
|
||||
"Only visible to you": "Apenas visível para ti",
|
||||
"Draft": "Rascunho",
|
||||
"Template": "Modelo",
|
||||
"You updated": "Atualizado por si",
|
||||
"{{ userName }} updated": "{{ userName }} atualizado",
|
||||
"You deleted": "Eliminado por si",
|
||||
@@ -278,7 +294,6 @@
|
||||
"Please enter a name for the emoji": "Por favor, insira um nome para o emoji",
|
||||
"Please select an image file": "Por favor selecione uma imagem",
|
||||
"Emoji created successfully": "Emoji criado com sucesso",
|
||||
"Uploading": "A carregar",
|
||||
"Add emoji": "Adicionar emoji",
|
||||
"Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.": "Imagens quadradas com fundos transparentes funcionam melhor. Se sua imagem for muito grande, tentaremos redimensioná-la.",
|
||||
"Upload an image": "Enviar uma imagem",
|
||||
@@ -467,6 +482,7 @@
|
||||
"Collapse sidebar": "Collapse sidebar",
|
||||
"Archived collections": "Archived collections",
|
||||
"New doc": "Novo doc",
|
||||
"New nested document": "Novo documento aninhado",
|
||||
"Empty": "Vazio",
|
||||
"No collections": "No collections",
|
||||
"Collapse": "Fechar",
|
||||
@@ -493,6 +509,8 @@
|
||||
"Unstar document": "Desmarcar documento",
|
||||
"Star document": "Documento favorito",
|
||||
"Select a color": "Escolha uma cor",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Selecione algum texto e use o controlo <1></1> para adicionar espaços reservados que podem ser preenchidos ao criar novos documentos",
|
||||
"You’re editing a template": "Está a alterar um modelo",
|
||||
"Template created, go ahead and customize it": "Modelo criado, já o pode personalizar",
|
||||
"Creating a template from <em>{{titleWithDefault}}</em> is a non-destructive action – we'll make a copy of the document and turn it into a template that can be used as a starting point for new documents.": "Criar um modelo de <em>{{titleWithDefault}}</em> é uma ação não destrutiva — será efetuada cópia do documento e será transformado em modelo que poderá ser usado como ponto de partida para novos documentos.",
|
||||
"Enable other members to use the template immediately": "Permitir que outros membros usem o modelo imediatamente",
|
||||
@@ -632,6 +650,7 @@
|
||||
"Delete embed": "Delete embed",
|
||||
"Formatting controls": "Formatting controls",
|
||||
"Distribute columns": "Distribute columns",
|
||||
"Wrap text": "Wrap text",
|
||||
"Delete Emoji": "Delete Emoji",
|
||||
"Emoji deleted": "Emoji deleted",
|
||||
"I'm sure – Delete": "I'm sure – Delete",
|
||||
@@ -644,17 +663,19 @@
|
||||
"Unsubscribed from document": "Desinscrever do documento",
|
||||
"Unsubscribed from collection": "Unsubscribed from collection",
|
||||
"Account": "Conta",
|
||||
"API & Apps": "API & Apps",
|
||||
"API & Access": "API & Access",
|
||||
"Details": "Detalhes",
|
||||
"Authentication": "Authentication",
|
||||
"Security": "Segurança",
|
||||
"Features": "Funcionalidades",
|
||||
"AI": "AI",
|
||||
"API Keys": "API Keys",
|
||||
"Applications": "Applications",
|
||||
"Shared Links": "Ligações partilhadas",
|
||||
"Import": "Importar",
|
||||
"Install": "Install",
|
||||
"Embeds": "Embeds",
|
||||
"Configure which embed providers are available in the editor.": "Configure which embed providers are available in the editor.",
|
||||
"Integrations": "Integrações",
|
||||
"Install": "Install",
|
||||
"Change name": "Alterar o nome",
|
||||
"Change email": "Change email",
|
||||
"Suspend user": "Suspender utilizador",
|
||||
@@ -685,8 +706,8 @@
|
||||
"Headings you add to the document will appear here": "Cabeçalhos que adicionar ao documento aparecerão aqui",
|
||||
"Contents": "Conteúdo",
|
||||
"Table of contents": "Índice de conteúdos",
|
||||
"Template options": "Template options",
|
||||
"User options": "Opções de utilizador",
|
||||
"template": "modelo",
|
||||
"document": "documento",
|
||||
"Export complete": "Export complete",
|
||||
"Export failed": "Export failed",
|
||||
@@ -812,23 +833,15 @@
|
||||
"Sorry, the last change could not be persisted – please reload the page": "Não foi possível manter a última alteração — recarregue a página",
|
||||
"{{ count }} days": "{{ count }} dia",
|
||||
"{{ count }} days_plural": "{{ count }} dias",
|
||||
"This template will be permanently deleted in <2></2> unless restored.": "Este modelo será permanentemente eliminado em <2></2>, se não for reposto.",
|
||||
"This document will be permanently deleted in <2></2> unless restored.": "Este documento será permanentemente eliminado em <2></2>, se não for reposto.",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Selecione algum texto e use o controlo <1></1> para adicionar espaços reservados que podem ser preenchidos ao criar novos documentos",
|
||||
"You’re editing a template": "Está a alterar um modelo",
|
||||
"Deleted by {{userName}}": "Eliminado por {{userName}}",
|
||||
"Observing {{ userName }}": "A ver {{ userName }}",
|
||||
"Backlinks": "Ligações ascendentes",
|
||||
"This document is large which may affect performance": "This document is large which may affect performance",
|
||||
"Are you sure you want to delete the <em>{{ documentTitle }}</em> template?": "Tem certeza que quer eliminar o template {{ documentTitle }}?",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history</em>.": "Tem certeza? Apagar o documento <em>{{ documentTitle }}</em> apagará todo o seu histórico</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>.": "Tem certeza? Apagar o documento <em>{{ documentTitle }}</em> apagará todo o seu histórico e </em>{{ any }} subdocumento</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>._plural": "Tem certeza? Apagar o documento <em>{{ documentTitle }}</em> apagará todo o seu histórico e </em>{{ any }} subdocumentos</em>.",
|
||||
"If you’d like the option of referencing or restoring the {{noun}} in the future, consider archiving it instead.": "Se pretender a opção de referenciar ou restaurar o {{noun}} no futuro, considere antes arquivá-lo.",
|
||||
"Select a location to move": "Selecione um local para mover",
|
||||
"Document moved": "Documento movido",
|
||||
"Couldn’t move the document, try again?": "Não foi possível mover o documento, tentar novamente?",
|
||||
"Move to <em>{{ location }}</em>": "Mover para <em>{{ location }}</em>",
|
||||
"Couldn’t create the document, try again?": "Não foi possível criar o documento, tentar novamente?",
|
||||
"Document permanently deleted": "Documento eliminado permanentemente",
|
||||
"Are you sure you want to permanently delete the <em>{{ documentTitle }}</em> document? This action is immediate and cannot be undone.": "Tem certeza de que quer eliminar permanentemente o documento <em>{{ documentTitle }}</em> ? Esta ação é imediata e não pode ser desfeita.",
|
||||
@@ -885,7 +898,6 @@
|
||||
"Open this guide": "Abrir este guia",
|
||||
"Enter": "Entrar",
|
||||
"Publish document and exit": "Publicar documento e sair",
|
||||
"Save document": "Guardar documento",
|
||||
"Cancel editing": "Cancelar edição",
|
||||
"Collaboration": "Colaboração",
|
||||
"Formatting": "Formatação",
|
||||
@@ -978,11 +990,14 @@
|
||||
"An error occurred": "An error occurred",
|
||||
"The OAuth client could not be found, please check the provided client ID": "The OAuth client could not be found, please check the provided client ID",
|
||||
"The OAuth client could not be loaded, please check the redirect URI is valid": "The OAuth client could not be loaded, please check the redirect URI is valid",
|
||||
"The OAuth client could not be loaded, please check your workspace subdomain is correct": "The OAuth client could not be loaded, please check your workspace subdomain is correct",
|
||||
"Required OAuth parameters are missing": "Required OAuth parameters are missing",
|
||||
"Authorize": "Authorize",
|
||||
"{{ appName }} wants to access {{ teamName }}": "{{ appName }} wants to access {{ teamName }}",
|
||||
"By <em>{{ developerName }}</em>": "By <em>{{ developerName }}</em>",
|
||||
"{{ appName }} will be able to access your account and perform the following actions": "{{ appName }} will be able to access your account and perform the following actions",
|
||||
"You will be redirected to a local application after authorizing.": "You will be redirected to a local application after authorizing.",
|
||||
"You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.": "You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.",
|
||||
"read": "read",
|
||||
"write": "write",
|
||||
"read and write": "read and write",
|
||||
@@ -1156,6 +1171,8 @@
|
||||
"Last accessed": "Acessado pela última vez",
|
||||
"Domain": "Domínio",
|
||||
"Views": "Visualizações",
|
||||
"Visibility": "Visibility",
|
||||
"Updated by": "Updated by",
|
||||
"All roles": "Todos os papéis",
|
||||
"Admins": "Administradores",
|
||||
"Editors": "Editores",
|
||||
@@ -1188,15 +1205,26 @@
|
||||
"Your workspace will be accessible at": "Área de trabalho ficará acessível em",
|
||||
"Choose a subdomain to enable a login page just for your team.": "Escolha um subdomínio para habilitar uma página de login apenas para a sua equipa.",
|
||||
"This is the screen that workspace members will first see when they sign in.": "Este é o painel que os membros da área de trabalho verão primeiro quando entram.",
|
||||
"Danger": "Perigo",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "You can delete this entire workspace including collections, documents, and users.",
|
||||
"Export data": "Exportar dados",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.",
|
||||
"Recent exports": "Exportações recentes",
|
||||
"Manage optional and beta features. Changing these settings will affect the experience for all members of the workspace.": "Gerir recursos opcionais e funcionalidades beta. Alterar estas configurações afetará a experiência de todos os membros da área de trabalho.",
|
||||
"Separate editing": "Alteração separada",
|
||||
"When enabled documents have a separate editing mode by default instead of being always editable. This setting can be overridden by user preferences.": "Quando documentos ativos possuem um modo de edição separado por defeito em vez de ser sempre editável. Esta configuração pode ser sobreposta pelas preferências do utilizador.",
|
||||
"When enabled team members can add comments to documents.": "Quando ativo, os membros da equipa podem adicionar comentários a documentos.",
|
||||
"Danger": "Perigo",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "You can delete this entire workspace including collections, documents, and users.",
|
||||
"Enabled": "Enabled",
|
||||
"Allow supported providers to be inserted as interactive embeds in documents.": "Allow supported providers to be inserted as interactive embeds in documents.",
|
||||
"Providers": "Providers",
|
||||
"Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.": "Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.",
|
||||
"All providers": "All providers",
|
||||
"Export data": "Exportar dados",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.",
|
||||
"Recent exports": "Exportações recentes",
|
||||
"Manage AI and integration features for your workspace.": "Manage AI and integration features for your workspace.",
|
||||
"MCP server": "MCP server",
|
||||
"Allow members to connect to this workspace with MCP to read and write data.": "Allow members to connect to this workspace with MCP to read and write data.",
|
||||
"Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.": "Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.",
|
||||
"Copy URL": "Copy URL",
|
||||
"AI answers": "AI answers",
|
||||
"Use AI to get direct answers to questions in search. This feature requires a paid license.": "Use AI to get direct answers to questions in search. This feature requires a paid license.",
|
||||
"Create a group": "Criar grupo",
|
||||
"Could not load groups": "Could not load groups",
|
||||
"New group": "Novo grupo",
|
||||
@@ -1288,8 +1316,6 @@
|
||||
"When enabled, viewers can see download options for documents": "Quando ativo, leitores podem ver e descarregar opções para documentos",
|
||||
"Users can delete account": "Utilizador podem eliminar conta",
|
||||
"When enabled, users can delete their own account from the workspace": "Quando ativo, utilizadores podem eliminar a sua própria conta da área de trabalho",
|
||||
"Rich service embeds": "Incorporação de serviços enriquecidos",
|
||||
"Links to supported services are shown as rich embeds within your documents": "Ligações para serviços suportados são vistos como serviços enriquecidos nos documentos",
|
||||
"Email address visibility": "Email address visibility",
|
||||
"Controls who can see user email addresses in the workspace": "Controls who can see user email addresses in the workspace",
|
||||
"Collection creation": "Criação da coleção",
|
||||
@@ -1300,9 +1326,10 @@
|
||||
"Sharing is currently disabled.": "Partilha atualmente inativa",
|
||||
"You can globally enable and disable public document sharing in the <em>security settings</em>.": "Pode ativar e desativar globalmente a partilha pública de documentos nas <em>configurações de segurança</em>.",
|
||||
"Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.": "Documentos partilhados estão listados abaixo. Qualquer um que tenha a ligação pública pode aceder a uma versão apenas de leitura do documento até que a ligação seja revogada.",
|
||||
"You can create templates to help your team create consistent and accurate documentation.": "Pode criar modelos para ajudar a sua equipa a criar documentação consistente e precisa.",
|
||||
"Alphabetical": "Alfabético",
|
||||
"There are no templates just yet.": "Ainda não existem modelos.",
|
||||
"A template must have content": "A template must have content",
|
||||
"Could not load templates": "Could not load templates",
|
||||
"Templates help your team create consistent and accurate documentation.": "Templates help your team create consistent and accurate documentation.",
|
||||
"No templates have been created yet": "No templates have been created yet",
|
||||
"{{ teamName }} is using {{ appName }} to share documents, please login to continue.": "{{ teamName }} está a usar {{ appName }} para partilhar documentos, entre para continuar.",
|
||||
"A confirmation code has been sent to your email address, please enter the code below to permanently destroy this workspace.": "Um código de confirmação foi enviado para o seu endereço de e-mail, por favor introduza o código abaixo para eliminar permanentemente a área de trabalho.",
|
||||
"Confirmation code": "Código de confirmação",
|
||||
@@ -1363,7 +1390,6 @@
|
||||
"New Attribute": "New Attribute",
|
||||
"Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.": "Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.",
|
||||
"Custom domain": "Custom domain",
|
||||
"AI answers": "AI answers",
|
||||
"Use AI to directly answer searched questions using content in your workspace.": "Use AI to directly answer searched questions using content in your workspace.",
|
||||
"API access": "API access",
|
||||
"Allow members to create API keys for programmatic access": "Allow members to create API keys for programmatic access",
|
||||
@@ -1413,6 +1439,27 @@
|
||||
"Enabled by {{integrationCreatedBy}}": "Habilitado por {{integrationCreatedBy}}",
|
||||
"Disconnecting will prevent previewing GitHub links from this organization in documents. Are you sure?": "Desligar impedirá pré-visualizar ligações do GitHub desta organização em documentos. Tem a certeza?",
|
||||
"The GitHub integration is currently disabled. Please set the associated environment variables and restart the server to enable the integration.": "A integração do GitHub está atualmente inativa. Defina as variáveis de ambiente associadas e reinicie o servidor para permitir a integração.",
|
||||
"Connect GitLab": "Connect GitLab",
|
||||
"Enter the details for your GitLab instance.": "Enter the details for your GitLab instance.",
|
||||
"GitLab URL": "GitLab URL",
|
||||
"URL must start with https": "URL must start with https",
|
||||
"Client ID": "Client ID",
|
||||
"OAuth application ID": "OAuth application ID",
|
||||
"Client Secret": "Client Secret",
|
||||
"OAuth application secret": "OAuth application secret",
|
||||
"Connecting": "Connecting",
|
||||
"Choose which GitLab instance to connect to.": "Choose which GitLab instance to connect to.",
|
||||
"GitLab Cloud": "GitLab Cloud",
|
||||
"Connect to your account on gitlab.com": "Connect to your account on gitlab.com",
|
||||
"GitLab Cloud credentials are not configured": "GitLab Cloud credentials are not configured",
|
||||
"Self-managed": "Self-managed",
|
||||
"Connect to a custom GitLab installation": "Connect to a custom GitLab installation",
|
||||
"You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?": "You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?",
|
||||
"The GitLab account is already connected to this workspace.": "The GitLab account is already connected to this workspace.",
|
||||
"Something went wrong while authenticating your request. Please try again.": "Something went wrong while authenticating your request. Please try again.",
|
||||
"The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.": "The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.",
|
||||
"Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.": "Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.",
|
||||
"Disconnecting will prevent previewing links from GitLab in documents. Are you sure?": "Disconnecting will prevent previewing links from GitLab in documents. Are you sure?",
|
||||
"Google Analytics": "Google Analytics",
|
||||
"Add a Google Analytics 4 measurement ID to send document views and analytics from the workspace to your own Google Analytics account.": "Adicione um ID de medição do Google Analytics 4 para enviar as visualizações e análises do documento da área de trabalho para a sua conta do Google Analytics.",
|
||||
"Measurement ID": "ID de Medição",
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
"Collection permissions": "Collection permissions",
|
||||
"Share this collection": "Share this collection",
|
||||
"Import document": "Import document",
|
||||
"Uploading": "Uploading",
|
||||
"Sort in sidebar": "Sort in sidebar",
|
||||
"A-Z sort": "A-Z sort",
|
||||
"Z-A sort": "Z-A sort",
|
||||
@@ -53,8 +54,9 @@
|
||||
"Development": "Development",
|
||||
"Open document": "Open document",
|
||||
"New draft": "New draft",
|
||||
"New from template": "New from template",
|
||||
"New nested document": "New nested document",
|
||||
"Nested document": "Nested document",
|
||||
"Before": "Before",
|
||||
"After": "After",
|
||||
"Publish": "Publish",
|
||||
"Published {{ documentName }}": "Published {{ documentName }}",
|
||||
"Publish document": "Publish document",
|
||||
@@ -91,9 +93,7 @@
|
||||
"Create template": "Create template",
|
||||
"Open random document": "Open random document",
|
||||
"Search documents for \"{{searchQuery}}\"": "Search documents for \"{{searchQuery}}\"",
|
||||
"Move to workspace": "Move to workspace",
|
||||
"Move": "Move",
|
||||
"Move to collection": "Move to collection",
|
||||
"Move {{ documentType }}": "Move {{ documentType }}",
|
||||
"Are you sure you want to archive this document?": "Ești sigur că vrei să arhivezi acest document?",
|
||||
"Document archived": "Document arhivat",
|
||||
@@ -165,6 +165,15 @@
|
||||
"New workspace": "New workspace",
|
||||
"Create a workspace": "Create a workspace",
|
||||
"Login to workspace": "Login to workspace",
|
||||
"Template deleted": "Template deleted",
|
||||
"Deleting": "Deleting",
|
||||
"Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.": "Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.",
|
||||
"Move to workspace": "Move to workspace",
|
||||
"Template moved": "Template moved",
|
||||
"Couldn't move the template, try again?": "Couldn't move the template, try again?",
|
||||
"Move to collection": "Move to collection",
|
||||
"Move template": "Move template",
|
||||
"Print template": "Print template",
|
||||
"Invite people": "Invite people",
|
||||
"Invite to workspace": "Invite to workspace",
|
||||
"Promote to {{ role }}": "Promote to {{ role }}",
|
||||
@@ -176,6 +185,7 @@
|
||||
"Debug": "Debug",
|
||||
"Document": "Document",
|
||||
"Documents": "Documents",
|
||||
"Template": "Template",
|
||||
"Recently viewed": "Recently viewed",
|
||||
"Revision": "Revision",
|
||||
"Navigation": "Navigation",
|
||||
@@ -195,6 +205,7 @@
|
||||
"Collections are used to group documents and choose permissions": "Collections are used to group documents and choose permissions",
|
||||
"Name": "Name",
|
||||
"The default access for workspace members, you can share with more users or groups later.": "The default access for workspace members, you can share with more users or groups later.",
|
||||
"Advanced options": "Advanced options",
|
||||
"Public document sharing": "Public document sharing",
|
||||
"Allow documents within this collection to be shared publicly on the internet.": "Allow documents within this collection to be shared publicly on the internet.",
|
||||
"Commenting": "Commenting",
|
||||
@@ -205,10 +216,10 @@
|
||||
"Create": "Create",
|
||||
"Collection deleted": "Collection deleted",
|
||||
"I’m sure – Delete": "I’m sure – Delete",
|
||||
"Deleting": "Deleting",
|
||||
"Are you sure about that? Deleting the <em>{{collectionName}}</em> collection is permanent and cannot be restored, however all published documents within will be moved to the trash.": "Are you sure about that? Deleting the <em>{{collectionName}}</em> collection is permanent and cannot be restored, however all published documents within will be moved to the trash.",
|
||||
"Also, <em>{{collectionName}}</em> is being used as the start view – deleting it will reset the start view to the Home page.": "Also, <em>{{collectionName}}</em> is being used as the start view – deleting it will reset the start view to the Home page.",
|
||||
"Type a command or search": "Type a command or search",
|
||||
"New from template": "New from template",
|
||||
"Choose a template": "Choose a template",
|
||||
"Are you sure you want to permanently delete this entire comment thread?": "Are you sure you want to permanently delete this entire comment thread?",
|
||||
"Are you sure you want to permanently delete this comment?": "Are you sure you want to permanently delete this comment?",
|
||||
@@ -227,12 +238,6 @@
|
||||
"Deleted Collection": "Deleted Collection",
|
||||
"Untitled": "Untitled",
|
||||
"Unpin": "Unpin",
|
||||
"Select a location to copy": "Select a location to copy",
|
||||
"Document copied": "Document copied",
|
||||
"Couldn’t copy the document, try again?": "Couldn’t copy the document, try again?",
|
||||
"Include nested documents": "Include nested documents",
|
||||
"Copy to <em>{{ location }}</em>": "Copy to <em>{{ location }}</em>",
|
||||
"Copying": "Copying",
|
||||
"Export started": "Export started",
|
||||
"A link to your file will be sent through email soon": "A link to your file will be sent through email soon",
|
||||
"Preparing your download": "Preparing your download",
|
||||
@@ -242,13 +247,24 @@
|
||||
"Include child documents": "Include child documents",
|
||||
"When selected, exporting the document <em>{{documentName}}</em> may take some time.": "When selected, exporting the document <em>{{documentName}}</em> may take some time.",
|
||||
"You will receive an email when it's complete.": "You will receive an email when it's complete.",
|
||||
"Select a location to copy": "Select a location to copy",
|
||||
"Document copied": "Document copied",
|
||||
"Couldn’t copy the document, try again?": "Couldn’t copy the document, try again?",
|
||||
"Include nested documents": "Include nested documents",
|
||||
"Copy to <em>{{ location }}</em>": "Copy to <em>{{ location }}</em>",
|
||||
"Copying": "Copying",
|
||||
"Search collections & documents": "Search collections & documents",
|
||||
"Search collections": "Search collections",
|
||||
"No results found": "No results found",
|
||||
"Select a location to move": "Select a location to move",
|
||||
"Document moved": "Document moved",
|
||||
"Couldn’t move the document, try again?": "Couldn’t move the document, try again?",
|
||||
"Move to <em>{{ location }}</em>": "Move to <em>{{ location }}</em>",
|
||||
"Couldn’t move the template, try again?": "Couldn’t move the template, try again?",
|
||||
"Document options": "Document options",
|
||||
"New": "New",
|
||||
"Only visible to you": "Only visible to you",
|
||||
"Draft": "Draft",
|
||||
"Template": "Template",
|
||||
"You updated": "You updated",
|
||||
"{{ userName }} updated": "{{ userName }} updated",
|
||||
"You deleted": "You deleted",
|
||||
@@ -278,7 +294,6 @@
|
||||
"Please enter a name for the emoji": "Please enter a name for the emoji",
|
||||
"Please select an image file": "Please select an image file",
|
||||
"Emoji created successfully": "Emoji created successfully",
|
||||
"Uploading": "Uploading",
|
||||
"Add emoji": "Add emoji",
|
||||
"Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.": "Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.",
|
||||
"Upload an image": "Upload an image",
|
||||
@@ -467,6 +482,7 @@
|
||||
"Collapse sidebar": "Collapse sidebar",
|
||||
"Archived collections": "Archived collections",
|
||||
"New doc": "New doc",
|
||||
"New nested document": "New nested document",
|
||||
"Empty": "Empty",
|
||||
"No collections": "No collections",
|
||||
"Collapse": "Collapse",
|
||||
@@ -493,6 +509,8 @@
|
||||
"Unstar document": "Unstar document",
|
||||
"Star document": "Star document",
|
||||
"Select a color": "Select a color",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents",
|
||||
"You’re editing a template": "You’re editing a template",
|
||||
"Template created, go ahead and customize it": "Template created, go ahead and customize it",
|
||||
"Creating a template from <em>{{titleWithDefault}}</em> is a non-destructive action – we'll make a copy of the document and turn it into a template that can be used as a starting point for new documents.": "Creating a template from <em>{{titleWithDefault}}</em> is a non-destructive action – we'll make a copy of the document and turn it into a template that can be used as a starting point for new documents.",
|
||||
"Enable other members to use the template immediately": "Enable other members to use the template immediately",
|
||||
@@ -632,6 +650,7 @@
|
||||
"Delete embed": "Delete embed",
|
||||
"Formatting controls": "Formatting controls",
|
||||
"Distribute columns": "Distribute columns",
|
||||
"Wrap text": "Wrap text",
|
||||
"Delete Emoji": "Delete Emoji",
|
||||
"Emoji deleted": "Emoji deleted",
|
||||
"I'm sure – Delete": "I'm sure – Delete",
|
||||
@@ -644,17 +663,19 @@
|
||||
"Unsubscribed from document": "Unsubscribed from document",
|
||||
"Unsubscribed from collection": "Unsubscribed from collection",
|
||||
"Account": "Account",
|
||||
"API & Apps": "API & Apps",
|
||||
"API & Access": "API & Access",
|
||||
"Details": "Details",
|
||||
"Authentication": "Authentication",
|
||||
"Security": "Security",
|
||||
"Features": "Features",
|
||||
"AI": "AI",
|
||||
"API Keys": "API Keys",
|
||||
"Applications": "Applications",
|
||||
"Shared Links": "Shared Links",
|
||||
"Import": "Import",
|
||||
"Install": "Install",
|
||||
"Embeds": "Embeds",
|
||||
"Configure which embed providers are available in the editor.": "Configure which embed providers are available in the editor.",
|
||||
"Integrations": "Integrations",
|
||||
"Install": "Install",
|
||||
"Change name": "Change name",
|
||||
"Change email": "Change email",
|
||||
"Suspend user": "Suspend user",
|
||||
@@ -685,8 +706,8 @@
|
||||
"Headings you add to the document will appear here": "Headings you add to the document will appear here",
|
||||
"Contents": "Contents",
|
||||
"Table of contents": "Table of contents",
|
||||
"Template options": "Template options",
|
||||
"User options": "User options",
|
||||
"template": "template",
|
||||
"document": "document",
|
||||
"Export complete": "Export complete",
|
||||
"Export failed": "Export failed",
|
||||
@@ -812,23 +833,15 @@
|
||||
"Sorry, the last change could not be persisted – please reload the page": "Sorry, the last change could not be persisted – please reload the page",
|
||||
"{{ count }} days": "{{ count }} day",
|
||||
"{{ count }} days_plural": "{{ count }} days",
|
||||
"This template will be permanently deleted in <2></2> unless restored.": "This template will be permanently deleted in <2></2> unless restored.",
|
||||
"This document will be permanently deleted in <2></2> unless restored.": "This document will be permanently deleted in <2></2> unless restored.",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents",
|
||||
"You’re editing a template": "You’re editing a template",
|
||||
"Deleted by {{userName}}": "Deleted by {{userName}}",
|
||||
"Observing {{ userName }}": "Observing {{ userName }}",
|
||||
"Backlinks": "Backlinks",
|
||||
"This document is large which may affect performance": "This document is large which may affect performance",
|
||||
"Are you sure you want to delete the <em>{{ documentTitle }}</em> template?": "Are you sure you want to delete the <em>{{ documentTitle }}</em> template?",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history</em>.": "Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>.": "Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>._plural": "Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested documents</em>.",
|
||||
"If you’d like the option of referencing or restoring the {{noun}} in the future, consider archiving it instead.": "If you’d like the option of referencing or restoring the {{noun}} in the future, consider archiving it instead.",
|
||||
"Select a location to move": "Select a location to move",
|
||||
"Document moved": "Document moved",
|
||||
"Couldn’t move the document, try again?": "Couldn’t move the document, try again?",
|
||||
"Move to <em>{{ location }}</em>": "Move to <em>{{ location }}</em>",
|
||||
"Couldn’t create the document, try again?": "Couldn’t create the document, try again?",
|
||||
"Document permanently deleted": "Document permanently deleted",
|
||||
"Are you sure you want to permanently delete the <em>{{ documentTitle }}</em> document? This action is immediate and cannot be undone.": "Are you sure you want to permanently delete the <em>{{ documentTitle }}</em> document? This action is immediate and cannot be undone.",
|
||||
@@ -885,7 +898,6 @@
|
||||
"Open this guide": "Open this guide",
|
||||
"Enter": "Enter",
|
||||
"Publish document and exit": "Publish document and exit",
|
||||
"Save document": "Save document",
|
||||
"Cancel editing": "Cancel editing",
|
||||
"Collaboration": "Collaboration",
|
||||
"Formatting": "Formatting",
|
||||
@@ -978,11 +990,14 @@
|
||||
"An error occurred": "An error occurred",
|
||||
"The OAuth client could not be found, please check the provided client ID": "The OAuth client could not be found, please check the provided client ID",
|
||||
"The OAuth client could not be loaded, please check the redirect URI is valid": "The OAuth client could not be loaded, please check the redirect URI is valid",
|
||||
"The OAuth client could not be loaded, please check your workspace subdomain is correct": "The OAuth client could not be loaded, please check your workspace subdomain is correct",
|
||||
"Required OAuth parameters are missing": "Required OAuth parameters are missing",
|
||||
"Authorize": "Authorize",
|
||||
"{{ appName }} wants to access {{ teamName }}": "{{ appName }} wants to access {{ teamName }}",
|
||||
"By <em>{{ developerName }}</em>": "By <em>{{ developerName }}</em>",
|
||||
"{{ appName }} will be able to access your account and perform the following actions": "{{ appName }} will be able to access your account and perform the following actions",
|
||||
"You will be redirected to a local application after authorizing.": "You will be redirected to a local application after authorizing.",
|
||||
"You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.": "You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.",
|
||||
"read": "read",
|
||||
"write": "write",
|
||||
"read and write": "read and write",
|
||||
@@ -1156,6 +1171,8 @@
|
||||
"Last accessed": "Last accessed",
|
||||
"Domain": "Domain",
|
||||
"Views": "Views",
|
||||
"Visibility": "Visibility",
|
||||
"Updated by": "Updated by",
|
||||
"All roles": "All roles",
|
||||
"Admins": "Admins",
|
||||
"Editors": "Editors",
|
||||
@@ -1188,15 +1205,26 @@
|
||||
"Your workspace will be accessible at": "Your workspace will be accessible at",
|
||||
"Choose a subdomain to enable a login page just for your team.": "Choose a subdomain to enable a login page just for your team.",
|
||||
"This is the screen that workspace members will first see when they sign in.": "This is the screen that workspace members will first see when they sign in.",
|
||||
"Danger": "Danger",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "You can delete this entire workspace including collections, documents, and users.",
|
||||
"Export data": "Export data",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.",
|
||||
"Recent exports": "Recent exports",
|
||||
"Manage optional and beta features. Changing these settings will affect the experience for all members of the workspace.": "Manage optional and beta features. Changing these settings will affect the experience for all members of the workspace.",
|
||||
"Separate editing": "Separate editing",
|
||||
"When enabled documents have a separate editing mode by default instead of being always editable. This setting can be overridden by user preferences.": "When enabled documents have a separate editing mode by default instead of being always editable. This setting can be overridden by user preferences.",
|
||||
"When enabled team members can add comments to documents.": "When enabled team members can add comments to documents.",
|
||||
"Danger": "Danger",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "You can delete this entire workspace including collections, documents, and users.",
|
||||
"Enabled": "Enabled",
|
||||
"Allow supported providers to be inserted as interactive embeds in documents.": "Allow supported providers to be inserted as interactive embeds in documents.",
|
||||
"Providers": "Providers",
|
||||
"Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.": "Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.",
|
||||
"All providers": "All providers",
|
||||
"Export data": "Export data",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.",
|
||||
"Recent exports": "Recent exports",
|
||||
"Manage AI and integration features for your workspace.": "Manage AI and integration features for your workspace.",
|
||||
"MCP server": "MCP server",
|
||||
"Allow members to connect to this workspace with MCP to read and write data.": "Allow members to connect to this workspace with MCP to read and write data.",
|
||||
"Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.": "Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.",
|
||||
"Copy URL": "Copy URL",
|
||||
"AI answers": "AI answers",
|
||||
"Use AI to get direct answers to questions in search. This feature requires a paid license.": "Use AI to get direct answers to questions in search. This feature requires a paid license.",
|
||||
"Create a group": "Create a group",
|
||||
"Could not load groups": "Could not load groups",
|
||||
"New group": "New group",
|
||||
@@ -1288,8 +1316,6 @@
|
||||
"When enabled, viewers can see download options for documents": "When enabled, viewers can see download options for documents",
|
||||
"Users can delete account": "Users can delete account",
|
||||
"When enabled, users can delete their own account from the workspace": "When enabled, users can delete their own account from the workspace",
|
||||
"Rich service embeds": "Rich service embeds",
|
||||
"Links to supported services are shown as rich embeds within your documents": "Links to supported services are shown as rich embeds within your documents",
|
||||
"Email address visibility": "Email address visibility",
|
||||
"Controls who can see user email addresses in the workspace": "Controls who can see user email addresses in the workspace",
|
||||
"Collection creation": "Collection creation",
|
||||
@@ -1300,9 +1326,10 @@
|
||||
"Sharing is currently disabled.": "Sharing is currently disabled.",
|
||||
"You can globally enable and disable public document sharing in the <em>security settings</em>.": "You can globally enable and disable public document sharing in the <em>security settings</em>.",
|
||||
"Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.": "Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.",
|
||||
"You can create templates to help your team create consistent and accurate documentation.": "You can create templates to help your team create consistent and accurate documentation.",
|
||||
"Alphabetical": "Alphabetical",
|
||||
"There are no templates just yet.": "There are no templates just yet.",
|
||||
"A template must have content": "A template must have content",
|
||||
"Could not load templates": "Could not load templates",
|
||||
"Templates help your team create consistent and accurate documentation.": "Templates help your team create consistent and accurate documentation.",
|
||||
"No templates have been created yet": "No templates have been created yet",
|
||||
"{{ teamName }} is using {{ appName }} to share documents, please login to continue.": "{{ teamName }} is using {{ appName }} to share documents, please login to continue.",
|
||||
"A confirmation code has been sent to your email address, please enter the code below to permanently destroy this workspace.": "A confirmation code has been sent to your email address, please enter the code below to permanently destroy this workspace.",
|
||||
"Confirmation code": "Confirmation code",
|
||||
@@ -1363,7 +1390,6 @@
|
||||
"New Attribute": "New Attribute",
|
||||
"Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.": "Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.",
|
||||
"Custom domain": "Custom domain",
|
||||
"AI answers": "AI answers",
|
||||
"Use AI to directly answer searched questions using content in your workspace.": "Use AI to directly answer searched questions using content in your workspace.",
|
||||
"API access": "API access",
|
||||
"Allow members to create API keys for programmatic access": "Allow members to create API keys for programmatic access",
|
||||
@@ -1413,6 +1439,27 @@
|
||||
"Enabled by {{integrationCreatedBy}}": "Enabled by {{integrationCreatedBy}}",
|
||||
"Disconnecting will prevent previewing GitHub links from this organization in documents. Are you sure?": "Disconnecting will prevent previewing GitHub links from this organization in documents. Are you sure?",
|
||||
"The GitHub integration is currently disabled. Please set the associated environment variables and restart the server to enable the integration.": "The GitHub integration is currently disabled. Please set the associated environment variables and restart the server to enable the integration.",
|
||||
"Connect GitLab": "Connect GitLab",
|
||||
"Enter the details for your GitLab instance.": "Enter the details for your GitLab instance.",
|
||||
"GitLab URL": "GitLab URL",
|
||||
"URL must start with https": "URL must start with https",
|
||||
"Client ID": "Client ID",
|
||||
"OAuth application ID": "OAuth application ID",
|
||||
"Client Secret": "Client Secret",
|
||||
"OAuth application secret": "OAuth application secret",
|
||||
"Connecting": "Connecting",
|
||||
"Choose which GitLab instance to connect to.": "Choose which GitLab instance to connect to.",
|
||||
"GitLab Cloud": "GitLab Cloud",
|
||||
"Connect to your account on gitlab.com": "Connect to your account on gitlab.com",
|
||||
"GitLab Cloud credentials are not configured": "GitLab Cloud credentials are not configured",
|
||||
"Self-managed": "Self-managed",
|
||||
"Connect to a custom GitLab installation": "Connect to a custom GitLab installation",
|
||||
"You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?": "You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?",
|
||||
"The GitLab account is already connected to this workspace.": "The GitLab account is already connected to this workspace.",
|
||||
"Something went wrong while authenticating your request. Please try again.": "Something went wrong while authenticating your request. Please try again.",
|
||||
"The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.": "The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.",
|
||||
"Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.": "Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.",
|
||||
"Disconnecting will prevent previewing links from GitLab in documents. Are you sure?": "Disconnecting will prevent previewing links from GitLab in documents. Are you sure?",
|
||||
"Google Analytics": "Google Analytics",
|
||||
"Add a Google Analytics 4 measurement ID to send document views and analytics from the workspace to your own Google Analytics account.": "Add a Google Analytics 4 measurement ID to send document views and analytics from the workspace to your own Google Analytics account.",
|
||||
"Measurement ID": "Measurement ID",
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
"Collection permissions": "Behörighet samling",
|
||||
"Share this collection": "Dela denna samling",
|
||||
"Import document": "Importera dokument",
|
||||
"Uploading": "Laddar upp",
|
||||
"Sort in sidebar": "Sortera i sidofältet",
|
||||
"A-Z sort": "Sortera A-Ö",
|
||||
"Z-A sort": "Sortera Ö-A",
|
||||
@@ -53,8 +54,9 @@
|
||||
"Development": "Utveckling",
|
||||
"Open document": "Öppna dokument",
|
||||
"New draft": "Nytt utkast",
|
||||
"New from template": "Ny från mall",
|
||||
"New nested document": "Nytt nästlat dokument",
|
||||
"Nested document": "Nested document",
|
||||
"Before": "Before",
|
||||
"After": "After",
|
||||
"Publish": "Publicera",
|
||||
"Published {{ documentName }}": "Publicerat {{ documentName }}",
|
||||
"Publish document": "Publicera dokument",
|
||||
@@ -91,9 +93,7 @@
|
||||
"Create template": "Skapa mall",
|
||||
"Open random document": "Öppna slumpvis dokument",
|
||||
"Search documents for \"{{searchQuery}}\"": "Sök dokument efter \"{{searchQuery}}\"",
|
||||
"Move to workspace": "Flytta till arbetsyta",
|
||||
"Move": "Flytta",
|
||||
"Move to collection": "Flytta till samling",
|
||||
"Move {{ documentType }}": "Flytta {{ documentType }}",
|
||||
"Are you sure you want to archive this document?": "Är du säker på att du vill arkivera detta dokument?",
|
||||
"Document archived": "Dokumentet arkiverat",
|
||||
@@ -165,6 +165,15 @@
|
||||
"New workspace": "Ny arbetsyta",
|
||||
"Create a workspace": "Skapa arbetsyta",
|
||||
"Login to workspace": "Logga in till arbetsytan",
|
||||
"Template deleted": "Template deleted",
|
||||
"Deleting": "Raderar",
|
||||
"Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.": "Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.",
|
||||
"Move to workspace": "Flytta till arbetsyta",
|
||||
"Template moved": "Template moved",
|
||||
"Couldn't move the template, try again?": "Couldn't move the template, try again?",
|
||||
"Move to collection": "Flytta till samling",
|
||||
"Move template": "Move template",
|
||||
"Print template": "Print template",
|
||||
"Invite people": "Bjud in personer",
|
||||
"Invite to workspace": "Bjud in till arbetsytan",
|
||||
"Promote to {{ role }}": "Befordra till {{ role }}",
|
||||
@@ -176,6 +185,7 @@
|
||||
"Debug": "Felsök",
|
||||
"Document": "Dokument",
|
||||
"Documents": "Dokument",
|
||||
"Template": "Mall",
|
||||
"Recently viewed": "Nyligen visade",
|
||||
"Revision": "Revision",
|
||||
"Navigation": "Navigation",
|
||||
@@ -195,6 +205,7 @@
|
||||
"Collections are used to group documents and choose permissions": "Samlingar används för att gruppera dokument och välja behörigheter",
|
||||
"Name": "Namn",
|
||||
"The default access for workspace members, you can share with more users or groups later.": "Standardåtkomst för medlemmar i arbetsytan, du kan dela med fler användare eller grupper senare.",
|
||||
"Advanced options": "Advanced options",
|
||||
"Public document sharing": "Delning av offentliga dokument",
|
||||
"Allow documents within this collection to be shared publicly on the internet.": "Tillåt att dokument inom denna samling delas offentligt på internet.",
|
||||
"Commenting": "Kommenterar",
|
||||
@@ -205,10 +216,10 @@
|
||||
"Create": "Skapa",
|
||||
"Collection deleted": "Samling borttagen",
|
||||
"I’m sure – Delete": "Jag är säker – Radera",
|
||||
"Deleting": "Raderar",
|
||||
"Are you sure about that? Deleting the <em>{{collectionName}}</em> collection is permanent and cannot be restored, however all published documents within will be moved to the trash.": "Är du säker på det? Att ta bort <em>{{collectionName}}</em> samlingen är permanent och kan inte återställas, men alla publicerade dokument inom kommer att flyttas till papperskorgen.",
|
||||
"Also, <em>{{collectionName}}</em> is being used as the start view – deleting it will reset the start view to the Home page.": "Dessutom används <em>{{collectionName}}</em> som startvyn – tar bort den kommer att återställa startvyn till startsidan.",
|
||||
"Type a command or search": "Skriv ett kommando eller sök",
|
||||
"New from template": "Ny från mall",
|
||||
"Choose a template": "Välj en mall",
|
||||
"Are you sure you want to permanently delete this entire comment thread?": "Är du säker på att du vill ta bort denna konversationen permanent?",
|
||||
"Are you sure you want to permanently delete this comment?": "Är du säker på att du vill ta bort denna kommentaren?",
|
||||
@@ -227,12 +238,6 @@
|
||||
"Deleted Collection": "Raderad samling",
|
||||
"Untitled": "Utan titel",
|
||||
"Unpin": "Lossa",
|
||||
"Select a location to copy": "Välj en plats att kopiera",
|
||||
"Document copied": "Dokument kopierat",
|
||||
"Couldn’t copy the document, try again?": "Kunde inte kopiera dokumentet, försök igen?",
|
||||
"Include nested documents": "Inkludera nästlade dokument",
|
||||
"Copy to <em>{{ location }}</em>": "Kopiera till <em>{{ location }}</em>",
|
||||
"Copying": "Copying",
|
||||
"Export started": "Exportering startad",
|
||||
"A link to your file will be sent through email soon": "A link to your file will be sent through email soon",
|
||||
"Preparing your download": "Preparing your download",
|
||||
@@ -242,13 +247,24 @@
|
||||
"Include child documents": "Include child documents",
|
||||
"When selected, exporting the document <em>{{documentName}}</em> may take some time.": "When selected, exporting the document <em>{{documentName}}</em> may take some time.",
|
||||
"You will receive an email when it's complete.": "Du kommer att få ett e-postmeddelande när det är klart.",
|
||||
"Select a location to copy": "Välj en plats att kopiera",
|
||||
"Document copied": "Dokument kopierat",
|
||||
"Couldn’t copy the document, try again?": "Kunde inte kopiera dokumentet, försök igen?",
|
||||
"Include nested documents": "Inkludera nästlade dokument",
|
||||
"Copy to <em>{{ location }}</em>": "Kopiera till <em>{{ location }}</em>",
|
||||
"Copying": "Copying",
|
||||
"Search collections & documents": "Sök i samlingar och dokument",
|
||||
"Search collections": "Search collections",
|
||||
"No results found": "Inga resultat hittades",
|
||||
"Select a location to move": "Välj en plats att flytta",
|
||||
"Document moved": "Dokument flyttat",
|
||||
"Couldn’t move the document, try again?": "Kunde inte flytta dokumentet, försök igen?",
|
||||
"Move to <em>{{ location }}</em>": "Flytta till <em>{{ location }}</em>",
|
||||
"Couldn’t move the template, try again?": "Couldn’t move the template, try again?",
|
||||
"Document options": "Dokumentalternativ",
|
||||
"New": "Ny",
|
||||
"Only visible to you": "Endast synlig för dig",
|
||||
"Draft": "Utkast",
|
||||
"Template": "Mall",
|
||||
"You updated": "Du uppdaterade",
|
||||
"{{ userName }} updated": "{{ userName }} uppdaterade",
|
||||
"You deleted": "Du tog bort",
|
||||
@@ -278,7 +294,6 @@
|
||||
"Please enter a name for the emoji": "Please enter a name for the emoji",
|
||||
"Please select an image file": "Please select an image file",
|
||||
"Emoji created successfully": "Emoji created successfully",
|
||||
"Uploading": "Laddar upp",
|
||||
"Add emoji": "Lägg till emoji",
|
||||
"Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.": "Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.",
|
||||
"Upload an image": "Ladda upp en bild",
|
||||
@@ -467,6 +482,7 @@
|
||||
"Collapse sidebar": "Collapse sidebar",
|
||||
"Archived collections": "Arkiverade samlingar",
|
||||
"New doc": "Nytt dokument",
|
||||
"New nested document": "Nytt nästlat dokument",
|
||||
"Empty": "Tom",
|
||||
"No collections": "Inga samlingar",
|
||||
"Collapse": "Minimera",
|
||||
@@ -493,6 +509,8 @@
|
||||
"Unstar document": "Ostjärnmärk dokument",
|
||||
"Star document": "Stjärnmärk dokument",
|
||||
"Select a color": "Välj en färg",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Markera lite text och använd kontrollen <1></1> för att lägga till platshållare som kan fyllas i när du skapar nya dokument",
|
||||
"You’re editing a template": "Du redigerar en mall",
|
||||
"Template created, go ahead and customize it": "Mall skapad, gå vidare och anpassa den",
|
||||
"Creating a template from <em>{{titleWithDefault}}</em> is a non-destructive action – we'll make a copy of the document and turn it into a template that can be used as a starting point for new documents.": "Att skapa en mall från <em>{{titleWithDefault}}</em> är en icke-förstörande åtgärd – vi gör en kopia av dokumentet och förvandlar det till en mall som kan användas som utgångspunkt för nya dokument.",
|
||||
"Enable other members to use the template immediately": "Tillåt andra medlemmar att använda mallen omedelbart",
|
||||
@@ -632,6 +650,7 @@
|
||||
"Delete embed": "Ta bort inbäddning",
|
||||
"Formatting controls": "Formatting controls",
|
||||
"Distribute columns": "Distribute columns",
|
||||
"Wrap text": "Wrap text",
|
||||
"Delete Emoji": "Delete Emoji",
|
||||
"Emoji deleted": "Emoji deleted",
|
||||
"I'm sure – Delete": "I'm sure – Delete",
|
||||
@@ -644,17 +663,19 @@
|
||||
"Unsubscribed from document": "Prenumeration avslutad från dokument",
|
||||
"Unsubscribed from collection": "Avprenumerera från samling",
|
||||
"Account": "Konto",
|
||||
"API & Apps": "API & appar",
|
||||
"API & Access": "API & Access",
|
||||
"Details": "Detaljer",
|
||||
"Authentication": "Authentication",
|
||||
"Security": "Säkerhet",
|
||||
"Features": "Funktioner",
|
||||
"AI": "AI",
|
||||
"API Keys": "API-nycklar",
|
||||
"Applications": "Applikationer",
|
||||
"Shared Links": "Delade länkar",
|
||||
"Import": "Importera",
|
||||
"Install": "Installera",
|
||||
"Embeds": "Embeds",
|
||||
"Configure which embed providers are available in the editor.": "Configure which embed providers are available in the editor.",
|
||||
"Integrations": "Integrationer",
|
||||
"Install": "Installera",
|
||||
"Change name": "Ändra namn",
|
||||
"Change email": "Ändra e-post",
|
||||
"Suspend user": "Stäng av användaren",
|
||||
@@ -685,8 +706,8 @@
|
||||
"Headings you add to the document will appear here": "Rubriker som du lägger till i dokumentet visas här",
|
||||
"Contents": "Innehåll",
|
||||
"Table of contents": "Innehållsförteckning",
|
||||
"Template options": "Template options",
|
||||
"User options": "Användaralternativ",
|
||||
"template": "mall",
|
||||
"document": "dokument",
|
||||
"Export complete": "Export complete",
|
||||
"Export failed": "Export failed",
|
||||
@@ -812,23 +833,15 @@
|
||||
"Sorry, the last change could not be persisted – please reload the page": "Tyvärr, den senaste ändringen kunde inte sparas– ladda om sidan",
|
||||
"{{ count }} days": "{{ count }} dag",
|
||||
"{{ count }} days_plural": "{{ count }} dagar",
|
||||
"This template will be permanently deleted in <2></2> unless restored.": "Mallen kommer att raderas permanent i <2></2> om den inte återställs.",
|
||||
"This document will be permanently deleted in <2></2> unless restored.": "Detta dokument kommer att raderas permanent i <2></2> om det inte återställs.",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Markera lite text och använd kontrollen <1></1> för att lägga till platshållare som kan fyllas i när du skapar nya dokument",
|
||||
"You’re editing a template": "Du redigerar en mall",
|
||||
"Deleted by {{userName}}": "Borttagen av {{userName}}",
|
||||
"Observing {{ userName }}": "Observerar {{ userName }}",
|
||||
"Backlinks": "Bakåtlänkar",
|
||||
"This document is large which may affect performance": "Detta dokument är stort vilket kan påverka prestanda",
|
||||
"Are you sure you want to delete the <em>{{ documentTitle }}</em> template?": "Är du säker på att du vill ta bort mallen <em>{{ documentTitle }}</em>?",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history</em>.": "Är du säker på det? Ta bort <em>{{ documentTitle }}</em> dokumentet kommer att ta bort all dess historik</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>.": "Är du säker på det? Borttagning av <em>{{ documentTitle }}</em> dokumentet kommer att ta bort all dess historik och <em>{{ any }} nested document</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>._plural": "Är du säker på det? Ta bort <em>{{ documentTitle }}</em> dokumentet kommer att ta bort all dess historik och <em>{{ any }} nestlade dokument</em>.",
|
||||
"If you’d like the option of referencing or restoring the {{noun}} in the future, consider archiving it instead.": "Om du vill ha alternativet att referera eller återställa {{noun}} i framtiden, överväg att arkivera det istället.",
|
||||
"Select a location to move": "Välj en plats att flytta",
|
||||
"Document moved": "Dokument flyttat",
|
||||
"Couldn’t move the document, try again?": "Kunde inte flytta dokumentet, försök igen?",
|
||||
"Move to <em>{{ location }}</em>": "Flytta till <em>{{ location }}</em>",
|
||||
"Couldn’t create the document, try again?": "Kunde inte skapa dokumentet, försök igen?",
|
||||
"Document permanently deleted": "Dokumentet har tagits bort permanent",
|
||||
"Are you sure you want to permanently delete the <em>{{ documentTitle }}</em> document? This action is immediate and cannot be undone.": "Är du säker på att du vill ta bort dokumentet <em>{{ documentTitle }}</em> permanent? Åtgärden är omedelbar och kan inte ångras.",
|
||||
@@ -885,7 +898,6 @@
|
||||
"Open this guide": "Öppna denna guide",
|
||||
"Enter": "Ange",
|
||||
"Publish document and exit": "Publicera dokumentet och avsluta",
|
||||
"Save document": "Spara dokument",
|
||||
"Cancel editing": "Avbryt redigering",
|
||||
"Collaboration": "Samarbete",
|
||||
"Formatting": "Formatering",
|
||||
@@ -978,11 +990,14 @@
|
||||
"An error occurred": "Ett fel uppstod",
|
||||
"The OAuth client could not be found, please check the provided client ID": "The OAuth client could not be found, please check the provided client ID",
|
||||
"The OAuth client could not be loaded, please check the redirect URI is valid": "The OAuth client could not be loaded, please check the redirect URI is valid",
|
||||
"The OAuth client could not be loaded, please check your workspace subdomain is correct": "The OAuth client could not be loaded, please check your workspace subdomain is correct",
|
||||
"Required OAuth parameters are missing": "Required OAuth parameters are missing",
|
||||
"Authorize": "Auktorisera",
|
||||
"{{ appName }} wants to access {{ teamName }}": "{{ appName }} wants to access {{ teamName }}",
|
||||
"By <em>{{ developerName }}</em>": "Av <em>{{ developerName }}</em>",
|
||||
"{{ appName }} will be able to access your account and perform the following actions": "{{ appName }} will be able to access your account and perform the following actions",
|
||||
"You will be redirected to a local application after authorizing.": "You will be redirected to a local application after authorizing.",
|
||||
"You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.": "You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.",
|
||||
"read": "läs",
|
||||
"write": "skriv",
|
||||
"read and write": "läs och skriv",
|
||||
@@ -1156,6 +1171,8 @@
|
||||
"Last accessed": "Senast besökt",
|
||||
"Domain": "Domän",
|
||||
"Views": "Visningar",
|
||||
"Visibility": "Visibility",
|
||||
"Updated by": "Updated by",
|
||||
"All roles": "Alla roller",
|
||||
"Admins": "Administratörer",
|
||||
"Editors": "Redigerare",
|
||||
@@ -1188,15 +1205,26 @@
|
||||
"Your workspace will be accessible at": "Din arbetsyta kommer att vara tillgänglig på",
|
||||
"Choose a subdomain to enable a login page just for your team.": "Välj en underdomän för att aktivera en inloggningssida bara för ditt team.",
|
||||
"This is the screen that workspace members will first see when they sign in.": "Detta är den skärm som arbetsytans medlemmar först kommer att se när de loggar in.",
|
||||
"Danger": "Varning",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "Du kan ta bort hela arbetsytan inklusive samlingar, dokument och användare.",
|
||||
"Export data": "Exportera data",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "En fullständig export kan ta lite tid, överväg att exportera ett enskilt dokument eller en samling. Den exporterade datan är en zipfil av dina dokument i Markdown-format. Du kan lämna denna sida när exporten har startat – om du har aviseringar aktiverade kommer vi att skicka en länk till <em>{{ userEmail }}</em> när den är klar.",
|
||||
"Recent exports": "Senaste exporter",
|
||||
"Manage optional and beta features. Changing these settings will affect the experience for all members of the workspace.": "Hantera valfria och beta-funktioner. Om du ändrar dessa inställningar kommer upplevelsen att påverka alla medlemmar i arbetsytan.",
|
||||
"Separate editing": "Separat redigering",
|
||||
"When enabled documents have a separate editing mode by default instead of being always editable. This setting can be overridden by user preferences.": "När det är aktiverat har dokument ett separat redigeringsläge som standard istället för att alltid vara redigerbart. Denna inställning kan åsidosättas av användarinställningar.",
|
||||
"When enabled team members can add comments to documents.": "När detta är aktiverat kan teammedlemmar lägga till kommentarer till dokument.",
|
||||
"Danger": "Varning",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "Du kan ta bort hela arbetsytan inklusive samlingar, dokument och användare.",
|
||||
"Enabled": "Enabled",
|
||||
"Allow supported providers to be inserted as interactive embeds in documents.": "Allow supported providers to be inserted as interactive embeds in documents.",
|
||||
"Providers": "Providers",
|
||||
"Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.": "Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.",
|
||||
"All providers": "All providers",
|
||||
"Export data": "Exportera data",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "En fullständig export kan ta lite tid, överväg att exportera ett enskilt dokument eller en samling. Den exporterade datan är en zipfil av dina dokument i Markdown-format. Du kan lämna denna sida när exporten har startat – om du har aviseringar aktiverade kommer vi att skicka en länk till <em>{{ userEmail }}</em> när den är klar.",
|
||||
"Recent exports": "Senaste exporter",
|
||||
"Manage AI and integration features for your workspace.": "Manage AI and integration features for your workspace.",
|
||||
"MCP server": "MCP server",
|
||||
"Allow members to connect to this workspace with MCP to read and write data.": "Allow members to connect to this workspace with MCP to read and write data.",
|
||||
"Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.": "Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.",
|
||||
"Copy URL": "Copy URL",
|
||||
"AI answers": "AI answers",
|
||||
"Use AI to get direct answers to questions in search. This feature requires a paid license.": "Use AI to get direct answers to questions in search. This feature requires a paid license.",
|
||||
"Create a group": "Skapa en grupp",
|
||||
"Could not load groups": "Kunde inte ladda grupper",
|
||||
"New group": "Ny grupp",
|
||||
@@ -1288,8 +1316,6 @@
|
||||
"When enabled, viewers can see download options for documents": "När detta är aktiverat kan läsare se hämtningsalternativ för dokument",
|
||||
"Users can delete account": "Användare kan ta bort konto",
|
||||
"When enabled, users can delete their own account from the workspace": "When enabled, users can delete their own account from the workspace",
|
||||
"Rich service embeds": "Rich service inbäddningar",
|
||||
"Links to supported services are shown as rich embeds within your documents": "Länkar till stödda tjänster visas som \" rich embeds\" i dina dokument",
|
||||
"Email address visibility": "Email address visibility",
|
||||
"Controls who can see user email addresses in the workspace": "Controls who can see user email addresses in the workspace",
|
||||
"Collection creation": "Skapande av samling",
|
||||
@@ -1300,9 +1326,10 @@
|
||||
"Sharing is currently disabled.": "Delning är för närvarande inaktiverat.",
|
||||
"You can globally enable and disable public document sharing in the <em>security settings</em>.": "Du kan aktivera och inaktivera offentlig dokumentdelning i <em>säkerhetsinställningar</em>.",
|
||||
"Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.": "Dokument som har delats listas nedan. Vem som helst som har den publika länken kan komma åt en skrivskyddad version av dokumentet tills länken har återkallats.",
|
||||
"You can create templates to help your team create consistent and accurate documentation.": "Du kan skapa mallar för att hjälpa ditt team att skapa en konsekvent och korrekt dokumentation.",
|
||||
"Alphabetical": "Alfabetiskt",
|
||||
"There are no templates just yet.": "Det finns inga mallar ännu.",
|
||||
"A template must have content": "A template must have content",
|
||||
"Could not load templates": "Could not load templates",
|
||||
"Templates help your team create consistent and accurate documentation.": "Templates help your team create consistent and accurate documentation.",
|
||||
"No templates have been created yet": "No templates have been created yet",
|
||||
"{{ teamName }} is using {{ appName }} to share documents, please login to continue.": "{{ teamName }} använder {{ appName }} för att dela dokument, logga in för att fortsätta.",
|
||||
"A confirmation code has been sent to your email address, please enter the code below to permanently destroy this workspace.": "En bekräftelsekod har skickats till din e-postadress, ange koden nedan för att permanent förstöra denna arbetsyta.",
|
||||
"Confirmation code": "Bekräftelsekod",
|
||||
@@ -1363,7 +1390,6 @@
|
||||
"New Attribute": "New Attribute",
|
||||
"Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.": "Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.",
|
||||
"Custom domain": "Custom domain",
|
||||
"AI answers": "AI answers",
|
||||
"Use AI to directly answer searched questions using content in your workspace.": "Use AI to directly answer searched questions using content in your workspace.",
|
||||
"API access": "API access",
|
||||
"Allow members to create API keys for programmatic access": "Allow members to create API keys for programmatic access",
|
||||
@@ -1413,6 +1439,27 @@
|
||||
"Enabled by {{integrationCreatedBy}}": "Aktiverad av {{integrationCreatedBy}}",
|
||||
"Disconnecting will prevent previewing GitHub links from this organization in documents. Are you sure?": "Om du kopplar från förhindras förhandsgranskning av GitHub-länkar från den här organisationen i dokument. Är du säker?",
|
||||
"The GitHub integration is currently disabled. Please set the associated environment variables and restart the server to enable the integration.": "GitHub-integrationen är för närvarande inaktiverad. Ställ in de associerade miljövariablerna och starta om servern för att aktivera integrationen.",
|
||||
"Connect GitLab": "Connect GitLab",
|
||||
"Enter the details for your GitLab instance.": "Enter the details for your GitLab instance.",
|
||||
"GitLab URL": "GitLab URL",
|
||||
"URL must start with https": "URL must start with https",
|
||||
"Client ID": "Client ID",
|
||||
"OAuth application ID": "OAuth application ID",
|
||||
"Client Secret": "Client Secret",
|
||||
"OAuth application secret": "OAuth application secret",
|
||||
"Connecting": "Connecting",
|
||||
"Choose which GitLab instance to connect to.": "Choose which GitLab instance to connect to.",
|
||||
"GitLab Cloud": "GitLab Cloud",
|
||||
"Connect to your account on gitlab.com": "Connect to your account on gitlab.com",
|
||||
"GitLab Cloud credentials are not configured": "GitLab Cloud credentials are not configured",
|
||||
"Self-managed": "Self-managed",
|
||||
"Connect to a custom GitLab installation": "Connect to a custom GitLab installation",
|
||||
"You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?": "You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?",
|
||||
"The GitLab account is already connected to this workspace.": "The GitLab account is already connected to this workspace.",
|
||||
"Something went wrong while authenticating your request. Please try again.": "Something went wrong while authenticating your request. Please try again.",
|
||||
"The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.": "The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.",
|
||||
"Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.": "Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.",
|
||||
"Disconnecting will prevent previewing links from GitLab in documents. Are you sure?": "Disconnecting will prevent previewing links from GitLab in documents. Are you sure?",
|
||||
"Google Analytics": "Google Analytics",
|
||||
"Add a Google Analytics 4 measurement ID to send document views and analytics from the workspace to your own Google Analytics account.": "Lägg till ett Google Analytics 4-mätnings-ID för att skicka dokumentvyer och analyser från arbetsytan till ditt eget Google Analytics-konto.",
|
||||
"Measurement ID": "Mätnings ID",
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
"Collection permissions": "สิทธิ์ของคอลเลกชัน",
|
||||
"Share this collection": "แชร์คอลเล็กชันนี้",
|
||||
"Import document": "นำเข้าเอกสาร",
|
||||
"Uploading": "Uploading",
|
||||
"Sort in sidebar": "เรียงในแถบด้านข้าง",
|
||||
"A-Z sort": "A-Z sort",
|
||||
"Z-A sort": "Z-A sort",
|
||||
@@ -53,8 +54,9 @@
|
||||
"Development": "Development",
|
||||
"Open document": "เปิดเอกสาร",
|
||||
"New draft": "New draft",
|
||||
"New from template": "New from template",
|
||||
"New nested document": "เอกสารย่อยใหม่",
|
||||
"Nested document": "Nested document",
|
||||
"Before": "Before",
|
||||
"After": "After",
|
||||
"Publish": "Publish",
|
||||
"Published {{ documentName }}": "Published {{ documentName }}",
|
||||
"Publish document": "Publish document",
|
||||
@@ -91,9 +93,7 @@
|
||||
"Create template": "สร้างเทมเพลต",
|
||||
"Open random document": "Open random document",
|
||||
"Search documents for \"{{searchQuery}}\"": "ค้นหาเอกสารสำหรับ \"{{searchQuery}}\"",
|
||||
"Move to workspace": "Move to workspace",
|
||||
"Move": "ย้าย",
|
||||
"Move to collection": "Move to collection",
|
||||
"Move {{ documentType }}": "Move {{ documentType }}",
|
||||
"Are you sure you want to archive this document?": "Are you sure you want to archive this document?",
|
||||
"Document archived": "เอกสารที่เก็บถาวร",
|
||||
@@ -165,6 +165,15 @@
|
||||
"New workspace": "New workspace",
|
||||
"Create a workspace": "Create a workspace",
|
||||
"Login to workspace": "Login to workspace",
|
||||
"Template deleted": "Template deleted",
|
||||
"Deleting": "กำลังลบ",
|
||||
"Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.": "Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.",
|
||||
"Move to workspace": "Move to workspace",
|
||||
"Template moved": "Template moved",
|
||||
"Couldn't move the template, try again?": "Couldn't move the template, try again?",
|
||||
"Move to collection": "Move to collection",
|
||||
"Move template": "Move template",
|
||||
"Print template": "Print template",
|
||||
"Invite people": "เชิญผู้คน",
|
||||
"Invite to workspace": "Invite to workspace",
|
||||
"Promote to {{ role }}": "Promote to {{ role }}",
|
||||
@@ -176,6 +185,7 @@
|
||||
"Debug": "ดีบัก",
|
||||
"Document": "เอกสาร",
|
||||
"Documents": "เอกสาร",
|
||||
"Template": "เทมเพลต",
|
||||
"Recently viewed": "Recently viewed",
|
||||
"Revision": "Revision",
|
||||
"Navigation": "แถบนำทาง",
|
||||
@@ -195,6 +205,7 @@
|
||||
"Collections are used to group documents and choose permissions": "Collections are used to group documents and choose permissions",
|
||||
"Name": "Name",
|
||||
"The default access for workspace members, you can share with more users or groups later.": "The default access for workspace members, you can share with more users or groups later.",
|
||||
"Advanced options": "Advanced options",
|
||||
"Public document sharing": "Public document sharing",
|
||||
"Allow documents within this collection to be shared publicly on the internet.": "Allow documents within this collection to be shared publicly on the internet.",
|
||||
"Commenting": "Commenting",
|
||||
@@ -205,10 +216,10 @@
|
||||
"Create": "Create",
|
||||
"Collection deleted": "Collection deleted",
|
||||
"I’m sure – Delete": "ฉันแน่ใจ – ลบ",
|
||||
"Deleting": "กำลังลบ",
|
||||
"Are you sure about that? Deleting the <em>{{collectionName}}</em> collection is permanent and cannot be restored, however all published documents within will be moved to the trash.": "Are you sure about that? Deleting the <em>{{collectionName}}</em> collection is permanent and cannot be restored, however all published documents within will be moved to the trash.",
|
||||
"Also, <em>{{collectionName}}</em> is being used as the start view – deleting it will reset the start view to the Home page.": "นอกจากนี้ <em>{{collectionName}}</em> ยังถูกใช้เป็นมุมมองเริ่มต้น – การลบจะเป็นการรีเซ็ตมุมมองเริ่มต้นไปที่โฮมเพจ",
|
||||
"Type a command or search": "พิมพ์คำสั่งหรือค้นหา",
|
||||
"New from template": "New from template",
|
||||
"Choose a template": "Choose a template",
|
||||
"Are you sure you want to permanently delete this entire comment thread?": "Are you sure you want to permanently delete this entire comment thread?",
|
||||
"Are you sure you want to permanently delete this comment?": "Are you sure you want to permanently delete this comment?",
|
||||
@@ -227,12 +238,6 @@
|
||||
"Deleted Collection": "คอลเลคชั่นที่ถูกลบ",
|
||||
"Untitled": "ไม่มีชื่อ",
|
||||
"Unpin": "เลิกปักหมุด",
|
||||
"Select a location to copy": "Select a location to copy",
|
||||
"Document copied": "Document copied",
|
||||
"Couldn’t copy the document, try again?": "Couldn’t copy the document, try again?",
|
||||
"Include nested documents": "Include nested documents",
|
||||
"Copy to <em>{{ location }}</em>": "Copy to <em>{{ location }}</em>",
|
||||
"Copying": "Copying",
|
||||
"Export started": "Export started",
|
||||
"A link to your file will be sent through email soon": "A link to your file will be sent through email soon",
|
||||
"Preparing your download": "Preparing your download",
|
||||
@@ -242,13 +247,24 @@
|
||||
"Include child documents": "Include child documents",
|
||||
"When selected, exporting the document <em>{{documentName}}</em> may take some time.": "When selected, exporting the document <em>{{documentName}}</em> may take some time.",
|
||||
"You will receive an email when it's complete.": "You will receive an email when it's complete.",
|
||||
"Select a location to copy": "Select a location to copy",
|
||||
"Document copied": "Document copied",
|
||||
"Couldn’t copy the document, try again?": "Couldn’t copy the document, try again?",
|
||||
"Include nested documents": "Include nested documents",
|
||||
"Copy to <em>{{ location }}</em>": "Copy to <em>{{ location }}</em>",
|
||||
"Copying": "Copying",
|
||||
"Search collections & documents": "Search collections & documents",
|
||||
"Search collections": "Search collections",
|
||||
"No results found": "No results found",
|
||||
"Select a location to move": "Select a location to move",
|
||||
"Document moved": "Document moved",
|
||||
"Couldn’t move the document, try again?": "Couldn’t move the document, try again?",
|
||||
"Move to <em>{{ location }}</em>": "Move to <em>{{ location }}</em>",
|
||||
"Couldn’t move the template, try again?": "Couldn’t move the template, try again?",
|
||||
"Document options": "ตัวเลือกเอกสาร",
|
||||
"New": "สร้าง",
|
||||
"Only visible to you": "เฉพาะคุณเท่านั้นที่เห็นสิ่งนี้",
|
||||
"Draft": "ฉบับร่าง",
|
||||
"Template": "เทมเพลต",
|
||||
"You updated": "คุณทำการปรับปรุง",
|
||||
"{{ userName }} updated": "{{ userName }} ทำการปรับปรุง",
|
||||
"You deleted": "คุณลบทิ้ง",
|
||||
@@ -278,7 +294,6 @@
|
||||
"Please enter a name for the emoji": "Please enter a name for the emoji",
|
||||
"Please select an image file": "Please select an image file",
|
||||
"Emoji created successfully": "Emoji created successfully",
|
||||
"Uploading": "Uploading",
|
||||
"Add emoji": "Add emoji",
|
||||
"Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.": "Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.",
|
||||
"Upload an image": "Upload an image",
|
||||
@@ -467,6 +482,7 @@
|
||||
"Collapse sidebar": "Collapse sidebar",
|
||||
"Archived collections": "Archived collections",
|
||||
"New doc": "สร้างเอกสารใหม่",
|
||||
"New nested document": "เอกสารย่อยใหม่",
|
||||
"Empty": "ว่างเปล่า",
|
||||
"No collections": "No collections",
|
||||
"Collapse": "ย่อ",
|
||||
@@ -493,6 +509,8 @@
|
||||
"Unstar document": "Unstar document",
|
||||
"Star document": "Star document",
|
||||
"Select a color": "Select a color",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents",
|
||||
"You’re editing a template": "You’re editing a template",
|
||||
"Template created, go ahead and customize it": "สร้างเทมเพลตแล้ว ปรับแต่งได้เลย",
|
||||
"Creating a template from <em>{{titleWithDefault}}</em> is a non-destructive action – we'll make a copy of the document and turn it into a template that can be used as a starting point for new documents.": "การสร้างเทมเพลตจาก <em>{{titleWithDefault}}</em> เป็นการกระทำที่ไม่ทำลายเอกสารเก่า - เราจะทำสำเนาและเปลี่ยนเป็นเทมเพลตที่สามารถใช้ในการสร้างเอกสารใหม่ได้",
|
||||
"Enable other members to use the template immediately": "Enable other members to use the template immediately",
|
||||
@@ -632,6 +650,7 @@
|
||||
"Delete embed": "Delete embed",
|
||||
"Formatting controls": "Formatting controls",
|
||||
"Distribute columns": "Distribute columns",
|
||||
"Wrap text": "Wrap text",
|
||||
"Delete Emoji": "Delete Emoji",
|
||||
"Emoji deleted": "Emoji deleted",
|
||||
"I'm sure – Delete": "I'm sure – Delete",
|
||||
@@ -644,17 +663,19 @@
|
||||
"Unsubscribed from document": "Unsubscribed from document",
|
||||
"Unsubscribed from collection": "Unsubscribed from collection",
|
||||
"Account": "บัญชีผู้ใช้",
|
||||
"API & Apps": "API & Apps",
|
||||
"API & Access": "API & Access",
|
||||
"Details": "รายละเอียด",
|
||||
"Authentication": "Authentication",
|
||||
"Security": "ความปลอดภัย",
|
||||
"Features": "คุณสมบัติ",
|
||||
"AI": "AI",
|
||||
"API Keys": "API Keys",
|
||||
"Applications": "Applications",
|
||||
"Shared Links": "Shared Links",
|
||||
"Import": "นำเข้า",
|
||||
"Install": "Install",
|
||||
"Embeds": "Embeds",
|
||||
"Configure which embed providers are available in the editor.": "Configure which embed providers are available in the editor.",
|
||||
"Integrations": "Integration",
|
||||
"Install": "Install",
|
||||
"Change name": "Change name",
|
||||
"Change email": "Change email",
|
||||
"Suspend user": "Suspend user",
|
||||
@@ -685,8 +706,8 @@
|
||||
"Headings you add to the document will appear here": "Headings you add to the document will appear here",
|
||||
"Contents": "Contents",
|
||||
"Table of contents": "Table of contents",
|
||||
"Template options": "Template options",
|
||||
"User options": "ตัวเลือกผู้ใช้",
|
||||
"template": "template",
|
||||
"document": "document",
|
||||
"Export complete": "Export complete",
|
||||
"Export failed": "Export failed",
|
||||
@@ -812,23 +833,15 @@
|
||||
"Sorry, the last change could not be persisted – please reload the page": "Sorry, the last change could not be persisted – please reload the page",
|
||||
"{{ count }} days": "{{ count }} day",
|
||||
"{{ count }} days_plural": "{{ count }} days",
|
||||
"This template will be permanently deleted in <2></2> unless restored.": "This template will be permanently deleted in <2></2> unless restored.",
|
||||
"This document will be permanently deleted in <2></2> unless restored.": "This document will be permanently deleted in <2></2> unless restored.",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents",
|
||||
"You’re editing a template": "You’re editing a template",
|
||||
"Deleted by {{userName}}": "Deleted by {{userName}}",
|
||||
"Observing {{ userName }}": "Observing {{ userName }}",
|
||||
"Backlinks": "Backlinks",
|
||||
"This document is large which may affect performance": "This document is large which may affect performance",
|
||||
"Are you sure you want to delete the <em>{{ documentTitle }}</em> template?": "Are you sure you want to delete the <em>{{ documentTitle }}</em> template?",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history</em>.": "Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>.": "Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>._plural": "Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested documents</em>.",
|
||||
"If you’d like the option of referencing or restoring the {{noun}} in the future, consider archiving it instead.": "If you’d like the option of referencing or restoring the {{noun}} in the future, consider archiving it instead.",
|
||||
"Select a location to move": "Select a location to move",
|
||||
"Document moved": "Document moved",
|
||||
"Couldn’t move the document, try again?": "Couldn’t move the document, try again?",
|
||||
"Move to <em>{{ location }}</em>": "Move to <em>{{ location }}</em>",
|
||||
"Couldn’t create the document, try again?": "Couldn’t create the document, try again?",
|
||||
"Document permanently deleted": "Document permanently deleted",
|
||||
"Are you sure you want to permanently delete the <em>{{ documentTitle }}</em> document? This action is immediate and cannot be undone.": "Are you sure you want to permanently delete the <em>{{ documentTitle }}</em> document? This action is immediate and cannot be undone.",
|
||||
@@ -885,7 +898,6 @@
|
||||
"Open this guide": "Open this guide",
|
||||
"Enter": "Enter",
|
||||
"Publish document and exit": "Publish document and exit",
|
||||
"Save document": "Save document",
|
||||
"Cancel editing": "Cancel editing",
|
||||
"Collaboration": "Collaboration",
|
||||
"Formatting": "Formatting",
|
||||
@@ -978,11 +990,14 @@
|
||||
"An error occurred": "An error occurred",
|
||||
"The OAuth client could not be found, please check the provided client ID": "The OAuth client could not be found, please check the provided client ID",
|
||||
"The OAuth client could not be loaded, please check the redirect URI is valid": "The OAuth client could not be loaded, please check the redirect URI is valid",
|
||||
"The OAuth client could not be loaded, please check your workspace subdomain is correct": "The OAuth client could not be loaded, please check your workspace subdomain is correct",
|
||||
"Required OAuth parameters are missing": "Required OAuth parameters are missing",
|
||||
"Authorize": "Authorize",
|
||||
"{{ appName }} wants to access {{ teamName }}": "{{ appName }} wants to access {{ teamName }}",
|
||||
"By <em>{{ developerName }}</em>": "By <em>{{ developerName }}</em>",
|
||||
"{{ appName }} will be able to access your account and perform the following actions": "{{ appName }} will be able to access your account and perform the following actions",
|
||||
"You will be redirected to a local application after authorizing.": "You will be redirected to a local application after authorizing.",
|
||||
"You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.": "You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.",
|
||||
"read": "read",
|
||||
"write": "write",
|
||||
"read and write": "read and write",
|
||||
@@ -1156,6 +1171,8 @@
|
||||
"Last accessed": "Last accessed",
|
||||
"Domain": "Domain",
|
||||
"Views": "Views",
|
||||
"Visibility": "Visibility",
|
||||
"Updated by": "Updated by",
|
||||
"All roles": "All roles",
|
||||
"Admins": "Admins",
|
||||
"Editors": "Editors",
|
||||
@@ -1188,15 +1205,26 @@
|
||||
"Your workspace will be accessible at": "Your workspace will be accessible at",
|
||||
"Choose a subdomain to enable a login page just for your team.": "Choose a subdomain to enable a login page just for your team.",
|
||||
"This is the screen that workspace members will first see when they sign in.": "This is the screen that workspace members will first see when they sign in.",
|
||||
"Danger": "Danger",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "You can delete this entire workspace including collections, documents, and users.",
|
||||
"Export data": "Export data",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.",
|
||||
"Recent exports": "Recent exports",
|
||||
"Manage optional and beta features. Changing these settings will affect the experience for all members of the workspace.": "Manage optional and beta features. Changing these settings will affect the experience for all members of the workspace.",
|
||||
"Separate editing": "Separate editing",
|
||||
"When enabled documents have a separate editing mode by default instead of being always editable. This setting can be overridden by user preferences.": "When enabled documents have a separate editing mode by default instead of being always editable. This setting can be overridden by user preferences.",
|
||||
"When enabled team members can add comments to documents.": "When enabled team members can add comments to documents.",
|
||||
"Danger": "Danger",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "You can delete this entire workspace including collections, documents, and users.",
|
||||
"Enabled": "Enabled",
|
||||
"Allow supported providers to be inserted as interactive embeds in documents.": "Allow supported providers to be inserted as interactive embeds in documents.",
|
||||
"Providers": "Providers",
|
||||
"Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.": "Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.",
|
||||
"All providers": "All providers",
|
||||
"Export data": "Export data",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.",
|
||||
"Recent exports": "Recent exports",
|
||||
"Manage AI and integration features for your workspace.": "Manage AI and integration features for your workspace.",
|
||||
"MCP server": "MCP server",
|
||||
"Allow members to connect to this workspace with MCP to read and write data.": "Allow members to connect to this workspace with MCP to read and write data.",
|
||||
"Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.": "Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.",
|
||||
"Copy URL": "Copy URL",
|
||||
"AI answers": "AI answers",
|
||||
"Use AI to get direct answers to questions in search. This feature requires a paid license.": "Use AI to get direct answers to questions in search. This feature requires a paid license.",
|
||||
"Create a group": "สร้างกลุ่ม",
|
||||
"Could not load groups": "Could not load groups",
|
||||
"New group": "New group",
|
||||
@@ -1288,8 +1316,6 @@
|
||||
"When enabled, viewers can see download options for documents": "When enabled, viewers can see download options for documents",
|
||||
"Users can delete account": "Users can delete account",
|
||||
"When enabled, users can delete their own account from the workspace": "When enabled, users can delete their own account from the workspace",
|
||||
"Rich service embeds": "Rich service embeds",
|
||||
"Links to supported services are shown as rich embeds within your documents": "Links to supported services are shown as rich embeds within your documents",
|
||||
"Email address visibility": "Email address visibility",
|
||||
"Controls who can see user email addresses in the workspace": "Controls who can see user email addresses in the workspace",
|
||||
"Collection creation": "Collection creation",
|
||||
@@ -1300,9 +1326,10 @@
|
||||
"Sharing is currently disabled.": "Sharing is currently disabled.",
|
||||
"You can globally enable and disable public document sharing in the <em>security settings</em>.": "You can globally enable and disable public document sharing in the <em>security settings</em>.",
|
||||
"Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.": "Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.",
|
||||
"You can create templates to help your team create consistent and accurate documentation.": "You can create templates to help your team create consistent and accurate documentation.",
|
||||
"Alphabetical": "Alphabetical",
|
||||
"There are no templates just yet.": "There are no templates just yet.",
|
||||
"A template must have content": "A template must have content",
|
||||
"Could not load templates": "Could not load templates",
|
||||
"Templates help your team create consistent and accurate documentation.": "Templates help your team create consistent and accurate documentation.",
|
||||
"No templates have been created yet": "No templates have been created yet",
|
||||
"{{ teamName }} is using {{ appName }} to share documents, please login to continue.": "{{ teamName }} is using {{ appName }} to share documents, please login to continue.",
|
||||
"A confirmation code has been sent to your email address, please enter the code below to permanently destroy this workspace.": "A confirmation code has been sent to your email address, please enter the code below to permanently destroy this workspace.",
|
||||
"Confirmation code": "Confirmation code",
|
||||
@@ -1363,7 +1390,6 @@
|
||||
"New Attribute": "New Attribute",
|
||||
"Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.": "Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.",
|
||||
"Custom domain": "Custom domain",
|
||||
"AI answers": "AI answers",
|
||||
"Use AI to directly answer searched questions using content in your workspace.": "Use AI to directly answer searched questions using content in your workspace.",
|
||||
"API access": "API access",
|
||||
"Allow members to create API keys for programmatic access": "Allow members to create API keys for programmatic access",
|
||||
@@ -1413,6 +1439,27 @@
|
||||
"Enabled by {{integrationCreatedBy}}": "Enabled by {{integrationCreatedBy}}",
|
||||
"Disconnecting will prevent previewing GitHub links from this organization in documents. Are you sure?": "Disconnecting will prevent previewing GitHub links from this organization in documents. Are you sure?",
|
||||
"The GitHub integration is currently disabled. Please set the associated environment variables and restart the server to enable the integration.": "The GitHub integration is currently disabled. Please set the associated environment variables and restart the server to enable the integration.",
|
||||
"Connect GitLab": "Connect GitLab",
|
||||
"Enter the details for your GitLab instance.": "Enter the details for your GitLab instance.",
|
||||
"GitLab URL": "GitLab URL",
|
||||
"URL must start with https": "URL must start with https",
|
||||
"Client ID": "Client ID",
|
||||
"OAuth application ID": "OAuth application ID",
|
||||
"Client Secret": "Client Secret",
|
||||
"OAuth application secret": "OAuth application secret",
|
||||
"Connecting": "Connecting",
|
||||
"Choose which GitLab instance to connect to.": "Choose which GitLab instance to connect to.",
|
||||
"GitLab Cloud": "GitLab Cloud",
|
||||
"Connect to your account on gitlab.com": "Connect to your account on gitlab.com",
|
||||
"GitLab Cloud credentials are not configured": "GitLab Cloud credentials are not configured",
|
||||
"Self-managed": "Self-managed",
|
||||
"Connect to a custom GitLab installation": "Connect to a custom GitLab installation",
|
||||
"You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?": "You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?",
|
||||
"The GitLab account is already connected to this workspace.": "The GitLab account is already connected to this workspace.",
|
||||
"Something went wrong while authenticating your request. Please try again.": "Something went wrong while authenticating your request. Please try again.",
|
||||
"The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.": "The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.",
|
||||
"Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.": "Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.",
|
||||
"Disconnecting will prevent previewing links from GitLab in documents. Are you sure?": "Disconnecting will prevent previewing links from GitLab in documents. Are you sure?",
|
||||
"Google Analytics": "Google Analytics",
|
||||
"Add a Google Analytics 4 measurement ID to send document views and analytics from the workspace to your own Google Analytics account.": "Add a Google Analytics 4 measurement ID to send document views and analytics from the workspace to your own Google Analytics account.",
|
||||
"Measurement ID": "Measurement ID",
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
"Collection permissions": "Koleksiyon izinleri",
|
||||
"Share this collection": "Bu koleksiyonu paylaş",
|
||||
"Import document": "Belgeyi içeri aktar",
|
||||
"Uploading": "Yükleniyor",
|
||||
"Sort in sidebar": "Kenar çubuğunda sırala",
|
||||
"A-Z sort": "A-Z sıralama",
|
||||
"Z-A sort": "Z-A sıralama",
|
||||
@@ -53,8 +54,9 @@
|
||||
"Development": "Geliştirme",
|
||||
"Open document": "Belgeyi aç",
|
||||
"New draft": "Yeni taslak",
|
||||
"New from template": "Şablondan yeni",
|
||||
"New nested document": "Yeni iç içe belge",
|
||||
"Nested document": "Nested document",
|
||||
"Before": "Before",
|
||||
"After": "After",
|
||||
"Publish": "Yayınla",
|
||||
"Published {{ documentName }}": "{{ documentName }} yayımlandı",
|
||||
"Publish document": "Belgeyi Yayınla",
|
||||
@@ -91,9 +93,7 @@
|
||||
"Create template": "Şablon oluştur",
|
||||
"Open random document": "Rastgele belge aç",
|
||||
"Search documents for \"{{searchQuery}}\"": "\"{{searchQuery}}\" için belge ara",
|
||||
"Move to workspace": "Çalışma alanına taşı",
|
||||
"Move": "Taşı",
|
||||
"Move to collection": "Koleksiyona taşı",
|
||||
"Move {{ documentType }}": "{{ documentType }} taşı",
|
||||
"Are you sure you want to archive this document?": "Bu belgeyi arşivlemek istediğinizden emin misiniz?",
|
||||
"Document archived": "Belge arşivlendi",
|
||||
@@ -165,6 +165,15 @@
|
||||
"New workspace": "Yeni çalışma alanı",
|
||||
"Create a workspace": "Bir çalışma alanı oluştur",
|
||||
"Login to workspace": "Çalışma alanına giriş yap",
|
||||
"Template deleted": "Template deleted",
|
||||
"Deleting": "Siliniyor",
|
||||
"Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.": "Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.",
|
||||
"Move to workspace": "Çalışma alanına taşı",
|
||||
"Template moved": "Template moved",
|
||||
"Couldn't move the template, try again?": "Couldn't move the template, try again?",
|
||||
"Move to collection": "Koleksiyona taşı",
|
||||
"Move template": "Move template",
|
||||
"Print template": "Print template",
|
||||
"Invite people": "Kişileri davet et",
|
||||
"Invite to workspace": "Çalışma alanına davet et",
|
||||
"Promote to {{ role }}": "{{ role }} rolüne terfi et",
|
||||
@@ -176,6 +185,7 @@
|
||||
"Debug": "Hata ayıklama",
|
||||
"Document": "Belge",
|
||||
"Documents": "Belgeler",
|
||||
"Template": "Şablon",
|
||||
"Recently viewed": "Son görüntülenenler",
|
||||
"Revision": "Revizyon",
|
||||
"Navigation": "Navigasyon",
|
||||
@@ -195,6 +205,7 @@
|
||||
"Collections are used to group documents and choose permissions": "Koleksiyonlar, belgeleri gruplayıp izinleri seçmek için kullanılır",
|
||||
"Name": "Ad",
|
||||
"The default access for workspace members, you can share with more users or groups later.": "Çalışma alanı üyeleri için varsayılan erişim, daha sonra daha fazla kullanıcı veya grup ile paylaşabilirsiniz.",
|
||||
"Advanced options": "Advanced options",
|
||||
"Public document sharing": "Herkese açık belge paylaşımı",
|
||||
"Allow documents within this collection to be shared publicly on the internet.": "Bu koleksiyondaki belgelerin internet üzerinde herkese açık şekilde paylaşılmasına izin ver.",
|
||||
"Commenting": "Yorum yapma",
|
||||
@@ -205,10 +216,10 @@
|
||||
"Create": "Oluştur",
|
||||
"Collection deleted": "Koleksiyon silindi",
|
||||
"I’m sure – Delete": "Eminim – Sil!",
|
||||
"Deleting": "Siliniyor",
|
||||
"Are you sure about that? Deleting the <em>{{collectionName}}</em> collection is permanent and cannot be restored, however all published documents within will be moved to the trash.": "Bundan emin misiniz? <em>{{collectionName}}</em> koleksiyonunu silmek kalıcıdır ve geri alınamaz, ancak içindeki tüm yayımlanan belgeler çöp kutusuna taşınacaktır.",
|
||||
"Also, <em>{{collectionName}}</em> is being used as the start view – deleting it will reset the start view to the Home page.": "Ayrıca, başlangıç görünümü olarak <em>{{collectionName}}</em> kullanılıyor - silinmesi, başlangıç görünümünü Ana sayfaya sıfırlayacaktır.",
|
||||
"Type a command or search": "Bir komut yazın veya arayın",
|
||||
"New from template": "Şablondan yeni",
|
||||
"Choose a template": "Bir şablon seçin",
|
||||
"Are you sure you want to permanently delete this entire comment thread?": "Bu yorum dizisinin tamamını kalıcı olarak silmek istediğinizden emin misiniz?",
|
||||
"Are you sure you want to permanently delete this comment?": "Bu yorumu kalıcı olarak silmek istediğinizden emin misiniz?",
|
||||
@@ -227,12 +238,6 @@
|
||||
"Deleted Collection": "Silinmiş Koleksiyon",
|
||||
"Untitled": "Başlıksız",
|
||||
"Unpin": "Sabitlemeyi kaldır",
|
||||
"Select a location to copy": "Kopyalamak için bir konum seçin",
|
||||
"Document copied": "Belge kopyalandı",
|
||||
"Couldn’t copy the document, try again?": "Belge kopyalanamadı, tekrar deneyin?",
|
||||
"Include nested documents": "İç içe geçmiş belgeleri dahil et",
|
||||
"Copy to <em>{{ location }}</em>": "<em>{{ location }}</em>'ye kopyala",
|
||||
"Copying": "Copying",
|
||||
"Export started": "Dışa aktarma başladı",
|
||||
"A link to your file will be sent through email soon": "A link to your file will be sent through email soon",
|
||||
"Preparing your download": "Preparing your download",
|
||||
@@ -242,13 +247,24 @@
|
||||
"Include child documents": "Include child documents",
|
||||
"When selected, exporting the document <em>{{documentName}}</em> may take some time.": "When selected, exporting the document <em>{{documentName}}</em> may take some time.",
|
||||
"You will receive an email when it's complete.": "Tamamlandığında bir e-posta alacaksınız.",
|
||||
"Select a location to copy": "Kopyalamak için bir konum seçin",
|
||||
"Document copied": "Belge kopyalandı",
|
||||
"Couldn’t copy the document, try again?": "Belge kopyalanamadı, tekrar deneyin?",
|
||||
"Include nested documents": "İç içe geçmiş belgeleri dahil et",
|
||||
"Copy to <em>{{ location }}</em>": "<em>{{ location }}</em>'ye kopyala",
|
||||
"Copying": "Copying",
|
||||
"Search collections & documents": "Koleksiyonlarda ve belgelerde arama yapın",
|
||||
"Search collections": "Search collections",
|
||||
"No results found": "Sonuç bulunamadı",
|
||||
"Select a location to move": "Taşımak için bir konum seçin",
|
||||
"Document moved": "Belge taşındı",
|
||||
"Couldn’t move the document, try again?": "Belge taşınamadı, tekrar deneyin?",
|
||||
"Move to <em>{{ location }}</em>": "<em>{{ location }}</em> konumuna taşı",
|
||||
"Couldn’t move the template, try again?": "Couldn’t move the template, try again?",
|
||||
"Document options": "Belge seçenekleri",
|
||||
"New": "Yeni",
|
||||
"Only visible to you": "Sadece size görünür",
|
||||
"Draft": "Taslak",
|
||||
"Template": "Şablon",
|
||||
"You updated": "Siz güncellediniz",
|
||||
"{{ userName }} updated": "{{ userName }} güncelledi",
|
||||
"You deleted": "Siz sildiniz",
|
||||
@@ -278,7 +294,6 @@
|
||||
"Please enter a name for the emoji": "Please enter a name for the emoji",
|
||||
"Please select an image file": "Please select an image file",
|
||||
"Emoji created successfully": "Emoji created successfully",
|
||||
"Uploading": "Yükleniyor",
|
||||
"Add emoji": "Add emoji",
|
||||
"Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.": "Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.",
|
||||
"Upload an image": "Bir görsel yükle",
|
||||
@@ -467,6 +482,7 @@
|
||||
"Collapse sidebar": "Kenar çubuğunu daralt",
|
||||
"Archived collections": "Arşivlenmiş koleksiyonlar",
|
||||
"New doc": "Yeni belge",
|
||||
"New nested document": "Yeni iç içe belge",
|
||||
"Empty": "Boş",
|
||||
"No collections": "Koleksiyon yok",
|
||||
"Collapse": "Daralt",
|
||||
@@ -493,6 +509,8 @@
|
||||
"Unstar document": "Belgenin yıldızını kaldır",
|
||||
"Star document": "Belgeyi yıldızla",
|
||||
"Select a color": "Bir renk seçin",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Bir metni vurgulayın ve <1></1> kontrolünü kullanarak yeni belgeler oluşturulurken doldurulabilecek yer tutucular ekleyin",
|
||||
"You’re editing a template": "Bir şablonu düzenliyorsunuz",
|
||||
"Template created, go ahead and customize it": "Şablon oluşturuldu, devam edin ve özelleştirin",
|
||||
"Creating a template from <em>{{titleWithDefault}}</em> is a non-destructive action – we'll make a copy of the document and turn it into a template that can be used as a starting point for new documents.": "<em>{{titleWithDefault}}</em> belgesinden şablon oluşturmak bozucu olmayan bir işlemdir – belgenin bir kopyasını oluşturacağız ve onu yeni belgeler için başlangıç noktası olarak kullanılabilecek bir şablona dönüştüreceğiz.",
|
||||
"Enable other members to use the template immediately": "Diğer üyelerin şablonu hemen kullanmasını sağla",
|
||||
@@ -632,6 +650,7 @@
|
||||
"Delete embed": "Yerleştirmeyi sil",
|
||||
"Formatting controls": "Formatting controls",
|
||||
"Distribute columns": "Distribute columns",
|
||||
"Wrap text": "Wrap text",
|
||||
"Delete Emoji": "Delete Emoji",
|
||||
"Emoji deleted": "Emoji deleted",
|
||||
"I'm sure – Delete": "I'm sure – Delete",
|
||||
@@ -644,17 +663,19 @@
|
||||
"Unsubscribed from document": "Belgeden abonelik iptal edildi",
|
||||
"Unsubscribed from collection": "Koleksiyondan abonelik iptal edildi",
|
||||
"Account": "Hesap",
|
||||
"API & Apps": "API & Uygulamalar",
|
||||
"API & Access": "API & Access",
|
||||
"Details": "Ayrıntılar",
|
||||
"Authentication": "Authentication",
|
||||
"Security": "Güvenlik",
|
||||
"Features": "Özellikler",
|
||||
"AI": "AI",
|
||||
"API Keys": "API Anahtarları",
|
||||
"Applications": "Uygulamalar",
|
||||
"Shared Links": "Paylaşılan Bağlantılar",
|
||||
"Import": "İçe aktar",
|
||||
"Install": "Yükle",
|
||||
"Embeds": "Embeds",
|
||||
"Configure which embed providers are available in the editor.": "Configure which embed providers are available in the editor.",
|
||||
"Integrations": "Entegrasyonlar",
|
||||
"Install": "Yükle",
|
||||
"Change name": "Adı değiştir",
|
||||
"Change email": "E-postayı değiştir",
|
||||
"Suspend user": "Kullanıcıyı askıya al",
|
||||
@@ -685,8 +706,8 @@
|
||||
"Headings you add to the document will appear here": "Belgeye eklediğiniz başlıklar burada görünecek",
|
||||
"Contents": "İçindekiler",
|
||||
"Table of contents": "İçindekiler",
|
||||
"Template options": "Template options",
|
||||
"User options": "Kullanıcı seçenekleri",
|
||||
"template": "şablon",
|
||||
"document": "belge",
|
||||
"Export complete": "Export complete",
|
||||
"Export failed": "Export failed",
|
||||
@@ -812,23 +833,15 @@
|
||||
"Sorry, the last change could not be persisted – please reload the page": "Üzgünüz, son değişiklik kalıcı hale getirilemedi – lütfen sayfayı yeniden yükleyin",
|
||||
"{{ count }} days": "{{ count }} gün",
|
||||
"{{ count }} days_plural": "{{ count }} gün",
|
||||
"This template will be permanently deleted in <2></2> unless restored.": "Bu şablon, geri yüklenmedikçe <2></2> içinde kalıcı olarak silinecektir.",
|
||||
"This document will be permanently deleted in <2></2> unless restored.": "Bu belge, geri yüklenmedikçe <2></2> içinde kalıcı olarak silinecektir.",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Bir metni vurgulayın ve <1></1> kontrolünü kullanarak yeni belgeler oluşturulurken doldurulabilecek yer tutucular ekleyin",
|
||||
"You’re editing a template": "Bir şablonu düzenliyorsunuz",
|
||||
"Deleted by {{userName}}": "{{userName}} tarafından silindi",
|
||||
"Observing {{ userName }}": "{{ userName }} gözlemliyor",
|
||||
"Backlinks": "Geri bağlantılar",
|
||||
"This document is large which may affect performance": "Bu belge büyük, bu da performansı etkileyebilir",
|
||||
"Are you sure you want to delete the <em>{{ documentTitle }}</em> template?": "<em>{{ documentTitle }}</em> şablonunu silmek istediğinizden emin misiniz?",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history</em>.": "Bundan emin misiniz? <em>{{ documentTitle }}</em> belgesini silmek, tüm geçmişini silecektir.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>.": "Bundan emin misiniz? <em>{{ documentTitle }}</em> belgesini silmek, tüm geçmişini ve <em>{{ any }} iç içe belgeyi</em> silecektir.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>._plural": "Bundan emin misiniz? <em>{{ documentTitle }}</em> belgesini silmek, tüm geçmişini ve <em>{{ any }} iç içe belgeyi</em> silecektir.",
|
||||
"If you’d like the option of referencing or restoring the {{noun}} in the future, consider archiving it instead.": "Gelecekte {{noun}}'a referans verme veya geri yükleme seçeneğini istiyorsanız, bunun yerine onu arşivlemeyi düşünün.",
|
||||
"Select a location to move": "Taşımak için bir konum seçin",
|
||||
"Document moved": "Belge taşındı",
|
||||
"Couldn’t move the document, try again?": "Belge taşınamadı, tekrar deneyin?",
|
||||
"Move to <em>{{ location }}</em>": "<em>{{ location }}</em> konumuna taşı",
|
||||
"Couldn’t create the document, try again?": "Belge oluşturulamadı, tekrar deneyin?",
|
||||
"Document permanently deleted": "Belge kalıcı olarak silindi",
|
||||
"Are you sure you want to permanently delete the <em>{{ documentTitle }}</em> document? This action is immediate and cannot be undone.": "<em>{{ documentTitle }}</em> belgesini kalıcı olarak silmek istediğinizden emin misiniz? Bu işlem hemen yapılır ve geri alınamaz.",
|
||||
@@ -885,7 +898,6 @@
|
||||
"Open this guide": "Bu kılavuzu aç",
|
||||
"Enter": "Giriş",
|
||||
"Publish document and exit": "Belgeyi yayınla ve çık",
|
||||
"Save document": "Belgeyi kaydet",
|
||||
"Cancel editing": "Düzenlemeyi iptal et",
|
||||
"Collaboration": "İşbirliği",
|
||||
"Formatting": "Biçimlendirme",
|
||||
@@ -978,11 +990,14 @@
|
||||
"An error occurred": "Bir hata oluştu",
|
||||
"The OAuth client could not be found, please check the provided client ID": "OAuth istemcisi bulunamadı, lütfen sağlanan istemci kimliğini kontrol edin",
|
||||
"The OAuth client could not be loaded, please check the redirect URI is valid": "OAuth istemcisi yüklenemedi, lütfen yönlendirme URI'sinin geçerli olup olmadığını kontrol edin",
|
||||
"The OAuth client could not be loaded, please check your workspace subdomain is correct": "The OAuth client could not be loaded, please check your workspace subdomain is correct",
|
||||
"Required OAuth parameters are missing": "Gerekli OAuth parametreleri eksik",
|
||||
"Authorize": "Yetkilendir",
|
||||
"{{ appName }} wants to access {{ teamName }}": "{{ appName }}, {{ teamName }}'e erişmek istiyor",
|
||||
"By <em>{{ developerName }}</em>": "Geliştirici: <em>{{ developerName }}</em>",
|
||||
"{{ appName }} will be able to access your account and perform the following actions": "{{ appName }}, hesabınıza erişebilecek ve aşağıdaki eylemleri gerçekleştirebilecek",
|
||||
"You will be redirected to a local application after authorizing.": "You will be redirected to a local application after authorizing.",
|
||||
"You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.": "You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.",
|
||||
"read": "oku",
|
||||
"write": "yaz",
|
||||
"read and write": "oku ve yaz",
|
||||
@@ -1156,6 +1171,8 @@
|
||||
"Last accessed": "Son erişim",
|
||||
"Domain": "Alan adı",
|
||||
"Views": "Görüntüleme",
|
||||
"Visibility": "Visibility",
|
||||
"Updated by": "Updated by",
|
||||
"All roles": "Tüm roller",
|
||||
"Admins": "Yöneticiler",
|
||||
"Editors": "Düzenleyiciler",
|
||||
@@ -1188,15 +1205,26 @@
|
||||
"Your workspace will be accessible at": "Çalışma alanınıza şu adresten erişilebilecek:",
|
||||
"Choose a subdomain to enable a login page just for your team.": "Yalnızca ekibiniz için bir giriş sayfasını etkinleştirmek üzere bir alt alan adı seçin.",
|
||||
"This is the screen that workspace members will first see when they sign in.": "Bu, çalışma alanı üyelerinin oturum açtıklarında ilk göreceği ekrandır.",
|
||||
"Danger": "Tehlike",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "Koleksiyonlar, belgeler ve kullanıcılar dahil olmak üzere bu çalışma alanının tamamını silebilirsiniz.",
|
||||
"Export data": "Verileri dışa aktar",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "Tam bir dışa aktarma biraz zaman alabilir, tek bir belge veya koleksiyonu dışa aktarmayı düşünün. Dışa aktarma başladıktan sonra bu sayfadan ayrılabilirsiniz – bildirimleriniz etkinse, tamamlandığında <em>{{ userEmail }}</em> adresine bir bağlantı e-postayla gönderilecektir.",
|
||||
"Recent exports": "Son dışa aktarmalar",
|
||||
"Manage optional and beta features. Changing these settings will affect the experience for all members of the workspace.": "İsteğe bağlı ve beta özelliklerini yönetin. Bu ayarları değiştirmek, çalışma alanının tüm üyeleri için deneyimi etkileyecektir.",
|
||||
"Separate editing": "Ayrı düzenleme",
|
||||
"When enabled documents have a separate editing mode by default instead of being always editable. This setting can be overridden by user preferences.": "Etkinleştirildiğinde, belgeler her zaman düzenlenebilir olmak yerine varsayılan olarak ayrı bir düzenleme moduna sahip olur. Bu ayar kullanıcı tercihleri tarafından geçersiz kılınabilir.",
|
||||
"When enabled team members can add comments to documents.": "Etkinleştirildiğinde ekip üyeleri belgelere yorum ekleyebilir.",
|
||||
"Danger": "Tehlike",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "Koleksiyonlar, belgeler ve kullanıcılar dahil olmak üzere bu çalışma alanının tamamını silebilirsiniz.",
|
||||
"Enabled": "Enabled",
|
||||
"Allow supported providers to be inserted as interactive embeds in documents.": "Allow supported providers to be inserted as interactive embeds in documents.",
|
||||
"Providers": "Providers",
|
||||
"Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.": "Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.",
|
||||
"All providers": "All providers",
|
||||
"Export data": "Verileri dışa aktar",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "Tam bir dışa aktarma biraz zaman alabilir, tek bir belge veya koleksiyonu dışa aktarmayı düşünün. Dışa aktarma başladıktan sonra bu sayfadan ayrılabilirsiniz – bildirimleriniz etkinse, tamamlandığında <em>{{ userEmail }}</em> adresine bir bağlantı e-postayla gönderilecektir.",
|
||||
"Recent exports": "Son dışa aktarmalar",
|
||||
"Manage AI and integration features for your workspace.": "Manage AI and integration features for your workspace.",
|
||||
"MCP server": "MCP server",
|
||||
"Allow members to connect to this workspace with MCP to read and write data.": "Allow members to connect to this workspace with MCP to read and write data.",
|
||||
"Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.": "Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.",
|
||||
"Copy URL": "Copy URL",
|
||||
"AI answers": "Yapay Zeka yanıtları",
|
||||
"Use AI to get direct answers to questions in search. This feature requires a paid license.": "Use AI to get direct answers to questions in search. This feature requires a paid license.",
|
||||
"Create a group": "Bir grup oluştur",
|
||||
"Could not load groups": "Gruplar yüklenemedi",
|
||||
"New group": "Yeni grup",
|
||||
@@ -1288,8 +1316,6 @@
|
||||
"When enabled, viewers can see download options for documents": "Etkinleştirildiğinde, görüntüleyiciler belgeler için indirme seçeneklerini görebilir",
|
||||
"Users can delete account": "Kullanıcılar hesabı silebilir",
|
||||
"When enabled, users can delete their own account from the workspace": "Etkinleştirildiğinde, kullanıcılar kendi hesaplarını çalışma alanından silebilirler",
|
||||
"Rich service embeds": "Zengin hizmet yerleştirmeleri",
|
||||
"Links to supported services are shown as rich embeds within your documents": "Desteklenen hizmetlere bağlantılar, belgelerinizde zengin yerleştirmeler olarak gösterilir",
|
||||
"Email address visibility": "Email address visibility",
|
||||
"Controls who can see user email addresses in the workspace": "Controls who can see user email addresses in the workspace",
|
||||
"Collection creation": "Koleksiyon oluşturma",
|
||||
@@ -1300,9 +1326,10 @@
|
||||
"Sharing is currently disabled.": "Paylaşım şu anda devre dışı.",
|
||||
"You can globally enable and disable public document sharing in the <em>security settings</em>.": "Herkese açık belge paylaşımını <em>güvenlik ayarlarında</em> genel olarak etkinleştirebilir ve devre dışı bırakabilirsiniz.",
|
||||
"Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.": "Paylaşılan belgeler aşağıda listelenmiştir. Genel bağlantıya sahip olan herkes, bağlantı iptal edilene kadar belgenin salt okunur bir sürümüne erişebilir.",
|
||||
"You can create templates to help your team create consistent and accurate documentation.": "Ekibinizin tutarlı ve doğru belgeler oluşturmasına yardımcı olacak şablonlar oluşturabilirsiniz.",
|
||||
"Alphabetical": "Alfabetik",
|
||||
"There are no templates just yet.": "Henüz şablon yok.",
|
||||
"A template must have content": "A template must have content",
|
||||
"Could not load templates": "Could not load templates",
|
||||
"Templates help your team create consistent and accurate documentation.": "Templates help your team create consistent and accurate documentation.",
|
||||
"No templates have been created yet": "No templates have been created yet",
|
||||
"{{ teamName }} is using {{ appName }} to share documents, please login to continue.": "{{ teamName }}, belgeleri paylaşmak için {{ appName }} kullanıyor, devam etmek için lütfen giriş yapın.",
|
||||
"A confirmation code has been sent to your email address, please enter the code below to permanently destroy this workspace.": "E-posta adresinize bir onay kodu gönderildi, bu çalışma alanını kalıcı olarak yok etmek için lütfen kodu aşağıya girin.",
|
||||
"Confirmation code": "Onay kodu",
|
||||
@@ -1363,7 +1390,6 @@
|
||||
"New Attribute": "Yeni Özellik",
|
||||
"Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.": "Özellikler, belgelerinizle birlikte depolanacak verileri tanımlamanıza olanak tanır. Özel özellikler, meta veriler veya belgeler arasında ortak olan diğer yapılandırılmış bilgileri depolamak için kullanılabilirler.",
|
||||
"Custom domain": "Özel alan adı",
|
||||
"AI answers": "Yapay Zeka yanıtları",
|
||||
"Use AI to directly answer searched questions using content in your workspace.": "Çalışma alanınızdaki içeriği kullanarak aranan soruları doğrudan yanıtlamak için Yapay Zekayı kullanın.",
|
||||
"API access": "API erişimi",
|
||||
"Allow members to create API keys for programmatic access": "Üyelerin programlı erişim için API anahtarları oluşturmasına izin ver",
|
||||
@@ -1413,6 +1439,27 @@
|
||||
"Enabled by {{integrationCreatedBy}}": "{{integrationCreatedBy}} tarafından etkinleştirildi",
|
||||
"Disconnecting will prevent previewing GitHub links from this organization in documents. Are you sure?": "Bağlantının kesilmesi, belgelerdeki bu organizasyondan gelen GitHub bağlantılarının önizlenmesini engelleyecektir. Emin misiniz?",
|
||||
"The GitHub integration is currently disabled. Please set the associated environment variables and restart the server to enable the integration.": "GitHub entegrasyonu şu anda devre dışı. Lütfen ilişkili ortam değişkenlerini ayarlayın ve entegrasyonu etkinleştirmek için sunucuyu yeniden başlatın.",
|
||||
"Connect GitLab": "Connect GitLab",
|
||||
"Enter the details for your GitLab instance.": "Enter the details for your GitLab instance.",
|
||||
"GitLab URL": "GitLab URL",
|
||||
"URL must start with https": "URL must start with https",
|
||||
"Client ID": "Client ID",
|
||||
"OAuth application ID": "OAuth application ID",
|
||||
"Client Secret": "Client Secret",
|
||||
"OAuth application secret": "OAuth application secret",
|
||||
"Connecting": "Connecting",
|
||||
"Choose which GitLab instance to connect to.": "Choose which GitLab instance to connect to.",
|
||||
"GitLab Cloud": "GitLab Cloud",
|
||||
"Connect to your account on gitlab.com": "Connect to your account on gitlab.com",
|
||||
"GitLab Cloud credentials are not configured": "GitLab Cloud credentials are not configured",
|
||||
"Self-managed": "Self-managed",
|
||||
"Connect to a custom GitLab installation": "Connect to a custom GitLab installation",
|
||||
"You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?": "You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?",
|
||||
"The GitLab account is already connected to this workspace.": "The GitLab account is already connected to this workspace.",
|
||||
"Something went wrong while authenticating your request. Please try again.": "Something went wrong while authenticating your request. Please try again.",
|
||||
"The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.": "The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.",
|
||||
"Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.": "Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.",
|
||||
"Disconnecting will prevent previewing links from GitLab in documents. Are you sure?": "Disconnecting will prevent previewing links from GitLab in documents. Are you sure?",
|
||||
"Google Analytics": "Google Analytics",
|
||||
"Add a Google Analytics 4 measurement ID to send document views and analytics from the workspace to your own Google Analytics account.": "Çalışma alanından belge görünümlerini ve analizleri kendi Google Analytics hesabınıza göndermek için bir Google Analytics 4 ölçüm kimliği ekleyin.",
|
||||
"Measurement ID": "Ölçüm Kimliği",
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
"Collection permissions": "Дозволи на колекцію",
|
||||
"Share this collection": "Поділитися цією колекцією",
|
||||
"Import document": "Імпортувати документ",
|
||||
"Uploading": "Завантажується",
|
||||
"Sort in sidebar": "Сортувати на бічній панелі",
|
||||
"A-Z sort": "Сортування A-Я",
|
||||
"Z-A sort": "Сортування Я-А",
|
||||
@@ -53,8 +54,9 @@
|
||||
"Development": "Розробка",
|
||||
"Open document": "Відкрити документ",
|
||||
"New draft": "Нова чернетка",
|
||||
"New from template": "Новий з шаблону",
|
||||
"New nested document": "Новий вкладений документ",
|
||||
"Nested document": "Вкладений документ",
|
||||
"Before": "До",
|
||||
"After": "Після",
|
||||
"Publish": "Зробити публічним",
|
||||
"Published {{ documentName }}": "Опубліковано {{ documentName }}",
|
||||
"Publish document": "Опублікувати документ",
|
||||
@@ -64,7 +66,7 @@
|
||||
"Share this document": "Поділитися цим документом",
|
||||
"Download": "Завантажити",
|
||||
"Download document": "Завантажити документ",
|
||||
"Download as Markdown": "Download as Markdown",
|
||||
"Download as Markdown": "Завантажити як Markdown",
|
||||
"Download as HTML": "Завантажити як HTML",
|
||||
"Download as PDF": "Завантажити як PDF",
|
||||
"Copy as Markdown": "Скопіювати як Markdown",
|
||||
@@ -91,9 +93,7 @@
|
||||
"Create template": "Створити шаблон",
|
||||
"Open random document": "Відкрити випадковий документ",
|
||||
"Search documents for \"{{searchQuery}}\"": "Шукати в документах \"{{searchQuery}}\"",
|
||||
"Move to workspace": "Перемістити в робоче середовище",
|
||||
"Move": "Перемістити",
|
||||
"Move to collection": "Перемістити до колекції",
|
||||
"Move {{ documentType }}": "Перемістити {{ documentType }}",
|
||||
"Are you sure you want to archive this document?": "Ви впевнені, що хочете архівувати цей документ?",
|
||||
"Document archived": "Документ архівовано",
|
||||
@@ -165,6 +165,15 @@
|
||||
"New workspace": "Новий робочий простір",
|
||||
"Create a workspace": "Створити робочий простір",
|
||||
"Login to workspace": "Увійти в робоче середовище",
|
||||
"Template deleted": "Шаблон видалено",
|
||||
"Deleting": "Видаляємо",
|
||||
"Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.": "Ви впевнені? Видалення шаблону <em>{{ templateName }}</em> є незворотним.",
|
||||
"Move to workspace": "Перемістити в робоче середовище",
|
||||
"Template moved": "Шаблон переміщено",
|
||||
"Couldn't move the template, try again?": "Не вдалося перемістити шаблон, спробувати знову?",
|
||||
"Move to collection": "Перемістити до колекції",
|
||||
"Move template": "Перемістити шаблон",
|
||||
"Print template": "Друкувати шаблон",
|
||||
"Invite people": "Запросити інших",
|
||||
"Invite to workspace": "Запросити в робоче середовище",
|
||||
"Promote to {{ role }}": "Підвищити до {{ role }}",
|
||||
@@ -176,6 +185,7 @@
|
||||
"Debug": "Режим налагодження",
|
||||
"Document": "Документ",
|
||||
"Documents": "Документи",
|
||||
"Template": "Шаблон",
|
||||
"Recently viewed": "Нещодавно переглянуті",
|
||||
"Revision": "Версія",
|
||||
"Navigation": "Навігація",
|
||||
@@ -195,6 +205,7 @@
|
||||
"Collections are used to group documents and choose permissions": "Колекції використовуються для групування документів та вибору прав доступу",
|
||||
"Name": "Назва",
|
||||
"The default access for workspace members, you can share with more users or groups later.": "За замовчуванням доступ до членів робочої області, ви можете поділитися з більшою кількістю користувачів або груп пізніше.",
|
||||
"Advanced options": "Розширені параметри",
|
||||
"Public document sharing": "Публічний обмін документами",
|
||||
"Allow documents within this collection to be shared publicly on the internet.": "Дозволити документам у цій колекції публічно ділитись в інтернеті.",
|
||||
"Commenting": "Коментування",
|
||||
@@ -205,10 +216,10 @@
|
||||
"Create": "Створити",
|
||||
"Collection deleted": "Колекцію видалено",
|
||||
"I’m sure – Delete": "Я впевнений – Видалити",
|
||||
"Deleting": "Видаляємо",
|
||||
"Are you sure about that? Deleting the <em>{{collectionName}}</em> collection is permanent and cannot be restored, however all published documents within will be moved to the trash.": "Ви впевнені в цьому? Видалення колекції <em>{{collectionName}}</em> є остаточним і не підлягає відновленню, однак усі опубліковані документи буде переміщено до кошика.",
|
||||
"Also, <em>{{collectionName}}</em> is being used as the start view – deleting it will reset the start view to the Home page.": "Крім того, <em>{{collectionName}}</em> використовується як стартова сторінка – її видалення скине стартову сторінку до домашньої сторінки.",
|
||||
"Type a command or search": "Введіть команду або текст для пошуку",
|
||||
"New from template": "Новий з шаблону",
|
||||
"Choose a template": "Виберіть шаблон",
|
||||
"Are you sure you want to permanently delete this entire comment thread?": "Ви впевнені, що бажаєте остаточно видалити весь цей ланцюжок коментарів?",
|
||||
"Are you sure you want to permanently delete this comment?": "Ви впевнені, що хочете остаточно видалити цей коментар?",
|
||||
@@ -227,12 +238,6 @@
|
||||
"Deleted Collection": "Видалена колекція",
|
||||
"Untitled": "Без назви",
|
||||
"Unpin": "Відкріпити",
|
||||
"Select a location to copy": "Виберіть місце для копіювання",
|
||||
"Document copied": "Документ скопійовано",
|
||||
"Couldn’t copy the document, try again?": "Не вдалося скопіювати документ, спробуйте ще раз?",
|
||||
"Include nested documents": "Включаючи вкладені документи",
|
||||
"Copy to <em>{{ location }}</em>": "Скопіювати до <em>{{ location }}</em>",
|
||||
"Copying": "Копіювання",
|
||||
"Export started": "Експорт розпочато",
|
||||
"A link to your file will be sent through email soon": "Найближчим часом буде надіслано посилання на ваш файл",
|
||||
"Preparing your download": "Підготовка завантаження",
|
||||
@@ -242,13 +247,24 @@
|
||||
"Include child documents": "Включити дочірні документи",
|
||||
"When selected, exporting the document <em>{{documentName}}</em> may take some time.": "Після вибору, експорт документа <em>{{documentName}}</em> може зайняти деякий час.",
|
||||
"You will receive an email when it's complete.": "Ви отримаєте електронного листа після його завершення.",
|
||||
"Select a location to copy": "Виберіть місце для копіювання",
|
||||
"Document copied": "Документ скопійовано",
|
||||
"Couldn’t copy the document, try again?": "Не вдалося скопіювати документ, спробуйте ще раз?",
|
||||
"Include nested documents": "Включаючи вкладені документи",
|
||||
"Copy to <em>{{ location }}</em>": "Скопіювати до <em>{{ location }}</em>",
|
||||
"Copying": "Копіювання",
|
||||
"Search collections & documents": "Пошук колекцій і документів",
|
||||
"Search collections": "Пошук збірок",
|
||||
"No results found": "Результатів не знайдено",
|
||||
"Select a location to move": "Виберіть місце для переміщення",
|
||||
"Document moved": "Документ переміщено",
|
||||
"Couldn’t move the document, try again?": "Не вдалося перемістити документ, повторіть спробу?",
|
||||
"Move to <em>{{ location }}</em>": "Перемістити в <em>{{ location }}</em>",
|
||||
"Couldn’t move the template, try again?": "Не вдалося перемістити шаблон, спробувати знову?",
|
||||
"Document options": "Налаштування документа",
|
||||
"New": "Новий",
|
||||
"Only visible to you": "Видно лише вам",
|
||||
"Draft": "Чернетка",
|
||||
"Template": "Шаблон",
|
||||
"You updated": "Ви оновили",
|
||||
"{{ userName }} updated": "Оновлено {{ userName }}",
|
||||
"You deleted": "Ви видалили",
|
||||
@@ -278,7 +294,6 @@
|
||||
"Please enter a name for the emoji": "Будь ласка, введіть назву для емодзі",
|
||||
"Please select an image file": "Будь ласка, виберіть зображення",
|
||||
"Emoji created successfully": "Емодзі успішно створено",
|
||||
"Uploading": "Завантажується",
|
||||
"Add emoji": "Додати емодзі",
|
||||
"Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.": "Квадратні зображення з прозорим тлом найкраще працюють. Якщо ваше зображення завелике, ми спробуємо змінити розмір для вас.",
|
||||
"Upload an image": "Завантажити зображення",
|
||||
@@ -393,12 +408,12 @@
|
||||
"Reaction picker": "Вибір реакцій",
|
||||
"Could not load reactions": "Не вдалося завантажити реакції",
|
||||
"Reaction": "Реакції",
|
||||
"{{ hours }}h {{ minutes }}m read": "{{ hours }}h {{ minutes }}m read",
|
||||
"{{ hours }}h read": "{{ hours }}h read",
|
||||
"{{ minutes }}m read": "{{ minutes }}m read",
|
||||
"{{ hours }}h {{ minutes }}m read": "{{ hours }} год {{ minutes }} хв читання",
|
||||
"{{ hours }}h read": "{{ hours }} год читання",
|
||||
"{{ minutes }}m read": "{{ minutes }} хв читання",
|
||||
"Revision deleted": "Версія видалена",
|
||||
"{{count}} people": "{{count}} person",
|
||||
"{{count}} people_plural": "{{count}} people",
|
||||
"{{count}} people": "{{count}} людина",
|
||||
"{{count}} people_plural": "{{count}} людей",
|
||||
"Current version": "Поточна версія",
|
||||
"{{userName}} edited": "{{userName}} відредаговано",
|
||||
"Revision options": "Варіанти перегляду",
|
||||
@@ -417,17 +432,17 @@
|
||||
"Publish to internet": "Опублікувати в інтернеті",
|
||||
"Search engine indexing": "Індексація пошуковою системою",
|
||||
"Disable this setting to discourage search engines from indexing the page": "Вимкніть цей параметр, щоб заборонити пошуковій системі індексувати сторінку",
|
||||
"Show last modified": "Show last modified",
|
||||
"Display the last modified timestamp on the shared page": "Display the last modified timestamp on the shared page",
|
||||
"Show last modified": "Показати останні зміни",
|
||||
"Display the last modified timestamp on the shared page": "Показувати час останньої зміни на спільній сторінці",
|
||||
"Show table of contents": "Показ змісту",
|
||||
"Display the table of contents on documents by default": "Display the table of contents on documents by default",
|
||||
"All documents in this collection will be shared on the web, including any new documents added later": "All documents in this collection will be shared on the web, including any new documents added later",
|
||||
"Display the table of contents on documents by default": "Показувати зміст документів за замовчуванням",
|
||||
"All documents in this collection will be shared on the web, including any new documents added later": "Всі документи у цій колекції будуть опубліковані в Інтернеті, включаючи будь-які нові документи, додані пізніше",
|
||||
"Invite": "Запросити",
|
||||
"{{ userName }} was added to the collection": "{{ userName }} додано до колекції",
|
||||
"{{ count }} people added to the collection": "{{ count }} people added to the collection",
|
||||
"{{ count }} people added to the collection_plural": "{{ count }} people added to the collection",
|
||||
"{{ count }} people and {{ count2 }} groups added to the collection": "{{ count }} people and {{ count2 }} groups added to the collection",
|
||||
"{{ count }} people and {{ count2 }} groups added to the collection_plural": "{{ count }} people and {{ count2 }} groups added to the collection",
|
||||
"{{ count }} people added to the collection": "{{ count }} людей додано до колекції",
|
||||
"{{ count }} people added to the collection_plural": "{{ count }} людей додано до колекції",
|
||||
"{{ count }} people and {{ count2 }} groups added to the collection": "До колекції додано {{ count }} людей та {{ count2 }} групи",
|
||||
"{{ count }} people and {{ count2 }} groups added to the collection_plural": "До колекції додано {{ count }} людей та {{ count2 }} групи",
|
||||
"Switch to dark": "Увімкнути темну тему",
|
||||
"Switch to light": "Увімкнути світлу тему",
|
||||
"Add": "Додати",
|
||||
@@ -442,7 +457,7 @@
|
||||
"You have full access": "У вас є повний доступ",
|
||||
"Other people": "Інші люди",
|
||||
"Other workspace members may have access": "Інші члени робочої області можуть мати доступ",
|
||||
"This document may be shared with more workspace members through a parent document or collection you do not have access to": "This document may be shared with more workspace members through a parent document or collection you do not have access to",
|
||||
"This document may be shared with more workspace members through a parent document or collection you do not have access to": "Цей документ може бути доступний іншим учасникам робочого простору через батьківський документ або добірку, до яких ви не маєте доступу",
|
||||
"Access inherited from collection": "Доступ успадковано від колекції",
|
||||
"{{ userName }} was removed from the document": "{{ userName }} було видалено з документа",
|
||||
"Could not remove user": "Не вдалось вилучити користувача",
|
||||
@@ -454,45 +469,48 @@
|
||||
"Active <1></1> ago": "Активний <1></1> тому",
|
||||
"Never signed in": "Ніколи не авторизувався",
|
||||
"Leave": "Вихід",
|
||||
"Anyone with the link can access because the containing collection, <2>{sharedParent.sourceTitle}</2>, is shared": "Anyone with the link can access because the containing collection, <2>{sharedParent.sourceTitle}</2>, is shared",
|
||||
"Anyone with the link can access because the parent document, <2>{sharedParent.sourceTitle}</2>, is shared": "Anyone with the link can access because the parent document, <2>{sharedParent.sourceTitle}</2>, is shared",
|
||||
"Anyone with the link can access because the containing collection, <2>{sharedParent.sourceTitle}</2>, is shared": "Будь-хто з посиланням може отримати доступ, оскільки батьківська колекція <2>{sharedParent.sourceTitle}</2>, публічна",
|
||||
"Anyone with the link can access because the parent document, <2>{sharedParent.sourceTitle}</2>, is shared": "Будь-хто з посиланням може отримати доступ, оскільки батьківський документ <2>{sharedParent.sourceTitle}</2>, публічний",
|
||||
"Nested documents are not shared on the web. Toggle sharing to enable access, this will be the default behavior in the future": "Вкладені документи не поширюються в інтернеті. Ввімкніть спільний доступ для доступу, це буде типовою поведінкою в майбутньому",
|
||||
"{{ userName }} was added to the document": "{{ userName }} було додано до документа",
|
||||
"{{ count }} people added to the document": "{{ count }} people added to the document",
|
||||
"{{ count }} people added to the document_plural": "{{ count }} people added to the document",
|
||||
"{{ count }} groups added to the document": "{{ count }} groups added to the document",
|
||||
"{{ count }} groups added to the document_plural": "{{ count }} groups added to the document",
|
||||
"{{ count }} people added to the document": "{{ count }} людей було додано до документа",
|
||||
"{{ count }} people added to the document_plural": "{{ count }} людей було додано до документа",
|
||||
"{{ count }} groups added to the document": "{{ count }} груп було додано до документа",
|
||||
"{{ count }} groups added to the document_plural": "{{ count }} груп було додано до документа",
|
||||
"Logo": "Лого",
|
||||
"Expand sidebar": "Expand sidebar",
|
||||
"Collapse sidebar": "Collapse sidebar",
|
||||
"Expand sidebar": "Розгорнути бокову панель",
|
||||
"Collapse sidebar": "Згорнути бокову панель",
|
||||
"Archived collections": "Заархівовані колекції",
|
||||
"New doc": "Новий документ",
|
||||
"New nested document": "Новий вкладений документ",
|
||||
"Empty": "Порожньо",
|
||||
"No collections": "No collections",
|
||||
"No collections": "Колекції відсутні",
|
||||
"Collapse": "Згорнути",
|
||||
"Expand": "Розгорнути",
|
||||
"Document not supported – try Markdown, Plain text, HTML, or Word": "Документ не підтримується – спробуйте Markdown, TXT-файл, HTML або Word",
|
||||
"Import files": "Import files",
|
||||
"Import files": "Імпортувати файли",
|
||||
"Go back": "Назад",
|
||||
"Go forward": "Вперед",
|
||||
"Could not load shared documents": "Не вдалося завантажити спільні документи",
|
||||
"Shared with me": "Відкриті для мене",
|
||||
"Show more": "Показати більше",
|
||||
"Link options": "Link options",
|
||||
"Link options": "Параметри посилання",
|
||||
"Could not load starred documents": "Не вдалося завантажити обрані документи",
|
||||
"Starred": "Обране",
|
||||
"Up to date": "Остання версія",
|
||||
"{{ releasesBehind }} versions behind": "{{ releasesBehind }} версія позаду",
|
||||
"{{ releasesBehind }} versions behind_plural": "{{ releasesBehind }} версій позаду",
|
||||
"Change permissions?": "Змінити права доступу?",
|
||||
"{{ documentName }} cannot be moved within {{ parentDocumentName }}": "{{ documentName }} cannot be moved within {{ parentDocumentName }}",
|
||||
"{{ documentName }} cannot be moved within {{ parentDocumentName }}": "Переміщення документа «{{ documentName }}» у межах «{{ parentDocumentName }}» неможливе",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "Ви не можете змінити порядок документів у колекції, яка відсортована за алфавітом",
|
||||
"{{ documentName }} cannot be moved here": "{{ documentName }} cannot be moved here",
|
||||
"{{ documentName }} cannot be moved here": "Неможливо перемістити {{ documentName }} сюди",
|
||||
"Return to App": "Назад до програми",
|
||||
"Installation": "Встановлення",
|
||||
"Unstar document": "Видалити з обраного",
|
||||
"Star document": "Додати до обраного",
|
||||
"Select a color": "Виберіть колір",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Виділіть деякий текст і використовуйте контроль над <1></1> для додавання полів, які можуть бути заповнені при створенні нових документів",
|
||||
"You’re editing a template": "Ви редагуєте шаблон",
|
||||
"Template created, go ahead and customize it": "Шаблон створено, тепер налаштуйте його під ваші потреби",
|
||||
"Creating a template from <em>{{titleWithDefault}}</em> is a non-destructive action – we'll make a copy of the document and turn it into a template that can be used as a starting point for new documents.": "Створення шаблону з <em>{{titleWithDefault}}</em> не є руйнівною дією – ми зробимо копію документа та перетворимо її на шаблон, який можна використовувати як основу для нових документів.",
|
||||
"Enable other members to use the template immediately": "Дозволити іншим учасникам відразу використовувати шаблон",
|
||||
@@ -506,12 +524,12 @@
|
||||
"Are you sure you want to suspend {{ userName }}? Suspended users will be prevented from logging in.": "Ви впевнені, що хочете заблокувати {{ userName }}? Заблоковані користувачі не зможуть увійти.",
|
||||
"New name": "Нова назва",
|
||||
"Name can't be empty": "Назва не може бути незаповненою",
|
||||
"Check your email to verify the new address.": "Check your email to verify the new address.",
|
||||
"The email will be changed once verified.": "The email will be changed once verified.",
|
||||
"You will receive an email to verify your new address. It must be unique in the workspace.": "You will receive an email to verify your new address. It must be unique in the workspace.",
|
||||
"A confirmation email will be sent to the new address before it is changed.": "A confirmation email will be sent to the new address before it is changed.",
|
||||
"New email": "New email",
|
||||
"Email can't be empty": "Email can't be empty",
|
||||
"Check your email to verify the new address.": "Перевірте вашу електронну пошту для підтвердження нової адреси.",
|
||||
"The email will be changed once verified.": "Електронну пошту буде змінено після перевірки.",
|
||||
"You will receive an email to verify your new address. It must be unique in the workspace.": "Ви отримаєте електронний лист для підтвердження своєї нової адреси. Вона має бути унікальною у робочій області.",
|
||||
"A confirmation email will be sent to the new address before it is changed.": "На нову адресу буде надіслано лист із підтвердженням, перш ніж її буде змінено.",
|
||||
"New email": "Нова адреса електронної пошти",
|
||||
"Email can't be empty": "Поле для електронної адреси не може бути порожнім",
|
||||
"Your import completed": "Ваш імпорт завершено",
|
||||
"Previous match": "Попередній збіг",
|
||||
"Next match": "Наступний збіг",
|
||||
@@ -523,36 +541,36 @@
|
||||
"Replacement": "Заміна",
|
||||
"Replace": "Замінити",
|
||||
"Replace all": "Замінити все",
|
||||
"Image width": "Image width",
|
||||
"Width": "Width",
|
||||
"Image height": "Image height",
|
||||
"Height": "Height",
|
||||
"Image width": "Ширина зображення",
|
||||
"Width": "Ширина",
|
||||
"Image height": "Висота зображення",
|
||||
"Height": "Висота",
|
||||
"Profile picture": "Аватар",
|
||||
"Create a new doc": "Створіть новий документ",
|
||||
"{{ userName }} won't be notified, as they do not have access to this document": "{{ userName }} не буде повідомлено, тому що він не має доступу до цього документа",
|
||||
"Members of \"{{ groupName }}\" that have access to this document will be notified": "Members of \"{{ groupName }}\" that have access to this document will be notified",
|
||||
"Keep as link": "Keep as link",
|
||||
"Mention": "Mention",
|
||||
"Embed": "Embed",
|
||||
"Not supported": "Not supported",
|
||||
"More options": "More options",
|
||||
"Rename": "Rename",
|
||||
"Insert after": "Insert after",
|
||||
"Insert before": "Insert before",
|
||||
"Move up": "Move up",
|
||||
"Move down": "Move down",
|
||||
"Move left": "Move left",
|
||||
"Move right": "Move right",
|
||||
"Members of \"{{ groupName }}\" that have access to this document will be notified": "Учасники \"{{ groupName }}, які мають доступ до цього документа, будуть оповіщені",
|
||||
"Keep as link": "Зберегти як посилання",
|
||||
"Mention": "Згадка",
|
||||
"Embed": "Вставити",
|
||||
"Not supported": "Не підтримується",
|
||||
"More options": "Більше параметрів",
|
||||
"Rename": "Змінити назву",
|
||||
"Insert after": "Вставити після",
|
||||
"Insert before": "Вставити до",
|
||||
"Move up": "Підняти вгору",
|
||||
"Move down": "Опустити вниз",
|
||||
"Move left": "Посунути ліворуч",
|
||||
"Move right": "Посунути праворуч",
|
||||
"Align center": "Вирівняти по центру",
|
||||
"Align left": "Вирівняти по лівому краю",
|
||||
"Align right": "Вирівняти по правому краю",
|
||||
"Default width": "Default width",
|
||||
"Default width": "Стандартна ширина",
|
||||
"Full width": "На всю ширину",
|
||||
"Bulleted list": "Маркований список",
|
||||
"Todo list": "Список завдань",
|
||||
"Show {{ count }} completed": "Show {{ count }} completed",
|
||||
"Show {{ count }} completed_plural": "Show {{ count }} completed",
|
||||
"Hide completed": "Hide completed",
|
||||
"Show {{ count }} completed": "Показати {{ count }} виконаних",
|
||||
"Show {{ count }} completed_plural": "Показати {{ count }} виконаних",
|
||||
"Hide completed": "Приховати виконані",
|
||||
"Code block": "Блок коду",
|
||||
"Copied to clipboard": "Скопійовано в буфер обміну",
|
||||
"Code": "Код",
|
||||
@@ -571,7 +589,7 @@
|
||||
"Italic": "Курсив",
|
||||
"Sorry, that link won’t work for this embed type": "На жаль, це посилання не працюватиме для цього типу вставлення",
|
||||
"File attachment": "Вкладений файл",
|
||||
"Embed PDF": "Embed PDF",
|
||||
"Embed PDF": "Вставити PDF",
|
||||
"Enter a link": "Ввести посилання",
|
||||
"Big heading": "Великий заголовок",
|
||||
"Medium heading": "Середній заголовок",
|
||||
@@ -581,13 +599,13 @@
|
||||
"Divider": "Роздільник",
|
||||
"Image": "Зображення",
|
||||
"Sorry, an error occurred uploading the file": "На жаль, під час завантаження файлу сталася помилка",
|
||||
"Uploading… {{ progress }}%": "Uploading… {{ progress }}%",
|
||||
"Uploading… {{ progress }}%": "Вивантаження… {{ progress }}%",
|
||||
"Write a caption": "Напишіть підпис",
|
||||
"Info": "Інформація",
|
||||
"Info notice": "Інформаційне повідомлення",
|
||||
"Link": "Посилання",
|
||||
"Highlight": "Виділення",
|
||||
"Background color": "Background color",
|
||||
"Background color": "Колір фону",
|
||||
"Type '/' to insert": "Введіть '/', для вставки",
|
||||
"Keep typing to filter": "Продовжуйте вводити, щоб фільтрувати",
|
||||
"Open link": "Відкрити посилання",
|
||||
@@ -626,15 +644,16 @@
|
||||
"Outdent": "Відступ",
|
||||
"Video": "Відео",
|
||||
"None": "Нічого",
|
||||
"Toggle block": "Toggle block",
|
||||
"Add title": "Add title",
|
||||
"Add content": "Add content",
|
||||
"Toggle block": "Перемикач блоку",
|
||||
"Add title": "Додати заголовок",
|
||||
"Add content": "Додати вміст",
|
||||
"Delete embed": "Видалити вкладення",
|
||||
"Formatting controls": "Управління форматуванням",
|
||||
"Distribute columns": "Розподілити стовпці",
|
||||
"Wrap text": "Wrap text",
|
||||
"Delete Emoji": "Видалення емодзі",
|
||||
"Emoji deleted": "Емодзі видалено",
|
||||
"I'm sure – Delete": "I'm sure – Delete",
|
||||
"I'm sure – Delete": "Я впевнений – Видалити",
|
||||
"Are you sure you want to delete the <em>{{emojiName}}</em> emoji? You will no longer be able to use it in your documents or collections.": "Ви впевнені, що бажаєте видалити <em>{{emojiName}}</em> emoji? Ви більше не зможете використовувати його в ваших документах і колекціях.",
|
||||
"Group members": "Учасники групи",
|
||||
"Edit group": "Редагувати групу",
|
||||
@@ -644,17 +663,19 @@
|
||||
"Unsubscribed from document": "Відписано від документа",
|
||||
"Unsubscribed from collection": "Відписано від колекції",
|
||||
"Account": "Обліковий запис",
|
||||
"API & Apps": "API та додатки",
|
||||
"API & Access": "API & Access",
|
||||
"Details": "Деталі",
|
||||
"Authentication": "Authentication",
|
||||
"Authentication": "Автентифікація",
|
||||
"Security": "Безпека",
|
||||
"Features": "Фічі",
|
||||
"AI": "ШІ",
|
||||
"API Keys": "Ключі API",
|
||||
"Applications": "Додатки",
|
||||
"Shared Links": "Поширені посилання",
|
||||
"Import": "Імпортувати",
|
||||
"Install": "Встановити",
|
||||
"Embeds": "Embeds",
|
||||
"Configure which embed providers are available in the editor.": "Configure which embed providers are available in the editor.",
|
||||
"Integrations": "Інтеграції",
|
||||
"Install": "Встановити",
|
||||
"Change name": "Змінити ім'я",
|
||||
"Change email": "Змінити ел. скриньку",
|
||||
"Suspend user": "Тимчасово заблокувати користувача",
|
||||
@@ -669,11 +690,11 @@
|
||||
"Comment options": "Налаштування коментарів",
|
||||
"Enable viewer insights": "Увімкнути статистику перегляду",
|
||||
"Enable embeds": "Увімкнути вкладення",
|
||||
"Emoji options": "Emoji options",
|
||||
"Emoji options": "Опції емодзі",
|
||||
"File": "Файл",
|
||||
"Group options": "Налаштування групи",
|
||||
"Cancel": "Скасувати",
|
||||
"Import menu options": "Import menu options",
|
||||
"Import menu options": "Параметри меню імпорту",
|
||||
"New document in <em>{{ collectionName }}</em>": "Новий документ у <em>{{ collectionName }}</em>",
|
||||
"New child document": "Новий вкладений документ",
|
||||
"Save in workspace": "Зберегти в робочому просторі",
|
||||
@@ -685,12 +706,12 @@
|
||||
"Headings you add to the document will appear here": "Тут з’являться заголовки, які ви додасте до документа",
|
||||
"Contents": "Зміст",
|
||||
"Table of contents": "Зміст",
|
||||
"Template options": "Параметри шаблону",
|
||||
"User options": "Параметри користувача",
|
||||
"template": "шаблон",
|
||||
"document": "документ",
|
||||
"Export complete": "Export complete",
|
||||
"Export failed": "Export failed",
|
||||
"An unexpected error occurred": "An unexpected error occurred",
|
||||
"Export complete": "Експорт завершено",
|
||||
"Export failed": "Помилка експорту",
|
||||
"An unexpected error occurred": "Сталася неочікувана помилка",
|
||||
"published": "опубліковано",
|
||||
"edited": "відредаговано",
|
||||
"created the collection": "створено колекцію",
|
||||
@@ -703,17 +724,17 @@
|
||||
"invited you to": "вас запрошено до",
|
||||
"Choose a date": "Обрати дату",
|
||||
"API key created. Please copy the value now as it will not be shown again.": "Ключ API створено. Будь ласка, скопіюйте значення зараз, оскільки він більше не буде показуватись.",
|
||||
"Scopes": "Scopes",
|
||||
"Scopes": "Область дії",
|
||||
"Space-separated scopes restrict the access of this API key to specific parts of the API. Leave blank for full access": "Видимі пропуски через пробіл обмежують доступ цього ключа API до певних частин API. Залиште порожнім для повного доступу",
|
||||
"Expiration": "Дійсний до",
|
||||
"Never expires": "Необмежений термін дії",
|
||||
"7 days": "7 days",
|
||||
"30 days": "30 days",
|
||||
"60 days": "60 days",
|
||||
"90 days": "90 days",
|
||||
"No expiration": "No expiration",
|
||||
"7 days": "7 днів",
|
||||
"30 days": "За 30 днів",
|
||||
"60 days": "60 днів",
|
||||
"90 days": "90 днів",
|
||||
"No expiration": "Без терміну дії",
|
||||
"The document archive is empty at the moment.": "Архів документів на даний час порожній.",
|
||||
"Done editing": "Done editing",
|
||||
"Done editing": "Редагування завершено",
|
||||
"Drop documents to import": "Перетягніть документи для імпорту",
|
||||
"<em>{{ collectionName }}</em> doesn’t contain any\n documents yet.": "<em>{{ collectionName }}</em> ще не містить жодного\n документа.",
|
||||
"{{ usersCount }} users and {{ groupsCount }} groups with access": "{{ usersCount }} користувач і {{ groupsCount }} груп з доступом",
|
||||
@@ -724,8 +745,8 @@
|
||||
"{{ usersCount }} users with access_plural": "{{ usersCount }} користувачів з доступом",
|
||||
"{{ groupsCount }} groups with access": "{{ groupsCount }} група з доступом",
|
||||
"{{ groupsCount }} groups with access_plural": "{{ groupsCount }} груп з доступом",
|
||||
"Overview": "Overview",
|
||||
"Popular": "Popular",
|
||||
"Overview": "Огляд",
|
||||
"Popular": "Популярне",
|
||||
"Recently updated": "Нещодавно оновлені",
|
||||
"Recently published": "Нещодавно опубліковані",
|
||||
"Least recently updated": "Останнє оновлення",
|
||||
@@ -735,18 +756,18 @@
|
||||
"Add a description": "Додати опис",
|
||||
"Signing in": "Вхід",
|
||||
"You can safely close this window once the Outline desktop app has opened": "Ви можете закрити це вікно, після відкриття програми Outline",
|
||||
"{{ current }} of {{ count }} changes": "{{ current }} of {{ count }} changes",
|
||||
"{{ current }} of {{ count }} changes_plural": "{{ current }} of {{ count }} changes",
|
||||
"{{ count }} changes": "{{ count }} change",
|
||||
"{{ count }} changes_plural": "{{ count }} changes",
|
||||
"Previous change": "Previous change",
|
||||
"Next change": "Next change",
|
||||
"{{ current }} of {{ count }} changes": "{{ current }} зі {{ count }} змін",
|
||||
"{{ current }} of {{ count }} changes_plural": "{{ current }} зі {{ count }} змін",
|
||||
"{{ count }} changes": "{{ count }} зміна",
|
||||
"{{ count }} changes_plural": "{{ count }} змін",
|
||||
"Previous change": "Попередня зміна",
|
||||
"Next change": "Наступна зміна",
|
||||
"Error creating comment": "Помилка створення коментаря",
|
||||
"Add a comment": "Додати коментар",
|
||||
"Add a reply": "Додати відповідь",
|
||||
"Reply": "Відповісти",
|
||||
"Post": "Опублікувати",
|
||||
"Upload image": "Upload image",
|
||||
"Upload image": "Завантажувати зображення",
|
||||
"No resolved comments": "No resolved comments",
|
||||
"No comments yet": "Поки немає коментарів",
|
||||
"New comments": "New comments",
|
||||
@@ -794,11 +815,11 @@
|
||||
"Created": "Створено",
|
||||
"Imported from {{ source }}": "Imported from {{ source }}",
|
||||
"Stats": "Статистика",
|
||||
"{{ number }} minute read": "{{ number }} minute read",
|
||||
"{{ number }} minute read": "{{ number }} хвилин читання",
|
||||
"{{ number }} words": "{{ number }} word",
|
||||
"{{ number }} words_plural": "{{ number }} words",
|
||||
"{{ number }} characters": "{{ number }} character",
|
||||
"{{ number }} characters_plural": "{{ number }} characters",
|
||||
"{{ number }} characters_plural": "{{ number }} символів",
|
||||
"{{ number }} emoji": "{{ number }} емодзі",
|
||||
"No text selected": "Не вибрано жодного тексту",
|
||||
"{{ number }} words selected": "{{ number }} word selected",
|
||||
@@ -812,23 +833,15 @@
|
||||
"Sorry, the last change could not be persisted – please reload the page": "На жаль, не вдалося зберегти останню зміну – перезавантажте сторінку",
|
||||
"{{ count }} days": "{{ count }} day",
|
||||
"{{ count }} days_plural": "{{ count }} days",
|
||||
"This template will be permanently deleted in <2></2> unless restored.": "Цей шаблон буде остаточно видалено через <2></2> якщо не буде відновлено.",
|
||||
"This document will be permanently deleted in <2></2> unless restored.": "Цей шаблон буде остаточно видалено через <2></2> якщо не буде відновлено.",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Виділіть деякий текст і використовуйте контроль над <1></1> для додавання полів, які можуть бути заповнені при створенні нових документів",
|
||||
"You’re editing a template": "Ви редагуєте шаблон",
|
||||
"Deleted by {{userName}}": "Видалено {{userName}}",
|
||||
"Observing {{ userName }}": "Переглядається {{ userName }}",
|
||||
"Backlinks": "Зворотні посилання",
|
||||
"This document is large which may affect performance": "This document is large which may affect performance",
|
||||
"Are you sure you want to delete the <em>{{ documentTitle }}</em> template?": "Ви впевнені, що хочете видалити шаблон <em>{{ documentTitle }}</em>?",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history</em>.": "Ви впевнені в цьому? Видалення документа <em>{{ documentTitle }}</em> призведе до видалення всієї його історії</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>.": "Ви впевнені в цьому? Видалення документа <em>{{ documentTitle }}</em> призведе до видалення всієї його історії та <em>{{ any }} вкладених документів</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>._plural": "Ви впевнені в цьому? Видалення документа <em>{{ documentTitle }}</em> призведе до видалення всієї його історії та <em>{{ any }} вкладених документів</em>.",
|
||||
"If you’d like the option of referencing or restoring the {{noun}} in the future, consider archiving it instead.": "Якщо ви бажаєте мати можливість посилатися на {{noun}} або відновлювати його в майбутньому, подумайте про архівування.",
|
||||
"Select a location to move": "Виберіть місце для переміщення",
|
||||
"Document moved": "Документ переміщено",
|
||||
"Couldn’t move the document, try again?": "Не вдалося перемістити документ, повторіть спробу?",
|
||||
"Move to <em>{{ location }}</em>": "Перемістити в <em>{{ location }}</em>",
|
||||
"Couldn’t create the document, try again?": "Не вдалося створити документ, спробуємо ще раз?",
|
||||
"Document permanently deleted": "Документ видалено назавжди",
|
||||
"Are you sure you want to permanently delete the <em>{{ documentTitle }}</em> document? This action is immediate and cannot be undone.": "Ви впевнені, що бажаєте остаточно видалити документ <em>{{ documentTitle }}</em> ? Ця дія виконується негайно, її неможливо скасувати.",
|
||||
@@ -885,7 +898,6 @@
|
||||
"Open this guide": "Відкрити цей посібник",
|
||||
"Enter": "Ввести",
|
||||
"Publish document and exit": "Опублікувати документ та вийти",
|
||||
"Save document": "Зберегти документ",
|
||||
"Cancel editing": "Скасувати редагування",
|
||||
"Collaboration": "Співпраця",
|
||||
"Formatting": "Форматування",
|
||||
@@ -978,11 +990,14 @@
|
||||
"An error occurred": "Виникла помилка",
|
||||
"The OAuth client could not be found, please check the provided client ID": "Немає доступу до OAuth клієнта, будь ласка, перевірте вказаний ID клієнта",
|
||||
"The OAuth client could not be loaded, please check the redirect URI is valid": "Не вдалося завантажити клієнт OAuth, будь ласка, перевірте чи дійсний URI перенаправлення",
|
||||
"The OAuth client could not be loaded, please check your workspace subdomain is correct": "The OAuth client could not be loaded, please check your workspace subdomain is correct",
|
||||
"Required OAuth parameters are missing": "Необхідні параметри OAuth відсутні",
|
||||
"Authorize": "Авторизуватись",
|
||||
"{{ appName }} wants to access {{ teamName }}": "{{ appName }} хоче отримати доступ до {{ teamName }}",
|
||||
"By <em>{{ developerName }}</em>": "Від <em>{{ developerName }}</em>",
|
||||
"{{ appName }} will be able to access your account and perform the following actions": "{{ appName }} зможе отримати доступ до вашого облікового запису і виконувати наступні дії",
|
||||
"You will be redirected to a local application after authorizing.": "You will be redirected to a local application after authorizing.",
|
||||
"You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.": "You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.",
|
||||
"read": "читати",
|
||||
"write": "писати",
|
||||
"read and write": "читати і писати",
|
||||
@@ -1156,6 +1171,8 @@
|
||||
"Last accessed": "Останній доступ",
|
||||
"Domain": "Домен",
|
||||
"Views": "Перегляди",
|
||||
"Visibility": "Visibility",
|
||||
"Updated by": "Updated by",
|
||||
"All roles": "Всі ролі",
|
||||
"Admins": "Адміністратори",
|
||||
"Editors": "Редактори",
|
||||
@@ -1188,15 +1205,26 @@
|
||||
"Your workspace will be accessible at": "Ваша база знань буде доступна за адресою",
|
||||
"Choose a subdomain to enable a login page just for your team.": "Виберіть піддомен, щоб увімкнути сторінку входу лише для вашої команди.",
|
||||
"This is the screen that workspace members will first see when they sign in.": "Це екран, який члени робочого простору, спочатку побачать при вході в систему.",
|
||||
"Danger": "Небезпечно",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "Ви можете видалити всю робочу область, включаючи колекції, документи та користувачів.",
|
||||
"Export data": "Експортувати дані",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "Повний експорт може зайняти деякий час, спробуйте експортувати один документ або колекцію. Експортовані дані є архівом ваших документів у форматі Markdown. Ви можете залишити цю сторінку, коли експорт розпочнеться. Якщо у вас увімкнено сповіщення, ми надішлемо електронною поштою посилання на <em>{{ userEmail }}</em> , коли експорт буде завершено.",
|
||||
"Recent exports": "Останні експорти",
|
||||
"Manage optional and beta features. Changing these settings will affect the experience for all members of the workspace.": "Керувати додатковими та бета-функціями. Зміна цих налаштувань вплине на роботу всіх учасників робочого простору.",
|
||||
"Separate editing": "Роздільне редагування",
|
||||
"When enabled documents have a separate editing mode by default instead of being always editable. This setting can be overridden by user preferences.": "Якщо увімкнено, документи мають окремий режим редагування за замовчуванням замість того, щоб бути постійно в режимі редагування. Цей параметр може бути перевизначений налаштуваннями користувача.",
|
||||
"When enabled team members can add comments to documents.": "Якщо ввімкнено, члени команди можуть додавати коментарі до документів.",
|
||||
"Danger": "Небезпечно",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "Ви можете видалити всю робочу область, включаючи колекції, документи та користувачів.",
|
||||
"Enabled": "Enabled",
|
||||
"Allow supported providers to be inserted as interactive embeds in documents.": "Allow supported providers to be inserted as interactive embeds in documents.",
|
||||
"Providers": "Providers",
|
||||
"Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.": "Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.",
|
||||
"All providers": "All providers",
|
||||
"Export data": "Експортувати дані",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "Повний експорт може зайняти деякий час, спробуйте експортувати один документ або колекцію. Експортовані дані є архівом ваших документів у форматі Markdown. Ви можете залишити цю сторінку, коли експорт розпочнеться. Якщо у вас увімкнено сповіщення, ми надішлемо електронною поштою посилання на <em>{{ userEmail }}</em> , коли експорт буде завершено.",
|
||||
"Recent exports": "Останні експорти",
|
||||
"Manage AI and integration features for your workspace.": "Manage AI and integration features for your workspace.",
|
||||
"MCP server": "MCP server",
|
||||
"Allow members to connect to this workspace with MCP to read and write data.": "Allow members to connect to this workspace with MCP to read and write data.",
|
||||
"Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.": "Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.",
|
||||
"Copy URL": "Copy URL",
|
||||
"AI answers": "AI answers",
|
||||
"Use AI to get direct answers to questions in search. This feature requires a paid license.": "Use AI to get direct answers to questions in search. This feature requires a paid license.",
|
||||
"Create a group": "Створити групу",
|
||||
"Could not load groups": "Не вдалося завантажити групи",
|
||||
"New group": "Нова група",
|
||||
@@ -1288,8 +1316,6 @@
|
||||
"When enabled, viewers can see download options for documents": "Якщо ввімкнено, глядачі можуть бачити параметри завантаження документів",
|
||||
"Users can delete account": "Users can delete account",
|
||||
"When enabled, users can delete their own account from the workspace": "When enabled, users can delete their own account from the workspace",
|
||||
"Rich service embeds": "Вбудовані розширення Rich service",
|
||||
"Links to supported services are shown as rich embeds within your documents": "Посилання до підтримуваних сервісів показані як багатофункціональні вкладення у ваші документи",
|
||||
"Email address visibility": "Email address visibility",
|
||||
"Controls who can see user email addresses in the workspace": "Controls who can see user email addresses in the workspace",
|
||||
"Collection creation": "Створення колекції",
|
||||
@@ -1300,9 +1326,10 @@
|
||||
"Sharing is currently disabled.": "Наразі спільний доступ вимкнено.",
|
||||
"You can globally enable and disable public document sharing in the <em>security settings</em>.": "Ви можете глобально ввімкнути та вимкнути спільний доступ до публічних документів у <em>налаштуваннях безпеки</em>.",
|
||||
"Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.": "Нижче наведено документи, до яких надано спільний доступ. Будь-хто, хто має загальнодоступне посилання, може отримати доступ до версії документа лише для читання, доки посилання не буде відкликано.",
|
||||
"You can create templates to help your team create consistent and accurate documentation.": "Ви можете створювати шаблони, щоб допомогти вашій команді створювати послідовну та точну документацію.",
|
||||
"Alphabetical": "За алфавітом",
|
||||
"There are no templates just yet.": "Шаблонів поки що немає.",
|
||||
"A template must have content": "A template must have content",
|
||||
"Could not load templates": "Could not load templates",
|
||||
"Templates help your team create consistent and accurate documentation.": "Templates help your team create consistent and accurate documentation.",
|
||||
"No templates have been created yet": "No templates have been created yet",
|
||||
"{{ teamName }} is using {{ appName }} to share documents, please login to continue.": "{{ teamName }} використовує {{ appName }} для обміну документами, увійдіть, щоб продовжити.",
|
||||
"A confirmation code has been sent to your email address, please enter the code below to permanently destroy this workspace.": "Код підтвердження надіслано на вашу електронну пошту. Введіть код в поле нижче, щоб назавжди видалити цей робочий простір.",
|
||||
"Confirmation code": "Код підтвердження",
|
||||
@@ -1363,7 +1390,6 @@
|
||||
"New Attribute": "New Attribute",
|
||||
"Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.": "Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.",
|
||||
"Custom domain": "Custom domain",
|
||||
"AI answers": "AI answers",
|
||||
"Use AI to directly answer searched questions using content in your workspace.": "Use AI to directly answer searched questions using content in your workspace.",
|
||||
"API access": "API access",
|
||||
"Allow members to create API keys for programmatic access": "Allow members to create API keys for programmatic access",
|
||||
@@ -1413,6 +1439,27 @@
|
||||
"Enabled by {{integrationCreatedBy}}": "Enabled by {{integrationCreatedBy}}",
|
||||
"Disconnecting will prevent previewing GitHub links from this organization in documents. Are you sure?": "Disconnecting will prevent previewing GitHub links from this organization in documents. Are you sure?",
|
||||
"The GitHub integration is currently disabled. Please set the associated environment variables and restart the server to enable the integration.": "The GitHub integration is currently disabled. Please set the associated environment variables and restart the server to enable the integration.",
|
||||
"Connect GitLab": "Connect GitLab",
|
||||
"Enter the details for your GitLab instance.": "Enter the details for your GitLab instance.",
|
||||
"GitLab URL": "GitLab URL",
|
||||
"URL must start with https": "URL must start with https",
|
||||
"Client ID": "Client ID",
|
||||
"OAuth application ID": "OAuth application ID",
|
||||
"Client Secret": "Client Secret",
|
||||
"OAuth application secret": "OAuth application secret",
|
||||
"Connecting": "Connecting",
|
||||
"Choose which GitLab instance to connect to.": "Choose which GitLab instance to connect to.",
|
||||
"GitLab Cloud": "GitLab Cloud",
|
||||
"Connect to your account on gitlab.com": "Connect to your account on gitlab.com",
|
||||
"GitLab Cloud credentials are not configured": "GitLab Cloud credentials are not configured",
|
||||
"Self-managed": "Self-managed",
|
||||
"Connect to a custom GitLab installation": "Connect to a custom GitLab installation",
|
||||
"You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?": "You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?",
|
||||
"The GitLab account is already connected to this workspace.": "The GitLab account is already connected to this workspace.",
|
||||
"Something went wrong while authenticating your request. Please try again.": "Something went wrong while authenticating your request. Please try again.",
|
||||
"The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.": "The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.",
|
||||
"Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.": "Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.",
|
||||
"Disconnecting will prevent previewing links from GitLab in documents. Are you sure?": "Disconnecting will prevent previewing links from GitLab in documents. Are you sure?",
|
||||
"Google Analytics": "Google Аналітика",
|
||||
"Add a Google Analytics 4 measurement ID to send document views and analytics from the workspace to your own Google Analytics account.": "Додайте ідентифікатор вимірювання Google Analytics 4, щоб надсилати статистику переглядів документів і аналітику з робочого простору в свій обліковий запис Google Analytics.",
|
||||
"Measurement ID": "Ідентифікатор вимірювання",
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
"Collection permissions": "Quyền thu thập",
|
||||
"Share this collection": "Chia sẻ bộ sưu tập này",
|
||||
"Import document": "Nhập tài liệu",
|
||||
"Uploading": "Đang tải lên",
|
||||
"Sort in sidebar": "Sắp xếp trong sidebar",
|
||||
"A-Z sort": "Từ A-Z",
|
||||
"Z-A sort": "Từ Z-A",
|
||||
@@ -53,8 +54,9 @@
|
||||
"Development": "Nhà phát triển",
|
||||
"Open document": "Mở tài liệu",
|
||||
"New draft": "Tạo dự thảo",
|
||||
"New from template": "Tạo mới từ bản mẫu",
|
||||
"New nested document": "Tài liệu mới lồng nhau",
|
||||
"Nested document": "Nested document",
|
||||
"Before": "Before",
|
||||
"After": "After",
|
||||
"Publish": "Đăng tải",
|
||||
"Published {{ documentName }}": "Đã xuất bản {{ documentName }}",
|
||||
"Publish document": "Xuất bản tài liệu",
|
||||
@@ -91,9 +93,7 @@
|
||||
"Create template": "Tạo mẫu",
|
||||
"Open random document": "Mở một tài liệu ngẫu nhiên",
|
||||
"Search documents for \"{{searchQuery}}\"": "Tìm kiếm tài liệu cho \"{{searchQuery}}\"",
|
||||
"Move to workspace": "Di chuyển đến không gian làm việc",
|
||||
"Move": "Di chuyển",
|
||||
"Move to collection": "Di chuyển đến bộ sưu tập",
|
||||
"Move {{ documentType }}": "Di chuyển {{ documentType }}",
|
||||
"Are you sure you want to archive this document?": "Bạn có chắc chắn muốn lưu trữ tài liệu này không?",
|
||||
"Document archived": "Đã lưu trữ tài liệu",
|
||||
@@ -165,6 +165,15 @@
|
||||
"New workspace": "Workspace mới",
|
||||
"Create a workspace": "Tạo workspace",
|
||||
"Login to workspace": "Đăng nhập vào không gian làm việc",
|
||||
"Template deleted": "Template deleted",
|
||||
"Deleting": "Đang xóa",
|
||||
"Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.": "Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.",
|
||||
"Move to workspace": "Di chuyển đến không gian làm việc",
|
||||
"Template moved": "Template moved",
|
||||
"Couldn't move the template, try again?": "Couldn't move the template, try again?",
|
||||
"Move to collection": "Di chuyển đến bộ sưu tập",
|
||||
"Move template": "Move template",
|
||||
"Print template": "Print template",
|
||||
"Invite people": "Mời mọi người",
|
||||
"Invite to workspace": "Mời vào không gian làm việc",
|
||||
"Promote to {{ role }}": "Thăng chức lên {{ role }}",
|
||||
@@ -176,6 +185,7 @@
|
||||
"Debug": "Gỡ lỗi",
|
||||
"Document": "Tài liệu",
|
||||
"Documents": "Tài liệu",
|
||||
"Template": "Mẫu",
|
||||
"Recently viewed": "Đã xem gần đây",
|
||||
"Revision": "Xem lại",
|
||||
"Navigation": "Điều hướng",
|
||||
@@ -195,6 +205,7 @@
|
||||
"Collections are used to group documents and choose permissions": "Bộ sưu tập được sử dụng để nhóm các tài liệu và chọn quyền",
|
||||
"Name": "Tên",
|
||||
"The default access for workspace members, you can share with more users or groups later.": "Quyền truy cập mặc định dành cho các thành viên không gian làm việc, bạn có thể chia sẻ với nhiều người dùng hoặc nhóm hơn sau này.",
|
||||
"Advanced options": "Advanced options",
|
||||
"Public document sharing": "Chia sẻ tài liệu công khai",
|
||||
"Allow documents within this collection to be shared publicly on the internet.": "Cho phép các tài liệu trong bộ sưu tập này được chia sẻ công khai trên Internet.",
|
||||
"Commenting": "Bình luận",
|
||||
@@ -205,10 +216,10 @@
|
||||
"Create": "Tạo",
|
||||
"Collection deleted": "Bộ sưu tập đã xóa",
|
||||
"I’m sure – Delete": "Tôi chắc chắn - Xóa",
|
||||
"Deleting": "Đang xóa",
|
||||
"Are you sure about that? Deleting the <em>{{collectionName}}</em> collection is permanent and cannot be restored, however all published documents within will be moved to the trash.": "Việc xóa bộ sưu tập <em>{{collectionName}}</em> là vĩnh viễn và không thể khôi phục. Mặc dù, tất cả các tài liệu đã xuất bản trong đó sẽ được chuyển vào thùng rác. Bạn có chắc muốn xoá?",
|
||||
"Also, <em>{{collectionName}}</em> is being used as the start view – deleting it will reset the start view to the Home page.": "Ngoài ra, <em>{{collectionName}}</em> đang được sử dụng làm chế độ xem bắt đầu - việc xóa nó sẽ đặt lại chế độ xem bắt đầu về Trang chủ.",
|
||||
"Type a command or search": "Nhập lệnh hoặc tìm kiếm",
|
||||
"New from template": "Tạo mới từ bản mẫu",
|
||||
"Choose a template": "Chọn một kiểu mẫu",
|
||||
"Are you sure you want to permanently delete this entire comment thread?": "Bạn có chắc chắn muốn xóa bình luận này vĩnh viễn?",
|
||||
"Are you sure you want to permanently delete this comment?": "Bạn có chắc chắn muốn xóa bình luận này vĩnh viễn?",
|
||||
@@ -227,12 +238,6 @@
|
||||
"Deleted Collection": "Xóa Bộ Sưu Tập",
|
||||
"Untitled": "Chưa đặt tên",
|
||||
"Unpin": "Bỏ ghim",
|
||||
"Select a location to copy": "Chọn vị trí đích cần sao chép",
|
||||
"Document copied": "Đã sao chép tài liệu",
|
||||
"Couldn’t copy the document, try again?": "Không thể sao chép tài liệu, muốn thử lại?",
|
||||
"Include nested documents": "Bao gồm các tài liệu lồng nhau",
|
||||
"Copy to <em>{{ location }}</em>": "Sao chép đến <em>{{ location }}</em>",
|
||||
"Copying": "Copying",
|
||||
"Export started": "Đã bắt đầu xuất",
|
||||
"A link to your file will be sent through email soon": "A link to your file will be sent through email soon",
|
||||
"Preparing your download": "Preparing your download",
|
||||
@@ -242,13 +247,24 @@
|
||||
"Include child documents": "Include child documents",
|
||||
"When selected, exporting the document <em>{{documentName}}</em> may take some time.": "When selected, exporting the document <em>{{documentName}}</em> may take some time.",
|
||||
"You will receive an email when it's complete.": "Bạn sẽ nhận được một email khi nó hoàn tất.",
|
||||
"Select a location to copy": "Chọn vị trí đích cần sao chép",
|
||||
"Document copied": "Đã sao chép tài liệu",
|
||||
"Couldn’t copy the document, try again?": "Không thể sao chép tài liệu, muốn thử lại?",
|
||||
"Include nested documents": "Bao gồm các tài liệu lồng nhau",
|
||||
"Copy to <em>{{ location }}</em>": "Sao chép đến <em>{{ location }}</em>",
|
||||
"Copying": "Copying",
|
||||
"Search collections & documents": "Tìm kiếm bộ sưu tập và tài liệu",
|
||||
"Search collections": "Search collections",
|
||||
"No results found": "Không tìm thấy kết quả",
|
||||
"Select a location to move": "Chọn vị trí để di chuyển",
|
||||
"Document moved": "Tài liệu đã được di chuyển",
|
||||
"Couldn’t move the document, try again?": "Không thể di chuyển tài liệu, hãy thử lại?",
|
||||
"Move to <em>{{ location }}</em>": "Di chuyển đến <em>{{ location }}</em>",
|
||||
"Couldn’t move the template, try again?": "Couldn’t move the template, try again?",
|
||||
"Document options": "Tùy chọn tài liệu",
|
||||
"New": "Mới",
|
||||
"Only visible to you": "Chỉ hiển thị với bạn",
|
||||
"Draft": "Bản nháp",
|
||||
"Template": "Mẫu",
|
||||
"You updated": "Bạn đã cập nhật",
|
||||
"{{ userName }} updated": "{{ userName }} được cập nhật",
|
||||
"You deleted": "Bạn đã xóa",
|
||||
@@ -278,7 +294,6 @@
|
||||
"Please enter a name for the emoji": "Please enter a name for the emoji",
|
||||
"Please select an image file": "Please select an image file",
|
||||
"Emoji created successfully": "Emoji created successfully",
|
||||
"Uploading": "Đang tải lên",
|
||||
"Add emoji": "Add emoji",
|
||||
"Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.": "Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.",
|
||||
"Upload an image": "Upload an image",
|
||||
@@ -467,6 +482,7 @@
|
||||
"Collapse sidebar": "Collapse sidebar",
|
||||
"Archived collections": "Bộ sưu tập đã lưu trữ",
|
||||
"New doc": "Tài liệu mới",
|
||||
"New nested document": "Tài liệu mới lồng nhau",
|
||||
"Empty": "Trống",
|
||||
"No collections": "No collections",
|
||||
"Collapse": "Thu nhỏ",
|
||||
@@ -493,6 +509,8 @@
|
||||
"Unstar document": "Bỏ sao tài liệu",
|
||||
"Star document": "Đánh sao tài liệu",
|
||||
"Select a color": "Chọn Màu",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Đánh dấu văn bản và dùng <1></1> để thêm khoảng giữ chỗ mà sau này có thể điền thông tin khi tạo tài liệu mới",
|
||||
"You’re editing a template": "Bạn đang chỉnh sửa mẫu",
|
||||
"Template created, go ahead and customize it": "Đã tạo mẫu, hãy tiếp tục và tùy chỉnh nó",
|
||||
"Creating a template from <em>{{titleWithDefault}}</em> is a non-destructive action – we'll make a copy of the document and turn it into a template that can be used as a starting point for new documents.": "Đang tạo mẫu từ <em>{{titleWithDefault}}</em> là một hành động không phá hủy - chúng tôi sẽ tạo một bản sao của tài liệu và biến nó thành một mẫu có thể được sử dụng làm điểm bắt đầu cho các tài liệu mới.",
|
||||
"Enable other members to use the template immediately": "Enable other members to use the template immediately",
|
||||
@@ -632,6 +650,7 @@
|
||||
"Delete embed": "Xóa phần nhúng",
|
||||
"Formatting controls": "Formatting controls",
|
||||
"Distribute columns": "Distribute columns",
|
||||
"Wrap text": "Wrap text",
|
||||
"Delete Emoji": "Delete Emoji",
|
||||
"Emoji deleted": "Emoji deleted",
|
||||
"I'm sure – Delete": "I'm sure – Delete",
|
||||
@@ -644,17 +663,19 @@
|
||||
"Unsubscribed from document": "Unsubscribed from document",
|
||||
"Unsubscribed from collection": "Unsubscribed from collection",
|
||||
"Account": "Tài khoản",
|
||||
"API & Apps": "API & Apps",
|
||||
"API & Access": "API & Access",
|
||||
"Details": "Chi tiết",
|
||||
"Authentication": "Authentication",
|
||||
"Security": "Bảo mật",
|
||||
"Features": "Các tính năng",
|
||||
"AI": "AI",
|
||||
"API Keys": "Khóa API",
|
||||
"Applications": "Ứng dụng",
|
||||
"Shared Links": "Chia sẻ link",
|
||||
"Import": "Nhập",
|
||||
"Install": "Cài đặt",
|
||||
"Embeds": "Embeds",
|
||||
"Configure which embed providers are available in the editor.": "Configure which embed providers are available in the editor.",
|
||||
"Integrations": "Tích hợp",
|
||||
"Install": "Cài đặt",
|
||||
"Change name": "Đổi tên",
|
||||
"Change email": "Thay đổi email",
|
||||
"Suspend user": "Treo tài khoản",
|
||||
@@ -685,8 +706,8 @@
|
||||
"Headings you add to the document will appear here": "Các tiêu đề bạn thêm vào tài liệu sẽ xuất hiện ở đây",
|
||||
"Contents": "Nội Dung",
|
||||
"Table of contents": "Mục lục",
|
||||
"Template options": "Template options",
|
||||
"User options": "Tùy chọn người dùng",
|
||||
"template": "mẫu",
|
||||
"document": "tài liệu",
|
||||
"Export complete": "Export complete",
|
||||
"Export failed": "Export failed",
|
||||
@@ -812,23 +833,15 @@
|
||||
"Sorry, the last change could not be persisted – please reload the page": "Xin lỗi, không thể tiếp tục thay đổi cuối cùng - vui lòng tải lại trang",
|
||||
"{{ count }} days": "{{ count }} day",
|
||||
"{{ count }} days_plural": "{{ count }} days",
|
||||
"This template will be permanently deleted in <2></2> unless restored.": "Mẫu này sẽ bị xóa vĩnh viễn sau <2></2> trừ khi được khôi phục.",
|
||||
"This document will be permanently deleted in <2></2> unless restored.": "Tài liệu này sẽ bị xóa vĩnh viễn sau <2></2> trừ khi được khôi phục.",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "Đánh dấu văn bản và dùng <1></1> để thêm khoảng giữ chỗ mà sau này có thể điền thông tin khi tạo tài liệu mới",
|
||||
"You’re editing a template": "Bạn đang chỉnh sửa mẫu",
|
||||
"Deleted by {{userName}}": "Đã xóa bởi {{userName}}",
|
||||
"Observing {{ userName }}": "Quan sát {{ userName }}",
|
||||
"Backlinks": "Liên kết ngược",
|
||||
"This document is large which may affect performance": "This document is large which may affect performance",
|
||||
"Are you sure you want to delete the <em>{{ documentTitle }}</em> template?": "Bạn có chắc chắn muốn xóa mẫu <em>{{ documentTitle }}</em> không?",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history</em>.": "Bạn có chắc chắn không? Xóa văn bản <em>{{ documentTitle }}</em> sẽ xóa tất cả lịch sử của nó</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>.": "Bạn có chắc chắn về điều đó không? Xóa tài liệu <em>{{ documentTitle }}</em> sẽ xóa tất cả lịch sử của nó và <em>{{ any }} tài liệu lồng nhau</em>.",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>._plural": "Bạn có chắc chắn về điều đó không? Xóa tài liệu <em>{{ documentTitle }}</em> sẽ xóa tất cả lịch sử của nó và <em>{{ any }} tài liệu lồng nhau</em>.",
|
||||
"If you’d like the option of referencing or restoring the {{noun}} in the future, consider archiving it instead.": "Nếu bạn muốn tùy chọn tham chiếu hoặc khôi phục số {{noun}} trong tương lai, hãy xem xét lưu trữ nó thay thế.",
|
||||
"Select a location to move": "Chọn vị trí để di chuyển",
|
||||
"Document moved": "Tài liệu đã được di chuyển",
|
||||
"Couldn’t move the document, try again?": "Không thể di chuyển tài liệu, hãy thử lại?",
|
||||
"Move to <em>{{ location }}</em>": "Di chuyển đến <em>{{ location }}</em>",
|
||||
"Couldn’t create the document, try again?": "Không thể tạo tài liệu, hãy thử lại?",
|
||||
"Document permanently deleted": "Tài liệu đã bị xóa vĩnh viễn",
|
||||
"Are you sure you want to permanently delete the <em>{{ documentTitle }}</em> document? This action is immediate and cannot be undone.": "Bạn có chắc chắn muốn xóa vĩnh viễn tài liệu <em>{{ documentTitle }}</em> ? Hành động này là ngay lập tức và không thể hoàn tác.",
|
||||
@@ -885,7 +898,6 @@
|
||||
"Open this guide": "Mở hướng dẫn này",
|
||||
"Enter": "Nhập",
|
||||
"Publish document and exit": "Đăng tải tài liệu và thoát",
|
||||
"Save document": "Lưu tài liệu",
|
||||
"Cancel editing": "Hủy chỉnh sửa",
|
||||
"Collaboration": "Cộng tác",
|
||||
"Formatting": "Định dạng",
|
||||
@@ -978,11 +990,14 @@
|
||||
"An error occurred": "Đã xảy ra lỗi",
|
||||
"The OAuth client could not be found, please check the provided client ID": "The OAuth client could not be found, please check the provided client ID",
|
||||
"The OAuth client could not be loaded, please check the redirect URI is valid": "The OAuth client could not be loaded, please check the redirect URI is valid",
|
||||
"The OAuth client could not be loaded, please check your workspace subdomain is correct": "The OAuth client could not be loaded, please check your workspace subdomain is correct",
|
||||
"Required OAuth parameters are missing": "Required OAuth parameters are missing",
|
||||
"Authorize": "Xác thực",
|
||||
"{{ appName }} wants to access {{ teamName }}": "{{ appName }} wants to access {{ teamName }}",
|
||||
"By <em>{{ developerName }}</em>": "By <em>{{ developerName }}</em>",
|
||||
"{{ appName }} will be able to access your account and perform the following actions": "{{ appName }} will be able to access your account and perform the following actions",
|
||||
"You will be redirected to a local application after authorizing.": "You will be redirected to a local application after authorizing.",
|
||||
"You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.": "You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.",
|
||||
"read": "read",
|
||||
"write": "write",
|
||||
"read and write": "read and write",
|
||||
@@ -1156,6 +1171,8 @@
|
||||
"Last accessed": "Truy nhập lần cuối",
|
||||
"Domain": "Domain",
|
||||
"Views": "Lượt xem",
|
||||
"Visibility": "Visibility",
|
||||
"Updated by": "Updated by",
|
||||
"All roles": "All roles",
|
||||
"Admins": "Quản trị viên",
|
||||
"Editors": "Editors",
|
||||
@@ -1188,15 +1205,26 @@
|
||||
"Your workspace will be accessible at": "Your workspace will be accessible at",
|
||||
"Choose a subdomain to enable a login page just for your team.": "Chọn một miền phụ để kích hoạt trang đăng nhập chỉ dành cho nhóm của bạn.",
|
||||
"This is the screen that workspace members will first see when they sign in.": "Đây là màn hình mà các thành viên không gian làm việc sẽ nhìn thấy đầu tiên khi họ đăng nhập.",
|
||||
"Danger": "Nguy hiểm",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "You can delete this entire workspace including collections, documents, and users.",
|
||||
"Export data": "Xuất dữ liệu",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.",
|
||||
"Recent exports": "Kết xuất gần đây",
|
||||
"Manage optional and beta features. Changing these settings will affect the experience for all members of the workspace.": "Quản lý các tính năng tùy chọn và beta. Việc thay đổi các cài đặt này sẽ ảnh hưởng đến trải nghiệm của tất cả thành viên trong không gian làm việc.",
|
||||
"Separate editing": "Separate editing",
|
||||
"When enabled documents have a separate editing mode by default instead of being always editable. This setting can be overridden by user preferences.": "When enabled documents have a separate editing mode by default instead of being always editable. This setting can be overridden by user preferences.",
|
||||
"When enabled team members can add comments to documents.": "Khi được bật, các thành viên trong nhóm có thể thêm nhận xét vào tài liệu.",
|
||||
"Danger": "Nguy hiểm",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "You can delete this entire workspace including collections, documents, and users.",
|
||||
"Enabled": "Enabled",
|
||||
"Allow supported providers to be inserted as interactive embeds in documents.": "Allow supported providers to be inserted as interactive embeds in documents.",
|
||||
"Providers": "Providers",
|
||||
"Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.": "Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.",
|
||||
"All providers": "All providers",
|
||||
"Export data": "Xuất dữ liệu",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.",
|
||||
"Recent exports": "Kết xuất gần đây",
|
||||
"Manage AI and integration features for your workspace.": "Manage AI and integration features for your workspace.",
|
||||
"MCP server": "MCP server",
|
||||
"Allow members to connect to this workspace with MCP to read and write data.": "Allow members to connect to this workspace with MCP to read and write data.",
|
||||
"Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.": "Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.",
|
||||
"Copy URL": "Copy URL",
|
||||
"AI answers": "AI answers",
|
||||
"Use AI to get direct answers to questions in search. This feature requires a paid license.": "Use AI to get direct answers to questions in search. This feature requires a paid license.",
|
||||
"Create a group": "Tạo nhóm",
|
||||
"Could not load groups": "Could not load groups",
|
||||
"New group": "Nhóm mới",
|
||||
@@ -1288,8 +1316,6 @@
|
||||
"When enabled, viewers can see download options for documents": "Khi được bật, người xem có thể thấy các tùy chọn tải xuống tài liệu",
|
||||
"Users can delete account": "Users can delete account",
|
||||
"When enabled, users can delete their own account from the workspace": "When enabled, users can delete their own account from the workspace",
|
||||
"Rich service embeds": "Dịch vụ nhúng phong phú",
|
||||
"Links to supported services are shown as rich embeds within your documents": "Các đường Link đến các dịch vụ được hỗ trợ được hiển thị dưới dạng nhúng phong phú trong tài liệu của bạn",
|
||||
"Email address visibility": "Email address visibility",
|
||||
"Controls who can see user email addresses in the workspace": "Controls who can see user email addresses in the workspace",
|
||||
"Collection creation": "Tạo bộ sưu tập",
|
||||
@@ -1300,9 +1326,10 @@
|
||||
"Sharing is currently disabled.": "Chia sẻ hiện đang bị vô hiệu hóa.",
|
||||
"You can globally enable and disable public document sharing in the <em>security settings</em>.": "Bạn có thể bật và tắt chia sẻ tài liệu công khai trên toàn cầu trong <em>cài đặt bảo mật</em>.",
|
||||
"Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.": "Các tài liệu đã được chia sẻ được liệt kê dưới đây. Bất kỳ ai có liên kết công khai đều có thể truy cập phiên bản chỉ đọc của tài liệu cho đến khi liên kết bị thu hồi.",
|
||||
"You can create templates to help your team create consistent and accurate documentation.": "Bạn có thể tạo các mẫu để giúp nhóm của mình tạo tài liệu nhất quán và chính xác.",
|
||||
"Alphabetical": "Bảng chữ cái",
|
||||
"There are no templates just yet.": "Không có mẫu nào được nêu ra.",
|
||||
"A template must have content": "A template must have content",
|
||||
"Could not load templates": "Could not load templates",
|
||||
"Templates help your team create consistent and accurate documentation.": "Templates help your team create consistent and accurate documentation.",
|
||||
"No templates have been created yet": "No templates have been created yet",
|
||||
"{{ teamName }} is using {{ appName }} to share documents, please login to continue.": "{{ teamName }} đang sử dụng {{ appName }} để chia sẻ tài liệu, vui lòng đăng nhập để tiếp tục.",
|
||||
"A confirmation code has been sent to your email address, please enter the code below to permanently destroy this workspace.": "A confirmation code has been sent to your email address, please enter the code below to permanently destroy this workspace.",
|
||||
"Confirmation code": "Confirmation code",
|
||||
@@ -1363,7 +1390,6 @@
|
||||
"New Attribute": "New Attribute",
|
||||
"Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.": "Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.",
|
||||
"Custom domain": "Custom domain",
|
||||
"AI answers": "AI answers",
|
||||
"Use AI to directly answer searched questions using content in your workspace.": "Use AI to directly answer searched questions using content in your workspace.",
|
||||
"API access": "API access",
|
||||
"Allow members to create API keys for programmatic access": "Allow members to create API keys for programmatic access",
|
||||
@@ -1413,6 +1439,27 @@
|
||||
"Enabled by {{integrationCreatedBy}}": "Enabled by {{integrationCreatedBy}}",
|
||||
"Disconnecting will prevent previewing GitHub links from this organization in documents. Are you sure?": "Disconnecting will prevent previewing GitHub links from this organization in documents. Are you sure?",
|
||||
"The GitHub integration is currently disabled. Please set the associated environment variables and restart the server to enable the integration.": "The GitHub integration is currently disabled. Please set the associated environment variables and restart the server to enable the integration.",
|
||||
"Connect GitLab": "Connect GitLab",
|
||||
"Enter the details for your GitLab instance.": "Enter the details for your GitLab instance.",
|
||||
"GitLab URL": "GitLab URL",
|
||||
"URL must start with https": "URL must start with https",
|
||||
"Client ID": "Client ID",
|
||||
"OAuth application ID": "OAuth application ID",
|
||||
"Client Secret": "Client Secret",
|
||||
"OAuth application secret": "OAuth application secret",
|
||||
"Connecting": "Connecting",
|
||||
"Choose which GitLab instance to connect to.": "Choose which GitLab instance to connect to.",
|
||||
"GitLab Cloud": "GitLab Cloud",
|
||||
"Connect to your account on gitlab.com": "Connect to your account on gitlab.com",
|
||||
"GitLab Cloud credentials are not configured": "GitLab Cloud credentials are not configured",
|
||||
"Self-managed": "Self-managed",
|
||||
"Connect to a custom GitLab installation": "Connect to a custom GitLab installation",
|
||||
"You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?": "You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?",
|
||||
"The GitLab account is already connected to this workspace.": "The GitLab account is already connected to this workspace.",
|
||||
"Something went wrong while authenticating your request. Please try again.": "Something went wrong while authenticating your request. Please try again.",
|
||||
"The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.": "The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.",
|
||||
"Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.": "Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.",
|
||||
"Disconnecting will prevent previewing links from GitLab in documents. Are you sure?": "Disconnecting will prevent previewing links from GitLab in documents. Are you sure?",
|
||||
"Google Analytics": "Google Analytics",
|
||||
"Add a Google Analytics 4 measurement ID to send document views and analytics from the workspace to your own Google Analytics account.": "Thêm ID đo lường Google Analytics 4 để gửi lượt xem tài liệu và số liệu phân tích từ không gian làm việc đến tài khoản Google Analytics của riêng bạn.",
|
||||
"Measurement ID": "ID đo lường",
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
"Collection permissions": "文档集权限",
|
||||
"Share this collection": "分享此文档集",
|
||||
"Import document": "导入文档",
|
||||
"Uploading": "上传中",
|
||||
"Sort in sidebar": "调整侧边栏的显示顺序",
|
||||
"A-Z sort": "A-Z 排序",
|
||||
"Z-A sort": "Z-A 排序",
|
||||
@@ -53,8 +54,9 @@
|
||||
"Development": "开发",
|
||||
"Open document": "打开文档",
|
||||
"New draft": "新建草稿",
|
||||
"New from template": "从模板新建",
|
||||
"New nested document": "新建子文档",
|
||||
"Nested document": "Nested document",
|
||||
"Before": "Before",
|
||||
"After": "After",
|
||||
"Publish": "发布",
|
||||
"Published {{ documentName }}": "已发布 {{ documentName }}",
|
||||
"Publish document": "发布文档",
|
||||
@@ -91,9 +93,7 @@
|
||||
"Create template": "创建模板",
|
||||
"Open random document": "打开随机文档",
|
||||
"Search documents for \"{{searchQuery}}\"": "搜索匹配 \"{{searchQuery}}\" 的文档",
|
||||
"Move to workspace": "移动到工作区",
|
||||
"Move": "移动",
|
||||
"Move to collection": "移动到文档集",
|
||||
"Move {{ documentType }}": "移动 {{ documentType }}",
|
||||
"Are you sure you want to archive this document?": "您确定要归档此文档吗?",
|
||||
"Document archived": "文件已归档",
|
||||
@@ -165,6 +165,15 @@
|
||||
"New workspace": "新建工作区",
|
||||
"Create a workspace": "创建工作区",
|
||||
"Login to workspace": "登陆到工作区",
|
||||
"Template deleted": "Template deleted",
|
||||
"Deleting": "正在删除",
|
||||
"Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.": "Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.",
|
||||
"Move to workspace": "移动到工作区",
|
||||
"Template moved": "Template moved",
|
||||
"Couldn't move the template, try again?": "Couldn't move the template, try again?",
|
||||
"Move to collection": "移动到文档集",
|
||||
"Move template": "Move template",
|
||||
"Print template": "Print template",
|
||||
"Invite people": "邀请其他人",
|
||||
"Invite to workspace": "邀请到工作区",
|
||||
"Promote to {{ role }}": "提升为 {{ role }}",
|
||||
@@ -176,6 +185,7 @@
|
||||
"Debug": "调试",
|
||||
"Document": "文档",
|
||||
"Documents": "文档",
|
||||
"Template": "模板",
|
||||
"Recently viewed": "最近浏览过",
|
||||
"Revision": "修订",
|
||||
"Navigation": "导航",
|
||||
@@ -195,6 +205,7 @@
|
||||
"Collections are used to group documents and choose permissions": "文档集用于对文档进行分组和权限管理",
|
||||
"Name": "名称",
|
||||
"The default access for workspace members, you can share with more users or groups later.": "工作区成员的默认访问权限,你可以稍后与更多的用户或组分享。",
|
||||
"Advanced options": "Advanced options",
|
||||
"Public document sharing": "公开共享文档",
|
||||
"Allow documents within this collection to be shared publicly on the internet.": "允许此文档集中的文档在互联网上公开共享。",
|
||||
"Commenting": "评论",
|
||||
@@ -205,10 +216,10 @@
|
||||
"Create": "创建",
|
||||
"Collection deleted": "文档集已删除",
|
||||
"I’m sure – Delete": "确认删除",
|
||||
"Deleting": "正在删除",
|
||||
"Are you sure about that? Deleting the <em>{{collectionName}}</em> collection is permanent and cannot be restored, however all published documents within will be moved to the trash.": "您确定吗? 删除 <em>{{collectionName}}</em> 文档集是永久性的且无法恢复,但其中所有已发布的文档将被移至回收站。",
|
||||
"Also, <em>{{collectionName}}</em> is being used as the start view – deleting it will reset the start view to the Home page.": "另外,<em>{{collectionName}}</em> 被用作起始视图 - 删除它将重置起始视图为主页。",
|
||||
"Type a command or search": "输入命令或搜索",
|
||||
"New from template": "从模板新建",
|
||||
"Choose a template": "选择模板",
|
||||
"Are you sure you want to permanently delete this entire comment thread?": "你确定要永久删除此评论吗?",
|
||||
"Are you sure you want to permanently delete this comment?": "你确定要永久删除此评论吗?",
|
||||
@@ -227,12 +238,6 @@
|
||||
"Deleted Collection": "删除文档集",
|
||||
"Untitled": "无标题",
|
||||
"Unpin": "取消置顶",
|
||||
"Select a location to copy": "选择要复制的目标位置",
|
||||
"Document copied": "文档已复制",
|
||||
"Couldn’t copy the document, try again?": "无法复制文档,请重试",
|
||||
"Include nested documents": "包含子文档",
|
||||
"Copy to <em>{{ location }}</em>": "复制到 <em>{{ location }}</em>",
|
||||
"Copying": "复制中",
|
||||
"Export started": "导出已开始",
|
||||
"A link to your file will be sent through email soon": "您的文件链接将很快通过电子邮件发送",
|
||||
"Preparing your download": "正在准备您的下载",
|
||||
@@ -242,13 +247,24 @@
|
||||
"Include child documents": "包含子文档",
|
||||
"When selected, exporting the document <em>{{documentName}}</em> may take some time.": "选中后,导出文档 <em>{{documentName}}</em> 可能需要一些时间。",
|
||||
"You will receive an email when it's complete.": "完成后,你将收到一封电子邮件。",
|
||||
"Select a location to copy": "选择要复制的目标位置",
|
||||
"Document copied": "文档已复制",
|
||||
"Couldn’t copy the document, try again?": "无法复制文档,请重试",
|
||||
"Include nested documents": "包含子文档",
|
||||
"Copy to <em>{{ location }}</em>": "复制到 <em>{{ location }}</em>",
|
||||
"Copying": "复制中",
|
||||
"Search collections & documents": "搜索文档集和文档",
|
||||
"Search collections": "搜索集合",
|
||||
"No results found": "未找到结果",
|
||||
"Select a location to move": "选择要移动的目标位置",
|
||||
"Document moved": "文档已被移动",
|
||||
"Couldn’t move the document, try again?": "无法移动文档,请重试",
|
||||
"Move to <em>{{ location }}</em>": "移动到 <em>{{ location }}</em>",
|
||||
"Couldn’t move the template, try again?": "Couldn’t move the template, try again?",
|
||||
"Document options": "文档选项",
|
||||
"New": "新",
|
||||
"Only visible to you": "仅自己可见",
|
||||
"Draft": "草稿",
|
||||
"Template": "模板",
|
||||
"You updated": "你已更新",
|
||||
"{{ userName }} updated": "{{ userName }} 已更新",
|
||||
"You deleted": "你已删除",
|
||||
@@ -278,7 +294,6 @@
|
||||
"Please enter a name for the emoji": "请输入表情名称",
|
||||
"Please select an image file": "请选择一个图像文件",
|
||||
"Emoji created successfully": "表情创建成功",
|
||||
"Uploading": "上传中",
|
||||
"Add emoji": "添加表情符号",
|
||||
"Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.": "透明背景的方形图像效果最好。如果您的图像太大,我们会尝试为您调整尺寸。",
|
||||
"Upload an image": "上传图片",
|
||||
@@ -467,6 +482,7 @@
|
||||
"Collapse sidebar": "收起侧边栏",
|
||||
"Archived collections": "归档文档集",
|
||||
"New doc": "新建文档",
|
||||
"New nested document": "新建子文档",
|
||||
"Empty": "空",
|
||||
"No collections": "暂无文档集",
|
||||
"Collapse": "收起",
|
||||
@@ -493,6 +509,8 @@
|
||||
"Unstar document": "取消收藏文档",
|
||||
"Star document": "收藏文档",
|
||||
"Select a color": "选择颜色",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "选中一些文本,然后通过 <1></1> 来添加占位符,以便在创建新文件时填写。",
|
||||
"You’re editing a template": "您正在编辑一个模板",
|
||||
"Template created, go ahead and customize it": "模板已创建,继续进行自定义",
|
||||
"Creating a template from <em>{{titleWithDefault}}</em> is a non-destructive action – we'll make a copy of the document and turn it into a template that can be used as a starting point for new documents.": "从 <em>{{titleWithDefault}}</em> 创建模板是一个非破坏性的操作 - 我们将制作一个文档副本,并将其变成一个可以用作新文档起点的模板。",
|
||||
"Enable other members to use the template immediately": "允许其他成员立即使用该模板",
|
||||
@@ -632,6 +650,7 @@
|
||||
"Delete embed": "删除嵌入",
|
||||
"Formatting controls": "格式化控制",
|
||||
"Distribute columns": "分布列",
|
||||
"Wrap text": "Wrap text",
|
||||
"Delete Emoji": "删除表情",
|
||||
"Emoji deleted": "表情已删除",
|
||||
"I'm sure – Delete": "我确定——删除",
|
||||
@@ -644,17 +663,19 @@
|
||||
"Unsubscribed from document": "取消订阅文档",
|
||||
"Unsubscribed from collection": "取消订阅集合",
|
||||
"Account": "账号",
|
||||
"API & Apps": "API 与应用程序",
|
||||
"API & Access": "API & Access",
|
||||
"Details": "详情",
|
||||
"Authentication": "认证",
|
||||
"Security": "安全性",
|
||||
"Features": "功能",
|
||||
"AI": "AI",
|
||||
"API Keys": "API 密钥",
|
||||
"Applications": "应用",
|
||||
"Shared Links": "分享的链接",
|
||||
"Import": "导入",
|
||||
"Install": "安装",
|
||||
"Embeds": "Embeds",
|
||||
"Configure which embed providers are available in the editor.": "Configure which embed providers are available in the editor.",
|
||||
"Integrations": "集成",
|
||||
"Install": "安装",
|
||||
"Change name": "更换名称",
|
||||
"Change email": "更换电子邮箱",
|
||||
"Suspend user": "停用用户",
|
||||
@@ -685,8 +706,8 @@
|
||||
"Headings you add to the document will appear here": "添加到文档中的标题将显示在这里",
|
||||
"Contents": "目录",
|
||||
"Table of contents": "目录",
|
||||
"Template options": "Template options",
|
||||
"User options": "用户选项",
|
||||
"template": "模板",
|
||||
"document": "文档",
|
||||
"Export complete": "导出完成",
|
||||
"Export failed": "导出失败",
|
||||
@@ -812,23 +833,15 @@
|
||||
"Sorry, the last change could not be persisted – please reload the page": "抱歉,无法保存上次更改 - 请重新载入页面",
|
||||
"{{ count }} days": "{{ count }} 天",
|
||||
"{{ count }} days_plural": "{{ count }} 天",
|
||||
"This template will be permanently deleted in <2></2> unless restored.": "此模板将在 <2></2> 后永久删除,除非手动恢复。",
|
||||
"This document will be permanently deleted in <2></2> unless restored.": "此文档将在 <2></2> 后永久删除,除非手动恢复。",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "选中一些文本,然后通过 <1></1> 来添加占位符,以便在创建新文件时填写。",
|
||||
"You’re editing a template": "您正在编辑一个模板",
|
||||
"Deleted by {{userName}}": "已被 {{userName}} 删除",
|
||||
"Observing {{ userName }}": "观察 {{ userName }}",
|
||||
"Backlinks": "反向链接",
|
||||
"This document is large which may affect performance": "此文档较大,可能会影响性能",
|
||||
"Are you sure you want to delete the <em>{{ documentTitle }}</em> template?": "确认删除 <em>{{ documentTitle }}</em> 文档模板?",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history</em>.": "您确定吗?删除 <em>{{ documentTitle }}</em> 文档将一并删除其所有历史记录</em>。",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>.": "您确定吗?删除文档 <em>{{ documentTitle }}</em> 将一并删除其所有历史记录与其包含的 <em>{{ any }} 份子文档</em>。",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>._plural": "你确定吗?删除文档 <em>{{ documentTitle }}</em> 将一并删除其所有历史记录与其包含的 <em>{{ any }} 个嵌套文档</em>。",
|
||||
"If you’d like the option of referencing or restoring the {{noun}} in the future, consider archiving it instead.": "如果你将来希望引用或还原{{noun}},请考虑将其存档。",
|
||||
"Select a location to move": "选择要移动的目标位置",
|
||||
"Document moved": "文档已被移动",
|
||||
"Couldn’t move the document, try again?": "无法移动文档,请重试",
|
||||
"Move to <em>{{ location }}</em>": "移动到 <em>{{ location }}</em>",
|
||||
"Couldn’t create the document, try again?": "无法创建文档,请重试?",
|
||||
"Document permanently deleted": "文档已被永久删除",
|
||||
"Are you sure you want to permanently delete the <em>{{ documentTitle }}</em> document? This action is immediate and cannot be undone.": "确定要永久地删除 <em>{{ documentTitle }}</em> 文档吗?此操作即时生效且无法撤消。",
|
||||
@@ -885,7 +898,6 @@
|
||||
"Open this guide": "打开指南",
|
||||
"Enter": "回车",
|
||||
"Publish document and exit": "发布文档并退出",
|
||||
"Save document": "保存文档",
|
||||
"Cancel editing": "取消编辑",
|
||||
"Collaboration": "协作",
|
||||
"Formatting": "格式化",
|
||||
@@ -978,11 +990,14 @@
|
||||
"An error occurred": "发生错误",
|
||||
"The OAuth client could not be found, please check the provided client ID": "找不到 OAuth 客户端,请检查提供的客户端 ID",
|
||||
"The OAuth client could not be loaded, please check the redirect URI is valid": "无法加载 OAuth 客户端,请检查回调 URI 是否有效",
|
||||
"The OAuth client could not be loaded, please check your workspace subdomain is correct": "The OAuth client could not be loaded, please check your workspace subdomain is correct",
|
||||
"Required OAuth parameters are missing": "缺少所需的 OAuth 链接参数",
|
||||
"Authorize": "授权",
|
||||
"{{ appName }} wants to access {{ teamName }}": "应用 {{ appName }} 想要访问 {{ teamName }}",
|
||||
"By <em>{{ developerName }}</em>": "创建人 <em>{{ developerName }}</em>",
|
||||
"{{ appName }} will be able to access your account and perform the following actions": "{{ appName }} 将会获得访问您账户的权限,并将可以执行以下操作",
|
||||
"You will be redirected to a local application after authorizing.": "You will be redirected to a local application after authorizing.",
|
||||
"You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.": "You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.",
|
||||
"read": "读",
|
||||
"write": "写",
|
||||
"read and write": "读写",
|
||||
@@ -1156,6 +1171,8 @@
|
||||
"Last accessed": "上次访问",
|
||||
"Domain": "域",
|
||||
"Views": "浏览次数",
|
||||
"Visibility": "可见性",
|
||||
"Updated by": "Updated by",
|
||||
"All roles": "所有角色",
|
||||
"Admins": "管理员",
|
||||
"Editors": "编辑者",
|
||||
@@ -1188,15 +1205,26 @@
|
||||
"Your workspace will be accessible at": "你的工作区将在",
|
||||
"Choose a subdomain to enable a login page just for your team.": "选择一个子域名,为您的团队创建独立专属的登录页。",
|
||||
"This is the screen that workspace members will first see when they sign in.": "这是工作区成员登录时首先看到的界面。",
|
||||
"Danger": "危险操作",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "你可以删除整个工作区,包括文档集、文档和用户。",
|
||||
"Export data": "导出数据",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "完整导出可能需要一些时间,请考虑导出单个文档或文档集。导出的数据是 Markdown 格式的文档压缩包。当导出已开始时您可以离开此页面。如果你开启了通知,当导出完成后,我们会发送链接至电子邮件 <em>{{ userEmail }}</em>。",
|
||||
"Recent exports": "最近导出",
|
||||
"Manage optional and beta features. Changing these settings will affect the experience for all members of the workspace.": "管理可选功能和测试功能。更改这些设置将影响工作组内所有成员的使用。",
|
||||
"Separate editing": "独立编辑",
|
||||
"When enabled documents have a separate editing mode by default instead of being always editable. This setting can be overridden by user preferences.": "当启用时,默认情况下文档为独立编辑模式,而不总是可编辑的。此设置可以由用户偏好设置覆盖。",
|
||||
"When enabled team members can add comments to documents.": "启用后,团队成员可以向文档添加评论。",
|
||||
"Danger": "危险操作",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "你可以删除整个工作区,包括文档集、文档和用户。",
|
||||
"Enabled": "Enabled",
|
||||
"Allow supported providers to be inserted as interactive embeds in documents.": "Allow supported providers to be inserted as interactive embeds in documents.",
|
||||
"Providers": "Providers",
|
||||
"Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.": "Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.",
|
||||
"All providers": "All providers",
|
||||
"Export data": "导出数据",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "完整导出可能需要一些时间,请考虑导出单个文档或文档集。导出的数据是 Markdown 格式的文档压缩包。当导出已开始时您可以离开此页面。如果你开启了通知,当导出完成后,我们会发送链接至电子邮件 <em>{{ userEmail }}</em>。",
|
||||
"Recent exports": "最近导出",
|
||||
"Manage AI and integration features for your workspace.": "Manage AI and integration features for your workspace.",
|
||||
"MCP server": "MCP server",
|
||||
"Allow members to connect to this workspace with MCP to read and write data.": "Allow members to connect to this workspace with MCP to read and write data.",
|
||||
"Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.": "Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.",
|
||||
"Copy URL": "Copy URL",
|
||||
"AI answers": "AI 回答",
|
||||
"Use AI to get direct answers to questions in search. This feature requires a paid license.": "使用 AI 获取搜索中问题的直接答案。此功能需要付费许可证。",
|
||||
"Create a group": "创建群组",
|
||||
"Could not load groups": "无法加载组",
|
||||
"New group": "新建群组",
|
||||
@@ -1288,8 +1316,6 @@
|
||||
"When enabled, viewers can see download options for documents": "启用时,浏览者可以看到文档的下载选项",
|
||||
"Users can delete account": "用户可以删除账号",
|
||||
"When enabled, users can delete their own account from the workspace": "如果启用,用户可以从工作区删除自己的帐户",
|
||||
"Rich service embeds": "富文本嵌入服务",
|
||||
"Links to supported services are shown as rich embeds within your documents": "受 Outline 服务支持的链接可作为富文本嵌入显示在您的文档中",
|
||||
"Email address visibility": "电子邮件地址可见性",
|
||||
"Controls who can see user email addresses in the workspace": "控制谁可以在工作区查看用户电子邮件地址",
|
||||
"Collection creation": "文档集创建",
|
||||
@@ -1300,9 +1326,10 @@
|
||||
"Sharing is currently disabled.": "共享功能当前被禁用。",
|
||||
"You can globally enable and disable public document sharing in the <em>security settings</em>.": "你可以在<em>安全设置</em> 中对共享文档功能进行全局启用或禁用。",
|
||||
"Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.": "这是你分享给其他人的所有文档,在你撤销链接之前,任何人都可以通过该链接阅读该文档。",
|
||||
"You can create templates to help your team create consistent and accurate documentation.": "创建模板来帮助您的团队创建风格一致和准确的文档。",
|
||||
"Alphabetical": "按字母顺序排列",
|
||||
"There are no templates just yet.": "尚无可用模板。",
|
||||
"A template must have content": "A template must have content",
|
||||
"Could not load templates": "Could not load templates",
|
||||
"Templates help your team create consistent and accurate documentation.": "Templates help your team create consistent and accurate documentation.",
|
||||
"No templates have been created yet": "No templates have been created yet",
|
||||
"{{ teamName }} is using {{ appName }} to share documents, please login to continue.": "{{ teamName }} 正在使用 {{ appName }} 共享文档,请登录以继续。",
|
||||
"A confirmation code has been sent to your email address, please enter the code below to permanently destroy this workspace.": "验证码已发送至您的电子邮件,请在下面输入代码以永久删除此工作区。",
|
||||
"Confirmation code": "验证码",
|
||||
@@ -1363,7 +1390,6 @@
|
||||
"New Attribute": "新增属性",
|
||||
"Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.": "属性允许您定义您文档中存储的数据。 它们可以用于存储自定义属性、元数据或文件中常见的任何其他结构化信息。",
|
||||
"Custom domain": "自定义域名",
|
||||
"AI answers": "AI 回答",
|
||||
"Use AI to directly answer searched questions using content in your workspace.": "使用 AI 在您的工作区中直接回答搜索的问题。",
|
||||
"API access": "API 访问权限",
|
||||
"Allow members to create API keys for programmatic access": "允许成员创建 API 密钥用于程序访问",
|
||||
@@ -1413,6 +1439,27 @@
|
||||
"Enabled by {{integrationCreatedBy}}": "由 {{integrationCreatedBy}} 启用",
|
||||
"Disconnecting will prevent previewing GitHub links from this organization in documents. Are you sure?": "断开连接后将无法在文档中预览此 GitHub 组织内的链接。您确定吗?",
|
||||
"The GitHub integration is currently disabled. Please set the associated environment variables and restart the server to enable the integration.": "Github 集成当前已禁用。请设置相关的环境变量并重新启动服务以启用此集成。",
|
||||
"Connect GitLab": "Connect GitLab",
|
||||
"Enter the details for your GitLab instance.": "Enter the details for your GitLab instance.",
|
||||
"GitLab URL": "GitLab URL",
|
||||
"URL must start with https": "URL must start with https",
|
||||
"Client ID": "Client ID",
|
||||
"OAuth application ID": "OAuth application ID",
|
||||
"Client Secret": "Client Secret",
|
||||
"OAuth application secret": "OAuth application secret",
|
||||
"Connecting": "Connecting",
|
||||
"Choose which GitLab instance to connect to.": "Choose which GitLab instance to connect to.",
|
||||
"GitLab Cloud": "GitLab Cloud",
|
||||
"Connect to your account on gitlab.com": "Connect to your account on gitlab.com",
|
||||
"GitLab Cloud credentials are not configured": "GitLab Cloud credentials are not configured",
|
||||
"Self-managed": "Self-managed",
|
||||
"Connect to a custom GitLab installation": "Connect to a custom GitLab installation",
|
||||
"You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?": "You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?",
|
||||
"The GitLab account is already connected to this workspace.": "The GitLab account is already connected to this workspace.",
|
||||
"Something went wrong while authenticating your request. Please try again.": "Something went wrong while authenticating your request. Please try again.",
|
||||
"The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.": "The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.",
|
||||
"Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.": "Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.",
|
||||
"Disconnecting will prevent previewing links from GitLab in documents. Are you sure?": "Disconnecting will prevent previewing links from GitLab in documents. Are you sure?",
|
||||
"Google Analytics": "谷歌分析",
|
||||
"Add a Google Analytics 4 measurement ID to send document views and analytics from the workspace to your own Google Analytics account.": "添加 Google Analytics 4 Measurement ID 后会将文档访问量和分析从工作区发送至您的 Google Analytics 帐户。",
|
||||
"Measurement ID": "Measurement ID",
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
"Collection permissions": "文件集權限",
|
||||
"Share this collection": "分享這個文件集",
|
||||
"Import document": "匯入文件",
|
||||
"Uploading": "正在上傳",
|
||||
"Sort in sidebar": "在側邊欄中排序",
|
||||
"A-Z sort": "A-Z排列",
|
||||
"Z-A sort": "Z-A排列",
|
||||
@@ -53,8 +54,9 @@
|
||||
"Development": "開發",
|
||||
"Open document": "打開文件",
|
||||
"New draft": "新增草稿",
|
||||
"New from template": "從範本建立",
|
||||
"New nested document": "建立新的子文件",
|
||||
"Nested document": "Nested document",
|
||||
"Before": "Before",
|
||||
"After": "After",
|
||||
"Publish": "發佈",
|
||||
"Published {{ documentName }}": "已發佈 {{ documentName }}",
|
||||
"Publish document": "發佈文件",
|
||||
@@ -91,9 +93,7 @@
|
||||
"Create template": "建立範本",
|
||||
"Open random document": "隨機打開文件",
|
||||
"Search documents for \"{{searchQuery}}\"": "搜尋含有 “{{searchQuery}}” 的文件",
|
||||
"Move to workspace": "移至工作區",
|
||||
"Move": "移動",
|
||||
"Move to collection": "移至文件集",
|
||||
"Move {{ documentType }}": "移動 {{ documentType }}",
|
||||
"Are you sure you want to archive this document?": "您確定要封存這份文件?",
|
||||
"Document archived": "文件已被封存",
|
||||
@@ -165,6 +165,15 @@
|
||||
"New workspace": "新建的工作空間",
|
||||
"Create a workspace": "建立新的工作空間",
|
||||
"Login to workspace": "登入工作區",
|
||||
"Template deleted": "Template deleted",
|
||||
"Deleting": "正在刪除",
|
||||
"Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.": "Are you sure about that? Deleting the <em>{{ templateName }}</em> template is permanent.",
|
||||
"Move to workspace": "移至工作區",
|
||||
"Template moved": "Template moved",
|
||||
"Couldn't move the template, try again?": "Couldn't move the template, try again?",
|
||||
"Move to collection": "移至文件集",
|
||||
"Move template": "Move template",
|
||||
"Print template": "Print template",
|
||||
"Invite people": "邀請使用者",
|
||||
"Invite to workspace": "邀請至工作區",
|
||||
"Promote to {{ role }}": "提升為{{ role }}",
|
||||
@@ -176,6 +185,7 @@
|
||||
"Debug": "除錯",
|
||||
"Document": "文件",
|
||||
"Documents": "所有文件",
|
||||
"Template": "範本",
|
||||
"Recently viewed": "最近瀏覽",
|
||||
"Revision": "版本紀錄",
|
||||
"Navigation": "導覽",
|
||||
@@ -195,6 +205,7 @@
|
||||
"Collections are used to group documents and choose permissions": "文件集用於將文件分組並設定權限。",
|
||||
"Name": "名稱",
|
||||
"The default access for workspace members, you can share with more users or groups later.": "這是工作區成員的預設存取權,您之後可以再分享給更多使用者或群組。",
|
||||
"Advanced options": "Advanced options",
|
||||
"Public document sharing": "公開分享文件",
|
||||
"Allow documents within this collection to be shared publicly on the internet.": "允許此文件集內的文件在網際網路上公開分享。",
|
||||
"Commenting": "評論中",
|
||||
@@ -205,10 +216,10 @@
|
||||
"Create": "建立",
|
||||
"Collection deleted": "文件集已刪除",
|
||||
"I’m sure – Delete": "我確定「刪除」",
|
||||
"Deleting": "正在刪除",
|
||||
"Are you sure about that? Deleting the <em>{{collectionName}}</em> collection is permanent and cannot be restored, however all published documents within will be moved to the trash.": "您確定這麼做嗎? 刪除 <em>{{collectionName}}</em> 文件集後將無法還原,而文件集中包含的文件會被移動到垃圾桶。",
|
||||
"Also, <em>{{collectionName}}</em> is being used as the start view – deleting it will reset the start view to the Home page.": "此外, <em>{{collectionName}}</em> 被用作開始視圖 - 刪除它會將開始頁面重置為主頁。",
|
||||
"Type a command or search": "輸入或搜尋指令",
|
||||
"New from template": "從範本建立",
|
||||
"Choose a template": "選擇範本",
|
||||
"Are you sure you want to permanently delete this entire comment thread?": "您確定要永久刪除整個留言串嗎?",
|
||||
"Are you sure you want to permanently delete this comment?": "您確定要永久刪除此留言嗎?",
|
||||
@@ -227,12 +238,6 @@
|
||||
"Deleted Collection": "刪除的文件集",
|
||||
"Untitled": "無標題",
|
||||
"Unpin": "取消釘選",
|
||||
"Select a location to copy": "選擇要複製到的位置",
|
||||
"Document copied": "已複製文件",
|
||||
"Couldn’t copy the document, try again?": "無法複製文件,再嘗試一次?",
|
||||
"Include nested documents": "包含所有子文件",
|
||||
"Copy to <em>{{ location }}</em>": "複製到<em>{{ location }}</em>",
|
||||
"Copying": "Copying",
|
||||
"Export started": "已經開始匯出",
|
||||
"A link to your file will be sent through email soon": "A link to your file will be sent through email soon",
|
||||
"Preparing your download": "Preparing your download",
|
||||
@@ -242,13 +247,24 @@
|
||||
"Include child documents": "Include child documents",
|
||||
"When selected, exporting the document <em>{{documentName}}</em> may take some time.": "When selected, exporting the document <em>{{documentName}}</em> may take some time.",
|
||||
"You will receive an email when it's complete.": "完成後,您將收到一封電子郵件。",
|
||||
"Select a location to copy": "選擇要複製到的位置",
|
||||
"Document copied": "已複製文件",
|
||||
"Couldn’t copy the document, try again?": "無法複製文件,再嘗試一次?",
|
||||
"Include nested documents": "包含所有子文件",
|
||||
"Copy to <em>{{ location }}</em>": "複製到<em>{{ location }}</em>",
|
||||
"Copying": "Copying",
|
||||
"Search collections & documents": "搜尋文件集與文件",
|
||||
"Search collections": "Search collections",
|
||||
"No results found": "找不到任何結果",
|
||||
"Select a location to move": "選擇要移動至的位置",
|
||||
"Document moved": "文件已移動",
|
||||
"Couldn’t move the document, try again?": "無法移動文件,請重新嘗試。",
|
||||
"Move to <em>{{ location }}</em>": "移動至 <em>{{ location }}</em>",
|
||||
"Couldn’t move the template, try again?": "Couldn’t move the template, try again?",
|
||||
"Document options": "文件選項",
|
||||
"New": "新",
|
||||
"Only visible to you": "只有您可以檢視",
|
||||
"Draft": "草稿",
|
||||
"Template": "範本",
|
||||
"You updated": "由您更新",
|
||||
"{{ userName }} updated": "由 {{ userName }} 更新",
|
||||
"You deleted": "你已刪除了",
|
||||
@@ -278,7 +294,6 @@
|
||||
"Please enter a name for the emoji": "Please enter a name for the emoji",
|
||||
"Please select an image file": "Please select an image file",
|
||||
"Emoji created successfully": "Emoji created successfully",
|
||||
"Uploading": "正在上傳",
|
||||
"Add emoji": "Add emoji",
|
||||
"Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.": "Square images with transparent backgrounds work best. If your image is too large, we’ll try to resize it for you.",
|
||||
"Upload an image": "Upload an image",
|
||||
@@ -467,6 +482,7 @@
|
||||
"Collapse sidebar": "Collapse sidebar",
|
||||
"Archived collections": "已封存的文件集",
|
||||
"New doc": "新文件",
|
||||
"New nested document": "建立新的子文件",
|
||||
"Empty": "空無一物",
|
||||
"No collections": "No collections",
|
||||
"Collapse": "收合",
|
||||
@@ -493,6 +509,8 @@
|
||||
"Unstar document": "取消星號",
|
||||
"Star document": "標示星號",
|
||||
"Select a color": "選擇顏色",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "高亮顯示一些文字並使用 <1></1> 控制項添加可以在建立新文件時填寫的佔位符",
|
||||
"You’re editing a template": "您正在編輯範本",
|
||||
"Template created, go ahead and customize it": "範本已經建立,繼續將其客製化",
|
||||
"Creating a template from <em>{{titleWithDefault}}</em> is a non-destructive action – we'll make a copy of the document and turn it into a template that can be used as a starting point for new documents.": "從 <em>{{titleWithDefault}}</em> 建立範本是不會對原本的文件造成影響-我們會將文件複製後並將其轉換為可以用來建立新文件的範本。",
|
||||
"Enable other members to use the template immediately": "允許其它成員立即使用此範本",
|
||||
@@ -632,6 +650,7 @@
|
||||
"Delete embed": "Delete embed",
|
||||
"Formatting controls": "Formatting controls",
|
||||
"Distribute columns": "Distribute columns",
|
||||
"Wrap text": "Wrap text",
|
||||
"Delete Emoji": "Delete Emoji",
|
||||
"Emoji deleted": "Emoji deleted",
|
||||
"I'm sure – Delete": "I'm sure – Delete",
|
||||
@@ -644,17 +663,19 @@
|
||||
"Unsubscribed from document": "取消訂閱文件",
|
||||
"Unsubscribed from collection": "取消訂閱文件",
|
||||
"Account": "帳號",
|
||||
"API & Apps": "API & Apps",
|
||||
"API & Access": "API & Access",
|
||||
"Details": "詳細",
|
||||
"Authentication": "Authentication",
|
||||
"Security": "安全性",
|
||||
"Features": "功能特色",
|
||||
"AI": "AI",
|
||||
"API Keys": "API金鑰",
|
||||
"Applications": "Applications",
|
||||
"Shared Links": "已分享的連結",
|
||||
"Import": "匯入",
|
||||
"Install": "Install",
|
||||
"Embeds": "Embeds",
|
||||
"Configure which embed providers are available in the editor.": "Configure which embed providers are available in the editor.",
|
||||
"Integrations": "整合",
|
||||
"Install": "Install",
|
||||
"Change name": "變更名稱",
|
||||
"Change email": "更改電子郵件",
|
||||
"Suspend user": "停用使用者",
|
||||
@@ -685,8 +706,8 @@
|
||||
"Headings you add to the document will appear here": "您在文件中新增的標題會顯示在此",
|
||||
"Contents": "目錄",
|
||||
"Table of contents": "目錄",
|
||||
"Template options": "Template options",
|
||||
"User options": "使用者選項",
|
||||
"template": "範本",
|
||||
"document": "文件",
|
||||
"Export complete": "Export complete",
|
||||
"Export failed": "Export failed",
|
||||
@@ -812,23 +833,15 @@
|
||||
"Sorry, the last change could not be persisted – please reload the page": "抱歉,無法保留上次更改 - 請重新加載頁面",
|
||||
"{{ count }} days": "{{ count }} 天",
|
||||
"{{ count }} days_plural": "{{ count }} 天",
|
||||
"This template will be permanently deleted in <2></2> unless restored.": "範本若未於 <2></2> 還原,將被永久刪除。",
|
||||
"This document will be permanently deleted in <2></2> unless restored.": "文件若未於 <2></2> 還原,將被永久刪除。",
|
||||
"Highlight some text and use the <1></1> control to add placeholders that can be filled out when creating new documents": "高亮顯示一些文字並使用 <1></1> 控制項添加可以在建立新文件時填寫的佔位符",
|
||||
"You’re editing a template": "您正在編輯範本",
|
||||
"Deleted by {{userName}}": "已由 {{userName}} 刪除",
|
||||
"Observing {{ userName }}": "正在觀察 {{ userName }}",
|
||||
"Backlinks": "反向連結",
|
||||
"This document is large which may affect performance": "This document is large which may affect performance",
|
||||
"Are you sure you want to delete the <em>{{ documentTitle }}</em> template?": "您確定要刪除 <em>{{ documentTitle }}</em> 範本嗎?",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history</em>.": "你確定嗎?刪除 <em>{{ documentTitle }}</em> 文件將刪除其所有歷史記錄</em>。",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>.": "您確定要這麼做嗎?將文件 <em>{{ documentTitle }}</em> 刪除同時也會刪除所有它的歷史紀錄以及 <em>{{ any }} 所屬的子文件</em>。",
|
||||
"Are you sure about that? Deleting the <em>{{ documentTitle }}</em> document will delete all of its history and <em>{{ any }} nested document</em>._plural": "您確定要這麼做嗎?將文件 <em>{{ documentTitle }}</em> 刪除同時也會刪除所有它的歷史紀錄以及 <em>{{ any }} 所屬的子文件</em>。",
|
||||
"If you’d like the option of referencing or restoring the {{noun}} in the future, consider archiving it instead.": "如果您希望將來可以引用或還原 {{noun}},請考慮改將其封存。",
|
||||
"Select a location to move": "選擇要移動至的位置",
|
||||
"Document moved": "文件已移動",
|
||||
"Couldn’t move the document, try again?": "無法移動文件,請重新嘗試。",
|
||||
"Move to <em>{{ location }}</em>": "移動至 <em>{{ location }}</em>",
|
||||
"Couldn’t create the document, try again?": "無法建立文件,請再試一次?",
|
||||
"Document permanently deleted": "文件已經被永久刪除",
|
||||
"Are you sure you want to permanently delete the <em>{{ documentTitle }}</em> document? This action is immediate and cannot be undone.": "您確定要永久刪除文件 <em>{{ documentTitle }}</em> 嗎?這個動作會立即生效且無法被回復。",
|
||||
@@ -885,7 +898,6 @@
|
||||
"Open this guide": "打開這份指南",
|
||||
"Enter": "Enter",
|
||||
"Publish document and exit": "發佈並退出",
|
||||
"Save document": "儲存文件",
|
||||
"Cancel editing": "取消編輯",
|
||||
"Collaboration": "合作",
|
||||
"Formatting": "格式化",
|
||||
@@ -978,11 +990,14 @@
|
||||
"An error occurred": "An error occurred",
|
||||
"The OAuth client could not be found, please check the provided client ID": "The OAuth client could not be found, please check the provided client ID",
|
||||
"The OAuth client could not be loaded, please check the redirect URI is valid": "The OAuth client could not be loaded, please check the redirect URI is valid",
|
||||
"The OAuth client could not be loaded, please check your workspace subdomain is correct": "The OAuth client could not be loaded, please check your workspace subdomain is correct",
|
||||
"Required OAuth parameters are missing": "Required OAuth parameters are missing",
|
||||
"Authorize": "Authorize",
|
||||
"{{ appName }} wants to access {{ teamName }}": "{{ appName }} wants to access {{ teamName }}",
|
||||
"By <em>{{ developerName }}</em>": "By <em>{{ developerName }}</em>",
|
||||
"{{ appName }} will be able to access your account and perform the following actions": "{{ appName }} will be able to access your account and perform the following actions",
|
||||
"You will be redirected to a local application after authorizing.": "You will be redirected to a local application after authorizing.",
|
||||
"You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.": "You will be redirected to <em>{{ redirectUri }}</em> after authorizing. Make sure you trust this URL.",
|
||||
"read": "read",
|
||||
"write": "write",
|
||||
"read and write": "read and write",
|
||||
@@ -1156,6 +1171,8 @@
|
||||
"Last accessed": "最近存取",
|
||||
"Domain": "網域",
|
||||
"Views": "瀏覽次數",
|
||||
"Visibility": "Visibility",
|
||||
"Updated by": "Updated by",
|
||||
"All roles": "所有角色",
|
||||
"Admins": "管理員",
|
||||
"Editors": "編輯者",
|
||||
@@ -1188,15 +1205,26 @@
|
||||
"Your workspace will be accessible at": "您的工作區可以透過此超連結存取",
|
||||
"Choose a subdomain to enable a login page just for your team.": "選擇一個子域名來為您的團隊啟用登入頁面。",
|
||||
"This is the screen that workspace members will first see when they sign in.": "這是工作區成員登入時首先會看到的介面。",
|
||||
"Danger": "危險",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "You can delete this entire workspace including collections, documents, and users.",
|
||||
"Export data": "匯出數據",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "匯出所有文件集將會需要一些時間,可以的話,請考慮匯出單一的文件或文件集。我們會將您擁有的所有文件轉換為 Markdown 格式,並封裝為一個 zip 壓縮檔。\n在匯出作業開始後您即可離開這個頁面 – 如果您有開啟通知,匯出完成時我們會透過電子郵件寄送連結到 <em>{{ userEmail }}</em>。",
|
||||
"Recent exports": "最近匯出的",
|
||||
"Manage optional and beta features. Changing these settings will affect the experience for all members of the workspace.": "管理可選和 Beta 測試的功能,更改這些設定會影響所有工作區的成員。",
|
||||
"Separate editing": "分開編輯",
|
||||
"When enabled documents have a separate editing mode by default instead of being always editable. This setting can be overridden by user preferences.": "啟用時,文件預設採用單獨的編輯模式,而非始終處於可編輯狀態。此設定可被使用者偏好所覆蓋。",
|
||||
"When enabled team members can add comments to documents.": "啓用時,團隊成員可以在文件中新增留言。",
|
||||
"Danger": "危險",
|
||||
"You can delete this entire workspace including collections, documents, and users.": "You can delete this entire workspace including collections, documents, and users.",
|
||||
"Enabled": "Enabled",
|
||||
"Allow supported providers to be inserted as interactive embeds in documents.": "Allow supported providers to be inserted as interactive embeds in documents.",
|
||||
"Providers": "Providers",
|
||||
"Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.": "Enabled providers will appear in the editor slash menu and embed automatically when a compatible link is pasted. Existing embeds in documents will continue to display regardless of these settings.",
|
||||
"All providers": "All providers",
|
||||
"Export data": "匯出數據",
|
||||
"A full export might take some time, consider exporting a single document or collection. You may leave this page once the export has started – if you have notifications enabled, we will email a link to <em>{{ userEmail }}</em> when it’s complete.": "匯出所有文件集將會需要一些時間,可以的話,請考慮匯出單一的文件或文件集。我們會將您擁有的所有文件轉換為 Markdown 格式,並封裝為一個 zip 壓縮檔。\n在匯出作業開始後您即可離開這個頁面 – 如果您有開啟通知,匯出完成時我們會透過電子郵件寄送連結到 <em>{{ userEmail }}</em>。",
|
||||
"Recent exports": "最近匯出的",
|
||||
"Manage AI and integration features for your workspace.": "Manage AI and integration features for your workspace.",
|
||||
"MCP server": "MCP server",
|
||||
"Allow members to connect to this workspace with MCP to read and write data.": "Allow members to connect to this workspace with MCP to read and write data.",
|
||||
"Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.": "Use the following endpoint to connect to the MCP server from your app. Find out more about setup in <a>the docs</a>.",
|
||||
"Copy URL": "Copy URL",
|
||||
"AI answers": "AI answers",
|
||||
"Use AI to get direct answers to questions in search. This feature requires a paid license.": "Use AI to get direct answers to questions in search. This feature requires a paid license.",
|
||||
"Create a group": "建立群組",
|
||||
"Could not load groups": "無法移除群組",
|
||||
"New group": "建立群組",
|
||||
@@ -1288,8 +1316,6 @@
|
||||
"When enabled, viewers can see download options for documents": "啓用時,檢視者可以看到文件的下載選項",
|
||||
"Users can delete account": "使用者可以刪除帳號",
|
||||
"When enabled, users can delete their own account from the workspace": "When enabled, users can delete their own account from the workspace",
|
||||
"Rich service embeds": "顯示嵌入的外部服務",
|
||||
"Links to supported services are shown as rich embeds within your documents": "支援的外部服務連結將會被嵌入顯示於您的文件中",
|
||||
"Email address visibility": "Email address visibility",
|
||||
"Controls who can see user email addresses in the workspace": "Controls who can see user email addresses in the workspace",
|
||||
"Collection creation": "文件集已建立",
|
||||
@@ -1300,9 +1326,10 @@
|
||||
"Sharing is currently disabled.": "已停用分享功能。",
|
||||
"You can globally enable and disable public document sharing in the <em>security settings</em>.": "您可以透過<em>安全性設定</em>針對全域啟用或停用文件公開分享的功能。",
|
||||
"Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.": "下列清單為已被分享之文件。任何擁有公開分享連結的人,在分享連結被註銷前,都可以存取文件的唯讀版本。",
|
||||
"You can create templates to help your team create consistent and accurate documentation.": "您可以建立文件範本來幫助團隊建立一致且準確的文件。",
|
||||
"Alphabetical": "依照字母",
|
||||
"There are no templates just yet.": "目前還沒有任何文件範本。",
|
||||
"A template must have content": "A template must have content",
|
||||
"Could not load templates": "Could not load templates",
|
||||
"Templates help your team create consistent and accurate documentation.": "Templates help your team create consistent and accurate documentation.",
|
||||
"No templates have been created yet": "No templates have been created yet",
|
||||
"{{ teamName }} is using {{ appName }} to share documents, please login to continue.": "{{ teamName }} 正在使用 {{ appName }} 分享文件,請登入以繼續。",
|
||||
"A confirmation code has been sent to your email address, please enter the code below to permanently destroy this workspace.": "確認碼已發送至您的電子郵件,請輸入確認碼以永久地刪除這個工作區。",
|
||||
"Confirmation code": "驗證碼",
|
||||
@@ -1363,7 +1390,6 @@
|
||||
"New Attribute": "New Attribute",
|
||||
"Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.": "Attributes allow you to define data to be stored with your documents. They can be used to store custom properties, metadata, or any other structured information that is common across documents.",
|
||||
"Custom domain": "Custom domain",
|
||||
"AI answers": "AI answers",
|
||||
"Use AI to directly answer searched questions using content in your workspace.": "Use AI to directly answer searched questions using content in your workspace.",
|
||||
"API access": "API access",
|
||||
"Allow members to create API keys for programmatic access": "Allow members to create API keys for programmatic access",
|
||||
@@ -1413,6 +1439,27 @@
|
||||
"Enabled by {{integrationCreatedBy}}": "由 {{integrationCreatedBy}} 啟用",
|
||||
"Disconnecting will prevent previewing GitHub links from this organization in documents. Are you sure?": "Disconnecting will prevent previewing GitHub links from this organization in documents. Are you sure?",
|
||||
"The GitHub integration is currently disabled. Please set the associated environment variables and restart the server to enable the integration.": "Slack 整合目前已停用,若要啟用,請設定相關的環境變數並重新啟動伺服器。",
|
||||
"Connect GitLab": "Connect GitLab",
|
||||
"Enter the details for your GitLab instance.": "Enter the details for your GitLab instance.",
|
||||
"GitLab URL": "GitLab URL",
|
||||
"URL must start with https": "URL must start with https",
|
||||
"Client ID": "Client ID",
|
||||
"OAuth application ID": "OAuth application ID",
|
||||
"Client Secret": "Client Secret",
|
||||
"OAuth application secret": "OAuth application secret",
|
||||
"Connecting": "Connecting",
|
||||
"Choose which GitLab instance to connect to.": "Choose which GitLab instance to connect to.",
|
||||
"GitLab Cloud": "GitLab Cloud",
|
||||
"Connect to your account on gitlab.com": "Connect to your account on gitlab.com",
|
||||
"GitLab Cloud credentials are not configured": "GitLab Cloud credentials are not configured",
|
||||
"Self-managed": "Self-managed",
|
||||
"Connect to a custom GitLab installation": "Connect to a custom GitLab installation",
|
||||
"You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?": "You need to accept the permissions in GitLab to connect {{appName}} to your workspace. Try again?",
|
||||
"The GitLab account is already connected to this workspace.": "The GitLab account is already connected to this workspace.",
|
||||
"Something went wrong while authenticating your request. Please try again.": "Something went wrong while authenticating your request. Please try again.",
|
||||
"The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.": "The owner of GitLab account has been requested to install the application. Once approved, the connection will be completed.",
|
||||
"Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.": "Enable previews of GitLab issues and merge requests in documents by connecting a GitLab organization or specific repositories to {appName}.",
|
||||
"Disconnecting will prevent previewing links from GitLab in documents. Are you sure?": "Disconnecting will prevent previewing links from GitLab in documents. Are you sure?",
|
||||
"Google Analytics": "Google 分析",
|
||||
"Add a Google Analytics 4 measurement ID to send document views and analytics from the workspace to your own Google Analytics account.": "添加你的 Google Analytics ,以將知識庫的文件檢視和分析數據發送到您自己的 Google Analytics 帳戶。",
|
||||
"Measurement ID": "Measurement ID",
|
||||
|
||||
Reference in New Issue
Block a user