Skip to content

Commit

Permalink
docs suggestions for tasks ISPN-14305
Browse files Browse the repository at this point in the history
  • Loading branch information
domiborges authored and dpanshug committed Mar 13, 2023
1 parent 403ba3e commit 2bf5393
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/app/CacheManagers/TasksTableDisplay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ const TasksTableDisplay = (props: { setTasksCount: (number) => void; isVisible:
return (
<React.Fragment>
<ToolbarItem>
<Button onClick={() => setIsCreateTask(!isCreateTask)}>Add task</Button>
<Button onClick={() => setIsCreateTask(!isCreateTask)}>Create a task</Button>
</ToolbarItem>
</React.Fragment>
);
Expand Down
10 changes: 5 additions & 5 deletions src/app/assets/languages/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
"modal-storage": "Counter storage",
"modal-strong-counter": "Strong counter",
"modal-weak-counter": "Weak counter",
"modal-initial-value-invalid": "The initial value must be between the lower bound and the upper bound inclusively",
"modal-initial-value-invalid": "The initial value must be greater than the lower bound and less then or equal to the upper bound",
"modal-lower-bound-invalid": "The lower bound must be less than the upper bound",
"modal-storage-tooltip": "{{brandname}} can save counter values in a persistent storage so the data is available when clusters restart. If you select a volatile storage, counter values are permanently deleted when clusters restart or stop",
"modal-counter-type-tooltip": "The value of a strong counter is stored in a single key for consistency. {{brandname}} recommends using strong counters when the counter's value is needed after each update or when a bounded counter is needed. The value of a weak counter is stored in multiple keys. The weak counter is suitable for use cases where the result of the update operation is not needed or the counter’s value is not required too often "
Expand All @@ -142,16 +142,16 @@
"context-name": "Context name",
"operation-name": "Operation name",
"parameters": "Parameters",
"allowed-role": "Allowed role",
"allowed-role": "Security role",
"allowed-role-null": "-",
"no-tasks-status": "No tasks yet",
"no-tasks-body": "Create tasks with the CLI or a remote client.",
"no-tasks-body": "Click \"Create a task\" to upload a script. You can also create tasks from the CLI or remote clients.",
"execute": "Execute",
"execution": "Execution",
"cancel": "Cancel",
"create-task": "Create task",
"create-task": "Create a task",
"task-name": "Task name",
"script": "Script",
"script": "Provide a script implementation",
"script-tooltip": "Script tooltip",
"confirm": "Confirm",
"save-button": "Save",
Expand Down

0 comments on commit 2bf5393

Please sign in to comment.