Skip to content

Commit be6b951

Browse files
authored
Merge pull request ceph#59447 from afreen23/wip-nvmeof-microcopy
mgr/dashboard: Update nvmeof microcopies Reviewed-by: Afreen Misbah <[email protected]>
2 parents 5fef1f8 + 5d1ee14 commit be6b951

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

src/pybind/mgr/dashboard/frontend/src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
<legend i18n>
44
Gateways
55
<cd-help-text>
6-
The NVMe-oF gateway integrates Ceph with the NVMe over TCP (NVMe/TCP) protocol to provide an NVMe/TCP target that exports RADOS Block Device (RBD) images.
7-
</cd-help-text>
6+
Ceph NVMe-oF gateways provide Ceph Block Device storage through NVMe/TCP. For VMware clients the NVMe/TCP volumes display as VMFS Datastores. For Linux clients the NVMe/TCP volumes display as as block devices.</cd-help-text>
87
</legend>
98
<div>
109
<cd-table [data]="gateways"

src/pybind/mgr/dashboard/frontend/src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<legend>
22
<cd-help-text>
3-
The client that connects to the NVMe-oF target to access NVMe storage.
3+
An initiator (or host) is the client that connects to the NVMe-oF target to access NVMe storage.
4+
The NVMe/TCP protocol allows initiators, to send NVMe-oF commands to storage devices, which are known as targets.
45
</cd-help-text>
56
</legend>
67
<cd-table [data]="initiators"

src/pybind/mgr/dashboard/frontend/src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<legend>
22
<cd-help-text>
3-
A listener defines the IP port on the gateway that is to process NVMe/TCP commands and I/O operations.
3+
A listener defines the IP address and port on the gateway that is used to process NVMe/TCP admin and I/O commands to a subsystem.
44
</cd-help-text>
55
</legend>
66
<cd-table [data]="listeners"

src/pybind/mgr/dashboard/frontend/src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
[value]="pool.pool_name">{{ pool.pool_name }}</option>
4040
</select>
4141
<cd-help-text i18n>
42-
A RBD application-enabled pool where the image will be created.
42+
An RBD application-enabled pool where the image will be created.
4343
</cd-help-text>
4444
<span class="invalid-feedback"
4545
*ngIf="nsForm.showError('pool', formDir, 'required')"

src/pybind/mgr/dashboard/frontend/src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<legend i18n>
33
Subsystems
44
<cd-help-text>
5-
A subsystem presents a collection of controllers which are used to access namespaces.
5+
A subsystem provides access control to which hosts can access the namespaces within the subsystem.
66
</cd-help-text>
77
</legend>
88
<cd-table [data]="subsystems"

src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/services/service-form/service-form.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
[value]="pool.pool_name">{{ pool.pool_name }}</option>
9898
</select>
9999
<cd-help-text i18n>
100-
A pool in which the gateway configuration can be managed.
100+
An RBD application-enabled pool in which the gateway configuration can be managed.
101101
</cd-help-text>
102102
<span class="invalid-feedback"
103103
*ngIf="serviceForm.showError('pool', frm, 'required')"

src/pybind/mgr/dashboard/frontend/src/app/shared/services/task-message.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@ export class TaskMessageService {
540540
}
541541

542542
service(metadata: any) {
543-
return $localize`Service '${metadata.service_name}'`;
543+
return $localize`service '${metadata.service_name}'`;
544544
}
545545

546546
crudMessage(metadata: any) {

0 commit comments

Comments
 (0)