diff options
| author | Michael Biebl <biebl@debian.org> | 2024-08-09 18:57:15 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2024-08-09 18:57:15 +0200 |
| commit | e96d74409128c6a977e31f24fad9b267d2feb9a1 (patch) | |
| tree | 12dad71135c6c291de457568cb973208ea8a0024 /src/nmtui | |
| parent | 45a364c60a9d6d34e614c4f1f507c69336ad1e69 (diff) | |
New upstream version 1.48.8 upstream/1.48.8
Diffstat (limited to 'src/nmtui')
| -rw-r--r-- | src/nmtui/nmt-page-bond.c | 2 | ||||
| -rw-r--r-- | src/nmtui/nmt-page-bridge.c | 2 | ||||
| -rw-r--r-- | src/nmtui/nmt-page-team.c | 2 | ||||
| -rw-r--r-- | src/nmtui/nmt-port-list.c | 2 | ||||
| -rw-r--r-- | src/nmtui/nmt-wireguard-peer-list.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/src/nmtui/nmt-page-bond.c b/src/nmtui/nmt-page-bond.c index c7483150..f74bac27 100644 --- a/src/nmtui/nmt-page-bond.c +++ b/src/nmtui/nmt-page-bond.c @@ -343,7 +343,7 @@ nmt_page_bond_constructed(GObject *object) grid = nmt_editor_section_get_body(section); widget = nmt_newt_separator_new(); - nmt_editor_grid_append(grid, _("Slaves"), widget, NULL); + nmt_editor_grid_append(grid, _("Ports"), widget, NULL); nmt_editor_grid_set_row_flags(grid, widget, NMT_EDITOR_GRID_ROW_LABEL_ALIGN_LEFT); widget = nmt_port_list_new(conn, bond_connection_type_filter, bond); diff --git a/src/nmtui/nmt-page-bridge.c b/src/nmtui/nmt-page-bridge.c index 61bc4d06..da765b14 100644 --- a/src/nmtui/nmt-page-bridge.c +++ b/src/nmtui/nmt-page-bridge.c @@ -60,7 +60,7 @@ nmt_page_bridge_constructed(GObject *object) grid = nmt_editor_section_get_body(section); widget = nmt_newt_separator_new(); - nmt_editor_grid_append(grid, _("Slaves"), widget, NULL); + nmt_editor_grid_append(grid, _("Ports"), widget, NULL); nmt_editor_grid_set_row_flags(grid, widget, NMT_EDITOR_GRID_ROW_LABEL_ALIGN_LEFT); widget = nmt_port_list_new(conn, bridge_connection_type_filter, bridge); diff --git a/src/nmtui/nmt-page-team.c b/src/nmtui/nmt-page-team.c index f6311c7e..142d848d 100644 --- a/src/nmtui/nmt-page-team.c +++ b/src/nmtui/nmt-page-team.c @@ -123,7 +123,7 @@ nmt_page_team_constructed(GObject *object) grid = NMT_NEWT_GRID(widget); - widget = nmt_newt_label_new(_("Slaves")); + widget = nmt_newt_label_new(_("Ports")); nmt_newt_grid_add(grid, widget, 0, 0); widget = nmt_port_list_new(conn, team_connection_type_filter, team); diff --git a/src/nmtui/nmt-port-list.c b/src/nmtui/nmt-port-list.c index aa3217b1..969821cc 100644 --- a/src/nmtui/nmt-port-list.c +++ b/src/nmtui/nmt-port-list.c @@ -124,7 +124,7 @@ nmt_port_list_add_connection(NmtEditConnectionList *list) { NmtPortListPrivate *priv = NMT_PORT_LIST_GET_PRIVATE(list); - nmt_add_connection_full(_("Select the type of slave connection you wish to add."), + nmt_add_connection_full(_("Select the type of port connection you wish to add."), NULL, priv->controller, priv->type_filter, diff --git a/src/nmtui/nmt-wireguard-peer-list.c b/src/nmtui/nmt-wireguard-peer-list.c index 3ac8a88c..c6db61a6 100644 --- a/src/nmtui/nmt-wireguard-peer-list.c +++ b/src/nmtui/nmt-wireguard-peer-list.c @@ -56,7 +56,7 @@ static guint signals[LAST_SIGNAL] = {0}; /** * nmt_wireguard_peer_list_new: - * @master: the master #NMSettingWireGuard whose peers are being listed + * @controller: the controller #NMSettingWireGuard whose peers are being listed * * Creates a new #NmtWireguardPeerList. * |