mirror of
https://github.com/outline/outline.git
synced 2026-06-14 03:45:00 +03:00
Compare commits
24 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 86c16d5ccb | |||
| 33b7c8940f | |||
| 854fbca420 | |||
| 82539cc348 | |||
| 027522350f | |||
| eb92a206fb | |||
| dfc3c05c40 | |||
| 59fa91413d | |||
| 205ca03ced | |||
| 0432144d1e | |||
| c81802b3bb | |||
| 6ecf9ca9c3 | |||
| b788b95880 | |||
| ff0bebaf63 | |||
| f53c2828ef | |||
| 926a4e2224 | |||
| 12efdf4e50 | |||
| 49b2fad6ce | |||
| 2edd48ab84 | |||
| 146cf56bce | |||
| d37e21645c | |||
| fe2c9b5817 | |||
| ec86e80edb | |||
| fa19b278a4 |
@@ -107,6 +107,7 @@ jobs:
|
||||
name: Send bundle stats to RelativeCI
|
||||
command: npx relative-ci-agent
|
||||
build-image:
|
||||
resource_class: xlarge
|
||||
executor: docker-publisher
|
||||
steps:
|
||||
- checkout
|
||||
|
||||
@@ -24,6 +24,6 @@ jobs:
|
||||
operations-per-run: 60
|
||||
stale-issue-label: stale
|
||||
stale-pr-label: stale
|
||||
exempt-issue-labels: "security,pinned"
|
||||
exempt-issue-labels: "security,pinned,A1"
|
||||
- name: Print outputs
|
||||
run: echo ${{ join(steps.stale.outputs.*, ',') }}
|
||||
|
||||
@@ -2,6 +2,7 @@ import copy from "copy-to-clipboard";
|
||||
import {
|
||||
BeakerIcon,
|
||||
CopyIcon,
|
||||
EditIcon,
|
||||
ToolsIcon,
|
||||
TrashIcon,
|
||||
UserIcon,
|
||||
@@ -83,6 +84,38 @@ export const copyId = createAction({
|
||||
},
|
||||
});
|
||||
|
||||
function generateRandomText() {
|
||||
const characters =
|
||||
"abcdefghijklmno pqrstuvwxyzABCDEFGHIJKL MNOPQRSTUVWXYZ 0123456789\n";
|
||||
let text = "";
|
||||
for (let i = 0; i < Math.floor(Math.random() * 10) + 1; i++) {
|
||||
text += characters.charAt(Math.floor(Math.random() * characters.length));
|
||||
}
|
||||
return text;
|
||||
}
|
||||
|
||||
export const startTyping = createAction({
|
||||
name: "Start automatic typing",
|
||||
icon: <EditIcon />,
|
||||
section: DeveloperSection,
|
||||
visible: ({ activeDocumentId }) =>
|
||||
!!activeDocumentId && env.ENVIRONMENT === "development",
|
||||
perform: () => {
|
||||
const intervalId = setInterval(() => {
|
||||
const text = generateRandomText();
|
||||
document.execCommand("insertText", false, text);
|
||||
}, 250);
|
||||
|
||||
window.addEventListener("keydown", (event) => {
|
||||
if (event.key === "Escape") {
|
||||
intervalId && clearInterval(intervalId);
|
||||
}
|
||||
});
|
||||
|
||||
toast.info("Automatic typing started, press Escape to stop");
|
||||
},
|
||||
});
|
||||
|
||||
export const clearIndexedDB = createAction({
|
||||
name: ({ t }) => t("Clear IndexedDB cache"),
|
||||
icon: <TrashIcon />,
|
||||
@@ -169,6 +202,7 @@ export const developer = createAction({
|
||||
createToast,
|
||||
createTestUsers,
|
||||
clearIndexedDB,
|
||||
startTyping,
|
||||
],
|
||||
});
|
||||
|
||||
|
||||
@@ -358,7 +358,7 @@ export const unsubscribeDocument = createAction({
|
||||
|
||||
const document = stores.documents.get(activeDocumentId);
|
||||
|
||||
await document?.unsubscribe(currentUserId);
|
||||
await document?.unsubscribe();
|
||||
|
||||
toast.success(t("Unsubscribed from document notifications"));
|
||||
},
|
||||
@@ -1179,6 +1179,7 @@ export const rootDocumentActions = [
|
||||
openDocument,
|
||||
archiveDocument,
|
||||
createDocument,
|
||||
createNestedDocument,
|
||||
createTemplateFromDocument,
|
||||
deleteDocument,
|
||||
importDocument,
|
||||
|
||||
@@ -101,9 +101,12 @@ const CollectionLink: React.FC<Props> = ({
|
||||
collection?.addDocument(newDocument);
|
||||
|
||||
closeAddingNewChild();
|
||||
history.replace(documentEditPath(newDocument));
|
||||
history.push({
|
||||
pathname: documentEditPath(newDocument),
|
||||
state: { sidebarContext },
|
||||
});
|
||||
},
|
||||
[user, closeAddingNewChild, history, collection, documents]
|
||||
[user, sidebarContext, closeAddingNewChild, history, collection, documents]
|
||||
);
|
||||
|
||||
return (
|
||||
|
||||
@@ -240,9 +240,21 @@ function InnerDocumentLink(
|
||||
collection?.addDocument(newDocument, node.id);
|
||||
|
||||
closeAddingNewChild();
|
||||
history.replace(documentEditPath(newDocument));
|
||||
history.push({
|
||||
pathname: documentEditPath(newDocument),
|
||||
state: { sidebarContext },
|
||||
});
|
||||
},
|
||||
[documents, collection, user, node, doc, history, closeAddingNewChild]
|
||||
[
|
||||
documents,
|
||||
collection,
|
||||
sidebarContext,
|
||||
user,
|
||||
node,
|
||||
doc,
|
||||
history,
|
||||
closeAddingNewChild,
|
||||
]
|
||||
);
|
||||
|
||||
return (
|
||||
|
||||
@@ -86,6 +86,11 @@ function StarredLink({ star }: Props) {
|
||||
[]
|
||||
);
|
||||
|
||||
const handlePrefetch = React.useCallback(
|
||||
() => documentId && documents.prefetchDocument(documentId),
|
||||
[documents, documentId]
|
||||
);
|
||||
|
||||
const getIndex = () => {
|
||||
const next = star?.next();
|
||||
return fractionalIndex(star?.index || null, next?.index || null);
|
||||
@@ -142,6 +147,7 @@ function StarredLink({ star }: Props) {
|
||||
}}
|
||||
expanded={hasChildDocuments && !isDragging ? expanded : undefined}
|
||||
onDisclosureClick={handleDisclosureClick}
|
||||
onClickIntent={handlePrefetch}
|
||||
icon={icon}
|
||||
isActive={(
|
||||
match,
|
||||
@@ -172,6 +178,7 @@ function StarredLink({ star }: Props) {
|
||||
node={node}
|
||||
collection={collection}
|
||||
activeDocument={documents.active}
|
||||
prefetchDocument={documents.prefetchDocument}
|
||||
isDraft={node.isDraft}
|
||||
depth={2}
|
||||
index={index}
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
import React from "react";
|
||||
import useDictionary from "~/hooks/useDictionary";
|
||||
import getMenuItems from "../menus/block";
|
||||
import { useEditor } from "./EditorContext";
|
||||
import SuggestionsMenu, {
|
||||
Props as SuggestionsMenuProps,
|
||||
} from "./SuggestionsMenu";
|
||||
@@ -11,6 +12,7 @@ type Props = Omit<SuggestionsMenuProps, "renderMenuItem" | "items"> &
|
||||
|
||||
function BlockMenu(props: Props) {
|
||||
const dictionary = useDictionary();
|
||||
const { elementRef } = useEditor();
|
||||
|
||||
return (
|
||||
<SuggestionsMenu
|
||||
@@ -26,7 +28,7 @@ function BlockMenu(props: Props) {
|
||||
shortcut={item.shortcut}
|
||||
/>
|
||||
)}
|
||||
items={getMenuItems(dictionary)}
|
||||
items={getMenuItems(dictionary, elementRef)}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import { Plugin, PluginKey } from "prosemirror-state";
|
||||
import Extension from "@shared/editor/lib/Extension";
|
||||
import { ProsemirrorHelper } from "@shared/utils/ProsemirrorHelper";
|
||||
|
||||
/**
|
||||
* A plugin that allows overriding the default behavior of the editor to allow
|
||||
@@ -11,16 +12,34 @@ export default class ClipboardTextSerializer extends Extension {
|
||||
}
|
||||
|
||||
get plugins() {
|
||||
const serializer = this.editor.extensions.serializer();
|
||||
const mdSerializer = this.editor.extensions.serializer();
|
||||
|
||||
return [
|
||||
new Plugin({
|
||||
key: new PluginKey("clipboardTextSerializer"),
|
||||
props: {
|
||||
clipboardTextSerializer: (slice) =>
|
||||
serializer.serialize(slice.content, {
|
||||
softBreak: true,
|
||||
}),
|
||||
clipboardTextSerializer: (slice) => {
|
||||
const isMultiline = slice.content.childCount > 1;
|
||||
|
||||
// This is a cheap way to determine if the content is "complex",
|
||||
// aka it has multiple marks or formatting. In which case we'll use
|
||||
// markdown formatting
|
||||
const copyAsMarkdown =
|
||||
isMultiline ||
|
||||
slice.content.content.some(
|
||||
(node) => node.content.content.length > 1
|
||||
);
|
||||
|
||||
return copyAsMarkdown
|
||||
? mdSerializer.serialize(slice.content, {
|
||||
softBreak: true,
|
||||
})
|
||||
: slice.content.content
|
||||
.map((node) =>
|
||||
ProsemirrorHelper.toPlainText(node, this.editor.schema)
|
||||
)
|
||||
.join("");
|
||||
},
|
||||
},
|
||||
}),
|
||||
];
|
||||
|
||||
@@ -38,7 +38,12 @@ const Img = styled(Image)`
|
||||
height: 18px;
|
||||
`;
|
||||
|
||||
export default function blockMenuItems(dictionary: Dictionary): MenuItem[] {
|
||||
export default function blockMenuItems(
|
||||
dictionary: Dictionary,
|
||||
documentRef: React.RefObject<HTMLDivElement>
|
||||
): MenuItem[] {
|
||||
const documentWidth = documentRef.current?.clientWidth ?? 0;
|
||||
|
||||
return [
|
||||
{
|
||||
name: "heading",
|
||||
@@ -119,7 +124,11 @@ export default function blockMenuItems(dictionary: Dictionary): MenuItem[] {
|
||||
name: "table",
|
||||
title: dictionary.table,
|
||||
icon: <TableIcon />,
|
||||
attrs: { rowsCount: 3, colsCount: 3 },
|
||||
attrs: {
|
||||
rowsCount: 3,
|
||||
colsCount: 3,
|
||||
colWidth: documentWidth / 3,
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "blockquote",
|
||||
|
||||
@@ -96,7 +96,7 @@ const MenuTrigger: React.FC<MenuTriggerProps> = ({ label, onTrigger }) => {
|
||||
const { model: document, menuState } = useMenuContext<Document>();
|
||||
|
||||
const { data, loading, error, request } = useRequest(() =>
|
||||
subscriptions.fetchPage({
|
||||
subscriptions.fetchOne({
|
||||
documentId: document.id,
|
||||
event: "documents.update",
|
||||
})
|
||||
|
||||
@@ -307,9 +307,7 @@ export default class Document extends ArchivableModel implements Searchable {
|
||||
*/
|
||||
@computed
|
||||
get isSubscribed(): boolean {
|
||||
return !!this.store.rootStore.subscriptions.orderedData.find(
|
||||
(subscription) => subscription.documentId === this.id
|
||||
);
|
||||
return !!this.store.rootStore.subscriptions.getByDocumentId(this.id);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -501,7 +499,7 @@ export default class Document extends ArchivableModel implements Searchable {
|
||||
* @returns A promise that resolves when the subscription is destroyed.
|
||||
*/
|
||||
@action
|
||||
unsubscribe = (userId: string) => this.store.unsubscribe(userId, this);
|
||||
unsubscribe = () => this.store.unsubscribe(this);
|
||||
|
||||
@action
|
||||
view = () => {
|
||||
|
||||
@@ -542,14 +542,6 @@ class DocumentScene extends React.Component<Props> {
|
||||
</RevisionContainer>
|
||||
) : (
|
||||
<>
|
||||
{showContents && (
|
||||
<ContentsContainer
|
||||
docFullWidth={document.fullWidth}
|
||||
position={tocPos}
|
||||
>
|
||||
<Contents />
|
||||
</ContentsContainer>
|
||||
)}
|
||||
<MeasuredContainer
|
||||
name="document"
|
||||
as={EditorContainer}
|
||||
@@ -600,6 +592,14 @@ class DocumentScene extends React.Component<Props> {
|
||||
) : null}
|
||||
</Editor>
|
||||
</MeasuredContainer>
|
||||
{showContents && (
|
||||
<ContentsContainer
|
||||
docFullWidth={document.fullWidth}
|
||||
position={tocPos}
|
||||
>
|
||||
<Contents />
|
||||
</ContentsContainer>
|
||||
)}
|
||||
</>
|
||||
)}
|
||||
</React.Suspense>
|
||||
|
||||
@@ -816,9 +816,9 @@ export default class DocumentsStore extends Store<Document> {
|
||||
event: "documents.update",
|
||||
});
|
||||
|
||||
unsubscribe = (userId: string, document: Document) => {
|
||||
const subscription = this.rootStore.subscriptions.orderedData.find(
|
||||
(s) => s.documentId === document.id && s.userId === userId
|
||||
unsubscribe = (document: Document) => {
|
||||
const subscription = this.rootStore.subscriptions.getByDocumentId(
|
||||
document.id
|
||||
);
|
||||
|
||||
return subscription?.delete();
|
||||
|
||||
@@ -1,4 +1,8 @@
|
||||
import invariant from "invariant";
|
||||
import { action } from "mobx";
|
||||
import Subscription from "~/models/Subscription";
|
||||
import { client } from "~/utils/ApiClient";
|
||||
import { AuthorizationError, NotFoundError } from "~/utils/errors";
|
||||
import RootStore from "./RootStore";
|
||||
import Store, { RPCAction } from "./base/Store";
|
||||
|
||||
@@ -8,4 +12,34 @@ export default class SubscriptionsStore extends Store<Subscription> {
|
||||
constructor(rootStore: RootStore) {
|
||||
super(rootStore, Subscription);
|
||||
}
|
||||
|
||||
@action
|
||||
async fetchOne({ documentId, event }: { documentId: string; event: string }) {
|
||||
const subscription = this.getByDocumentId(documentId);
|
||||
|
||||
if (subscription) {
|
||||
return subscription;
|
||||
}
|
||||
|
||||
this.isFetching = true;
|
||||
|
||||
try {
|
||||
const res = await client.post(`/${this.apiEndpoint}.info`, {
|
||||
documentId,
|
||||
event,
|
||||
});
|
||||
invariant(res?.data, "Data should be available");
|
||||
return this.add(res.data);
|
||||
} catch (err) {
|
||||
if (err instanceof AuthorizationError || err instanceof NotFoundError) {
|
||||
return;
|
||||
}
|
||||
throw err;
|
||||
} finally {
|
||||
this.isFetching = false;
|
||||
}
|
||||
}
|
||||
|
||||
getByDocumentId = (documentId: string): Subscription | undefined =>
|
||||
this.find({ documentId });
|
||||
}
|
||||
|
||||
+4
-4
@@ -118,7 +118,7 @@
|
||||
"fast-deep-equal": "^3.1.3",
|
||||
"fetch-retry": "^5.0.6",
|
||||
"fetch-with-proxy": "^3.0.1",
|
||||
"form-data": "^4.0.0",
|
||||
"form-data": "^4.0.1",
|
||||
"fractional-index": "^1.0.0",
|
||||
"framer-motion": "^4.1.17",
|
||||
"fs-extra": "^11.2.0",
|
||||
@@ -136,7 +136,7 @@
|
||||
"jszip": "^3.10.1",
|
||||
"katex": "^0.16.21",
|
||||
"kbar": "0.1.0-beta.41",
|
||||
"koa": "^2.15.3",
|
||||
"koa": "^2.15.4",
|
||||
"koa-body": "^6.0.1",
|
||||
"koa-compress": "^5.1.1",
|
||||
"koa-helmet": "^6.1.0",
|
||||
@@ -159,7 +159,7 @@
|
||||
"mobx-utils": "^4.0.1",
|
||||
"natural-sort": "^1.0.0",
|
||||
"node-fetch": "2.7.0",
|
||||
"nodemailer": "^6.9.16",
|
||||
"nodemailer": "^6.10.0",
|
||||
"octokit": "^3.2.1",
|
||||
"outline-icons": "^3.10.0",
|
||||
"oy-vey": "^0.12.1",
|
||||
@@ -256,7 +256,7 @@
|
||||
"@babel/cli": "^7.26.4",
|
||||
"@babel/preset-typescript": "^7.26.0",
|
||||
"@faker-js/faker": "^8.4.1",
|
||||
"@relative-ci/agent": "^4.2.13",
|
||||
"@relative-ci/agent": "^4.2.14",
|
||||
"@testing-library/react": "^12.0.0",
|
||||
"@types/addressparser": "^1.0.3",
|
||||
"@types/body-scroll-lock": "^3.1.2",
|
||||
|
||||
@@ -877,7 +877,7 @@ describe("SearchHelper", () => {
|
||||
"this&is&a&test:*"
|
||||
);
|
||||
});
|
||||
test("should now wildcard quoted queries", () => {
|
||||
test("should not wildcard quoted queries", () => {
|
||||
expect(SearchHelper.webSearchQuery(`"this is a test"`)).toBe(
|
||||
`"this<->is<->a<->test"`
|
||||
);
|
||||
|
||||
@@ -470,7 +470,7 @@ export default class SearchHelper {
|
||||
const likelyUrls = getUrls(options.query);
|
||||
|
||||
// remove likely urls, and escape the rest of the query.
|
||||
const limitedQuery = this.escapeQuery(
|
||||
let limitedQuery = this.escapeQuery(
|
||||
likelyUrls
|
||||
.reduce((q, url) => q.replace(url, ""), options.query)
|
||||
.slice(0, this.maxQueryLength)
|
||||
@@ -482,6 +482,9 @@ export default class SearchHelper {
|
||||
(match) => match[1]
|
||||
);
|
||||
|
||||
// remove quoted queries from the limited query
|
||||
limitedQuery = limitedQuery.replace(/"([^"]*)"/g, "");
|
||||
|
||||
const iLikeQueries = [...quotedQueries, ...likelyUrls].slice(0, 3);
|
||||
|
||||
for (const match of iLikeQueries) {
|
||||
|
||||
@@ -1,72 +1,60 @@
|
||||
import { Transaction } from "sequelize";
|
||||
import subscriptionCreator from "@server/commands/subscriptionCreator";
|
||||
import { createContext } from "@server/context";
|
||||
import { Subscription, User } from "@server/models";
|
||||
import { sequelize } from "@server/storage/database";
|
||||
import { DocumentUserEvent, Event } from "@server/types";
|
||||
import { Op } from "sequelize";
|
||||
import { GroupUser } from "@server/models";
|
||||
import { DocumentGroupEvent, DocumentUserEvent, Event } from "@server/types";
|
||||
import DocumentSubscriptionTask from "../tasks/DocumentSubscriptionTask";
|
||||
import BaseProcessor from "./BaseProcessor";
|
||||
|
||||
export default class DocumentSubscriptionProcessor extends BaseProcessor {
|
||||
static applicableEvents: Event["name"][] = [
|
||||
"documents.add_user",
|
||||
"documents.remove_user",
|
||||
"documents.add_group",
|
||||
"documents.remove_group",
|
||||
];
|
||||
|
||||
async perform(event: DocumentUserEvent) {
|
||||
const user = await User.findByPk(event.userId);
|
||||
if (!user) {
|
||||
return;
|
||||
}
|
||||
|
||||
async perform(event: DocumentUserEvent | DocumentGroupEvent) {
|
||||
switch (event.name) {
|
||||
case "documents.add_user": {
|
||||
return this.addUser(event, user);
|
||||
case "documents.add_user":
|
||||
case "documents.remove_user": {
|
||||
await DocumentSubscriptionTask.schedule(event);
|
||||
return;
|
||||
}
|
||||
|
||||
case "documents.remove_user": {
|
||||
return this.removeUser(event, user);
|
||||
}
|
||||
case "documents.add_group":
|
||||
case "documents.remove_group":
|
||||
return this.handleGroup(event);
|
||||
|
||||
default:
|
||||
}
|
||||
}
|
||||
|
||||
private async addUser(event: DocumentUserEvent, user: User) {
|
||||
await sequelize.transaction(async (transaction) => {
|
||||
await subscriptionCreator({
|
||||
ctx: createContext({
|
||||
user,
|
||||
authType: event.authType,
|
||||
ip: event.ip,
|
||||
transaction,
|
||||
}),
|
||||
documentId: event.documentId,
|
||||
event: "documents.update",
|
||||
resubscribe: false,
|
||||
});
|
||||
});
|
||||
}
|
||||
private async handleGroup(event: DocumentGroupEvent) {
|
||||
const userEventName: DocumentUserEvent["name"] =
|
||||
event.name === "documents.add_group"
|
||||
? "documents.add_user"
|
||||
: "documents.remove_user";
|
||||
|
||||
private async removeUser(event: DocumentUserEvent, user: User) {
|
||||
await sequelize.transaction(async (transaction) => {
|
||||
const subscription = await Subscription.findOne({
|
||||
await GroupUser.findAllInBatches<GroupUser>(
|
||||
{
|
||||
where: {
|
||||
userId: user.id,
|
||||
documentId: event.documentId,
|
||||
event: "documents.update",
|
||||
groupId: event.modelId,
|
||||
userId: {
|
||||
[Op.ne]: event.actorId,
|
||||
},
|
||||
},
|
||||
transaction,
|
||||
lock: Transaction.LOCK.UPDATE,
|
||||
});
|
||||
|
||||
await subscription?.destroyWithCtx(
|
||||
createContext({
|
||||
user,
|
||||
authType: event.authType,
|
||||
ip: event.ip,
|
||||
transaction,
|
||||
})
|
||||
);
|
||||
});
|
||||
batchLimit: 10,
|
||||
},
|
||||
async (groupUsers) => {
|
||||
await Promise.all(
|
||||
groupUsers.map((groupUser) =>
|
||||
DocumentSubscriptionTask.schedule({
|
||||
...event,
|
||||
name: userEventName,
|
||||
userId: groupUser.userId,
|
||||
})
|
||||
)
|
||||
);
|
||||
}
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,65 @@
|
||||
import { Transaction } from "sequelize";
|
||||
import subscriptionCreator from "@server/commands/subscriptionCreator";
|
||||
import { createContext } from "@server/context";
|
||||
import { Subscription, User } from "@server/models";
|
||||
import { sequelize } from "@server/storage/database";
|
||||
import { DocumentUserEvent } from "@server/types";
|
||||
import BaseTask from "./BaseTask";
|
||||
|
||||
export default class DocumentSubscriptionTask extends BaseTask<DocumentUserEvent> {
|
||||
public async perform(event: DocumentUserEvent) {
|
||||
const user = await User.findByPk(event.userId);
|
||||
if (!user) {
|
||||
return;
|
||||
}
|
||||
|
||||
switch (event.name) {
|
||||
case "documents.add_user":
|
||||
return this.addUser(event, user);
|
||||
|
||||
case "documents.remove_user":
|
||||
return this.removeUser(event, user);
|
||||
|
||||
default:
|
||||
}
|
||||
}
|
||||
|
||||
private async addUser(event: DocumentUserEvent, user: User) {
|
||||
await sequelize.transaction(async (transaction) => {
|
||||
await subscriptionCreator({
|
||||
ctx: createContext({
|
||||
user,
|
||||
authType: event.authType,
|
||||
ip: event.ip,
|
||||
transaction,
|
||||
}),
|
||||
documentId: event.documentId,
|
||||
event: "documents.update",
|
||||
resubscribe: false,
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
private async removeUser(event: DocumentUserEvent, user: User) {
|
||||
await sequelize.transaction(async (transaction) => {
|
||||
const subscription = await Subscription.findOne({
|
||||
where: {
|
||||
userId: user.id,
|
||||
documentId: event.documentId,
|
||||
event: "documents.update",
|
||||
},
|
||||
transaction,
|
||||
lock: Transaction.LOCK.UPDATE,
|
||||
});
|
||||
|
||||
await subscription?.destroyWithCtx(
|
||||
createContext({
|
||||
user,
|
||||
authType: event.authType,
|
||||
ip: event.ip,
|
||||
transaction,
|
||||
})
|
||||
);
|
||||
});
|
||||
}
|
||||
}
|
||||
@@ -202,6 +202,25 @@ describe("#subscriptions.info", () => {
|
||||
expect(response0.data.documentId).toEqual(document0.id);
|
||||
});
|
||||
|
||||
it("should throw 404 if no subscription found", async () => {
|
||||
const author = await buildUser();
|
||||
const subscriber = await buildUser({ teamId: author.teamId });
|
||||
const document = await buildDocument({
|
||||
userId: author.id,
|
||||
teamId: author.teamId,
|
||||
});
|
||||
|
||||
const res = await server.post("/api/subscriptions.info", {
|
||||
body: {
|
||||
token: subscriber.getJwtToken(),
|
||||
documentId: document.id,
|
||||
event: "documents.update",
|
||||
},
|
||||
});
|
||||
|
||||
expect(res.status).toEqual(404);
|
||||
});
|
||||
|
||||
it("should not allow outsiders to gain info about a subscription", async () => {
|
||||
const creator = await buildUser();
|
||||
const subscriber = await buildUser({ teamId: creator.teamId });
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Fragment, Node, NodeType } from "prosemirror-model";
|
||||
import { Node, NodeType } from "prosemirror-model";
|
||||
import { Command, EditorState, TextSelection } from "prosemirror-state";
|
||||
import {
|
||||
CellSelection,
|
||||
@@ -20,14 +20,19 @@ import { collapseSelection } from "./collapseSelection";
|
||||
export function createTable({
|
||||
rowsCount,
|
||||
colsCount,
|
||||
colWidth,
|
||||
}: {
|
||||
/** The number of rows in the table. */
|
||||
rowsCount: number;
|
||||
/** The number of columns in the table. */
|
||||
colsCount: number;
|
||||
/** The widths of each column in the table. */
|
||||
colWidth: number;
|
||||
}): Command {
|
||||
return (state, dispatch) => {
|
||||
if (dispatch) {
|
||||
const offset = state.tr.selection.anchor + 1;
|
||||
const nodes = createTableInner(state, rowsCount, colsCount);
|
||||
const nodes = createTableInner(state, rowsCount, colsCount, colWidth);
|
||||
const tr = state.tr.replaceSelectionWith(nodes).scrollIntoView();
|
||||
const resolvedPos = tr.doc.resolve(offset);
|
||||
tr.setSelection(TextSelection.near(resolvedPos));
|
||||
@@ -41,6 +46,7 @@ function createTableInner(
|
||||
state: EditorState,
|
||||
rowsCount: number,
|
||||
colsCount: number,
|
||||
colWidth: number,
|
||||
withHeaderRow = true,
|
||||
cellContent?: Node
|
||||
) {
|
||||
@@ -49,23 +55,27 @@ function createTableInner(
|
||||
const cells: Node[] = [];
|
||||
const rows: Node[] = [];
|
||||
|
||||
const createCell = (
|
||||
cellType: NodeType,
|
||||
cellContent: Fragment | Node | readonly Node[] | null | undefined
|
||||
) =>
|
||||
const createCell = (cellType: NodeType, attrs: Record<string, any> | null) =>
|
||||
cellContent
|
||||
? cellType.createChecked(null, cellContent)
|
||||
: cellType.createAndFill();
|
||||
? cellType.createChecked(attrs, cellContent)
|
||||
: cellType.createAndFill(attrs);
|
||||
|
||||
for (let index = 0; index < colsCount; index += 1) {
|
||||
const cell = createCell(types.cell, cellContent);
|
||||
const attrs = colWidth
|
||||
? {
|
||||
colwidth: [colWidth],
|
||||
colspan: 1,
|
||||
rowspan: 1,
|
||||
}
|
||||
: null;
|
||||
const cell = createCell(types.cell, attrs);
|
||||
|
||||
if (cell) {
|
||||
cells.push(cell);
|
||||
}
|
||||
|
||||
if (withHeaderRow) {
|
||||
const headerCell = createCell(types.header_cell, cellContent);
|
||||
const headerCell = createCell(types.header_cell, attrs);
|
||||
|
||||
if (headerCell) {
|
||||
headerCells.push(headerCell);
|
||||
|
||||
@@ -98,7 +98,10 @@ const Image = (props: Props) => {
|
||||
style={{
|
||||
...widthStyle,
|
||||
display: loaded ? "block" : "none",
|
||||
pointerEvents: dragging ? "none" : "all",
|
||||
pointerEvents:
|
||||
dragging || (!props.isSelected && props.isEditable)
|
||||
? "none"
|
||||
: "all",
|
||||
}}
|
||||
src={sanitizedSrc}
|
||||
onError={() => {
|
||||
|
||||
@@ -251,10 +251,13 @@ const codeBlockStyle = (props: Props) => css`
|
||||
`;
|
||||
|
||||
const findAndReplaceStyle = () => css`
|
||||
.find-result {
|
||||
.find-result:not(:has(.mention)),
|
||||
.find-result .mention {
|
||||
background: rgba(255, 213, 0, 0.25);
|
||||
}
|
||||
|
||||
&.current-result {
|
||||
.find-result.current-result:not(:has(.mention)),
|
||||
.find-result.current-result .mention {
|
||||
background: rgba(255, 213, 0, 0.75);
|
||||
animation: ${pulse} 150ms 1;
|
||||
}
|
||||
@@ -615,7 +618,6 @@ iframe.embed {
|
||||
}
|
||||
|
||||
.column-resize-handle {
|
||||
animation: ${fadeIn} 150ms ease-in-out;
|
||||
${props.readOnly ? "display: none;" : ""}
|
||||
position: absolute;
|
||||
right: -1px;
|
||||
|
||||
@@ -35,8 +35,8 @@ export type MenuItem = {
|
||||
children?: MenuItem[];
|
||||
defaultHidden?: boolean;
|
||||
attrs?:
|
||||
| Record<string, Primitive>
|
||||
| ((state: EditorState) => Record<string, Primitive>);
|
||||
| Record<string, Primitive | null>
|
||||
| ((state: EditorState) => Record<string, Primitive | null>);
|
||||
visible?: boolean;
|
||||
active?: (state: EditorState) => boolean;
|
||||
appendSpace?: boolean;
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
const EDITOR_VERSION = "13.0.0";
|
||||
const EDITOR_VERSION = "14.0.0";
|
||||
|
||||
export default EDITOR_VERSION;
|
||||
|
||||
@@ -176,6 +176,7 @@
|
||||
"view and edit access": "přístup k prohlížení a úpravám",
|
||||
"view only access": "přístup pouze pro čtení",
|
||||
"no access": "bez přístupu",
|
||||
"You do not have permission to move {{ documentName }} to the {{ collectionName }} collection": "You do not have permission to move {{ documentName }} to the {{ collectionName }} collection",
|
||||
"Move document": "Přesunout dokument",
|
||||
"Moving": "Přesouvání",
|
||||
"Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.": "Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.",
|
||||
@@ -364,9 +365,7 @@
|
||||
"{{ count }} groups added to the document_plural": "{{ count }} groups added to the document",
|
||||
"Logo": "Logo",
|
||||
"Archived collections": "Archived collections",
|
||||
"Change permissions?": "Change permissions?",
|
||||
"New doc": "Nový dokument",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "Nemůžete změnit pořadí dokumentů v abecedně seřazené sbírce",
|
||||
"Empty": "Prázdné",
|
||||
"Collections": "Sbírky",
|
||||
"Collapse": "Sbalit",
|
||||
@@ -382,6 +381,10 @@
|
||||
"Up to date": "Aktuální",
|
||||
"{{ releasesBehind }} versions behind": "Zastaralá verze {{ releasesBehind }}",
|
||||
"{{ releasesBehind }} versions behind_plural": "Zastaralé verze {{ releasesBehind }}",
|
||||
"Change permissions?": "Change permissions?",
|
||||
"{{ documentName }} cannot be moved within {{ parentDocumentName }}": "{{ documentName }} cannot be moved within {{ parentDocumentName }}",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "Nemůžete změnit pořadí dokumentů v abecedně seřazené sbírce",
|
||||
"The {{ documentName }} cannot be moved here": "The {{ documentName }} cannot be moved here",
|
||||
"Return to App": "Zpět do aplikace",
|
||||
"Installation": "Instalace",
|
||||
"Unstar document": "Odznačit dokument",
|
||||
|
||||
@@ -176,6 +176,7 @@
|
||||
"view and edit access": "view and edit access",
|
||||
"view only access": "view only access",
|
||||
"no access": "no access",
|
||||
"You do not have permission to move {{ documentName }} to the {{ collectionName }} collection": "You do not have permission to move {{ documentName }} to the {{ collectionName }} collection",
|
||||
"Move document": "Flyt dokument",
|
||||
"Moving": "Moving",
|
||||
"Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.": "Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.",
|
||||
@@ -364,9 +365,7 @@
|
||||
"{{ count }} groups added to the document_plural": "{{ count }} groups added to the document",
|
||||
"Logo": "Logo",
|
||||
"Archived collections": "Archived collections",
|
||||
"Change permissions?": "Change permissions?",
|
||||
"New doc": "Nyt dokument",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "Du kan ikke omarrangere dokumenter i en alfabetisk sorteret samling",
|
||||
"Empty": "Tom",
|
||||
"Collections": "Samlinger",
|
||||
"Collapse": "Collapse",
|
||||
@@ -382,6 +381,10 @@
|
||||
"Up to date": "Up to date",
|
||||
"{{ releasesBehind }} versions behind": "{{ releasesBehind }} version behind",
|
||||
"{{ releasesBehind }} versions behind_plural": "{{ releasesBehind }} versions behind",
|
||||
"Change permissions?": "Change permissions?",
|
||||
"{{ documentName }} cannot be moved within {{ parentDocumentName }}": "{{ documentName }} cannot be moved within {{ parentDocumentName }}",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "Du kan ikke omarrangere dokumenter i en alfabetisk sorteret samling",
|
||||
"The {{ documentName }} cannot be moved here": "The {{ documentName }} cannot be moved here",
|
||||
"Return to App": "Back to App",
|
||||
"Installation": "Installation",
|
||||
"Unstar document": "Unstar document",
|
||||
|
||||
@@ -176,6 +176,7 @@
|
||||
"view and edit access": "Zugriff anzeigen und bearbeiten",
|
||||
"view only access": "nur anzeigen Zugriff",
|
||||
"no access": "kein Zugriff",
|
||||
"You do not have permission to move {{ documentName }} to the {{ collectionName }} collection": "You do not have permission to move {{ documentName }} to the {{ collectionName }} collection",
|
||||
"Move document": "Dokument verschieben",
|
||||
"Moving": "Bewegen",
|
||||
"Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.": "Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.",
|
||||
@@ -364,9 +365,7 @@
|
||||
"{{ count }} groups added to the document_plural": "{{ count }} groups added to the document",
|
||||
"Logo": "Logo",
|
||||
"Archived collections": "Archived collections",
|
||||
"Change permissions?": "Change permissions?",
|
||||
"New doc": "Neues Dokument",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "Du kannst Dokumente in einer alphabetisch sortierten Sammlung nicht neu anordnen",
|
||||
"Empty": "Leer",
|
||||
"Collections": "Sammlungen",
|
||||
"Collapse": "Zusammenklappen",
|
||||
@@ -382,6 +381,10 @@
|
||||
"Up to date": "Auf dem neuesten Stand",
|
||||
"{{ releasesBehind }} versions behind": "{{ releasesBehind }} Versionen veraltet",
|
||||
"{{ releasesBehind }} versions behind_plural": "{{ releasesBehind }} Versionen veraltet",
|
||||
"Change permissions?": "Change permissions?",
|
||||
"{{ documentName }} cannot be moved within {{ parentDocumentName }}": "{{ documentName }} cannot be moved within {{ parentDocumentName }}",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "Du kannst Dokumente in einer alphabetisch sortierten Sammlung nicht neu anordnen",
|
||||
"The {{ documentName }} cannot be moved here": "The {{ documentName }} cannot be moved here",
|
||||
"Return to App": "Zurück zur App",
|
||||
"Installation": "Installation",
|
||||
"Unstar document": "Favorisierung entfernen",
|
||||
|
||||
@@ -176,6 +176,7 @@
|
||||
"view and edit access": "acceso de lectura y edición",
|
||||
"view only access": "acceso de solo lectura",
|
||||
"no access": "sin acceso",
|
||||
"You do not have permission to move {{ documentName }} to the {{ collectionName }} collection": "You do not have permission to move {{ documentName }} to the {{ collectionName }} collection",
|
||||
"Move document": "Mover documento",
|
||||
"Moving": "Moviendo",
|
||||
"Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.": "Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.",
|
||||
@@ -364,9 +365,7 @@
|
||||
"{{ count }} groups added to the document_plural": "{{ count }} grupos invitados al documento",
|
||||
"Logo": "Logo",
|
||||
"Archived collections": "Colecciones archivadas",
|
||||
"Change permissions?": "¿Cambiar permisos?",
|
||||
"New doc": "Nuevo doc",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "No puedes reordenar documentos en una colección ordenada alfabéticamente",
|
||||
"Empty": "Vacío",
|
||||
"Collections": "Colecciones",
|
||||
"Collapse": "Colapsar",
|
||||
@@ -382,6 +381,10 @@
|
||||
"Up to date": "Al día",
|
||||
"{{ releasesBehind }} versions behind": "{{ releasesBehind }} versión atrás",
|
||||
"{{ releasesBehind }} versions behind_plural": "{{ releasesBehind }} versiones atrás",
|
||||
"Change permissions?": "¿Cambiar permisos?",
|
||||
"{{ documentName }} cannot be moved within {{ parentDocumentName }}": "{{ documentName }} cannot be moved within {{ parentDocumentName }}",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "No puedes reordenar documentos en una colección ordenada alfabéticamente",
|
||||
"The {{ documentName }} cannot be moved here": "The {{ documentName }} cannot be moved here",
|
||||
"Return to App": "Volver a la aplicación",
|
||||
"Installation": "Instalación",
|
||||
"Unstar document": "Eliminar documento de favoritos",
|
||||
|
||||
@@ -176,6 +176,7 @@
|
||||
"view and edit access": "دسترسی مشاهده و ویرایش",
|
||||
"view only access": "دسترسی صرفا نمایش",
|
||||
"no access": "بدون دسترسی",
|
||||
"You do not have permission to move {{ documentName }} to the {{ collectionName }} collection": "You do not have permission to move {{ documentName }} to the {{ collectionName }} collection",
|
||||
"Move document": "انتقال سند",
|
||||
"Moving": "در حال حرکت",
|
||||
"Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.": "Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.",
|
||||
@@ -364,9 +365,7 @@
|
||||
"{{ count }} groups added to the document_plural": "{{ count }} groups added to the document",
|
||||
"Logo": "لوگو",
|
||||
"Archived collections": "Archived collections",
|
||||
"Change permissions?": "Change permissions?",
|
||||
"New doc": "سند جدید",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "You can't reorder documents in an alphabetically sorted collection",
|
||||
"Empty": "خالی",
|
||||
"Collections": "مجموعهها",
|
||||
"Collapse": "جمع کردن",
|
||||
@@ -382,6 +381,10 @@
|
||||
"Up to date": "به روز",
|
||||
"{{ releasesBehind }} versions behind": "{{ releasesBehind }} version behind",
|
||||
"{{ releasesBehind }} versions behind_plural": "{{ releasesBehind }} versions behind",
|
||||
"Change permissions?": "Change permissions?",
|
||||
"{{ documentName }} cannot be moved within {{ parentDocumentName }}": "{{ documentName }} cannot be moved within {{ parentDocumentName }}",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "You can't reorder documents in an alphabetically sorted collection",
|
||||
"The {{ documentName }} cannot be moved here": "The {{ documentName }} cannot be moved here",
|
||||
"Return to App": "بازگشت به برنامه",
|
||||
"Installation": "نسخه",
|
||||
"Unstar document": "Unstar document",
|
||||
|
||||
@@ -176,6 +176,7 @@
|
||||
"view and edit access": "accès en lecture et écriture",
|
||||
"view only access": "accès en lecture seule",
|
||||
"no access": "pas d'accès",
|
||||
"You do not have permission to move {{ documentName }} to the {{ collectionName }} collection": "You do not have permission to move {{ documentName }} to the {{ collectionName }} collection",
|
||||
"Move document": "Déplacer le document",
|
||||
"Moving": "En cours de déplacement",
|
||||
"Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.": "Déplacer le document <em>{{ title }}</em> vers la collection {{ newCollectionName }} changera les permissions pour tous les membres de l'espace de travail de <em>{{ prevPermission }}</em> à <em>{{ newPermission }}</em>.",
|
||||
@@ -364,9 +365,7 @@
|
||||
"{{ count }} groups added to the document_plural": "{{ count }} groupes ajoutés au document",
|
||||
"Logo": "Logo",
|
||||
"Archived collections": "Collections archivées",
|
||||
"Change permissions?": "Modifier les permissions ?",
|
||||
"New doc": "Nouveau doc",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "Vous ne pouvez pas réorganiser les documents dans une collection triée par ordre alphabétique",
|
||||
"Empty": "Vide",
|
||||
"Collections": "Collections",
|
||||
"Collapse": "Réduire",
|
||||
@@ -382,6 +381,10 @@
|
||||
"Up to date": "À jour",
|
||||
"{{ releasesBehind }} versions behind": "{{ releasesBehind }} version de retard",
|
||||
"{{ releasesBehind }} versions behind_plural": "{{ releasesBehind }} versions de retard",
|
||||
"Change permissions?": "Modifier les permissions ?",
|
||||
"{{ documentName }} cannot be moved within {{ parentDocumentName }}": "{{ documentName }} cannot be moved within {{ parentDocumentName }}",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "Vous ne pouvez pas réorganiser les documents dans une collection triée par ordre alphabétique",
|
||||
"The {{ documentName }} cannot be moved here": "The {{ documentName }} cannot be moved here",
|
||||
"Return to App": "Retour à l’app",
|
||||
"Installation": "Installation",
|
||||
"Unstar document": "Retirer le document des favoris",
|
||||
|
||||
@@ -176,6 +176,7 @@
|
||||
"view and edit access": "view and edit access",
|
||||
"view only access": "view only access",
|
||||
"no access": "no access",
|
||||
"You do not have permission to move {{ documentName }} to the {{ collectionName }} collection": "You do not have permission to move {{ documentName }} to the {{ collectionName }} collection",
|
||||
"Move document": "Move document",
|
||||
"Moving": "Moving",
|
||||
"Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.": "Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.",
|
||||
@@ -364,9 +365,7 @@
|
||||
"{{ count }} groups added to the document_plural": "{{ count }} groups added to the document",
|
||||
"Logo": "Logo",
|
||||
"Archived collections": "Archived collections",
|
||||
"Change permissions?": "Change permissions?",
|
||||
"New doc": "New doc",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "You can't reorder documents in an alphabetically sorted collection",
|
||||
"Empty": "Empty",
|
||||
"Collections": "Collections",
|
||||
"Collapse": "Collapse",
|
||||
@@ -382,6 +381,10 @@
|
||||
"Up to date": "Up to date",
|
||||
"{{ releasesBehind }} versions behind": "{{ releasesBehind }} version behind",
|
||||
"{{ releasesBehind }} versions behind_plural": "{{ releasesBehind }} versions behind",
|
||||
"Change permissions?": "Change permissions?",
|
||||
"{{ documentName }} cannot be moved within {{ parentDocumentName }}": "{{ documentName }} cannot be moved within {{ parentDocumentName }}",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "You can't reorder documents in an alphabetically sorted collection",
|
||||
"The {{ documentName }} cannot be moved here": "The {{ documentName }} cannot be moved here",
|
||||
"Return to App": "Back to App",
|
||||
"Installation": "Installation",
|
||||
"Unstar document": "Unstar document",
|
||||
|
||||
@@ -176,6 +176,7 @@
|
||||
"view and edit access": "view and edit access",
|
||||
"view only access": "view only access",
|
||||
"no access": "nincs hozzáférés",
|
||||
"You do not have permission to move {{ documentName }} to the {{ collectionName }} collection": "You do not have permission to move {{ documentName }} to the {{ collectionName }} collection",
|
||||
"Move document": "Dokumentum áthelyezése",
|
||||
"Moving": "Moving",
|
||||
"Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.": "Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.",
|
||||
@@ -364,9 +365,7 @@
|
||||
"{{ count }} groups added to the document_plural": "{{ count }} groups added to the document",
|
||||
"Logo": "Logó",
|
||||
"Archived collections": "Archived collections",
|
||||
"Change permissions?": "Change permissions?",
|
||||
"New doc": "Új doku",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "Nem tudja egy ABC szerint rendezett gyűjtemény elemeinek sorrendjét megváltoztatni",
|
||||
"Empty": "Üres",
|
||||
"Collections": "Gyűjtemények",
|
||||
"Collapse": "Összezárás",
|
||||
@@ -382,6 +381,10 @@
|
||||
"Up to date": "Naprakész",
|
||||
"{{ releasesBehind }} versions behind": "{{ releasesBehind }} verzióval régebbi",
|
||||
"{{ releasesBehind }} versions behind_plural": "{{ releasesBehind }} verzióval régebbi",
|
||||
"Change permissions?": "Change permissions?",
|
||||
"{{ documentName }} cannot be moved within {{ parentDocumentName }}": "{{ documentName }} cannot be moved within {{ parentDocumentName }}",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "Nem tudja egy ABC szerint rendezett gyűjtemény elemeinek sorrendjét megváltoztatni",
|
||||
"The {{ documentName }} cannot be moved here": "The {{ documentName }} cannot be moved here",
|
||||
"Return to App": "Vissza az alkalmazáshoz",
|
||||
"Installation": "Telepítés",
|
||||
"Unstar document": "Dokumentum csillagozásának törlése",
|
||||
|
||||
@@ -176,6 +176,7 @@
|
||||
"view and edit access": "melihat dan mengedit akses",
|
||||
"view only access": "akses hanya melihat",
|
||||
"no access": "tidak ada akses",
|
||||
"You do not have permission to move {{ documentName }} to the {{ collectionName }} collection": "You do not have permission to move {{ documentName }} to the {{ collectionName }} collection",
|
||||
"Move document": "Pindahkan dokumen",
|
||||
"Moving": "Memindahkan",
|
||||
"Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.": "Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.",
|
||||
@@ -364,9 +365,7 @@
|
||||
"{{ count }} groups added to the document_plural": "{{ count }} groups added to the document",
|
||||
"Logo": "Logo",
|
||||
"Archived collections": "Archived collections",
|
||||
"Change permissions?": "Change permissions?",
|
||||
"New doc": "Dokumen baru",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "Anda tidak dapat menyusun ulang dokumen dalam koleksi yang diurutkan menurut abjad",
|
||||
"Empty": "Kosong",
|
||||
"Collections": "Koleksi",
|
||||
"Collapse": "Persingkat",
|
||||
@@ -382,6 +381,10 @@
|
||||
"Up to date": "Mutakhir",
|
||||
"{{ releasesBehind }} versions behind": "{{ releasesBehind }} versi di belakang",
|
||||
"{{ releasesBehind }} versions behind_plural": "{{ releasesBehind }} versi di belakang",
|
||||
"Change permissions?": "Change permissions?",
|
||||
"{{ documentName }} cannot be moved within {{ parentDocumentName }}": "{{ documentName }} cannot be moved within {{ parentDocumentName }}",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "Anda tidak dapat menyusun ulang dokumen dalam koleksi yang diurutkan menurut abjad",
|
||||
"The {{ documentName }} cannot be moved here": "The {{ documentName }} cannot be moved here",
|
||||
"Return to App": "Kembali ke Aplikasi",
|
||||
"Installation": "Pemasangan",
|
||||
"Unstar document": "Unstar document",
|
||||
|
||||
@@ -176,6 +176,7 @@
|
||||
"view and edit access": "lettura e scrittura",
|
||||
"view only access": "sola lettura",
|
||||
"no access": "nessun accesso",
|
||||
"You do not have permission to move {{ documentName }} to the {{ collectionName }} collection": "You do not have permission to move {{ documentName }} to the {{ collectionName }} collection",
|
||||
"Move document": "Sposta il documento",
|
||||
"Moving": "Spostamento",
|
||||
"Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.": "Spostare il documento <em>{{ title }}</em> alla raccolta {{ newCollectionName }} cambierà i permessi per tutti i membri dello spazio di lavoro da <em>{{ prevPermission }}</em> a <em>{{ newPermission }}</em>.",
|
||||
@@ -364,9 +365,7 @@
|
||||
"{{ count }} groups added to the document_plural": "{{ count }} groups added to the document",
|
||||
"Logo": "Logo",
|
||||
"Archived collections": "Archived collections",
|
||||
"Change permissions?": "Change permissions?",
|
||||
"New doc": "Nuovo documento",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "Non è possibile riordinare i documenti in una raccolta ordinata alfabeticamente",
|
||||
"Empty": "Vuoto",
|
||||
"Collections": "Raccolta",
|
||||
"Collapse": "Raggruppa",
|
||||
@@ -382,6 +381,10 @@
|
||||
"Up to date": "Aggiornato",
|
||||
"{{ releasesBehind }} versions behind": "{{ releasesBehind }} versione indietro",
|
||||
"{{ releasesBehind }} versions behind_plural": "{{ releasesBehind }} versioni indietro",
|
||||
"Change permissions?": "Change permissions?",
|
||||
"{{ documentName }} cannot be moved within {{ parentDocumentName }}": "{{ documentName }} cannot be moved within {{ parentDocumentName }}",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "Non è possibile riordinare i documenti in una raccolta ordinata alfabeticamente",
|
||||
"The {{ documentName }} cannot be moved here": "The {{ documentName }} cannot be moved here",
|
||||
"Return to App": "Torna all'applicazione",
|
||||
"Installation": "Installazione",
|
||||
"Unstar document": "Unstar document",
|
||||
|
||||
@@ -95,8 +95,8 @@
|
||||
"Disable viewer insights": "ビューアインサイトを無効にする",
|
||||
"Enable viewer insights": "ビューアインサイトを有効にする",
|
||||
"Leave document": "ドキュメントから退出する",
|
||||
"You have left the shared document": "You have left the shared document",
|
||||
"Could not leave document": "Could not leave document",
|
||||
"You have left the shared document": "共有ドキュメントから退出しました",
|
||||
"Could not leave document": "ドキュメントから退出することができませんでした",
|
||||
"Home": "ホーム",
|
||||
"Drafts": "下書き",
|
||||
"Trash": "ゴミ箱",
|
||||
@@ -176,6 +176,7 @@
|
||||
"view and edit access": "閲覧と編集",
|
||||
"view only access": "閲覧専用",
|
||||
"no access": "アクセス不可",
|
||||
"You do not have permission to move {{ documentName }} to the {{ collectionName }} collection": "{{ documentName }} を {{ collectionName }} コレクションに移動する権限がありません",
|
||||
"Move document": "ドキュメントを移動",
|
||||
"Moving": "移動中",
|
||||
"Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.": "ドキュメント <em>{{ title }}</em> を {{ newCollectionName }} コレクションに移動すると、 <em>{{ prevPermission }}</em> から <em>{{ newPermission }}</em> へのすべてのワークスペースメンバーの権限が変更されます。",
|
||||
@@ -195,12 +196,12 @@
|
||||
"Install now": "インストールしています",
|
||||
"Deleted Collection": "削除したコレクション",
|
||||
"Unpin": "ピン留めを外す",
|
||||
"{{ minutes }}m read": "{{ minutes }}m read",
|
||||
"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?",
|
||||
"{{ minutes }}m read": "{{ minutes }} ",
|
||||
"Select a location to copy": "コピー先を選択してください",
|
||||
"Document copied": "ドキュメントがコピーされました",
|
||||
"Couldn’t copy the document, try again?": "ドキュメントをコピーできませんでした。もう一度お試しください。",
|
||||
"Include nested documents": "子ドキュメントを含める",
|
||||
"Copy to <em>{{ location }}</em>": "Copy to <em>{{ location }}</em>",
|
||||
"Copy to <em>{{ location }}</em>": "<em>{{ location }}</em> にコピーする",
|
||||
"Search collections & documents": "ドキュメントやコレクションを検索する",
|
||||
"No results found": "なにも見つかりませんでした",
|
||||
"Untitled": "無題のドキュメント",
|
||||
@@ -302,12 +303,12 @@
|
||||
"Unknown": "不明",
|
||||
"Mark all as read": "全て既読にする",
|
||||
"You're all caught up": "全て確認済み",
|
||||
"{{ username }} reacted with {{ emoji }}": "{{ username }} reacted with {{ emoji }}",
|
||||
"{{ firstUsername }} and {{ secondUsername }} reacted with {{ emoji }}": "{{ firstUsername }} and {{ secondUsername }} reacted with {{ emoji }}",
|
||||
"{{ firstUsername }} and {{ count }} others reacted with {{ emoji }}": "{{ firstUsername }} and {{ count }} other reacted with {{ emoji }}",
|
||||
"{{ firstUsername }} and {{ count }} others reacted with {{ emoji }}_plural": "{{ firstUsername }} and {{ count }} others reacted with {{ emoji }}",
|
||||
"Add reaction": "Add reaction",
|
||||
"Reaction picker": "Reaction picker",
|
||||
"{{ username }} reacted with {{ emoji }}": "{{ username }} が {{ emoji }} でリアクション",
|
||||
"{{ firstUsername }} and {{ secondUsername }} reacted with {{ emoji }}": "{{ firstUsername }} と {{ secondUsername }} が {{ emoji }} でリアクション",
|
||||
"{{ firstUsername }} and {{ count }} others reacted with {{ emoji }}": "{{ firstUsername }}と他{{ count }}人が{{ emoji }}で反応した",
|
||||
"{{ firstUsername }} and {{ count }} others reacted with {{ emoji }}_plural": "{{ firstUsername }}と他{{ count }}人が{{ emoji }}で反応した",
|
||||
"Add reaction": "リアクションを追加",
|
||||
"Reaction picker": "リアクションピッカー",
|
||||
"Could not load reactions": "リアクションを読み込めません",
|
||||
"Reaction": "リアクション",
|
||||
"Results": "検索結果",
|
||||
@@ -354,8 +355,8 @@
|
||||
"Anyone with the link can access because the parent document, <2>{{documentTitle}}</2>, is shared": "親ドキュメント <2>{{documentTitle}}</2> が共有されているため、リンクを持っている人は誰でもアクセスできます",
|
||||
"Allow anyone with the link to access": "リンクを持っている誰もがアクセス可能",
|
||||
"Publish to internet": "インターネットに公開する",
|
||||
"Search engine indexing": "Search engine indexing",
|
||||
"Disable this setting to discourage search engines from indexing the page": "Disable this setting to discourage search engines from indexing the page",
|
||||
"Search engine indexing": "検索エンジンのインデックス",
|
||||
"Disable this setting to discourage search engines from indexing the page": "この設定を無効にすると、検索エンジンのインデックス化を防ぐことができます",
|
||||
"Nested documents are not shared on the web. Toggle sharing to enable access, this will be the default behavior in the future": "子ドキュメントは Web で共有されません\nアクセスを有効にするためには共有を切り替えてください\nこれは今後のデフォルトとなります",
|
||||
"{{ userName }} was added to the document": "{{ userName }} をドキュメントに追加しました",
|
||||
"{{ count }} people added to the document": "{{ count }} 人をドキュメントに追加しました",
|
||||
@@ -364,9 +365,7 @@
|
||||
"{{ count }} groups added to the document_plural": "{{ count }} グループをドキュメントに追加しました",
|
||||
"Logo": "ロゴ",
|
||||
"Archived collections": "アーカイブされたコレクション",
|
||||
"Change permissions?": "権限を変更しますか?",
|
||||
"New doc": "ドキュメントを新規作成",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "五十音順で並べられたコレクション内のドキュメントは、並べ替えができません。",
|
||||
"Empty": "空",
|
||||
"Collections": "コレクション",
|
||||
"Collapse": "折りたたむ",
|
||||
@@ -382,6 +381,10 @@
|
||||
"Up to date": "最新の状態",
|
||||
"{{ releasesBehind }} versions behind": "最新版から {{ releasesBehind }} バージョン遅れています",
|
||||
"{{ releasesBehind }} versions behind_plural": "最新版から {{ releasesBehind }} バージョン遅れています",
|
||||
"Change permissions?": "権限を変更しますか?",
|
||||
"{{ documentName }} cannot be moved within {{ parentDocumentName }}": "{{ documentName }} は {{ parentDocumentName }} 以内には移動できません",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "五十音順で並べられたコレクション内のドキュメントは、並べ替えができません。",
|
||||
"The {{ documentName }} cannot be moved here": "{{ documentName }} はここに移動できません",
|
||||
"Return to App": "アプリに戻る",
|
||||
"Installation": "インストール",
|
||||
"Unstar document": "お気に入りから削除",
|
||||
@@ -400,12 +403,12 @@
|
||||
"Are you sure you want to suspend {{ userName }}? Suspended users will be prevented from logging in.": "{{ userName }} を凍結してもよろしいですか? \nこれによりユーザーはログインできなくなります。",
|
||||
"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": "次の一致",
|
||||
@@ -420,8 +423,8 @@
|
||||
"Profile picture": "プロフィール画像",
|
||||
"Create a new doc": "ドキュメントを作成",
|
||||
"{{ userName }} won't be notified, as they do not have access to this document": "{{ userName }} はこのドキュメントへのアクセス権限がないため、通知されません",
|
||||
"Keep as link": "Keep as link",
|
||||
"Embed": "Embed",
|
||||
"Keep as link": "リンクとして保持",
|
||||
"Embed": "埋め込み",
|
||||
"Add column after": "後ろに列を挿入",
|
||||
"Add column before": "前に列を挿入",
|
||||
"Add row after": "後ろに行を挿入",
|
||||
@@ -450,7 +453,7 @@
|
||||
"Italic": "斜体",
|
||||
"Sorry, that link won’t work for this embed type": "この埋め込みではリンクが機能しません",
|
||||
"File attachment": "ファイル添付",
|
||||
"Enter a link": "Enter a link",
|
||||
"Enter a link": "リンクを入力",
|
||||
"Big heading": "見出し1",
|
||||
"Medium heading": "見出し2",
|
||||
"Small heading": "見出し3",
|
||||
@@ -503,7 +506,7 @@
|
||||
"Could not import file": "ファイルをインポートできませんでした",
|
||||
"Unsubscribed from document": "ドキュメントの通知を解除しました",
|
||||
"Account": "アカウント",
|
||||
"API Keys": "API Keys",
|
||||
"API Keys": "APIキー",
|
||||
"Details": "詳細情報",
|
||||
"Security": "セキュリティ",
|
||||
"Features": "機能",
|
||||
@@ -550,7 +553,7 @@
|
||||
"Headings you add to the document will appear here": "ドキュメントに追加した見出しがここに表示されます",
|
||||
"Table of contents": "目次",
|
||||
"Change name": "名前を変更",
|
||||
"Change email": "Change email",
|
||||
"Change email": "メールアドレスを変更する",
|
||||
"Suspend user": "ユーザーを凍結",
|
||||
"An error occurred while sending the invite": "招待を送信中にエラーが発生しました",
|
||||
"User options": "ユーザーオプション",
|
||||
@@ -565,13 +568,13 @@
|
||||
"created the collection": "コレクションを作成しました",
|
||||
"mentioned you in": "あなたがメンションされました",
|
||||
"left a comment on": "がコメントを残しました",
|
||||
"resolved a comment on": "resolved a comment on",
|
||||
"resolved a comment on": "コメントを解決しました:",
|
||||
"shared": "共有済み",
|
||||
"invited you to": "あなたを招待しました",
|
||||
"Choose a date": "日付を選択",
|
||||
"API key created. Please copy the value now as it will not be shown again.": "API キーが作成されました。再度表示されないため、今すぐ値をコピーしてください。",
|
||||
"Scopes": "Scopes",
|
||||
"Space-separated scopes restrict the access of this API key to specific parts of the API. Leave blank for full access": "Space-separated scopes restrict the access of this API key to specific parts of the API. Leave blank for full access",
|
||||
"Scopes": "スコープ",
|
||||
"Space-separated scopes restrict the access of this API key to specific parts of the API. Leave blank for full access": "スペースで区切られたスコープは、この API キーのアクセスを特定の部分に制限します。フルアクセスするには空白のままにしてください。",
|
||||
"Expiration": "有効期限",
|
||||
"Never expires": "無期限",
|
||||
"7 days": "7日",
|
||||
@@ -594,7 +597,7 @@
|
||||
"{{ groupsCount }} groups with access_plural": "アクセス権を持つ {{ groupsCount }} 個のグループ",
|
||||
"Archived by {{userName}}": "{{userName}} がアーカイブしました",
|
||||
"Share": "共有",
|
||||
"Overview": "Overview",
|
||||
"Overview": "概要",
|
||||
"Recently updated": "更新日の新しい順",
|
||||
"Recently published": "最近公開されたもの",
|
||||
"Least recently updated": "更新日の古い順",
|
||||
@@ -615,8 +618,8 @@
|
||||
"Most recent": "最新",
|
||||
"Order in doc": "ドキュメント内の順序",
|
||||
"Resolved": "解決済み",
|
||||
"Show {{ count }} reply": "Show {{ count }} reply",
|
||||
"Show {{ count }} reply_plural": "Show {{ count }} replies",
|
||||
"Show {{ count }} reply": "{{ count }} 件の返信を表示",
|
||||
"Show {{ count }} reply_plural": "{{ count }} 件の返信を表示",
|
||||
"Error updating comment": "コメントの更新中にエラーが発生しました",
|
||||
"Document restored": "ドキュメントが復元されました",
|
||||
"Images are still uploading.\nAre you sure you want to discard them?": "画像はまだアップロード中です\nこの操作を取り消しますか?",
|
||||
@@ -764,10 +767,10 @@
|
||||
"LaTeX block": "LaTeX ブロック",
|
||||
"Inline code": "インラインコード",
|
||||
"Inline LaTeX": "インライン LaTeX",
|
||||
"Triggers": "Triggers",
|
||||
"Mention user or document": "Mention user or document",
|
||||
"Emoji": "Emoji",
|
||||
"Insert block": "Insert block",
|
||||
"Triggers": "トリガー",
|
||||
"Mention user or document": "ユーザーまたはドキュメントにメンション",
|
||||
"Emoji": "絵文字",
|
||||
"Insert block": "ブロックの挿入",
|
||||
"Sign In": "ログイン",
|
||||
"Continue with Email": "Eメール でログイン",
|
||||
"Continue with {{ authProviderName }}": "{{ authProviderName }} でログイン",
|
||||
@@ -791,7 +794,7 @@
|
||||
"This workspace has been suspended. Please contact support to restore access.": "このワークスペースは凍結されています。アクセスを復元するにはサポートにお問い合わせください。",
|
||||
"Authentication failed – this login method was disabled by a team admin.": "認証に失敗しました – このログイン方法はチーム管理者によって無効化されています。",
|
||||
"The workspace you are trying to join requires an invite before you can create an account.<1></1>Please request an invite from your workspace admin and try again.": "アカウントを作成するには、参加しようとしているワークスペースの招待が必要です。 <1></1>ワークスペース管理者に招待をリクエストしてから、もう一度お試しください。",
|
||||
"Sorry, an unknown error occurred.": "Sorry, an unknown error occurred.",
|
||||
"Sorry, an unknown error occurred.": "申し訳ありません、不明なエラーが発生しました。",
|
||||
"Login": "ログイン",
|
||||
"Error": "エラー",
|
||||
"Failed to load configuration.": "構成の読み込みに失敗しました",
|
||||
@@ -826,11 +829,11 @@
|
||||
"Please try again or contact support if the problem persists": "問題が解決しない場合は、もう一度やり直すか、サポートにお問い合わせください",
|
||||
"No documents found for your search filters.": "検索条件に該当するドキュメントは見つかりませんでした",
|
||||
"API": "API",
|
||||
"API keys can be used to authenticate with the API and programatically control\n your workspace's data. For more details see the <em>developer documentation</em>.": "API keys can be used to authenticate with the API and programatically control\n your workspace's data. For more details see the <em>developer documentation</em>.",
|
||||
"by {{ name }}": "by {{ name }}",
|
||||
"API keys can be used to authenticate with the API and programatically control\n your workspace's data. For more details see the <em>developer documentation</em>.": "API キーを使用すると、API で認証し、\n ワークスペースのデータをプログラムで制御できます。詳細については、<em>開発者向けドキュメント</em>を参照してください。",
|
||||
"by {{ name }}": "{{ name }}",
|
||||
"Last used": "最終使用日",
|
||||
"No expiry": "無期限",
|
||||
"Restricted scope": "Restricted scope",
|
||||
"Restricted scope": "制限付きスコープ",
|
||||
"API key copied to clipboard": "API キーをクリップボードにコピーしました",
|
||||
"Copied": "コピーしました",
|
||||
"Revoking": "無効化しています",
|
||||
@@ -879,7 +882,7 @@
|
||||
"Search people": "メンバーを検索",
|
||||
"No people matching your search": "検索に一致する人は見つかりませんでした",
|
||||
"No people left to add": "追加できる人は存在しません",
|
||||
"Date created": "Date created",
|
||||
"Date created": "作成日時",
|
||||
"Upload": "アップロード",
|
||||
"How does this work?": "これはどのように機能しますか?",
|
||||
"You can import a zip file that was previously exported from the JSON option in another instance. In {{ appName }}, open <em>Export</em> in the Settings sidebar and click on <em>Export Data</em>.": "以前にエクスポートした zip ファイルをインポートできます。 {{ appName }} で、サイドバーの <em>エクスポート画面</em> を開き、 <em>データのエクスポート</em> をクリックします。",
|
||||
@@ -937,7 +940,7 @@
|
||||
"Commenting": "コメントの追加",
|
||||
"When enabled team members can add comments to documents.": "有効にすると、チームメンバーはドキュメントにコメントを追加できます。",
|
||||
"Create a group": "グループを作成",
|
||||
"Could not load groups": "Could not load groups",
|
||||
"Could not load groups": "グループを読み込めませんでした",
|
||||
"New group": "新規グループ",
|
||||
"Groups can be used to organize and manage the people on your team.": "グループを使用して、チームのメンバーを整理および管理できます。",
|
||||
"No groups have been created yet": "グループはまだ作成されていません",
|
||||
@@ -949,7 +952,7 @@
|
||||
"Import pages from a Confluence instance": "Confluence からページをインポートする",
|
||||
"Enterprise": "エンタープライズ",
|
||||
"Recent imports": "最近のインポート",
|
||||
"Could not load members": "Could not load members",
|
||||
"Could not load members": "メンバーを読み込めませんでした",
|
||||
"Everyone that has signed into {{appName}} is listed here. It’s possible that there are other users who have access through {{signinMethods}} but haven’t signed in yet.": "{{appName}} にログインした全員が表示されます。\n{{signinMethods}} でアクセスできるものの、まだログインしていないユーザーが他にもいる可能性があります。",
|
||||
"Receive a notification whenever a new document is published": "新しいドキュメントが公開されたときに通知を受け取る",
|
||||
"Document updated": "ドキュメントの更新",
|
||||
@@ -958,7 +961,7 @@
|
||||
"Receive a notification when a document you are subscribed to or a thread you participated in receives a comment": "通知を有効にしているドキュメントや参加したスレッドにコメントされたときに通知を受け取る",
|
||||
"Mentioned": "メンション",
|
||||
"Receive a notification when someone mentions you in a document or comment": "誰かがあなたをドキュメントやコメントでメンションしたときに通知を受け取る",
|
||||
"Receive a notification when a comment thread you were involved in is resolved": "Receive a notification when a comment thread you were involved in is resolved",
|
||||
"Receive a notification when a comment thread you were involved in is resolved": "参加したコメントスレッドが解決されたときに通知を受け取る",
|
||||
"Collection created": "コレクションが作成されました",
|
||||
"Receive a notification whenever a new collection is created": "新しいコレクションが作成されたときに通知を受け取る",
|
||||
"Invite accepted": "招待が承認されました",
|
||||
@@ -992,8 +995,8 @@
|
||||
"When enabled, documents have a separate editing mode. When disabled, documents are always editable when you have permission.": "有効にすると、ドキュメントは編集のできない閲覧モードで開かれます。編集をするには、画面上部の編集ボタンを押す必要があります。\n無効にすると、許可がある場合は常に編集できる状態で開かれます。",
|
||||
"Remember previous location": "前回開いていた場所を記憶する",
|
||||
"Automatically return to the document you were last viewing when the app is re-opened.": "アプリを再度開いたときに、最後に表示していたドキュメントを自動的に表示します。",
|
||||
"Smart text replacements": "Smart text replacements",
|
||||
"Auto-format text by replacing shortcuts with symbols, dashes, smart quotes, and other typographical elements.": "Auto-format text by replacing shortcuts with symbols, dashes, smart quotes, and other typographical elements.",
|
||||
"Smart text replacements": "スマートテキストの置換",
|
||||
"Auto-format text by replacing shortcuts with symbols, dashes, smart quotes, and other typographical elements.": "ショートカットをシンボル、ダッシュ、スマート引用符、その他の組版要素に置き換えることでテキストを自動的に書式設定します。",
|
||||
"You may delete your account at any time, note that this is unrecoverable": "アカウントはいつでも削除することができます。これは取り返しのつかないことです。",
|
||||
"Profile saved": "プロフィールを保存しました",
|
||||
"Profile picture updated": "プロフィール画像の更新に成功しました",
|
||||
@@ -1032,7 +1035,7 @@
|
||||
"Add your self-hosted draw.io installation url here to enable automatic embedding of diagrams within documents.": "セルフホストの draw.io URLを追加して、ドキュメント内の図の自動埋め込みを有効にします。",
|
||||
"Grist deployment": "Grist",
|
||||
"Add your self-hosted grist installation URL here.": "セルフホストしている Grist の URL をここに追加してください。",
|
||||
"Could not load shares": "Could not load shares",
|
||||
"Could not load shares": "共有を読み込めませんでした",
|
||||
"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公開リンクを知っている人は誰でも、リンクが無効になるまでドキュメントの読み取り専用バージョンにアクセスできます。",
|
||||
|
||||
@@ -176,6 +176,7 @@
|
||||
"view and edit access": "보기 및 편집 액세스",
|
||||
"view only access": "보기 전용 액세스",
|
||||
"no access": "접근 불가",
|
||||
"You do not have permission to move {{ documentName }} to the {{ collectionName }} collection": "You do not have permission to move {{ documentName }} to the {{ collectionName }} collection",
|
||||
"Move document": "문서 이동",
|
||||
"Moving": "이동 중",
|
||||
"Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.": "Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.",
|
||||
@@ -364,9 +365,7 @@
|
||||
"{{ count }} groups added to the document_plural": "{{ count }} groups added to the document",
|
||||
"Logo": "로고",
|
||||
"Archived collections": "Archived collections",
|
||||
"Change permissions?": "Change permissions?",
|
||||
"New doc": "새 문서",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "알파벳순으로 정렬된 컬렉션에서는 문서를 재정렬할 수 없습니다.",
|
||||
"Empty": "비어 있음",
|
||||
"Collections": "컬렉션",
|
||||
"Collapse": "감추기",
|
||||
@@ -382,6 +381,10 @@
|
||||
"Up to date": "최신 상태",
|
||||
"{{ releasesBehind }} versions behind": "{{ releasesBehind }} 이전 버전",
|
||||
"{{ releasesBehind }} versions behind_plural": "{{ releasesBehind }} 이전 버전",
|
||||
"Change permissions?": "Change permissions?",
|
||||
"{{ documentName }} cannot be moved within {{ parentDocumentName }}": "{{ documentName }} cannot be moved within {{ parentDocumentName }}",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "알파벳순으로 정렬된 컬렉션에서는 문서를 재정렬할 수 없습니다.",
|
||||
"The {{ documentName }} cannot be moved here": "The {{ documentName }} cannot be moved here",
|
||||
"Return to App": "앱으로 돌아가기",
|
||||
"Installation": "설치",
|
||||
"Unstar document": "문서 별표 해제",
|
||||
|
||||
@@ -176,6 +176,7 @@
|
||||
"view and edit access": "vis og rediger tilgang",
|
||||
"view only access": "kun visningstilgang",
|
||||
"no access": "ingen tilgang",
|
||||
"You do not have permission to move {{ documentName }} to the {{ collectionName }} collection": "You do not have permission to move {{ documentName }} to the {{ collectionName }} collection",
|
||||
"Move document": "Flytt dokument",
|
||||
"Moving": "Flytter",
|
||||
"Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.": "Ved å flytte dokumentet <em>{{ title }}</em> til samlingen {{ newCollectionName }}, vil tilgangen endres for alle brukere i arbeidsområdet fra <em>{{ prevPermission }}</em> til <em>{{ newPermission }}</em>.",
|
||||
@@ -364,9 +365,7 @@
|
||||
"{{ count }} groups added to the document_plural": "{{ count }} grupper er lagt til i dokumentene",
|
||||
"Logo": "Logo",
|
||||
"Archived collections": "Arkiverte samlinger",
|
||||
"Change permissions?": "Endre tillatelser?",
|
||||
"New doc": "Nytt dokument",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "Du kan ikke omorganisere dokumenter i en alfabetisk sortert samling",
|
||||
"Empty": "Tom",
|
||||
"Collections": "Samlinger",
|
||||
"Collapse": "Kollaps",
|
||||
@@ -382,6 +381,10 @@
|
||||
"Up to date": "Oppdatert",
|
||||
"{{ releasesBehind }} versions behind": "{{ releasesBehind }} ny versjon tilgjengelig",
|
||||
"{{ releasesBehind }} versions behind_plural": "{{ releasesBehind }} nye versjoner tilgjengelig",
|
||||
"Change permissions?": "Endre tillatelser?",
|
||||
"{{ documentName }} cannot be moved within {{ parentDocumentName }}": "{{ documentName }} cannot be moved within {{ parentDocumentName }}",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "Du kan ikke omorganisere dokumenter i en alfabetisk sortert samling",
|
||||
"The {{ documentName }} cannot be moved here": "The {{ documentName }} cannot be moved here",
|
||||
"Return to App": "Tilbake til appen",
|
||||
"Installation": "Installasjon",
|
||||
"Unstar document": "Fjern stjerne fra dokument",
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
"Open collection": "Open collectie",
|
||||
"New collection": "Nieuwe collectie",
|
||||
"Create a collection": "Maak een collectie",
|
||||
"Edit": "Bewerk",
|
||||
"Edit collection": "Collectie bewerken",
|
||||
"Edit": "Wijzig",
|
||||
"Edit collection": "Wijzig collectie",
|
||||
"Permissions": "Rechten",
|
||||
"Collection permissions": "Verzamelingsrechten",
|
||||
"Share this collection": "Deel deze collectie",
|
||||
@@ -94,7 +94,7 @@
|
||||
"Insights": "Inzichten",
|
||||
"Disable viewer insights": "Disable viewer insights",
|
||||
"Enable viewer insights": "Enable viewer insights",
|
||||
"Leave document": "Leave document",
|
||||
"Leave document": "Verlaat document",
|
||||
"You have left the shared document": "You have left the shared document",
|
||||
"Could not leave document": "Could not leave document",
|
||||
"Home": "Startscherm",
|
||||
@@ -115,7 +115,7 @@
|
||||
"Download {{ platform }} app": "Download {{ platform }}-app",
|
||||
"Log out": "Uitloggen",
|
||||
"Mark notifications as read": "Markeer meldingen als gelezen",
|
||||
"Archive all notifications": "Archive all notifications",
|
||||
"Archive all notifications": "Archiveer alle meldingen",
|
||||
"Restore revision": "Revisie herstellen",
|
||||
"Link copied": "Link gekopieerd",
|
||||
"Dark": "Donker",
|
||||
@@ -134,7 +134,7 @@
|
||||
"Promote to {{ role }}": "Promote to {{ role }}",
|
||||
"Demote to {{ role }}": "Demote to {{ role }}",
|
||||
"Update role": "Werk rol bij",
|
||||
"Delete user": "Gebruiker verwijderen",
|
||||
"Delete user": "Verwijder gebruiker",
|
||||
"Collection": "Collectie",
|
||||
"Debug": "Fout opsporen",
|
||||
"Document": "Document",
|
||||
@@ -173,22 +173,23 @@
|
||||
"Are you sure you want to permanently delete this comment?": "Weet je zeker dat je deze reactie definitief wilt verwijderen?",
|
||||
"Confirm": "Bevestigen",
|
||||
"manage access": "manage access",
|
||||
"view and edit access": "bekijk en bewerk toegang",
|
||||
"view and edit access": "bekijk en wijzig toegang",
|
||||
"view only access": "alleen toegang weergeven",
|
||||
"no access": "geen toegang",
|
||||
"You do not have permission to move {{ documentName }} to the {{ collectionName }} collection": "You do not have permission to move {{ documentName }} to the {{ collectionName }} collection",
|
||||
"Move document": "Document verplaatsen",
|
||||
"Moving": "Verplaatsen",
|
||||
"Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.": "Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.",
|
||||
"Document is too large": "Document is te groot",
|
||||
"This document has reached the maximum size and can no longer be edited": "Dit document heeft de maximale grootte bereikt en kan niet meer worden bewerkt",
|
||||
"This document has reached the maximum size and can no longer be edited": "Bewerken is niet mogelijk. De maximale grootte van het document is bereikt.",
|
||||
"Authentication failed": "Authenticatie mislukt",
|
||||
"Please try logging out and back in again": "Probeer uit en opnieuw in te loggen",
|
||||
"Authorization failed": "Autorisatie mislukt",
|
||||
"You may have lost access to this document, try reloading": "Mogelijk heb je de toegang tot dit document verloren, probeer te herladen",
|
||||
"Too many users connected to document": "Te veel gebruikers verbonden met document",
|
||||
"Your edits will sync once other users leave the document": "Je bewerkingen worden gesynchroniseerd zodra andere gebruikers het document verlaten",
|
||||
"Your edits will sync once other users leave the document": "Je wijzigingen worden bijgewerkt zodra het document niet meer in gebruik is",
|
||||
"Server connection lost": "Verbinding met server verbroken",
|
||||
"Edits you make will sync once you’re online": "Bewerkingen die je maakt worden gesynchroniseerd zodra je online bent",
|
||||
"Edits you make will sync once you’re online": "Wijzigingen die je maakt worden gesynchroniseerd zodra je online bent",
|
||||
"Submenu": "Submenu",
|
||||
"Collections could not be loaded, please reload the app": "Collecties konden niet worden geladen, start de app alsjeblieft opnieuw op",
|
||||
"Default collection": "Standaard collectie",
|
||||
@@ -241,7 +242,7 @@
|
||||
"our engineers have been notified": "onze technici zijn op de hoogte gebracht",
|
||||
"Show detail": "Toon detail",
|
||||
"Current version": "Huidige versie",
|
||||
"{{userName}} edited": "{{userName}} bewerkt",
|
||||
"{{userName}} edited": "{{userName}} bewerkte",
|
||||
"{{userName}} archived": "{{userName}} gearchiveerd",
|
||||
"{{userName}} restored": "{{userName}} hersteld",
|
||||
"{{userName}} deleted": "{{userName}} verwijderd",
|
||||
@@ -364,9 +365,7 @@
|
||||
"{{ count }} groups added to the document_plural": "{{ count }} groups added to the document",
|
||||
"Logo": "Logo",
|
||||
"Archived collections": "Archived collections",
|
||||
"Change permissions?": "Change permissions?",
|
||||
"New doc": "Nieuw document",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "U kunt documenten in een alfabetisch gesorteerde verzameling niet opnieuw ordenen",
|
||||
"Empty": "Leeg",
|
||||
"Collections": "Collecties",
|
||||
"Collapse": "Invouwen",
|
||||
@@ -382,6 +381,10 @@
|
||||
"Up to date": "Bijgewerkt",
|
||||
"{{ releasesBehind }} versions behind": "{{ releasesBehind }} versie achter",
|
||||
"{{ releasesBehind }} versions behind_plural": "{{ releasesBehind }} versies achter",
|
||||
"Change permissions?": "Rechten wijzigen?",
|
||||
"{{ documentName }} cannot be moved within {{ parentDocumentName }}": "{{ documentName }} cannot be moved within {{ parentDocumentName }}",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "U kunt documenten in een alfabetisch gesorteerde verzameling niet opnieuw ordenen",
|
||||
"The {{ documentName }} cannot be moved here": "The {{ documentName }} cannot be moved here",
|
||||
"Return to App": "Terug naar de app",
|
||||
"Installation": "Installatie",
|
||||
"Unstar document": "Document verwijderen uit favorieten",
|
||||
@@ -532,7 +535,7 @@
|
||||
"Enable embeds": "Embeds inschakelen",
|
||||
"Export options": "Exporteer instellingen",
|
||||
"Group members": "Groepeer leden",
|
||||
"Edit group": "Groep bewerken",
|
||||
"Edit group": "Wijzig groep",
|
||||
"Delete group": "Verwijder groep",
|
||||
"Group options": "Groepsopties",
|
||||
"Member options": "Gebruikersopties",
|
||||
@@ -551,7 +554,7 @@
|
||||
"Table of contents": "Inhoudsopgave",
|
||||
"Change name": "Naam wijzigen",
|
||||
"Change email": "Change email",
|
||||
"Suspend user": "Gebruiker blokkeren",
|
||||
"Suspend user": "Blokkeer gebruiker",
|
||||
"An error occurred while sending the invite": "Er is een fout opgetreden bij het verzenden van de uitnodiging",
|
||||
"User options": "Gebruikersopties",
|
||||
"Change role": "Wijzig rol",
|
||||
@@ -630,7 +633,7 @@
|
||||
"Hide contents": "Inhoud verbergen",
|
||||
"Show contents": "Inhoud weergeven",
|
||||
"available when headings are added": "available when headings are added",
|
||||
"Edit {{noun}}": "{{noun}} bewerken",
|
||||
"Edit {{noun}}": "Wijzig {{noun}}",
|
||||
"Switch to dark": "Wissel naar donker thema",
|
||||
"Switch to light": "Wissel naar licht thema",
|
||||
"Archived": "Gearchiveerd",
|
||||
@@ -669,7 +672,7 @@
|
||||
"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 bent een sjabloon aan het bewerken",
|
||||
"You’re editing a template": "Je past een sjabloon aan",
|
||||
"Deleted by {{userName}}": "Verwijderd door {{userName}}",
|
||||
"Observing {{ userName }}": "Observeer {{ userName }}",
|
||||
"Backlinks": "Backlinks",
|
||||
@@ -736,7 +739,7 @@
|
||||
"Enter": "Voer in",
|
||||
"Publish document and exit": "Document publiceren en verlaten",
|
||||
"Save document": "Document opslaan",
|
||||
"Cancel editing": "Bewerken annuleren",
|
||||
"Cancel editing": "Annuleer",
|
||||
"Collaboration": "Samenwerken",
|
||||
"Formatting": "Opmaak",
|
||||
"Paragraph": "Paragraaf",
|
||||
@@ -754,7 +757,7 @@
|
||||
"Move list item up": "Verplaats item omhoog",
|
||||
"Move list item down": "Verplaats item omlaag",
|
||||
"Tables": "Tabellen",
|
||||
"Insert row": "Insert row",
|
||||
"Insert row": "Voeg rij in",
|
||||
"Next cell": "Volgende cel",
|
||||
"Previous cell": "Vorige cel",
|
||||
"Space": "Spatie",
|
||||
@@ -767,7 +770,7 @@
|
||||
"Triggers": "Triggers",
|
||||
"Mention user or document": "Mention user or document",
|
||||
"Emoji": "Emoji",
|
||||
"Insert block": "Insert block",
|
||||
"Insert block": "Voeg blok in",
|
||||
"Sign In": "Aanmelden",
|
||||
"Continue with Email": "Verdergaan met e-mailadres",
|
||||
"Continue with {{ authProviderName }}": "Ga verder met {{ authProviderName }}",
|
||||
@@ -822,12 +825,12 @@
|
||||
"Author": "Auteur",
|
||||
"We were unable to find the page you’re looking for.": "We kunnen de pagina die je zoekt niet vinden.",
|
||||
"Search titles only": "Zoek alleen titels",
|
||||
"Something went wrong": "Something went wrong",
|
||||
"Something went wrong": "Er ging iets mis",
|
||||
"Please try again or contact support if the problem persists": "Please try again or contact support if the problem persists",
|
||||
"No documents found for your search filters.": "Geen documenten gevonden voor je zoekfilters.",
|
||||
"API": "API",
|
||||
"API keys can be used to authenticate with the API and programatically control\n your workspace's data. For more details see the <em>developer documentation</em>.": "API keys can be used to authenticate with the API and programatically control\n your workspace's data. For more details see the <em>developer documentation</em>.",
|
||||
"by {{ name }}": "by {{ name }}",
|
||||
"by {{ name }}": "door {{ name }}",
|
||||
"Last used": "Laatst gebruikt",
|
||||
"No expiry": "Geen vervaldatum",
|
||||
"Restricted scope": "Restricted scope",
|
||||
@@ -862,7 +865,7 @@
|
||||
"{{userName}} requested": "{{userName}} verzoekt",
|
||||
"Groups are for organizing your team. They work best when centered around a function or a responsibility — Support or Engineering for example.": "Groepen zijn voor het organiseren van je team. Ze werken het beste als ze zijn gebaseerd op een functie of verantwoordelijkheid, bijvoorbeeld Support of Engineering.",
|
||||
"You’ll be able to add people to the group next.": "Je kunt hierna personen aan de groep toevoegen.",
|
||||
"You can edit the name of this group at any time, however doing so too often might confuse your team mates.": "Je kunt de naam van deze groep op elk moment wijzigen, maar wanneer dit te vaak wordt gedaan kan je teamgenoten in de war brengen.",
|
||||
"You can edit the name of this group at any time, however doing so too often might confuse your team mates.": "Wijzig de groepsnaam wanneer nodig, maar voorkom verwarring door dit niet te vaak te doen.",
|
||||
"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 <em>{{groupName}}</em> groep raken de leden van de groep de toegang tot de verzamelingen en documenten van de groep kwijt.",
|
||||
"Add people to {{groupName}}": "Personen toevoegen aan {{groupName}}",
|
||||
"{{userName}} was removed from the group": "{{userName}} is verwijderd uit de groep",
|
||||
@@ -871,7 +874,7 @@
|
||||
"Listing members of the <em>{{groupName}}</em> group.": "Toon leden van de <em>{{groupName}}</em> groep.",
|
||||
"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": "Gebruiker kan niet worden toegevoegd",
|
||||
"Could not add user": "Kon gebruiker niet toevoegen",
|
||||
"Add members below to give them access to the group. Need to add someone who’s not yet a member?": "Voeg hieronder leden toe om ze toegang te geven tot de groep. Wil je iemand toevoegen die nog geen lid is?",
|
||||
"Invite them to {{teamName}}": "Nodig ze uit voor {{teamName}}",
|
||||
"Ask an admin to invite them first": "Vraag een beheerder om ze eerst uit te nodigen",
|
||||
@@ -879,7 +882,7 @@
|
||||
"Search people": "Personen zoeken",
|
||||
"No people matching your search": "Geen personen die aan de zoekopdracht voldoen",
|
||||
"No people left to add": "Geen personen meer om toe te voegen",
|
||||
"Date created": "Date created",
|
||||
"Date created": "Aanmaakdatum",
|
||||
"Upload": "Upload",
|
||||
"How does this work?": "Hoe werkt dit?",
|
||||
"You can import a zip file that was previously exported from the JSON option in another instance. In {{ appName }}, open <em>Export</em> in the Settings sidebar and click on <em>Export Data</em>.": "Je kunt een zipbestand importeren dat eerder is geëxporteerd vanuit de JSON-optie in een andere instantie. In {{ appName }}, open <em>Exporteren</em> in de zijbalk in Voorkeuren en klik op <em>Exporteer gegevens</em>.",
|
||||
@@ -937,7 +940,7 @@
|
||||
"Commenting": "Reageren",
|
||||
"When enabled team members can add comments to documents.": "Indien ingeschakeld kunnen teamleden opmerkingen toevoegen aan documenten.",
|
||||
"Create a group": "Maak een groep",
|
||||
"Could not load groups": "Could not load groups",
|
||||
"Could not load groups": "Kon groepen niet laden",
|
||||
"New group": "Nieuwe groep",
|
||||
"Groups can be used to organize and manage the people on your team.": "Groepen kunnen worden gebruikt om personen in je team te organiseren en beheren.",
|
||||
"No groups have been created yet": "Er zijn nog geen groepen gemaakt",
|
||||
@@ -949,7 +952,7 @@
|
||||
"Import pages from a Confluence instance": "Pagina's importeren van een Confluence instantie",
|
||||
"Enterprise": "Zakelijk",
|
||||
"Recent imports": "Recent geïmporteerd",
|
||||
"Could not load members": "Could not load members",
|
||||
"Could not load members": "Kon leden niet laden",
|
||||
"Everyone that has signed into {{appName}} is listed here. It’s possible that there are other users who have access through {{signinMethods}} but haven’t signed in yet.": "Everyone that has signed into {{appName}} is listed here. It’s possible that there are other users who have access through {{signinMethods}} but haven’t signed in yet.",
|
||||
"Receive a notification whenever a new document is published": "Ontvang een melding wanneer een nieuw document wordt gepubliceerd",
|
||||
"Document updated": "Document bijgewerkt",
|
||||
@@ -1020,7 +1023,7 @@
|
||||
"When enabled, documents can be shared publicly on the internet by any member of the workspace": "Indien ingeschakeld, kunnen documenten door elk lid van de workspace openbaar op internet worden gedeeld",
|
||||
"Viewer document exports": "Bekijkers kunnen documenten exporteren",
|
||||
"When enabled, viewers can see download options for documents": "Wanneer ingeschakeld, kunnen kijkers downloadopties voor documenten zien",
|
||||
"Users can delete account": "Users can delete account",
|
||||
"Users can delete account": "Gebruikers kunnen account verwijderen",
|
||||
"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 naar ondersteunde diensten worden weergegeven als rich embeds in je documenten",
|
||||
@@ -1107,7 +1110,7 @@
|
||||
"Link your account in {{ appName }} settings to search from Slack": "Koppel je account in de {{ appName }}-instellingen om te zoeken vanuit Slack",
|
||||
"Configure a Umami installation to send views and analytics from the workspace to your own Umami instance.": "Configure a Umami installation to send views and analytics from the workspace to your own Umami instance.",
|
||||
"The URL of your Umami instance. If you are using Umami Cloud it will begin with {{ url }}": "The URL of your Umami instance. If you are using Umami Cloud it will begin with {{ url }}",
|
||||
"Script name": "Script name",
|
||||
"Script name": "Naam script",
|
||||
"The name of the script file that Umami uses to track analytics.": "The name of the script file that Umami uses to track analytics.",
|
||||
"An ID that uniquely identifies the website in your Umami instance.": "An ID that uniquely identifies the website in your Umami instance.",
|
||||
"Are you sure you want to delete the {{ name }} webhook?": "Weet je zeker dat je de {{ name }} webhook wilt verwijderen?",
|
||||
@@ -1123,7 +1126,7 @@
|
||||
"All {{ groupName }} events": "Alle {{ groupName }} gebeurtenissen",
|
||||
"Delete webhook": "Verwijder Webhook",
|
||||
"Subscribed events": "Geabonneerde gebeurtenissen",
|
||||
"Edit webhook": "Webhook bewerken",
|
||||
"Edit webhook": "Wijzig webhook",
|
||||
"Webhook created": "Webhook is gemaakt",
|
||||
"Webhooks": "Webhooks",
|
||||
"New webhook": "Nieuwe webhook",
|
||||
|
||||
@@ -176,6 +176,7 @@
|
||||
"view and edit access": "zobacz i edytuj dostęp",
|
||||
"view only access": "dostęp tylko do podglądu",
|
||||
"no access": "brak dostępu",
|
||||
"You do not have permission to move {{ documentName }} to the {{ collectionName }} collection": "You do not have permission to move {{ documentName }} to the {{ collectionName }} collection",
|
||||
"Move document": "Przenieś dokument",
|
||||
"Moving": "Przenoszenie",
|
||||
"Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.": "Przenoszenie dokumentu <em>{{ title }}</em> do kolekcji {{ newCollectionName }} zmieni uprawnienia dla wszystkich członków obszaru roboczego z <em>{{ prevPermission }}</em> na <em>{{ newPermission }}</em>.",
|
||||
@@ -364,9 +365,7 @@
|
||||
"{{ count }} groups added to the document_plural": "{{ count }} grup dodanych do dokumentu",
|
||||
"Logo": "Logo",
|
||||
"Archived collections": "Zarchiwizowane kolekcje",
|
||||
"Change permissions?": "Zmienić uprawnienia?",
|
||||
"New doc": "Nowy dok",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "Nie możesz zmieniać kolejności dokumentów w kolekcji posortowanej alfabetycznie",
|
||||
"Empty": "Pusty",
|
||||
"Collections": "Kolekcje",
|
||||
"Collapse": "Zwiń",
|
||||
@@ -382,6 +381,10 @@
|
||||
"Up to date": "Aktualne",
|
||||
"{{ releasesBehind }} versions behind": "{{ releasesBehind }} wersji do aktualizacji",
|
||||
"{{ releasesBehind }} versions behind_plural": "{{ releasesBehind }} wersji do aktualizacji",
|
||||
"Change permissions?": "Zmienić uprawnienia?",
|
||||
"{{ documentName }} cannot be moved within {{ parentDocumentName }}": "{{ documentName }} cannot be moved within {{ parentDocumentName }}",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "Nie możesz zmieniać kolejności dokumentów w kolekcji posortowanej alfabetycznie",
|
||||
"The {{ documentName }} cannot be moved here": "The {{ documentName }} cannot be moved here",
|
||||
"Return to App": "Wróć do aplikacji",
|
||||
"Installation": "Instalacja",
|
||||
"Unstar document": "Usuń oznaczenie gwiazdką",
|
||||
|
||||
@@ -176,6 +176,7 @@
|
||||
"view and edit access": "acesso para visualização e edição",
|
||||
"view only access": "acesso apenas para visualização",
|
||||
"no access": "sem acesso",
|
||||
"You do not have permission to move {{ documentName }} to the {{ collectionName }} collection": "You do not have permission to move {{ documentName }} to the {{ collectionName }} collection",
|
||||
"Move document": "Mover documento",
|
||||
"Moving": "Movendo",
|
||||
"Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.": "Mover o documento <em>{{ title }}</em> para a coleção {{ newCollectionName }} mudará a permissão para todos os membros do espaço de trabalho de <em>{{ prevPermission }}</em> para <em>{{ newPermission }}</em>.",
|
||||
@@ -364,9 +365,7 @@
|
||||
"{{ count }} groups added to the document_plural": "{{ count }} grupos foram adicionados ao documento",
|
||||
"Logo": "Logotipo",
|
||||
"Archived collections": "Coleções arquivadas",
|
||||
"Change permissions?": "Alterar permissões?",
|
||||
"New doc": "Novo documento",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "Não é possível reordenar documentos em uma coleção ordenada alfabeticamente",
|
||||
"Empty": "Vazio",
|
||||
"Collections": "Coleções",
|
||||
"Collapse": "Recolher",
|
||||
@@ -382,6 +381,10 @@
|
||||
"Up to date": "Atualizado",
|
||||
"{{ releasesBehind }} versions behind": "{{ releasesBehind }} versão atrás",
|
||||
"{{ releasesBehind }} versions behind_plural": "{{ releasesBehind }} versões atrás",
|
||||
"Change permissions?": "Alterar permissões?",
|
||||
"{{ documentName }} cannot be moved within {{ parentDocumentName }}": "{{ documentName }} cannot be moved within {{ parentDocumentName }}",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "Não é possível reordenar documentos em uma coleção ordenada alfabeticamente",
|
||||
"The {{ documentName }} cannot be moved here": "The {{ documentName }} cannot be moved here",
|
||||
"Return to App": "Voltar ao aplicativo",
|
||||
"Installation": "Instalação",
|
||||
"Unstar document": "Desfavoritar documento",
|
||||
|
||||
@@ -176,6 +176,7 @@
|
||||
"view and edit access": "ver e alterar",
|
||||
"view only access": "ver apenas",
|
||||
"no access": "sem acesso",
|
||||
"You do not have permission to move {{ documentName }} to the {{ collectionName }} collection": "You do not have permission to move {{ documentName }} to the {{ collectionName }} collection",
|
||||
"Move document": "Mover documento",
|
||||
"Moving": "A mover",
|
||||
"Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.": "Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.",
|
||||
@@ -364,9 +365,7 @@
|
||||
"{{ count }} groups added to the document_plural": "{{ count }} grupos adicionados ao documento",
|
||||
"Logo": "Logótipo",
|
||||
"Archived collections": "Archived collections",
|
||||
"Change permissions?": "Change permissions?",
|
||||
"New doc": "Novo doc",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "Não pode reordenar documentos numa coleção ordenada alfabeticamente",
|
||||
"Empty": "Vazio",
|
||||
"Collections": "Coleções",
|
||||
"Collapse": "Fechar",
|
||||
@@ -382,6 +381,10 @@
|
||||
"Up to date": "Em dia",
|
||||
"{{ releasesBehind }} versions behind": "{{ releasesBehind }} versão atrás",
|
||||
"{{ releasesBehind }} versions behind_plural": "{{ releasesBehind }} versões atrás",
|
||||
"Change permissions?": "Change permissions?",
|
||||
"{{ documentName }} cannot be moved within {{ parentDocumentName }}": "{{ documentName }} cannot be moved within {{ parentDocumentName }}",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "Não pode reordenar documentos numa coleção ordenada alfabeticamente",
|
||||
"The {{ documentName }} cannot be moved here": "The {{ documentName }} cannot be moved here",
|
||||
"Return to App": "Voltar à Aplicação",
|
||||
"Installation": "Instalação",
|
||||
"Unstar document": "Desmarcar documento",
|
||||
|
||||
@@ -176,6 +176,7 @@
|
||||
"view and edit access": "visa och redigera åtkomst",
|
||||
"view only access": "visa endast åtkomst",
|
||||
"no access": "ingen behörighet",
|
||||
"You do not have permission to move {{ documentName }} to the {{ collectionName }} collection": "You do not have permission to move {{ documentName }} to the {{ collectionName }} collection",
|
||||
"Move document": "&Flytta dokument",
|
||||
"Moving": "Flyttar",
|
||||
"Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.": "Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.",
|
||||
@@ -364,9 +365,7 @@
|
||||
"{{ count }} groups added to the document_plural": "{{ count }} groups added to the document",
|
||||
"Logo": "Logo",
|
||||
"Archived collections": "Archived collections",
|
||||
"Change permissions?": "Change permissions?",
|
||||
"New doc": "Nytt dokument",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "Du kan inte ordna om dokument i en alfabetiskt sorterad samling",
|
||||
"Empty": "Tom",
|
||||
"Collections": "Samlingar",
|
||||
"Collapse": "Minimera",
|
||||
@@ -382,6 +381,10 @@
|
||||
"Up to date": "Uppdaterad",
|
||||
"{{ releasesBehind }} versions behind": "{{ releasesBehind }} version efter",
|
||||
"{{ releasesBehind }} versions behind_plural": "{{ releasesBehind }} versioner efter",
|
||||
"Change permissions?": "Change permissions?",
|
||||
"{{ documentName }} cannot be moved within {{ parentDocumentName }}": "{{ documentName }} cannot be moved within {{ parentDocumentName }}",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "Du kan inte ordna om dokument i en alfabetiskt sorterad samling",
|
||||
"The {{ documentName }} cannot be moved here": "The {{ documentName }} cannot be moved here",
|
||||
"Return to App": "Tillbaka till appen",
|
||||
"Installation": "Installation",
|
||||
"Unstar document": "Ostjärnmärk dokument",
|
||||
|
||||
@@ -176,6 +176,7 @@
|
||||
"view and edit access": "view and edit access",
|
||||
"view only access": "view only access",
|
||||
"no access": "no access",
|
||||
"You do not have permission to move {{ documentName }} to the {{ collectionName }} collection": "You do not have permission to move {{ documentName }} to the {{ collectionName }} collection",
|
||||
"Move document": "ย้ายเอกสาร",
|
||||
"Moving": "Moving",
|
||||
"Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.": "Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.",
|
||||
@@ -364,9 +365,7 @@
|
||||
"{{ count }} groups added to the document_plural": "{{ count }} groups added to the document",
|
||||
"Logo": "โลโก้",
|
||||
"Archived collections": "Archived collections",
|
||||
"Change permissions?": "Change permissions?",
|
||||
"New doc": "สร้างเอกสารใหม่",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "คุณไม่สามารถจัดลำดับเอกสารใหม่ในคอลเลคชั่นที่เรียงตามตัวอักษร",
|
||||
"Empty": "ว่างเปล่า",
|
||||
"Collections": "คอลเลคชั่น",
|
||||
"Collapse": "ย่อ",
|
||||
@@ -382,6 +381,10 @@
|
||||
"Up to date": "Up to date",
|
||||
"{{ releasesBehind }} versions behind": "{{ releasesBehind }} version behind",
|
||||
"{{ releasesBehind }} versions behind_plural": "{{ releasesBehind }} versions behind",
|
||||
"Change permissions?": "Change permissions?",
|
||||
"{{ documentName }} cannot be moved within {{ parentDocumentName }}": "{{ documentName }} cannot be moved within {{ parentDocumentName }}",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "คุณไม่สามารถจัดลำดับเอกสารใหม่ในคอลเลคชั่นที่เรียงตามตัวอักษร",
|
||||
"The {{ documentName }} cannot be moved here": "The {{ documentName }} cannot be moved here",
|
||||
"Return to App": "Back to App",
|
||||
"Installation": "การติดตั้ง",
|
||||
"Unstar document": "Unstar document",
|
||||
|
||||
@@ -176,6 +176,7 @@
|
||||
"view and edit access": "erişimi görüntüleme ve düzenleme",
|
||||
"view only access": "yalnızca görüntüleme erişimi",
|
||||
"no access": "erişim yok",
|
||||
"You do not have permission to move {{ documentName }} to the {{ collectionName }} collection": "You do not have permission to move {{ documentName }} to the {{ collectionName }} collection",
|
||||
"Move document": "Belgeyi taşı",
|
||||
"Moving": "Taşınıyor",
|
||||
"Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.": "Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.",
|
||||
@@ -364,9 +365,7 @@
|
||||
"{{ count }} groups added to the document_plural": "{{ count }} groups added to the document",
|
||||
"Logo": "Logo",
|
||||
"Archived collections": "Archived collections",
|
||||
"Change permissions?": "Change permissions?",
|
||||
"New doc": "Yeni belge",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "Alfabetik olarak sıralanmış bir koleksiyondaki belgeleri yeniden sıralayamazsınız",
|
||||
"Empty": "Boş",
|
||||
"Collections": "Koleksiyonlar",
|
||||
"Collapse": "Daralt",
|
||||
@@ -382,6 +381,10 @@
|
||||
"Up to date": "Güncel",
|
||||
"{{ releasesBehind }} versions behind": "{{ releasesBehind }} sürümü geride",
|
||||
"{{ releasesBehind }} versions behind_plural": "{{ releasesBehind }} sürüm geride",
|
||||
"Change permissions?": "Change permissions?",
|
||||
"{{ documentName }} cannot be moved within {{ parentDocumentName }}": "{{ documentName }} cannot be moved within {{ parentDocumentName }}",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "Alfabetik olarak sıralanmış bir koleksiyondaki belgeleri yeniden sıralayamazsınız",
|
||||
"The {{ documentName }} cannot be moved here": "The {{ documentName }} cannot be moved here",
|
||||
"Return to App": "Uygulamaya geri dön",
|
||||
"Installation": "Kurulum",
|
||||
"Unstar document": "Unstar document",
|
||||
|
||||
@@ -176,6 +176,7 @@
|
||||
"view and edit access": "право перегляду та редагування",
|
||||
"view only access": "доступ лише на перегляд",
|
||||
"no access": "немає доступу",
|
||||
"You do not have permission to move {{ documentName }} to the {{ collectionName }} collection": "You do not have permission to move {{ documentName }} to the {{ collectionName }} collection",
|
||||
"Move document": "Перемістити документ",
|
||||
"Moving": "Переміщення",
|
||||
"Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.": "Переміщення документа <em>{{ title }}</em> до колекції {{ newCollectionName }} призведе до зміни дозволу для всіх учасників робочої області з <em>{{ prevPermission }}</em> на <em>{{ newPermission }}</em>.",
|
||||
@@ -364,9 +365,7 @@
|
||||
"{{ count }} groups added to the document_plural": "{{ count }} groups added to the document",
|
||||
"Logo": "Лого",
|
||||
"Archived collections": "Заархівовані колекції",
|
||||
"Change permissions?": "Змінити права доступу?",
|
||||
"New doc": "Новий документ",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "Ви не можете змінити порядок документів у колекції, яка відсортована за алфавітом",
|
||||
"Empty": "Порожньо",
|
||||
"Collections": "Колекції",
|
||||
"Collapse": "Згорнути",
|
||||
@@ -382,6 +381,10 @@
|
||||
"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 }}",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "Ви не можете змінити порядок документів у колекції, яка відсортована за алфавітом",
|
||||
"The {{ documentName }} cannot be moved here": "The {{ documentName }} cannot be moved here",
|
||||
"Return to App": "Назад до програми",
|
||||
"Installation": "Встановлення",
|
||||
"Unstar document": "Видалити з обраного",
|
||||
|
||||
@@ -176,6 +176,7 @@
|
||||
"view and edit access": "xem và chỉnh sửa quyền truy cập",
|
||||
"view only access": "chỉ xem quyền truy cập",
|
||||
"no access": "không có quyền truy cập",
|
||||
"You do not have permission to move {{ documentName }} to the {{ collectionName }} collection": "You do not have permission to move {{ documentName }} to the {{ collectionName }} collection",
|
||||
"Move document": "Chuyển tài liệu",
|
||||
"Moving": "Đang chuyển",
|
||||
"Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.": "Việc di chuyển tài liệu <em>{{ title }}</em> sang bộ sưu tập {{ newCollectionName }} sẽ thay đổi quyền cho tất cả các thành viên trong không gian làm việc từ <em>{{ prevPermission }}</em> thành <em>{{ newPermission }}</em>.",
|
||||
@@ -364,9 +365,7 @@
|
||||
"{{ count }} groups added to the document_plural": "{{ count }} groups added to the document",
|
||||
"Logo": "Logo",
|
||||
"Archived collections": "Archived collections",
|
||||
"Change permissions?": "Change permissions?",
|
||||
"New doc": "Tài liệu mới",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "Bạn không thể sắp xếp lại các tài liệu trong bộ sưu tập được sắp xếp theo thứ tự bảng chữ cái",
|
||||
"Empty": "Trống",
|
||||
"Collections": "Bộ sưu tập",
|
||||
"Collapse": "Thu nhỏ",
|
||||
@@ -382,6 +381,10 @@
|
||||
"Up to date": "Đã cập nhật",
|
||||
"{{ releasesBehind }} versions behind": "{{ releasesBehind }} phiên bản phía sau",
|
||||
"{{ releasesBehind }} versions behind_plural": "{{ releasesBehind }} phiên bản phía sau",
|
||||
"Change permissions?": "Change permissions?",
|
||||
"{{ documentName }} cannot be moved within {{ parentDocumentName }}": "{{ documentName }} cannot be moved within {{ parentDocumentName }}",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "Bạn không thể sắp xếp lại các tài liệu trong bộ sưu tập được sắp xếp theo thứ tự bảng chữ cái",
|
||||
"The {{ documentName }} cannot be moved here": "The {{ documentName }} cannot be moved here",
|
||||
"Return to App": "Quay lại ứng dụng",
|
||||
"Installation": "Cài đặt",
|
||||
"Unstar document": "Unstar document",
|
||||
|
||||
@@ -176,6 +176,7 @@
|
||||
"view and edit access": "可编辑",
|
||||
"view only access": "仅浏览权限",
|
||||
"no access": "无访问权限",
|
||||
"You do not have permission to move {{ documentName }} to the {{ collectionName }} collection": "你无权将 {{ documentName }} 移动到文档集 {{ collectionName }} 中",
|
||||
"Move document": "移动文档",
|
||||
"Moving": "移动",
|
||||
"Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.": "将文档 <em>{{ title }}</em> 移动到 {{ newCollectionName }} 集合将使所有工作区成员的权限从 <em>{{ prevPermission }}</em> 更改为 <em>{{ newPermission }}</em>。",
|
||||
@@ -364,9 +365,7 @@
|
||||
"{{ count }} groups added to the document_plural": "{{ count }} 个组被添加到此文档",
|
||||
"Logo": "网站图标",
|
||||
"Archived collections": "归档文档集",
|
||||
"Change permissions?": "更改权限?",
|
||||
"New doc": "新建文档",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "你不能在按字母排序的文档集中排序",
|
||||
"Empty": "空",
|
||||
"Collections": "文档集",
|
||||
"Collapse": "收起",
|
||||
@@ -382,6 +381,10 @@
|
||||
"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 }}",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "你不能在按字母排序的文档集中排序",
|
||||
"The {{ documentName }} cannot be moved here": "The {{ documentName }} cannot be moved here",
|
||||
"Return to App": "返回应用",
|
||||
"Installation": "安装",
|
||||
"Unstar document": "取消收藏文档",
|
||||
@@ -766,7 +769,7 @@
|
||||
"Inline LaTeX": "行内公式",
|
||||
"Triggers": "Triggers",
|
||||
"Mention user or document": "Mention user or document",
|
||||
"Emoji": "Emoji",
|
||||
"Emoji": "表情",
|
||||
"Insert block": "Insert block",
|
||||
"Sign In": "登录",
|
||||
"Continue with Email": "使用电子邮件继续",
|
||||
|
||||
@@ -176,6 +176,7 @@
|
||||
"view and edit access": "可以檢視與編輯",
|
||||
"view only access": "僅供檢視",
|
||||
"no access": "無存取權限",
|
||||
"You do not have permission to move {{ documentName }} to the {{ collectionName }} collection": "You do not have permission to move {{ documentName }} to the {{ collectionName }} collection",
|
||||
"Move document": "移動文件",
|
||||
"Moving": "正在移動",
|
||||
"Moving the document <em>{{ title }}</em> to the {{ newCollectionName }} collection will change permission for all workspace members from <em>{{ prevPermission }}</em> to <em>{{ newPermission }}</em>.": "將文件<em>{{ title }}</em>移動至「{{ newCollectionName }}」文件集,會將所有工作區成員的權限從 「<em>{{ prevPermission }}</em>」 變更為 「 <em>{{ newPermission }}</em>」。",
|
||||
@@ -364,9 +365,7 @@
|
||||
"{{ count }} groups added to the document_plural": "{{ count }} 個團隊已新增至此文件",
|
||||
"Logo": "Logo",
|
||||
"Archived collections": "已封存的文件集",
|
||||
"Change permissions?": "Change permissions?",
|
||||
"New doc": "新文件",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "您無法對按字母順序排序的文件集中的文件再重新排序",
|
||||
"Empty": "空無一物",
|
||||
"Collections": "文件集",
|
||||
"Collapse": "收合",
|
||||
@@ -382,6 +381,10 @@
|
||||
"Up to date": "已是最新版本",
|
||||
"{{ releasesBehind }} versions behind": "{{ releasesBehind }} 版本落後",
|
||||
"{{ releasesBehind }} versions behind_plural": "{{ releasesBehind }} 數個版本落後",
|
||||
"Change permissions?": "Change permissions?",
|
||||
"{{ documentName }} cannot be moved within {{ parentDocumentName }}": "{{ documentName }} cannot be moved within {{ parentDocumentName }}",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "您無法對按字母順序排序的文件集中的文件再重新排序",
|
||||
"The {{ documentName }} cannot be moved here": "The {{ documentName }} cannot be moved here",
|
||||
"Return to App": "返回",
|
||||
"Installation": "安裝",
|
||||
"Unstar document": "取消星號",
|
||||
|
||||
@@ -29,7 +29,7 @@ export const ApiKeyValidation = {
|
||||
|
||||
export const CollectionValidation = {
|
||||
/** The maximum length of the collection description */
|
||||
maxDescriptionLength: 10 * 1000,
|
||||
maxDescriptionLength: 100 * 1000,
|
||||
|
||||
/** The maximum length of the collection name */
|
||||
maxNameLength: 100,
|
||||
|
||||
@@ -1744,15 +1744,15 @@
|
||||
dependencies:
|
||||
"@bull-board/api" "4.12.2"
|
||||
|
||||
"@bundle-stats/plugin-webpack-filter@4.16.0":
|
||||
version "4.16.0"
|
||||
resolved "https://registry.yarnpkg.com/@bundle-stats/plugin-webpack-filter/-/plugin-webpack-filter-4.16.0.tgz#9d3bd29cc3b896411350b7c34ed8658bf88a3f2a"
|
||||
integrity sha512-+U5l8GSIvARjfPOrp+Nxjw0dGkr9rQVGtof5dqmamt7RmYUBnVsjZy85N4LJypivjEzSFOlRl79i/oqSCCT1/A==
|
||||
"@bundle-stats/plugin-webpack-filter@4.17.0":
|
||||
version "4.17.0"
|
||||
resolved "https://registry.yarnpkg.com/@bundle-stats/plugin-webpack-filter/-/plugin-webpack-filter-4.17.0.tgz#761d94204b28afbeda4bd032f46ad1819134de87"
|
||||
integrity sha512-sGC1c7oiRNKY19OLNB2Yha88Yt+UC7OJWlk8O6HBvN/OO8ACvZ6DuxRMNBXMyP0cDDAJlcY9v9rzy0bbnegzAw==
|
||||
|
||||
"@bundle-stats/plugin-webpack-validate@4.16.0":
|
||||
version "4.16.0"
|
||||
resolved "https://registry.yarnpkg.com/@bundle-stats/plugin-webpack-validate/-/plugin-webpack-validate-4.16.0.tgz#b9618787b1410527c0dae2a746605eb0fdf7f461"
|
||||
integrity sha512-2i+iGMOBS1uPy7nZR9apHbdx8x+FBO9iW69J3IOvAoliwE/KHl2mBpXAUhg8U4f/Sv3ujfue2VFaVlP1gIqyLQ==
|
||||
"@bundle-stats/plugin-webpack-validate@4.17.0":
|
||||
version "4.17.0"
|
||||
resolved "https://registry.yarnpkg.com/@bundle-stats/plugin-webpack-validate/-/plugin-webpack-validate-4.17.0.tgz#d507e21b00f779098078512a584c89bbc272351b"
|
||||
integrity sha512-dsCAIYiQ1ohRt7wyR5gfQCT3OKLjHxRZ3F/uL0gnBO56+xnvDzO/s+A5QO4EerlXIRIUBW8JWWuYAhe8ccdFjA==
|
||||
dependencies:
|
||||
lodash "4.17.21"
|
||||
superstruct "2.0.2"
|
||||
@@ -3377,14 +3377,14 @@
|
||||
dependencies:
|
||||
"@react-types/shared" "^3.14.1"
|
||||
|
||||
"@relative-ci/agent@^4.2.13":
|
||||
version "4.2.13"
|
||||
resolved "https://registry.yarnpkg.com/@relative-ci/agent/-/agent-4.2.13.tgz#0cfd1732767dbf4e8f27e6b41c040d1a18cff0b2"
|
||||
integrity sha512-vDNtYz38vScbK6NZ2FD8QxvjgQGKtY104wyassL3qMLYrYTdWUDqDiAJC7lHsh/LlUZOakv9M9lIPGVU99ue8Q==
|
||||
"@relative-ci/agent@^4.2.14":
|
||||
version "4.2.14"
|
||||
resolved "https://registry.yarnpkg.com/@relative-ci/agent/-/agent-4.2.14.tgz#6e52656c5be0786d583ff6cdcce0e8c898b21172"
|
||||
integrity sha512-JLrQv6ZQFuApsbT37qBJ07tfujxhhdDFm9Ap2Ap4kW9//H1JM/H1gPH7bLFi3OM2l8p7VOL2aJwz4fTlSVmY4A==
|
||||
dependencies:
|
||||
"@bundle-stats/plugin-webpack-filter" "4.16.0"
|
||||
"@bundle-stats/plugin-webpack-validate" "4.16.0"
|
||||
core-js "3.38.1"
|
||||
"@bundle-stats/plugin-webpack-filter" "4.17.0"
|
||||
"@bundle-stats/plugin-webpack-validate" "4.17.0"
|
||||
core-js "3.39.0"
|
||||
cosmiconfig "9.0.0"
|
||||
debug "4.3.7"
|
||||
dotenv "16.4.5"
|
||||
@@ -6888,10 +6888,10 @@ core-js-compat@^3.38.0, core-js-compat@^3.38.1, core-js-compat@^3.9.1:
|
||||
dependencies:
|
||||
browserslist "^4.23.3"
|
||||
|
||||
core-js@3.38.1, core-js@^3.37.0:
|
||||
version "3.38.1"
|
||||
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.38.1.tgz#aa375b79a286a670388a1a363363d53677c0383e"
|
||||
integrity sha512-OP35aUorbU3Zvlx7pjsFdu1rGNnD4pgw/CWoYzRY3t2EzoVT7shKHY1dlAy3f41cGIO7ZDPQimhGFTlEYkG/Hw==
|
||||
core-js@3.39.0, core-js@^3.37.0:
|
||||
version "3.39.0"
|
||||
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.39.0.tgz#57f7647f4d2d030c32a72ea23a0555b2eaa30f83"
|
||||
integrity sha512-raM0ew0/jJUqkJ0E6e8UDtl+y/7ktFivgWvqw8dNSQeNWoSDLvQ1H/RN3aPXB9tBd4/FhyR4RDPGhsNIMsAn7g==
|
||||
|
||||
core-js@^2.4.0:
|
||||
version "2.6.11"
|
||||
@@ -8824,10 +8824,10 @@ for-each@^0.3.3:
|
||||
dependencies:
|
||||
is-callable "^1.1.3"
|
||||
|
||||
form-data@*, form-data@^4.0.0:
|
||||
version "4.0.0"
|
||||
resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452"
|
||||
integrity "sha1-k5Gdrq82HuUpWEubMWZNwSyfpFI= sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww=="
|
||||
form-data@*, form-data@^4.0.0, form-data@^4.0.1:
|
||||
version "4.0.1"
|
||||
resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.1.tgz#ba1076daaaa5bfd7e99c1a6cb02aa0a5cff90d48"
|
||||
integrity sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==
|
||||
dependencies:
|
||||
asynckit "^0.4.0"
|
||||
combined-stream "^1.0.8"
|
||||
@@ -10969,10 +10969,10 @@ koa-views@^7.0.1:
|
||||
pretty "^2.0.0"
|
||||
resolve-path "^1.4.0"
|
||||
|
||||
koa@^2.13.1, koa@^2.15.3:
|
||||
version "2.15.3"
|
||||
resolved "https://registry.yarnpkg.com/koa/-/koa-2.15.3.tgz#062809266ee75ce0c75f6510a005b0e38f8c519a"
|
||||
integrity sha512-j/8tY9j5t+GVMLeioLaxweJiKUayFhlGqNTzf2ZGwL0ZCQijd2RLHK0SLW5Tsko8YyyqCZC2cojIb0/s62qTAg==
|
||||
koa@^2.13.1, koa@^2.15.4:
|
||||
version "2.15.4"
|
||||
resolved "https://registry.yarnpkg.com/koa/-/koa-2.15.4.tgz#7000b3d8354558671adb1ba1b1c09bedb5f8da75"
|
||||
integrity sha512-7fNBIdrU2PEgLljXoPWoyY4r1e+ToWCmzS/wwMPbUNs7X+5MMET1ObhJBlUkF5uZG9B6QhM2zS1TsH6adegkiQ==
|
||||
dependencies:
|
||||
accepts "^1.3.5"
|
||||
cache-content-type "^1.0.0"
|
||||
@@ -11901,11 +11901,16 @@ node-releases@^2.0.18:
|
||||
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.18.tgz#f010e8d35e2fe8d6b2944f03f70213ecedc4ca3f"
|
||||
integrity sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==
|
||||
|
||||
nodemailer@6.9.16, nodemailer@^6.9.16:
|
||||
nodemailer@6.9.16:
|
||||
version "6.9.16"
|
||||
resolved "https://registry.yarnpkg.com/nodemailer/-/nodemailer-6.9.16.tgz#3ebdf6c6f477c571c0facb0727b33892635e0b8b"
|
||||
integrity sha512-psAuZdTIRN08HKVd/E8ObdV6NO7NTBY3KsC30F7M4H1OnmLCUNaS56FpYxyb26zWLSyYF9Ozch9KYHhHegsiOQ==
|
||||
|
||||
nodemailer@^6.10.0:
|
||||
version "6.10.0"
|
||||
resolved "https://registry.yarnpkg.com/nodemailer/-/nodemailer-6.10.0.tgz#1f24c9de94ad79c6206f66d132776b6503003912"
|
||||
integrity sha512-SQ3wZCExjeSatLE/HBaXS5vqUOQk6GtBdIIKxiFdmm01mOQZX/POJkO3SUX1wDiYcwUOJwT23scFSC9fY2H8IA==
|
||||
|
||||
nodemon@^3.1.9:
|
||||
version "3.1.9"
|
||||
resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-3.1.9.tgz#df502cdc3b120e1c3c0c6e4152349019efa7387b"
|
||||
|
||||
Reference in New Issue
Block a user