aimeat 1.6.1 → 1.7.0
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/locales/en.json +212 -6
- package/dist/locales/fi.json +212 -6
- package/dist/public/css/views/agents-detail.css +563 -0
- package/dist/public/css/views/foundry.css +1 -0
- package/dist/public/css/views/marketplace.css +1 -0
- package/dist/public/css/views/profile.css +2 -0
- package/dist/public/js/services/admin.js +13 -0
- package/dist/public/js/services/agent-activity.js +20 -0
- package/dist/public/js/services/agent-capabilities.js +15 -0
- package/dist/public/js/services/agent-directives.js +28 -0
- package/dist/public/js/services/agent-messages.js +34 -0
- package/dist/public/js/services/agent-services.js +17 -0
- package/dist/public/js/services/agent-tasks.js +46 -0
- package/dist/public/js/services/memory.js +6 -3
- package/dist/public/js/services/sharing-groups.js +51 -0
- package/dist/public/spa.html +21 -2
- package/dist/public/views/admin/agent-tasks-tab.js +156 -0
- package/dist/public/views/admin/federation-tab.js +2 -2
- package/dist/public/views/admin/memory-tab.js +1 -0
- package/dist/public/views/admin/overview-tab.js +25 -0
- package/dist/public/views/admin/sharing-groups-tab.js +86 -0
- package/dist/public/views/admin.js +4 -0
- package/dist/public/views/profile/access-tab.js +510 -5
- package/dist/public/views/profile/agents-activity-subtab.js +242 -0
- package/dist/public/views/profile/agents-capabilities-subtab.js +165 -0
- package/dist/public/views/profile/agents-directives-subtab.js +292 -0
- package/dist/public/views/profile/agents-messages-subtab.js +222 -0
- package/dist/public/views/profile/agents-services-subtab.js +111 -0
- package/dist/public/views/profile/agents-tab.js +94 -47
- package/dist/public/views/profile/agents-tasks-subtab.js +254 -0
- package/dist/public/views/profile/knowledge-tab.js +5 -5
- package/dist/public/views/profile/memory-tab.js +90 -25
- package/dist/src/config.d.ts +5 -0
- package/dist/src/config.d.ts.map +1 -1
- package/dist/src/config.js +9 -2
- package/dist/src/config.js.map +1 -1
- package/dist/src/mcp/agent-capabilities.d.ts +18 -0
- package/dist/src/mcp/agent-capabilities.d.ts.map +1 -0
- package/dist/src/mcp/agent-capabilities.js +85 -0
- package/dist/src/mcp/agent-capabilities.js.map +1 -0
- package/dist/src/mcp/agent-messages.d.ts +15 -0
- package/dist/src/mcp/agent-messages.d.ts.map +1 -0
- package/dist/src/mcp/agent-messages.js +81 -0
- package/dist/src/mcp/agent-messages.js.map +1 -0
- package/dist/src/mcp/agent-tasks.d.ts +16 -0
- package/dist/src/mcp/agent-tasks.d.ts.map +1 -0
- package/dist/src/mcp/agent-tasks.js +350 -0
- package/dist/src/mcp/agent-tasks.js.map +1 -0
- package/dist/src/mcp/core.d.ts.map +1 -1
- package/dist/src/mcp/core.js +8 -4
- package/dist/src/mcp/core.js.map +1 -1
- package/dist/src/mcp/index.d.ts.map +1 -1
- package/dist/src/mcp/index.js +8 -0
- package/dist/src/mcp/index.js.map +1 -1
- package/dist/src/mcp/memory-extended.js +1 -1
- package/dist/src/mcp/memory-extended.js.map +1 -1
- package/dist/src/mcp/sharing-groups.d.ts +16 -0
- package/dist/src/mcp/sharing-groups.d.ts.map +1 -0
- package/dist/src/mcp/sharing-groups.js +240 -0
- package/dist/src/mcp/sharing-groups.js.map +1 -0
- package/dist/src/models/agent-capabilities-schemas.d.ts +20 -0
- package/dist/src/models/agent-capabilities-schemas.d.ts.map +1 -0
- package/dist/src/models/agent-capabilities-schemas.js +16 -0
- package/dist/src/models/agent-capabilities-schemas.js.map +1 -0
- package/dist/src/models/agent-directives-schemas.d.ts +44 -0
- package/dist/src/models/agent-directives-schemas.d.ts.map +1 -0
- package/dist/src/models/agent-directives-schemas.js +41 -0
- package/dist/src/models/agent-directives-schemas.js.map +1 -0
- package/dist/src/models/agent-message-schemas.d.ts +32 -0
- package/dist/src/models/agent-message-schemas.d.ts.map +1 -0
- package/dist/src/models/agent-message-schemas.js +25 -0
- package/dist/src/models/agent-message-schemas.js.map +1 -0
- package/dist/src/models/agent-task-schemas.d.ts +133 -0
- package/dist/src/models/agent-task-schemas.d.ts.map +1 -0
- package/dist/src/models/agent-task-schemas.js +84 -0
- package/dist/src/models/agent-task-schemas.js.map +1 -0
- package/dist/src/models/schemas.d.ts +5 -0
- package/dist/src/models/schemas.d.ts.map +1 -1
- package/dist/src/models/schemas.js +5 -3
- package/dist/src/models/schemas.js.map +1 -1
- package/dist/src/models/sharing-group-schemas.d.ts +52 -0
- package/dist/src/models/sharing-group-schemas.d.ts.map +1 -0
- package/dist/src/models/sharing-group-schemas.js +46 -0
- package/dist/src/models/sharing-group-schemas.js.map +1 -0
- package/dist/src/routes/admin-agent-tasks.d.ts +12 -0
- package/dist/src/routes/admin-agent-tasks.d.ts.map +1 -0
- package/dist/src/routes/admin-agent-tasks.js +62 -0
- package/dist/src/routes/admin-agent-tasks.js.map +1 -0
- package/dist/src/routes/admin-monitoring.d.ts +2 -1
- package/dist/src/routes/admin-monitoring.d.ts.map +1 -1
- package/dist/src/routes/admin-monitoring.js +75 -2
- package/dist/src/routes/admin-monitoring.js.map +1 -1
- package/dist/src/routes/admin-sharing-groups.d.ts +12 -0
- package/dist/src/routes/admin-sharing-groups.d.ts.map +1 -0
- package/dist/src/routes/admin-sharing-groups.js +37 -0
- package/dist/src/routes/admin-sharing-groups.js.map +1 -0
- package/dist/src/routes/admin.d.ts +1 -1
- package/dist/src/routes/admin.d.ts.map +1 -1
- package/dist/src/routes/admin.js +2 -2
- package/dist/src/routes/admin.js.map +1 -1
- package/dist/src/routes/agent-activity.d.ts +17 -0
- package/dist/src/routes/agent-activity.d.ts.map +1 -0
- package/dist/src/routes/agent-activity.js +130 -0
- package/dist/src/routes/agent-activity.js.map +1 -0
- package/dist/src/routes/agent-capabilities.d.ts +17 -0
- package/dist/src/routes/agent-capabilities.d.ts.map +1 -0
- package/dist/src/routes/agent-capabilities.js +106 -0
- package/dist/src/routes/agent-capabilities.js.map +1 -0
- package/dist/src/routes/agent-directives.d.ts +17 -0
- package/dist/src/routes/agent-directives.d.ts.map +1 -0
- package/dist/src/routes/agent-directives.js +206 -0
- package/dist/src/routes/agent-directives.js.map +1 -0
- package/dist/src/routes/agent-integration.d.ts +17 -0
- package/dist/src/routes/agent-integration.d.ts.map +1 -0
- package/dist/src/routes/agent-integration.js +169 -0
- package/dist/src/routes/agent-integration.js.map +1 -0
- package/dist/src/routes/agent-messages.d.ts +17 -0
- package/dist/src/routes/agent-messages.d.ts.map +1 -0
- package/dist/src/routes/agent-messages.js +168 -0
- package/dist/src/routes/agent-messages.js.map +1 -0
- package/dist/src/routes/agent-tasks.d.ts +24 -0
- package/dist/src/routes/agent-tasks.d.ts.map +1 -0
- package/dist/src/routes/agent-tasks.js +425 -0
- package/dist/src/routes/agent-tasks.js.map +1 -0
- package/dist/src/routes/capabilities.js +4 -4
- package/dist/src/routes/capabilities.js.map +1 -1
- package/dist/src/routes/cortex.d.ts.map +1 -1
- package/dist/src/routes/cortex.js +1 -2
- package/dist/src/routes/cortex.js.map +1 -1
- package/dist/src/routes/extensions.d.ts.map +1 -1
- package/dist/src/routes/extensions.js +1 -2
- package/dist/src/routes/extensions.js.map +1 -1
- package/dist/src/routes/generator.d.ts.map +1 -1
- package/dist/src/routes/generator.js +33 -5
- package/dist/src/routes/generator.js.map +1 -1
- package/dist/src/routes/knowledge.d.ts.map +1 -1
- package/dist/src/routes/knowledge.js +4 -3
- package/dist/src/routes/knowledge.js.map +1 -1
- package/dist/src/routes/memory.d.ts.map +1 -1
- package/dist/src/routes/memory.js +8 -4
- package/dist/src/routes/memory.js.map +1 -1
- package/dist/src/routes/permissions.js +1 -1
- package/dist/src/routes/permissions.js.map +1 -1
- package/dist/src/routes/prompts.d.ts +9 -0
- package/dist/src/routes/prompts.d.ts.map +1 -1
- package/dist/src/routes/prompts.js +57 -1
- package/dist/src/routes/prompts.js.map +1 -1
- package/dist/src/routes/sharing-groups.d.ts +20 -0
- package/dist/src/routes/sharing-groups.d.ts.map +1 -0
- package/dist/src/routes/sharing-groups.js +297 -0
- package/dist/src/routes/sharing-groups.js.map +1 -0
- package/dist/src/routes/stats.d.ts +1 -0
- package/dist/src/routes/stats.d.ts.map +1 -1
- package/dist/src/routes/stats.js +26 -1
- package/dist/src/routes/stats.js.map +1 -1
- package/dist/src/routes/storage-files.d.ts.map +1 -1
- package/dist/src/routes/storage-files.js +4 -1
- package/dist/src/routes/storage-files.js.map +1 -1
- package/dist/src/routes/work.d.ts.map +1 -1
- package/dist/src/routes/work.js +3 -0
- package/dist/src/routes/work.js.map +1 -1
- package/dist/src/schemas/knowledge-package.js +1 -1
- package/dist/src/schemas/knowledge-package.js.map +1 -1
- package/dist/src/server-bootstrap/routes-loader.d.ts.map +1 -1
- package/dist/src/server-bootstrap/routes-loader.js +21 -1
- package/dist/src/server-bootstrap/routes-loader.js.map +1 -1
- package/dist/src/services/activity-recorder.d.ts +16 -0
- package/dist/src/services/activity-recorder.d.ts.map +1 -0
- package/dist/src/services/activity-recorder.js +59 -0
- package/dist/src/services/activity-recorder.js.map +1 -0
- package/dist/src/services/config-schema.d.ts.map +1 -1
- package/dist/src/services/config-schema.js +5 -0
- package/dist/src/services/config-schema.js.map +1 -1
- package/dist/src/services/consent.d.ts +1 -1
- package/dist/src/services/consent.d.ts.map +1 -1
- package/dist/src/services/consent.js +28 -1
- package/dist/src/services/consent.js.map +1 -1
- package/dist/src/services/core-jobs.d.ts.map +1 -1
- package/dist/src/services/core-jobs.js +5 -0
- package/dist/src/services/core-jobs.js.map +1 -1
- package/dist/src/services/job-seeding.d.ts.map +1 -1
- package/dist/src/services/job-seeding.js +2 -0
- package/dist/src/services/job-seeding.js.map +1 -1
- package/dist/src/services/stats.d.ts +1 -0
- package/dist/src/services/stats.d.ts.map +1 -1
- package/dist/src/services/stats.js +2 -1
- package/dist/src/services/stats.js.map +1 -1
- package/dist/src/services/task-stall-detector.d.ts +10 -0
- package/dist/src/services/task-stall-detector.d.ts.map +1 -0
- package/dist/src/services/task-stall-detector.js +38 -0
- package/dist/src/services/task-stall-detector.js.map +1 -0
- package/dist/src/services/work-task-bridge.d.ts +10 -0
- package/dist/src/services/work-task-bridge.d.ts.map +1 -0
- package/dist/src/services/work-task-bridge.js +53 -0
- package/dist/src/services/work-task-bridge.js.map +1 -0
- package/dist/src/storage/interface.d.ts +170 -5
- package/dist/src/storage/interface.d.ts.map +1 -1
- package/dist/src/storage/providers/mongodb/index.d.ts +95 -2
- package/dist/src/storage/providers/mongodb/index.d.ts.map +1 -1
- package/dist/src/storage/providers/mongodb/index.js +657 -6
- package/dist/src/storage/providers/mongodb/index.js.map +1 -1
- package/dist/src/storage/providers/sqlite/index.d.ts +73 -1
- package/dist/src/storage/providers/sqlite/index.d.ts.map +1 -1
- package/dist/src/storage/providers/sqlite/index.js +131 -3
- package/dist/src/storage/providers/sqlite/index.js.map +1 -1
- package/dist/src/storage/providers/sqlite/repos/agent-activity.d.ts +14 -0
- package/dist/src/storage/providers/sqlite/repos/agent-activity.d.ts.map +1 -0
- package/dist/src/storage/providers/sqlite/repos/agent-activity.js +44 -0
- package/dist/src/storage/providers/sqlite/repos/agent-activity.js.map +1 -0
- package/dist/src/storage/providers/sqlite/repos/agent-directives.d.ts +14 -0
- package/dist/src/storage/providers/sqlite/repos/agent-directives.d.ts.map +1 -0
- package/dist/src/storage/providers/sqlite/repos/agent-directives.js +65 -0
- package/dist/src/storage/providers/sqlite/repos/agent-directives.js.map +1 -0
- package/dist/src/storage/providers/sqlite/repos/agent-message.d.ts +28 -0
- package/dist/src/storage/providers/sqlite/repos/agent-message.d.ts.map +1 -0
- package/dist/src/storage/providers/sqlite/repos/agent-message.js +93 -0
- package/dist/src/storage/providers/sqlite/repos/agent-message.js.map +1 -0
- package/dist/src/storage/providers/sqlite/repos/agent-task.d.ts +45 -0
- package/dist/src/storage/providers/sqlite/repos/agent-task.d.ts.map +1 -0
- package/dist/src/storage/providers/sqlite/repos/agent-task.js +155 -0
- package/dist/src/storage/providers/sqlite/repos/agent-task.js.map +1 -0
- package/dist/src/storage/providers/sqlite/repos/sharing-group.d.ts +16 -0
- package/dist/src/storage/providers/sqlite/repos/sharing-group.d.ts.map +1 -0
- package/dist/src/storage/providers/sqlite/repos/sharing-group.js +68 -0
- package/dist/src/storage/providers/sqlite/repos/sharing-group.js.map +1 -0
- package/dist/src/storage/providers/sqlite/schema.d.ts.map +1 -1
- package/dist/src/storage/providers/sqlite/schema.js +102 -0
- package/dist/src/storage/providers/sqlite/schema.js.map +1 -1
- package/dist/src/storage/repositories/agent-activity.repository.d.ts +15 -0
- package/dist/src/storage/repositories/agent-activity.repository.d.ts.map +1 -0
- package/dist/src/storage/repositories/agent-activity.repository.js +8 -0
- package/dist/src/storage/repositories/agent-activity.repository.js.map +1 -0
- package/dist/src/storage/repositories/agent-directives.repository.d.ts +15 -0
- package/dist/src/storage/repositories/agent-directives.repository.d.ts.map +1 -0
- package/dist/src/storage/repositories/agent-directives.repository.js +8 -0
- package/dist/src/storage/repositories/agent-directives.repository.js.map +1 -0
- package/dist/src/storage/repositories/agent-message.repository.d.ts +29 -0
- package/dist/src/storage/repositories/agent-message.repository.d.ts.map +1 -0
- package/dist/src/storage/repositories/agent-message.repository.js +8 -0
- package/dist/src/storage/repositories/agent-message.repository.js.map +1 -0
- package/dist/src/storage/repositories/agent-task.repository.d.ts +46 -0
- package/dist/src/storage/repositories/agent-task.repository.d.ts.map +1 -0
- package/dist/src/storage/repositories/agent-task.repository.js +8 -0
- package/dist/src/storage/repositories/agent-task.repository.js.map +1 -0
- package/dist/src/storage/repositories/index.d.ts +5 -0
- package/dist/src/storage/repositories/index.d.ts.map +1 -1
- package/dist/src/storage/repositories/sharing-group.repository.d.ts +17 -0
- package/dist/src/storage/repositories/sharing-group.repository.d.ts.map +1 -0
- package/dist/src/storage/repositories/sharing-group.repository.js +8 -0
- package/dist/src/storage/repositories/sharing-group.repository.js.map +1 -0
- package/package.json +1 -1
- package/prisma/schema.prisma +102 -0
package/dist/locales/en.json
CHANGED
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"profile": "Profile",
|
|
17
17
|
"logout": "Log Out",
|
|
18
18
|
"loggedInAs": "logged in as",
|
|
19
|
-
"help": "Help"
|
|
19
|
+
"help": "Help",
|
|
20
|
+
"admin": "Admin"
|
|
20
21
|
},
|
|
21
22
|
"hero": {
|
|
22
23
|
"title": "Your data is yours. Your AI works for you.",
|
|
@@ -256,6 +257,8 @@
|
|
|
256
257
|
"connect": "Connect an Automation Agent",
|
|
257
258
|
"connectDesc": "If you have OpenClaw or any other AI automation agent, give it this prompt to register an agent under your account:",
|
|
258
259
|
"copyPrompt": "Copy Prompt",
|
|
260
|
+
"downloadInstructions": "Download Instructions",
|
|
261
|
+
"copyFullInstructions": "Copy Full Instructions",
|
|
259
262
|
"copied": "Copied!",
|
|
260
263
|
"copyGaii": "Copy GAII",
|
|
261
264
|
"noAgent": "Don’t have an automation agent yet?",
|
|
@@ -352,6 +355,96 @@
|
|
|
352
355
|
"credentials_warning": "Store the private key securely — it cannot be retrieved again.",
|
|
353
356
|
"polling_note": "If your agent is polling automatically, it will receive these credentials within a few seconds.",
|
|
354
357
|
"token_expiry_note": "The token expires in 24 hours. Your agent uses the private key to obtain a new token automatically."
|
|
358
|
+
},
|
|
359
|
+
"subtabs": {
|
|
360
|
+
"tasks": "Tasks",
|
|
361
|
+
"directives": "Directives",
|
|
362
|
+
"capabilities": "Capabilities",
|
|
363
|
+
"activity": "Activity",
|
|
364
|
+
"services": "Services",
|
|
365
|
+
"messages": "Messages"
|
|
366
|
+
},
|
|
367
|
+
"tasks": {
|
|
368
|
+
"title": "Task Queue",
|
|
369
|
+
"empty": "No tasks yet",
|
|
370
|
+
"newTask": "New Task",
|
|
371
|
+
"createTask": "Create Task",
|
|
372
|
+
"cancel": "Cancel",
|
|
373
|
+
"titleLabel": "Title",
|
|
374
|
+
"descLabel": "Description",
|
|
375
|
+
"statusLabel": "Status",
|
|
376
|
+
"draft": "Draft",
|
|
377
|
+
"queued": "Queued",
|
|
378
|
+
"active": "Active",
|
|
379
|
+
"done": "Done",
|
|
380
|
+
"failed": "Failed",
|
|
381
|
+
"stalled": "Stalled",
|
|
382
|
+
"events": "Events",
|
|
383
|
+
"noEvents": "No events",
|
|
384
|
+
"todoProgress": "TODO Progress",
|
|
385
|
+
"created": "Created",
|
|
386
|
+
"lastEvent": "Last Event",
|
|
387
|
+
"delete": "Delete",
|
|
388
|
+
"deleteConfirm": "Delete this task?"
|
|
389
|
+
},
|
|
390
|
+
"directives": {
|
|
391
|
+
"title": "Directives",
|
|
392
|
+
"purpose": "Purpose",
|
|
393
|
+
"rules": "Rules",
|
|
394
|
+
"memoryAreas": "Memory Areas",
|
|
395
|
+
"resources": "Resources",
|
|
396
|
+
"edit": "Edit",
|
|
397
|
+
"save": "Save",
|
|
398
|
+
"cancel": "Cancel",
|
|
399
|
+
"reset": "Reset to Defaults",
|
|
400
|
+
"resetConfirm": "Reset agent directives to defaults?",
|
|
401
|
+
"empty": "No directives configured",
|
|
402
|
+
"addRule": "Add Rule",
|
|
403
|
+
"system": "System",
|
|
404
|
+
"owner": "Owner",
|
|
405
|
+
"agent": "Agent"
|
|
406
|
+
},
|
|
407
|
+
"capabilities": {
|
|
408
|
+
"technical": "Technical Skills",
|
|
409
|
+
"domain": "Domain Knowledge",
|
|
410
|
+
"actionQueue": "Action Queue Support",
|
|
411
|
+
"verified": "verified",
|
|
412
|
+
"selfReported": "self-reported",
|
|
413
|
+
"empty": "No capabilities reported yet",
|
|
414
|
+
"canAccept": "Can accept work",
|
|
415
|
+
"canDeliver": "Can deliver work",
|
|
416
|
+
"languages": "Languages"
|
|
417
|
+
},
|
|
418
|
+
"activity": {
|
|
419
|
+
"tasksCompleted": "Tasks Completed",
|
|
420
|
+
"tokensUsed": "Tokens Used (30d)",
|
|
421
|
+
"successRate": "Success Rate",
|
|
422
|
+
"scheduledJobs": "Scheduled Jobs",
|
|
423
|
+
"recentLog": "Recent Log",
|
|
424
|
+
"viewFullLog": "View full log",
|
|
425
|
+
"noActivity": "No activity recorded yet",
|
|
426
|
+
"aimeatJob": "AIMEAT (system)",
|
|
427
|
+
"agentJob": "Agent environment"
|
|
428
|
+
},
|
|
429
|
+
"services": {
|
|
430
|
+
"title": "Published Services",
|
|
431
|
+
"empty": "No services published",
|
|
432
|
+
"info": "Other agents can call these services via the work exchange",
|
|
433
|
+
"calls": "calls",
|
|
434
|
+
"unpublish": "Unpublish"
|
|
435
|
+
},
|
|
436
|
+
"messages": {
|
|
437
|
+
"title": "Messages",
|
|
438
|
+
"empty": "No messages yet. Send a message to start a conversation.",
|
|
439
|
+
"send": "Send",
|
|
440
|
+
"placeholder": "Type a message...",
|
|
441
|
+
"online": "online",
|
|
442
|
+
"offline": "offline",
|
|
443
|
+
"threads": "Conversations",
|
|
444
|
+
"proposedTask": "Proposed task",
|
|
445
|
+
"createTask": "Create this task",
|
|
446
|
+
"adjustTask": "Let me adjust",
|
|
447
|
+
"tokensUsed": "tokens"
|
|
355
448
|
}
|
|
356
449
|
},
|
|
357
450
|
"scopes": {
|
|
@@ -549,7 +642,9 @@
|
|
|
549
642
|
"shareToFederation": "Share",
|
|
550
643
|
"stopSharing": "Unshare",
|
|
551
644
|
"shareSuccess": "Shared to federation",
|
|
552
|
-
"unshareSuccess": "Removed from federation"
|
|
645
|
+
"unshareSuccess": "Removed from federation",
|
|
646
|
+
"selectGroup": "Select group",
|
|
647
|
+
"noGroups": "No sharing groups. Create one in the Access tab."
|
|
553
648
|
},
|
|
554
649
|
"files": {
|
|
555
650
|
"title": "Stored Files",
|
|
@@ -770,7 +865,92 @@
|
|
|
770
865
|
"fedNoConsents": "No federation login access granted.",
|
|
771
866
|
"fedRemove": "Remove",
|
|
772
867
|
"fedGranted": "Auth access granted",
|
|
773
|
-
"fedRevoked": "Auth access revoked"
|
|
868
|
+
"fedRevoked": "Auth access revoked",
|
|
869
|
+
"sharingGroups": {
|
|
870
|
+
"title": "Sharing Groups",
|
|
871
|
+
"desc": "Create groups to share memory and files with specific users and agents",
|
|
872
|
+
"empty": "No sharing groups yet",
|
|
873
|
+
"newGroup": "New Group",
|
|
874
|
+
"create": "Create Group",
|
|
875
|
+
"cancel": "Cancel",
|
|
876
|
+
"name": "Group Name",
|
|
877
|
+
"description": "Description",
|
|
878
|
+
"members": "Members",
|
|
879
|
+
"entries": "Shared Entries",
|
|
880
|
+
"delete": "Delete Group",
|
|
881
|
+
"deleteConfirm": "Delete this sharing group?",
|
|
882
|
+
"addMember": "Add Member",
|
|
883
|
+
"removeMember": "Remove",
|
|
884
|
+
"identifier": "Identifier (GAII or GHII)",
|
|
885
|
+
"identifierType": "Type"
|
|
886
|
+
},
|
|
887
|
+
"agentDefaults": {
|
|
888
|
+
"title": "Agent Defaults",
|
|
889
|
+
"desc": "Default rules and settings applied to all your agents",
|
|
890
|
+
"rules": "Default Rules",
|
|
891
|
+
"tokenBudget": "Default Token Budget",
|
|
892
|
+
"empty": "No defaults configured",
|
|
893
|
+
"edit": "Edit",
|
|
894
|
+
"save": "Save",
|
|
895
|
+
"cancel": "Cancel"
|
|
896
|
+
},
|
|
897
|
+
"sgTitle": "Sharing Groups",
|
|
898
|
+
"sgDesc": "Define groups of identities to share memory entries with. Assign a sharing group to memory keys to control who can read or write.",
|
|
899
|
+
"sgEmpty": "No sharing groups yet.",
|
|
900
|
+
"sgLoading": "Loading...",
|
|
901
|
+
"sgCreate": "New Group",
|
|
902
|
+
"sgCreateTitle": "Create Sharing Group",
|
|
903
|
+
"sgCreateBtn": "Create",
|
|
904
|
+
"sgGroupName": "Group name",
|
|
905
|
+
"sgNamePlaceholder": "e.g. Team Alpha",
|
|
906
|
+
"sgDescription": "Description (optional)",
|
|
907
|
+
"sgDescPlaceholder": "What is this group for?",
|
|
908
|
+
"sgNameRequired": "Group name is required",
|
|
909
|
+
"sgCreated": "Sharing group created",
|
|
910
|
+
"sgCreateError": "Failed to create group",
|
|
911
|
+
"sgUpdated": "Group updated",
|
|
912
|
+
"sgUpdateError": "Failed to update group",
|
|
913
|
+
"sgConfirmDelete": "Delete group \"{name}\"? This cannot be undone.",
|
|
914
|
+
"sgDeleted": "Sharing group deleted",
|
|
915
|
+
"sgDeleteError": "Failed to delete group",
|
|
916
|
+
"sgEdit": "Edit",
|
|
917
|
+
"sgDelete": "Delete",
|
|
918
|
+
"sgSave": "Save",
|
|
919
|
+
"sgCancel": "Cancel",
|
|
920
|
+
"sgMembers": "members",
|
|
921
|
+
"sgMemberList": "Members",
|
|
922
|
+
"sgNoMembers": "No members yet",
|
|
923
|
+
"sgAddMember": "Add Member",
|
|
924
|
+
"sgMemberIdentifier": "Identifier (GHII or GAII)",
|
|
925
|
+
"sgMemberType": "Type",
|
|
926
|
+
"sgMemberRequired": "Identifier is required",
|
|
927
|
+
"sgMemberAdded": "Member added",
|
|
928
|
+
"sgMemberAddError": "Failed to add member",
|
|
929
|
+
"sgConfirmRemoveMember": "Remove \"{name}\" from this group?",
|
|
930
|
+
"sgMemberRemoved": "Member removed",
|
|
931
|
+
"sgMemberRemoveError": "Failed to remove member",
|
|
932
|
+
"sgDefaultPerms": "Default permissions",
|
|
933
|
+
"sgCreatedAt": "Created",
|
|
934
|
+
"sgRead": "Read",
|
|
935
|
+
"sgWrite": "Write",
|
|
936
|
+
"sgRemove": "Remove",
|
|
937
|
+
"adTitle": "Agent Defaults",
|
|
938
|
+
"adDesc": "Owner-level defaults that apply to all your agents unless overridden by per-agent directives.",
|
|
939
|
+
"adRules": "Default Rules",
|
|
940
|
+
"adEdit": "Edit",
|
|
941
|
+
"adEditTitle": "Edit Agent Defaults",
|
|
942
|
+
"adNoRules": "No default rules set.",
|
|
943
|
+
"adTokenBudget": "Token Budget",
|
|
944
|
+
"adUnlimited": "Unlimited",
|
|
945
|
+
"adBudgetPlaceholder": "Leave empty for unlimited",
|
|
946
|
+
"adRulePlaceholder": "Add a rule...",
|
|
947
|
+
"adAddRule": "Add",
|
|
948
|
+
"adRemoveRule": "Remove",
|
|
949
|
+
"adSave": "Save",
|
|
950
|
+
"adCancel": "Cancel",
|
|
951
|
+
"adInvalidBudget": "Token budget must be a non-negative number",
|
|
952
|
+
"adSaved": "Agent defaults saved",
|
|
953
|
+
"adSaveError": "Failed to save defaults"
|
|
774
954
|
},
|
|
775
955
|
"nodes": {
|
|
776
956
|
"title": "Personal Nodes",
|
|
@@ -1694,7 +1874,8 @@
|
|
|
1694
1874
|
"public": "Public",
|
|
1695
1875
|
"private": "Private",
|
|
1696
1876
|
"owner": "My Agents",
|
|
1697
|
-
"protected": "Protected"
|
|
1877
|
+
"protected": "Protected",
|
|
1878
|
+
"group": "Group"
|
|
1698
1879
|
},
|
|
1699
1880
|
"knowledge": {
|
|
1700
1881
|
"parseError": "Could not parse the pasted content as JSON",
|
|
@@ -2796,7 +2977,7 @@
|
|
|
2796
2977
|
"dailyActivity": "Daily Activity (30 days)",
|
|
2797
2978
|
"weeklyComparison": "Weekly Comparison",
|
|
2798
2979
|
"monthlyTrend": "Monthly Trend",
|
|
2799
|
-
"statsExplain": "
|
|
2980
|
+
"statsExplain": "Usage counters persisted to database. Uptime and live gauges reset on restart.",
|
|
2800
2981
|
"writes": "Writes",
|
|
2801
2982
|
"reads": "Reads",
|
|
2802
2983
|
"grants": "Grants",
|
|
@@ -3574,7 +3755,32 @@
|
|
|
3574
3755
|
"memoryFilterPrefix": "Filter by key prefix",
|
|
3575
3756
|
"memoryNoResults": "No memory keys found",
|
|
3576
3757
|
"memoryDeleteConfirm": "Delete this memory key?",
|
|
3577
|
-
"memoryDeleted": "Memory key deleted"
|
|
3758
|
+
"memoryDeleted": "Memory key deleted",
|
|
3759
|
+
"agentTasksTab": "Agent Tasks",
|
|
3760
|
+
"agentTasksDesc": "Overview of all agent tasks across the node",
|
|
3761
|
+
"agentTasksTotal": "Total Tasks",
|
|
3762
|
+
"agentTasksEmpty": "No agent tasks found",
|
|
3763
|
+
"agentTasksAgent": "Agent",
|
|
3764
|
+
"agentTasksTitle": "Title",
|
|
3765
|
+
"agentTasksStatus": "Status",
|
|
3766
|
+
"agentTasksTodoProgress": "TODO Progress",
|
|
3767
|
+
"agentTasksCreated": "Created",
|
|
3768
|
+
"agentTasksLastEvent": "Last Event",
|
|
3769
|
+
"agentTasksActiveTasks": "Active Agent Tasks",
|
|
3770
|
+
"agentTasksFilterStatus": "Filter by status",
|
|
3771
|
+
"agentTasksAllStatuses": "All statuses",
|
|
3772
|
+
"sharingGroupsTab": "Sharing Groups",
|
|
3773
|
+
"sharingGroupsDesc": "Overview of all sharing groups on the node",
|
|
3774
|
+
"sharingGroupsTotal": "Total Groups",
|
|
3775
|
+
"sharingGroupsEmpty": "No sharing groups found",
|
|
3776
|
+
"sharingGroupsName": "Name",
|
|
3777
|
+
"sharingGroupsOwner": "Owner",
|
|
3778
|
+
"sharingGroupsMembers": "Members",
|
|
3779
|
+
"sharingGroupsEntries": "Entries",
|
|
3780
|
+
"sharingGroupsCreated": "Created",
|
|
3781
|
+
"sharingGroupsTotalCount": "Sharing Groups",
|
|
3782
|
+
"overviewActiveTasks": "Active Tasks",
|
|
3783
|
+
"overviewSharingGroups": "Sharing Groups"
|
|
3578
3784
|
},
|
|
3579
3785
|
"launcher": {
|
|
3580
3786
|
"title": "My Apps",
|
package/dist/locales/fi.json
CHANGED
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"profile": "Profiili",
|
|
17
17
|
"logout": "Kirjaudu ulos",
|
|
18
18
|
"loggedInAs": "kirjautuneena",
|
|
19
|
-
"help": "Apua"
|
|
19
|
+
"help": "Apua",
|
|
20
|
+
"admin": "Hallinta"
|
|
20
21
|
},
|
|
21
22
|
"hero": {
|
|
22
23
|
"title": "Tietosi on sinun. AI:si työskentelee puolestasi.",
|
|
@@ -256,6 +257,8 @@
|
|
|
256
257
|
"connect": "Yhdistä automaatioagentti",
|
|
257
258
|
"connectDesc": "Jos sinulla on OpenClaw tai muu AI-automaatioagentti, anna sille tämä kehote rekisteröidäksesi agentin tilillesi:",
|
|
258
259
|
"copyPrompt": "Kopioi kehote",
|
|
260
|
+
"downloadInstructions": "Lataa ohjeet",
|
|
261
|
+
"copyFullInstructions": "Kopioi kaikki ohjeet",
|
|
259
262
|
"copied": "Kopioitu!",
|
|
260
263
|
"copyGaii": "Kopioi GAII",
|
|
261
264
|
"noAgent": "Eikö sinulla vielä ole automaatioagenttia?",
|
|
@@ -352,6 +355,96 @@
|
|
|
352
355
|
"credentials_warning": "Säilytä yksityinen avain turvallisesti — sitä ei voi hakea uudelleen.",
|
|
353
356
|
"polling_note": "Jos agenttisi pollaa automaattisesti, se saa nämä tunnistetiedot muutaman sekunnin kuluessa.",
|
|
354
357
|
"token_expiry_note": "Token vanhenee 24 tunnin kuluttua. Agenttisi käyttää yksityistä avainta uuden tokenin hankkimiseen automaattisesti."
|
|
358
|
+
},
|
|
359
|
+
"subtabs": {
|
|
360
|
+
"tasks": "Tehtävät",
|
|
361
|
+
"directives": "Ohjeet",
|
|
362
|
+
"capabilities": "Kyvykkyydet",
|
|
363
|
+
"activity": "Aktiivisuus",
|
|
364
|
+
"services": "Palvelut",
|
|
365
|
+
"messages": "Viestit"
|
|
366
|
+
},
|
|
367
|
+
"tasks": {
|
|
368
|
+
"title": "Tehtäväjono",
|
|
369
|
+
"empty": "Ei tehtäviä vielä",
|
|
370
|
+
"newTask": "Uusi tehtävä",
|
|
371
|
+
"createTask": "Luo tehtävä",
|
|
372
|
+
"cancel": "Peruuta",
|
|
373
|
+
"titleLabel": "Otsikko",
|
|
374
|
+
"descLabel": "Kuvaus",
|
|
375
|
+
"statusLabel": "Tila",
|
|
376
|
+
"draft": "Luonnos",
|
|
377
|
+
"queued": "Jonossa",
|
|
378
|
+
"active": "Aktiivinen",
|
|
379
|
+
"done": "Valmis",
|
|
380
|
+
"failed": "Epäonnistunut",
|
|
381
|
+
"stalled": "Pysähtynyt",
|
|
382
|
+
"events": "Tapahtumat",
|
|
383
|
+
"noEvents": "Ei tapahtumia",
|
|
384
|
+
"todoProgress": "TODO-edistyminen",
|
|
385
|
+
"created": "Luotu",
|
|
386
|
+
"lastEvent": "Viimeisin tapahtuma",
|
|
387
|
+
"delete": "Poista",
|
|
388
|
+
"deleteConfirm": "Poista tämä tehtävä?"
|
|
389
|
+
},
|
|
390
|
+
"directives": {
|
|
391
|
+
"title": "Ohjeet",
|
|
392
|
+
"purpose": "Tarkoitus",
|
|
393
|
+
"rules": "Säännöt",
|
|
394
|
+
"memoryAreas": "Muistialueet",
|
|
395
|
+
"resources": "Resurssit",
|
|
396
|
+
"edit": "Muokkaa",
|
|
397
|
+
"save": "Tallenna",
|
|
398
|
+
"cancel": "Peruuta",
|
|
399
|
+
"reset": "Palauta oletukset",
|
|
400
|
+
"resetConfirm": "Palauta agentin ohjeet oletuksiin?",
|
|
401
|
+
"empty": "Ohjeita ei määritetty",
|
|
402
|
+
"addRule": "Lisää sääntö",
|
|
403
|
+
"system": "Järjestelmä",
|
|
404
|
+
"owner": "Omistaja",
|
|
405
|
+
"agent": "Agentti"
|
|
406
|
+
},
|
|
407
|
+
"capabilities": {
|
|
408
|
+
"technical": "Tekniset taidot",
|
|
409
|
+
"domain": "Osaamisalueet",
|
|
410
|
+
"actionQueue": "Toimintajonotuki",
|
|
411
|
+
"verified": "vahvistettu",
|
|
412
|
+
"selfReported": "itse ilmoitettu",
|
|
413
|
+
"empty": "Kyvykkyyksiä ei vielä ilmoitettu",
|
|
414
|
+
"canAccept": "Voi vastaanottaa toimeksiantoja",
|
|
415
|
+
"canDeliver": "Voi toimittaa tuloksia",
|
|
416
|
+
"languages": "Kielet"
|
|
417
|
+
},
|
|
418
|
+
"activity": {
|
|
419
|
+
"tasksCompleted": "Tehtäviä suoritettu",
|
|
420
|
+
"tokensUsed": "Tokeneita käytetty (30pv)",
|
|
421
|
+
"successRate": "Onnistumisprosentti",
|
|
422
|
+
"scheduledJobs": "Ajastetut tehtävät",
|
|
423
|
+
"recentLog": "Viimeisimmät tapahtumat",
|
|
424
|
+
"viewFullLog": "Näytä koko loki",
|
|
425
|
+
"noActivity": "Ei vielä aktiivisuutta",
|
|
426
|
+
"aimeatJob": "AIMEAT (järjestelmä)",
|
|
427
|
+
"agentJob": "Agentti-ympäristö"
|
|
428
|
+
},
|
|
429
|
+
"services": {
|
|
430
|
+
"title": "Julkaistut palvelut",
|
|
431
|
+
"empty": "Ei julkaistuja palveluita",
|
|
432
|
+
"info": "Muut agentit voivat kutsua naita palveluita tyonvaihdon kautta",
|
|
433
|
+
"calls": "kutsut",
|
|
434
|
+
"unpublish": "Poista julkaisu"
|
|
435
|
+
},
|
|
436
|
+
"messages": {
|
|
437
|
+
"title": "Viestit",
|
|
438
|
+
"empty": "Ei viesteja viela. Laheta viesti aloittaaksesi keskustelun.",
|
|
439
|
+
"send": "Laheta",
|
|
440
|
+
"placeholder": "Kirjoita viesti...",
|
|
441
|
+
"online": "online",
|
|
442
|
+
"offline": "offline",
|
|
443
|
+
"threads": "Keskustelut",
|
|
444
|
+
"proposedTask": "Ehdotettu tehtava",
|
|
445
|
+
"createTask": "Luo tama tehtava",
|
|
446
|
+
"adjustTask": "Muokkaan ensin",
|
|
447
|
+
"tokensUsed": "tokenia"
|
|
355
448
|
}
|
|
356
449
|
},
|
|
357
450
|
"scopes": {
|
|
@@ -549,7 +642,9 @@
|
|
|
549
642
|
"shareToFederation": "Jaa",
|
|
550
643
|
"stopSharing": "Lopeta jakaminen",
|
|
551
644
|
"shareSuccess": "Jaettu federaatioon",
|
|
552
|
-
"unshareSuccess": "Poistettu federaatiosta"
|
|
645
|
+
"unshareSuccess": "Poistettu federaatiosta",
|
|
646
|
+
"selectGroup": "Valitse ryhma",
|
|
647
|
+
"noGroups": "Ei jakoryhmiä. Luo ryhma Oikeudet-valilehdessa."
|
|
553
648
|
},
|
|
554
649
|
"files": {
|
|
555
650
|
"title": "Tallennetut tiedostot",
|
|
@@ -770,7 +865,92 @@
|
|
|
770
865
|
"fedNoConsents": "Federaatiokirjautumista ei myönnetty.",
|
|
771
866
|
"fedRemove": "Poista",
|
|
772
867
|
"fedGranted": "Todennusoikeus myönnetty",
|
|
773
|
-
"fedRevoked": "Todennusoikeus peruutettu"
|
|
868
|
+
"fedRevoked": "Todennusoikeus peruutettu",
|
|
869
|
+
"sharingGroups": {
|
|
870
|
+
"title": "Jakoryhmät",
|
|
871
|
+
"desc": "Luo ryhmiä jakaaksesi muistia ja tiedostoja tiettyjen käyttäjien ja agenttien kanssa",
|
|
872
|
+
"empty": "Ei jakoryhmiä vielä",
|
|
873
|
+
"newGroup": "Uusi ryhmä",
|
|
874
|
+
"create": "Luo ryhmä",
|
|
875
|
+
"cancel": "Peruuta",
|
|
876
|
+
"name": "Ryhmän nimi",
|
|
877
|
+
"description": "Kuvaus",
|
|
878
|
+
"members": "Jäsenet",
|
|
879
|
+
"entries": "Jaetut merkinnät",
|
|
880
|
+
"delete": "Poista ryhmä",
|
|
881
|
+
"deleteConfirm": "Poista tämä jakoryhmä?",
|
|
882
|
+
"addMember": "Lisää jäsen",
|
|
883
|
+
"removeMember": "Poista",
|
|
884
|
+
"identifier": "Tunniste (GAII tai GHII)",
|
|
885
|
+
"identifierType": "Tyyppi"
|
|
886
|
+
},
|
|
887
|
+
"agentDefaults": {
|
|
888
|
+
"title": "Agenttien oletukset",
|
|
889
|
+
"desc": "Oletussäännöt ja -asetukset kaikille agenteillesi",
|
|
890
|
+
"rules": "Oletussäännöt",
|
|
891
|
+
"tokenBudget": "Oletustoken-budjetti",
|
|
892
|
+
"empty": "Oletuksia ei määritetty",
|
|
893
|
+
"edit": "Muokkaa",
|
|
894
|
+
"save": "Tallenna",
|
|
895
|
+
"cancel": "Peruuta"
|
|
896
|
+
},
|
|
897
|
+
"sgTitle": "Jakoryhmät",
|
|
898
|
+
"sgDesc": "Määrittele identiteettiryhmiä joiden kanssa jakaa muistimerkintöjä. Liitä jakoryhmä muistiavaimiin hallitaksesi kuka voi lukea tai kirjoittaa.",
|
|
899
|
+
"sgEmpty": "Ei jakoryhmiä vielä.",
|
|
900
|
+
"sgLoading": "Ladataan...",
|
|
901
|
+
"sgCreate": "Uusi ryhmä",
|
|
902
|
+
"sgCreateTitle": "Luo jakoryhmä",
|
|
903
|
+
"sgCreateBtn": "Luo",
|
|
904
|
+
"sgGroupName": "Ryhmän nimi",
|
|
905
|
+
"sgNamePlaceholder": "esim. Tiimi Alpha",
|
|
906
|
+
"sgDescription": "Kuvaus (valinnainen)",
|
|
907
|
+
"sgDescPlaceholder": "Mihin tämä ryhmä on tarkoitettu?",
|
|
908
|
+
"sgNameRequired": "Ryhmän nimi on pakollinen",
|
|
909
|
+
"sgCreated": "Jakoryhmä luotu",
|
|
910
|
+
"sgCreateError": "Ryhmän luonti epäonnistui",
|
|
911
|
+
"sgUpdated": "Ryhmä päivitetty",
|
|
912
|
+
"sgUpdateError": "Ryhmän päivitys epäonnistui",
|
|
913
|
+
"sgConfirmDelete": "Poista ryhmä \"{name}\"? Tätä ei voi perua.",
|
|
914
|
+
"sgDeleted": "Jakoryhmä poistettu",
|
|
915
|
+
"sgDeleteError": "Ryhmän poisto epäonnistui",
|
|
916
|
+
"sgEdit": "Muokkaa",
|
|
917
|
+
"sgDelete": "Poista",
|
|
918
|
+
"sgSave": "Tallenna",
|
|
919
|
+
"sgCancel": "Peruuta",
|
|
920
|
+
"sgMembers": "jäsentä",
|
|
921
|
+
"sgMemberList": "Jäsenet",
|
|
922
|
+
"sgNoMembers": "Ei jäseniä vielä",
|
|
923
|
+
"sgAddMember": "Lisää jäsen",
|
|
924
|
+
"sgMemberIdentifier": "Tunniste (GHII tai GAII)",
|
|
925
|
+
"sgMemberType": "Tyyppi",
|
|
926
|
+
"sgMemberRequired": "Tunniste on pakollinen",
|
|
927
|
+
"sgMemberAdded": "Jäsen lisätty",
|
|
928
|
+
"sgMemberAddError": "Jäsenen lisäys epäonnistui",
|
|
929
|
+
"sgConfirmRemoveMember": "Poista \"{name}\" tästä ryhmästä?",
|
|
930
|
+
"sgMemberRemoved": "Jäsen poistettu",
|
|
931
|
+
"sgMemberRemoveError": "Jäsenen poisto epäonnistui",
|
|
932
|
+
"sgDefaultPerms": "Oletusoikeudet",
|
|
933
|
+
"sgCreatedAt": "Luotu",
|
|
934
|
+
"sgRead": "Luku",
|
|
935
|
+
"sgWrite": "Kirjoitus",
|
|
936
|
+
"sgRemove": "Poista",
|
|
937
|
+
"adTitle": "Agenttien oletukset",
|
|
938
|
+
"adDesc": "Omistajatason oletukset jotka koskevat kaikkia agenttejasi ellei agenttitason direktiivit ohita niitä.",
|
|
939
|
+
"adRules": "Oletussäännöt",
|
|
940
|
+
"adEdit": "Muokkaa",
|
|
941
|
+
"adEditTitle": "Muokkaa agenttien oletuksia",
|
|
942
|
+
"adNoRules": "Oletussääntöjä ei asetettu.",
|
|
943
|
+
"adTokenBudget": "Token-budjetti",
|
|
944
|
+
"adUnlimited": "Rajoittamaton",
|
|
945
|
+
"adBudgetPlaceholder": "Jätä tyhjäksi rajoittamatonta varten",
|
|
946
|
+
"adRulePlaceholder": "Lisää sääntö...",
|
|
947
|
+
"adAddRule": "Lisää",
|
|
948
|
+
"adRemoveRule": "Poista",
|
|
949
|
+
"adSave": "Tallenna",
|
|
950
|
+
"adCancel": "Peruuta",
|
|
951
|
+
"adInvalidBudget": "Token-budjetin täytyy olla ei-negatiivinen luku",
|
|
952
|
+
"adSaved": "Agenttien oletukset tallennettu",
|
|
953
|
+
"adSaveError": "Oletusten tallennus epäonnistui"
|
|
774
954
|
},
|
|
775
955
|
"nodes": {
|
|
776
956
|
"title": "Henkilökohtaiset solmut",
|
|
@@ -1694,7 +1874,8 @@
|
|
|
1694
1874
|
"public": "Julkinen",
|
|
1695
1875
|
"private": "Yksityinen",
|
|
1696
1876
|
"owner": "Omat agentit",
|
|
1697
|
-
"protected": "Suojattu"
|
|
1877
|
+
"protected": "Suojattu",
|
|
1878
|
+
"group": "Ryhmä"
|
|
1698
1879
|
},
|
|
1699
1880
|
"knowledge": {
|
|
1700
1881
|
"parseError": "Liitettyä sisältöä ei voitu jäsentää JSON-muodossa",
|
|
@@ -2796,7 +2977,7 @@
|
|
|
2796
2977
|
"dailyActivity": "Päivittäinen aktiivisuus (30 päivää)",
|
|
2797
2978
|
"weeklyComparison": "Viikkovertailu",
|
|
2798
2979
|
"monthlyTrend": "Kuukausitrendi",
|
|
2799
|
-
"statsExplain": "
|
|
2980
|
+
"statsExplain": "Laskurit tallennetaan tietokantaan. Käyttöaika ja reaaliaikamittarit nollautuvat uudelleenkäynnistyksessä.",
|
|
2800
2981
|
"writes": "Kirjoitukset",
|
|
2801
2982
|
"reads": "Luvut",
|
|
2802
2983
|
"grants": "Myönnöt",
|
|
@@ -3574,7 +3755,32 @@
|
|
|
3574
3755
|
"memoryFilterPrefix": "Suodata avaimen etuliitteellä",
|
|
3575
3756
|
"memoryNoResults": "Muistiavaimia ei löytynyt",
|
|
3576
3757
|
"memoryDeleteConfirm": "Poista tämä muistiavain?",
|
|
3577
|
-
"memoryDeleted": "Muistiavain poistettu"
|
|
3758
|
+
"memoryDeleted": "Muistiavain poistettu",
|
|
3759
|
+
"agentTasksTab": "Agenttitehtävät",
|
|
3760
|
+
"agentTasksDesc": "Yhteenveto kaikista agenttitehtävistä solmussa",
|
|
3761
|
+
"agentTasksTotal": "Tehtäviä yhteensä",
|
|
3762
|
+
"agentTasksEmpty": "Agenttitehtäviä ei löytynyt",
|
|
3763
|
+
"agentTasksAgent": "Agentti",
|
|
3764
|
+
"agentTasksTitle": "Otsikko",
|
|
3765
|
+
"agentTasksStatus": "Tila",
|
|
3766
|
+
"agentTasksTodoProgress": "TODO-edistyminen",
|
|
3767
|
+
"agentTasksCreated": "Luotu",
|
|
3768
|
+
"agentTasksLastEvent": "Viimeisin tapahtuma",
|
|
3769
|
+
"agentTasksActiveTasks": "Aktiiviset agenttitehtävät",
|
|
3770
|
+
"agentTasksFilterStatus": "Suodata tilan mukaan",
|
|
3771
|
+
"agentTasksAllStatuses": "Kaikki tilat",
|
|
3772
|
+
"sharingGroupsTab": "Jakoryhmät",
|
|
3773
|
+
"sharingGroupsDesc": "Yhteenveto kaikista jakoryhmistä solmussa",
|
|
3774
|
+
"sharingGroupsTotal": "Ryhmiä yhteensä",
|
|
3775
|
+
"sharingGroupsEmpty": "Jakoryhmiä ei löytynyt",
|
|
3776
|
+
"sharingGroupsName": "Nimi",
|
|
3777
|
+
"sharingGroupsOwner": "Omistaja",
|
|
3778
|
+
"sharingGroupsMembers": "Jäsenet",
|
|
3779
|
+
"sharingGroupsEntries": "Merkinnät",
|
|
3780
|
+
"sharingGroupsCreated": "Luotu",
|
|
3781
|
+
"sharingGroupsTotalCount": "Jakoryhmät",
|
|
3782
|
+
"overviewActiveTasks": "Aktiiviset tehtävät",
|
|
3783
|
+
"overviewSharingGroups": "Jakoryhmät"
|
|
3578
3784
|
},
|
|
3579
3785
|
"launcher": {
|
|
3580
3786
|
"title": "Omat Sovellukset",
|