@kedataindo/docflow-vue 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/BubbleMenu.vue.d.ts +14 -0
- package/dist/components/BubbleMenu.vue.d.ts.map +1 -0
- package/dist/components/DocsEditor.vue.d.ts +73 -0
- package/dist/components/DocsEditor.vue.d.ts.map +1 -0
- package/dist/components/DocumentTabsSidebar.vue.d.ts +36 -0
- package/dist/components/DocumentTabsSidebar.vue.d.ts.map +1 -0
- package/dist/components/EditorToolbar.vue.d.ts +24 -0
- package/dist/components/EditorToolbar.vue.d.ts.map +1 -0
- package/dist/components/FontSizeSelect.vue.d.ts +7 -0
- package/dist/components/FontSizeSelect.vue.d.ts.map +1 -0
- package/dist/components/HeaderBar.vue.d.ts +57 -0
- package/dist/components/HeaderBar.vue.d.ts.map +1 -0
- package/dist/components/PageView.vue.d.ts +18 -0
- package/dist/components/PageView.vue.d.ts.map +1 -0
- package/dist/components/QuickActionChips.vue.d.ts +14 -0
- package/dist/components/QuickActionChips.vue.d.ts.map +1 -0
- package/dist/components/RulerBar.vue.d.ts +7 -0
- package/dist/components/RulerBar.vue.d.ts.map +1 -0
- package/dist/components/SlashMenu.vue.d.ts +11 -0
- package/dist/components/SlashMenu.vue.d.ts.map +1 -0
- package/dist/components/StatusBar.vue.d.ts +30 -0
- package/dist/components/StatusBar.vue.d.ts.map +1 -0
- package/dist/components/ThemeToggle.vue.d.ts +3 -0
- package/dist/components/ThemeToggle.vue.d.ts.map +1 -0
- package/dist/components/VerticalRuler.vue.d.ts +7 -0
- package/dist/components/VerticalRuler.vue.d.ts.map +1 -0
- package/dist/components/sidebars/AISidebar.vue.d.ts +10 -0
- package/dist/components/sidebars/AISidebar.vue.d.ts.map +1 -0
- package/dist/components/sidebars/CommentsSidebar.vue.d.ts +17 -0
- package/dist/components/sidebars/CommentsSidebar.vue.d.ts.map +1 -0
- package/dist/components/sidebars/HistorySidebar.vue.d.ts +16 -0
- package/dist/components/sidebars/HistorySidebar.vue.d.ts.map +1 -0
- package/dist/components/sidebars/TOCSidebar.vue.d.ts +11 -0
- package/dist/components/sidebars/TOCSidebar.vue.d.ts.map +1 -0
- package/dist/composables/useEditor.d.ts +17 -0
- package/dist/composables/useEditor.d.ts.map +1 -0
- package/dist/composables/useLocale.d.ts +14 -0
- package/dist/composables/useLocale.d.ts.map +1 -0
- package/dist/composables/useTheme.d.ts +5 -0
- package/dist/composables/useTheme.d.ts.map +1 -0
- package/dist/index.cjs +374 -0
- package/dist/index.d.ts +21 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +4774 -0
- package/dist/locales/en.d.ts +335 -0
- package/dist/locales/en.d.ts.map +1 -0
- package/dist/locales/id.d.ts +335 -0
- package/dist/locales/id.d.ts.map +1 -0
- package/dist/locales/index.d.ts +18 -0
- package/dist/locales/index.d.ts.map +1 -0
- package/dist/style.css +1 -0
- package/dist/types.d.ts +40 -0
- package/dist/types.d.ts.map +1 -0
- package/package.json +48 -0
|
@@ -0,0 +1,335 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
readonly common: {
|
|
3
|
+
readonly save: "Save";
|
|
4
|
+
readonly cancel: "Cancel";
|
|
5
|
+
readonly create: "Create";
|
|
6
|
+
readonly delete: "Delete";
|
|
7
|
+
readonly rename: "Rename";
|
|
8
|
+
readonly duplicate: "Duplicate";
|
|
9
|
+
readonly move: "Move";
|
|
10
|
+
readonly moveToFolder: "Move to folder";
|
|
11
|
+
readonly moveDocument: "Move Document";
|
|
12
|
+
readonly noFolder: "(No Folder)";
|
|
13
|
+
readonly search: "Search";
|
|
14
|
+
readonly loading: "Loading...";
|
|
15
|
+
readonly error: "Error";
|
|
16
|
+
readonly dismiss: "Dismiss";
|
|
17
|
+
readonly emptyDocument: "(Empty Document)";
|
|
18
|
+
readonly confirmDelete: "Are you sure you want to delete this document?";
|
|
19
|
+
};
|
|
20
|
+
readonly header: {
|
|
21
|
+
readonly file: "File";
|
|
22
|
+
readonly new: "New";
|
|
23
|
+
readonly newDocument: "New document";
|
|
24
|
+
readonly open: "Open";
|
|
25
|
+
readonly makeACopy: "Make a copy";
|
|
26
|
+
readonly share: "Share";
|
|
27
|
+
readonly email: "Email";
|
|
28
|
+
readonly emailDraft: "Email draft";
|
|
29
|
+
readonly download: "Download";
|
|
30
|
+
readonly rename: "Rename";
|
|
31
|
+
readonly move: "Move";
|
|
32
|
+
readonly moveToFolder: "Move to folder";
|
|
33
|
+
readonly moveToTrash: "Move to trash";
|
|
34
|
+
readonly versionHistory: "Version history";
|
|
35
|
+
readonly language: "Language";
|
|
36
|
+
readonly pageSetup: "Page setup";
|
|
37
|
+
readonly print: "Print";
|
|
38
|
+
readonly edit: "Edit";
|
|
39
|
+
readonly view: "View";
|
|
40
|
+
readonly insert: "Insert";
|
|
41
|
+
readonly format: "Format";
|
|
42
|
+
readonly tools: "Tools";
|
|
43
|
+
readonly extensions: "Extensions";
|
|
44
|
+
readonly help: "Help";
|
|
45
|
+
readonly backToDocuments: "Back to Documents";
|
|
46
|
+
readonly clickToRename: "Click to rename";
|
|
47
|
+
readonly starDocument: "Star document";
|
|
48
|
+
readonly unstarDocument: "Unstar document";
|
|
49
|
+
readonly sandbox: "Sandbox (toggle simulated collaborators)";
|
|
50
|
+
readonly theme: "Theme";
|
|
51
|
+
readonly account: "Account";
|
|
52
|
+
readonly markdown: "Markdown (.md)";
|
|
53
|
+
readonly html: "Web page (.html)";
|
|
54
|
+
readonly htmlZip: "Web page (.html, zipped)";
|
|
55
|
+
readonly text: "Plain text (.txt)";
|
|
56
|
+
readonly docx: "Microsoft Word (.docx)";
|
|
57
|
+
readonly pdf: "PDF Document (.pdf)";
|
|
58
|
+
readonly odt: "OpenDocument Format (.odt)";
|
|
59
|
+
readonly rtf: "Rich Text Format (.rtf)";
|
|
60
|
+
readonly undo: "Undo";
|
|
61
|
+
readonly redo: "Redo";
|
|
62
|
+
readonly selectAll: "Select all";
|
|
63
|
+
readonly showSidebar: "Show sidebar";
|
|
64
|
+
readonly focusMode: "Full focus mode";
|
|
65
|
+
readonly showRuler: "Show ruler";
|
|
66
|
+
readonly meetingNotes: "Meeting notes";
|
|
67
|
+
readonly image: "Image";
|
|
68
|
+
readonly table: "Table";
|
|
69
|
+
readonly codeBlock: "Code block";
|
|
70
|
+
readonly header: "Header";
|
|
71
|
+
readonly footer: "Footer";
|
|
72
|
+
readonly footnote: "Footnote";
|
|
73
|
+
readonly bold: "Bold text";
|
|
74
|
+
readonly italic: "Italic text";
|
|
75
|
+
readonly underline: "Underline";
|
|
76
|
+
readonly heading1: "Heading 1";
|
|
77
|
+
readonly heading2: "Heading 2";
|
|
78
|
+
readonly heading3: "Heading 3";
|
|
79
|
+
readonly spellCheck: "Spell check";
|
|
80
|
+
readonly wordCount: "Word count";
|
|
81
|
+
readonly preferences: "Preferences";
|
|
82
|
+
readonly manageExtensions: "Manage extensions…";
|
|
83
|
+
readonly keyboardShortcuts: "Keyboard shortcuts";
|
|
84
|
+
readonly reportIssue: "Report issue";
|
|
85
|
+
readonly about: "About DocsEditor";
|
|
86
|
+
};
|
|
87
|
+
readonly toolbar: {
|
|
88
|
+
readonly undo: "Undo";
|
|
89
|
+
readonly redo: "Redo";
|
|
90
|
+
readonly print: "Print";
|
|
91
|
+
readonly spelling: "Spelling";
|
|
92
|
+
readonly zoom: "100%";
|
|
93
|
+
readonly paragraphStyle: "Paragraph style";
|
|
94
|
+
readonly normalText: "Normal text";
|
|
95
|
+
readonly fontFamily: "Font family";
|
|
96
|
+
readonly decreaseFontSize: "Decrease font size";
|
|
97
|
+
readonly increaseFontSize: "Increase font size";
|
|
98
|
+
readonly lists: "Lists";
|
|
99
|
+
readonly alignment: "Alignment";
|
|
100
|
+
readonly insert: "Insert";
|
|
101
|
+
readonly comments: "Comments";
|
|
102
|
+
readonly history: "History";
|
|
103
|
+
readonly ai: "AI";
|
|
104
|
+
readonly tableOfContents: "Table of contents";
|
|
105
|
+
};
|
|
106
|
+
readonly statusBar: {
|
|
107
|
+
readonly liveSyncActive: "Live Sync Active";
|
|
108
|
+
readonly connecting: "Connecting…";
|
|
109
|
+
readonly saving: "Saving changes…";
|
|
110
|
+
readonly offline: "Offline";
|
|
111
|
+
readonly lastSavedAt: "Last saved at";
|
|
112
|
+
readonly never: "Never";
|
|
113
|
+
readonly pageSize: "Page size";
|
|
114
|
+
readonly page: "Page";
|
|
115
|
+
readonly of: "of";
|
|
116
|
+
readonly words: "words";
|
|
117
|
+
readonly characters: "characters";
|
|
118
|
+
};
|
|
119
|
+
readonly editor: {
|
|
120
|
+
readonly share: {
|
|
121
|
+
readonly title: "Share document";
|
|
122
|
+
readonly close: "Close";
|
|
123
|
+
readonly shareableLink: "Shareable link";
|
|
124
|
+
readonly copy: "Copy";
|
|
125
|
+
readonly copied: "Link copied to clipboard";
|
|
126
|
+
readonly couldNotCopy: "Could not copy link";
|
|
127
|
+
readonly collaborators: "Collaborators";
|
|
128
|
+
readonly addCollaborator: "Add collaborator by email";
|
|
129
|
+
readonly placeholder: "colleague@example.com";
|
|
130
|
+
readonly add: "Add";
|
|
131
|
+
readonly userNotFound: "User not found";
|
|
132
|
+
readonly failedToAdd: "Failed to add collaborator";
|
|
133
|
+
};
|
|
134
|
+
readonly print: "Print";
|
|
135
|
+
readonly logOut: "Log out";
|
|
136
|
+
readonly rename: {
|
|
137
|
+
readonly title: "Rename document";
|
|
138
|
+
readonly label: "Document title";
|
|
139
|
+
readonly save: "Save";
|
|
140
|
+
readonly cancel: "Cancel";
|
|
141
|
+
};
|
|
142
|
+
readonly pageSetup: {
|
|
143
|
+
readonly title: "Page setup";
|
|
144
|
+
readonly paperSize: "Paper size";
|
|
145
|
+
readonly orientation: "Orientation";
|
|
146
|
+
readonly portrait: "Portrait";
|
|
147
|
+
readonly landscape: "Landscape";
|
|
148
|
+
readonly margins: "Margins";
|
|
149
|
+
readonly top: "Top";
|
|
150
|
+
readonly bottom: "Bottom";
|
|
151
|
+
readonly left: "Left";
|
|
152
|
+
readonly right: "Right";
|
|
153
|
+
readonly apply: "Apply";
|
|
154
|
+
readonly cancel: "Cancel";
|
|
155
|
+
};
|
|
156
|
+
readonly headerFooter: {
|
|
157
|
+
readonly title: "Header & Footer Customization";
|
|
158
|
+
readonly header: "Header";
|
|
159
|
+
readonly footer: "Footer";
|
|
160
|
+
readonly left: "Left";
|
|
161
|
+
readonly right: "Right";
|
|
162
|
+
readonly clear: "Clear";
|
|
163
|
+
readonly headerLeftPlaceholder: "e.g. Document Title";
|
|
164
|
+
readonly headerRightPlaceholder: "e.g. Page {page}";
|
|
165
|
+
readonly footerLeftPlaceholder: "e.g. Confidential";
|
|
166
|
+
readonly footerRightPlaceholder: "e.g. Page {page} of {total}";
|
|
167
|
+
readonly variableInfo: "Variable Info: You can use {page} for the current page number, and {total} for the total page count.";
|
|
168
|
+
readonly cancel: "Cancel";
|
|
169
|
+
readonly save: "Save";
|
|
170
|
+
};
|
|
171
|
+
readonly showOutline: "Show document outline";
|
|
172
|
+
readonly loadingDocument: "Loading document";
|
|
173
|
+
};
|
|
174
|
+
readonly slashMenu: {
|
|
175
|
+
readonly title: "Suggested";
|
|
176
|
+
readonly basicBlocks: "Basic Blocks";
|
|
177
|
+
readonly noMatch: "No matching commands";
|
|
178
|
+
};
|
|
179
|
+
readonly quickActions: {
|
|
180
|
+
readonly meetingNotes: "Meeting notes";
|
|
181
|
+
readonly emailDraft: "Email draft";
|
|
182
|
+
readonly more: "More";
|
|
183
|
+
};
|
|
184
|
+
readonly documentTabs: {
|
|
185
|
+
readonly documentTabs: "Document Tabs";
|
|
186
|
+
readonly addTab: "Add tab";
|
|
187
|
+
readonly rename: "Rename";
|
|
188
|
+
readonly delete: "Delete";
|
|
189
|
+
readonly outline: "Outline";
|
|
190
|
+
readonly untitledHeading: "Untitled Heading {level}";
|
|
191
|
+
readonly placeholder: "Headings you add to the document will appear here.";
|
|
192
|
+
};
|
|
193
|
+
readonly theme: {
|
|
194
|
+
readonly lightMode: "Switch to light mode";
|
|
195
|
+
readonly darkMode: "Switch to dark mode";
|
|
196
|
+
};
|
|
197
|
+
readonly sidebars: {
|
|
198
|
+
readonly ai: {
|
|
199
|
+
readonly title: "AI Writing Helper";
|
|
200
|
+
readonly description: "A server-side AI co-writer to draft, summarize, or edit your copy.";
|
|
201
|
+
readonly quickMacros: "Quick AI Macros";
|
|
202
|
+
readonly summarize: "Summarize";
|
|
203
|
+
readonly fixGrammar: "Fix Grammar";
|
|
204
|
+
readonly continue: "Continue";
|
|
205
|
+
readonly toSpanish: "To Spanish";
|
|
206
|
+
readonly generations: "AI Generations";
|
|
207
|
+
readonly aiDrafting: "AI drafting…";
|
|
208
|
+
readonly copy: "Copy";
|
|
209
|
+
readonly copied: "Copied";
|
|
210
|
+
readonly insert: "Insert";
|
|
211
|
+
readonly inserted: "Inserted";
|
|
212
|
+
readonly noDraft: "No draft generated yet. Submit a prompt or macro command above to start.";
|
|
213
|
+
readonly promptPlaceholder: "Ask AI to draft outline, write content, rewrite tone…";
|
|
214
|
+
readonly promptAI: "Prompt AI";
|
|
215
|
+
};
|
|
216
|
+
readonly comments: {
|
|
217
|
+
readonly title: "Discussion Panel";
|
|
218
|
+
readonly placeholder: "Select text to add a comment…";
|
|
219
|
+
readonly addComment: "Add comment";
|
|
220
|
+
readonly resolve: "Resolve";
|
|
221
|
+
readonly reply: "Reply…";
|
|
222
|
+
readonly replyInThread: "Reply in thread";
|
|
223
|
+
readonly active: "Active";
|
|
224
|
+
readonly resolved: "Resolved";
|
|
225
|
+
readonly creatingAnchored: "Creating anchored comment:";
|
|
226
|
+
readonly quote: "Quote:";
|
|
227
|
+
readonly resolvedBy: "Resolved by {user}";
|
|
228
|
+
readonly noComments: "No {mode} comments yet.";
|
|
229
|
+
readonly commentOnSelection: "Comment on selection…";
|
|
230
|
+
readonly generalComment: "Add general comment to document…";
|
|
231
|
+
readonly anchoredComment: "Anchored comment";
|
|
232
|
+
readonly general: "General comment";
|
|
233
|
+
readonly post: "Post";
|
|
234
|
+
};
|
|
235
|
+
readonly history: {
|
|
236
|
+
readonly title: "History";
|
|
237
|
+
readonly empty: "No history yet.";
|
|
238
|
+
readonly version: "Version";
|
|
239
|
+
readonly restore: "Restore";
|
|
240
|
+
readonly closePreview: "Close Preview";
|
|
241
|
+
readonly restoreThis: "Restore This";
|
|
242
|
+
readonly viewingPreview: "Viewing Revision Preview";
|
|
243
|
+
readonly readOnlyPreview: "You are previewing version #{index}. Your editor is temporarily read-only.";
|
|
244
|
+
readonly modifiedBy: "Modified by:";
|
|
245
|
+
readonly saveNamedSnapshot: "Save Named Snapshot";
|
|
246
|
+
readonly snapshotPlaceholder: "e.g. Approved Final Draft…";
|
|
247
|
+
readonly noSnapshots: "No snapshots saved yet.";
|
|
248
|
+
readonly save: "Save";
|
|
249
|
+
readonly cancel: "Cancel";
|
|
250
|
+
readonly preview: "Preview";
|
|
251
|
+
};
|
|
252
|
+
readonly toc: {
|
|
253
|
+
readonly title: "Contents";
|
|
254
|
+
readonly empty: "No headings yet.";
|
|
255
|
+
readonly untitledHeading: "Untitled Heading {level}";
|
|
256
|
+
readonly newSection: "New {tag} Section";
|
|
257
|
+
readonly startWriting: "Start writing here…";
|
|
258
|
+
readonly closeOutline: "Close outline";
|
|
259
|
+
readonly searchHeadings: "Search headings…";
|
|
260
|
+
readonly noHeadings: "No Headings Yet";
|
|
261
|
+
readonly noHeadingsDescription: "Use headers (H1, H2, or H3) to structure your document. An interactive outline will generate here automatically.";
|
|
262
|
+
readonly quickInsert: "Quick Insert";
|
|
263
|
+
readonly headingLevel: "Heading {level}";
|
|
264
|
+
readonly noMatchingHeaders: "No matching headers found";
|
|
265
|
+
readonly tryDifferentTerm: "Try searching with a different term.";
|
|
266
|
+
readonly outlineLayout: "Outline Layout";
|
|
267
|
+
readonly outlineSync: "Outline syncs automatically. Click any header to instantly jump, focus, and scroll the editor to that section.";
|
|
268
|
+
};
|
|
269
|
+
};
|
|
270
|
+
readonly dashboard: {
|
|
271
|
+
readonly allDocuments: "All Documents";
|
|
272
|
+
readonly starred: "Starred";
|
|
273
|
+
readonly folders: "Folders";
|
|
274
|
+
readonly createFolder: "Create New Folder";
|
|
275
|
+
readonly folderNamePlaceholder: "Folder name…";
|
|
276
|
+
readonly noFolders: "No folders created yet.";
|
|
277
|
+
readonly startNewDocument: "Start a New Document";
|
|
278
|
+
readonly blankDocument: "Blank Document";
|
|
279
|
+
readonly blankDescription: "Fresh slate";
|
|
280
|
+
readonly meetingNotes: "Meeting Notes";
|
|
281
|
+
readonly meetingNotesDescription: "Attendees & Action Items";
|
|
282
|
+
readonly projectProposal: "Project Proposal";
|
|
283
|
+
readonly projectProposalDescription: "Objectives & Deliverables";
|
|
284
|
+
readonly officialLetter: "Official Letter";
|
|
285
|
+
readonly officialLetterDescription: "Pre-formatted header";
|
|
286
|
+
readonly searchPlaceholder: "Search titles or full-text contents…";
|
|
287
|
+
readonly modified: "Modified";
|
|
288
|
+
readonly alphabetical: "Alphabetical";
|
|
289
|
+
readonly created: "Created";
|
|
290
|
+
readonly gridView: "Grid View";
|
|
291
|
+
readonly listView: "List View";
|
|
292
|
+
readonly activeFilters: "Active Filters:";
|
|
293
|
+
readonly folder: "Folder";
|
|
294
|
+
readonly starredOnly: "Starred Only";
|
|
295
|
+
readonly search: "Search";
|
|
296
|
+
readonly noDocuments: "No documents found";
|
|
297
|
+
readonly noDocumentsDescription: "No files match your current filters. Select a template or create a blank file to start drafting!";
|
|
298
|
+
readonly createBlankDocument: "Create Blank Document";
|
|
299
|
+
readonly loadingDocuments: "Loading documents...";
|
|
300
|
+
readonly documentTitle: "Document Title";
|
|
301
|
+
readonly lastModified: "Last Modified";
|
|
302
|
+
readonly actions: "Actions";
|
|
303
|
+
};
|
|
304
|
+
readonly auth: {
|
|
305
|
+
readonly signInTitle: "Sign in to create and edit documents";
|
|
306
|
+
readonly signInWithGoogle: "Sign in with Google";
|
|
307
|
+
readonly signInWithEmail: "Sign in with Email";
|
|
308
|
+
readonly signInWithGitHub: "Sign in with GitHub";
|
|
309
|
+
readonly signInWith: "Sign in with {provider}";
|
|
310
|
+
readonly or: "or";
|
|
311
|
+
readonly email: "Email";
|
|
312
|
+
readonly password: "Password";
|
|
313
|
+
readonly name: "Name";
|
|
314
|
+
readonly signIn: "Sign In";
|
|
315
|
+
readonly signUp: "Sign Up";
|
|
316
|
+
readonly signOut: "Sign out";
|
|
317
|
+
readonly noAccount: "Don't have an account? Sign up";
|
|
318
|
+
readonly hasAccount: "Already have an account? Sign in";
|
|
319
|
+
readonly invalidCredentials: "Invalid email or password";
|
|
320
|
+
readonly accountCreated: "Account created! You are now signed in.";
|
|
321
|
+
readonly loadDocumentsError: "Failed to load documents. Is the server running?";
|
|
322
|
+
readonly retry: "Try again";
|
|
323
|
+
readonly rateLimited: "Server is rate limiting requests.";
|
|
324
|
+
readonly retryIn: "Retrying in {seconds}s…";
|
|
325
|
+
readonly networkError: "Could not reach the server. Check your connection.";
|
|
326
|
+
readonly noProviders: "No authentication providers configured. Check your server environment variables.";
|
|
327
|
+
};
|
|
328
|
+
readonly language: {
|
|
329
|
+
readonly label: "Language";
|
|
330
|
+
readonly en: "English";
|
|
331
|
+
readonly id: "Indonesian";
|
|
332
|
+
};
|
|
333
|
+
};
|
|
334
|
+
export default _default;
|
|
335
|
+
//# sourceMappingURL=en.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../src/locales/en.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA4UU"}
|
|
@@ -0,0 +1,335 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
readonly common: {
|
|
3
|
+
readonly save: "Simpan";
|
|
4
|
+
readonly cancel: "Batal";
|
|
5
|
+
readonly create: "Buat";
|
|
6
|
+
readonly delete: "Hapus";
|
|
7
|
+
readonly rename: "Ubah nama";
|
|
8
|
+
readonly duplicate: "Duplikat";
|
|
9
|
+
readonly move: "Pindah";
|
|
10
|
+
readonly moveToFolder: "Pindah ke folder";
|
|
11
|
+
readonly moveDocument: "Pindahkan Dokumen";
|
|
12
|
+
readonly noFolder: "(Tanpa Folder)";
|
|
13
|
+
readonly search: "Cari";
|
|
14
|
+
readonly loading: "Memuat…";
|
|
15
|
+
readonly error: "Kesalahan";
|
|
16
|
+
readonly dismiss: "Tutup";
|
|
17
|
+
readonly emptyDocument: "(Dokumen Kosong)";
|
|
18
|
+
readonly confirmDelete: "Apakah Anda yakin ingin menghapus dokumen ini?";
|
|
19
|
+
};
|
|
20
|
+
readonly header: {
|
|
21
|
+
readonly file: "Berkas";
|
|
22
|
+
readonly new: "Baru";
|
|
23
|
+
readonly newDocument: "Dokumen baru";
|
|
24
|
+
readonly open: "Buka";
|
|
25
|
+
readonly makeACopy: "Buat salinan";
|
|
26
|
+
readonly share: "Bagikan";
|
|
27
|
+
readonly email: "Email";
|
|
28
|
+
readonly emailDraft: "Draf Email";
|
|
29
|
+
readonly download: "Unduh";
|
|
30
|
+
readonly rename: "Ubah nama";
|
|
31
|
+
readonly move: "Pindah";
|
|
32
|
+
readonly moveToFolder: "Pindah ke folder";
|
|
33
|
+
readonly moveToTrash: "Pindah ke sampah";
|
|
34
|
+
readonly versionHistory: "Riwayat versi";
|
|
35
|
+
readonly language: "Bahasa";
|
|
36
|
+
readonly pageSetup: "Penataan halaman";
|
|
37
|
+
readonly print: "Cetak";
|
|
38
|
+
readonly edit: "Sunting";
|
|
39
|
+
readonly view: "Tampilan";
|
|
40
|
+
readonly insert: "Sisipkan";
|
|
41
|
+
readonly format: "Format";
|
|
42
|
+
readonly tools: "Alat";
|
|
43
|
+
readonly extensions: "Ekstensi";
|
|
44
|
+
readonly help: "Bantuan";
|
|
45
|
+
readonly backToDocuments: "Kembali ke Dokumen";
|
|
46
|
+
readonly clickToRename: "Klik untuk mengganti nama";
|
|
47
|
+
readonly starDocument: "Bintangi dokumen";
|
|
48
|
+
readonly unstarDocument: "Hapus bintang";
|
|
49
|
+
readonly sandbox: "Sandbox (alihkan kolaborator simulasi)";
|
|
50
|
+
readonly theme: "Tema";
|
|
51
|
+
readonly account: "Akun";
|
|
52
|
+
readonly markdown: "Markdown (.md)";
|
|
53
|
+
readonly html: "Halaman web (.html)";
|
|
54
|
+
readonly htmlZip: "Halaman web (.html, ter-zip)";
|
|
55
|
+
readonly text: "Teks biasa (.txt)";
|
|
56
|
+
readonly docx: "Microsoft Word (.docx)";
|
|
57
|
+
readonly pdf: "Dokumen PDF (.pdf)";
|
|
58
|
+
readonly odt: "OpenDocument Format (.odt)";
|
|
59
|
+
readonly rtf: "Rich Text Format (.rtf)";
|
|
60
|
+
readonly undo: "Urungkan";
|
|
61
|
+
readonly redo: "Ulangi";
|
|
62
|
+
readonly selectAll: "Pilih semua";
|
|
63
|
+
readonly showSidebar: "Tampilkan sidebar";
|
|
64
|
+
readonly focusMode: "Mode Fokus Penuh";
|
|
65
|
+
readonly showRuler: "Tampilkan penggaris";
|
|
66
|
+
readonly meetingNotes: "Catatan Rapat";
|
|
67
|
+
readonly image: "Gambar";
|
|
68
|
+
readonly table: "Tabel";
|
|
69
|
+
readonly codeBlock: "Kode Blok";
|
|
70
|
+
readonly header: "Header";
|
|
71
|
+
readonly footer: "Footer";
|
|
72
|
+
readonly footnote: "Catatan Kaki";
|
|
73
|
+
readonly bold: "Teks Tebal";
|
|
74
|
+
readonly italic: "Teks Miring";
|
|
75
|
+
readonly underline: "Garis Bawah";
|
|
76
|
+
readonly heading1: "Judul 1";
|
|
77
|
+
readonly heading2: "Judul 2";
|
|
78
|
+
readonly heading3: "Judul 3";
|
|
79
|
+
readonly spellCheck: "Periksa ejaan";
|
|
80
|
+
readonly wordCount: "Hitungan kata";
|
|
81
|
+
readonly preferences: "Preferensi";
|
|
82
|
+
readonly manageExtensions: "Kelola ekstensi…";
|
|
83
|
+
readonly keyboardShortcuts: "Pintasan keyboard";
|
|
84
|
+
readonly reportIssue: "Laporkan masalah";
|
|
85
|
+
readonly about: "Tentang DocsEditor";
|
|
86
|
+
};
|
|
87
|
+
readonly toolbar: {
|
|
88
|
+
readonly undo: "Urungkan";
|
|
89
|
+
readonly redo: "Ulangi";
|
|
90
|
+
readonly print: "Cetak";
|
|
91
|
+
readonly spelling: "Ejaan";
|
|
92
|
+
readonly zoom: "100%";
|
|
93
|
+
readonly paragraphStyle: "Gaya paragraf";
|
|
94
|
+
readonly normalText: "Teks normal";
|
|
95
|
+
readonly fontFamily: "Keluarga font";
|
|
96
|
+
readonly decreaseFontSize: "Kecilkan font";
|
|
97
|
+
readonly increaseFontSize: "Perbesar font";
|
|
98
|
+
readonly lists: "Daftar";
|
|
99
|
+
readonly alignment: "Perataan";
|
|
100
|
+
readonly insert: "Sisipkan";
|
|
101
|
+
readonly comments: "Komentar";
|
|
102
|
+
readonly history: "Riwayat";
|
|
103
|
+
readonly ai: "AI";
|
|
104
|
+
readonly tableOfContents: "Daftar isi";
|
|
105
|
+
};
|
|
106
|
+
readonly statusBar: {
|
|
107
|
+
readonly liveSyncActive: "Sinkron Langsung Aktif";
|
|
108
|
+
readonly connecting: "Menghubungkan…";
|
|
109
|
+
readonly saving: "Menyimpan perubahan…";
|
|
110
|
+
readonly offline: "Luring";
|
|
111
|
+
readonly lastSavedAt: "Terakhir disimpan";
|
|
112
|
+
readonly never: "Tidak pernah";
|
|
113
|
+
readonly pageSize: "Ukuran halaman";
|
|
114
|
+
readonly page: "Halaman";
|
|
115
|
+
readonly of: "dari";
|
|
116
|
+
readonly words: "kata";
|
|
117
|
+
readonly characters: "karakter";
|
|
118
|
+
};
|
|
119
|
+
readonly editor: {
|
|
120
|
+
readonly share: {
|
|
121
|
+
readonly title: "Bagikan dokumen";
|
|
122
|
+
readonly close: "Tutup";
|
|
123
|
+
readonly shareableLink: "Tautan dapat dibagikan";
|
|
124
|
+
readonly copy: "Salin";
|
|
125
|
+
readonly copied: "Tautan disalin ke papan klip";
|
|
126
|
+
readonly couldNotCopy: "Tidak dapat menyalin tautan";
|
|
127
|
+
readonly collaborators: "Kolaborator";
|
|
128
|
+
readonly addCollaborator: "Tambahkan kolaborator lewat email";
|
|
129
|
+
readonly placeholder: "rekan@contoh.com";
|
|
130
|
+
readonly add: "Tambah";
|
|
131
|
+
readonly userNotFound: "Pengguna tidak ditemukan";
|
|
132
|
+
readonly failedToAdd: "Gagal menambahkan kolaborator";
|
|
133
|
+
};
|
|
134
|
+
readonly print: "Cetak";
|
|
135
|
+
readonly logOut: "Keluar";
|
|
136
|
+
readonly rename: {
|
|
137
|
+
readonly title: "Ubah nama dokumen";
|
|
138
|
+
readonly label: "Judul dokumen";
|
|
139
|
+
readonly save: "Simpan";
|
|
140
|
+
readonly cancel: "Batal";
|
|
141
|
+
};
|
|
142
|
+
readonly pageSetup: {
|
|
143
|
+
readonly title: "Penataan halaman";
|
|
144
|
+
readonly paperSize: "Ukuran kertas";
|
|
145
|
+
readonly orientation: "Orientasi";
|
|
146
|
+
readonly portrait: "Potret";
|
|
147
|
+
readonly landscape: "Lanskap";
|
|
148
|
+
readonly margins: "Margin";
|
|
149
|
+
readonly top: "Atas";
|
|
150
|
+
readonly bottom: "Bawah";
|
|
151
|
+
readonly left: "Kiri";
|
|
152
|
+
readonly right: "Kanan";
|
|
153
|
+
readonly apply: "Terapkan";
|
|
154
|
+
readonly cancel: "Batal";
|
|
155
|
+
};
|
|
156
|
+
readonly headerFooter: {
|
|
157
|
+
readonly title: "Penyesuaian Header & Footer";
|
|
158
|
+
readonly header: "Header";
|
|
159
|
+
readonly footer: "Footer";
|
|
160
|
+
readonly left: "Kiri";
|
|
161
|
+
readonly right: "Kanan";
|
|
162
|
+
readonly clear: "Kosongkan";
|
|
163
|
+
readonly headerLeftPlaceholder: "mis. Judul Dokumen";
|
|
164
|
+
readonly headerRightPlaceholder: "mis. Halaman {page}";
|
|
165
|
+
readonly footerLeftPlaceholder: "mis. Rahasia";
|
|
166
|
+
readonly footerRightPlaceholder: "mis. Halaman {page} dari {total}";
|
|
167
|
+
readonly variableInfo: "Info Variabel: Anda dapat menggunakan {page} untuk nomor halaman aktif, dan {total} untuk jumlah halaman.";
|
|
168
|
+
readonly cancel: "Batal";
|
|
169
|
+
readonly save: "Simpan";
|
|
170
|
+
};
|
|
171
|
+
readonly showOutline: "Tampilkan kerangka dokumen";
|
|
172
|
+
readonly loadingDocument: "Memuat dokumen";
|
|
173
|
+
};
|
|
174
|
+
readonly slashMenu: {
|
|
175
|
+
readonly title: "Saran";
|
|
176
|
+
readonly basicBlocks: "Blok Dasar";
|
|
177
|
+
readonly noMatch: "Tidak ada perintah yang cocok";
|
|
178
|
+
};
|
|
179
|
+
readonly quickActions: {
|
|
180
|
+
readonly meetingNotes: "Catatan Rapat";
|
|
181
|
+
readonly emailDraft: "Draf Email";
|
|
182
|
+
readonly more: "Lainnya";
|
|
183
|
+
};
|
|
184
|
+
readonly documentTabs: {
|
|
185
|
+
readonly documentTabs: "Tab Dokumen";
|
|
186
|
+
readonly addTab: "Tambah tab";
|
|
187
|
+
readonly rename: "Ubah nama";
|
|
188
|
+
readonly delete: "Hapus";
|
|
189
|
+
readonly outline: "Kerangka";
|
|
190
|
+
readonly untitledHeading: "Judul Tanpa Nama {level}";
|
|
191
|
+
readonly placeholder: "Tajuk yang Anda tambahkan ke dokumen akan muncul di sini.";
|
|
192
|
+
};
|
|
193
|
+
readonly theme: {
|
|
194
|
+
readonly lightMode: "Beralih ke mode terang";
|
|
195
|
+
readonly darkMode: "Beralih ke mode gelap";
|
|
196
|
+
};
|
|
197
|
+
readonly sidebars: {
|
|
198
|
+
readonly ai: {
|
|
199
|
+
readonly title: "AI Writing Helper";
|
|
200
|
+
readonly description: "Penulis AI sisi-server untuk menyusun, merangkum, atau menyunting tulisan Anda.";
|
|
201
|
+
readonly quickMacros: "Makro AI Cepat";
|
|
202
|
+
readonly summarize: "Rangkum";
|
|
203
|
+
readonly fixGrammar: "Perbaiki Tata Bahasa";
|
|
204
|
+
readonly continue: "Lanjutkan";
|
|
205
|
+
readonly toSpanish: "Ke Spanyol";
|
|
206
|
+
readonly generations: "Hasil AI";
|
|
207
|
+
readonly aiDrafting: "AI menyusun…";
|
|
208
|
+
readonly copy: "Salin";
|
|
209
|
+
readonly copied: "Tersalin";
|
|
210
|
+
readonly insert: "Sisipkan";
|
|
211
|
+
readonly inserted: "Tersisip";
|
|
212
|
+
readonly noDraft: "Belum ada draf. Kirim perintah atau makro di atas untuk mulai.";
|
|
213
|
+
readonly promptPlaceholder: "Minta AI membuat kerangka, menulis konten, menulis ulang nada…";
|
|
214
|
+
readonly promptAI: "Perintah AI";
|
|
215
|
+
};
|
|
216
|
+
readonly comments: {
|
|
217
|
+
readonly title: "Panel Diskusi";
|
|
218
|
+
readonly placeholder: "Pilih teks untuk menambahkan komentar…";
|
|
219
|
+
readonly addComment: "Tambah komentar";
|
|
220
|
+
readonly resolve: "Selesai";
|
|
221
|
+
readonly reply: "Balas…";
|
|
222
|
+
readonly replyInThread: "Balas di thread";
|
|
223
|
+
readonly active: "Aktif";
|
|
224
|
+
readonly resolved: "Selesai";
|
|
225
|
+
readonly creatingAnchored: "Membuat komentar terpaut:";
|
|
226
|
+
readonly quote: "Kutipan:";
|
|
227
|
+
readonly resolvedBy: "Diselesaikan oleh {user}";
|
|
228
|
+
readonly noComments: "Belum ada komentar {mode}.";
|
|
229
|
+
readonly commentOnSelection: "Komentari pilihan…";
|
|
230
|
+
readonly generalComment: "Tambahkan komentar umum ke dokumen…";
|
|
231
|
+
readonly anchoredComment: "Komentar terpaut";
|
|
232
|
+
readonly general: "Komentar umum";
|
|
233
|
+
readonly post: "Kirim";
|
|
234
|
+
};
|
|
235
|
+
readonly history: {
|
|
236
|
+
readonly title: "Riwayat";
|
|
237
|
+
readonly empty: "Belum ada riwayat.";
|
|
238
|
+
readonly version: "Versi";
|
|
239
|
+
readonly restore: "Pulihkan";
|
|
240
|
+
readonly closePreview: "Tutup Pratinjau";
|
|
241
|
+
readonly restoreThis: "Pulihkan Ini";
|
|
242
|
+
readonly viewingPreview: "Melihat Pratinjau Revisi";
|
|
243
|
+
readonly readOnlyPreview: "Anda sedang melihat pratinjau versi #{index}. Editor Anda untuk sementara hanya-baca.";
|
|
244
|
+
readonly modifiedBy: "Diubah oleh:";
|
|
245
|
+
readonly saveNamedSnapshot: "Simpan Snapshot Bernama";
|
|
246
|
+
readonly snapshotPlaceholder: "mis. Final Draft Disetujui…";
|
|
247
|
+
readonly noSnapshots: "Belum ada snapshot yang disimpan.";
|
|
248
|
+
readonly save: "Simpan";
|
|
249
|
+
readonly cancel: "Batal";
|
|
250
|
+
readonly preview: "Pratinjau";
|
|
251
|
+
};
|
|
252
|
+
readonly toc: {
|
|
253
|
+
readonly title: "Daftar Isi";
|
|
254
|
+
readonly empty: "Belum ada judul.";
|
|
255
|
+
readonly untitledHeading: "Judul Tanpa Nama {level}";
|
|
256
|
+
readonly newSection: "Bagian {tag} Baru";
|
|
257
|
+
readonly startWriting: "Mulai menulis di sini…";
|
|
258
|
+
readonly closeOutline: "Tutup kerangka";
|
|
259
|
+
readonly searchHeadings: "Cari judul…";
|
|
260
|
+
readonly noHeadings: "Belum Ada Judul";
|
|
261
|
+
readonly noHeadingsDescription: "Gunakan header (H1, H2, atau H3) untuk menyusun dokumen. Kerangka interaktif akan dibuat otomatis di sini.";
|
|
262
|
+
readonly quickInsert: "Sisipkan Cepat";
|
|
263
|
+
readonly headingLevel: "Judul {level}";
|
|
264
|
+
readonly noMatchingHeaders: "Tidak ada header yang cocok";
|
|
265
|
+
readonly tryDifferentTerm: "Coba cari dengan istilah lain.";
|
|
266
|
+
readonly outlineLayout: "Tata Letak Kerangka";
|
|
267
|
+
readonly outlineSync: "Kerangka tersinkronisasi otomatis. Klik header apa pun untuk langsung melompat, fokus, dan menggulir editor ke bagian tersebut.";
|
|
268
|
+
};
|
|
269
|
+
};
|
|
270
|
+
readonly dashboard: {
|
|
271
|
+
readonly allDocuments: "Semua Dokumen";
|
|
272
|
+
readonly starred: "Berbintang";
|
|
273
|
+
readonly folders: "Folder";
|
|
274
|
+
readonly createFolder: "Buat Folder Baru";
|
|
275
|
+
readonly folderNamePlaceholder: "Nama folder…";
|
|
276
|
+
readonly noFolders: "Belum ada folder.";
|
|
277
|
+
readonly startNewDocument: "Mulai Dokumen Baru";
|
|
278
|
+
readonly blankDocument: "Dokumen Kosong";
|
|
279
|
+
readonly blankDescription: "Kertas kosong";
|
|
280
|
+
readonly meetingNotes: "Catatan Rapat";
|
|
281
|
+
readonly meetingNotesDescription: "Peserta & Tindak Lanjut";
|
|
282
|
+
readonly projectProposal: "Proposal Proyek";
|
|
283
|
+
readonly projectProposalDescription: "Tujuan & Hasil";
|
|
284
|
+
readonly officialLetter: "Surat Resmi";
|
|
285
|
+
readonly officialLetterDescription: "Header yang sudah diformat";
|
|
286
|
+
readonly searchPlaceholder: "Cari judul atau isi dokumen…";
|
|
287
|
+
readonly modified: "Diubah";
|
|
288
|
+
readonly alphabetical: "Abjad";
|
|
289
|
+
readonly created: "Dibuat";
|
|
290
|
+
readonly gridView: "Tampilan Grid";
|
|
291
|
+
readonly listView: "Tampilan Daftar";
|
|
292
|
+
readonly activeFilters: "Filter Aktif:";
|
|
293
|
+
readonly folder: "Folder";
|
|
294
|
+
readonly starredOnly: "Hanya Berbintang";
|
|
295
|
+
readonly search: "Cari";
|
|
296
|
+
readonly noDocuments: "Tidak ada dokumen";
|
|
297
|
+
readonly noDocumentsDescription: "Tidak ada file yang cocok dengan filter. Pilih template atau buat dokumen kosong untuk mulai menulis!";
|
|
298
|
+
readonly createBlankDocument: "Buat Dokumen Kosong";
|
|
299
|
+
readonly loadingDocuments: "Memuat dokumen...";
|
|
300
|
+
readonly documentTitle: "Judul Dokumen";
|
|
301
|
+
readonly lastModified: "Terakhir Diubah";
|
|
302
|
+
readonly actions: "Aksi";
|
|
303
|
+
};
|
|
304
|
+
readonly auth: {
|
|
305
|
+
readonly signInTitle: "Masuk untuk membuat dan menyunting dokumen";
|
|
306
|
+
readonly signInWithGoogle: "Masuk dengan Google";
|
|
307
|
+
readonly signInWithEmail: "Masuk dengan Email";
|
|
308
|
+
readonly signInWithGitHub: "Masuk dengan GitHub";
|
|
309
|
+
readonly signInWith: "Masuk dengan {provider}";
|
|
310
|
+
readonly or: "atau";
|
|
311
|
+
readonly email: "Email";
|
|
312
|
+
readonly password: "Kata sandi";
|
|
313
|
+
readonly name: "Nama";
|
|
314
|
+
readonly signIn: "Masuk";
|
|
315
|
+
readonly signUp: "Daftar";
|
|
316
|
+
readonly signOut: "Keluar";
|
|
317
|
+
readonly noAccount: "Belum punya akun? Daftar";
|
|
318
|
+
readonly hasAccount: "Sudah punya akun? Masuk";
|
|
319
|
+
readonly invalidCredentials: "Email atau kata sandi salah";
|
|
320
|
+
readonly accountCreated: "Akun dibuat! Anda sekarang masuk.";
|
|
321
|
+
readonly loadDocumentsError: "Gagal memuat dokumen. Apakah server berjalan?";
|
|
322
|
+
readonly retry: "Coba lagi";
|
|
323
|
+
readonly rateLimited: "Server sedang membatasi permintaan.";
|
|
324
|
+
readonly retryIn: "Mencoba ulang dalam {seconds} detik…";
|
|
325
|
+
readonly networkError: "Tidak bisa menghubungi server. Periksa koneksi Anda.";
|
|
326
|
+
readonly noProviders: "Tidak ada penyedia autentikasi yang dikonfigurasi. Periksa variabel lingkungan server.";
|
|
327
|
+
};
|
|
328
|
+
readonly language: {
|
|
329
|
+
readonly label: "Bahasa";
|
|
330
|
+
readonly en: "English";
|
|
331
|
+
readonly id: "Indonesia";
|
|
332
|
+
};
|
|
333
|
+
};
|
|
334
|
+
export default _default;
|
|
335
|
+
//# sourceMappingURL=id.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"id.d.ts","sourceRoot":"","sources":["../../src/locales/id.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA4UU"}
|