Skip to content

Commit cb7d247

Browse files
committed
i18n: Fix translation strings (#22034)
Some typos, some extra spacing, and wrong usage. These are all comments from Weblate that I'm addressing. Signed-off-by: Freya Gustavsson <[email protected]>
1 parent d1cabbd commit cb7d247

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

pkg/networkmanager/network-interface-members.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export const NetworkInterfaceMembers = ({
6565
const isActive = (dev && dev.State == 100 && dev.Carrier === true);
6666
const onoff = (
6767
<Switch
68-
aria-label={cockpit.format(_("Switch of $0"), iface.Name)}
68+
aria-label={cockpit.format(_("Switch off $0"), iface.Name)}
6969
isDisabled={!privileged}
7070
isChecked={!!(dev && dev.ActiveConnection)}
7171
onChange={(_event, val) => {

pkg/storaged/block/format-dialog.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ function format_dialog_internal(client, path, start, size, enable_dos_extended,
368368
return _("Passphrase cannot be empty");
369369
},
370370
visible: vals => vals.crypto == " keep" && vals.needs_explicit_passphrase,
371-
explanation: _("The disk needs to be unlocked before formatting. Please provide a existing passphrase.")
371+
explanation: _("The disk needs to be unlocked before formatting. Please provide an existing passphrase.")
372372
}),
373373
TextInput("crypto_options", _("Encryption options"),
374374
{

pkg/storaged/btrfs/subvolume.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ function subvolume_delete(volume, subvol, card) {
251251
Teardown: TeardownMessage(usage),
252252
Action: {
253253
Title: _("Delete"),
254-
Danger: _("Deleting erases all data on this subvolume and all it's children."),
254+
Danger: _("Deleting erases all data on this subvolume and all its children."),
255255
action: async function () {
256256
await teardown_active_usage(client, usage);
257257
for (const c of configs_to_remove)

pkg/storaged/overview/overview.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ const OverviewCard = ({ card, plot_state }) => {
149149

150150
const net_menu_items = [
151151
!client.in_anaconda_mode() && menu_item(nfs_feature, _("New NFS mount"), () => nfs_fstab_dialog(null, null)),
152-
menu_item(iscsi_feature, _("Change iSCSI initiater name"), () => iscsi_change_name()),
152+
menu_item(iscsi_feature, _("Change iSCSI initiator name"), () => iscsi_change_name()),
153153
menu_item(iscsi_feature, _("Add iSCSI portal"), () => iscsi_discover()),
154154
].filter(item => !!item);
155155

pkg/systemd/logs.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ const TextFilter = ({ textFilter, onTextFilterChange, filteredQuery }) => {
348348
<>
349349
{_("Unit")}
350350
<Popover headerContent={_("Show messages for the specified systemd unit.")}
351-
bodyContent={_("This will add match for '_SYSTEMD_UNIT=', 'COREDUMP_UNIT=' and 'UNIT=' to find all possible messages for the given unit. Can contain more units separated by comma. ")}>
351+
bodyContent={_("This will add match for '_SYSTEMD_UNIT=', 'COREDUMP_UNIT=' and 'UNIT=' to find all possible messages for the given unit. Can contain more units separated by comma.")}>
352352
<Button className="log-text-filter-popover-button" variant="plain">
353353
<HelpIcon />
354354
</Button>

test/verify/check-storage-iscsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class TestStorageISCSI(storagelib.StorageCase):
6868

6969
# Set initiator IQN
7070
orig_iqn = m.execute("sed </etc/iscsi/initiatorname.iscsi -e 's/^.*=//'").rstrip()
71-
self.click_dropdown(self.card_header("Storage"), "Change iSCSI initiater name")
71+
self.click_dropdown(self.card_header("Storage"), "Change iSCSI initiator name")
7272
self.dialog(expect={"name": orig_iqn},
7373
values={"name": initiator_iqn})
7474
new_iqn = m.execute("sed </etc/iscsi/initiatorname.iscsi -e 's/^.*=//'").rstrip()

0 commit comments

Comments
 (0)