@anchrd/intel-ui 0.18.0 → 0.19.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/package.json +2 -9
- package/src/app/app-tree/app-tree.tsx +59 -147
- package/src/app/settings-dialog/settings-dialog.tsx +10 -32
- package/src/data/intel-data-provider/intel-data-provider.ts +0 -163
- package/src/data/intel-data-provider/intel-data-provider.types.ts +0 -100
- package/src/entry-picker/entry-picker.tsx +6 -6
- package/src/i18n/de.json +6 -217
- package/src/i18n/en.json +6 -217
- package/src/i18n/es.json +6 -217
- package/src/import-bundle/import-bundle.tsx +152 -0
- package/src/kind-icon.ts +1 -15
- package/src/main.tsx +7 -10
- package/src/node-table/node-table.tsx +2 -2
- package/src/nodes/nodes.tsx +0 -34
- package/src/resource-menu/resource-menu.tsx +42 -14
- package/src/section-hint/section-hint.tsx +2 -2
- package/src/title-row/title-row.tsx +5 -22
- package/src/tools/tools.tsx +0 -2
- package/vite.config.ts +0 -4
- package/src/agent/agent-avatar/agent-avatar.tsx +0 -34
- package/src/agent/agent-calendar/agent-calendar.tsx +0 -160
- package/src/agent/agent-chat/agent-chat.tsx +0 -118
- package/src/agent/agent-costs/agent-costs.ts +0 -95
- package/src/agent/agent-cron/agent-cron.ts +0 -68
- package/src/agent/agent-definition/agent-definition.ts +0 -96
- package/src/agent/agent-delegation-notice/agent-delegation-notice.ts +0 -48
- package/src/agent/agent-entry-title/agent-entry-title.ts +0 -72
- package/src/agent/agent-log/agent-log.tsx +0 -308
- package/src/agent/agent-models/agent-models.ts +0 -166
- package/src/agent/agent-models/agent-models.types.ts +0 -24
- package/src/agent/agent-profile/agent-profile.tsx +0 -1006
- package/src/agent/agent-state/agent-state.ts +0 -85
- package/src/agent/agent-status-dot/agent-status-dot.ts +0 -73
- package/src/agent/agent.tsx +0 -507
- package/src/board/board-calendar/board-calendar.tsx +0 -89
- package/src/board/board-card/board-card.tsx +0 -106
- package/src/board/board-data/board-data.ts +0 -241
- package/src/board/board-data/board-data.types.ts +0 -63
- package/src/board/board-detail/board-detail.tsx +0 -629
- package/src/board/board-gantt/board-gantt.ts +0 -545
- package/src/board/board-gantt/board-gantt.tsx +0 -286
- package/src/board/board-graph/board-graph.ts +0 -174
- package/src/board/board-graph/board-graph.tsx +0 -168
- package/src/board/board-items/board-items.ts +0 -183
- package/src/board/board-kanban/board-kanban.ts +0 -137
- package/src/board/board-kanban/board-kanban.tsx +0 -257
- package/src/board/board-status/board-status.ts +0 -59
- package/src/board/board-statuses/board-statuses.ts +0 -63
- package/src/board/board-statuses/board-statuses.tsx +0 -228
- package/src/board/board-table/board-table.ts +0 -33
- package/src/board/board-table/board-table.tsx +0 -413
- package/src/board/board-views/board-views.tsx +0 -68
- package/src/board/board-views/board-views.types.ts +0 -29
- package/src/board/board.tsx +0 -251
- package/src/components/ui/item-calendar.tsx +0 -181
- package/src/components/ui/item-gantt.tsx +0 -463
- package/src/components/ui/kanban.tsx +0 -282
- package/src/data/agent-runtime/agent-runtime.ts +0 -131
- package/src/hooks/use-capabilities.ts +0 -22
- package/src/hooks/use-model-catalog.ts +0 -26
- package/src/timezone/timezone-combobox/timezone-combobox.tsx +0 -149
- package/src/timezone/timezone-context.tsx +0 -65
- package/src/timezone/timezone.ts +0 -174
package/src/i18n/en.json
CHANGED
|
@@ -39,7 +39,6 @@
|
|
|
39
39
|
"tree.new.table": "New table",
|
|
40
40
|
"tree.new.upload": "Upload file",
|
|
41
41
|
"tree.new.flow": "New flow",
|
|
42
|
-
"tree.new.agent": "New agent",
|
|
43
42
|
"tree.upload": "File to upload",
|
|
44
43
|
"tree.table.columns": "Columns",
|
|
45
44
|
"tree.table.columnsHint": "Separate the column names with commas. They are the header, and every row appended later must match it.",
|
|
@@ -49,8 +48,6 @@
|
|
|
49
48
|
"tree.kind.document": "Document",
|
|
50
49
|
"tree.kind.attachment": "File",
|
|
51
50
|
"tree.kind.table": "Table",
|
|
52
|
-
"tree.kind.agent": "Agent",
|
|
53
|
-
"tree.kind.board": "Board",
|
|
54
51
|
"tree.kind.flow": "Flow",
|
|
55
52
|
"tree.move.action": "Move to…",
|
|
56
53
|
"tree.move.title": "Move {title}",
|
|
@@ -76,9 +73,12 @@
|
|
|
76
73
|
"resource.rename": "Rename",
|
|
77
74
|
"resource.renameTitle": "Rename {title}",
|
|
78
75
|
"resource.archive": "Archive",
|
|
79
|
-
"resource.export": "
|
|
76
|
+
"resource.export": "Export",
|
|
77
|
+
"resource.import": "Import",
|
|
80
78
|
"tree.new.importZip": "Import zip bundle",
|
|
81
79
|
"tree.new.importFolder": "Import folder",
|
|
80
|
+
"tree.importZipInto": "Import a zip bundle into {where}",
|
|
81
|
+
"tree.importFolderInto": "Import a folder into {where}",
|
|
82
82
|
"tree.importFailed": "The import was not applied. Nothing was created — check the bundle and try again.",
|
|
83
83
|
"resource.exportFailed": "The export could not be downloaded. Check your access and try again.",
|
|
84
84
|
"archive.title": "Archive",
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
"node.attachmentHelp": "The canonical file is stored privately in Intel. Its AI-readable projection is indexed separately.",
|
|
98
98
|
"node.table.summary": "{rows} rows, {columns} columns",
|
|
99
99
|
"node.table.download": "Download CSV",
|
|
100
|
-
"node.table.empty": "No rows yet. Rows are appended by flows
|
|
100
|
+
"node.table.empty": "No rows yet. Rows are appended by flows.",
|
|
101
101
|
"node.table.undefined": "This table has no columns yet.",
|
|
102
102
|
"node.select": "Select a document or folder to work with it.",
|
|
103
103
|
"node.folderEmpty": "Nothing in this folder yet. Create something with the plus in the sidebar.",
|
|
@@ -108,8 +108,6 @@
|
|
|
108
108
|
"node.kind.document": "Document",
|
|
109
109
|
"node.kind.attachment": "Upload",
|
|
110
110
|
"node.kind.table": "Table",
|
|
111
|
-
"node.kind.agent": "Agent",
|
|
112
|
-
"node.kind.board": "Board",
|
|
113
111
|
"node.kind.flow": "Flow",
|
|
114
112
|
"node.share": "Share",
|
|
115
113
|
"node.shareAction": "Grant access",
|
|
@@ -122,7 +120,6 @@
|
|
|
122
120
|
"node.verbHint.read": "See everything in here",
|
|
123
121
|
"node.verbHint.write": "Change and add things",
|
|
124
122
|
"node.verbHint.execute": "Start the flows in here",
|
|
125
|
-
"node.verbHint.execute.agent": "Use this agent — its chat, its schedules and its MCP address",
|
|
126
123
|
"node.verbHint.share": "Give others access",
|
|
127
124
|
"node.organization": "Everyone in the organization",
|
|
128
125
|
"node.revokeShare": "Revoke access",
|
|
@@ -279,120 +276,6 @@
|
|
|
279
276
|
"runs.trigger.subflow": "called by another flow",
|
|
280
277
|
"runs.outcome.completed": "done",
|
|
281
278
|
"runs.outcome.failed": "failed",
|
|
282
|
-
"agent.tabs": "Agent views",
|
|
283
|
-
"agent.tab.profile": "Profile",
|
|
284
|
-
"agent.tab.chat": "Chat",
|
|
285
|
-
"agent.tab.calendar": "Calendar",
|
|
286
|
-
"agent.tab.log": "Log",
|
|
287
|
-
"agent.status.running": "Running",
|
|
288
|
-
"agent.status.waiting": "Waiting for its next run",
|
|
289
|
-
"agent.status.failed": "Last run failed",
|
|
290
|
-
"agent.status.paused": "Paused",
|
|
291
|
-
"agent.status.unknown": "Runtime not reachable",
|
|
292
|
-
"agent.nextRun": "next run {when} ({zone})",
|
|
293
|
-
"agent.lastRun": "last run {when}",
|
|
294
|
-
"agent.pausedNoRuns": "no schedule fires, no task and no mail is taken; the chat still answers",
|
|
295
|
-
"agent.pause": "Pause",
|
|
296
|
-
"agent.resume": "Resume",
|
|
297
|
-
"agent.runNow": "Run now",
|
|
298
|
-
"agent.runNowNoTarget": "This agent has no schedule, so there is nothing to run.",
|
|
299
|
-
"agent.runNowPaused": "Resume the agent before running it.",
|
|
300
|
-
"agent.actionFailed": "That did not work. Try again.",
|
|
301
|
-
"agent.keyMissing": "This agent has no application key, so no run can start. Replace its key under Identity in the profile.",
|
|
302
|
-
"agent.createdBy": "by {name}",
|
|
303
|
-
"agent.notPermitted": "You may read this agent, but not drive it. Driving an agent needs the “run agents” permission.",
|
|
304
|
-
"agent.noRuntime": "This installation runs no agent runtime, so this agent cannot chat or run here. Its definition is kept and works again on an installation that has one.",
|
|
305
|
-
"agent.loadFailed": "This agent could not be loaded. Check your access and try again.",
|
|
306
|
-
"agent.saveFailed": "The change was not saved. Somebody else may have changed this agent first — reload and try again.",
|
|
307
|
-
"agent.noDefinition": "This agent has no definition yet, so there is nothing to change here.",
|
|
308
|
-
"agent.identity": "Identity",
|
|
309
|
-
"agent.identityHint": "The Gate application this agent acts as. Its grants in the tree decide what a run may read and write, and its key lives encrypted in the agent runtime — never here and never in the definition.",
|
|
310
|
-
"agent.principal": "Gate application",
|
|
311
|
-
"agent.principalNone": "None",
|
|
312
|
-
"agent.principalNoneHint": "This agent has no Gate application, so there is no key to replace. Agents created before this feature, imported, or restored from a bundle are given one in Gate.",
|
|
313
|
-
"agent.rotateKey": "Replace key",
|
|
314
|
-
"agent.rotateKeyConfirm": "A new key is issued and given to the agent runtime. The previous key stops working immediately, and no key is ever shown here.",
|
|
315
|
-
"agent.rotateKeyDone": "The key was replaced. The agent runs with the new one from its next run.",
|
|
316
|
-
"agent.rotateKeyFailed": "The key was not replaced. Try again — and keep trying until it succeeds: if Gate already issued the new key, this agent cannot run until the agent runtime has it.",
|
|
317
|
-
"agent.contact": "Contact",
|
|
318
|
-
"agent.contactHint": "How this agent is reached. The built-in chat is part of the runtime and is always there.",
|
|
319
|
-
"agent.contactChat": "Built-in chat",
|
|
320
|
-
"agent.contactChatBuiltIn": "Built in, always there",
|
|
321
|
-
"agent.contactMcp": "MCP address",
|
|
322
|
-
"agent.copy": "Copy",
|
|
323
|
-
"agent.copied": "Copied",
|
|
324
|
-
"agent.contactAdd": "Add contact",
|
|
325
|
-
"agent.contactAddReason": "A mail address belongs to the installation, not to the agent's definition, so it is configured where the runtime is deployed.",
|
|
326
|
-
"agent.knows": "What it knows",
|
|
327
|
-
"agent.knowsHint": "What this agent reads, and what each entry counts as. A system message instructs it — a folder, a document or a table. Semantic context is searched, and memory is written back to and searched as well, so both of those are folders. The name promises less than the role does: what the agent notes down in memory comes back to it in every later search.",
|
|
328
|
-
"agent.addReference": "Add something to read",
|
|
329
|
-
"agent.removeReferenceOf": "Stop reading {title}",
|
|
330
|
-
"agent.pickEntry": "What to read",
|
|
331
|
-
"agent.roleFor": "What {title} counts as",
|
|
332
|
-
"agent.role.system-message": "System message",
|
|
333
|
-
"agent.role.semantic-context": "Semantic context",
|
|
334
|
-
"agent.role.memory": "Memory",
|
|
335
|
-
"agent.unknownEntry": "Not available to you",
|
|
336
|
-
"agent.tools": "Tools",
|
|
337
|
-
"agent.toolsHint": "The MCP servers you give this agent, out of the ones you reach yourself. Intel stores the choice, never the permission — the tools behind a server are read live with your portal access every time the agent runs.",
|
|
338
|
-
"agent.addTool": "Add tool",
|
|
339
|
-
"agent.removeToolServerOf": "Take {name} away from this agent",
|
|
340
|
-
"agent.toolServerUnavailable": "You no longer reach this server",
|
|
341
|
-
"agent.toolsDelegationNotice": "Anyone who may run this agent acts on your connection.",
|
|
342
|
-
"agent.toolsDelegationNoticeBy": "Anyone who may run this agent acts on the connection of {name}.",
|
|
343
|
-
"agent.toolsDelegationNoticeSomebody": "Anyone who may run this agent acts on the connection of whoever gave it these tools — not on yours.",
|
|
344
|
-
"agent.toolsNotConnected": "You are not signed in to the company portal yet, so there is nothing to give away. Open Tools to connect.",
|
|
345
|
-
"agent.toolsNoneLeft": "Every server you reach is already given to this agent.",
|
|
346
|
-
"agent.schedule": "Schedule",
|
|
347
|
-
"agent.scheduleHint": "When this agent acts on its own, and what it runs. Each schedule keeps the timezone it was given, so it means the same hour to everybody reading it.",
|
|
348
|
-
"agent.addSchedule": "Add schedule",
|
|
349
|
-
"agent.removeSchedule": "Remove this schedule",
|
|
350
|
-
"agent.scheduleTarget": "What to run",
|
|
351
|
-
"agent.cron": "When",
|
|
352
|
-
"agent.scheduleTimezone": "Timezone",
|
|
353
|
-
"agent.scheduleTimezoneHint": "What the expression above is read in. Suggested from your own preference and stored with the schedule — changing your preference later leaves this one alone.",
|
|
354
|
-
"agent.cronHint": "Five fields: minute, hour, day of month, month, day of week. “0 8 * * *” is every day at 08:00 in the timezone below.",
|
|
355
|
-
"agent.model": "Model",
|
|
356
|
-
"agent.modelHint": "Which model does the thinking. A change is picked up by the runtime within a minute.",
|
|
357
|
-
"agent.modelFigures": "{context} context · ${input} in / ${output} out per 1M tokens",
|
|
358
|
-
"agent.usage": "{input} in · {output} out · {cacheRead} cache read · {cacheWrite} cache written",
|
|
359
|
-
"agent.usageUnknown": "No usage figures for this run",
|
|
360
|
-
"agent.usageNotReported": "This provider reports no usage",
|
|
361
|
-
"agent.costMissing": "Cost not in the gateway log",
|
|
362
|
-
"agent.costNotConfigured": "No cost figures: this installation has no AI Gateway read token.",
|
|
363
|
-
"agent.costUnreadable": "No cost figures: the AI Gateway log could not be read.",
|
|
364
|
-
"agent.costPartial": "The gateway log was read up to its page limit, so these totals are a lower bound.",
|
|
365
|
-
"agent.costWindow": "Last {days} days",
|
|
366
|
-
"agent.costWindowCalls": "{count} model calls",
|
|
367
|
-
"agent.costs": "Cost",
|
|
368
|
-
"agent.costsSpent": "{amount} in the last {days} days",
|
|
369
|
-
"agent.costsSpentPast": "Already spent, on past runs — not a forecast for the model chosen above.",
|
|
370
|
-
"agent.costsSpentWith": "with {models}",
|
|
371
|
-
"agent.modelFiguresStale": "These figures come from a built-in table and can be out of date.",
|
|
372
|
-
"agent.calendar": "Upcoming runs",
|
|
373
|
-
"agent.calendarZones": "Each time is shown in the timezone of its own schedule, because that is when the agent runs. Where your own timezone differs, it is added beside it.",
|
|
374
|
-
"agent.calendarYourTime": "{when} your time",
|
|
375
|
-
"agent.calendarUnreadable": "None of this agent's schedules can be read as a cron expression, so nothing is planned.",
|
|
376
|
-
"agent.calendarPaused": "This agent is paused, so none of these runs will happen. They are what it would do once it is resumed.",
|
|
377
|
-
"agent.log": "Runs",
|
|
378
|
-
"agent.logEmpty": "This agent has not run yet.",
|
|
379
|
-
"agent.logFailed": "The runs could not be read. The agent runtime may be unreachable from here.",
|
|
380
|
-
"agent.runFailed": "This run could not be read.",
|
|
381
|
-
"agent.runLog": "What this run did",
|
|
382
|
-
"agent.runLogEmpty": "This run recorded nothing.",
|
|
383
|
-
"agent.runAnswer": "What this run answered",
|
|
384
|
-
"agent.runAnswerEmpty": "This run recorded no answer.",
|
|
385
|
-
"agent.steps": "{count} steps",
|
|
386
|
-
"agent.trigger.chat": "from the chat",
|
|
387
|
-
"agent.trigger.schedule": "on schedule",
|
|
388
|
-
"agent.trigger.mail": "from an email",
|
|
389
|
-
"agent.trigger.task": "asked over MCP",
|
|
390
|
-
"agent.trigger.manual": "started by hand",
|
|
391
|
-
"agent.chatEmpty": "Write to this agent. It answers with what it knows and the tools it may reach.",
|
|
392
|
-
"agent.chatInput": "Message to this agent",
|
|
393
|
-
"agent.chatPlaceholder": "Ask something…",
|
|
394
|
-
"agent.chatSend": "Send",
|
|
395
|
-
"agent.chatScrollDown": "Jump to the latest message",
|
|
396
279
|
"settings.title": "Preferences",
|
|
397
280
|
"settings.description": "Language, appearance and timezone. All three take effect immediately and are remembered on this device.",
|
|
398
281
|
"settings.language": "Language",
|
|
@@ -400,12 +283,6 @@
|
|
|
400
283
|
"settings.appearance.system": "Follow the system",
|
|
401
284
|
"settings.appearance.light": "Light",
|
|
402
285
|
"settings.appearance.dark": "Dark",
|
|
403
|
-
"settings.timezone": "Timezone",
|
|
404
|
-
"settings.timezoneHint": "Used to read times, and suggested when you give an agent a schedule. A schedule keeps the timezone it was given, so travelling does not move the runs you already set.",
|
|
405
|
-
"settings.timezoneSearch": "Search city, zone or offset…",
|
|
406
|
-
"settings.timezoneNoMatch": "No timezone matches.",
|
|
407
|
-
"settings.timezoneOwn": "Your device",
|
|
408
|
-
"settings.timezoneAll": "All timezones",
|
|
409
286
|
"auth.signOut": "Sign out",
|
|
410
287
|
"auth.signOutFailed": "Signing out failed. Check your connection and try again.",
|
|
411
288
|
"signIn.refusedTitle": "Signed in, but not accepted",
|
|
@@ -425,93 +302,5 @@
|
|
|
425
302
|
"common.loading": "Loading…",
|
|
426
303
|
"common.retry": "Try again",
|
|
427
304
|
"common.close": "Close",
|
|
428
|
-
"common.unavailable": "Intel is currently unavailable."
|
|
429
|
-
"board.summary": "{tasks} tasks in {statuses} statuses",
|
|
430
|
-
"board.views": "Views of this board",
|
|
431
|
-
"board.view.kanban": "Board",
|
|
432
|
-
"board.view.table": "Table",
|
|
433
|
-
"board.view.calendar": "Calendar",
|
|
434
|
-
"board.view.graph": "Graph",
|
|
435
|
-
"board.view.gantt": "Gantt",
|
|
436
|
-
"board.statuses": "Statuses",
|
|
437
|
-
"board.statusLabel": "Status name",
|
|
438
|
-
"board.statusUp": "Move status up",
|
|
439
|
-
"board.statusDown": "Move status down",
|
|
440
|
-
"board.statusRemove": "Remove the status {label}",
|
|
441
|
-
"board.addStatus": "New status",
|
|
442
|
-
"board.shelfFixed": "Always the last one",
|
|
443
|
-
"board.showArchived": "Show archived",
|
|
444
|
-
"board.addTask": "New task",
|
|
445
|
-
"board.empty": "Nothing on this board yet. Add the first task above.",
|
|
446
|
-
"board.noTasks": "Nothing here that matches.",
|
|
447
|
-
"board.laneEmpty": "Empty",
|
|
448
|
-
"board.archivedEmpty": "Nothing archived.",
|
|
449
|
-
"board.blocked": "Blocked",
|
|
450
|
-
"board.open": "Open",
|
|
451
|
-
"board.subtaskCount": "{done}/{total} subtasks",
|
|
452
|
-
"board.unassigned": "Unassigned",
|
|
453
|
-
"board.assignee.me": "Me",
|
|
454
|
-
"board.assignee.unnamed": "Assigned",
|
|
455
|
-
"board.unknownTask": "Task not available to you",
|
|
456
|
-
"board.column.title": "Title",
|
|
457
|
-
"board.column.status": "Status",
|
|
458
|
-
"board.column.assignee": "Assignee",
|
|
459
|
-
"board.column.startDate": "Start date",
|
|
460
|
-
"board.column.dueDate": "Due date",
|
|
461
|
-
"board.column.labels": "Labels",
|
|
462
|
-
"board.columns": "Columns",
|
|
463
|
-
"board.filterTitle": "Filter by title",
|
|
464
|
-
"board.groupBy": "Group by",
|
|
465
|
-
"board.groupBy.none": "Nothing",
|
|
466
|
-
"board.groupBy.status": "Status",
|
|
467
|
-
"board.groupBy.assignee": "Assignee",
|
|
468
|
-
"board.toggleSubtasks": "Show or hide the subtasks of {task}",
|
|
469
|
-
"board.calendar.previous": "Previous month",
|
|
470
|
-
"board.calendar.next": "Next month",
|
|
471
|
-
"board.calendar.today": "Today",
|
|
472
|
-
"board.calendar.more": "+{count} more",
|
|
473
|
-
"board.calendar.undated": "{count} without a due date — not in this grid, but on the board and in the table.",
|
|
474
|
-
"board.gantt.scale": "Scale",
|
|
475
|
-
"board.gantt.scale.days": "Days",
|
|
476
|
-
"board.gantt.scale.weeks": "Weeks",
|
|
477
|
-
"board.gantt.scale.months": "Months",
|
|
478
|
-
"board.gantt.today": "Today",
|
|
479
|
-
"board.gantt.move": "Move {task}",
|
|
480
|
-
"board.gantt.resizeStart": "Change when {task} starts",
|
|
481
|
-
"board.gantt.resizeEnd": "Change when {task} is due",
|
|
482
|
-
"board.gantt.spanLabel": "{start} to {end}",
|
|
483
|
-
"board.gantt.waitsFor": "waits for {tasks}",
|
|
484
|
-
"board.gantt.hiddenLinks": "{count} dependencies are not drawn: the task waited for has no bar here.",
|
|
485
|
-
"board.gantt.undated": "Without dates",
|
|
486
|
-
"board.gantt.undatedCount": "{count} without dates — on the board, but on no timeline.",
|
|
487
|
-
"board.gantt.nothingDated": "Nothing on this board has a date yet. Give a task a due date and it appears here.",
|
|
488
|
-
"board.graph.subtree": "Subtree",
|
|
489
|
-
"board.graph.wholeBoard": "Whole board",
|
|
490
|
-
"board.graph.parentEdge": "contains",
|
|
491
|
-
"board.graph.dependsEdge": "waits for",
|
|
492
|
-
"board.detail": "Task",
|
|
493
|
-
"board.description": "Description",
|
|
494
|
-
"board.subtasks": "Subtasks",
|
|
495
|
-
"board.addSubtask": "New subtask",
|
|
496
|
-
"board.dependencies": "Waits for",
|
|
497
|
-
"board.addDependency": "Add a dependency",
|
|
498
|
-
"board.removeDependency": "Remove this dependency",
|
|
499
|
-
"board.references": "References",
|
|
500
|
-
"board.addReference": "Add a reference",
|
|
501
|
-
"board.removeReference": "Remove this reference",
|
|
502
|
-
"board.addLabel": "New label",
|
|
503
|
-
"board.removeLabel": "Remove the label {label}",
|
|
504
|
-
"board.deleteTask": "Delete task",
|
|
505
|
-
"board.deleteConfirm": "Deleting “{task}” removes it and everything below it: {count} in total. Any dependency pointing into that is cleared.",
|
|
506
|
-
"board.deleted": "Deleted: {count}.",
|
|
507
|
-
"board.archivedHint": "This task is on the archive shelf. Move it to another status to bring it back.",
|
|
508
|
-
"board.dnd.start": "Picked up {task}",
|
|
509
|
-
"board.dnd.over": "{task} is over {lane}",
|
|
510
|
-
"board.dnd.end": "Dropped {task} into {lane}",
|
|
511
|
-
"board.dnd.endUnchanged": "{task} was not moved and is still in {lane}",
|
|
512
|
-
"board.dnd.endRefused": "{lane} no longer takes cards, {task} was not moved and is still in {from}",
|
|
513
|
-
"board.dnd.cancel": "Dropping {task} was cancelled",
|
|
514
|
-
"board.dnd.instructions": "Press enter to open this task. To move it instead, press the space bar on it and use the arrow keys to take it to another position or lane, then press space, enter or tab to put it down, or escape to leave it where it was.",
|
|
515
|
-
"board.card.roleDescription": "task, movable",
|
|
516
|
-
"board.statusTerminal": "Means done"
|
|
305
|
+
"common.unavailable": "Intel is currently unavailable."
|
|
517
306
|
}
|
package/src/i18n/es.json
CHANGED
|
@@ -39,7 +39,6 @@
|
|
|
39
39
|
"tree.new.table": "Tabla nueva",
|
|
40
40
|
"tree.new.upload": "Subir un archivo",
|
|
41
41
|
"tree.new.flow": "Flujo nuevo",
|
|
42
|
-
"tree.new.agent": "Agente nuevo",
|
|
43
42
|
"tree.upload": "Archivo que subir",
|
|
44
43
|
"tree.table.columns": "Columnas",
|
|
45
44
|
"tree.table.columnsHint": "Separa los nombres de las columnas con comas. Son la cabecera, y toda fila añadida después tiene que encajar con ella.",
|
|
@@ -49,8 +48,6 @@
|
|
|
49
48
|
"tree.kind.document": "Documento",
|
|
50
49
|
"tree.kind.attachment": "Archivo",
|
|
51
50
|
"tree.kind.table": "Tabla",
|
|
52
|
-
"tree.kind.agent": "Agente",
|
|
53
|
-
"tree.kind.board": "Tablero",
|
|
54
51
|
"tree.kind.flow": "Flujo",
|
|
55
52
|
"tree.move.action": "Mover a…",
|
|
56
53
|
"tree.move.title": "Mover {title}",
|
|
@@ -76,9 +73,12 @@
|
|
|
76
73
|
"resource.rename": "Cambiar el nombre",
|
|
77
74
|
"resource.renameTitle": "Cambiar el nombre de {title}",
|
|
78
75
|
"resource.archive": "Archivar",
|
|
79
|
-
"resource.export": "
|
|
76
|
+
"resource.export": "Exportar",
|
|
77
|
+
"resource.import": "Importar",
|
|
80
78
|
"tree.new.importZip": "Importar un paquete zip",
|
|
81
79
|
"tree.new.importFolder": "Importar una carpeta",
|
|
80
|
+
"tree.importZipInto": "Importar un paquete zip en {where}",
|
|
81
|
+
"tree.importFolderInto": "Importar una carpeta en {where}",
|
|
82
82
|
"tree.importFailed": "La importación no se ha aplicado. No se ha creado nada — comprueba el paquete e inténtalo de nuevo.",
|
|
83
83
|
"resource.exportFailed": "La exportación no se ha podido descargar. Comprueba tu acceso e inténtalo de nuevo.",
|
|
84
84
|
"archive.title": "Archivo",
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
"node.attachmentHelp": "El archivo canónico se guarda en privado en Intel. Su proyección legible por la IA se indexa por separado.",
|
|
98
98
|
"node.table.summary": "{rows} filas, {columns} columnas",
|
|
99
99
|
"node.table.download": "Descargar CSV",
|
|
100
|
-
"node.table.empty": "Todavía no hay filas. Las filas las añaden los flujos
|
|
100
|
+
"node.table.empty": "Todavía no hay filas. Las filas las añaden los flujos.",
|
|
101
101
|
"node.table.undefined": "Esta tabla todavía no tiene columnas.",
|
|
102
102
|
"node.select": "Elige un documento o una carpeta para trabajar con ello.",
|
|
103
103
|
"node.folderEmpty": "En esta carpeta todavía no hay nada. Crea algo con el más de la barra lateral.",
|
|
@@ -108,8 +108,6 @@
|
|
|
108
108
|
"node.kind.document": "Documento",
|
|
109
109
|
"node.kind.attachment": "Subida",
|
|
110
110
|
"node.kind.table": "Tabla",
|
|
111
|
-
"node.kind.agent": "Agente",
|
|
112
|
-
"node.kind.board": "Tablero",
|
|
113
111
|
"node.kind.flow": "Flujo",
|
|
114
112
|
"node.share": "Compartir",
|
|
115
113
|
"node.shareAction": "Conceder acceso",
|
|
@@ -122,7 +120,6 @@
|
|
|
122
120
|
"node.verbHint.read": "Ver todo lo que hay aquí dentro",
|
|
123
121
|
"node.verbHint.write": "Cambiar y añadir cosas",
|
|
124
122
|
"node.verbHint.execute": "Iniciar los flujos que hay aquí dentro",
|
|
125
|
-
"node.verbHint.execute.agent": "Usar este agente — su chat, sus horarios y su dirección MCP",
|
|
126
123
|
"node.verbHint.share": "Dar acceso a otras personas",
|
|
127
124
|
"node.organization": "Todas las personas de la organización",
|
|
128
125
|
"node.revokeShare": "Retirar el acceso",
|
|
@@ -279,120 +276,6 @@
|
|
|
279
276
|
"runs.trigger.subflow": "llamada por otro flujo",
|
|
280
277
|
"runs.outcome.completed": "hecha",
|
|
281
278
|
"runs.outcome.failed": "fallida",
|
|
282
|
-
"agent.tabs": "Vistas del agente",
|
|
283
|
-
"agent.tab.profile": "Perfil",
|
|
284
|
-
"agent.tab.chat": "Chat",
|
|
285
|
-
"agent.tab.calendar": "Calendario",
|
|
286
|
-
"agent.tab.log": "Registro",
|
|
287
|
-
"agent.status.running": "En marcha",
|
|
288
|
-
"agent.status.waiting": "Esperando su próxima ejecución",
|
|
289
|
-
"agent.status.failed": "La última ejecución falló",
|
|
290
|
-
"agent.status.paused": "En pausa",
|
|
291
|
-
"agent.status.unknown": "Entorno de ejecución no accesible",
|
|
292
|
-
"agent.nextRun": "próxima ejecución {when} ({zone})",
|
|
293
|
-
"agent.lastRun": "última ejecución {when}",
|
|
294
|
-
"agent.pausedNoRuns": "no se dispara ningún horario, no se acepta ninguna tarea ni ningún correo; el chat sigue respondiendo",
|
|
295
|
-
"agent.pause": "Pausar",
|
|
296
|
-
"agent.resume": "Reanudar",
|
|
297
|
-
"agent.runNow": "Ejecutar ahora",
|
|
298
|
-
"agent.runNowNoTarget": "Este agente no tiene horario, así que no hay nada que ejecutar.",
|
|
299
|
-
"agent.runNowPaused": "Reanuda el agente antes de ejecutarlo.",
|
|
300
|
-
"agent.actionFailed": "Eso no ha funcionado. Inténtalo de nuevo.",
|
|
301
|
-
"agent.keyMissing": "Este agente no tiene clave de aplicación, así que no puede empezar ninguna ejecución. Sustituye su clave en «Identidad», dentro del perfil.",
|
|
302
|
-
"agent.createdBy": "por {name}",
|
|
303
|
-
"agent.notPermitted": "Puedes leer este agente, pero no manejarlo. Manejar un agente necesita el permiso «ejecutar agentes».",
|
|
304
|
-
"agent.noRuntime": "Esta instalación no tiene entorno de ejecución de agentes, así que este agente no puede chatear ni ejecutarse aquí. Su definición se conserva y vuelve a funcionar en una instalación que sí lo tenga.",
|
|
305
|
-
"agent.loadFailed": "Este agente no se ha podido cargar. Comprueba tu acceso e inténtalo de nuevo.",
|
|
306
|
-
"agent.saveFailed": "El cambio no se ha guardado. Puede que otra persona haya cambiado este agente antes — recarga e inténtalo de nuevo.",
|
|
307
|
-
"agent.noDefinition": "Este agente todavía no tiene definición, así que aquí no hay nada que cambiar.",
|
|
308
|
-
"agent.identity": "Identidad",
|
|
309
|
-
"agent.identityHint": "La aplicación de Gate con la que actúa este agente. Sus permisos en el árbol deciden qué puede leer y escribir una ejecución, y su clave vive cifrada en el entorno de ejecución de agentes — nunca aquí y nunca en la definición.",
|
|
310
|
-
"agent.principal": "Aplicación de Gate",
|
|
311
|
-
"agent.principalNone": "Ninguna",
|
|
312
|
-
"agent.principalNoneHint": "Este agente no tiene aplicación de Gate, así que no hay ninguna clave que sustituir. Los agentes creados antes de esta función, importados o restaurados desde un paquete reciben una en Gate.",
|
|
313
|
-
"agent.rotateKey": "Sustituir la clave",
|
|
314
|
-
"agent.rotateKeyConfirm": "Se emite una clave nueva y se entrega al entorno de ejecución de agentes. La clave anterior deja de funcionar de inmediato, y aquí nunca se muestra ninguna clave.",
|
|
315
|
-
"agent.rotateKeyDone": "La clave se ha sustituido. El agente funciona con la nueva a partir de su próxima ejecución.",
|
|
316
|
-
"agent.rotateKeyFailed": "La clave no se ha sustituido. Inténtalo otra vez — e insiste hasta que salga bien: si Gate ya ha emitido la clave nueva, este agente no puede ejecutarse hasta que el entorno de ejecución la tenga.",
|
|
317
|
-
"agent.contact": "Contacto",
|
|
318
|
-
"agent.contactHint": "Cómo se llega a este agente. El chat integrado forma parte del entorno de ejecución y está siempre ahí.",
|
|
319
|
-
"agent.contactChat": "Chat integrado",
|
|
320
|
-
"agent.contactChatBuiltIn": "Integrado, siempre ahí",
|
|
321
|
-
"agent.contactMcp": "Dirección MCP",
|
|
322
|
-
"agent.copy": "Copiar",
|
|
323
|
-
"agent.copied": "Copiado",
|
|
324
|
-
"agent.contactAdd": "Añadir un contacto",
|
|
325
|
-
"agent.contactAddReason": "Una dirección de correo pertenece a la instalación, no a la definición del agente, así que se configura donde está desplegado el entorno de ejecución.",
|
|
326
|
-
"agent.knows": "Lo que sabe",
|
|
327
|
-
"agent.knowsHint": "Lo que lee este agente y para qué cuenta cada entrada. Un mensaje de sistema lo instruye — una carpeta, un documento o una tabla. El contexto semántico se busca, y en la memoria se escribe de vuelta y también se busca, por eso ambas son carpetas. El nombre promete menos que el papel: lo que el agente anota en la memoria le vuelve en cada búsqueda posterior.",
|
|
328
|
-
"agent.addReference": "Añadir algo para leer",
|
|
329
|
-
"agent.removeReferenceOf": "Dejar de leer {title}",
|
|
330
|
-
"agent.pickEntry": "Qué se lee",
|
|
331
|
-
"agent.roleFor": "Para qué cuenta {title}",
|
|
332
|
-
"agent.role.system-message": "Mensaje de sistema",
|
|
333
|
-
"agent.role.semantic-context": "Contexto semántico",
|
|
334
|
-
"agent.role.memory": "Memoria",
|
|
335
|
-
"agent.unknownEntry": "No disponible para ti",
|
|
336
|
-
"agent.tools": "Herramientas",
|
|
337
|
-
"agent.toolsHint": "Los servidores MCP que le das a este agente, de entre los que tú mismo alcanzas. Intel guarda la elección, nunca el permiso — las herramientas que hay detrás de un servidor se leen en vivo con tu acceso al portal cada vez que el agente se ejecuta.",
|
|
338
|
-
"agent.addTool": "Añadir una herramienta",
|
|
339
|
-
"agent.removeToolServerOf": "Quitarle {name} a este agente",
|
|
340
|
-
"agent.toolServerUnavailable": "Ya no alcanzas este servidor",
|
|
341
|
-
"agent.toolsDelegationNotice": "Quien pueda ejecutar este agente actúa sobre tu conexión.",
|
|
342
|
-
"agent.toolsDelegationNoticeBy": "Quien pueda ejecutar este agente actúa sobre la conexión de {name}.",
|
|
343
|
-
"agent.toolsDelegationNoticeSomebody": "Quien pueda ejecutar este agente actúa sobre la conexión de quien le dio estas herramientas, no sobre la tuya.",
|
|
344
|
-
"agent.toolsNotConnected": "Todavía no has iniciado sesión en el portal de la empresa, así que no hay nada que ceder. Abre «Herramientas» para conectarte.",
|
|
345
|
-
"agent.toolsNoneLeft": "Todos los servidores que alcanzas ya están dados a este agente.",
|
|
346
|
-
"agent.schedule": "Horario",
|
|
347
|
-
"agent.scheduleHint": "Cuándo actúa este agente por su cuenta y qué ejecuta. Cada horario conserva la zona horaria con la que se creó, así que significa la misma hora para todo el que lo lea.",
|
|
348
|
-
"agent.addSchedule": "Añadir un horario",
|
|
349
|
-
"agent.removeSchedule": "Quitar este horario",
|
|
350
|
-
"agent.scheduleTarget": "Qué ejecutar",
|
|
351
|
-
"agent.cron": "Cuándo",
|
|
352
|
-
"agent.scheduleTimezone": "Zona horaria",
|
|
353
|
-
"agent.scheduleTimezoneHint": "En qué se lee la expresión de arriba. Se propone a partir de tu propia preferencia y se guarda con el horario — si cambias tu preferencia más adelante, este se queda como está.",
|
|
354
|
-
"agent.cronHint": "Cinco campos: minuto, hora, día del mes, mes, día de la semana. «0 8 * * *» es todos los días a las 08:00 en la zona horaria de abajo.",
|
|
355
|
-
"agent.model": "Modelo",
|
|
356
|
-
"agent.modelHint": "Qué modelo piensa. El entorno de ejecución recoge un cambio en menos de un minuto.",
|
|
357
|
-
"agent.modelFigures": "{context} de contexto · {input} $ de entrada / {output} $ de salida por cada millón de tokens",
|
|
358
|
-
"agent.usage": "{input} de entrada · {output} de salida · {cacheRead} leídos de caché · {cacheWrite} escritos en caché",
|
|
359
|
-
"agent.usageUnknown": "No hay cifras de consumo para esta ejecución",
|
|
360
|
-
"agent.usageNotReported": "Este proveedor no informa del consumo",
|
|
361
|
-
"agent.costMissing": "El coste no figura en el registro de la pasarela",
|
|
362
|
-
"agent.costNotConfigured": "Sin cifras de coste: esta instalación no tiene un token de lectura de AI Gateway.",
|
|
363
|
-
"agent.costUnreadable": "Sin cifras de coste: no se pudo leer el registro de AI Gateway.",
|
|
364
|
-
"agent.costPartial": "El registro de la pasarela se leyó hasta su límite de páginas, así que estos totales son un mínimo.",
|
|
365
|
-
"agent.costWindow": "Últimos {days} días",
|
|
366
|
-
"agent.costWindowCalls": "{count} llamadas al modelo",
|
|
367
|
-
"agent.costs": "Coste",
|
|
368
|
-
"agent.costsSpent": "{amount} en los últimos {days} días",
|
|
369
|
-
"agent.costsSpentPast": "Ya gastado, en ejecuciones pasadas: no es una previsión para el modelo elegido arriba.",
|
|
370
|
-
"agent.costsSpentWith": "con {models}",
|
|
371
|
-
"agent.modelFiguresStale": "Estas cifras proceden de una tabla incorporada y pueden estar desactualizadas.",
|
|
372
|
-
"agent.calendar": "Próximas ejecuciones",
|
|
373
|
-
"agent.calendarZones": "Cada hora se muestra en la zona horaria de su propio horario, porque es cuando se ejecuta el agente. Si tu propia zona horaria difiere, se añade al lado.",
|
|
374
|
-
"agent.calendarYourTime": "{when} en tu hora",
|
|
375
|
-
"agent.calendarUnreadable": "Ninguno de los horarios de este agente se puede leer como expresión cron, así que no hay nada planificado.",
|
|
376
|
-
"agent.calendarPaused": "Este agente está en pausa, así que ninguna de estas ejecuciones ocurrirá. Muestran lo que haría al reanudarlo.",
|
|
377
|
-
"agent.log": "Ejecuciones",
|
|
378
|
-
"agent.logEmpty": "Este agente todavía no se ha ejecutado.",
|
|
379
|
-
"agent.logFailed": "Las ejecuciones no se han podido leer. Puede que el entorno de ejecución de agentes no sea accesible desde aquí.",
|
|
380
|
-
"agent.runFailed": "Esta ejecución no se ha podido leer.",
|
|
381
|
-
"agent.runLog": "Lo que ha hecho esta ejecución",
|
|
382
|
-
"agent.runLogEmpty": "Esta ejecución no ha registrado nada.",
|
|
383
|
-
"agent.runAnswer": "Lo que ha respondido esta ejecución",
|
|
384
|
-
"agent.runAnswerEmpty": "Esta ejecución no ha registrado ninguna respuesta.",
|
|
385
|
-
"agent.steps": "{count} pasos",
|
|
386
|
-
"agent.trigger.chat": "desde el chat",
|
|
387
|
-
"agent.trigger.schedule": "por horario",
|
|
388
|
-
"agent.trigger.mail": "desde un correo",
|
|
389
|
-
"agent.trigger.task": "pedido por MCP",
|
|
390
|
-
"agent.trigger.manual": "iniciada a mano",
|
|
391
|
-
"agent.chatEmpty": "Escríbele a este agente. Responde con lo que sabe y con las herramientas que puede alcanzar.",
|
|
392
|
-
"agent.chatInput": "Mensaje para este agente",
|
|
393
|
-
"agent.chatPlaceholder": "Pregunta algo…",
|
|
394
|
-
"agent.chatSend": "Enviar",
|
|
395
|
-
"agent.chatScrollDown": "Saltar al mensaje más reciente",
|
|
396
279
|
"settings.title": "Preferencias",
|
|
397
280
|
"settings.description": "Idioma, apariencia y zona horaria. Las tres se aplican de inmediato y se recuerdan en este dispositivo.",
|
|
398
281
|
"settings.language": "Idioma",
|
|
@@ -400,12 +283,6 @@
|
|
|
400
283
|
"settings.appearance.system": "Seguir al sistema",
|
|
401
284
|
"settings.appearance.light": "Claro",
|
|
402
285
|
"settings.appearance.dark": "Oscuro",
|
|
403
|
-
"settings.timezone": "Zona horaria",
|
|
404
|
-
"settings.timezoneHint": "Se usa para leer las horas y se propone cuando le das un horario a un agente. Un horario conserva la zona con la que se creó, así que viajar no mueve las ejecuciones que ya has fijado.",
|
|
405
|
-
"settings.timezoneSearch": "Buscar ciudad, zona o desfase…",
|
|
406
|
-
"settings.timezoneNoMatch": "Ninguna zona horaria coincide.",
|
|
407
|
-
"settings.timezoneOwn": "Tu dispositivo",
|
|
408
|
-
"settings.timezoneAll": "Todas las zonas horarias",
|
|
409
286
|
"auth.signOut": "Cerrar sesión",
|
|
410
287
|
"auth.signOutFailed": "El cierre de sesión ha fallado. Comprueba tu conexión e inténtalo de nuevo.",
|
|
411
288
|
"signIn.refusedTitle": "Sesión iniciada, pero no aceptada",
|
|
@@ -425,93 +302,5 @@
|
|
|
425
302
|
"common.loading": "Cargando…",
|
|
426
303
|
"common.retry": "Intentarlo de nuevo",
|
|
427
304
|
"common.close": "Cerrar",
|
|
428
|
-
"common.unavailable": "Intel no está disponible en este momento."
|
|
429
|
-
"board.summary": "{tasks} tareas en {statuses} estados",
|
|
430
|
-
"board.views": "Vistas de este tablero",
|
|
431
|
-
"board.view.kanban": "Tablero",
|
|
432
|
-
"board.view.table": "Tabla",
|
|
433
|
-
"board.view.calendar": "Calendario",
|
|
434
|
-
"board.view.graph": "Grafo",
|
|
435
|
-
"board.view.gantt": "Gantt",
|
|
436
|
-
"board.statuses": "Estados",
|
|
437
|
-
"board.statusLabel": "Nombre del estado",
|
|
438
|
-
"board.statusUp": "Subir el estado",
|
|
439
|
-
"board.statusDown": "Bajar el estado",
|
|
440
|
-
"board.statusRemove": "Quitar el estado {label}",
|
|
441
|
-
"board.addStatus": "Nuevo estado",
|
|
442
|
-
"board.shelfFixed": "Siempre el último",
|
|
443
|
-
"board.showArchived": "Mostrar archivadas",
|
|
444
|
-
"board.addTask": "Nueva tarea",
|
|
445
|
-
"board.empty": "Todavía no hay nada en este tablero. Añade arriba la primera tarea.",
|
|
446
|
-
"board.noTasks": "Aquí no coincide nada.",
|
|
447
|
-
"board.laneEmpty": "Vacío",
|
|
448
|
-
"board.archivedEmpty": "Nada archivado.",
|
|
449
|
-
"board.blocked": "Bloqueada",
|
|
450
|
-
"board.open": "Abierta",
|
|
451
|
-
"board.subtaskCount": "{done}/{total} subtareas",
|
|
452
|
-
"board.unassigned": "Sin asignar",
|
|
453
|
-
"board.assignee.me": "Yo",
|
|
454
|
-
"board.assignee.unnamed": "Asignada",
|
|
455
|
-
"board.unknownTask": "Tarea no disponible para ti",
|
|
456
|
-
"board.column.title": "Título",
|
|
457
|
-
"board.column.status": "Estado",
|
|
458
|
-
"board.column.assignee": "Responsable",
|
|
459
|
-
"board.column.startDate": "Fecha de inicio",
|
|
460
|
-
"board.column.dueDate": "Fecha límite",
|
|
461
|
-
"board.column.labels": "Etiquetas",
|
|
462
|
-
"board.columns": "Columnas",
|
|
463
|
-
"board.filterTitle": "Filtrar por título",
|
|
464
|
-
"board.groupBy": "Agrupar por",
|
|
465
|
-
"board.groupBy.none": "Nada",
|
|
466
|
-
"board.groupBy.status": "Estado",
|
|
467
|
-
"board.groupBy.assignee": "Responsable",
|
|
468
|
-
"board.toggleSubtasks": "Mostrar u ocultar las subtareas de {task}",
|
|
469
|
-
"board.calendar.previous": "Mes anterior",
|
|
470
|
-
"board.calendar.next": "Mes siguiente",
|
|
471
|
-
"board.calendar.today": "Hoy",
|
|
472
|
-
"board.calendar.more": "+{count} más",
|
|
473
|
-
"board.calendar.undated": "{count} sin fecha límite — fuera de la cuadrícula, pero en el tablero y en la tabla.",
|
|
474
|
-
"board.gantt.scale": "Escala",
|
|
475
|
-
"board.gantt.scale.days": "Días",
|
|
476
|
-
"board.gantt.scale.weeks": "Semanas",
|
|
477
|
-
"board.gantt.scale.months": "Meses",
|
|
478
|
-
"board.gantt.today": "Hoy",
|
|
479
|
-
"board.gantt.move": "Mover {task}",
|
|
480
|
-
"board.gantt.resizeStart": "Cambiar el inicio de {task}",
|
|
481
|
-
"board.gantt.resizeEnd": "Cambiar el vencimiento de {task}",
|
|
482
|
-
"board.gantt.spanLabel": "{start} a {end}",
|
|
483
|
-
"board.gantt.waitsFor": "espera a {tasks}",
|
|
484
|
-
"board.gantt.hiddenLinks": "{count} dependencias no se dibujan: la tarea esperada no tiene barra aquí.",
|
|
485
|
-
"board.gantt.undated": "Sin fechas",
|
|
486
|
-
"board.gantt.undatedCount": "{count} sin fechas — en el tablero, pero en ninguna línea de tiempo.",
|
|
487
|
-
"board.gantt.nothingDated": "Nada en este tablero tiene fecha todavía. Da a una tarea una fecha de vencimiento y aparecerá aquí.",
|
|
488
|
-
"board.graph.subtree": "Subárbol",
|
|
489
|
-
"board.graph.wholeBoard": "Todo el tablero",
|
|
490
|
-
"board.graph.parentEdge": "contiene",
|
|
491
|
-
"board.graph.dependsEdge": "espera a",
|
|
492
|
-
"board.detail": "Tarea",
|
|
493
|
-
"board.description": "Descripción",
|
|
494
|
-
"board.subtasks": "Subtareas",
|
|
495
|
-
"board.addSubtask": "Nueva subtarea",
|
|
496
|
-
"board.dependencies": "Espera a",
|
|
497
|
-
"board.addDependency": "Añadir una dependencia",
|
|
498
|
-
"board.removeDependency": "Quitar esta dependencia",
|
|
499
|
-
"board.references": "Referencias",
|
|
500
|
-
"board.addReference": "Añadir una referencia",
|
|
501
|
-
"board.removeReference": "Quitar esta referencia",
|
|
502
|
-
"board.addLabel": "Nueva etiqueta",
|
|
503
|
-
"board.removeLabel": "Quitar la etiqueta {label}",
|
|
504
|
-
"board.deleteTask": "Eliminar la tarea",
|
|
505
|
-
"board.deleteConfirm": "Eliminar «{task}» borra la tarea y todo lo que hay debajo: {count} en total. Cualquier dependencia que apunte ahí se limpia.",
|
|
506
|
-
"board.deleted": "Eliminadas: {count}.",
|
|
507
|
-
"board.archivedHint": "Esta tarea está en el archivo. Muévela a otro estado para recuperarla.",
|
|
508
|
-
"board.dnd.start": "{task} tomada",
|
|
509
|
-
"board.dnd.over": "{task} sobre {lane}",
|
|
510
|
-
"board.dnd.end": "{task} soltada en {lane}",
|
|
511
|
-
"board.dnd.endUnchanged": "{task} no se movió y sigue en {lane}",
|
|
512
|
-
"board.dnd.endRefused": "{lane} ya no admite tarjetas, {task} no se movió y sigue en {from}",
|
|
513
|
-
"board.dnd.cancel": "Se canceló soltar {task}",
|
|
514
|
-
"board.dnd.instructions": "Pulsa intro para abrir esta tarea. Para moverla, pulsa la barra espaciadora sobre ella y llévala con las flechas a otra posición o columna; después suéltala con espacio, intro o tabulador, o pulsa escape para dejarla donde estaba.",
|
|
515
|
-
"board.card.roleDescription": "tarea, movible",
|
|
516
|
-
"board.statusTerminal": "Cuenta como hecho"
|
|
305
|
+
"common.unavailable": "Intel no está disponible en este momento."
|
|
517
306
|
}
|